A mini SDK for interacting with the LLC Science Admin
Project description
LLC Science SDK
A simple way to fetch scientific data from the Science Admin. Please visit {BASE_URL}/api/schema/swagger-ui/#/ for more information on the API.
Installation
pip install llcsciencesdk
Updating to a new version
pip install llcsciencesdk -U
Usage
Specifying environment
from llcsciencesdk.llc_api import ScienceSdk
llc_api = ScienceSdk() # connect to production
llc_api = ScienceSdk(environment="staging") # connect to staging
llc_api = ScienceSdk(environment="local") # connect to localhost
llc_api = ScienceSdk(environment="http://127.0.0.1:8009") # connect to custom url
Logging in
from llcsciencesdk.llc_api import ScienceSdk
llc_api = ScienceSdk()
llc_api.login("username", "password")
Using the endpoints
from llcsciencesdk.llc_api import ScienceSdk
llc_api = ScienceSdk()
llc_api.login("username", "password")
model_input = llc_api.get_ft_input(1)
planting_design_list = llc_api.get_planting_design_list()
planting_design_detail = llc_api.get_planting_design(10)
Supported endpoints
See the swagger docs for a complete list. {BASE_URL}/api/schema/swagger-ui/#/
For Developers
Updating package
- Make sure you have supported version of flit installed (see project.toml).
python3 -m pip install flit
- Set env variables for PiPy login:
Get the token from the PiPy website and run the following commands:
- Update the version of the API in the init.py file.
- Run command to publish to PiPy:
flit publish
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
llcsciencesdk-2.2.6.tar.gz
(9.8 kB
view hashes)
Built Distribution
Close
Hashes for llcsciencesdk-2.2.6-py2.py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5d9677c9a1fd24f9ad5d4f82c4988d346bf346ec50938946cae6241d2614e7b9 |
|
MD5 | 67bfa13d02319b8a0fbe958b3272b356 |
|
BLAKE2b-256 | efee8b6f4dd02b06ace21280028118db3a77c0c5a7a4593f0516de7c76a4fd6a |