Python Forum
Copy xml content from webpage and save to locally without special characters
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Copy xml content from webpage and save to locally without special characters
#2
Example,and use Requests and not urllib.
import requests

url = "https://www.w3schools.com/xml/plant_catalog.xml"
response = requests.get(url)
with open('plant_catalog.xml', 'wb') as fp:
    fp.write(response.content)
With a combination of Beautiful Soup that common to use with this.
import requests
from bs4 import BeautifulSoup

url = "https://www.w3schools.com/xml/plant_catalog.xml"
response = requests.get(url)
soup = BeautifulSoup(response.content, 'xml')
first_common = soup.find('COMMON')
print(first_common.text)
# The whole plant_catalog.xml
#print(soup)

# Save to disk
with open('plant_catalog.xml', 'w') as fp:
    fp.write(soup.prettify())
Output:
Bloodroot
Reply


Messages In This Thread
RE: Copy xml content from webpage and save to locally without special characters - by snippsat - Mar-21-2024, 04:44 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  Locally run an APK and execute functions using Python KovyJ 0 496 Jan-23-2025, 05:21 PM
Last Post: KovyJ
  [SOLVED] Special characters in XML ForeverNoob 3 1,847 Dec-04-2024, 01:26 PM
Last Post: ForeverNoob
  Why is the copy method name in python list copy and not `__copy__`? YouHoGeon 2 1,378 Apr-04-2024, 01:18 AM
Last Post: YouHoGeon
  how to save to multiple locations during save cubangt 1 1,339 Oct-23-2023, 10:16 PM
Last Post: deanhystad
Question Special Characters read-write Prisonfeed 1 1,488 Sep-17-2023, 08:26 PM
Last Post: Gribouillis
  UPDATE SQLITE TABLE - Copy a fields content to another field. andrewarles 14 6,588 May-08-2021, 04:58 PM
Last Post: ibreeden
  Rename Multiple files in directory to remove special characters nyawadasi 9 10,751 Feb-16-2021, 09:49 PM
Last Post: BashBedlam
  copy content of text file with three delimiter into excel sheet vinaykumar 0 2,946 Jul-12-2020, 01:27 PM
Last Post: vinaykumar
  Remove escape characters / Unicode characters from string DreamingInsanity 5 22,022 May-15-2020, 01:37 PM
Last Post: snippsat
  Check for a special characters in a column and flag it ayomayam 0 2,617 Feb-12-2020, 03:04 PM
Last Post: ayomayam

Forum Jump:

User Panel Messages

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