All Projects → ipinfo → django

ipinfo / django

Licence: Apache-2.0 License
Official Django Library for IPinfo API (IP geolocation and other types of IP data)

Programming Languages

python
139335 projects - #7 most used programming language
shell
77523 projects

Projects that are alternatives of or similar to django

ruby
Official Ruby client library for IPinfo API (IP geolocation and other types of IP data)
Stars: ✭ 42 (+16.67%)
Mutual labels:  ipinfo, ip-address, ip-geolocation, ip-database
laravel
Official Laravel client library for IPinfo API (IP geolocation and other types of IP data)
Stars: ✭ 80 (+122.22%)
Mutual labels:  ipinfo, ip-address, ip-geolocation
rails
Official Rails Library for IPinfo API (IP geolocation and other types of IP data)
Stars: ✭ 16 (-55.56%)
Mutual labels:  ipinfo, ip-address, ip-geolocation
go
Go library for IPinfo API (IP geolocation and other types of IP data)
Stars: ✭ 76 (+111.11%)
Mutual labels:  ipinfo, ip-address, ip-geolocation
cli
Official Command Line Interface for the IPinfo API (IP geolocation and other types of IP data)
Stars: ✭ 1,279 (+3452.78%)
Mutual labels:  ipinfo, ip-address, ip-geolocation
ip2location-piwik
Use IP2Location geolocation database to lookup for accurate visitor location in Matomo (Piwik) 3.x. It enables the user to find the country, region, city, coordinates, zip code, time zone, ISP, domain name, connection type, area code, weather, MCC, MNC, mobile brand name, elevation, usage type, address type and IAB category that any IP address o…
Stars: ✭ 26 (-27.78%)
Mutual labels:  ip-geolocation, ip-database
Geolocate-IP-Browser-Extension
A browser extension, which shows you the origin of your IP address.
Stars: ✭ 21 (-41.67%)
Mutual labels:  ip-address, ip-geolocation
cs-wordpress-bouncer
CrowdSec is an open-source cyber security tool. This plugin blocks detected attackers or display them a captcha to check they are not bots.
Stars: ✭ 25 (-30.56%)
Mutual labels:  ip-address, ip-database
ip2location-cakephp
IP2Location CakePHP plugin enables the user to find the country, region, city, coordinates, zip code, time zone, ISP, domain name, connection type, area code, weather, MCC, MNC, mobile brand name, elevation, usage type, IP address type and IAB advertising category from IP address using IP2Location database.
Stars: ✭ 17 (-52.78%)
Mutual labels:  ip-geolocation, ip-database
ipapi-python
Python bindings for https://ipapi.co (IP Address Location) - Use with python / django / flask for IP address location lookup
Stars: ✭ 42 (+16.67%)
Mutual labels:  ip-address, ip-geolocation
ip2location-nginx
This is IP2Location Nginx module that enables the user to find the country, region (state), city, latitude, longitude, zip code, time zone, ISP, domain name, connection type, area code, weather, mobile network, elevation, usage type, address type and IAB category by IP address or hostname originates from.
Stars: ✭ 38 (+5.56%)
Mutual labels:  ip-geolocation, ip-database
IP2Country
Ip to country mapping
Stars: ✭ 39 (+8.33%)
Mutual labels:  ip-geolocation
ip2location-iata-icao
This list contains the airport codes of IATA airport code and ICAO airport code together with country code and region name supported in IP2Location geolocation database.
Stars: ✭ 39 (+8.33%)
Mutual labels:  ip-geolocation
server-ip-addresses
Daily updated list of IP addresses / CIDR blocks used by data centers, cloud service providers, servers, etc.
Stars: ✭ 74 (+105.56%)
Mutual labels:  ip-address
Hostess.swift
A Swift implementation of NSHost that works on iOS, OS X and tvOS. Hostess.swift is safe to use in a framework because it does not require a bridging header. Hostess is Swift 4.0 (or newer) only and replaces the Swift 2.x only Host.swift.
Stars: ✭ 27 (-25%)
Mutual labels:  ip-address
IP2Location-C-Library
IP2Location C library enables the user to find the country, region, city, coordinates, zip code, time zone, ISP, domain name, connection type, area code, weather station code, weather station name, mobile, usage types, etc that any IP address or hostname originates from.
Stars: ✭ 37 (+2.78%)
Mutual labels:  ip-address
load-ip-set
download and parse ip-set (blocklist) files
Stars: ✭ 19 (-47.22%)
Mutual labels:  ip-address
ip2location-nginx
Nginx module that allows user to lookup for geolocation information using IP2Location database.
Stars: ✭ 33 (-8.33%)
Mutual labels:  ip-address
ip-location-db
ip to location database by ASN, GeoFeed, Whois, iptoasn.com, db-ip lite, GeoLite2
Stars: ✭ 160 (+344.44%)
Mutual labels:  ip-geolocation
IP2Location-PHP-Module
This module is a PHP module that enables the user to find the country, region, city, coordinates, zip code, ISP, domain name, timezone, connection speed, IDD code, area code, weather station code, weather station name, mobile, usage types, address type, IAB category, etc that any IP address or host name originates from.
Stars: ✭ 154 (+327.78%)
Mutual labels:  ip-address

