
Security News
Static vs. Runtime Reachability: Insights from Latio’s On the Record Podcast
The Latio podcast explores how static and runtime reachability help teams prioritize exploitable vulnerabilities and streamline AppSec workflows.
GUS (Główny Urząd Statystyczny) REGON <https://wyszukiwarkaregon.stat.gov.pl/appBIR/index.aspx>
_ Internet Database client which allows to get detailed information about company based on NIP, Regon or KRS number.
Install the package via pip
:
.. code-block:: bash
pip install django-gusregon
.. code-block:: python
from django import forms
from gusregon.gus import GUS
class MyForm(forms.Form):
nip = forms.CharField()
...
form = MyForm(data=request.POST or None)
if form.is_valid():
gus = GUS()
company_details = gus.search(form.cleaned_data.get('nip'))
API
.. code-block:: python
from gusregon.gus import GUS
gus = GUS()
gus.search(nip='..')
gus.search(krs='..')
gus.search(regon='..')
For more information, see GUS <https://github.com/bogdal/django-gusregon/blob/master/gusregon/gus.py>
_ api class.
FAQs
GUS REGON Internet Database Client
We found that django-gusregon 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
The Latio podcast explores how static and runtime reachability help teams prioritize exploitable vulnerabilities and streamline AppSec workflows.
Security News
The latest Opengrep releases add Apex scanning, precision rule tuning, and performance gains for open source static code analysis.
Security News
npm now supports Trusted Publishing with OIDC, enabling secure package publishing directly from CI/CD workflows without relying on long-lived tokens.