Skip to main content

No project description provided

Project description

Documentation Status Tests

EspressoDB

EspressoDB is a Python framework designed to organize (relational) data without loosing flexibility. It's objective is to be intuitve and fast.

More specifically, EspressoDB is build 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 to 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 given entry and use it for computations
    eigs, vecs = np.linalg.eigh(hamiltonian.matrix)
    
    Instances of a models class are regular classes in Python. You can provide additional class 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 webpages use a Python API as well, this means that 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 challenge we encountered where

  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.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

espressodb-0.2.1.tar.gz (1.4 MB view hashes)

Uploaded Source

Built Distribution

espressodb-0.2.1-py3-none-any.whl (1.5 MB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page