geoip2.txt 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172
  1. =======================
  2. Geolocation with GeoIP2
  3. =======================
  4. .. module:: django.contrib.gis.geoip2
  5. :synopsis: Python interface for MaxMind's GeoIP2 databases.
  6. The :class:`GeoIP2` object is a wrapper for the `MaxMind geoip2 Python
  7. library`__. [#]_
  8. In order to perform IP-based geolocation, the :class:`GeoIP2` object requires
  9. the `geoip2 Python library`__ and the GeoIP `Country` and/or `City` `datasets
  10. in binary format`__ (the CSV files will not work!). Grab the
  11. ``GeoLite2-Country.mmdb.gz`` and ``GeoLite2-City.mmdb.gz`` files and unzip them
  12. in a directory corresponding to the :setting:`GEOIP_PATH` setting.
  13. Additionally, it is recommended to install the `libmaxminddb C library`__, so
  14. that ``geoip2`` can leverage the C library's faster speed.
  15. __ https://geoip2.readthedocs.io/
  16. __ https://pypi.python.org/pypi/geoip2
  17. __ http://dev.maxmind.com/geoip/geoip2/geolite2/
  18. __ https://github.com/maxmind/libmaxminddb
  19. Example
  20. =======
  21. Here is an example of its usage::
  22. >>> from django.contrib.gis.geoip2 import GeoIP2
  23. >>> g = GeoIP2()
  24. >>> g.country('google.com')
  25. {'country_code': 'US', 'country_name': 'United States'}
  26. >>> g.city('72.14.207.99')
  27. {'city': 'Mountain View',
  28. 'country_code': 'US',
  29. 'country_name': 'United States',
  30. 'dma_code': 807,
  31. 'latitude': 37.419200897216797,
  32. 'longitude': -122.05740356445312,
  33. 'postal_code': '94043',
  34. 'region': 'CA',
  35. 'time_zone': 'America/Los_Angeles'}
  36. >>> g.lat_lon('salon.com')
  37. (39.0437, -77.4875)
  38. >>> g.lon_lat('uh.edu')
  39. (-95.4342, 29.834)
  40. >>> g.geos('24.124.1.80').wkt
  41. 'POINT (-97 38)'
  42. ``GeoIP`` Settings
  43. ==================
  44. .. setting:: GEOIP_PATH
  45. ``GEOIP_PATH``
  46. --------------
  47. A string specifying the directory where the GeoIP data files are
  48. located. This setting is *required* unless manually specified
  49. with ``path`` keyword when initializing the :class:`GeoIP2` object.
  50. .. setting:: GEOIP_COUNTRY
  51. ``GEOIP_COUNTRY``
  52. -----------------
  53. The basename to use for the GeoIP country data file. Defaults to
  54. ``'GeoLite2-Country.mmdb'``.
  55. .. setting:: GEOIP_CITY
  56. ``GEOIP_CITY``
  57. --------------
  58. The basename to use for the GeoIP city data file. Defaults to
  59. ``'GeoLite2-City.mmdb'``.
  60. ``GeoIP`` API
  61. =============
  62. .. class:: GeoIP2(path=None, cache=0, country=None, city=None)
  63. The ``GeoIP`` object does not require any parameters to use the default
  64. settings. However, at the very least the :setting:`GEOIP_PATH` setting
  65. should be set with the path of the location of your GeoIP datasets. The
  66. following initialization keywords may be used to customize any of the
  67. defaults.
  68. =================== =======================================================
  69. Keyword Arguments Description
  70. =================== =======================================================
  71. ``path`` Base directory to where GeoIP data is located or the
  72. full path to where the city or country data files
  73. (``.mmdb``) are located. Assumes that both the city and
  74. country datasets are located in this directory;
  75. overrides the :setting:`GEOIP_PATH` setting.
  76. ``cache`` The cache settings when opening up the GeoIP datasets. May
  77. be an integer in (0, 1, 2, 4, 8) corresponding to the
  78. ``MODE_AUTO``, ``MODE_MMAP_EXT``, ``MODE_MMAP``, and
  79. ``GEOIP_INDEX_CACHE`` ``MODE_MEMORY`` C API settings,
  80. respectively. Defaults to 0 (``MODE_AUTO``).
  81. ``country`` The name of the GeoIP country data file. Defaults
  82. to ``GeoLite2-Country.mmdb``. Setting this keyword
  83. overrides the :setting:`GEOIP_COUNTRY` setting.
  84. ``city`` The name of the GeoIP city data file. Defaults to
  85. ``GeoLite2-City.mmdb``. Setting this keyword overrides
  86. the :setting:`GEOIP_CITY` setting.
  87. =================== =======================================================
  88. ``GeoIP`` Methods
  89. =================
  90. Instantiating
  91. -------------
  92. .. classmethod:: GeoIP2.open(path, cache)
  93. This classmethod instantiates the GeoIP object from the given database path
  94. and given cache setting.
  95. Querying
  96. --------
  97. All the following querying routines may take either a string IP address
  98. or a fully qualified domain name (FQDN). For example, both
  99. ``'205.186.163.125'`` and ``'djangoproject.com'`` would be valid query
  100. parameters.
  101. .. method:: GeoIP2.city(query)
  102. Returns a dictionary of city information for the given query. Some
  103. of the values in the dictionary may be undefined (``None``).
  104. .. method:: GeoIP2.country(query)
  105. Returns a dictionary with the country code and country for the given
  106. query.
  107. .. method:: GeoIP2.country_code(query)
  108. Returns the country code corresponding to the query.
  109. .. method:: GeoIP2.country_name(query)
  110. Returns the country name corresponding to the query.
  111. Coordinate Retrieval
  112. --------------------
  113. .. method:: GeoIP2.coords(query)
  114. Returns a coordinate tuple of (longitude, latitude).
  115. .. method:: GeoIP2.lon_lat(query)
  116. Returns a coordinate tuple of (longitude, latitude).
  117. .. method:: GeoIP2.lat_lon(query)
  118. Returns a coordinate tuple of (latitude, longitude),
  119. .. method:: GeoIP2.geos(query)
  120. Returns a :class:`~django.contrib.gis.geos.Point` object corresponding to the
  121. query.
  122. .. rubric:: Footnotes
  123. .. [#] GeoIP(R) is a registered trademark of MaxMind, Inc.