Skip to content

yosida95/ip2country

Repository files navigation

ip2country

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.

About

Lookup country code (iso 3166) by IP address

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages