mirror of
https://github.com/crawlab-team/crawlab.git
synced 2026-01-27 17:50:53 +01:00
7 lines
120 B
Python
7 lines
120 B
Python
from time import sleep
|
|
import requests
|
|
|
|
for i in range(10):
|
|
r = requests.get('http://www.baidu.com')
|
|
sleep(0.1)
|