IPinfo IPinfo Django Client Library

This is the official Django client library for the IPinfo.io IP address API, allowing you to lookup your own IP address, or get any of the following details for an IP:

  • IP to geolocation (city, region, country, postal code, latitude and longitude)
  • IP to ASN (ISP or network operator, associated domain name, and type, such as business, hosting or company)
  • IP to Company (the name and domain of the business that uses the IP address)
  • IP to Carrier (the name of the mobile carrier and MNC and MCC for that carrier if the IP is used exclusively for mobile traffic)

Check all the data we have for your IP address here.

Getting Started

You'll need an IPinfo API access token, which you can get by signing up for a free account at https://ipinfo.io/signup.

The free plan is limited to 50,000 requests per month, and doesn't include some of the data fields such as IP type and company data. To enable all the data fields and additional request volumes see https://ipinfo.io/pricing

Installation

pip install ipinfo_django

Quickstart

Once configured, ipinfo_django will make IP address data accessible within Django's HttpRequest object. The following view from the view.py file:

from django.http import HttpResponse

def location(request):
    response_string = 'The IP address {} is located at the coordinates {}, which is in the city {}.'.format(
        request.ipinfo.ip,
        request.ipinfo.loc,
        request.ipinfo.city
    )

    return HttpResponse(response_string)

will return the following as an HttpResponse object:

'The IP address 216.239.36.21 is located at the coordinates 37.8342,-122.2900, which is in the city Emeryville.'

To get the details of user defined IP, we will import ipinfo package directly to the view.py file:

from django.shortcuts import render
from django.http import HttpResponse 
from django.conf import settings
import ipinfo



def get_ip_details(ip_address=None):
	ipinfo_token = getattr(settings, "IPINFO_TOKEN", None)
	ipinfo_settings = getattr(settings, "IPINFO_SETTINGS", {})
	ip_data = ipinfo.getHandler(ipinfo_token, **ipinfo_settings)
	ip_data = ip_data.getDetails(ip_address)
	return ip_data

def location(request): 

	ip_data = get_ip_details('168.156.54.5')

	response_string = 'The IP address {} is located at the coordinates {}, which is in the city {}.'.format(ip_data.ip,ip_data.loc,ip_data.city)

	return HttpResponse(response_string)

The above code will print the IP details provide. We can use GET and POST methods to get the details of user defined IP

'The IP address 168.156.54.5 is located at the coordinates 47.6104,-122.2007, which is in the city Bellevue.'

Setup

Setup can be accomplished in three steps:

  1. Install with pip
pip install ipinfo_django
  1. Add 'ipinfo_django.middleware.ipinfo' to settings.MIDDLEWARE in settings.py:
MIDDLEWARE = [
  'django.middleware.security.SecurityMiddleware',
  'django.contrib.sessions.middleware.SessionMiddleware',
  ...
  'ipinfo_django.middleware.IPinfo',
]
  1. Optionally, configure with custom settings in settings.py:
IPINFO_TOKEN = '123456789abc'
IPINFO_SETTINGS = {
  'cache_options': {
      'ttl':30,
      'maxsize': 128
  },
  'countries_file': 'custom_countries.json'
}
IPINFO_FILTER = lambda request: request.scheme == 'http'

Async support

'ipinfo_django.middleware.IPinfoAsyncMiddleware' can be used under ASGI. This is an async-only middleware which works only when placed in an async middleware chain, that is, a chain of Django middleware which are both async and async capable. For example:

MIDDLEWARE = [
  'package_b.middleware.ExampleSyncAndAsyncMiddleware',
  'ipinfo_django.middleware.IPinfoAsyncMiddleware',
  'package_a.middleware.ExampleAsyncMiddleware',
]

See asynchronous-support for more.

Details Data

HttpRequest.ipinfo is a Details object that contains all fields listed IPinfo developer docs with a few minor additions. Properties can be accessed directly.

>>> request.ipinfo.hostname
cpe-104-175-221-247.socal.res.rr.com

Country Name

HttpRequest.ipinfo.country_name will return the country name, as supplied by the countries.json file. See below for instructions on changing that file for use with non-English languages. HttpRequest.ipinfo.country will still return country code.

>>> request.ipinfo.country
US
>>> request.ipinfo.country_name
United States

IP Address

HttpRequest.ipinfo.ip will return an IP string.

