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. API Reference
  43. =============
  44. .. class:: GeoIP2(path=None, cache=0, country=None, city=None)
  45. The ``GeoIP`` object does not require any parameters to use the default
  46. settings. However, at the very least the :setting:`GEOIP_PATH` setting
  47. should be set with the path of the location of your GeoIP datasets. The
  48. following initialization keywords may be used to customize any of the
  49. defaults.
  50. =================== =======================================================
  51. Keyword Arguments Description
  52. =================== =======================================================
  53. ``path`` Base directory to where GeoIP data is located or the
  54. full path to where the city or country data files
  55. (``.mmdb``) are located. Assumes that both the city and
  56. country datasets are located in this directory;
  57. overrides the :setting:`GEOIP_PATH` setting.
  58. ``cache`` The cache settings when opening up the GeoIP datasets. May
  59. be an integer in (0, 1, 2, 4, 8) corresponding to the
  60. ``MODE_AUTO``, ``MODE_MMAP_EXT``, ``MODE_MMAP``, and
  61. ``GEOIP_INDEX_CACHE`` ``MODE_MEMORY`` C API settings,
  62. respectively. Defaults to 0 (``MODE_AUTO``).
  63. ``country`` The name of the GeoIP country data file. Defaults
  64. to ``GeoLite2-Country.mmdb``. Setting this keyword
  65. overrides the :setting:`GEOIP_COUNTRY` setting.
  66. ``city`` The name of the GeoIP city data file. Defaults to
  67. ``GeoLite2-City.mmdb``. Setting this keyword overrides
  68. the :setting:`GEOIP_CITY` setting.
  69. =================== =======================================================
  70. Methods
  71. =======
  72. Instantiating
  73. -------------
  74. .. classmethod:: GeoIP2.open(path, cache)
  75. This classmethod instantiates the GeoIP object from the given database path
  76. and given cache setting.
  77. Querying
  78. --------
  79. All the following querying routines may take either a string IP address
  80. or a fully qualified domain name (FQDN). For example, both
  81. ``'205.186.163.125'`` and ``'djangoproject.com'`` would be valid query
  82. parameters.
  83. .. method:: GeoIP2.city(query)
  84. Returns a dictionary of city information for the given query. Some
  85. of the values in the dictionary may be undefined (``None``).
  86. .. method:: GeoIP2.country(query)
  87. Returns a dictionary with the country code and country for the given
  88. query.
  89. .. method:: GeoIP2.country_code(query)
  90. Returns the country code corresponding to the query.
  91. .. method:: GeoIP2.country_name(query)
  92. Returns the country name corresponding to the query.
  93. Coordinate Retrieval
  94. --------------------
  95. .. method:: GeoIP2.coords(query)
  96. Returns a coordinate tuple of (longitude, latitude).
  97. .. method:: GeoIP2.lon_lat(query)
  98. Returns a coordinate tuple of (longitude, latitude).
  99. .. method:: GeoIP2.lat_lon(query)
  100. Returns a coordinate tuple of (latitude, longitude),
  101. .. method:: GeoIP2.geos(query)
  102. Returns a :class:`~django.contrib.gis.geos.Point` object corresponding to the
  103. query.
  104. Settings
  105. ========
  106. .. setting:: GEOIP_PATH
  107. ``GEOIP_PATH``
  108. --------------
  109. A string specifying the directory where the GeoIP data files are
  110. located. This setting is *required* unless manually specified
  111. with ``path`` keyword when initializing the :class:`GeoIP2` object.
  112. .. setting:: GEOIP_COUNTRY
  113. ``GEOIP_COUNTRY``
  114. -----------------
  115. The basename to use for the GeoIP country data file. Defaults to
  116. ``'GeoLite2-Country.mmdb'``.
  117. .. setting:: GEOIP_CITY
  118. ``GEOIP_CITY``
  119. --------------
  120. The basename to use for the GeoIP city data file. Defaults to
  121. ``'GeoLite2-City.mmdb'``.
  122. .. rubric:: Footnotes
  123. .. [#] GeoIP(R) is a registered trademark of MaxMind, Inc.