How can I create a python webhook sender app?
问题 This is a follow up question to this post. I have a data warehouse table exposed via xxx.com\data API endpoint I have been querying this table using the following code and parsing it into a dataframe as follows; import requests import json import http.client import pandas as pd url = "xxx.com\data?q=Active%20%3D1%20and%20LATITUDE%20%3D%20%20%220.000000%22%20and%20LONGITUDE%20%3D%20%220.000000%22&pageSize =300" payload = {} headers = {'Authorization': access_token} response = requests.request(