0
votes
2answers
113 views

UnicodeEncodeError: 'ascii' codec can't encode character u'\u2026'

I'm learning about urlib2 and beautiful soup and on first tests am getting errors like: UnicodeEncodeError: 'ascii' codec can't encode character u'\u2026' in position 10: ordinal not in range(128) ...
0
votes
1answer
40 views

BeautifulSoup 'href' list that is giving ambiguous TypeErrors?

I'm using beautifulsoup to scrape urls from a webpage. Everything is going good, until some of the urls have non-ascii characters in them. requests.get('http://www.reddit.com') soup = ...
2
votes
2answers
197 views

HTML encoding and lxml parsing

I'm trying to finally solve some encoding issues that pop up from trying to scrape HTML with lxml. Here are three sample HTML documents that I've encountered: 1. <!DOCTYPE html> <html ...
1
vote
1answer
78 views

Python/BeautifulSoup Parsing HTML Fractions

Questions Why does is the output in the final two cases BOTH unicode, but in one case it shows the fraction, and in the other it shows some other code representing the fraction? What is the cleanest ...
0
votes
1answer
97 views

python - struggling with string encoding and accented quotes/apostrophes

I have a simple RSS feed script that takes the contents of each article and runs it through some simple processing before saving it in a database. The problem is, after running the text through the ...
0
votes
1answer
234 views

Warning: Some characters could not be decoded, and were replaced by REPLACEMENT CHARACTER

I'm creating a script to download some mp3 podcasts from a site and write them to a certain location. I'm nearly finished, and the files are being downloaded and created. However, I'm running into a ...
0
votes
1answer
84 views

Python - writing unicode strings to a file & beautiful soup

I'm using BeautifulSoup to parse some XML files. One of the fields in this file frequently uses Unicode characters. I've tried unsuccessfully to write the unicode to a file using encode. The process ...
1
vote
1answer
296 views

Trouble converting a string from Unicode in Python 2.7?

I'm extremely confused over unicode in Python 2.x. I'm using BeautifulSoup to scrape a webpage, and I'm trying to insert the things I find into a dictionary with the name as the key, and the url as ...
0
votes
1answer
108 views

UnicodeDammit: detwingle crashes on a website

I scrap websites and use BeautifulSoup4 to parse them. As the websits can have really random char sets, I use UnicodeDammit.detwingle to ensure that I feed proper data to BeautifulSoup. It worked ...
1
vote
1answer
286 views

UnicodeWarning: Unicode equal comparison. How to replace non-standard characters in NavigableString dataype?

I'm scraping a website with Python 2.7 using BeautifulSoup. Here's my code: # -*- coding: utf-8 -*- from BeautifulSoup import BeautifulSoup import urllib import json url = 'http://www.website.com' ...
0
votes
1answer
99 views

Check if a string contains “pålogget” - unicode error

I am playing around with screenscraping with BeautifulSoup on a Norwegian site. I need to check if a string contains the word "Pålogget" (meaning logged on). if "Pålogget" in status: I get the ...
0
votes
3answers
89 views

How to run an attribute value through a regular expression after extracting via BeautifulSoup?

I have a URL that I want to parse a part of, particularly the widgetid: <a href="http://www.somesite.com/process.asp?widgetid=4530">Widgets Rock!</a> I've written this Python (I'm a bit ...
2
votes
4answers
315 views

BeautifulSoup Prettify fails on copyright symbol

I am getting a Unicode error: UnicodeEncodeError: 'charmap' codec can't encode character u'\xa9' in position 822: character maps to <undefined> This appears to be a standard copyright symbol, ...
1
vote
1answer
178 views

Python, .format(), and UTF-8

My background is in Perl, but I'm giving Python plus BeautifulSoup a try for a new project. In this example, I'm trying to extract and present the link targets and link text contained in a single ...
1
vote
1answer
369 views

Scraping a website whose encoding is iso-8859-1 instead of utf-8: how do I store the correct unicode in my database?

I'd like to scrape a website using Python that is full of horrible problems, one being the wrong encoding at the top: <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> ...
0
votes
1answer
213 views

get_text() has UnicodeEncodeError

I have the following HTML: <div class="dialog"> <div class="title title-with-sort-row"> <h2>Description</h2> <div class="dialog-search-sort-bar"> ...
2
votes
1answer
286 views

Using Beautiful Soup with accents and different characters

I'm using Beautiful Soup to pull medal winners from past Olympics. It's tripping over the use of accents in some of the events and athlete names. I've seen similar problems posted online but I'm new ...
0
votes
2answers
945 views

How to find all text inside <p> elements in an HTML page using BeautifulSoup

I need to find all the visible tags inside paragraph elements in an HTML file using BeautifulSoup in Python. For example, <p>Many hundreds of named mango <a href="/wiki/Cultivar" ...
8
votes
3answers
2k views

Unicode error when outputting python script output to file

This is the code: print '"' + title.decode('utf-8', errors='ignore') + '",' \ ' "' + title.decode('utf-8', errors='ignore') + '", ' \ '"' + desc.decode('utf-8', errors='ignore') + '")' ...
20
votes
2answers
26k views

UnicodeEncodeError: 'ascii' codec can't encode character u'\xa0' in position 20: ordinal not in range(128)

I'm having problems dealing with unicode characters from text fetched from different web page (on different sites). I am using BeautifulSoup. The problem is that the error is not always reproducable ...
1
vote
1answer
785 views

