![Maven Central Adds Sigstore Signature Validation](https://cdn.sanity.io/images/cgdhsj6q/production/7da3bc8a946cfb5df15d7fcf49767faedc72b483-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Maven Central Adds Sigstore Signature Validation
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.
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
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.
Security News
CISOs are racing to adopt AI for cybersecurity, but hurdles in budgets and governance may leave some falling behind in the fight against cyber threats.
Research
Security News
Socket researchers uncovered a backdoored typosquat of BoltDB in the Go ecosystem, exploiting Go Module Proxy caching to persist undetected for years.