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.7
Getting started
-
Get your token
LumApps supports multiple ways of authentication. The fastest one to implement is the following:
Get your token by logging to your LumApps account. Go to https://sites.lumapps.com and authenticate. Once connected, open the javascript console of your browser and run:
var instance = window.location.pathname.split('/'); instance = instance[1] == "a" ? instance[3] : instance[1] fetch(window.location.origin+"/service/init?customerHost="+window.location.host+"&instanceSlug="+instance+"& slug=").then(data=>{return data.json()}).then(res => {console.log(res.token)})
This will generate your personal LumApps token that will be active for 60 minutes, and that we will use in the following steps
-
Authenticate
from lumapps.api import BaseClient token = "MY TOKEN" client = BaseClient(token=token)
-
Make your first API call
Let's display the full name of a registered user in lumapps
user_email = "YOUR EMAIL" usr = api.get_call("user/get", email=user_email) print("Hello {}".format(usr["fullName"]))
Documentation
The SDK documentation is available here.
Code convention
Docstring in PEP 484 type annotations format adapted to python 2.7 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-1.2.3-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | a54e732550c06bddc624e96c10bd3adaabba8fc30cd11a7b0f26a7720fcdfaf0 |
|
MD5 | 6ee22995ebe40809f666df6423423081 |
|
BLAKE2b-256 | f6bfc6ebc0aa738ec573aee37fd4556228a9865487a882bc57180934b462f24e |