Python Forum

Full Version: Python Export Question Below
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Any ideas on how to put the printed results in a CSV, JSON, or Excel format/file?

import requests
from parsel import Selector
 
#GET request from the website
response = requests.get('https://www.youtube.com/')
selector = Selector(response.text)
hreflinks = selector.xpath('//a/@href').getall()
imagelinks = selector.xpath('//img/@src').getall()
 
print(hreflinks)
print(imagelinks)
I'm curious why parsel?
What does it offer over selenium?
You should be able to write hreflinks and imagelinks directly to a file
just open a file and write to file instead of printing.