0
Is it possible to compile JS code in python?
want to collect data in a website which uses reactjs
4 Respuestas
+ 1
Hello. Please explain.
0
Luk, yes likewise! The deal is to extract all html code inside the "root" (or something like) so then I can collect things like .csv files directly by a python script
0
Mika Rn Probably Selenium library can be used.
0
as Martin Taylor stated, there could be legal concerns when web scraping. with that being said, you can use beautifulsoup or scrapy to at least read and extract data within html. some website may block http requests and you may need to use selenium to lod pages and beautifulsoup to extract the html data.