Metadata-Version: 2.1
Name: decthings-model
Version: 0.0.7
Summary: Create a Decthings model using Python
Project-URL: Homepage, https://github.com/decthings/model-py
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: decthings-api>=0.0.2

<img src="https://decthings.com/logo.png" alt="decthings logo" width="33%" />

## Decthings model using Python

[![PyPI version](https://badge.fury.io/py/decthings-model.svg)](https://pypi.org/project/decthings-model/)

Use Python to create a Decthings model.

### Setup

Create a Decthings model using Python by going to the [create model page](https://app.decthings.com/models/create) on Decthings, and select Python as the language. This package is then by default installed and used within your model.

Manually, you can install this package using `pip3 install decthings-model`.

### Execute a model

When you create a model you define it as the variable `model` in your `main.py` file. There is of course also another side which executes your code and reads the `model` variable. This is handled automatically by Decthings when you run a model in the cloud, but in case you want to run a Decthings model on your own system you can use the Rust crate [decthings-model-executor](https://github.com/decthings/model-executor).
