Skip to content

Commit 984747e

Browse files
committed
Updated to v0.0.5
Updated readme. Updated twine package script.
1 parent feb30ae commit 984747e

File tree

2 files changed

+15
-4
lines changed

2 files changed

+15
-4
lines changed

README.md

+13-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,9 @@
1-
## ReolinkCameraAPI
1+
## Reolink Python Api Client
2+
3+
A Reolink Camera client written in Python.
4+
5+
Other Supported Languages:
6+
- Go: [reolink-go-api](https://github.com/ReolinkCameraAPI/reolink-go-api)
27

38
### Join us on Discord
49

@@ -21,18 +26,24 @@ You can get the Restful API calls by looking through the HTTP Requests made the
2126

2227
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.
2328

29+
See the `examples` directory.
30+
2431
### Using the library as a Python Module
2532

2633
Install the package via Pip
2734

28-
pip install reolink-api==0.0.1
35+
pip install reolink-api==0.0.5
2936

3037
### Styling and Standards
3138

3239
This project intends to stick with [PEP8](https://www.python.org/dev/peps/pep-0008/)
3340

3441
### API Requests Implementation Plan:
3542

43+
Stream:
44+
- [X] Blocking RTSP stream
45+
- [X] Non-Blocking RTSP stream
46+
3647
GET:
3748
- [X] Login
3849
- [X] Logout

make-and-publish-package.sh

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
rm -fr dist
2-
python setup.py sdist
1+
rm -rf dist
2+
python setup.py sdist bdist_wheel
33
twine upload dist/*

0 commit comments

Comments
 (0)