Metadata-Version: 2.1
Name: SensiML
Version: 2024.1.0
Summary: SensiML Python SDK
Home-page: UNKNOWN
Author: SensiML
Author-email: support@sensiml.com
License: Proprietary
Platform: UNKNOWN
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3.7
License-File: LICENSE
Requires-Dist: cookiejar (==0.0.2)
Requires-Dist: requests (>=2.14.2)
Requires-Dist: requests-oauthlib (>=0.7.0)
Requires-Dist: appdirs
Requires-Dist: semantic-version (>=2.6.0)
Requires-Dist: numpy
Requires-Dist: pandas
Requires-Dist: matplotlib
Requires-Dist: prompt-toolkit
Requires-Dist: seaborn
Requires-Dist: wurlitzer
Requires-Dist: tabulate

==================
SensiML Python SDK
==================

The SensiML Python SDK provides a programmatic interface to SensiML REST API's for
building machine learning pipelines including data processing, feature
generation and classification for developing smart sensor algorithms optimized
to run on embedded devices.

Installation/Setup Instructions
===============================

1. The SensiML Python SDK requires **python version 3.7 or greater** to be installed on your computer.

2. We recommend running the SensiML Python SDK using Jupyter Notebook. Install Jupyter Notebook by opening a command prompt window on your computer and run the following command

    pip install jupyter

3. Next, to install the SensiML Python SDK open a command prompt window on your computer and run the following command

      pip install SensiML

This command will install the SensiML Python SDK and all of the required dependencies to your computer. 

Connect to SensiML Cloud
-------------------------

Once you have installed the software, you can connect to the server by running the following

    from sensiml import *

    client = SensiML()

Connecting to SensiML servers requires and account, you can register at https://sensiml.com

Documentation can be found here https://sensiml.com/documentation/



