Skip to main content

Retrieve, store and query information about Regional Internet Registries

Project description

iprir is a simple Django app to store and query information about Regional Internet Registries like Top Level Domains and IP adresses.

Useful if you’d like to know where your visitors come from.

Updated for Django1.10

Updated for PostgreSQL

Quick start

  1. Add “iprir” to your INSTALLED_APPS setting like this:

    INSTALLED_APPS = (
        ...
        'iprir',
    )
  2. Include the iprir URLconf in your project urls.py like this:

    url(r'^iprir/', include('iprir.urls')),
  3. Run python manage.py migrate to create the iprir models.

  4. Run python manage.py loadregistry to import data.

Usage

  1. Any of the URL’s

  2. In models.py:

    from iprir.models import TLD

    class Country(models.Model):

    … tld = models.ForeignKey(TLD, blank=True, null=True)

  3. In helpers.py / views.py

    from iprir.helpers import ip_info

    ipremote = ip_info(request, request.META[‘REMOTE_ADDR’])

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

django-iprir-1.0.5.tar.gz (24.8 kB view hashes)

Uploaded Source

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