Getting clean text from text/html documents using BeautifulSoup

I have a document that has two content types: text/xml and text/html. I would like to use BeautifulSoup to parse the document and end up with a clean text version. The document starts as a tuple, so I ...
0
votes
1answer
966 views

converting NavigableString to unicode string

When I run the following code: if substr in movie.lowercase: I get the following error AttributeError: 'NavigableString' object has no attribute 'lowercase' movie is from here: movie = ...
1
vote
1answer
248 views

stuck with encodings in python with BeautifulSoup

I've been stuck for hours with this simple piece of code, the page is encoded in UTF-8. With python's HTMLParser it works well, no UnicodeDecodeError, just when I try to parse it with BS. I've tried * ...
3
votes
2answers
329 views

Beautiful Soup raises UnicodeEncodeError “ordinal not in range(128)”

I am trying to parse arbitrary documents download from the wild web, and yes, I have no control of their content. Since Beautiful Soup won't choke if you give it bad markup... I wonder why does it ...
0
votes
2answers
629 views

Can't decode output from BeautifulSoup in Python

I've been attempting to write a little scraper in Python using BeautifulSoup. Everything goes smoothly until I attempt to print (or write to a file) the strings contained inside the various HTML ...
3
votes
2answers
465 views

Error when inserting strings into SQLite database from Python code

When I want to insert a string from Python code to SQLite database I get this error: sqlite3.ProgrammingError: You must not use 8-bit bytestrings unless you use a text_factory that can interpret ...
1
vote
3answers
2k views

How to convert BeautifulSoup.ResultSet to string

So I parsed a html page with .findAll (BeautifulSoup) to variable named result. If I type result in Python shell then press Enter, I see normal text as expected, but as I wanted to postprocess this ...
4
votes
3answers
2k views

Python and BeautifulSoup encoding issues

I'm writing a crawler with Python using BeautifulSoup, and everything was going swimmingly till I ran into this site: http://www.elnorte.ec/ I'm getting the contents with the requests library: r = ...
4
votes
3answers
995 views

UnicodeEncodeError when writing to a file

I am trying to write some strings to a file (the strings have been given to me by the HTML parser BeautifulSoup). I can use "print" to display them, but when I use file.write() I get the following ...
0
votes
1answer
81 views

Codes are in scraped text instead of unicode characters

I'm using beautiful soup for extracting some texts. The program works in command line and when I run it it displays codes like &#237; &#233; etc. Do you know how to correct it? thank you
1
vote
4answers
1k views

Python - problem with accented chars when scraping data from website

I'm Nicola, a new user of Python without a real background in computer programming. Therefore, I'd really need some help with a problem I have. I wrote a code to scrape data from this webpage: ...
0
votes
1answer
607 views

python universal feedparser crashing on unicode error

I am using OSX 10.6 and python 2.7.1 with BeautifulSoup 3.0 and feedparser 5.01. I am trying to parse the New York Times RSS Feed, which validates, and which Beautiful Soup on its own will parse ...
2
votes
1answer
1k views

Python string processing, Unicode & Beautiful Soup

I've been searching for solutions to a bug that I have but haven't found/understood one that will work. Essentially, if I use the string functions (translate, strip, etc.) I get Unicode errors (ascii' ...
1
vote
1answer
1k 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
1answer
421 views

How to: remove part of a Unicode string in Python following a special character

first a short summery: python ver: 3.1 system: Linux (Ubuntu) I am trying to do some data retrieval through Python and BeautifulSoup. Unfortunately some of the tables I am trying to process ...
0
votes
2answers
4k views

ANSI, ASCII, Unicode and encoding confusion with Python

I was happily using BeautifulSoup and I'm also using a text file as input parameters of my Python script. I then came across the famous "UnicodeEncodeError" error. I've been reading questions here ...
4
votes
2answers
1k views

BeautifulSoup doesn't give me Unicode

I'm using Beautiful soup to scrape data. The BS documentation states that BS should always return Unicode but I can't seem to get Unicode. Here's a code snippet import urllib2 from libs.BeautifulSoup ...
5
votes
2answers
4k views

Beautiful Soup Unicode encode error

I am trying the following code with a particular HTML file from BeautifulSoup import BeautifulSoup import re import codecs import sys f = open('test1.html') html = f.read() soup = BeautifulSoup(html) ...
11
votes
3answers
10k views

Decoding HTML entities with Python

I'm trying to decode HTML entries from here NYTimes.com and I cannot figure out what I am doing wrong. Take for example: "U.S. Adviser&#8217;s Blunt Memo on Iraq: Time &#8216;to Go ...
0
votes
2answers
2k views

How to convert html entities into symbols?

I have made some adaptations to the script from this answer. and I am having problems with unicode. Some of the questions end up being written poorly. Some answers and responses end up looking like: ...
5
votes
2answers
3k views

BeautifulSoup gives me unicode+html symbols, rather than straight up unicode. Is this a bug or misunderstanding?

I'm using BeautifulSoup to scrape a website. The website's page renders fine in my browser: Oxfam International’s report entitled “Offside! ...
0
votes
2answers
5k views

Decoding HTML Entities With Python

The following Python code uses BeautifulStoneSoup to fetch the LibraryThing API information for Tolkien's "The Children of Húrin". import urllib2 from BeautifulSoup import BeautifulStoneSoup URL = ...