To filter you better use the following URL
www.site.com/user/username
in app.yaml
- url: /user/.*
script: user.py
in user.py
application = webapp.WSGIApplication([('/user/(.*)', Showuser) ],
debug=True)
Look at this link on how to implement the handler (URL Mapping)
http://code.google.com/appengine/docs/webapp/running.html
2008/9/27 fedekun <[EMAIL PROTECTED]>:
> Well, im not sure if i shall do this with app.yamp or WSGIApplication
> I'm working in something like a social site, so the idea is if you go to
> www.site.com/username it displays some information about that user, but i
> dont know how to do it :/
> I'm sorry if i'm spamming with these questions but i have no idea and i have
> search in the documentation...
>
> Thanks in advance!
>
> --
> Best Regards.
> fedekun
>
> >
>
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"Google App Engine" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/google-appengine?hl=en
-~----------~----~----~----~------~----~------~--~---