You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Aug 7, 2024. It is now read-only.
python-twitter uses local files (tempfile.gettempdir) for caching purposes.
due to the file access restriction in google app engine this library isn't compatible and can't be run in gae.
I'd like to open a new branch which is gae-friendly. the idea is to re-implement the cache mechanism based on tempfile.TemporaryFile and prefixes. other issues with gaw might happen as well and to be treated in that branch.
before I do so, I'd like to have your opinion first please.
python-twitter uses local files (tempfile.gettempdir) for caching purposes.
due to the file access restriction in google app engine this library isn't compatible and can't be run in gae.
please find the restriction here: https://developers.google.com/appengine/docs/python/runtime#Pure_Python
I'd like to open a new branch which is gae-friendly. the idea is to re-implement the cache mechanism based on tempfile.TemporaryFile and prefixes. other issues with gaw might happen as well and to be treated in that branch.
before I do so, I'd like to have your opinion first please.
thanks in advance
Akiva