06 파 이 썬 파충류:post 요청 보 내기

구현 코드:
import requests
import json
 
url = "http://218.241.146.94:8989/translate/trans"
payload = {"from": "zh", "to": "ww", "src_text": ""}
for i in range(3):
    response = requests.post(url, json=payload)
    htm_str = response.content.decode()
    data = json.loads(htm_str)["responseData"]
    print(data.replace(" ", "").replace(" 
", ""))

 
다음으로 전송:https://www.cnblogs.com/jumpkin1122/p/11522201.html

좋은 웹페이지 즐겨찾기