Skip to main content

The simplest possible way to get IP geolocation information.

Project description

The simplest possible way to get IP geolocation information in Python.

https://raw.githubusercontent.com/whois-api-llc/python-simple-geoip/master/images/geoip.png python-simple-geoip Release python-simple-geoip Build

Meta

Prerequisites

To use this library, you’ll need to create a free GeoIPify account: https://geoipify.whoisxmlapi.com/

If you haven’t done this yet, please do so now.

Installation

To install simple-geoip using pypi, simply run:

$ pip install simple-geoip

In the root of your project directory.

Usage

Once you have simple-geoip installed, you can use it to easily find the physical location of a given IP address.

This library gives you access to all sorts of geographical location data that you can use in your application in any number of ways.

from simple_geoip import GeoIP

geoip = GeoIP("your-api-key");

try:
    data = geoip.lookup("8.8.8.8")
except ConnectionError:
    # If you get here, it means you were unable to reach the geoipify
    # service, most likely because of a network error on your end.
except ServiceError:
    # If you get here, it means geoipify is having issues, so the request
    # couldn't be completed :(
except:
    # Something else happened (non-geoipify) related. Maybe you hit CTRL-C
    # while the program was running, the kernel is killing your process, or
    # something else all together.

print(data)

Here’s the sort of data you might get back when performing a geoip lookup request:

{
  "ip": "8.8.8.8",
  "location": {
    "country": "US",
    "region": "California",
    "city": "Mountain View",
    "lat": 37.40599,
    "lng": -122.078514,
    "postalCode": "94043",
    "timezone": "-08:00"
  }
}

By default, this library handles retrying failed HTTP requests for you. For instance: if the GeoIPify API service is currently down or having issues, your request will be retried up to three consecutive times before failing.

Changelog

All library changes in descending order.

Version 0.1.1

August 4, 2020

WhoisXML API Tech Support has fixed issues due to obsolete commands. It is now Python 3.8 compatible, and has been also tested with Python 3.6 and 2.7.

Version 0.1.0

Released April 26, 2018.

  • First release!

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

simple-geoip-0.1.1.tar.gz (5.2 kB view details)

Uploaded Source

Built Distribution

simple_geoip-0.1.1-py3-none-any.whl (5.6 kB view details)

Uploaded Python 3

File details

Details for the file simple-geoip-0.1.1.tar.gz.

File metadata

  • Download URL: simple-geoip-0.1.1.tar.gz
  • Upload date:
  • Size: 5.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.6.0 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.6.9

File hashes

Hashes for simple-geoip-0.1.1.tar.gz
Algorithm Hash digest
SHA256 f5d11ddacd1e4582d5762eebb43b05de9bc7ca4350f7070c84e0f3a4467a21a4
MD5 68a61e7beff24a9a6d078e53fc7173c6
BLAKE2b-256 e7edacce078f76344ea1d2e6649542e0b2c2d4bf79bbefb31413ac0bc007bb2f

See more details on using hashes here.

File details

Details for the file simple_geoip-0.1.1-py3-none-any.whl.

File metadata

  • Download URL: simple_geoip-0.1.1-py3-none-any.whl
  • Upload date:
  • Size: 5.6 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.6.0 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.6.9

File hashes

Hashes for simple_geoip-0.1.1-py3-none-any.whl
Algorithm Hash digest
SHA256 6a3b38f846f6c232b7cbfff7d45ff36eda025ebb26bb4e8ca1346511601f5cea
MD5 b4485abb5543b4d988c98cce7236bc8f
BLAKE2b-256 725cb347185728fe690afcac86a4f8d8969c83acf158ac2e260a33bf407f85f6

See more details on using hashes here.

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