An open API service indexing awesome lists of open source software.

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)

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()
```