Metadata-Version: 2.1
Name: vtex
Version: 0.1.2
Summary: VTEX API Wrapper for Python
Home-page: https://github.com/lmeilibr/vtex
Author: Leandro Meili
Author-email: leandro.meili@gmail.com
License: MIT
Platform: UNKNOWN
Description-Content-Type: text/markdown
Requires-Dist: requests

![](https://github.com/lmeilibr/vtex/workflows/Python%20package/badge.svg)

# VTEX
VTEX API Wrapper for Python

# Example code

You just need to pass your credentials to the Vtex instance,
and fetch the endpoints.

```python
from vtex import Vtex

client = Vtex(account_name, environment, app_key, app_token)
result = client.logistics.get_all_carriers()
```
result will be the json response from the get_all_carriers request


