Metadata-Version: 2.4
Name: econt_bg
Version: 1.0.5
Summary: Econt Express Service
Home-page: https://github.com/lesthetique-store/econt-bg
Author: Kalinin Mitko
Author-email: kalinin.mitko@gmail.com
Project-URL: Bug Tracker, https://github.com/lesthetique-store/econt-bg/issues
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: requests
Requires-Dist: dicttoxml
Requires-Dist: xmltodict
Requires-Dist: nested_lookup
Dynamic: license-file

# econt
A library for use econt.com delivery service

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