Pure Python GeoIP API
Project description
This library is based on Maxmind’s GeoIP C API.
Tested with Python version 2.5, 2.6, 2.7, 3.2 and 3.3.
Installation
You can easily install pygeoip from PyPi.
pip install pygeoip
Supported Databases
* COUNTRY_EDITION * COUNTRY_EDITION_V6 * REGION_EDITION_REV0 * REGION_EDITION_REV1 * CITY_EDITION_REV0 * CITY_EDITION_REV1 * CITY_EDITION_REV1_V6 * ORG_EDITION * ISP_EDITION * ASNUM_EDITION * ASNUM_EDITION_V6
Issues and Contribution
Bug reports are done by creating an issue on Github. If you want to contribute you can always create a pull request for discussion and code submission.
Getting Started
Create your GeoIP instance with appropriate access flag. STANDARD reads data from disk when needed, MEMORY_CACHE loads database into memory on instantiation and MMAP_CACHE loads database into memory using mmap.
import pygeoip gi4 = pygeoip.GeoIP('/path/to/GeoIP.dat', pygeoip.MEMORY_CACHE) gi6 = pygeoip.GeoIP('/path/to/GeoIPv6.dat', pygeoip.MEMORY_CACHE)
Country Lookup
>>> gi4.country_code_by_name('google.com') 'US' >>> gi4.country_code_by_addr('64.233.161.99') 'US' >>> gi4.country_name_by_addr('64.233.161.99') 'United States' >>> gi6.country_code_by_name('google.com') 'IE' >>> gi6.country_code_by_addr('2001:7fd::1') 'EU' >>> gi6.country_name_by_addr('2001:7fd::1') 'Europe'
Region Lookup
>>> gi = pygeoip.GeoIP('/path/to/GeoIPRegion.dat') >>> gi.region_by_name('apple.com') {'region_code': 'CA', 'country_code': 'US'}
City Lookup
>>> gi = pygeoip.GeoIP('/path/to/GeoIPCity.dat') >>> gi.record_by_addr('64.233.161.99') { 'city': u'Mountain View', 'region_code': u'CA', 'area_code': 650, 'time_zone': 'America/Los_Angeles', 'dma_code': 807, 'metro_code': 'San Francisco, CA', 'country_code3': 'USA', 'latitude': 37.41919999999999, 'postal_code': u'94043', 'longitude': -122.0574, 'country_code': 'US', 'country_name': 'United States', 'continent': 'NA' } >>> gi.time_zone_by_addr('64.233.161.99') 'America/Los_Angeles'
Organization Lookup
>>> gi = pygeoip.GeoIP('/path/to/GeoIPOrg.dat') >>> gi.org_by_name('dell.com') 'Dell Computer Corporation'
ISP Lookup
>>> gi = pygeoip.GeoIP('/path/to/GeoIPISP.dat') >>> gi.org_by_name('cnn.com') 'Turner Broadcasting System'
ASN Lookup
>>> gi = pygeoip.GeoIP('/path/to/GeoIPASNum.dat') >>> gi.org_by_name('cnn.com') 'AS5662 Turner Broadcasting'
For more information, check out the full API documentation.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file pygeoip-0.3.0.tar.gz
.
File metadata
- Download URL: pygeoip-0.3.0.tar.gz
- Upload date:
- Size: 97.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
3abc07fe2fa1a6b025d7c75b681bf892dabf19c3f7f44fb896dc851f25d981e4
|
|
MD5 |
67eaa75053d06f46722eac23dc4e4bb5
|
|
BLAKE2b-256 |
742ebf61049b868198059fecb23b490d94c9addab66d818420dbff8c33210950
|
File details
Details for the file pygeoip-0.3.0-py2.py3-none-any.whl
.
File metadata
- Download URL: pygeoip-0.3.0-py2.py3-none-any.whl
- Upload date:
- Size: 20.4 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
70f220a9940bd4286fc5dfe13e1627544c73c312dbe8e1a123ff1df7976e6591
|
|
MD5 |
824fe70add0e5b1dbfefead445d184fa
|
|
BLAKE2b-256 |
da9b60a2ede14e11aadc7c5fdd466247dee79f36cf75f1caa855a4ab63519ee7
|