I need to scrape data from a webpage that use javascript encryption to protect data, so if I visit the page from my browser and I look at the source code I'm not able to see the data, but if I do "Analyze element" in Mozilla or I download the page on my computer and then examine the source code, I see the needed data not encrypted.
At the moment I'm using:
import requests
source = requests.get(url).text
but I receive the unparsed source code
I've also tried to use wget:
import wget
source = wget.download(url)
but it downloads an "Access denied Cloudflare" page.
How can I access the parsed source code in Python?