Skip to content
This repository was archived by the owner on Aug 7, 2024. It is now read-only.

Commit db94041

Browse files
authored
Included requests_toolbelt in dependencies
I just tried to use the library in Gae and was missing the `requests_toolbelt`.
1 parent c736c47 commit db94041

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

GAE.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Google App Engine uses virtual machines to do work and serve your application's
1313
Prerequisites
1414
*************
1515

16-
Follow the `third party vendor library install instructions <https://cloud.google.com/appengine/docs/python/tools/using-libraries-python-27#vendoring>`_ to include the two dependency libraries listed in ``requirements.txt``: ``requests`` and ``requests_oauthlib``, as well as this ``python-twitter`` library. Typically you can just place the three module folders into the same place as your app.yaml file; it might look something like this:
16+
Follow the `third party vendor library install instructions <https://cloud.google.com/appengine/docs/python/tools/using-libraries-python-27#vendoring>`_ to include the dependency libraries listed in ``requirements.txt``: ``requests``, ``requests_oauthlib`` and ``requests_toolbelt``, as well as ``python-twitter`` library. Typically you can just place the module folders into the same place as your app.yaml file; it might look something like this:
1717

1818
| myapp/
1919
| ├── twitter/
@@ -52,4 +52,4 @@ If you plan to store tweets or other information returned by the API in Datastor
5252

5353
Sockets
5454
^^^^^^^^^
55-
When urllib3 is imported on App Engine it will throw a warning about sockets: ``AppEnginePlatformWarning: urllib3 is using URLFetch on Google App Engine sandbox...`` This is just a warning that you'd have to use the Sockets API if you intend to use the sockets feature of the library, which we don't use in python-twitter so it can be ignored.
55+
When urllib3 is imported on App Engine it will throw a warning about sockets: ``AppEnginePlatformWarning: urllib3 is using URLFetch on Google App Engine sandbox...`` This is just a warning that you'd have to use the Sockets API if you intend to use the sockets feature of the library, which we don't use in python-twitter so it can be ignored.

0 commit comments

Comments
 (0)