Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/goldenm-software/flespi-python

Flespi REST API wrapper for Python Language
https://github.com/goldenm-software/flespi-python

Last synced: about 2 months ago
JSON representation

Flespi REST API wrapper for Python Language

Awesome Lists containing this project

README

        

# Flespi REST API wrapper for Python
[![pypi version](https://badge.fury.io/py/flespi.svg)](https://pypi.org/project/flespi/)

## Installation
Use the package manager [pip](https://pypi.org/) to install flespi

```bash
$ pip3 install flespi
```

### Usage
```python
from flespi import FlespiClient
# Or
from flespi.rest import FlespiClient

token = 'your_token' # Without "FlespiToken"
# Initialize Flespi instance
flespi = FlespiClient(token)

response = flespi.get('/gw/devices/all')

print(response)
```

## Contributing
Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.

Please make sure to update tests as appropriate.

## License
[MIT](https://choosealicense.com/licenses/mit/)