{ "info": { "author": "Gregory Oschwald", "author_email": "goschwald@maxmind.com", "bugtrack_url": null, "classifiers": [ "Development Status :: 5 - Production/Stable", "Environment :: Web Environment", "Intended Audience :: Developers", "Intended Audience :: System Administrators", "License :: OSI Approved :: Apache Software License", "Programming Language :: Python", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.3", "Programming Language :: Python :: 3.4", "Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.6", "Topic :: Internet", "Topic :: Internet :: Proxy Servers" ], "description": "=========================\nMaxMind GeoIP2 Python API\n=========================\n\nDescription\n-----------\n\nThis package provides an API for the GeoIP2 `web services\n`_ and `databases\n`_. The API also works with\nMaxMind's free `GeoLite2 databases\n`_.\n\nInstallation\n------------\n\nTo install the ``geoip2`` module, type:\n\n.. code-block:: bash\n\n $ pip install geoip2\n\nIf you are not able to use pip, you may also use easy_install from the\nsource directory:\n\n.. code-block:: bash\n\n $ easy_install .\n\nDatabase Reader Extension\n^^^^^^^^^^^^^^^^^^^^^^^^^\n\nIf you wish to use the C extension for the database reader, you must first\ninstall the `libmaxminddb C API `_.\nPlease `see the instructions distributed with it\n`_.\n\nIP Geolocation Usage\n--------------------\n\nIP geolocation is inherently imprecise. Locations are often near the center of\nthe population. Any location provided by a GeoIP2 database or web service\nshould not be used to identify a particular address or household.\n\nUsage\n-----\n\nTo use this API, you first create either a web service object with your\nMaxMind ``account_id`` and ``license_key`` or a database reader object with the\npath to your database file. After doing this, you may call the method\ncorresponding to request type (e.g., ``city`` or ``country``), passing it the\nIP address you want to look up.\n\nIf the request succeeds, the method call will return a model class for the\nend point you called. This model in turn contains multiple record classes,\neach of which represents part of the data returned by the web service.\n\nIf the request fails, the client class throws an exception.\n\nWeb Service Example\n-------------------\n\n.. code-block:: pycon\n\n >>> import geoip2.webservice\n >>>\n >>> # This creates a Client object that can be reused across requests.\n >>> # Replace \"42\" with your account ID and \"license_key\" with your license\n >>> # key.\n >>> client = geoip2.webservice.Client(42, 'license_key')\n >>>\n >>> # Replace \"insights\" with the method corresponding to the web service\n >>> # that you are using, e.g., \"country\", \"city\".\n >>> response = client.insights('128.101.101.101')\n >>>\n >>> response.country.iso_code\n 'US'\n >>> response.country.name\n 'United States'\n >>> response.country.names['zh-CN']\n u'\u7f8e\u56fd'\n >>>\n >>> response.subdivisions.most_specific.name\n 'Minnesota'\n >>> response.subdivisions.most_specific.iso_code\n 'MN'\n >>>\n >>> response.city.name\n 'Minneapolis'\n >>>\n >>> response.postal.code\n '55455'\n >>>\n >>> response.location.latitude\n 44.9733\n >>> response.location.longitude\n -93.2323\n\nWeb Service Client Exceptions\n-----------------------------\n\nFor details on the possible errors returned by the web service itself, see\nhttp://dev.maxmind.com/geoip/geoip2/web-services for the GeoIP2 Precision web\nservice docs.\n\nIf the web service returns an explicit error document, this is thrown as a\n``AddressNotFoundError``, ``AuthenticationError``, ``InvalidRequestError``, or\n``OutOfQueriesError`` as appropriate. These all subclass ``GeoIP2Error``.\n\nIf some other sort of error occurs, this is thrown as an ``HTTPError``. This\nis thrown when some sort of unanticipated error occurs, such as the web\nservice returning a 500 or an invalid error document. If the web service\nreturns any status code besides 200, 4xx, or 5xx, this also becomes an\n``HTTPError``.\n\nFinally, if the web service returns a 200 but the body is invalid, the client\nthrows a ``GeoIP2Error``.\n\nDatabase Example\n-------------------\n\nCity Database\n^^^^^^^^^^^^^\n\n.. code-block:: pycon\n\n >>> import geoip2.database\n >>>\n >>> # This creates a Reader object. You should use the same object\n >>> # across multiple requests as creation of it is expensive.\n >>> reader = geoip2.database.Reader('/path/to/GeoLite2-City.mmdb')\n >>>\n >>> # Replace \"city\" with the method corresponding to the database\n >>> # that you are using, e.g., \"country\".\n >>> response = reader.city('128.101.101.101')\n >>>\n >>> response.country.iso_code\n 'US'\n >>> response.country.name\n 'United States'\n >>> response.country.names['zh-CN']\n u'\u7f8e\u56fd'\n >>>\n >>> response.subdivisions.most_specific.name\n 'Minnesota'\n >>> response.subdivisions.most_specific.iso_code\n 'MN'\n >>>\n >>> response.city.name\n 'Minneapolis'\n >>>\n >>> response.postal.code\n '55455'\n >>>\n >>> response.location.latitude\n 44.9733\n >>> response.location.longitude\n -93.2323\n >>> reader.close()\n\nAnonymous IP Database\n^^^^^^^^^^^^^^^^^^^^^\n\n.. code-block:: pycon\n\n >>> import geoip2.database\n >>>\n >>> # This creates a Reader object. You should use the same object\n >>> # across multiple requests as creation of it is expensive.\n >>> reader = geoip2.database.Reader('/path/to/GeoIP2-Anonymous-IP.mmdb')\n >>>\n >>> response = reader.anonymous_ip('85.25.43.84')\n >>>\n >>> response.is_anonymous\n True\n >>> response.is_anonymous_vpn\n False\n >>> response.is_hosting_provider\n False\n >>> response.is_public_proxy\n False\n >>> response.is_tor_exit_node\n True\n >>> response.ip_address\n '128.101.101.101'\n >>> reader.close()\n\nASN Database\n^^^^^^^^^^^^\n\n.. code-block:: pycon\n\n >>> import geoip2.database\n >>>\n >>> # This creates a Reader object. You should use the same object\n >>> # across multiple requests as creation of it is expensive.\n >>> with geoip2.database.Reader('/path/to/GeoLite2-ASN.mmdb') as reader:\n >>> response = reader.asn('1.128.0.0')\n >>> response.autonomous_system_number\n 1221\n >>> response.autonomous_system_organization\n 'Telstra Pty Ltd'\n\nConnection-Type Database\n^^^^^^^^^^^^^^^^^^^^^^^^\n\n.. code-block:: pycon\n\n >>> import geoip2.database\n >>>\n >>> # This creates a Reader object. You should use the same object\n >>> # across multiple requests as creation of it is expensive.\n >>> reader = geoip2.database.Reader('/path/to/GeoIP2-Connection-Type.mmdb')\n >>>\n >>> response = reader.connection_type('128.101.101.101')\n >>>\n >>> response.connection_type\n 'Corporate'\n >>> response.ip_address\n '128.101.101.101'\n >>> reader.close()\n\n\nDomain Database\n^^^^^^^^^^^^^^^\n\n.. code-block:: pycon\n\n >>> import geoip2.database\n >>>\n >>> # This creates a Reader object. You should use the same object\n >>> # across multiple requests as creation of it is expensive.\n >>> reader = geoip2.database.Reader('/path/to/GeoIP2-Domain.mmdb')\n >>>\n >>> response = reader.domain('128.101.101.101')\n >>>\n >>> response.domain\n 'umn.edu'\n >>> response.ip_address\n '128.101.101.101'\n >>> reader.close()\n\nEnterprise Database\n^^^^^^^^^^^^^^^^^^^\n\n.. code-block:: pycon\n\n >>> import geoip2.database\n >>>\n >>> # This creates a Reader object. You should use the same object\n >>> # across multiple requests as creation of it is expensive.\n >>> with geoip2.database.Reader('/path/to/GeoIP2-Enterprise.mmdb') as reader:\n >>>\n >>> # Use the .enterprise method to do a lookup in the Enterprise database\n >>> response = reader.enterprise('128.101.101.101')\n >>>\n >>> response.country.confidence\n 99\n >>> response.country.iso_code\n 'US'\n >>> response.country.name\n 'United States'\n >>> response.country.names['zh-CN']\n u'\u7f8e\u56fd'\n >>>\n >>> response.subdivisions.most_specific.name\n 'Minnesota'\n >>> response.subdivisions.most_specific.iso_code\n 'MN'\n >>> response.subdivisions.most_specific.confidence\n 77\n >>>\n >>> response.city.name\n 'Minneapolis'\n >>> response.country.confidence\n 11\n >>>\n >>> response.postal.code\n '55455'\n >>>\n >>> response.location.accuracy_radius\n 50\n >>> response.location.latitude\n 44.9733\n >>> response.location.longitude\n -93.2323\n\nISP Database\n^^^^^^^^^^^^\n\n.. code-block:: pycon\n\n >>> import geoip2.database\n >>>\n >>> # This creates a Reader object. You should use the same object\n >>> # across multiple requests as creation of it is expensive.\n >>> reader = geoip2.database.Reader('/path/to/GeoIP2-ISP.mmdb')\n >>>\n >>> response = reader.isp('1.128.0.0')\n >>>\n >>> response.autonomous_system_number\n 1221\n >>> response.autonomous_system_organization\n 'Telstra Pty Ltd'\n >>> response.isp\n 'Telstra Internet'\n >>> response.organization\n 'Telstra Internet'\n >>> response.ip_address\n '128.101.101.101'\n >>> reader.close()\n\nDatabase Reader Exceptions\n--------------------------\n\nIf the database file does not exist or is not readable, the constructor will\nraise a ``FileNotFoundError`` on Python 3 or an ``IOError`` on Python 2.\nIf the IP address passed to a method is invalid, a ``ValueError`` will be\nraised. If the file is invalid or there is a bug in the reader, a\n``maxminddb.InvalidDatabaseError`` will be raised with a description of the\nproblem. If an IP address is not in the database, a ``AddressNotFoundError``\nwill be raised.\n\nValues to use for Database or Dictionary Keys\n---------------------------------------------\n\n**We strongly discourage you from using a value from any ``names`` property as\na key in a database or dictionaries.**\n\nThese names may change between releases. Instead we recommend using one of the\nfollowing:\n\n* ``geoip2.records.City`` - ``city.geoname_id``\n* ``geoip2.records.Continent`` - ``continent.code`` or ``continent.geoname_id``\n* ``geoip2.records.Country`` and ``geoip2.records.RepresentedCountry`` - ``country.iso_code`` or ``country.geoname_id``\n* ``geoip2.records.subdivision`` - ``subdivision.iso_code`` or ``subdivision.geoname_id``\n\nWhat data is returned?\n----------------------\n\nWhile many of the models contain the same basic records, the attributes which\ncan be populated vary between web service end points or databases. In\naddition, while a model may offer a particular piece of data, MaxMind does not\nalways have every piece of data for any given IP address.\n\nBecause of these factors, it is possible for any request to return a record\nwhere some or all of the attributes are unpopulated.\n\nThe only piece of data which is always returned is the ``ip_address``\nattribute in the ``geoip2.records.Traits`` record.\n\nIntegration with GeoNames\n-------------------------\n\n`GeoNames `_ offers web services and downloadable\ndatabases with data on geographical features around the world, including\npopulated places. They offer both free and paid premium data. Each feature is\nuniquely identified by a ``geoname_id``, which is an integer.\n\nMany of the records returned by the GeoIP web services and databases include a\n``geoname_id`` field. This is the ID of a geographical feature (city, region,\ncountry, etc.) in the GeoNames database.\n\nSome of the data that MaxMind provides is also sourced from GeoNames. We\nsource things like place names, ISO codes, and other similar data from the\nGeoNames premium data set.\n\nReporting Data Problems\n-----------------------\n\nIf the problem you find is that an IP address is incorrectly mapped, please\n`submit your correction to MaxMind `_.\n\nIf you find some other sort of mistake, like an incorrect spelling, please\ncheck the `GeoNames site `_ first. Once you've\nsearched for a place and found it on the GeoNames map view, there are a\nnumber of links you can use to correct data (\"move\", \"edit\", \"alternate\nnames\", etc.). Once the correction is part of the GeoNames data set, it\nwill be automatically incorporated into future MaxMind releases.\n\nIf you are a paying MaxMind customer and you're not sure where to submit a\ncorrection, please `contact MaxMind support\n`_ for help.\n\nRequirements\n------------\n\nThis code requires Python 2.7+ or 3.3+. Older versions are not supported.\nThis library has been tested with CPython and PyPy.\n\nThe Requests HTTP library is also required. See\n for details.\n\nVersioning\n----------\n\nThe GeoIP2 Python API uses `Semantic Versioning `_.\n\nSupport\n-------\n\nPlease report all issues with this code using the `GitHub issue tracker\n`_\n\nIf you are having an issue with a MaxMind service that is not specific to the\nclient API, please contact `MaxMind support\n`_ for assistance.\n", "description_content_type": "", "docs_url": "https://pythonhosted.org/geoip2/", "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "http://www.maxmind.com/", "keywords": "", "license": "Apache License, Version 2.0", "maintainer": "", "maintainer_email": "", "name": "geoip2", "package_url": "https://pypi.org/project/geoip2/", "platform": "", "project_url": "https://pypi.org/project/geoip2/", "project_urls": { "Homepage": "http://www.maxmind.com/" }, "release_url": "https://pypi.org/project/geoip2/2.9.0/", "requires_dist": null, "requires_python": "", "summary": "MaxMind GeoIP2 API", "version": "2.9.0" }, "last_serial": 3900001, "releases": { "0.1.0": [ { "comment_text": "", "digests": { "md5": "32618e06287309b8e8856632512c61ae", "sha256": "50e31ef56e628cca2cd4c9709109f5ebf0c62ccaab345b0a318716f7461ae9e3" }, "downloads": -1, "filename": "geoip2-0.1.0.tar.gz", "has_sig": false, "md5_digest": "32618e06287309b8e8856632512c61ae", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 632167, "upload_time": "2013-05-13T18:11:23", "url": "https://files.pythonhosted.org/packages/d4/34/a52b4ab435bf8fc00f6b2f898dd8b3a6b29e67fba051c433b2b3f0730172/geoip2-0.1.0.tar.gz" } ], "0.1.1": [ { "comment_text": "", "digests": { "md5": "fbc1e6ad87601c8c7f297409930a2241", "sha256": "f1defc1b273af24217f63d85c35996090595dca2c99cd077f76fb40888e0ba5e" }, "downloads": -1, "filename": "geoip2-0.1.1.tar.gz", "has_sig": false, "md5_digest": "fbc1e6ad87601c8c7f297409930a2241", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1214738, "upload_time": "2013-05-14T22:36:10", "url": "https://files.pythonhosted.org/packages/09/88/ed66d8f4e5bb1bffe57f0cafe8d4bafa448a62416e2c64353c9d2703f1b9/geoip2-0.1.1.tar.gz" } ], "0.2.0": [ { "comment_text": "", "digests": { "md5": "590299fa3b55bb5fb34d0f358ba66109", "sha256": "05afb5942887d28af1b4f143f56bc93500a115d2bf0b0241325c8a530f7054ba" }, "downloads": -1, "filename": "geoip2-0.2.0.tar.gz", "has_sig": false, "md5_digest": "590299fa3b55bb5fb34d0f358ba66109", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1215880, "upload_time": "2013-05-29T14:32:31", "url": "https://files.pythonhosted.org/packages/b4/4a/5a1679ab19badbb874fcf0a994b269085cc7f4df5c1d5b8f2fc6459c1ea3/geoip2-0.2.0.tar.gz" } ], "0.2.1": [ { "comment_text": "", "digests": { "md5": "e8ddeca7a6ac19e5a9a24656245a70e2", "sha256": "dcef32e13de9e1ac175339479ee0fb24403ba01de9afb0b26fddeb42086b0d32" }, "downloads": -1, "filename": "geoip2-0.2.1.tar.gz", "has_sig": false, "md5_digest": "e8ddeca7a6ac19e5a9a24656245a70e2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1218554, "upload_time": "2013-06-10T16:54:59", "url": "https://files.pythonhosted.org/packages/12/1d/639e7386404054427185fa0831c7fd82916036ecd158767c804847061a34/geoip2-0.2.1.tar.gz" } ], "0.2.2": [ { "comment_text": "", "digests": { "md5": "68a5f733105e3a0ead1d7eddc7bc8310", "sha256": "941b8a2a10f0041632a3d0472f5e7d0b4153d8f6d5ef3e96b7e5202339aa2dc4" }, "downloads": -1, "filename": "geoip2-0.2.2.tar.gz", "has_sig": false, "md5_digest": "68a5f733105e3a0ead1d7eddc7bc8310", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1218666, "upload_time": "2013-06-20T17:35:19", "url": "https://files.pythonhosted.org/packages/1f/19/e6671f98cad83ff95e255e827b5a609de5660afa99a1cdc9f171997dad8f/geoip2-0.2.2.tar.gz" } ], "0.3.0": [ { "comment_text": "", "digests": { "md5": "51f24f2254445148ed3959005df3691d", "sha256": "c04dc6f7e804f1fe576d6a5df06d565616c37501dd269c6d505a2a620b9c6d9d" }, "downloads": -1, "filename": "geoip2-0.3.0.tar.gz", "has_sig": false, "md5_digest": "51f24f2254445148ed3959005df3691d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1226216, "upload_time": "2013-10-15T17:52:14", "url": "https://files.pythonhosted.org/packages/a7/a2/53fdd67e664bb23b08f277591b50e3424ec0ecbdbe177ab2027c3eb8292f/geoip2-0.3.0.tar.gz" } ], "0.3.1": [ { "comment_text": "", "digests": { "md5": "2446df84d09feaaf0467d2ecbd34719a", "sha256": "27298c1fbbf8b116832aac33726a5c0819f46b00a432b21799009008f28cb5ed" }, "downloads": -1, "filename": "geoip2-0.3.1.tar.gz", "has_sig": false, "md5_digest": "2446df84d09feaaf0467d2ecbd34719a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1226335, "upload_time": "2013-10-15T18:22:49", "url": "https://files.pythonhosted.org/packages/da/8e/529f757da49e15c39771cf21a348b41f8e63f69a0cb3af7bda1c142c800e/geoip2-0.3.1.tar.gz" } ], "0.4.0": [ { "comment_text": "", "digests": { "md5": "e7de7742da494fb60ffce877448da72d", "sha256": "75bf80ffd614cd120553b5fcdf5f054f5bb818b0fec9a0a10c11f8b32542f400" }, "downloads": -1, "filename": "geoip2-0.4.0.tar.gz", "has_sig": false, "md5_digest": "e7de7742da494fb60ffce877448da72d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1226415, "upload_time": "2013-10-21T19:03:50", "url": "https://files.pythonhosted.org/packages/1a/b0/c4a39ae4f79cc156c7405d33311ac2f10f25bb91dc0d0651a83a5c36493a/geoip2-0.4.0.tar.gz" } ], "0.4.1": [ { "comment_text": "", "digests": { "md5": "1f11decde9d88916a0749369b7211ea1", "sha256": "ece6ad77ff89d5c104adb6922ae92a43837e9aee094bb7f78dab766e46687abc" }, "downloads": -1, "filename": "geoip2-0.4.1.tar.gz", "has_sig": false, "md5_digest": "1f11decde9d88916a0749369b7211ea1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1226365, "upload_time": "2013-10-25T21:22:24", "url": "https://files.pythonhosted.org/packages/f3/41/487262a2438f060ab1ef9bbbf13de8eb7fd98d186ee36748de08b64a4668/geoip2-0.4.1.tar.gz" } ], "0.4.2": [ { "comment_text": "", "digests": { "md5": "7f16ecb641c6b1e128f741fb6cfc237d", "sha256": "b3697f932eb26e530431f818ab0e93d7536d5efd8e98561418ba6cfcd6c0e750" }, "downloads": -1, "filename": "geoip2-0.4.2.tar.gz", "has_sig": false, "md5_digest": "7f16ecb641c6b1e128f741fb6cfc237d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1227367, "upload_time": "2013-12-20T15:12:02", "url": "https://files.pythonhosted.org/packages/e6/e7/4f2d8f62ee85a29c5be8acdfda8fee57236de6589ebc9b5bb7a8a90d9c81/geoip2-0.4.2.tar.gz" } ], "0.5.0": [ { "comment_text": "", "digests": { "md5": "e1d6e9c8e8b56bc5c9f893d5d7911e1f", "sha256": "29b134f65c20ade36b7981a8b4cdb90806b5bbdb4638d51bfa3b1974866ce9cb" }, "downloads": -1, "filename": "geoip2-0.5.0.tar.gz", "has_sig": false, "md5_digest": "e1d6e9c8e8b56bc5c9f893d5d7911e1f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 140235, "upload_time": "2014-02-11T23:51:42", "url": "https://files.pythonhosted.org/packages/ef/3e/43c8c097ee04a04f895fca8390c491db80738e03e1646dfa99f594dfa762/geoip2-0.5.0.tar.gz" } ], "0.5.1": [ { "comment_text": "", "digests": { "md5": "0b81910518fe908656a5287b4f0c001d", "sha256": "290fc1b5d987bc0cc6b9f5b5a7a549269f3703ebbff7559cd94557f1564bb155" }, "downloads": -1, "filename": "geoip2-0.5.1.tar.gz", "has_sig": false, "md5_digest": "0b81910518fe908656a5287b4f0c001d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 111649, "upload_time": "2014-03-28T21:35:00", "url": "https://files.pythonhosted.org/packages/31/f4/76b9e58ac3709a529f1a544517076178a3006452a17fa2f2ea2762843508/geoip2-0.5.1.tar.gz" } ], "0.6.0": [ { "comment_text": "", "digests": { "md5": "3ff8303c418a3533703f23a3f9dfe4ef", "sha256": "0b8753b08e35ce727c2f629625179cf0b44a6ec36bc2cc336150670e7b1fb077" }, "downloads": -1, "filename": "geoip2-0.6.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "3ff8303c418a3533703f23a3f9dfe4ef", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 21746, "upload_time": "2014-07-22T16:48:45", "url": "https://files.pythonhosted.org/packages/3a/5d/3da6096f5a61742a9ea30951ae5021d4467d5a4453fc8ff3c07dcb055a70/geoip2-0.6.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "2407039753eb5f32d53d27ac143993aa", "sha256": "c24488f9aef6e036421b05ed4d4841cd8212650b9483ed184b662c56bc968dea" }, "downloads": -1, "filename": "geoip2-0.6.0.tar.gz", "has_sig": false, "md5_digest": "2407039753eb5f32d53d27ac143993aa", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 113710, "upload_time": "2014-07-22T16:48:43", "url": "https://files.pythonhosted.org/packages/03/f8/0d5fabcd630ccbab13b14c31c64b0aab0db5428c7b67d8dba187ebec94e2/geoip2-0.6.0.tar.gz" } ], "0.7.0": [ { "comment_text": "", "digests": { "md5": "ea0137c2c1d63ce00e75e38adf9a79da", "sha256": "2bef9c65da158fe053682b7bc6b2f8e40065ed8d4a1e7063430de09da69708a2" }, "downloads": -1, "filename": "geoip2-0.7.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "ea0137c2c1d63ce00e75e38adf9a79da", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 21763, "upload_time": "2014-09-15T17:42:32", "url": "https://files.pythonhosted.org/packages/5b/fd/cdeb909578c220525d6e83d79cd5ca078234170e7a1c990b279f402c4df1/geoip2-0.7.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "1ce16780ac07b586e74d5175a4cb96bf", "sha256": "f0788898648320d0043c353821cfeea70cac6607b6c078b8f97f86a6a97ad62a" }, "downloads": -1, "filename": "geoip2-0.7.0.tar.gz", "has_sig": false, "md5_digest": "1ce16780ac07b586e74d5175a4cb96bf", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 113695, "upload_time": "2014-09-15T17:42:29", "url": "https://files.pythonhosted.org/packages/55/95/29cdc39c36b02de9a4d8961591923a14f0e7615aba0334f423e7bd1c7ed6/geoip2-0.7.0.tar.gz" } ], "2.0.0": [ { "comment_text": "", "digests": { "md5": "2a0fff55f61607199cc29f12757fad83", "sha256": "fa0b207082a70017a5a924f28230dc9d86ca3f7534089d0f3e24fff6a1d5d51d" }, "downloads": -1, "filename": "geoip2-2.0.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "2a0fff55f61607199cc29f12757fad83", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 21565, "upload_time": "2014-09-22T16:27:18", "url": "https://files.pythonhosted.org/packages/9c/4a/8309f37b4973954d98482568d53daeaf238feedde3d4f0d546778067a4d3/geoip2-2.0.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "499f7da6b7d0348193daae306d04174b", "sha256": "167b90c4c035ba0747edefcfb688bfd3a0fc54d316c6edfc725809307e8c4866" }, "downloads": -1, "filename": "geoip2-2.0.0.tar.gz", "has_sig": false, "md5_digest": "499f7da6b7d0348193daae306d04174b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 113410, "upload_time": "2014-09-22T16:27:15", "url": "https://files.pythonhosted.org/packages/8a/23/357cfb38b6d18f0c7e5ae73b74e343b3e60bde715cbff18962fe05387d50/geoip2-2.0.0.tar.gz" } ], "2.0.1": [ { "comment_text": "", "digests": { "md5": "6fc554f740d5a563933f92232c1cad55", "sha256": "bb2ee48487c85d2ec9bb1b37a43101823e75ebf2dc803139290d88ae5f050e92" }, "downloads": -1, "filename": "geoip2-2.0.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "6fc554f740d5a563933f92232c1cad55", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 21609, "upload_time": "2014-10-17T21:00:21", "url": "https://files.pythonhosted.org/packages/ba/35/ab3aabe783b888ba89734b20f14ff67c7d23c2c4bab8d3770fa6be999229/geoip2-2.0.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "fc9d7879edea9a74d9325187843471bf", "sha256": "f1e223d57c2000170a0d1654cdab5a6088291636366320babac172f7c06f3802" }, "downloads": -1, "filename": "geoip2-2.0.1.tar.gz", "has_sig": false, "md5_digest": "fc9d7879edea9a74d9325187843471bf", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 113533, "upload_time": "2014-10-17T21:00:19", "url": "https://files.pythonhosted.org/packages/c1/fc/c5c2d536e1956ab08012067efb0aa21a5c6793ffedd6ad27d8e252a65c1f/geoip2-2.0.1.tar.gz" } ], "2.0.2": [ { "comment_text": "", "digests": { "md5": "fbd70b3734ed41dd2de482d13a16b9e3", "sha256": "543d2ce120d21cfb261813729afee5fe5f4e518c114e848dfd59446ec1bc6133" }, "downloads": -1, "filename": "geoip2-2.0.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "fbd70b3734ed41dd2de482d13a16b9e3", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 22769, "upload_time": "2014-10-28T22:15:43", "url": "https://files.pythonhosted.org/packages/af/7d/60eb72fad5d31c8f1a69433386738a978c18353643e84d960f9d6794edbe/geoip2-2.0.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "1ec4e01d7843ac73c59e0a6d297f0a68", "sha256": "f062b1333faebdb1c66910ff15477aa3bf9f27a8b6fc03c3eae6218206e9096b" }, "downloads": -1, "filename": "geoip2-2.0.2.tar.gz", "has_sig": false, "md5_digest": "1ec4e01d7843ac73c59e0a6d297f0a68", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 115672, "upload_time": "2014-10-28T22:15:41", "url": "https://files.pythonhosted.org/packages/a8/cb/f30b2d43badc54b58ac4595a3a304da984f48fd3f3f77e3d6815602983c4/geoip2-2.0.2.tar.gz" } ], "2.1.0": [ { "comment_text": "", "digests": { "md5": "38e01c5b892095f0b22c8cd581baf83d", "sha256": "e44f617fa7ea626d94647992e6054e237a125c4f54d16b37aac64657cba06415" }, "downloads": -1, "filename": "geoip2-2.1.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "38e01c5b892095f0b22c8cd581baf83d", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 23428, "upload_time": "2014-12-09T18:57:00", "url": "https://files.pythonhosted.org/packages/3b/c4/1819c590702c57e6f15c9cecdb8268040ca3ccaf6285c68e7bdb547792a8/geoip2-2.1.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "4990601da04cb832b4b959b9f7fe248e", "sha256": "7146d3b7fb342d84b8efb9d3c9d10051cc6f5e69aa673e2ea7d50c85e7d458bf" }, "downloads": -1, "filename": "geoip2-2.1.0.tar.gz", "has_sig": false, "md5_digest": "4990601da04cb832b4b959b9f7fe248e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 115364, "upload_time": "2014-12-09T18:56:56", "url": "https://files.pythonhosted.org/packages/fb/a8/0a6e125691945d2516e6ef9a5ad0c958e1fb27bd6fc1ec70e847c80d088f/geoip2-2.1.0.tar.gz" } ], "2.2.0": [ { "comment_text": "", "digests": { "md5": "49ece2231108da1609c298f956b5a541", "sha256": "f362d7300f8a6b968722f5891141faacc009b9acd79fcb9812e43a2c881bff7e" }, "downloads": -1, "filename": "geoip2-2.2.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "49ece2231108da1609c298f956b5a541", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 19973, "upload_time": "2015-06-29T20:14:19", "url": "https://files.pythonhosted.org/packages/ad/42/5b0b7eab9c8d5060ad5abcbcfab36f155a77e9b7297d31ff1487ea404c9b/geoip2-2.2.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "26259d212447bc840400c25a48275fbc", "sha256": "105ca36e460be58931c162e63b866da10bb29afd22e21b0378bef16086ace853" }, "downloads": -1, "filename": "geoip2-2.2.0.tar.gz", "has_sig": false, "md5_digest": "26259d212447bc840400c25a48275fbc", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 207137, "upload_time": "2015-06-29T20:14:15", "url": "https://files.pythonhosted.org/packages/12/98/211c1434bb581ffab1db7f9dc719877d851924eb26e756c7da1aa5497334/geoip2-2.2.0.tar.gz" } ], "2.3.0": [ { "comment_text": "", "digests": { "md5": "46ff36d7879be8d41965c5eed8a09396", "sha256": "ae2d8d6f911312f11a84ffa66284f0f5af4faed9e94b49ac8b0eee4970405ad3" }, "downloads": -1, "filename": "geoip2-2.3.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "46ff36d7879be8d41965c5eed8a09396", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 21360, "upload_time": "2016-04-15T20:29:12", "url": "https://files.pythonhosted.org/packages/44/42/2a1c88720fc86b8f5f30c41a455a245423fff2fc28e603c221d43276ae7b/geoip2-2.3.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "07628210bd93576ece5118ffcfe4bb85", "sha256": "265bfca6d6dad1d593818d3d2934f8db702c5694b50b9bb6d5c139d1c02db04b" }, "downloads": -1, "filename": "geoip2-2.3.0.tar.gz", "has_sig": false, "md5_digest": "07628210bd93576ece5118ffcfe4bb85", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 213330, "upload_time": "2016-04-15T20:28:58", "url": "https://files.pythonhosted.org/packages/fb/85/6a6a5b913e7f6c7ee1ac7277c473a5f7d3545432256286c36def214275eb/geoip2-2.3.0.tar.gz" } ], "2.4.0": [ { "comment_text": "", "digests": { "md5": "48f517f1819cd7a098a9b48d6105f688", "sha256": "d7d81e2467e6cd4a465098ae2de5e1d882af5faaf4d8dc35d6abf8d45f3ed959" }, "downloads": -1, "filename": "geoip2-2.4.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "48f517f1819cd7a098a9b48d6105f688", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 21688, "upload_time": "2016-06-10T16:10:46", "url": "https://files.pythonhosted.org/packages/fb/8c/90133557f35ac10f38b8abdf2ea38eddcfb48e4a17cac2a26ee4735f595c/geoip2-2.4.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "1f6919f0808dac0b9d80a896327f4147", "sha256": "7d2550f57a2589180a42174fc90c03f28a7ab7f6bfbd2a6aeadf49ada07100cb" }, "downloads": -1, "filename": "geoip2-2.4.0.tar.gz", "has_sig": false, "md5_digest": "1f6919f0808dac0b9d80a896327f4147", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 345708, "upload_time": "2016-06-10T16:10:20", "url": "https://files.pythonhosted.org/packages/bd/c9/b0fae79b519d67d026b68da9773ce1da6fd1b2941cf43d5bdbcef792b84f/geoip2-2.4.0.tar.gz" } ], "2.4.1": [ { "comment_text": "", "digests": { "md5": "835711e26c196f767fe1795fee99d644", "sha256": "e75bf6c3bf4917f35b2f10acf301d0fe9a479263210169a342ef9fd109be1ce8" }, "downloads": -1, "filename": "geoip2-2.4.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "835711e26c196f767fe1795fee99d644", "packagetype": "bdist_wheel", "python_version": "3.5", "requires_python": null, "size": 21768, "upload_time": "2016-11-21T22:37:24", "url": "https://files.pythonhosted.org/packages/df/83/4e2b5b508894a756e4fcbbd6d0e686de62703701e9a59656da70c6e53270/geoip2-2.4.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "acb6dd99df942fd5ce343ebcd4d6c54a", "sha256": "abb0e4e2645c12e4059666482c0bbd5aab7084d86e8b5159060d88810884a2e7" }, "downloads": -1, "filename": "geoip2-2.4.1.tar.gz", "has_sig": false, "md5_digest": "acb6dd99df942fd5ce343ebcd4d6c54a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 346477, "upload_time": "2016-11-21T22:37:21", "url": "https://files.pythonhosted.org/packages/d4/f6/795499b240606525f0a15c114549162c28d3de1d8d6f7a5e487628edaa2b/geoip2-2.4.1.tar.gz" } ], "2.4.2": [ { "comment_text": "", "digests": { "md5": "1644d26fef0d2f2c05b87f1f62996093", "sha256": "535693870a1558af3bd7cd1024dbf6e6e15cb368c4106f570e17fd74bfc72781" }, "downloads": -1, "filename": "geoip2-2.4.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "1644d26fef0d2f2c05b87f1f62996093", "packagetype": "bdist_wheel", "python_version": "3.5", "requires_python": null, "size": 21833, "upload_time": "2016-12-08T20:18:24", "url": "https://files.pythonhosted.org/packages/4b/b8/1729ff74d2051e60ee96d399418adfed15b27e311a2c7c10df6e95558fce/geoip2-2.4.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "14b97f86b3a2edbd82a6cc03bd6311c4", "sha256": "624345976776fe09489c9d7311d5857e43671229ed61a971b8b1fc57d16dc26a" }, "downloads": -1, "filename": "geoip2-2.4.2.tar.gz", "has_sig": false, "md5_digest": "14b97f86b3a2edbd82a6cc03bd6311c4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 346711, "upload_time": "2016-12-08T20:18:21", "url": "https://files.pythonhosted.org/packages/3e/46/aab8426975a46a76d240d10bf11ad06507fb5ef9dc766b5667fedfd74d02/geoip2-2.4.2.tar.gz" } ], "2.5.0": [ { "comment_text": "", "digests": { "md5": "f4d800c6a78d645be795c2b9bce2241c", "sha256": "198fc36b51dd757df02173862a7ba48c2f61ee416c26e782cd8a887fd9aedb41" }, "downloads": -1, "filename": "geoip2-2.5.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "f4d800c6a78d645be795c2b9bce2241c", "packagetype": "bdist_wheel", "python_version": "3.6", "requires_python": null, "size": 22115, "upload_time": "2017-05-08T19:13:08", "url": "https://files.pythonhosted.org/packages/eb/34/1fd975cc0455a5e74679c34354c6d53bd9bab961afa9952b4b2f1ddc5cca/geoip2-2.5.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "61f02953fb255ff5b8944f72f9e6cd6f", "sha256": "73cac570c028cf685dbd8a8c10c1aa0a8b2924ca37b5c039bc010330c94cc580" }, "downloads": -1, "filename": "geoip2-2.5.0.tar.gz", "has_sig": false, "md5_digest": "61f02953fb255ff5b8944f72f9e6cd6f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 371328, "upload_time": "2017-05-08T19:13:05", "url": "https://files.pythonhosted.org/packages/4a/de/0502344a1ddcda501c1498607e0f5eb036ee1159419d9e08d269b0f23ada/geoip2-2.5.0.tar.gz" } ], "2.6.0": [ { "comment_text": "", "digests": { "md5": "2ecc18911a81498a8755e331b8adef5d", "sha256": "6c43423f092681b5a066926bbf561fd5d807593fb25751c08169e42f3003a543" }, "downloads": -1, "filename": "geoip2-2.6.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "2ecc18911a81498a8755e331b8adef5d", "packagetype": "bdist_wheel", "python_version": "3.6", "requires_python": null, "size": 22271, "upload_time": "2017-10-27T20:02:28", "url": "https://files.pythonhosted.org/packages/51/34/97878a8c10e6063874c3b31ad658fcca65422941ae3618716e77888ce8e7/geoip2-2.6.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "d1daeafbf8627470be2c2d751b24d79c", "sha256": "f441671eb8faa0eaaac16903760fce71130865f14370d56d49512b11029f3ead" }, "downloads": -1, "filename": "geoip2-2.6.0.tar.gz", "has_sig": false, "md5_digest": "d1daeafbf8627470be2c2d751b24d79c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 364901, "upload_time": "2017-10-27T20:02:25", "url": "https://files.pythonhosted.org/packages/83/78/60a16a81a6fa8f2898936fbf888c9d6d98a4f6de566f6ab071fe332790af/geoip2-2.6.0.tar.gz" } ], "2.7.0": [ { "comment_text": "", "digests": { "md5": "5d768fa9af2efc4385db755e3c45bb0a", "sha256": "23f0fe29aaf48a5175a717895b32ecda882c1e6b3896b5511ba6507252c50b51" }, "downloads": -1, "filename": "geoip2-2.7.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "5d768fa9af2efc4385db755e3c45bb0a", "packagetype": "bdist_wheel", "python_version": "3.6", "requires_python": null, "size": 22407, "upload_time": "2018-01-18T16:00:14", "url": "https://files.pythonhosted.org/packages/2d/35/0206724f973b6802c2b51f78d1bc8a9234f91d5d6e549117395199c27c60/geoip2-2.7.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "bee0f7c02ebac0ab11563c4c355b400d", "sha256": "2e948287bd627b11b6f5129226509cb37843b5b7ea791a865177ccd6252c4945" }, "downloads": -1, "filename": "geoip2-2.7.0.tar.gz", "has_sig": false, "md5_digest": "bee0f7c02ebac0ab11563c4c355b400d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 380624, "upload_time": "2018-01-18T16:00:13", "url": "https://files.pythonhosted.org/packages/5b/fb/a1645d1a6ddd2181bbfbef1b0ab115d9be3d165ba734b687b95616ec51ac/geoip2-2.7.0.tar.gz" } ], "2.8.0": [ { "comment_text": "", "digests": { "md5": "a5db1b259728381400579b3d4313faec", "sha256": "7e119472ca841fb39293272403476c7012fa7127541b2780a9e432a5ebbb4a89" }, "downloads": -1, "filename": "geoip2-2.8.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "a5db1b259728381400579b3d4313faec", "packagetype": "bdist_wheel", "python_version": "3.6", "requires_python": null, "size": 17931, "upload_time": "2018-04-10T15:17:59", "url": "https://files.pythonhosted.org/packages/2c/ba/52b5d7a638220182f948d7314f3b339ff24d69eb2021f577a9c80e8b586b/geoip2-2.8.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "24cdc0090abaf7c2c8dc4c6044bb8b14", "sha256": "762e5ea1400d40772249c0778328b6fc82b82503092ceb48c00a7500d7ce4a64" }, "downloads": -1, "filename": "geoip2-2.8.0.tar.gz", "has_sig": false, "md5_digest": "24cdc0090abaf7c2c8dc4c6044bb8b14", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 460415, "upload_time": "2018-04-10T15:17:58", "url": "https://files.pythonhosted.org/packages/ff/2b/c993809c9ae2eb71d424024a978c34c79ef0226c7b36b4c628c087c453b9/geoip2-2.8.0.tar.gz" } ], "2.9.0": [ { "comment_text": "", "digests": { "md5": "c701c5f900ee7a4716acc7f4732dd41e", "sha256": "a37ddac2d200ffb97c736da8b8ba9d5d8dc47da6ec0f162a461b681ecac53a14" }, "downloads": -1, "filename": "geoip2-2.9.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "c701c5f900ee7a4716acc7f4732dd41e", "packagetype": "bdist_wheel", "python_version": "3.6", "requires_python": null, "size": 18038, "upload_time": "2018-05-25T20:10:05", "url": "https://files.pythonhosted.org/packages/ed/17/bcbb7c0849492e218767e658c66fbf9e3420b6301072371547c4f7192d48/geoip2-2.9.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "42a806b0e7933f984d3a00f74cd59732", "sha256": "f7ffe9d258e71a42cf622ce6350d976de1d0312b9f2fbce3975c7d838b57ecf0" }, "downloads": -1, "filename": "geoip2-2.9.0.tar.gz", "has_sig": false, "md5_digest": "42a806b0e7933f984d3a00f74cd59732", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 459342, "upload_time": "2018-05-25T20:10:03", "url": "https://files.pythonhosted.org/packages/2e/68/44a14494b019a0b05a581608ae1962363a757722d4db6b8c1e2445817e19/geoip2-2.9.0.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "c701c5f900ee7a4716acc7f4732dd41e", "sha256": "a37ddac2d200ffb97c736da8b8ba9d5d8dc47da6ec0f162a461b681ecac53a14" }, "downloads": -1, "filename": "geoip2-2.9.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "c701c5f900ee7a4716acc7f4732dd41e", "packagetype": "bdist_wheel", "python_version": "3.6", "requires_python": null, "size": 18038, "upload_time": "2018-05-25T20:10:05", "url": "https://files.pythonhosted.org/packages/ed/17/bcbb7c0849492e218767e658c66fbf9e3420b6301072371547c4f7192d48/geoip2-2.9.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "42a806b0e7933f984d3a00f74cd59732", "sha256": "f7ffe9d258e71a42cf622ce6350d976de1d0312b9f2fbce3975c7d838b57ecf0" }, "downloads": -1, "filename": "geoip2-2.9.0.tar.gz", "has_sig": false, "md5_digest": "42a806b0e7933f984d3a00f74cd59732", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 459342, "upload_time": "2018-05-25T20:10:03", "url": "https://files.pythonhosted.org/packages/2e/68/44a14494b019a0b05a581608ae1962363a757722d4db6b8c1e2445817e19/geoip2-2.9.0.tar.gz" } ] }