Python distinguishes between byte strings and unicode strings. *Decoding* transforms bytestrings to unicode; *encoding* transform unicode strings to bytes.

learn more… | top users | synonyms

0
votes
1answer
33 views

Converting string unicode to latin

I have the following result from some http requests: Tratamento\ da\ rejei\u00E7\u00E3o\ no\ cancelamento\ da\ desagrega\u00E7\u00E3o i did some research and i was able to find this line of code, ...
1
vote
2answers
75 views

Does python re (regex) have an alternative to \u unicode escape sequences?

Python treats \uxxxx as a unicode character escape inside a string literal (e.g. u"\u2014" gets interpreted as Unicode character U+2014). But I just discovered (Python 2.7) that standard regex module ...
0
votes
1answer
17 views

Scraperwiki character encoding anomaly

Here is a ScraperWiki scraper written in Python: import lxml.html import scraperwiki from unidecode import unidecode html = ...
1
vote
2answers
32 views

Flaskr UnicodeDecodeError

I'm a beginner at Python. I want to learn a web framework, and I chose Flask. I have run through the quickstart. After that, I kept going on the Tutorial. But, I was stuck. After I cloned this ...
0
votes
1answer
37 views

Unicode Disappearing in html.parser

I am extracting HTML from some webpage with Unicode characters as follows: def extract(url): """ Adapted from Python3_Google_Search.py """ user_agent = ("Mozilla/5.0 (Windows; U; Windows NT ...
1
vote
1answer
31 views

How to handle Python 3.x UnicodeDecodeError in Email package?

I try to read an email from a file, like this: import email with open("xxx.eml") as f: msg = email.message_from_file(f) and I get this error: Traceback (most recent call last): File ...
2
votes
2answers
109 views

Python dictionary key/value with prefixes - what's the prefix for?

I've seen a Python dict looks like this lately: test1 = {u'user':u'user1', u'user_name':u'alice'} This confuses me a bit, what is the u before the key/value pair for? Is it some sort of prefix? How ...
0
votes
1answer
62 views

Open() and codecs.open() in Python 2.7 behave strangely different

I have a text file with first line of unicode characters and all other lines in ASCII. I try to read the first line as one variable, and all other lines as another. However, when I use the following ...
1
vote
1answer
77 views

Python escape sequence \N{name} not working as per definition

I am trying to print unicode characters given their name as follows: # -*- coding: utf-8 -*- print "\N{SOLIDUS}" print "\N{BLACK SPADE SUIT}" However the output I get is not very encouraging. The ...
1
vote
1answer
67 views

How to deal with a mix of UTF-8 and ISO-8859-1 characters in Python?

I have a set of documents that appear to contain characters encoded in both UTF-8 and ISO-8859-1. I'd like them to be just UTF-8 encoded. When I take a document and decode it to UTF-8 using ...
0
votes
1answer
91 views

Parsing log file using python and storing its valid value in database using sqlite

Hi i am a newbie to python.i am creating a small program which parses the load log file of a particular website and stores the valid data in particular feild of a database.but some of the feild has ...
0
votes
2answers
23 views

Getting UnicodeDecodeError while accessing csv file

Input file : chars.csv : 4,,x,,2,,9.012,2,,,, 6,,y,,2,,12.01,±4,,,, 7,,z,,2,,14.01,_3,,,, When I try to parse this file, I get this error even after specifying utf-8 encoding. >>> ...
3
votes
1answer
63 views

File operation on non-english file name in python

This issue may be faced by many of us but I am poor in unicode handling. Here is the issue: this is a code snippet, I am trying to execute the .exe file and checking whether the file path exists or ...
0
votes
1answer
22 views

UnicodeDecodeError in SQLite

I'm trying to take a list of 2-element tuples and add them to a SQLite table. The first element of the tuple is a string (encoded in unicode utf-8) and the second element is a murmurhash3 hash of ...
0
votes
2answers
237 views

Correctly reading text from Windows-1252(cp1252) file in python

so okay, as the title suggests the problem I have is with correctly reading input from a windows-1252 encoded file in python and inserting said input into SQLAlchemy-MySql table. The current system ...
0
votes
1answer
51 views

Django : Can't figure out encoding in Django

I have this application working fine in python 2.7 Totally! It takes "من" for example and changes it to "mn". # -*- coding: utf-8 -*- from __future__ import print_function from __future__ import ...
1
vote
2answers
58 views

Accessing unicoded keys with spaces in them in Python 2.7

I am working on a project where I am trying to take Excel files (read in via xlrd) and geocode addresses in them. For this, I am using a list of directories, with each directory entry a separate ...
3
votes
1answer
111 views

What system fonts are available to PIL on Google App Engine?

What fonts are available to use with PIL on App Engine? I know I can upload a font as part of the application but what I basically want is a system provided sans-serif that will work with unicode ...
2
votes
1answer
324 views

Removing unicode \u2026 like characters in a string

I have a string in python2.7 like this, This is some \u03c0 text that has to be cleaned\u2026! it\u0027s annoying! How do i convert it to this, This is some text that has to be cleaned! its ...
1
vote
3answers
67 views

parentheses when printing list

This is not sqlite specific, but it I wondered while learning python and sqlite3 and listing the results of query. I have simple code: connection = sqlite3.connect("db.sqlite") cursor = ...
1
vote
2answers
91 views

Python ftplib UnicodeEncodeError when trying to upload an XML with unicode content

I am trying to upload an XML with unicode content to a FTP server using ftplib, but getting the following exception when I try to upload the using storbinary method. The XML data is properly encoded ...
1
vote
0answers
79 views

bytes to string conversion error

I have a variable that comes from argument list: When I try to print it it give error: Here is my code segment: debugfile = open("debugfile.txt", "w") debugfile.write(args.data_dir_path) ...
3
votes
0answers
169 views

Python UnicodeEncodeError: codec can't encode character [duplicate]

I created an executable file from my python script (checkData.py) I'm trying to pass string data, which includes locale characters, to this exe file from another python script something like below: ...
0
votes
2answers
86 views

making a list of traditional Chinese characters from a string

I am currently trying to estimate the number of times each character is used in a large sample of traditional Chinese characters. I am interested in characters not words. The file also includes ...
1
vote
0answers
30 views

If a string is in Unicode 3.2.0 NFD, is it safe to compose it into Unicode 6.1.0 NFC (using Python 3.3's unicodedata.normalize function)?

Consider this code in Python 3.3: import unicodedata foo = 'some unicode string that contains characters decomposable to Unicode 3.2.0 NFD' bar = unicodedata.ucd_3_2_0.normalize('NFD', foo) bla = ...
0
votes
2answers
101 views

unicode error while zipfile extract

I have a little script which shall extract a .zip-file. This works well, but only for .zip-files which doesn't contain files with letters like "ä", "ö", "ü" (and so on) in their filenames. Otherwise I ...
0
votes
0answers
10 views

How can I suppress the unicode string indicator when printing a dict

How can I suppress the unicode string indicator when printing a dict mydict = { u'a':{u'k':1, u'b':'foo'}, u'b':{u'k':2, u'b':'boo'} } print mydict
2
votes
1answer
131 views

Why can't I normalize this random unicode string?

I need to evaluate levenshtein edit distance on unicode strings, which means that two strings containing identical content will need to be normalized to avoid biasing the edit distance. Here is how I ...
0
votes
2answers
135 views

Python: Why am I getting a UnicodeDecodeError?

I have the following code that search through files using RE's and if any matches are found it move the file into a different directory. import os import gzip import re import shutil def regEx1(): ...
1
vote
1answer
142 views

shlex.split still not supporting unicode?

According to the documentation, in Python 2.7.3, shlex should support UNICODE. However, when running the code below, I get: UnicodeEncodeError: 'ascii' codec can't encode characters in position ...
1
vote
1answer
130 views

UnicodeDecodeError: 'ascii' codec… when trying to encode a structure for JavaScript

I'm trying to create a unicode string out of a python structure. I don't want to use python's default string conversion methods since I want this unicode string to be in a particular structure so that ...
2
votes
4answers
221 views

How do I allow opening of files that have Unicode characters in their filenames?

I have this Python script here that opens a random video file in a directory when run: import glob,random,os files = glob.glob("*.mkv") files.extend(glob.glob("*.mp4")) ...
3
votes
2answers
133 views

Keep non-Latin characters when scraping page in python

I have a program that scrapes a page, parses it for any links, then downloads the pages linked to (sounds like a crawler, but it's not) and saves each one in a separate file. The file name used to ...
-1
votes
1answer
142 views

escape character confusion with mysql and python

I want to upload logo image from http://werkzeug.pocoo.org/ After saving it I tried the following. I'm a noob so please help.. the received stream when i upload through a html forms is ...
0
votes
0answers
86 views

webapp2.WSGIApplication and url encoding/decoding issue only with mapped domain

i am experiencing issues with non ascii characters in urls (coming from bots). the strange thing is that this issue happens only when i access my app with the mapped domain. in my app i need to ...
0
votes
1answer
112 views

Python DELETE character (Unicode 7F) does not seem to do anything. Shouldn't it delete the succeeding character, or am I doing it wrong?

I went into my Python shell and tested this out, here are the results: >>> print u"hi\u007F there" hi there According to my understanding of this character, it should have not shown the ...
2
votes
2answers
73 views

PIL: how to draw € on an image with draw.text?

I have a title ("cadeau check 50 €") in a form value that I want to write to a background image with arial.ttf. My text is correct but for the euro sign. I have 2 [] in place. I don't know where the ...
1
vote
1answer
166 views

OpenERP code throws exceptions when run in background

I don't know if this should be posted under serverfault or stackoverflow. I don't know if it's a locale problem on my server or if it's python or the OpenERP application that is acting up. I have a ...
0
votes
2answers
173 views

How to properly handle non ASCII strings in python

I'm building an application that in the database has data with latin symbols. Users are able to enter this data. What I've been doing so far is encode('latin2') every user input and decode('latin2') ...
1
vote
1answer
269 views

Python, convert 4-byte char to avoid MySQL error “Incorrect string value:”

I need to convert (in Python) a 4-byte char into some other character. This is to insert it into my utf-8 mysql database without getting an error such as: "Incorrect string value: '\xF0\x9F\x94\x8E' ...
2
votes
2answers
325 views

Django admin input causes UnicodeDecodeError, how?

Today I received data via the Django admin which couldn't be encoded. Somehow the encoding of the data is not in unicode. How is this possible? I have a name property at my Client model which returns ...
0
votes
1answer
182 views

Python 3: dealing with stripping lines in binary mode

with the help of SO members, i was able to reach up to as following, Following is sample code, aim is just to merges text files from give folder and it's sub folder and store output as master.txt. but ...
0
votes
1answer
383 views

Python: Traceback codecs.charmap_decode(input,self.errors,decoding_table)[0]

Following is sample code, aim is just to merges text files from give folder and it's sub folder. i am getting Traceback occasionally so not sure where to look. also need some help to enhance the code ...
3
votes
2answers
229 views

Jython 'unknown enocoding ms932' on japanese system

i've written a program in Jython 2.5.1 which works fine on my Windows 7 machine, but on a japanese machine it throws an Exception saying "unknown encoding 'ms932'" i found that codecs.java is the ...
0
votes
0answers
49 views

removing certain unicode characters in get_db_prep_value

I'm following the example from one of django snippets for encrypting data into a mysql field. I've had issue before though with unicode where somehow some non-ascii field gets introduced when I think ...
1
vote
1answer
169 views

Saving micro sign character in a mongo collection [closed]

I'm working on a python script to created a mongo collection based on a MySql db. The problem is with the micro sign character: bson.errors.InvalidStringData: strings in documents must be valid ...
3
votes
1answer
3k views

UnicodeDecodeError: 'ascii' codec can't decode byte in 0xc3 in position 304: ordinal not in range(128)

I just left the PC at work (using Python 2.7) and had a script that I was just finishing up (reproduced below). It ran fine at work, I just wanted to add one or two things. But I came home and am ...
3
votes
2answers
436 views

String.maketrans for English and Persian numbers

I have a function like this: persian_numbers = '۱۲۳۴۵۶۷۸۹۰' english_numbers = '1234567890' arabic_numbers = '١٢٣٤٥٦٧٨٩٠' english_trans = string.maketrans(english_numbers, persian_numbers) ...
6
votes
1answer
284 views

Python print unicode doesn't show correct symbols

I am using Ubuntu 12.04 LTS. When I try something like this in terminal: rfx@digest:/usr/share/fonts/truetype/ttf-dejavu$ echo вдлжофыдвж вдлжофыдвж Symbols are shown correctly. But if try to print ...
4
votes
2answers
385 views

Python3: UnicodeEncodeError only when run from crontab

first post so be kind please, I have searched a lot around but most things I found are relevant to Python 2. I have a Python3 script that builds a zip file from a file list; it fails with ...

1 2