Installation

Requirements

With pip

pip install pypresscart

With Poetry

poetry add pypresscart

Verify

python -c "from pypresscart import PresscartClient, __version__; print(__version__)"

Dependencies

pypresscart installs only two packages:

Package

Why

requests

HTTP transport

pydantic (v2)

Request/response models

Both are widely used, well-maintained, and likely already in your environment.

Upgrading

uv add --upgrade pypresscart
# or
pip install --upgrade pypresscart

Always check the Changelog before upgrading across minor versions.

Uninstall

uv remove pypresscart
# or
pip uninstall pypresscart