This page contains information about installing the Appning API Client Library for Python.
The preferred method is via pip. From your project root, use a virtual environment (recommended):
python3 -m venv .venv
source .venv/bin/activate # On Windows: .venv\Scripts\activate
pip install -e .To install the published package instead of from source:
pip install google-api-python-clientThis library depends on google-auth and google-auth-httplib2 for authentication and HTTP transport. They are installed automatically when you install the client. The client uses discovery documents cached in the library to build API services (e.g. Android Publisher v3).
For more details, examples, and authentication (JWT Bearer / Appning), see the main README.