2

I am not able to import the module endpoints_proto_datastore.ndb while using Endpoints API with Python. Is anybody facing similar issue? Please let me know what could be the problem.

I am using Google App Engine SDK 1.7.5 for Python.

bossylobster
  • 9,993
  • 1
  • 42
  • 61
Shaik Khader
  • 397
  • 4
  • 19
  • I'm the author of `endpoints-proto-datastore`. Is there a document, presentation or slide deck you were referencing that suggested you import from `endpoints_proto_datastore.ndb`? – bossylobster Mar 06 '13 at 03:21
  • I was following the Vedio available in Youtube http://www.youtube.com/watch?v=9wNRUd9E1jM Appengine : cloud endpoints part II. – Shaik Khader Mar 06 '13 at 03:37
  • Great to hear! If you jump ahead to 7 minutes in, I describe how to include the library in your project. – bossylobster Mar 06 '13 at 04:18
  • 1
    I downloaded library but missed to copy , I did it now and its working Thanks @bossylobster – Shaik Khader Mar 06 '13 at 07:39

1 Answers1

4

It looks like you are using a 3rd party library since the endpoints_proto_datastore is not part of the core App Engine SDK.

In short you will have to include this library in your project and then making sure that is in the path. Refer to this answer for more details.

Community
  • 1
  • 1
Lipis
  • 21,388
  • 20
  • 94
  • 121
  • 1
    Correct. It can be downloaded here: https://code.google.com/p/endpoints-proto-datastore/ – Dan Holevoet Mar 05 '13 at 22:11
  • 1
    Correct http://code.google.com/p/endpoints-proto-datastore/source/browse/#git%2Fendpoints_proto_datastore%253Fstate%253Dclosed i included endpoints_proto_datastore it works for me . Thanks – Shaik Khader Mar 06 '13 at 03:34