1
vote
0answers
34 views

Can CDATA sections be preserved by BeautifulSoup?

I'm using BeautifulSoup to read, modify, and write an XML file. I'm having trouble with CDATA sections being stripped out. Here's a simplified example. The culprit XML file: <?xml version="1.0" ...
0
votes
1answer
61 views

How can I extract XML text using python BeautifulSoup?

I'm trying to extract dialog from the Folger Library Shakespeare TEI XML editions. A typical chunk of dialog looks like this: <sp xml:id="sp-0024" who="#HORATIO"> <speaker ...
2
votes
1answer
38 views

BeautifulSoup - Check if tags are empty

I have an XML file that I am parsing through BeautifulSoup. A small portion of my file is: <document> <ad> <date>21-Apr-2013</date> </ad> <ad> ...
0
votes
1answer
29 views

Creating an XML document with BeautifulSoup

In all the examples and tutorials I have seen of BeautifulSoup, an HTML/XML document is passed and a soup object is returned which can then be used to modify the document. However, how can I use ...
0
votes
3answers
99 views

How to find all nested nodes within a file using Beautiful Soup [closed]

So this has been driving me crazy all day. I am trying to extract xml data in the format: <Script message="a" soundID="1"> <Script message="bar"> <Script message="foo!"> ...
0
votes
1answer
23 views

Python and BeautifulSoup shuffles my tags around?

This has been puzzling me for a while now, and I can not figure out what's going on here. This is the original XML file: <?xml version="1.0" encoding="UTF-8" ?> <book> <meta> ...
0
votes
0answers
36 views

Beautiful Soup 4 raw output

I'm using a very limited subset of xml where I basically have only tags and inside of them is raw data(tiger hashes to be precise). The problem is that bs changes that data by escaping characters and ...
0
votes
2answers
43 views

Find All Elements Given Namespaced Attribute

If I have something like this: <p>blah</p> <p foo:bar="something">blah</p> <p foo:xxx="something">blah</p> How would I get beautifulsoup to select elements with ...
0
votes
0answers
76 views

What is the most powerful and simplest XML parser for python? [closed]

I am used to using Nokogiri with Ruby, but am looking to try out some python and wondering what is a nice XML parser in Python? I've looked at beautiful soup, but that seems more geared towards HTML, ...
3
votes
1answer
130 views

How to get BeautifulSoup 4 to respect a self-closing tag?

This question is specific to BeautifulSoup4, which makes it different from the previous questions: Why is BeautifulSoup modifying my self-closing elements? selfClosingTags in BeautifulSoup Since ...
2
votes
1answer
124 views

Loading huge XML files and dealing with MemoryError

