Installation¶
Requirements¶
Python 3.10 or newer
A Presscart API token (starts with
pc_) — see Authentication and Scopes
With uv (recommended)¶
uv add pypresscart
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:
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