converting curl url encoded data to python format

I have the following working curl request which I use to update my apps manifest in slack: curl -D /dev/stderr -s -d app_id=<APP_ID> –data-urlencode manifest@manifest.json -H ‘authorization: Bearer <CURRENT_TOKEN>’ https://slack.com/api/apps.manifest.update I am attempting to achieve the same result using python3 with the below: import requests currentKey = <CURRENT_KEY> headers = { ‘authorization’: ‘Bearer ‘ +… Read More converting curl url encoded data to python format