Assuming I have a \'get_item\' view, how do I write the URL pattern for the following php style of URL?
http://example.com/get_item/?id=2&type=foo&co
See this pattern
url(r'^get_item$', get_item)
And your view will look like
def get_item(request): id = int(request.Get.get('id'))