I want to write a code, which is copying source code of website after each reload. Can anyone say a library by which i can realize my desires?
2 Answers
You can do that simply with requests:
First pip install requests.
Then:
import requests r = requests.get('http://your_url) print(r.text) If you want to manipulate html you should use beautiful soup, or selenium.
2 Comments
Avo Asatryan
And i dont need any specific library?
Alex
requests, beautifull soup and selenium python are libraries. You just need to install them with pip.