This is a Python client for the User Management API from Adobe, aka the UMAPI.
The User Management API is an Adobe-hosted network service which provides Adobe Enterprise customers the ability to manage their users. This client makes it easy to access the UMAPI from a local Python application.
This client is open source, maintained by Adobe, and distributed under the terms of the OSI-approved MIT license. Copyright (c) 2016-2021 Adobe Inc.
umapi-client.py
is published to the Python Packaging Index.
https://pypi.org/project/umapi-client/
It can be installed with pip:
$ pip install umapi-client
Or a dependency manager such as Poetry:
$ poetry add umapi-client
Poetry is required to build the package. Follow the instructions documented on Poetry's website to install it on your system.
-
Clone this repository
$ git clone https://github.com/adobe-apiplatform/umapi-client.py $ cd umapi-client.py
-
Install dependencies to virtual environment.
$ poetry install
-
The
build
command will create a source package (.tar.gz
) and a wheel file (.whl
) in thedist
directory.$ poetry build $ ls dist umapi-client-2.18.tar.gz umapi_client-2.18-py3-none-any.whl
-
Some of the packages required by this module use encryption, and so may require you to do local builds of modules that use SSL. Typically, this will require you to have a python installed that supports compiling extensions.
-
Run tests with
pytest
.$ poetry run pytest
Usage documentation, as well as information about how to get client
credentials for use of the UMAPI, can be found in the
user guide,
whose sources are in the docs
directory of this repository.
This project is licensed under the MIT License. See LICENSE for more information.