Just an http get request like file_get_contents in php, or something simple where I enter URL and it get contents to variable.
Use urllib:
from urllib.request import urlopen
html = urlopen("http://www.stackoverflow.com/").read().decode('utf-8')
print(html)
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With