I’ve been looking in the Pyramid API and haven’t been able to find a method that allows me to extract the url in the user’s address bar, specifically including the query strings. Is there a method I keep skimming across?
http://docs.pylonsproject.org/projects/pyramid/dev/api/request.html
It sounds like you just want
request.urlwhich is whatever the user typed in the address bar.request.GETis a dictionary of key/values in the query string.request.POSTis a dictionary of key/values in the request body.request.paramsis a dictionary of the combination of both.This might be better explained in the webob documentation, which is effectively what Pyramid is using for its request and response objects.
http://docs.webob.org/en/latest/index.html