Tagged Questions
2
votes
1answer
28 views
Convert Unicode string to UTF-8, and then to JSON
I want to encode a string in UTF-8 and view the corresponding UTF-8 bytes individually. In the Python REPL the following seems to work fine:
>>> unicode('©', 'utf-8').encode('utf-8')
...
0
votes
2answers
34 views
MySQL, Python - Latin-1/UTF8 Encoding
I have read around setting MySQL tables/DB to UTF8_general_ci charset from the default latin-1 where I was having an error inserting particular unicode strings into the MySQL table from my Python ...
7
votes
2answers
73 views
Strip unicode character modifiers
What is the simplest way to strip the character modifiers from a unicode string in Python?
For example:
A͋͠r͍̞̫̜͌ͦ̈́͐ͅt̼̭͞h́u̡̙̞̘̙̬͖͓rͬͣ̐ͮͥͨ̀͏̣ should become Arthur
I tried the docs but I couldn't ...
0
votes
2answers
50 views
Python strings and str() method encoding and decoding
I see that the Python manual mentions .encode() and .decode() string methods. Playing around on the Python CLI I see that I can create unicode strings u'hello' with a different datatype than a ...
0
votes
3answers
64 views
Python 2.7 reading and writing “éèàçê” from utf-8 file
I made this script which removes every trailing whitespace characters and replace all bad french characters by the right ones.
Removing the trailing whitespace characters works but not the part about ...
0
votes
1answer
40 views
Django, String encodings, UTF-8, and issues - AttributeError: 'Cursor' object has no attribute '_last_executed'
I'm hitting a painful error in a Django command I have written, which is parsing a set of data. The script parses the data, builds the ORM object, and tries to save it. When saving, I get the ...
0
votes
1answer
52 views
Why is Python insisting on using ascii?
When parsing an HTML file with Requests and Beautiful Soup, the following line is throwing an exception on some web pages:
if 'var' in str(tag.string):
Here is the context:
response = ...
0
votes
1answer
46 views
UnicodeDecodeError: 'ascii' codec can't decode byte in Python
I've got a very peculiar encoding problem. I've looked at plenty of questions about this error with no actual answers. I am aware of Unicode issues in Python, so I start every file with:
# -*- ...
1
vote
2answers
52 views
Pycurl: uploading files with filenames in UTF-8
This question is related to this one.
Please read the problem that Chris describes there. I'll narrow it down: there's a CURL error 26 if a filename is utf-8-encoded and contains characters that are ...
1
vote
1answer
26 views
Character encoding in a GET request with http.client lib (Python)
I am a beginner in python and I coded this little script to send an HTTP GET request on my local server (localhost). It works great, except that I wish I could send Latin characters such as accents.
...
0
votes
1answer
29 views
closurebuilder.py error on Windows: “can't decode byte 0x8f”
I'm attempting to run closurebuilder.py on Windows, and no matter what files I pass, I get the same error from Python:
python goog\closure\bin\build\closurebuilder.py --root=goog/closure/goog/ ...
0
votes
1answer
31 views
encoding='utf-8' raise UnicodeEncodeError when opening utf-8 file with Chinese char
I cann't open file with any Chinese charecter, with encording set to utf-8:
text = open('file.txt', mode='r', encoding='utf-8').read()
print(text)
UnicodeEncodeError: 'charmap' codec can't encode ...
0
votes
2answers
43 views
String characters misinterpreted when iterating over string with unicode chars
I am running on python 2.7 on mac os x 10.6 with file in utf8 and terminal in utf8.
I want to add a period after each occurrence of the vowels å,ä or ö that exist in a given string.
Here is the ...
0
votes
1answer
45 views
How to change utf-8 to cp932 by python with django framework?
python: 2.7.3
django: 1.3.1
#:coding=utf-8:
import csv
from django.utils.encoding import smart_str
from task.models import Task
def export_history_templates(output, encoding='cp932'):
header = ...
1
vote
1answer
42 views
Need RE to detect UTF-8
I have the following code
inf = codecs.open(inPath , encoding='utf-8')
outf = codecs.open(outPath, encoding='utf-8', mode='w')
old = u'’;'
new = u'’;'
for line in inf:
line = ...
3
votes
1answer
96 views
python regex module not working with utf-8 (Devnagari)
I am using python 2.7 for NLP in Bodo Language (uses Devnagari script)
In the process of stop word removal, I made a list of stop words in a file separated by newline ("\n"). I used codecs module to ...
0
votes
1answer
46 views
Generate list from string with proper encoding (UTF-8)
I'm having a hard time trying to generate a list from a string, with a proper UTF-8 encoding, I'm using Python (I'm just learning to program, so bare with my silly question/terrible coding).
The ...
0
votes
1answer
52 views
python2.7 utf-8 input through command line in Windows7
I'm a newbie, and I'm sure a similar question has been asked in the past, but I am having trouble finding/understanding an answer. Thank you in advance for being patient with me!
So I'm trying to ...
0
votes
1answer
48 views
How to redirect utf-8 output into txt file
I ran a python script to write my log files using:
nohup python my_script.py >> log.txt
However, I thought maybe it is >> in Linux which doesn't support the Chinese characters encoded ...
0
votes
4answers
88 views
Python doesn't interpret UTF8 correctly
I know similar questions have been asked a million times, but despite reading through many of them I can't find a solution that applies to my situation.
I have a django application, in which I've ...
0
votes
1answer
64 views
How to send utf-8 content in a urllib2 request?
I'm struggling with the following question for the past half a day and although I've found some info about similar problems, nothing really hits the spot.
I'm trying to send a PUT request using ...
0
votes
1answer
41 views
Where in the Tkinter application stack is a question mark (“?”) substituted in place of Unicode keyboard input into an Text widget? [duplicate]
Where in the Tkinter application stack is a question mark ("?") substituted in place of Unicode keyboard input into an Text widget?
Possible locations: Python, Tkinter, TCL/TK, Windows, Windows ...
0
votes
1answer
32 views
XMLSyntaxError in lxml python
I'm using pyKML to parse a KML.
Here's my code:
# -*- encoding: UTF-8 -*-
import codecs
from pykml import parser
kml_str="""
<?xml version="1.0" encoding="UTF-8"?>
<kml ...
0
votes
2answers
64 views
String to unicode code point escpe sequences in Python
Here is my problem... I have a "normal" String like :
Hello World
And unlike all the other subjects I have found, I WANT to print it as it's Unicode Codepoint Escape value !
The output I am ...
0
votes
1answer
320 views
Url decode UTF-8 in Python
I have spent plenty of time as far as I am newbie in Python.
How could I ever decode such a URL:
...
0
votes
1answer
47 views
How to encode object like list of dict which contains unicode key or value to utf8?
Is there any easy way to convert object which contains unicode string into utf8?
for example:
before = [
u'labelset': {u'labelset_id': 80L, u'labelset_name': u'\u6d17\u8863\u6a5f'},
...
1
vote
2answers
29 views
losing encoding of string when pushing to json in python
Im trying to run a a script in Python on a Linux server that runs a mysql query that results in a few Hebrew strings(made it one here to simplify) as follows:
#!/usr/bin/env python
# -*- coding: ...
0
votes
1answer
45 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 ...
0
votes
1answer
38 views
Python Saving JSON Files as UTF-8
I'm trying to output some UTF-8 characters to a JSON file.
When I save the file they're being written like this:
{"some_key": "Enviar invitaci\u00f3n privada"}
The above is valid and works. When I ...
1
vote
1answer
77 views
Is there a easy way to have a substring of a utf8 encode string, the substring's repr's length less than N in python
for example i have a string, I hope find a easy way to get a substring, which encode in utf-8, and the length of the repr of the substring is <= N, of course i can try N/3 substring and increase ...
0
votes
1answer
197 views
Python: Escape Single Quote from MySQL Query
I have a query string that runs in side a loop and for every item in the list query gets executed. The list contains strings and I use python string format technique to replace the query with the ...
0
votes
1answer
489 views
Python 3 encounter [Decode error - output not utf-8] (sublime text 2)
I'm new learning python, I'm trying to create a calculator by using the standard Tkinter library. Every time I try to build I encounter the following error:
File "C:\Python33\calc.py", line 10
...
0
votes
1answer
105 views
iso-8859-1 and utf8 in python
I have 2 two strings, and I want to compare it together.
"Hỗ trợ ngôn ngữ" I think this is iso-8859-1 encoding
u'H\u1ed7 tr\u1ee3 ng\xf4n ng\u1eef' unicode.
...
0
votes
1answer
31 views
Presenting Multiple Encodings in XML
I'm making available an email API that allows you to obtain the content of certain emails via XML/JSON.
My problem is, I have a list view where I want to present the text of multiple emails at once. ...
2
votes
1answer
85 views
Python 2.7.3 UTF-8 Encoding Irreversible
I've come across a few very troublesome strings while crawling the web. In particular, a page advertises as being UTF-7, and though it's not quite UTF-7 that doesn't appear to be the issue. I'm not ...
1
vote
0answers
90 views
How to parse hindi font from html using BeautifulSoup?
I want to get the contents of a tag using using BeautifulSoup.
My code :
html= "<html><body><td class="HindiTextGray" align="left" valign="top">
<br />
सूरत। ...
0
votes
1answer
69 views
No field names CSV Reader Python UTF-8
So I'm trying to open and read csv file that has no field names. Based on the research I've done, I'm pretty sure it's encoded in UTF-8. My csv has this formatting:
...
3
votes
2answers
88 views
Get POST data and return with res.end() - encoding issue
I'm sending POST data from Python program to Node.JS-server and return with res.end. Here's the python code:
#! /usr/bin/env python
# -*- coding: utf-8 -*-
import requests
value = u"Этот текст в ...
1
vote
1answer
156 views
Python: Write Unicode to CSV using UnicodeWriter
Python Documents have following code example on writing unicode to csv file. I think it has mentioned there that this is the way to do since csv module can't handle unicode strings.
class ...
0
votes
1answer
119 views
how to write utf-8 string to utf-8 file on utf-8 machine with python
Not the first time, by this confused me:
Open the file with codecs.open:
cfh = codecs.open('/tmp/ddfh', 'wb', 'utf-8')
Try to write the string, sa:
In [109]: sa
Out[109]: '\xe6\x96\xb0 ...
4
votes
2answers
94 views
Safely remove all html code from a string in python
I've been reading many q&a on how to remove all the html code from a string using python but none was satisfying. I need a way to remove all the tags, preserve/convert the html entities and work ...
0
votes
2answers
38 views
Non latin symbols in django-simple-rest
Making simple REST service (on django-simple-rest), in first iteration planning only GET. Everything good, but in response i receiving cyrillic symbols as:
>\u041c\u043e\u043b\u043e\u043a\u043e
...
0
votes
0answers
58 views
Special characters in audio devices name : Pyaudio
I'm currently facing a hard problem. I need to use Pyaudio on a french windows environnement and the name of the audio devices contains é or è by default.
This is the error I get when a special ...
0
votes
1answer
52 views
Reading an xml response and printing a required data in python
I have got an xml data as a output for my code. And Now I wanted to get an element value from the obtained xml data.
I have used following commands
data1 = r1.read()
dom = ...
2
votes
1answer
53 views
Python: what is the simplest way to convert utf8 string to �
I have a utf8 string with non-ASCII chars. I need to put it to html file in the ampersand-hash-digits-semicolon form. What is the best way to do this?
0
votes
1answer
110 views
KeyError while reading configuration from utf-8 .ini file using configparser
I'm trying to write a python program using PyCharm and Python 3.3.
What I want to do is that my program will copy files from one directory, to one folder or more (depending on the configuration file).
...
0
votes
2answers
100 views
Utf-8 - ascii - unicode - Exampels [Python]
i am trying to understand the difference between utf-8 ascii and unicode. i ve already read this Unicode, UTF, ASCII, ANSI format differences.
But iam getting some error @python and i dont know how i ...
1
vote
2answers
81 views
Documenting UTF-8 Python code with Doxygen
The following code is not parsed correctly by doxygen, the "Module Docstring" is not shown in the resulting documentation:
# -*- coding: utf-8 -*-
"""
Module Docstring
"""
If I delete the first ...
1
vote
1answer
65 views
UnicodeDecodeError in Django
i am having this issue: even if i added # -*- coding: utf-8 -*- on the top of my views.py, i am getting UnicodeDecodeError. how can i handle those german umlauts ü,ö,ä in my views? i am trying to send ...
0
votes
1answer
101 views
Unicode problems in Python
Huh, ok, so I have this massive problem with encodings and I just do not know how to deal with it. After two days of Google searches I think I just run out of options :)
What I want to do is the ...

