user462455
user462455

Reputation: 13588

Getting python library listed on Google App Engine services page

What is the procedure to get your python library to be listed on Google App Engine services page.

https://developers.google.com/appengine/docs/python/tools/libraries27

Does Google require us to go through some review process, before our library can be listed on the above page. Or is it decided based on the demand of the library itself. (e.g. If Library X is very popular, does Google talk to Library devs and ask them if it is fine to upload that library on the above page)

Upvotes: 0

Views: 59

Answers (1)

dragonx
dragonx

Reputation: 15143

Those libraries are considered widely used. If you want to get a particular library listed, you probably should start by filing a feature request: http://code.google.com/p/googleappengine/issues/list

You'll need to convince Google that whatever library you're adding is widely used. Essentially, you need to convince people to star the request after you've created it.

Most libraries don't need to be included with the App Engine SDK. Just provide the source and let people include it in the code in their own projects.

Upvotes: 2

Related Questions