mirror of
https://github.com/crawlab-team/crawlab.git
synced 2026-01-31 18:10:50 +01:00
6 lines
98 B
Python
6 lines
98 B
Python
from time import sleep
|
|
import requests
|
|
|
|
r = requests.get('http://www.baidu.com')
|
|
print(r.content)
|