How to add third party python libraries in google appengine, which are not provided by google appengine? I am trying to use BeautifulSoup in google appengine and unable to do so. But my question is for any lib i want to use in google appengine.
|
Actually I think this answer fits better here. If you want to use 3rd party libraries that are not included this list, then you'll have to add them manually. In order to include manually any other library you have to have them inside the directory where the
then in your
After doing that you'll be able to use any 3rd party library that you're going to put in that For example:
|
|||||
|
|
|
You simply copy the folder containing the library you want to use into your app engine project. Then when you deploy it's uploaded with your application and is available for use. |
|||
|
|
|
Just put Beautifulsoup in the root of your project and upload it all |
|||||
|