Using the Requests python library in Google App Engine

前端 未结 3 1716
执念已碎
执念已碎 2020-12-08 07:37

I\'m trying to use the awesome Requests library on Google App Engine. I found a patch for urllib3, which requests relies on, that is compatible with App Engine. https://gith

3条回答
  •  Happy的楠姐
    2020-12-08 08:29

    You can use the latest version of Requests on Google App Engine with the help of requests-toolbelt. This configures Requests to use urllib3's underlying support for App Engine's URLFetch service.

    • Google's documentation on how to use Requests.
    • Straightforward sample of using Requests on Google App Engine.
    • request-toolbelt's AppEngineAdapter.
    • urllib3's AppEngineManager.

提交回复
热议问题