ixjlyons / espressodb

Science database interface using Django as the content manager.

Home Page:https://espressodb.readthedocs.io

Repository from Github https://github.comixjlyons/espressodbRepository from Github https://github.comixjlyons/espressodb

Python Version PyPI Version Tests Documentation Status

EspressoDB

EspressoDB is a Python framework designed to organize (relational) data without losing flexibility. Its objective is to be intuitive and fast.

More specifically, EspressoDB is built on top of the Object-Relational Mapping web framework Django and adds additional convenience functionalities to easily set up your project.

What does EspressoDB provide?

EspressoDB provides an easy to use database interface which helps you make educated decisions fast.

Once you have created your Python project (e.g., my_project) with EspressoDB

  • you can use it in all your Python apps to query your data. For example,
    import numpy as np
    from my_project.hamiltonian.models import Contact as ContactHamiltonian
    
    # Ask the database for specific entries
    hamiltonian = ContactHamiltonian.objects.filter(n_sites=20).first()
    
    # Use class methods for an intuitive interface
    ## Print a formatted summary of the table entry
    print(hamiltonian)
    
    ## Allocate an actual matrix for the given entry and use it in computations
    eigs, vecs = np.linalg.eigh(hamiltonian.matrix)
    models classes are regular classes in Python. They can provide additional methods for convenience. Also, they know how to talk to the database, e.g., you can query (read) and update (write) your data to a central database.
  • you can generate web views which summarize your tables and data. Docpage example Because the web pages use a Python API as well, you can completely customize views with code you have already developed. E.g., you can automate plots and display summaries in your browser. If you want to, you can also make your web app public (with different layers of accessibility) and share results with others.

See also the Documentation for more detailed usage instructions.

How to install it?

EspressoDB can be installed via pip:

pip install [--user] espressodb

Run the Tests

Since EspressoDB is about creating projects, the tests are implemented for the example project. To run the tests, clone this repo, install the dependencies:

pip install .
pip install -r requirements-dev.txt
pip install -r example/my_project/requirements.txt

and run pytest (or the regular test) in example/my_project:

cd example/my_project
pytest [--cov=espressodb]

What's the story behind it?

EspressoDB was developed when we created LatteDB -- a database for organizing Lattice Quantum Chromodynamics research. We intended to create a database for several purposes, e.g. to optimize the scheduling of architecture-dependent many-node jobs and to help in the eventual analysis process. For this reason, we started to abstract our thinking of how to organize physics objects.

It was the goal to have easily sharable and completely reproducible snapshots of our workflow while being flexible and not restricting ourselves too much -- in the end science is full of surprises. The challenges we encountered were:

  1. How can we program a table structure which can be easily extended in the future?
  2. How do we write a database such that users not familiar with the database concept can start using this tool with minimal effort?

The core module of LatteDB, EspressoDB, is trying to address those challenges.

Who is responsible for it?

License

BSD 3-Clause License. See also the LICENSE file.

About

Science database interface using Django as the content manager.

https://espressodb.readthedocs.io

License:BSD 3-Clause "New" or "Revised" License


Languages

Language:Python 81.6%Language:HTML 9.5%Language:TeX 7.4%Language:Makefile 0.6%Language:CSS 0.6%Language:Batchfile 0.4%