import requests
appkey = 'your_appkey_here'
url = f"https://api.jisuapi.com/expressaddress/query?appkey={appkey}"
address = '杭州市余杭区通运路378号 马乐15000000000邮编038300'
post_data = {'address': address}
response = requests.post(url, data=post_data)
jsonarr = response.json()
if jsonarr['status'] != 0:
print(jsonarr['msg'])
exit()
result = jsonarr['result']
print(result['name'], result['mobile'], result['province'], result['city'], result['area'], result['addr'], ) 

© 2015-2025 杭州极速互联科技有限公司 版权所有 浙ICP备17047587号-4 浙公网安备33010502005096 增值电信业务经营许可证:浙B2-20190875