seamm-datastore


Nameseamm-datastore JSON
Version 2024.3.12 PyPI version JSON
download
home_pagehttps://github.com/molssi-seamm/seamm_datastore
Summaryseamm_datastore
upload_time2024-03-12 19:33:52
maintainer
docs_urlNone
authorJessica A. Nash (The Molecular Sciences Software Institute)
requires_python
licenseBSD-3-Clause
keywords seamm datastore dashboard
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage
            SEAMM Datastore
==============================
[//]: # (Badges)
[![GitHub Actions Build Status](https://github.com/molssi-seamm/seamm_datastore/workflows/CI/badge.svg)](https://github.com/molssi-seamm/seamm_datastore/actions?query=workflow%3ACI)
[![codecov](https://codecov.io/gh/molssi-seamm/seamm_datastore/branch/master/graph/badge.svg)](https://codecov.io/gh/molssi-seamm/seamm_datastore/branch/master)


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](https://github.com/molssi-seamm/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.

```python
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`).

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

To import a datastore at a particular location, do:

```python
connection.import_datastore(FILEPATH)
```

To use the sample data in this repository,

```python
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:

```python
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](https://flask-authorize.readthedocs.io/en/latest/) 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](https://flask-authorize.readthedocs.io/en/latest/). 

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

### Copyright

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


#### Acknowledgements
 
Project based on the 
[Computational Molecular Science Python Cookiecutter](https://github.com/molssi/cookiecutter-cms) version 1.5.

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/molssi-seamm/seamm_datastore",
    "name": "seamm-datastore",
    "maintainer": "",
    "docs_url": null,
    "requires_python": "",
    "maintainer_email": "",
    "keywords": "SEAMM,datastore,dashboard",
    "author": "Jessica A. Nash (The Molecular Sciences Software Institute)",
    "author_email": "janash@vt.edu",
    "download_url": "https://files.pythonhosted.org/packages/bf/bc/66d005f15a8930996c7fe3a6214ea2458dbb3504b4eede32f9019756216d/seamm_datastore-2024.3.12.tar.gz",
    "platform": "Linux",
    "description": "SEAMM Datastore\n==============================\n[//]: # (Badges)\n[![GitHub Actions Build Status](https://github.com/molssi-seamm/seamm_datastore/workflows/CI/badge.svg)](https://github.com/molssi-seamm/seamm_datastore/actions?query=workflow%3ACI)\n[![codecov](https://codecov.io/gh/molssi-seamm/seamm_datastore/branch/master/graph/badge.svg)](https://codecov.io/gh/molssi-seamm/seamm_datastore/branch/master)\n\n\nThis 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](https://github.com/molssi-seamm/seamm_dashboard). However, you may use this package as a stand-alone (outside of flask) with limited permissions capabilities.\n\n## Quickstart\n\nThis 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.\n\n```python\nimport seamm_datastore\n\n# Create a database session\nconnection = seamm_datastore.connect(\"sqlite:///:memory:\")\n```\nThis 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.\n\nTo 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`).\n\n```python\nconnection.login(username=\"YOUR_USERNAME\", password=\"default\")\n```\n\nTo import a datastore at a particular location, do:\n\n```python\nconnection.import_datastore(FILEPATH)\n```\n\nTo use the sample data in this repository,\n\n```python\njobs, projects = connection.import_datastore(\"seamm_datastore/data/Projects\")\n```\n\nJSON data of the added jobs and projects will be returned.\n\nThe `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:\n\n```\njobs = connection.Job.permissions_query(\"read\").all()\n```\n\nTo dump to json:\n\n```python\nfrom seamm_datastore.database.schema import JobSchema\n\n# Create job schema\njobs_schema = JobSchema(many=True)\n\n# To retrieve all users in db\nall_jobs = connection.Job.permissions_query(\"read\").all()\n\njobs_json = jobs_schema.dump(all_jobs)\n```\n\n## Permissions\n\nThe SEAMM datastore has a permissions system built in using [flask-authorize](https://flask-authorize.readthedocs.io/en/latest/) 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.\n\nPermissions 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](https://flask-authorize.readthedocs.io/en/latest/). \n\nTo use the permissions checking mechanisms of flask authorize outside of a flask app, use the helper function here `seamm_datastore.SEAMMDatastore`.\n\n### Copyright\n\nCopyright (c) 2021, Jessica A. Nash (The Molecular Sciences Software Institute)\n\n\n#### Acknowledgements\n \nProject based on the \n[Computational Molecular Science Python Cookiecutter](https://github.com/molssi/cookiecutter-cms) version 1.5.\n",
    "bugtrack_url": null,
    "license": "BSD-3-Clause",
    "summary": "seamm_datastore",
    "version": "2024.3.12",
    "project_urls": {
        "Homepage": "https://github.com/molssi-seamm/seamm_datastore"
    },
    "split_keywords": [
        "seamm",
        "datastore",
        "dashboard"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b273a1497079a75dd8e3531477ffb8c1b3b63f88013f5d0697bc08bab15bbee8",
                "md5": "6b750e5b296c4382e51a60de49c681be",
                "sha256": "06aafbc31614163cc671930eb2141ad5cd3da912b81c18492eda91bad32a0536"
            },
            "downloads": -1,
            "filename": "seamm_datastore-2024.3.12-py2.py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "6b750e5b296c4382e51a60de49c681be",
            "packagetype": "bdist_wheel",
            "python_version": "py2.py3",
            "requires_python": null,
            "size": 90021,
            "upload_time": "2024-03-12T19:33:51",
            "upload_time_iso_8601": "2024-03-12T19:33:51.241982Z",
            "url": "https://files.pythonhosted.org/packages/b2/73/a1497079a75dd8e3531477ffb8c1b3b63f88013f5d0697bc08bab15bbee8/seamm_datastore-2024.3.12-py2.py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "bfbc66d005f15a8930996c7fe3a6214ea2458dbb3504b4eede32f9019756216d",
                "md5": "22589e62236729e572991e60059440e7",
                "sha256": "858dd7568559cea169de87ea84a2b7e2dc086e4d115930a4f2830c1ed9723365"
            },
            "downloads": -1,
            "filename": "seamm_datastore-2024.3.12.tar.gz",
            "has_sig": false,
            "md5_digest": "22589e62236729e572991e60059440e7",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 95775,
            "upload_time": "2024-03-12T19:33:52",
            "upload_time_iso_8601": "2024-03-12T19:33:52.492872Z",
            "url": "https://files.pythonhosted.org/packages/bf/bc/66d005f15a8930996c7fe3a6214ea2458dbb3504b4eede32f9019756216d/seamm_datastore-2024.3.12.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-03-12 19:33:52",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "molssi-seamm",
    "github_project": "seamm_datastore",
    "travis_ci": false,
    "coveralls": true,
    "github_actions": true,
    "lcname": "seamm-datastore"
}
        
Elapsed time: 0.21314s