Download & analyze business registry data
Project description
Business Registry Download
This is a tool to download business registry data from Estonian, Finnish, Latvian, Lithuanian and Czech business registers. These files are usually updated daily by the registers and contain information about companies, their officers, and other relevant information.
Happy to take PRs for other countries!
It's easy to load these files with dlt, duckdb or transform them with dbt and integrate this into your data pipelines.
The downloads are all done in parrallel and async so it's pretty fast.
To use from command line
Make sure you have uv installed
curl -LsSf https://astral.sh/uv/install.sh | sh
Run with default settings:
uvx registry_downloader
Or override options for download directory, countries, and override URL:
uvx registry_downloader --download-dir "./downloads" --countries ee --override-url ee=https://avaandmed.ariregister.rik.ee/et/avaandmete-allalaadimine
To use as a library
You can install the registry_downloader
package using either pip
or uv
. Here are examples for both:
Using pip:
pip install registry_downloader
Using uv:
uv add registry_downloader
Run with default settings:
import asyncio
from registry_downloader import run_downloader
async def main() -> None:
await run_downloader()
if __name__ == "__main__":
asyncio.run(main())
Or override options for download directory, countries, and override URL:
import asyncio
from registry_downloader import run_downloader
async def main() -> None:
await run_downloader(
download_dir="./downloads",
countries=["ee"],
override_url=["ee=https://avaandmed.ariregister.rik.ee/et/avaandmete-allalaadimine"]
)
if __name__ == "__main__":
asyncio.run(main())
To develop
- Install uv
curl -LsSf https://astral.sh/uv/install.sh | sh
- Create a virtual environment and activate it
uv venv && source .venv/bin/activate
- Install dependencies and ensure the virtual environment is in sync
uv sync
- Build the project or run it locally with defaults
uv build
or
uv run src/registry_downloader
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
Built Distribution
File details
Details for the file registry_downloader-0.1.5.tar.gz
.
File metadata
- Download URL: registry_downloader-0.1.5.tar.gz
- Upload date:
- Size: 22.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.5.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7fd16c9734f490f4bf86787f81c75efdf1fd634637a86f6028bcc55ecbf1ca14 |
|
MD5 | 382a7dc67dff5afa7ef53cfc80b981a6 |
|
BLAKE2b-256 | 9a41754115750789a9c4b1d8a3c2014fc298851f7ac242f6983f22dabb537665 |
File details
Details for the file registry_downloader-0.1.5-py3-none-any.whl
.
File metadata
- Download URL: registry_downloader-0.1.5-py3-none-any.whl
- Upload date:
- Size: 15.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.5.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 398ee6692c351c80f3050399af5f4dcaf639011525139409713cc963897d51a4 |
|
MD5 | 17498baf0421de032fd20ce38b99cc31 |
|
BLAKE2b-256 | 91cdf12b66fdf85f3d079c17cb77a94ad744abbdfeb9cfdbe8a4cf089506a2c7 |