PBSHM Core
PBSHM Core is a minimal application built on Flask to enable development of PBSHM modules that consume PBSHM Schema data. It was designed to deal with all the basic requirements of a PBSHM system, allowing developers to focus on implementation of PBSHM modules.
The application includes a initialisation module to configure and set up the system, a authentication module to provide permission-based authorisation of controls, a layout module to provide an app wide layout, a timekeeper module to enable conversion between native python datetime objects and the PBSHM Schema timestamp format, and finally a mechanic module to facilitate easy interaction between available PBSHM Schema versions and your local database. The minimum version of Python required to run the PBSHM Core is version 3.12.
For more information on how to create a module for PBSHM Core, please see the module template repository.
Installation
Install the package via pip:
pip install pbshm-core
Setup
Configure settings and initialise the database with a new root user:
flask --app=pbshm.app init config
flask --app=pbshm.app init db new-root-user
The above steps will prompt you for all the required fields to set up the system.
Running
The application is run via the standard Flask command:
flask --app=pbshm.app run
Accessing data
The PBSHM Core operates under the premise of data silos: where each realm of confidential data has a corresponding silo (a structure collection) where it's data resides. A user will always have access to at least one structure collection (the default collection), but there may be multiple structure collections available to the user.
The code below shows how to access data in the default collection using a MongoDB Aggregation Pipeline on the default_collection:
from pbshm.db import default_collection
populations = {}
for document in default_collection().aggregate([
{"$project":{
"_id":1,
"name":1,
"population":1
}},
{"$group":{
"_id":"$population",
"structures":{"$addToSet":"$name"}
}},
{"$project":{
"_id":0,
"population":"$_id",
"structures":1
}}
]):
populations[document["population"]] = document["structures"]
Tools
The PBSHM Core comes with a few tools which are available via the mechanic and timekeeper modules. The mechanic module enables easy interaction with the PBSHM Schema and your local database. The timekeeper module enables conversions from native python datetime objects into the timestamp format stored within the PBSHM Schema.
To retrieve all versions of the PBSHM Schema available for installation, use the following command:
flask --app=pbshm.app mechanic versions
To create a new collection with the latest version of the PBSHM Schema installed within the collection, use the following command:
flask --app=pbshm.app mechanic new-structure-collection collection-name
To create a new collection with a specific version of the PBSHM Schema installed within the collection, use the following command:
flask --app=pbshm.app mechanic new-structure-collection collection-name --version=v1.0
To convert a python datetime object into UTC nanoseconds since epoch, use the following code:
from datetime import datetime
from pbshm.timekeeper import datetime_to_nanoseconds_since_epoch
now = datetime.now()
nanoseconds = datetime_to_nanoseconds_since_epoch(now)
To convert a UTC nanoseconds since epoch into a native python datetime object, use the following code:
from pbshm.timekeeper import nanoseconds_since_epoch_to_datetime
nanoseconds = 1706884924912888000
date_time = nanoseconds_since_epoch_to_datetime(nanoseconds)
Bug reporting
If you encounter any issues/bugs with the system or the instructions above, please raise an issue through the issues system on GitHub.
Release files for pbshm-core 1.2.2
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| pbshm_core-1.2.2.tar.gz | 68.4 kB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| pbshm_core-1.2.2-py3-none-any.whl | Python 3 | none | any | Details |
Total release size: 119.9 kB
Release files / pbshm_core-1.2.2.tar.gz
| Download URL | pbshm_core-1.2.2.tar.gz |
|---|---|
| Size | 68.4 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
7c03afad80b31a97aa4aad4bed4587f00afe571f96a63e93de1912c6b9d5397b
|
|
BLAKE2b-256 checksum How to use checksums |
f00be43d622ae2944674794840b892e519a006b433131391ad9a29fbfa75ad57
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/6.1.0 CPython/3.13.12
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Jul 15, 2026.
Transparency logRelease files / pbshm_core-1.2.2-py3-none-any.whl
| Download URL | pbshm_core-1.2.2-py3-none-any.whl |
|---|---|
| Size | 51.5 kB |
| Tags | Python 3 |
|
SHA-256 checksum How to use checksums |
4d6b8c4dbc32c238eab2fbcf409436e095bbf5a3f984835be5f73a976d4ddb83
|
|
BLAKE2b-256 checksum How to use checksums |
f09d7569f6f7e8b7e6559e35f1041ab82deb36a9151251f6ad65f28924806310
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/6.1.0 CPython/3.13.12
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Jul 15, 2026.
Transparency log