Installation
Install the listingsAPI Python SDK with pip, set up a virtual environment, and verify your setup.
Requirements
- Python 3.9 or later
pip21+
Install
bash
pip install listingsapiThe package is published as listingsapi on PyPI. Its only runtime
dependency is requests, which pip pulls in automatically; no extra install
step is needed.
Virtual environment (recommended)
bash
python -m venv .venvsource .venv/bin/activate # Windows: .venv\Scripts\activatepip install listingsapiPin the version
bash
pip install "listingsapi==0.5.0"Or add it to your requirements.txt:
bash
listingsapi==0.5.0Or pyproject.toml:
bash
dependencies = [ "listingsapi>=0.5,<1.0",]Verify
Python
import listingsapiprint(listingsapi.__version__)You should see 0.5.0 (or the version you installed).
Next steps
- Quickstart: connect and make your first API call
- Configuration: timeouts, retries, base URL overrides