final_match.py 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. """
  2. @author: luojunhui
  3. """
  4. import time
  5. import requests
  6. url = "http://localhost:8111/final_match"
  7. header = {
  8. "Content-Type": "application/json",
  9. }
  10. body = {
  11. "kimiTitle": "🔥96岁北大教授夫人选择断食离世,生前遗言震撼人心!😢",
  12. "traceId": "search-d2f0ec07-8d91-4440-a438-1d9e9bbb9941-1723033241",
  13. "videoObjList": [
  14. {
  15. "coverPath": "long_articles/image/919ea8b6-399c-4117-90b1-9cbfa04655c4",
  16. "title": "漫话寿高多辱(下)陈司寇老师对待生死的达观态度值得老年人借鉴",
  17. "uid": "69637509",
  18. "videoPath": "long_articles/video/c6ed59d1-54b2-4e7f-9a09-0f2f40b28afa"
  19. },
  20. {
  21. "coverPath": "long_articles/image/c067097b-cc1e-4773-9d5c-069503d96b89",
  22. "title": "96岁北大教授夫人绝食4天后离世,临终遗言引人深思",
  23. "uid": "69637509",
  24. "videoPath": "long_articles/video/e88d8334-b838-4b0e-ac25-258ca6f1d789"
  25. },
  26. {
  27. "coverPath": "long_articles/image/b8b042e5-fac0-4a43-b869-8ec7f51d38b6",
  28. "title": "96岁北大教授夫人绝食4天后离世,临终遗言引人深思",
  29. "uid": "69637509",
  30. "videoPath": "long_articles/video/e2fd64c2-10d9-48f4-aed1-3cf26c7bc050"
  31. }
  32. ],
  33. "ghId": "gh_6d205db62f04",
  34. "miniType": 1
  35. }
  36. b = time.time()
  37. response = requests.post(url=url, headers=header, json=body)
  38. a = time.time()
  39. print(a - b)
  40. print(response.json())