mirror of
https://github.com/kennethreitz/requests.git
synced 2026-06-05 22:50:18 +00:00
8 lines
131 B
Python
8 lines
131 B
Python
import requests
|
|
|
|
s = requests.session()
|
|
s.config['encode_urls'] = False
|
|
|
|
r = s.get('http://localhost:7077/get?me=\"')
|
|
print r.text
|