Archived
feat: upload
This commit is contained in:
32 files changed
+365
No files matched your search
@@ -0,0 +1,14 @@
|
||||
#!/usr/bin/env python3
|
||||
# -- coding:utf-8 --
|
||||
# @Author: markushammered@gmail.com
|
||||
# @Development Tool: PyCharm
|
||||
# @Create Time: 2022/2/3
|
||||
# @File Name: resp_test.py
|
||||
|
||||
import requests
|
||||
import random
|
||||
|
||||
name_str = random.sample(range(1, 100), 30)
|
||||
for i in name_str:
|
||||
resp = requests.get(f'http://127.0.0.1:8000/API?owner={i}')
|
||||
print(resp.content)
|
||||
Reference in New Issue
Block a user