Unofficial Python SDK for VTEX API
Project description
VTEXPY
Unofficial Python SDK for VTEX API
VTEXPY is an unofficial Python SDK designed to facilitate integration with the VTEX API.
Even though it is still tagged as beta, vtexpy has been in use by a SaaS company in a production environment for over a year, making millions of requests a day to the VTEX API.
Features
- Easy to use Python interface for calling endpoints on the VTEX API.
- Custom exception handling
- Automatic retries
- Request logging
Getting Started
Requirements
- Python >= 3.9, < 3.14
- httpx >= 0.26, < 1.0
- python-dateutil >= 2.9, < 3.0
- tenacity >= 8.3, < 10.0
Installation
pip install vtexpy
Usage
If the API you want to call is not yet implemented, feel free to create an issue on the VTEXPY Github repository and request it to be added.
from vtex import VTEX
# 1 - Instantiate the VTEX client for the account you want to access:
vtex_client = VTEX(
account_name="<ACCOUNT_NAME>",
app_key="<APP_KEY>",
app_token="<APP_TOKEN>",
)
# 2 - Call one of the available APIs, e.g.:
vtex_client.license_manager.get_account()
vtex_client.catalog.list_sku_ids(page=1, page_size=1000)
vtex_client.orders.list_orders(page=1, page_size=100)
# 3 - If the API you want to call is not yet implemented you can use the `custom` API.
vtex_client.custom.request(
method="GET",
environment="vtexcommercestable",
endpoint="/api/catalog_system/pvt/commercialcondition/list",
)
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
vtexpy-0.0.0b14.tar.gz
(21.3 kB
view details)
Built Distribution
vtexpy-0.0.0b14-py3-none-any.whl
(27.8 kB
view details)
File details
Details for the file vtexpy-0.0.0b14.tar.gz
.
File metadata
- Download URL: vtexpy-0.0.0b14.tar.gz
- Upload date:
- Size: 21.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.8.3 CPython/3.9.19 Darwin/23.6.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | fd618f5cfb4803e5bd49dcba3b2fcfceab83acd07f02b6e4fc19f111f9e5d6fe |
|
MD5 | 466c63f169330fd1690c726b8ad1ba6c |
|
BLAKE2b-256 | 00872bae16c9396f9d28fc8c30f5e0c5654ae213908b99e8822b0928e9cbdf3a |
File details
Details for the file vtexpy-0.0.0b14-py3-none-any.whl
.
File metadata
- Download URL: vtexpy-0.0.0b14-py3-none-any.whl
- Upload date:
- Size: 27.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.8.3 CPython/3.9.19 Darwin/23.6.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 89401ee82c87f3964dd078990bb0082bf6ce2bec2a8b7c94285ed83e1248cd38 |
|
MD5 | a6300bfcdca07f4c0d3a8e707ef54189 |
|
BLAKE2b-256 | d235579052b59a57d23dc16ae7df090a95d71d4f506ffb0af7b5e7e3e350f4d6 |