https://github.com/null-none/econt-bg
📦 A simple Python wrapper for the Econt.com (REST API)
https://github.com/null-none/econt-bg
bulgaria delivery econt python
Last synced: about 2 months ago
JSON representation
📦 A simple Python wrapper for the Econt.com (REST API)
- Host: GitHub
- URL: https://github.com/null-none/econt-bg
- Owner: null-none
- License: mit
- Created: 2021-12-12T13:40:01.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2025-09-01T11:25:36.000Z (8 months ago)
- Last Synced: 2026-02-13T10:26:13.863Z (2 months ago)
- Topics: bulgaria, delivery, econt, python
- Language: Python
- Homepage: https://www.econt.com
- Size: 29.3 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# econ
📦 A simple Python wrapper for the Econt.com (REST API)
#### Install
```bash
pip install econt_bg
```
#### Example
```python
from econt_bg.api import Econt
econt = Econt()
econt.get_countries()
econt.get_cities()
econt.get_offices()
econt.get_streets()
econt.get_streets_by_city(city_post_code="1407")
econt.get_offices_by_city(city_post_code="1407")
econt.get_quarters()
econt.get_seller_addresses()
econt.get_regions()
econt.get_clients()
```