I have a very large XML file (20GB to be exact, and yes, I need all of it). When I attempt to load the file, I receive this error: Python(23358) malloc: *** mmap(size=140736680968192) failed (error ...
1
vote
3answers
166 views

Beautifulsoup HTML data extraction with BeautifulSoup and Python

I have HTML text that looks like many instances of the following structure: <DOC> <DOCNO> XXX-2222 </DOCNO> <FILEID>AP-NR-02-12-88 2344EST</FILEID> <HEAD>Reports ...
1
vote
1answer
117 views

Parsing XML RSS feed byte stream for <item> tag

I'm attempting to parse an RSS feed for the first instance of an element "". def pageReader(url): try: readPage = urllib2.urlopen(url) except urllib2.URLError, e: # print 'We failed to reach a ...
0
votes
2answers
87 views

Extracting XML Attributes

I have an XML file with several thousand records in it in the form of: <custs> <record cust_ID="B123456@Y1996" l_name="Jungle" f_name="George" m_name="OfThe" city="Fairbanks" zip="00010" ...
1
vote
4answers
102 views

How to access a tag called “name” in BeautifulSoup

I want to access a tag called as "name" such as: <contact><name>Yesügey</name><lastName>Yeşil</lastName><phone>+90 333 9695395</phone></contact> ...
3
votes
2answers
208 views

How to parse XML in Python and LXML?

Here's my project: I'm graphing weather data from WeatherBug using RRDTool. I need a simple, efficient way to download the weather data from WeatherBug. I was using a terribly inefficient ...
5
votes
3answers
262 views

Why is BeautifulSoup unable to correctly read/parse this RSS (XML) document?

YCombinator is nice enough to provide an RSS feed and a big RSS feed containing the top items on HackerNews. I am trying to write a python script to access the RSS feed document and then parse out ...
1
vote
2answers
146 views

BeautifulSoup finding xml tags

I've got some OSM data of fast food restaurants which I retrieved using the Xapi, and here are some sample results: <osm version="0.6" generator="Osmosis SNAPSHOT-r26564"> <node ...
1
vote
1answer
192 views

parse many xml objects and write them into a text file (csv, tab-del, …) using python

I have many XML objects of the following format: <GetSingleItemResponse xmlns="urn:ebay:apis:eBLBaseComponents"> <Timestamp>2012-10-25T03:09:50.817Z</Timestamp> ...
1
vote
1answer
124 views

Writing modified Beautiful Soup tree to file, while maintaining original XML formatting

We have an XML document that has a tag we wish to alter: ...<version>1.0</version>... It's buried deep in the XML file, but we're successfully able to use Beautiful Soup to replace its ...
0
votes
0answers
72 views

Automatically appending each paragraph?

I'm a beginner programmer and would love some help on this probably trivial problem: I have a .xml file containing the structures: <norm builddate="20120625150106" ...
1
vote
1answer
239 views

Replacing CDATA NavigableStrings with Tags in BeautifulSoup

I am parsing several XML document feeds with BeautifulSoup, and would like to do some preprocessing to replace non-standard CDATA tags with custom XML tags. To illustrate: The following XML ...
3
votes
1answer
120 views

How to maintain case-sensitive tags in BeautifulSoup.BeautifulStoneSoup?

I am writing a script that edits an XML file with BeautifulStoneSoup, but the library converts all tags to lower case. Is there an option to conserve the case? import BeautifulSoup xml = ...
0
votes
2answers
58 views

Saving the XML document, breaks my XSI declaration

I have a question: I am parsing an XML that has a namespace with a python xml parser ( beautifulsoup ), and when I save that xml the parser replaces: "xsi:" in the namespace with ...
0
votes
2answers
84 views

BeautifulSoup doesn't reads tags properly

I am tring to parse an xml using BeautifulSOup, but it results in improper output. file.xml: <?xml version="1.0" ?> <opening name="value1" > <element name="value1.1"/> ...
1
vote
1answer
166 views

BeautifulSoup + URLLib2 not extracting all of the XML from target

Here's my code: import urllib2 from bs4 import BeautifulSoup url = "http://www.sec.gov/Archives/edgar/data/1288776/000119312512312575/goog-20120630.xml" req = urllib2.Request(url, "r") response = ...
0
votes
0answers
101 views

Extract attribute value from xml

I am trying to extract some data from a xml file and a part of xml data looks like this <table:table-row table:style-name="ro2"> <table:table-cell office:value-type="string"> ...
0
votes
2answers
83 views

Pulling the value from parsed XML in Python (only)

I am trying to pull a value (only) from some XML in Python using Beautiful Soup (but I'll gleefully dump it for anything else if recommended). Consider the following bit of code; global humidity, ...
0
votes
1answer
52 views

Exception handling when the input link doesn't have the appropriate form

for instance, i have a list of links like this: linklists = ['www.right1.com', www.right2.com', 'www.wrong.com', 'www.right3.com'] and the form of each right1,right2 and right3's html is: ...
2
votes
4answers
382 views

How do I get raw text with beautifulsoup?

I have a xml like this: <link> www.link1.com </link> <link> www.link2.com </link> I have tried this code: from BeautifulSoup import BeautifulStoneSoup soup = ...
2
votes
2answers
131 views

Python: Run Script to Write Several Files at Once

New to programming. I wrote a Python code (with help from stackoverflow) to read XML files in a directory and use BeautifulSoup to copy the text for an element and write this to an output directory. ...
1
vote
1answer
467 views

How to loop through Beautiful Soup elements to get attribute values

I need to iterate over Beautiful Soup elements and get the attribute values: For a XML doc: <?xml version="1.0" encoding="UTF-8"?> <Document> <Page x1="71" y1="120" x2="527" ...
2
votes
2answers
2k views

BeautifulSoup get_text does not strip all tags and JavaScript

I am trying to use BeautifulSoup to get text from web pages. Below is a script I've written to do so. It takes two arguments, first is the input HTML or XML file, the second output file. import sys ...
2
votes
1answer
185 views

Extracting tag information with beautifulsoup and python

Say I have some xml like <item name=bread weight="5" edible="yes"> <body> some blah </body> <item> <item name=eggs weight="5" edible="yes"> <body> some blah ...
0
votes
2answers
3k views

beautifulsoup findall

I have some xml: <article> <uselesstag></uslesstag> <topic>oil, gas</topic> <body>body text</body> </article> <article> ...
0
votes
3answers
217 views

Python BeautifulSoup double question mark in xml definition

I thought it must be a bug so i issued a bug report here. On the other hand i might be missing something so i need another look on the code. The problem is, when i initialize BeautifulSoup with ...
0
votes
1answer
70 views

Edit XML value based on Key

Using beautifulsoup 4, how do I edit a value based on a name? Given I know name = "foo" (constant and unique), how do I read the value "bar" (unknown at runtime), and change it to a new string, ...
2
votes
6answers
295 views

Efficient XML parsing for 25GB data

My aim is to parse 25 GB of XML data. An example of such a data is given below: <Document> <Data Id='12' category='1' Body="abc"/> <Data Id='13' category='1' Body="zwq"/> . . ...
3
votes
3answers
2k views

A fast python HTML parser

I wrote a python script that processes a large amount of downloaded webpages HTML(120K pages). I need to parse them and extract some information from there. I tried using BeautifulSoup, which is easy ...
1
vote
2answers
331 views

BeautifulSoup XML Only printing first line

I'm using BeautifulSoup4 (And lxml) to parse an XML file, for some reason when I print soup.prettify() it only prints the first line: from bs4 import BeautifulSoup f = open('xmlDoc.xml', "r") soup ...
1
vote
1answer
152 views

Empty element error with Beautiful Soup

I am parsing an xml file using Beautiful Soup but have found inconsistent behaviour when parsing empty elements. I.e. from BeautifulSoup import BeautifulSoup s1 = "<c><a /><b ...
3
votes
1answer
574 views

Beautiful Stone Soup case sensitivity on XML tag names

I am attempting to use Beautiful Stone Soup (BSS) to modify existing XML that has case-sensitive tag names. When BSS reads in the XML, it coerces all the tag names to lower case, and I can't find an ...
0
votes
2answers
1k views

XML parsing in Python using BeautifulSoup

Thank you in advance for paying attention of my question. When I want to parsing XML document in Python using BeautifulSoup library, I faced some problems. The xml document that I want to paring is ...
0
votes
1answer
364 views

Parsing/Extracting Data from API XML feed with Python and Beautiful Soup

Python/xml newb here playing around with Python and BeautifulSoup trying to learn how to parse XML, specifically messing with the Oodle.com API to list out car classifieds. I've had success with ...
-1
votes
1answer
219 views

Python BeautifulSoup with Optional Tags

Let me set up an example: from BeautifulSoup import BeautifulStoneSoup root = ''' <all2> <images> <image> ...
0
votes
2answers
428 views

BeautifulSoup print multiple tag / attr

First off all, this is my first try on Python, so far it looks pretty easy to use, though I still ran into a problem.. I am trying to change an XML-file to an rss-XML The original xml source looks ...
1
vote
2answers
794 views

BeautifulStoneSoup AttributeError: 'NavigableString' object has no attribute 'subtag'

I'm trying to use BeautifulSoup to parse some XML that looks like <a> <b> <c> <d attr="x"> <e> </e> <name> ...
2
votes
3answers
571 views

Reading website XML using Google App Engine & Python

I'm trying to read some xml from the world of warcraft armory (yea I'm one of those) - The url such as this returns the xml in Firefox (you need to view source to see it) but not in other browsers ...
4
votes
3answers
2k views

escaping characters in a xml file with python

I need to escape special characters in an ugly XML file (5000 lines or so long). Here's an example of XML I have to deal with: <root> <element> <name>name & ...
1
vote
1answer
559 views

Can BeautifulSoup parse xml when certain tag is self-closing and not at the same time

Situation like the following. XML file: <tag1/> <tag2>some_data</tag2> <tag1>some_another_data</tag1> tag1 is sometimes self-closing and sometimes has data inside. ...

1 2