I want to work with site using python, but this site hasn't API
What can I do? I'm beginner in python, and i don't know how can I do this Maybe I need to use python library "request"? I really want to do this, but I don't know how
You can use requests library to get html pages content.
requests
pip install requests
import requests example = requests.get("htpps://example.url") print(example) # You will receive html content
You can use
requests
library to get html pages content.