2015-07-30 05:21:03 +08:00
|
|
|
=======================
|
|
|
|
Geolocation with GeoIP2
|
|
|
|
=======================
|
|
|
|
|
|
|
|
.. module:: django.contrib.gis.geoip2
|
2016-02-19 15:31:25 +08:00
|
|
|
:synopsis: Python interface for MaxMind's GeoIP2 databases.
|
2015-07-30 05:21:03 +08:00
|
|
|
|
|
|
|
The :class:`GeoIP2` object is a wrapper for the `MaxMind geoip2 Python
|
|
|
|
library`__. [#]_
|
|
|
|
|
|
|
|
In order to perform IP-based geolocation, the :class:`GeoIP2` object requires
|
2020-03-31 16:37:38 +08:00
|
|
|
the `geoip2 Python library`__ and the GeoIP ``Country`` and/or ``City``
|
|
|
|
`datasets in binary format`__ (the CSV files will not work!). Grab the
|
2015-07-30 05:21:03 +08:00
|
|
|
``GeoLite2-Country.mmdb.gz`` and ``GeoLite2-City.mmdb.gz`` files and unzip them
|
|
|
|
in a directory corresponding to the :setting:`GEOIP_PATH` setting.
|
|
|
|
|
|
|
|
Additionally, it is recommended to install the `libmaxminddb C library`__, so
|
|
|
|
that ``geoip2`` can leverage the C library's faster speed.
|
|
|
|
|
2016-04-28 22:09:57 +08:00
|
|
|
__ https://geoip2.readthedocs.io/
|
2018-04-18 06:19:29 +08:00
|
|
|
__ https://pypi.org/project/geoip2/
|
2021-09-21 13:04:33 +08:00
|
|
|
__ https://dev.maxmind.com/geoip/geolite2-free-geolocation-data
|
2021-04-27 19:09:00 +08:00
|
|
|
__ https://github.com/maxmind/libmaxminddb/
|
2015-07-30 05:21:03 +08:00
|
|
|
|
|
|
|
Example
|
|
|
|
=======
|
|
|
|
|
|
|
|
Here is an example of its usage::
|
|
|
|
|
2016-02-19 15:31:25 +08:00
|
|
|
>>> from django.contrib.gis.geoip2 import GeoIP2
|
|
|
|
>>> g = GeoIP2()
|
|
|
|
>>> g.country('google.com')
|
|
|
|
{'country_code': 'US', 'country_name': 'United States'}
|
|
|
|
>>> g.city('72.14.207.99')
|
|
|
|
{'city': 'Mountain View',
|
2017-10-25 16:30:42 +08:00
|
|
|
'continent_code': 'NA',
|
|
|
|
'continent_name': 'North America',
|
2016-02-19 15:31:25 +08:00
|
|
|
'country_code': 'US',
|
|
|
|
'country_name': 'United States',
|
|
|
|
'dma_code': 807,
|
2019-05-07 19:31:44 +08:00
|
|
|
'is_in_european_union': False,
|
2016-02-19 15:31:25 +08:00
|
|
|
'latitude': 37.419200897216797,
|
|
|
|
'longitude': -122.05740356445312,
|
|
|
|
'postal_code': '94043',
|
2017-05-23 09:07:14 +08:00
|
|
|
'region': 'CA',
|
|
|
|
'time_zone': 'America/Los_Angeles'}
|
2016-02-19 15:31:25 +08:00
|
|
|
>>> g.lat_lon('salon.com')
|
|
|
|
(39.0437, -77.4875)
|
|
|
|
>>> g.lon_lat('uh.edu')
|
|
|
|
(-95.4342, 29.834)
|
|
|
|
>>> g.geos('24.124.1.80').wkt
|
2016-04-17 02:05:47 +08:00
|
|
|
'POINT (-97 38)'
|
2015-07-30 05:21:03 +08:00
|
|
|
|
2017-08-23 18:11:49 +08:00
|
|
|
API Reference
|
2015-07-30 05:21:03 +08:00
|
|
|
=============
|
|
|
|
|
|
|
|
.. class:: GeoIP2(path=None, cache=0, country=None, city=None)
|
|
|
|
|
|
|
|
The ``GeoIP`` object does not require any parameters to use the default
|
|
|
|
settings. However, at the very least the :setting:`GEOIP_PATH` setting
|
|
|
|
should be set with the path of the location of your GeoIP datasets. The
|
|
|
|
following initialization keywords may be used to customize any of the
|
|
|
|
defaults.
|
|
|
|
|
|
|
|
=================== =======================================================
|
|
|
|
Keyword Arguments Description
|
|
|
|
=================== =======================================================
|
|
|
|
``path`` Base directory to where GeoIP data is located or the
|
|
|
|
full path to where the city or country data files
|
|
|
|
(``.mmdb``) are located. Assumes that both the city and
|
|
|
|
country datasets are located in this directory;
|
|
|
|
overrides the :setting:`GEOIP_PATH` setting.
|
|
|
|
|
|
|
|
``cache`` The cache settings when opening up the GeoIP datasets. May
|
|
|
|
be an integer in (0, 1, 2, 4, 8) corresponding to the
|
|
|
|
``MODE_AUTO``, ``MODE_MMAP_EXT``, ``MODE_MMAP``, and
|
|
|
|
``GEOIP_INDEX_CACHE`` ``MODE_MEMORY`` C API settings,
|
|
|
|
respectively. Defaults to 0 (``MODE_AUTO``).
|
|
|
|
|
|
|
|
``country`` The name of the GeoIP country data file. Defaults
|
|
|
|
to ``GeoLite2-Country.mmdb``. Setting this keyword
|
|
|
|
overrides the :setting:`GEOIP_COUNTRY` setting.
|
|
|
|
|
|
|
|
``city`` The name of the GeoIP city data file. Defaults to
|
|
|
|
``GeoLite2-City.mmdb``. Setting this keyword overrides
|
|
|
|
the :setting:`GEOIP_CITY` setting.
|
|
|
|
=================== =======================================================
|
|
|
|
|
2017-08-23 18:11:49 +08:00
|
|
|
Methods
|
|
|
|
=======
|
2015-07-30 05:21:03 +08:00
|
|
|
|
|
|
|
Instantiating
|
|
|
|
-------------
|
|
|
|
|
|
|
|
.. classmethod:: GeoIP2.open(path, cache)
|
|
|
|
|
|
|
|
This classmethod instantiates the GeoIP object from the given database path
|
|
|
|
and given cache setting.
|
|
|
|
|
|
|
|
Querying
|
|
|
|
--------
|
|
|
|
|
|
|
|
All the following querying routines may take either a string IP address
|
|
|
|
or a fully qualified domain name (FQDN). For example, both
|
|
|
|
``'205.186.163.125'`` and ``'djangoproject.com'`` would be valid query
|
|
|
|
parameters.
|
|
|
|
|
|
|
|
.. method:: GeoIP2.city(query)
|
|
|
|
|
|
|
|
Returns a dictionary of city information for the given query. Some
|
|
|
|
of the values in the dictionary may be undefined (``None``).
|
|
|
|
|
|
|
|
.. method:: GeoIP2.country(query)
|
|
|
|
|
|
|
|
Returns a dictionary with the country code and country for the given
|
|
|
|
query.
|
|
|
|
|
|
|
|
.. method:: GeoIP2.country_code(query)
|
|
|
|
|
|
|
|
Returns the country code corresponding to the query.
|
|
|
|
|
|
|
|
.. method:: GeoIP2.country_name(query)
|
|
|
|
|
|
|
|
Returns the country name corresponding to the query.
|
|
|
|
|
|
|
|
Coordinate Retrieval
|
|
|
|
--------------------
|
|
|
|
|
|
|
|
.. method:: GeoIP2.coords(query)
|
|
|
|
|
|
|
|
Returns a coordinate tuple of (longitude, latitude).
|
|
|
|
|
|
|
|
.. method:: GeoIP2.lon_lat(query)
|
|
|
|
|
|
|
|
Returns a coordinate tuple of (longitude, latitude).
|
|
|
|
|
|
|
|
.. method:: GeoIP2.lat_lon(query)
|
|
|
|
|
|
|
|
Returns a coordinate tuple of (latitude, longitude),
|
|
|
|
|
|
|
|
.. method:: GeoIP2.geos(query)
|
|
|
|
|
|
|
|
Returns a :class:`~django.contrib.gis.geos.Point` object corresponding to the
|
|
|
|
query.
|
|
|
|
|
2017-08-23 18:25:42 +08:00
|
|
|
Settings
|
|
|
|
========
|
|
|
|
|
|
|
|
.. setting:: GEOIP_PATH
|
|
|
|
|
|
|
|
``GEOIP_PATH``
|
|
|
|
--------------
|
|
|
|
|
2019-08-10 17:55:22 +08:00
|
|
|
A string or :class:`pathlib.Path` specifying the directory where the GeoIP data
|
|
|
|
files are located. This setting is *required* unless manually specified
|
2017-08-23 18:25:42 +08:00
|
|
|
with ``path`` keyword when initializing the :class:`GeoIP2` object.
|
|
|
|
|
|
|
|
.. setting:: GEOIP_COUNTRY
|
|
|
|
|
|
|
|
``GEOIP_COUNTRY``
|
|
|
|
-----------------
|
|
|
|
|
|
|
|
The basename to use for the GeoIP country data file. Defaults to
|
|
|
|
``'GeoLite2-Country.mmdb'``.
|
|
|
|
|
|
|
|
.. setting:: GEOIP_CITY
|
|
|
|
|
|
|
|
``GEOIP_CITY``
|
|
|
|
--------------
|
|
|
|
|
|
|
|
The basename to use for the GeoIP city data file. Defaults to
|
|
|
|
``'GeoLite2-City.mmdb'``.
|
|
|
|
|
2017-05-18 21:12:28 +08:00
|
|
|
Exceptions
|
|
|
|
==========
|
|
|
|
|
|
|
|
.. exception:: GeoIP2Exception
|
|
|
|
|
|
|
|
The exception raised when an error occurs in a call to the underlying
|
|
|
|
``geoip2`` library.
|
|
|
|
|
2015-07-30 05:21:03 +08:00
|
|
|
.. rubric:: Footnotes
|
|
|
|
.. [#] GeoIP(R) is a registered trademark of MaxMind, Inc.
|