mirror of
https://github.com/kennethreitz/requests.git
synced 2026-06-05 22:50:18 +00:00
6 lines
92 B
Python
6 lines
92 B
Python
import requests
|
|
|
|
r = requests.get('http://readability.com')
|
|
r.encoding = None
|
|
|
|
print(r.text) |