Skip to main content

Lookup country code (iso 3166) by IP address.

Project description

travis coveralls pypibadge

About

Lookup country code (iso 3166) by IP address.

Install

$ pip install ip2country

Or

$ python setup.py install

How to use

First: Implement IStore Interface

You must implement IStore interface in ip2country/interfaces.py.

There is a sample implementation in example/store. This implementation is stored all records on the system memory.

Second: Store the records

store = Store()
parser = Parser(store)
with open(RECORD_FILE) as fp:
    parser.do(fp)

See examples/lookup.py:load for more detail.

Third: Lookup the IPAddress

store = Store()
record = store.lookup(IP_ADDRESS)
if record is None:
    print('Record not found')
else:
    print('{0} is allocated to {1}'.format(IP_ADDRESS, record.cc))

See examples/lookup.py:main for more detail.

Run the tests

$ tox

License

ip2country is licensed under the MIT LICENSE. See ./LICENSE.rst.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

ip2country-0.1.1.tar.gz (4.1 kB view hashes)

Uploaded Source

Built Distributions

ip2country-0.1.1-py3-none-any.whl (7.0 kB view hashes)

Uploaded Python 3

ip2country-0.1.1-py2-none-any.whl (7.1 kB view hashes)

Uploaded Python 2

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page