Socket
Book a DemoInstallSign in
Socket

geoip2-tools

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

geoip2-tools

Automatic updates and administration of MaxMind GeoIP2 databases.

pipPyPI
Version
0.1.1
Maintainers
1

############ geoip2-tools ############

.. image:: https://img.shields.io/travis/Nekmo/geoip2-tools.svg?style=flat-square&maxAge=2592000 :target: https://travis-ci.org/Nekmo/geoip2-tools :alt: Latest Travis CI build status

.. image:: https://img.shields.io/pypi/v/geoip2-tools.svg?style=flat-square :target: https://pypi.org/project/geoip2-tools/ :alt: Latest PyPI version

.. image:: https://img.shields.io/pypi/pyversions/geoip2-tools.svg?style=flat-square :target: https://pypi.org/project/geoip2-tools/ :alt: Python versions

.. image:: https://img.shields.io/codeclimate/github/Nekmo/geoip2-tools.svg?style=flat-square :target: https://codeclimate.com/github/Nekmo/geoip2-tools :alt: Code Climate

.. image:: https://img.shields.io/codecov/c/github/Nekmo/geoip2-tools/master.svg?style=flat-square :target: https://codecov.io/github/Nekmo/geoip2-tools :alt: Test coverage

.. image:: https://img.shields.io/requires/github/Nekmo/geoip2-tools.svg?style=flat-square :target: https://requires.io/github/Nekmo/geoip2-tools/requirements/?branch=master :alt: Requirements Status

Automatic updates and administration of MaxMind GeoIP2 databases.

To install geoip2-tools, run this command in your terminal:

.. code-block:: console

$ pip install geoip2-tools

This is the preferred method to install geoip2-tools, as it will always install the most recent stable release.

Usage

To use this library you must first obtain a license from Maxmind. It is free for the geolite2 version of the database.

  • Sign up for a Maxmind Geolite2 account <https://www.maxmind.com/en/geolite2/signup>_
  • Log in to your Maxmind account <https://www.maxmind.com/en/account/login>_
  • In the menu on the left, navigate to Services > My License Key.
  • Click Generate new license key.
  • Save your license key in a secure site.

geoip2-tools downloads the latest version of the database and keeps it updated for you. By default every 7 days it is downloaded from the Maxmind servers.

.. code-block:: python

from geoip2_tools.manager import Geoip2DataBaseManager

geoip2_manager = Geoip2DataBaseManager('<license key>')

print(geoip2_manager['country'].reader.country('1.1.1.1').country.name)  # Australia

Geoip2-tools has aliases for the city, country, and asn Geolite2 databases. The country database is smaller than city. The city database also contains the countries:

.. code-block:: python

city = geoip2_manager['country'].reader.city('<ip address>')
print(city.city.name)
print(city.country.name)

To obtain the ASN you must use the asn database:

.. code-block:: python

asn = geoip2_manager['country'].reader.asn('<ip address>')
print(asn.autonomous_system_number)
print(asn.autonomous_system_organization)

Keywords

geoip2-tools

FAQs

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts