Venkat You really need to start looking at code and docs (Also when you post errors include a little more of the traceback is more useful)
What you will see is that some other code (ie maybe the twitter code) will be using tempfile.NamedTemporaryFile which is not supported in the restricted python environment. Have a look at http://code.google.com/appengine/docs/python/runtime.html#Pure_Python Which lists the restrictions of the python runtime and there is your answer. T On Mar 20, 7:15 pm, Venky <[email protected]> wrote: > Hello, > > Hello I am running an twiter api application using pydev.... > > when iam running my application on localhost... > > raise NotImplementedError("Only tempfile.TemporaryFile is available > for use") is getting displayed > > please help > > Regards > venkat. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Google App Engine" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/google-appengine?hl=en -~----------~----~----~----~------~----~------~--~---
