Tagged Questions
1
vote
0answers
67 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
31 views
Unwanted replacement of html entities by BeautifulSoup
I have some html containing mml that I am generating from Word documents using MathType. I have a python script that uses BeautifulSoup to prettify it, but the problem is it takes something like ...
1
vote
1answer
216 views
Correctly Scraping and Displaying Japanese Characters using Python Django BeautifulSoup and Curl
I'm trying to scrape a page in japanese using python, curl, and BeautifulSoup. I then save the text to a MySQL database that's using utf-8 encoding, and display the resulting data using Django.
Here ...
1
vote
1answer
86 views
Cant get PHP to accept the POUND sign from a beautiful soup Python script
SO I have a script that pulls information from an event webpage. URL is this: http://everguide.com.au/melbourne/event/2012-jul-14/colour/
This php script is calling a python script (its part of a ...
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">
...
-1
votes
1answer
70 views
BeautifulSoupTag, strings and UnicodeEncodeError is not so beautiful
I have spent several frustrating hours this morning, trying to handle strings from scraped web pages. I can't seem to get a consistent way of lowercasing the extracted string so I can check for ...
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 = ...
-2
votes
2answers
664 views
Python encode issue with beautifulsoup
Hello I`ve got a problem which encoding
When I put string to beautifulsoup lost all National char
addr = "http://zjazdowa.com.pl/index.php/aktualne-ceny-warzyw-i-owocow-.html" ...
0
votes
4answers
2k views
Problem with encode decode. Python. Django. BeautifulSoup
In this code:
soup=BeautifulSoup(program.Description.encode('utf-8'))
name=soup.find('div',{'class':'head'})
print name.string.decode('utf-8')
error happening when i'm trying to print or ...
2
votes
3answers
2k views
How to unescape special characters from BeautifulSoup output?
I am facing issues with the special characters like ° and ® which represent the degree Fahrenheit sign and the registered sign,
when i print the string the contains the special characters, ...
1
vote
1answer
4k views
urlopen, BeautifulSoup and UTF-8 Issue
I am just trying to retrieve a web page, but somehow a foreign character is embedded in the HTML file. This character is not visible when I use "View Source."
isbn = 9780141187983
url = ...
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 = ...