I am new to GAE and I am building a webapp map application. I was wondering when you install handlers in your .yaml application and when you define them in your WSGI?
At first I thought that you only have one main main.py file that runs WSGIApplication, but I notice that you want to use the GAE authorization that you define in the handlers. So this means that you are running several WSGIApplications?
I read the documents "Requirement for login or administrator status", and it seems they have different applications for different roles.
Maybe something like this?
- general.py - login:
- user.py - login: required
- admin.py: - login: admin
But maybe it's bad that your WSGI URLs are spreading everywhere?
If I remember correctly, if you run django in GAE, do you point to a single py file and let the framework handle everything?
I don't want to use Django, but it was so interesting if anyone has any recommendations / recommendations on working with url / hanlders using webapp?
python google-app-engine
Pickels
source share