Metadata-Version: 2.1
Name: leddite
Version: 0.1.11
Summary: leddite lets you create your own art with Neopixel displays easily
Home-page: https://github.com/adishy/leddite
Author: Aditya Shylesh
Author-email: development-mails@adishy.com
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: docopt
Requires-Dist: python-dotenv
Requires-Dist: arrow (==0.15.5)
Requires-Dist: bs4 (==0.0.1)
Requires-Dist: Flask
Requires-Dist: requests (==2.22.0)
Requires-Dist: sh (==1.12.14)
Requires-Dist: rich

# `leddite`
The `leddite` project provides an easy to use library and hardware designs, to build and interact with AdaFruit Neopixel led strips. The library provides high-level abstractions that make it easier to display user-specified contents. It also provides a command-line tool and REST API, Documentation links provided below.

# How to install
* You can install `leddite` using `pip`
```bash
pip install leddite
```

# Basic usage:
```
Usage:
    leddite serve [--port=<port>] [--screen_type=(virtual|physical)] [--height=<virtual_screen_height>] [--width=<virtual_screen_width>] [--hostname=<hostname>] [--debug]
    leddite context set <context-name> [<context-args>] [--hostname=<hostname>] [--debug]
    leddite context info (all|active) [--hostname=<hostname>] [--debug]
    leddite carousel (start|stop|info) [--hostname=<hostname>] [--debug]
```
