0Hughman0 / Cassini

Turn Jupyter Lab with Python into an electronic lab notebook (ELN)

Home Page:https://0hughman0.github.io/Cassini/latest/quickstart.html

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Cassini

Note Cassini is in it's alpha development stage, so things may not work perfectly - tell us about problems so we can fix them!

An electronic laboratory notebook (ELN), built inside Jupyter Lab.

Cassini's goal is to help you explore, analyse and organise your data in an environment that's familiar.

Screenshot

Features

  • Structures your project into an easy to navigate hierarchy of workpackages, experiments, samples and datasets.
  • Allows retrieval of data by name e.g. project['WP3.2f-XRD'] / 'XRD_data.csv.
  • Create new sample, experiment (etc.) notebooks through custom dialogs.
  • Create notebook templates for standardised proceedures.
  • Browse and explore your project through a custom browser, including previewing cell outputs, such as plots in-browser.
  • No magic! Everything is stored in regular human navigatable folders, cloud backups etc. work as expected.

Check out the demo binder for a walkthrough of features (note this can take a little while to load):

Binder

Installation and Setup

> pip install cassini

Create a project.py:

# project.py
from cassini import Project, DEFAULT_TIERS
from cassini import jlgui

project = Project(DEFAULT_TIERS, __file__)
jlgui.extend_project(project)

if __name__ == '__main__':
    project.launch()

And launch it:

> python project.py

Head to Quickstart for more info.

Contributing

Contributing guidelines are found here.

This includes development installation instructions and codebase orientation.

About

Turn Jupyter Lab with Python into an electronic lab notebook (ELN)

https://0hughman0.github.io/Cassini/latest/quickstart.html

License:GNU General Public License v3.0


Languages

Language:Jupyter Notebook 98.9%Language:Python 1.1%Language:Batchfile 0.0%Language:Makefile 0.0%Language:Shell 0.0%