From 984747e1db3e8f8be4d1ea55b8faa2f96eea1b39 Mon Sep 17 00:00:00 2001 From: Alano Date: Mon, 7 Dec 2020 12:09:12 +0200 Subject: [PATCH] Updated to v0.0.5 Updated readme. Updated twine package script. --- README.md | 15 +++++++++++++-- make-and-publish-package.sh | 4 ++-- 2 files changed, 15 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index cd90018..d6f2bd1 100644 --- a/README.md +++ b/README.md @@ -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 @@ -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. +See the `examples` directory. + ### Using the library as a Python Module Install the package via Pip - pip install reolink-api==0.0.1 + pip install reolink-api==0.0.5 ### 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: +Stream: +- [X] Blocking RTSP stream +- [X] Non-Blocking RTSP stream + GET: - [X] Login - [X] Logout diff --git a/make-and-publish-package.sh b/make-and-publish-package.sh index 43cca45..bf414e6 100755 --- a/make-and-publish-package.sh +++ b/make-and-publish-package.sh @@ -1,3 +1,3 @@ -rm -fr dist -python setup.py sdist +rm -rf dist +python setup.py sdist bdist_wheel twine upload dist/* \ No newline at end of file