Skip to main content

SEAMM Datastore

GitHub Actions Build Status codecov

This repository contains the SQLAlchemy models for the SEAMM datastore as well as some associated utilities such as dumping to JSON and checking permissions. These database models and permissions system were developed to be used inside a flask application context in the SEAMM Dashboard. However, you may use this package as a stand-alone (outside of flask) with limited permissions capabilities.

Quickstart

This package contains SQLAlchemy models for the SEAMM datastore. The following gives an example of how to connect to a database in memory. You can switch the database by providing a different database URI.

import seamm_datastore

# Create a database session
connection = seamm_datastore.connect("sqlite:///:memory:")

This will create a sqlite database stored in memory. Using initialize=True will result in a new database being created. You may substitute a different database URI in place of sqlite:///memory. When connecting to a database on disk, you will need to specify an additional argument, initialize=True, if creating a new database.

To login, use the login method. Your username is determined automatically by your username when running connect if initialize is True. An admin user is also create which you can use to login (username=admin, password=admin).

connection.login(username="YOUR_USERNAME", password="default")

To import a datastore at a particular location, do:

connection.import_datastore(FILEPATH)

To use the sample data in this repository,

jobs, projects = connection.import_datastore("seamm_datastore/data/Projects")

JSON data of the added jobs and projects will be returned.

The SEAMMDatastore class has bound database models and a SQLAlchemy session factory which you can work with. These can be interacted with the same as other sqlalchemy models. To retrieve jobs for which you have "read" permissions from the database, use the bound SQLAlchemy models:

jobs = connection.Job.permissions_query("read").all()

To dump to json:

from seamm_datastore.database.schema import JobSchema

# Create job schema
jobs_schema = JobSchema(many=True)

# To retrieve all users in db
all_jobs = connection.Job.permissions_query("read").all()

jobs_json = jobs_schema.dump(all_jobs)

Permissions

The SEAMM datastore has a permissions system built in using flask-authorize for authorization. This provides a "permissions" entry on each resource table (Jobs, Flowcharts, and Projects) where permissions for "owner", "group" and "world". The SEAMM datastore also has capabilities to set "special permissions" for users or groups on specific projects.

Permissions are not automatically enforced when working directly with database models. In the SEAMM Dashboard, permissions are enforced with authentication (verifying the user is who they say they are) using [flask-jwt-extended] and authorization using flask-authorize.

To use the permissions checking mechanisms of flask authorize outside of a flask app, use the helper function here seamm_datastore.SEAMMDatastore.

Copyright (c) 2021, Jessica A. Nash (The Molecular Sciences Software Institute)

Acknowledgements

Project based on the Computational Molecular Science Python Cookiecutter version 1.5.

Release files for seamm-datastore 2026.9.25

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Source distribution (sdist)

Source distribution for seamm-datastore 2026.9.25
File Size Uploaded
seamm_datastore-2026.9.25.tar.gz 102.0 kB Details

Built distribution (wheel)

Table of built distributions (wheels) for seamm-datastore 2026.9.25
File Interpreter ABI Platform
seamm_datastore-2026.9.25-py2.py3-none-any.whl Python 3, Python 2 none any Details

Total release size: 199.0 kB

Release files / seamm_datastore-2026.9.25.tar.gz

Download URL seamm_datastore-2026.9.25.tar.gz
Size 102.0 kB
Tags Source
SHA-256 checksum
How to use checksums
57e98e0d015171f1fe34b797ff6bc21c38c64544320b56ce75ce23e18a5970bc
BLAKE2b-256 checksum
How to use checksums
571c9152658ea7251e23a5d4860f8c4bc36438e752b3ca5ef6e2baa0aefc39ed
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.14

Release files / seamm_datastore-2026.9.25-py2.py3-none-any.whl

Download URL seamm_datastore-2026.9.25-py2.py3-none-any.whl
Size 97.1 kB
Tags Python 2 Python 3
SHA-256 checksum
How to use checksums
16ab5fff0d41267104e574a306e049d2984cc92df721470a4b3cabffc6efaca9
BLAKE2b-256 checksum
How to use checksums
f5a233b5993e74a8c403439006bbcdf1a2c658367caac075ced31915cde4d13b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.14
Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page