File: utils.py

package info (click to toggle)
django-maintenance-mode 0.16.1-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 188 kB
  • sloc: python: 499; makefile: 4
file content (7 lines) | stat: -rw-r--r-- 147 bytes parent folder | download
1
2
3
4
5
6
7
# -*- coding: utf-8 -*-

def get_client_ip_address(request):
    """
    Get the client IP Address.
    """
    return request.META['REMOTE_ADDR']