Quickstart
This is the quickstart guide for Lomas-client, providing initial setup and usage instructions.
Client
Installation
To install lomas-client, follow these steps:
Open a terminal.
Run the following command:
pip install lomas-client
You’re all set!
First steps
To use FSO lomas client, you can do the following:
Import the library in your Python code.
Initialise the client with required url, name and dataset.
You can now use any function as long as you have access to the dataset!
# Step 1 from lomas_client import Client # Step 2 APP_URL = "your_deployement_url" USER_NAME = "your_name" DATASET_NAME = "name_of_dataset_you_want_to_query" client = Client(url=APP_URL, user_name = USER_NAME, dataset_name = DATASET_NAME) # Step 3 res = client.any_query(parameters)
with any_query being one of the function presented below and parameters being its associated parameters.