I am using the Flask micro-framework (based on Werkzeug) which uses Python (2.6 in my case).

I'm making a website where users can log on and download files.

I need to get the ip address of users when they log on (for logging purposes). Does anyone know how to do this? Surely there is a way to do it with Python?


I apologize for the lack of code. Thank you in advance :-)

link|improve this question

feedback

1 Answer

up vote 11 down vote accepted

See the documentation on how to access the Request object here and then get from this same Request object, the attribute remote_addr, for more information see this documentation of Werkzeug.

link|improve this answer
Great, thank you. I was struggling to get my head around it all. – Jonathan Sep 21 '10 at 13:14
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.