Updated to v0.0.5

Updated readme.
Updated twine package script.
This commit is contained in:
Alano
2020-12-07 12:09:12 +02:00
parent feb30ae35b
commit 984747e1db
2 changed files with 15 additions and 4 deletions

View File

@@ -1,4 +1,9 @@
## ReolinkCameraAPI ## Reolink Python Api Client
A Reolink Camera client written in Python.
Other Supported Languages:
- Go: [reolink-go-api](https://github.com/ReolinkCameraAPI/reolink-go-api)
### Join us on Discord ### Join us on Discord
@@ -21,11 +26,13 @@ You can get the Restful API calls by looking through the HTTP Requests made the
Implement a "Camera" object by passing it an IP address, Username and Password. By instantiating the object, it will try retrieve a login token from the Reolink Camera. This token is necessary to interact with the Camera using other commands. Implement a "Camera" object by passing it an IP address, Username and Password. By instantiating the object, it will try retrieve a login token from the Reolink Camera. This token is necessary to interact with the Camera using other commands.
See the `examples` directory.
### Using the library as a Python Module ### Using the library as a Python Module
Install the package via Pip Install the package via Pip
pip install reolink-api==0.0.1 pip install reolink-api==0.0.5
### Styling and Standards ### Styling and Standards
@@ -33,6 +40,10 @@ This project intends to stick with [PEP8](https://www.python.org/dev/peps/pep-00
### API Requests Implementation Plan: ### API Requests Implementation Plan:
Stream:
- [X] Blocking RTSP stream
- [X] Non-Blocking RTSP stream
GET: GET:
- [X] Login - [X] Login
- [X] Logout - [X] Logout

View File

@@ -1,3 +1,3 @@
rm -fr dist rm -rf dist
python setup.py sdist python setup.py sdist bdist_wheel
twine upload dist/* twine upload dist/*