0
Can we inset website address in python
Please reply my Question Explain me so,I will able to do it.
2 ответов
+ 2
yes
using requests module
site_html = requests.get(<URL>).text
print(site_html)
just replace <URL> with a url and you will get website html
+ 1
Thanku for answer