A Python SDK for the Eagle Eye Networks VMS
Project description
een-python Package Documentation
Overview
The eensdk-python package provides a Python client for interacting with the Eagle Eye Networks API. This package simplifies authentication, API calls, and utility tasks, enabling developers to quickly integrate their applications with the Eagle Eye Networks video platform.
Installation
You can install the eensdk-python package using pip:
pip install eensdk-python
Quick Start
Before you Begin
To use this library, you will need to have a valid Eagle Eye Networks account and an application registered with the Eagle Eye Networks Developer Program. For more information on how to register an application, review the API documentation.
Initialize the Client
To initialize the client, you will need to provide the following parameters:
client_id: Your Eagle Eye Networks client ID.client_secret: Your Eagle Eye Networks client secret.redirect_uri: The URI to which the API redirects after authentication.
These parameters are can be obtained by registering an application with the Eagle Eye Networks Developer and creating your client credentials.
You will also need to implement a token storage class that stores and retrieves access tokens. This class should implement the TokenStorage interface:
from een import TokenStorage
class MyTokenStorage(TokenStorage):
def get_token(self) -> str:
# Retrieve the access token from your storage
pass
def set_token(self, token: str):
# Store the access token in your storage
pass
def __contains__(self, key: str) -> bool:
# Returns the token if it exists in your storage
pass
Finally, initialize the client with your credentials and token storage:
from een import EENClient, TokenStorage
token_storage = MyTokenStorage()
client = EENClient(
client_id="your-client-id",
client_secret="your-client-secret",
redirect_uri="https://your-redirect-uri",
token_storage=token_storage
)
Authentication
Authenticate with Eagle Eye Networks using the authorization code flow. For details on the authorization code flow, refer to the Eagle Eye Networks API documentation.
# Step 1: Get the authorization URL and direct users to it
print(client.get_auth_url())
# Step 2: Users will complete the authorization process and be redirected to your redirect URI. The authorization code will be included in the query parameters.
auth_code = request.args.get('code')
client.auth_een(auth_code, type="code")
# Step 3: The access token is now stored in your token storage. It will automatically be used for future requests.
client.list_cameras()
# You can also retrieve the access token directly through the TokenStorage interface
token = client.token_storage.get('access_token')
Utilities
The utils.py module provides helpful functions for common tasks:
Formatting Timestamps
The Eagle Eye Networks API requires timestamps in ISO 8601 format with millisecond precision. Use the format_timestamp function to convert timestamps to the required format:
from een.utils import format_timestamp
formatted = format_timestamp("2025-01-01T12:00", user_timezone="America/New_York")
print(formatted)
Generating Time Ranges
You can also generate timestamps for common time ranges, such as the previous seven days:
from een.utils import get_timestamps
current, seven_days_ago = get_timestamps()
print(current, seven_days_ago)
Converting camelCase to Title Case
Eagle Eye Networks often uses camelCase for identifiers such as event types or alert names. Use the camel_to_title function to convert these identifiers to a more readable title case.
from een.utils import camel_to_title
converted = camel_to_title("motionDetected")
print(converted) # Output: "Motion Detected"
License
This package is provided under the MIT License.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file eensdk_python-0.7.5.tar.gz.
File metadata
- Download URL: eensdk_python-0.7.5.tar.gz
- Upload date:
- Size: 41.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.10.11
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
afcad079df581317261a791fa57fce1e2b5868d09dc67f3ed50dcda9bd98d9eb
|
|
| MD5 |
21276a976687aba5751adf767f3b0226
|
|
| BLAKE2b-256 |
4f8c3f5ccdf3853981a0f0a3ed570714be8c8fc32f54a2211b95b431137f1bf3
|
File details
Details for the file eensdk_python-0.7.5-py3-none-any.whl.
File metadata
- Download URL: eensdk_python-0.7.5-py3-none-any.whl
- Upload date:
- Size: 68.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.10.11
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
771e085a074850f11b7483652af327cb5fb9f5d478433dbca729b86fcc6d97e0
|
|
| MD5 |
5b470591214c6e59951c8e1c73002756
|
|
| BLAKE2b-256 |
f3c136f63979957fad7a547e730277c1e16991edd33159efd6a7cd2abfa662d2
|