Tagged Questions
6
votes
5answers
4k views
How to work with unicode in Python
I am trying to clean all of the HTML out of a string so the final output is a text file. I have some some research on the various 'converters' and am starting to lean towards creating my own ...
4
votes
2answers
310 views
Help me translate Python code which replaces an extension in file name to C++
I apologize if you know nothing about Python, however, the following snippet should be very readable to anyone. The only trick to watch out for - indexing a list with [-1] gives you the last element ...
2
votes
2answers
218 views
Convert string to unicode
import hashlib
string1 = u'test'
hashstring = hashlib.md5()
hashstring.update(string1)
string2 = hashstring.digest()
unicode(string2)
UnicodeDecodeError: 'ascii' codec can't decode byte 0x8f in ...
2
votes
1answer
290 views
Converting unicode objects with non-ascii symbols in them into strings objects (in python)
I want to send chinese characters to be translated by an online service, and have the resulting english string returned.
I'm using simple json and urllib for this.
And yes, i am declaring.
# -*- ...
2
votes
3answers
159 views
Python unicode question
I have a list that I need to send through a URL to a third party vendor. I don't know what language they are using.
The list prints out like this:
[u'1', u'6', u'5']
I know that the u encodes the ...
2
votes
1answer
3k views
conversion of unicode string in python
I need to convert unicode strings in Python to other types such as unsigned and signed int 8 bits,unsigned and signed int 16 bits,unsigned and signed int 32 bits,unsigned and signed int 64 ...
1
vote
2answers
168 views
Issue with removing newline character from unicode string in python
I have a piece of Unicode text. I wanted to remove all newline characters from the text before printing the output. My code looks something like this:
input_string = ...
1
vote
2answers
146 views
Some characters (trademark sign, etc) unable to write to a file but is printable on the screen
I've been trying to scrape data from a website and write out the data that I find to a file. More than 90% of the time, I don't run into Unicode errors but when the data has the following characters ...
1
vote
2answers
959 views
Python urllib.request and utf8 decoding question
I'm writing a simple Python CGI script that grabs a webpage and displays the HTML file in the web browser (acting like a proxy). Here is the script:
#!/usr/bin/env python3.0
import urllib.request
...
1
vote
1answer
631 views
Python - BeautifulSoup html parsing handle gbk encoding poorly - Chinese webscraping problem
I have been tinkering with the following script:
# -*- coding: utf8 -*-
import codecs
from BeautifulSoup import BeautifulSoup, NavigableString,
UnicodeDammit
import urllib2,sys
import time
try:
...
1
vote
2answers
136 views
Solving the unicode output in Python
I have written some code which sends queries to google and returns the query results. Apparently the contents which are retrieved are in unicode format, so when I put them in a list for example and ...
1
vote
1answer
212 views
Problem with Django/Dajaxice and international characters
I am having a problem using Djajaxice with international characters...
I have a django template...in that template is the following select:
<select name="region" id="id" ...
1
vote
3answers
855 views
Reading “raw” Unicode-strings in Python
I am quite new to Python so my question might be silly, but even though reading through a lot of threads I didn't find an answer to my question.
I have a mixed source document which contains html, ...
0
votes
1answer
22 views
Trying to print unicode characters to the console using string.format()
below is the snippet in question:
print '{:─^10}'.format('') # Print '─' character 10 times
I'm using this to create nice console borders and such. The problem is, running this in my py file with # ...
0
votes
1answer
80 views
How can encode('ascii', 'ignore') through a UnicodeDecodeError?
This line
data = get_url_contents(r[0]).encode('ascii', 'ignore')
produces this error
UnicodeDecodeError: 'ascii' codec can't decode byte 0xc3 in position 11450: ordinal not in range(128)
Why? I ...
0
votes
4answers
79 views
Writing UTF-8 friendly parsers in python
I wrote a simple file parser and writer, but then I came across an article talking about the importance of unicode and then it occurred to me that I'm assuming the input file is ascii encoded, which ...
0
votes
1answer
145 views
Comparison with unicode string in if-condition (python) [closed]
Possible Duplicate:
Python '==' vs 'is' comparing strings, 'is' fails sometimes, why?
I am going to skip the part where i tell you how i tested my code and jump ...
0
votes
1answer
106 views
Remove unicode strings in rendered template
I'm trying to return a json like object under this address:
http://ntt.vipserv.org/data/shows
but as a result I'm getting :
{'1': {'url': u'http://www.rte.ie/tv/crimecall/', 'image': ...
0
votes
2answers
287 views
Hash method and UnicodeEncodeError
In Python 2.5, I have the following hash function:
def __hash__(self):
return hash(str(self))
It works well for my needs, but now I started to get the following error message. Any idea of what is ...