>>> request.ipinfo.ip
104.175.221.247
>>> type(request.ipinfo.ip)
<class 'str'>

Longitude and Latitude

HttpRequest.ipinfo.latitude and HttpRequest.ipinfo.longitude will return latitude and longitude, respectively, as strings. HttpRequest.ipinfo.loc will still return a composite string of both values.

>>> request.ipinfo.loc
34.0293,-118.3570
>>> request.ipinfo.latitude
34.0293
>>> request.ipinfo.longitude
-118.3570

Accessing all properties

HttpRequest.ipinfo.all will return all details data as a dictionary.

>>> request.ipinfo.all
{
'asn': {  'asn': 'AS20001',
           'domain': 'twcable.com',
           'name': 'Time Warner Cable Internet LLC',
           'route': '104.172.0.0/14',
           'type': 'isp'},
'city': 'Los Angeles',
'company': {   'domain': 'twcable.com',
               'name': 'Time Warner Cable Internet LLC',
               'type': 'isp'},
'country': 'US',
'country_name': 'United States',
'hostname': 'cpe-104-175-221-247.socal.res.rr.com',
'ip': '104.175.221.247',
'loc': '34.0293,-118.3570',
'latitude': '34.0293',
'longitude': '-118.3570',
'phone': '323',
'postal': '90016',
'region': 'California'
}

Authentication

The IPinfo library can be authenticated with your IPinfo API token, which is set in the settings.py file. It also works without an authentication token, but in a more limited capacity. From settings.py:

IPINFO_TOKEN = '123456789abc'

Caching

In-memory caching of details data is provided by default via the cachetools <https://cachetools.readthedocs.io/en/latest/>_ library. This uses an LRU (least recently used) cache with a TTL (time to live) by default. This means that values will be cached for the specified duration; if the cache's max size is reached, cache values will be invalidated as necessary, starting with the oldest cached value.

Modifying cache options

Cache behavior can be modified by setting the cache_options key in settings.IPINFO_SETTINGS. cache_options is a dictionary in which the keys are keyword arguments specified in the cachetools library. The nesting of keyword arguments is to prevent name collisions between this library and its dependencies.

  • Default maximum cache size: 4096 (multiples of 2 are recommended to increase efficiency)
  • Default TTL: 24 hours (in seconds)

From settings.py:

IPINFO_SETTINGS = {
    'cache_options': {
        'ttl': 30,
        'maxsize': 128
    }
}

Using a different cache

It's possible to use a custom cache by creating a child class of the CacheInterface class and setting the cache value in settings.IPINFO_SETTINGS. FYI this is known as the Strategy Pattern.

From settings.py:

IPINFO_SETTINGS = {'cache': my_fancy_custom_cache_object}

Internationalization

When looking up an IP address, the response object includes a details.country_name attribute which includes the country name based on American English. It is possible to return the country name in other languages by setting the countries_file keyword argument in settings.py.

The file must be a .json file with the following structure:

{
    "BD": "Bangladesh",
    "BE": "Belgium",
    "BF": "Burkina Faso",
    "BG": "Bulgaria"
    // …
}

From settings.py:

IPINFO_SETTINGS = {'countries_file': 'custom_countries.json'}

Filtering

By default, ipinfo_django filters out requests that have bot or spider in the user-agent. Instead of looking up IP address data for these requests, the HttpRequest.ipinfo attribute is set to None. This is to prevent you from unnecessarily using up requests on non-user traffic. This behavior can be switched off by modifying the settings.IPINFO_FILTER object in settings.py.

To turn off filtering:

IPINFO_FILTER = None

To set your own filtering rules, thereby replacing the default filter, you can set settings.IPINFO_FILTER to your own, custom callable function which satisfies the following rules:

  • Accepts one request.
  • Returns True to filter out, False to allow lookup

To use your own filter rules:

IPINFO_FILTER = lambda request: request.scheme == 'http'

Errors

If there's an error while making a request to IPinfo (e.g. your token was rate limited, there was a network issue, etc.), then the traceback will be logged using the built-in Python logger, and HttpRequest.ipinfo will be None.

Local development and testing

To test the project locally, install Tox in your Python virtual environment:

pip install tox

Then, run Tox:

PYTHONPATH=. tox

Other Libraries

There are official IPinfo client libraries available for many languages including PHP, Go, Java, Ruby, and many popular frameworks such as Django, Rails and Laravel. There are also many third party libraries and integrations available for our API.

About IPinfo

Founded in 2013, IPinfo prides itself on being the most reliable, accurate, and in-depth source of IP address data available anywhere. We process terabytes of data to produce our custom IP geolocation, company, carrier, VPN detection, hosted domains, and IP type data sets. Our API handles over 40 billion requests a month for 100,000 businesses and developers.

image

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].