No project description provided
Project description
Lumapps SDK
LumApps SDK is a set of tools to manipulate the LumApps API
This includes:
- A client that support all the routes of the API (located in folder lumapps)
- A set of helper classes to easily manipulate LumApps elements as Python Objects and classes (folder lumapps/helpers)
Installation
pip install lumapps-sdk
Requirements
Python >= 3.8
Getting started
-
Set up your OAuth application
Before anything else, you need to set up an OAuth application by following the steps in the LumApps Developer Portal.
-
Authenticate
Once your application set up, get a hand on its client ID and secret, then you can write the following to get an access token for a particular user.
from lumapps.api import BaseClient token = "MY TOKEN" base_client = BaseClient( api_info={"base_url": "https://your-cell.api.lumapps.com"}, # e.g. "https://go-cell-001.api.lumapps.com" auth_info={ "client_id": "your-client-id", "client_secret": "your-client-secret" } ) api = base_client.get_new_client_as("user.email@yourcompany.com", customer_id="your-organization-id")
-
Make your first API call
Let's display the full name of a registered user in lumapps
usr = api.get_call("user/get", email="user.email@yourcompany.com") print("Hello {}".format(usr["fullName"]))
Documentation
The SDK documentation is available here.
Code convention
Docstring in PEP 484 type annotations format adapted to python 3.x using comments.
How to get help, contribute, or provide feedback
Please refer to our contributing guidelines.
Copyright and license
LumApps SDK is released under the MIT license.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Hashes for lumapps_sdk-2.0.1-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | b7e6935004649420620c4056bba57c2ec05ccb92d7284ecaebf1e9893d180a68 |
|
MD5 | 2d7d2b288789300f72a1aec22fe5d5fa |
|
BLAKE2b-256 | f0a799c09cb3addccaeceb6c01dec234d3ce0256bfdbcedfe44bd0ce61855802 |