notitia core runtime & modules
Project description
Notitia core - pluggable payload procesing - everything is famous.. sort of..
import motor.motor_asyncio
from bstk_notitia import Notitia
# An Investigator looks for and specialises in dealing with particular types of cases
# Observers watch for information that may or may not be useful to an investigator
# Informants provide new or supporting information upon request by the investigator
# Reporters are used by the investigator to disseminate information and receive feedback
# Only certain cases get investigated
# The investigator decides what cases to take
# Each case must run to completion, even if completion means new cases are created
motor_client = motor.motor_tornado.AsyncIOMotorClient(host=['localhost:27017'])
notitia = Notita(
department="08e32fd8-9259-4a3e-891a-bc39b7c8ef22", # [str | None] - for tenancy isolation
)
notitia.set_driver(
driver="mongodb"
driver_settings={
"async_client": motor_client,
"database": 'myappdb',
"collection_prefix": "bn_",
"archive_suffix": "_arch",
"completion_action": "immoliate",
},
)
notitia.enlist(investigator="portaone/espf")
espf_payload = {
"event-type": "Test/Event",
"variables": {
"i_event": 1,
"i_account": 999
}
}
# A valid case
try:
case = await notitia.dispatch(
observer="portaone/espf",
information=espf_payload,
completion_action="archive". # [archive | immoliate | None]
)
print(f"Tracking case as {case.number}")
except NotitiaInvalidCasePayloadException as ex:
print(f"Invalid Payload: {ex.message}")
async for movement in notitia.spy(case):
print(f"Case moved {movement.id}")
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
bstk_notitia-0.6.9.tar.gz
(22.7 kB
view details)
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 bstk_notitia-0.6.9.tar.gz.
File metadata
- Download URL: bstk_notitia-0.6.9.tar.gz
- Upload date:
- Size: 22.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ecf9d165e9738b27ca28544a958fd76944fbd8a31c2bb253ae31adef309c655d
|
|
| MD5 |
d2659630959fd83fd72a0d53e9692e84
|
|
| BLAKE2b-256 |
636eb89d4f603ac5038f0c6e6677ed9f6b848165ddb0a454a97d19c15def4a30
|
File details
Details for the file bstk_notitia-0.6.9-py3-none-any.whl.
File metadata
- Download URL: bstk_notitia-0.6.9-py3-none-any.whl
- Upload date:
- Size: 35.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b4e36f0994c18f4d761d23d7d57abb7964e340546aefe1e9d765d97eba40e1f2
|
|
| MD5 |
80c594cfe7445537e3464790140e3b8e
|
|
| BLAKE2b-256 |
73d89f544200143fd6f039bce42d6df7145c5292ed3f315ee96da2e2b49c6695
|