Provides object-oriented Opencast API call support.
Project description
OpencastAPI
The opencastapi package offers an object-oriented to the Opencast Project's API.
Features
- Object-oriented interface.
- Multitarget/multinode support (currently limited to a common username and password across nodes per configuration).
- Abstracted, persisted, and reusable configuration.
Installation
pip install opencastapi
Configuration
The default configuration path is /etc/opencastapi/opencastapi.conf, but can
be overridden by setting the environment variable OPENCASTAPI_CONF_PATH.
Example Configuration
[Security]
username=myapiusername
password=myapipassword
[Targets]
admin_prod=https://admin.opencast.org
player_prod=https://player.opencast.org
admin_dev=https://admin-dev.opencast.org
player_dev=https://player-dev.opencast.org
Usage
Simple example:
import opencastapi
workflows_call = opencastapi.create_call(target='admin_dev', http_verb='get', path='/api/workflows')
response = workflows_call()
print(response.text)
Example with filter
import opencastapi
filter = {"filter":"start:2021-11-16T00:00:00+01:00/2021-11-16T23:59:59+01:00}
workflows_call = opencastapi.create_call(target='admin_dev', http_verb='get', path='/api/workflows', parameters=filter)
response = workflows_call()
print(response.text)
License
It was developed indendent of the https://opencast.org/ project, and is also intentionally licensed differently, using the non-copyleft 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 Distributions
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 opencastapi-1.0.11-py3-none-any.whl.
File metadata
- Download URL: opencastapi-1.0.11-py3-none-any.whl
- Upload date:
- Size: 15.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7c4a29833d3da40ab7398657f9a79b578920e1c498e6aa6c2f2c59d2a54ac973
|
|
| MD5 |
7440626913d87b205eb05630008a7697
|
|
| BLAKE2b-256 |
2cf66b97655969cce062f560b0ab47579bb23a324cc5baebe0b78f505ceb86ee
|