
Security News
AGENTS.md Gains Traction as an Open Format for AI Coding Agents
AGENTS.md is a fast-growing open format giving AI coding agents a shared, predictable way to understand project setup, style, and workflows.
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 Django2.0
Updated for PostgreSQL
Add "iprir" to your INSTALLED_APPS setting like this::
INSTALLED_APPS = ( ... 'iprir', )
Include the iprir URLconf in your project urls.py like this::
url(r'^iprir/', include('iprir.urls')),
Run python manage.py migrate
to create the iprir models.
Run python manage.py loadregistry
to import data.
Any of the URL's
In models.py:
from iprir.models import TLD
class Country(models.Model): ... tld = models.ForeignKey(TLD, blank=True, null=True)
In helpers.py / views.py
from iprir.helpers import ip_info
ipremote = ip_info(request, request.META['REMOTE_ADDR'])
FAQs
Retrieve, store and query information about Regional Internet Registries
We found that django-iprir demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
AGENTS.md is a fast-growing open format giving AI coding agents a shared, predictable way to understand project setup, style, and workflows.
Security News
/Research
Malicious npm package impersonates Nodemailer and drains wallets by hijacking crypto transactions across multiple blockchains.
Security News
This episode explores the hard problem of reachability analysis, from static analysis limits to handling dynamic languages and massive dependency trees.