I am looking to extract generated content from a web page.
I am using the library requests in python 3 to return the page as below
import requests
url = "https://app.updateimpact.com/treeof/org.json4s/json4s-
native_2.11/3.5.2"
html_doc = requests.get(url)
print(html_doc.text)
The retrieve text seems to be just padding though. What tools should I be looking at to drill into the content and extract the info there ?