https://github.com/wzykubek/zeroseg_api
REST API for ZeroSeg Improved library. This API can be hosted on your Raspberry Pi device for remote displaying information on LCD display purpose.
https://github.com/wzykubek/zeroseg_api
api raspberry-pi zeroseg
Last synced: 9 months ago
JSON representation
REST API for ZeroSeg Improved library. This API can be hosted on your Raspberry Pi device for remote displaying information on LCD display purpose.
- Host: GitHub
- URL: https://github.com/wzykubek/zeroseg_api
- Owner: wzykubek
- License: isc
- Archived: true
- Created: 2020-07-08T14:25:07.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2020-07-11T09:42:58.000Z (almost 6 years ago)
- Last Synced: 2025-03-30T05:13:32.872Z (over 1 year ago)
- Topics: api, raspberry-pi, zeroseg
- Language: Python
- Homepage:
- Size: 26.4 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# ZeroSeg API
REST API for [ZeroSeg Improved](https://github.com/samedamci/ZeroSeg) library. This API can be hosted on your Raspberry Pi device
for remote displaying information on LCD display purpose.
## Running
You probably don't need run it with extra options like HTTPS when you use it in your home
network. Of course if you want to deploy this API to be accesible outside your home you
always should enable TLS for example with NGINX reverse proxy + uWSGI or Gunicorn.
In this example you can see simplest way to run production server.
+ Install packages from PyPI.
```
$ pip3 install --user ZeroSeg_API gunicorn
```
+ Start server with Gunicorn CLI.
```
$ gunicorn ZeroSeg_API:app --log-file - --bind
```