I'm working on a project that involves logging large amounts of
information about each visitor to the site.

I understand that the contents of request.META cannot be depended
upon, but I would like to log things like REMOTE_ADDR and
HTTP_REFERER.

I am finding myself writing a lot of code that looks like this:

if 'REMOTE_ADDR' in request.META:
    remote_address = request.META['REMOTE_ADDR']
else:
    remote_address = ''

to avoid KeyError exceptions later on.

It just seem that there should be a better way of doing this.  I was
thinking about a method that would perform the test for me and return
either the contents or a blank string.

Anyone have better ideas?

Thanks,

Steven Potter


--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to