Skip to main content

A Python client for controlling Shinobi (an open-source video management solution)

Project description

Build Status Code Coverage PyPi

Shinobi Python Client

A Python client for controlling Shinobi (an open-source video management solution).

About

This package contains an (very incomplete) set of tools for interacting with Shinobi using Python.

This library tries to use the (rather unique) documented API but it also uses undocumented endpoints (which may not be stable).

Installation

Install from PyPi:

pip install shinobi-client

Install with ability to start a Shinobi installation:

pip install shinobi-client[shinobi-controller]

Install with CLI:

pip install shinobi-client[cli]

Usage

Warning: methods are generally not thread safe.

Python

Start with creating the client for a particular Shinobi installation:

from shinobi_client import ShinobiClient

shinobi_client = ShinobiClient(host, port, super_user_token=super_user_token)

(super_user_token is optional and only required for some operations.)

User

user = shinobi_client.user.get(email)
# Get user details using the user's password (does not require super user token)
user = shinobi_client.user.create(email, password)

users = shinobi_client.user.get_all()

user = shinobi_client.user.create(email, password)

modified = shinobi_client.user.modify(email, password=new_password)

deleted = shinobi_client.user.delete(email)

API Key

api_key = shinobi_client.api_key.get(email, password)

Monitor (Camera Setup)

# Setting monitors (camera setups) for the user with the given email address
monitor_orm = shinobi_client.monitor(email, password)

monitors = monitor_orm.get_all()

monitor = monitor_orm.get(monitor_id)

monitor = monitor_orm.create(monitor_id, configuration)

modified = monitor_orm.modify(monitor_id, configuration)

deleted =  monitor_orm.delete(monitor_id)

Shinobi Controller

Starts/Stops a temporary containerised installation of Shinboi. Written for the purpose of testing but it is also installable as an extra. Requires Docker.

from shinobi_client import start_shinobi

with start_shinobi() as shinobi_client:
    print(shinobi_client.url)
    # Do things with a temporary Shinobi installation

or

from shinobi_client import ShinobiController

controller = ShinobiController()
shinobi_client = controller.start()
print(shinobi_client.url)
# Do things with a temporary Shinobi installation
controller.stop()

CLI

A basic auto-generated CLI is available if the package is installed with the cli extra:

PYTHONPATH=. python shinobi_client/user.py \
        --host=HOST --port=PORT --super_user_token=SUPER_USER_TOKEN \
    get user@example.com

e.g.

$ PYTHONPATH=. python shinobi_client/cli.py \
        --host='0.0.0.0' --port=50694 --super_user_token='26dd3352-73c4-4bbd-8b09-17f2aacbd7b9' \
    create 'user@example.com' 'password123'

Development

Install with dev-dependencies:

poetry install --no-root --extras "shinobi-controller cli"

Run tests with:

python -m unittest discover -v -s shinobi/tests

Legal

GPL v3.0. Copyright 2020 Colin Nolan.

I am not affiliated to the development of Shinobi project in any way.

This work is in no way related to the company that I work for.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

shinobi-client-3.0.3.tar.gz (29.2 kB view details)

Uploaded Source

Built Distribution

shinobi_client-3.0.3-py3-none-any.whl (34.6 kB view details)

Uploaded Python 3

File details

Details for the file shinobi-client-3.0.3.tar.gz.

File metadata

  • Download URL: shinobi-client-3.0.3.tar.gz
  • Upload date:
  • Size: 29.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.0.5 CPython/3.7.3 Darwin/19.4.0

File hashes

Hashes for shinobi-client-3.0.3.tar.gz
Algorithm Hash digest
SHA256 8c04c6eab4a6c34d21bafb534e029e59aca20ccd098fd01e684ddb34ce36429f
MD5 0cce4906d07af6f79d99cb60d4798080
BLAKE2b-256 846ae36197df82d57a3ea7c73d31ea4578618edc0ea6cc029a0957a2e8616c9c

See more details on using hashes here.

File details

Details for the file shinobi_client-3.0.3-py3-none-any.whl.

File metadata

  • Download URL: shinobi_client-3.0.3-py3-none-any.whl
  • Upload date:
  • Size: 34.6 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.0.5 CPython/3.7.3 Darwin/19.4.0

File hashes

Hashes for shinobi_client-3.0.3-py3-none-any.whl
Algorithm Hash digest
SHA256 a2bdc14933810efce4df970f6ccbf32d3e287cfbba07e54b34ecb706cad90958
MD5 fc0aad8aa869cfb52d1a4cf903230f28
BLAKE2b-256 6ecfc30c2ea586cb0225f60f9ddeab88ae07a1250af0ad175d708de4e6fe53b3

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page