Python Forum
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Parse XML line by line
#3
I never use urllib or parser(DOM/SAX) from stander library,
there are better solution that almost is a standard in the Python world.
Eg Requests , BeautifulSoup, lxml
Example:
import requests
from bs4 import BeautifulSoup

url = 'https://www.sec.gov/Archives/edgar/data/77877/000007787714000013/pdce-20131231.xml'
url_get = requests.get(url)
soup = BeautifulSoup(url_get.content, 'lxml-xml')
drill = soup.find('ExploratoryDrilling', attrs={'contextRef':"FD2013Q4YTD"})
print(drill.text) #--> 58988000
Reply


Messages In This Thread
Parse XML line by line - by rakhmadiev - Jun-06-2017, 09:20 PM
RE: Parse XML line by line - by nilamo - Jun-07-2017, 03:53 AM
RE: Parse XML line by line - by snippsat - Jun-07-2017, 05:46 AM
RE: Parse XML line by line - by AussieSusan - Jun-07-2017, 05:52 AM
RE: Parse XML line by line - by Larz60+ - Jun-07-2017, 11:16 AM
RE: Parse XML line by line - by rakhmadiev - Jun-07-2017, 01:44 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  Monitor specific line of code and get alert Olimpiarob 0 1,594 Jul-08-2020, 10:06 AM
Last Post: Olimpiarob
  expecting value: line 1 column 1 (char 0) in print (r.json)) loutsi 3 7,810 Jun-05-2020, 08:38 PM
Last Post: nuffink
  Striping the empty line Calli 8 3,377 May-24-2020, 02:47 PM
Last Post: Calli
  Python to interact with the Linux Command Line - Centos/RHEL redhat_boy 2 2,291 May-10-2020, 08:33 AM
Last Post: redhat_boy
  How to get a new line Calli 2 2,064 Apr-19-2020, 12:17 PM
Last Post: Calli
  Scraping from multiple URLS to print in a single line. jb89 4 3,467 Jan-29-2020, 06:12 AM
Last Post: perfringo
  how calculate length of detected line in image openCV Numpy taomihiranga 0 4,444 Jun-11-2019, 04:01 PM
Last Post: taomihiranga
  [Flask] Uploading CSV file to flask, only first line being uploaded. Help ! KirkmanJ 2 6,909 Jun-25-2018, 02:24 PM
Last Post: KirkmanJ
  command line: python -c 'code here' Skaperen 7 7,956 Mar-24-2018, 08:31 AM
Last Post: Gribouillis
  Beautiful soup opens python command line and nothing happens Prince_Bhatia 4 4,613 Aug-01-2017, 11:50 AM
Last Post: Prince_Bhatia

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020