import requests url = 'https://cyv.waosmart.com/' data = {'keywords': 'python'} resp = requests.post(url, data=data) print(resp.json()) resp.close()