123456789101112131415161718192021222324 |
- """
- @author: luojunhui
- """
- import json
- import time
- import requests
- url = "http://localhost:8888/videos"
- body = {
- "cate": "video_return",
- "start_date": "2024-04-02",
- "end_date": "2024-04-03",
- "topN": 10
- }
- a = time.time()
- header = {
- "Content-Type": "application/json",
- }
- response = requests.post(url, json=body, headers=header, timeout=600)
- b = time.time()
- print(b - a)
- print(json.dumps(response.json(), ensure_ascii=False, indent=4))
|