GUS (Główny Urząd Statystyczny) REGON Internet Database client which allows to get detailed information about company based on NIP, Regon or KRS number.
It requires an API key to the BIR1 service.
Note: Currently django-gusregon package is outdated and should be replaced by gusregon.
Quickstart
Install the package via pip:
pip install gusregon
Usage
Returns the business address
from gusregon import GUS
gus = GUS(api_key='my_api_key')
gus.get_address(nip='1112223344')
output
{
'name': 'REGON SYSTEMS SPÓŁKA AKCYJNA',
'street_address': 'ul. Tęczowa 14',
'postal_code': '35-322',
'city': 'Rzeszów'
}
Returns PKD codes
gus.get_pkd(nip='1112223344')
output
[
{
'code': '6201Z',
'name': 'DZIAŁALNOŚĆ ZWIĄZANA Z OPROGRAMOWANIEM',
'main': True
},
{
'code': '6312Z':
'name': 'DZIAŁALNOŚĆ PORTALI INTERNETOWYCH',
'main': False
},
...
]
Returns all data from BIR1 service
gus.search(nip='1112223344')
output
{
'adsiedzkraj_symbol': 'PL',
'datazawieszeniadzialalnosci': '',
'jednosteklokalnych': '0',
'rodzajrejestruewidencji_symbol': '138',
'adkorulica_nazwa': '',
...
'adkorpowiat_symbol': '63',
'datawpisudoregon': '2012-06-01',
'rodzajrejestruewidencji_nazwa': 'REJESTR PRZEDSIĘBIORCÓW',
'adsiedznumernieruchomosci': '14',
'adkorkodpocztowy': '35322',
'adsiedzkraj_nazwa': 'POLSKA',
'adsiedzulica_symbol': '10013',
'adsiedzkodpocztowy': '35322',
}
Sandbox mode for testing:
from gusregon import GUS
gus = GUS(sandbox=True)
gus.get_address(nip='1112223344')
Release files for gusregon 1.1.3
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| gusregon-1.1.3.tar.gz | 5.3 kB | Details |
Release files / gusregon-1.1.3.tar.gz
| Download URL | gusregon-1.1.3.tar.gz |
|---|---|
| Size | 5.3 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
b2dc9db5fffe8cf72e14b35d5bf65c8d456116e33fdb11577ccac76728661549
|
|
BLAKE2b-256 checksum How to use checksums |
6f71c68fc0e7034b1abc33814cc488fb9ddbd95a920ce322605814a08f737799
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |