Skip to content

Latest commit

 

History

History
33 lines (20 loc) · 670 Bytes

README.md

File metadata and controls

33 lines (20 loc) · 670 Bytes

VTEXPY

PyPI Version

Unofficial Python SDK for VTEX API

This is an unofficial Python SDK designed to facilitate integration with the VTEX API.

Features

  • Easy to use Python interface for calling endpoints on the VTEX API.

Getting Started

Requirements

  • Python >= 3.8
  • httpx >= 0.25

Installation

pip install vtexpy

Usage

from vtex import VTEX


vtex_client = VTEX(account_name="<ACCOUNT_NAME>", app_key="APP_KEY", app_token="<APP_TOKEN>")
carrier_list_response = vtex_client.logistics.list_carriers(page=1, page_size=100)