1👍
✅
There’s a good guide on how to use Django on GAE here:
https://cloud.google.com/python/django/appengine
When you follow that guide you get a requirements-vendor.txt file. Edit that file and add django-geojson
and django-leaflet
to it.
After that you can run pip install -r requirements-vendor.txt -t lib/
to install them.
Now you can follow the rest of the guide for instructions on how to upload everything to GAE.
Source:stackexchange.com