Skip to content

Latest commit

 

History

History
31 lines (19 loc) · 978 Bytes

File metadata and controls

31 lines (19 loc) · 978 Bytes

Installation

This page contains information about installing the Appning API Client Library for Python.

Requirements

Obtaining the client library

pip (recommended)

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-client

Dependencies

This 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.