Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is it possible to use a C library with python AppEngine?

I am investigating into if I can use a library like GHMM with my python web service in which runs on AppEngine.

like image 341
topless Avatar asked Aug 03 '12 15:08

topless


2 Answers

Short answer: no

https://developers.google.com/appengine/kb/commontasks

What third party libraries can I use in my application?

You can use any pure Python third party libraries in your Google App Engine application. In order to use a third party library, simply include the files in your application's directory, and they will be uploaded with your application when you deploy it to our system. You can import the files as you would any other Python files with your application.

like image 90
gahooa Avatar answered Nov 09 '22 23:11

gahooa


As @gahooa has said, the generic answer is no.

For more popular libraries that have C dependencies your best option right now is to file a ticket[1], get other to upvote (star) your ticket and have the App Engine add it as a supported library.

[1] http://code.google.com/p/googleappengine/issues/entry?template=Feature%20request

like image 41
schuppe Avatar answered Nov 10 '22 01:11

schuppe