For AI agents: a documentation index is available at the root level at /llms.txt and /llms-full.txt. Append /llms.txt to any URL for a page-level index, or .md for the markdown version of any page.
  • Get Started
    • Introduction
    • Quickstart
    • Authentication
  • Python SDK
    • Install
    • Usage
    • Errors
  • CLI
    • Overview
LogoLogo
On this page
  • Requirements
  • Install from PyPI
  • Install with uv
  • Install a specific version
  • Install from source
  • Verify
  • Dependencies
  • Python version support
Python SDK

Python SDK — Installation

Was this page helpful?
Previous

Usage

Next
Built with

Requirements

  • Python 3.10 – 3.14
  • pip 22+ (or uv, poetry, pipenv)

Install from PyPI

$pip install onepin

This installs both the onepin Python package and the onepin CLI entry point.

Install with uv

$uv add onepin

Install a specific version

$pip install "onepin==0.1.0"

Install from source

$pip install "git+https://github.com/podonos/onepin-python.git"

Verify

$python -c "import onepin; print(onepin.__version__)"

Or via the CLI:

$onepin --version

Dependencies

The package depends on httpx, typer, rich, and pydantic. No optional extras are required for standard use.

Python version support

PythonSupport
3.14Supported
3.13Supported
3.12Fully tested
3.11Supported
3.10Supported
< 3.10Not supported