Metadata-Version: 2.1
Name: dtool
Version: 3.27.0
Summary: dtool command line client for managing data
Author-email: Tjelvar Olsson <tjelvar.olsson@gmail.com>
Project-URL: Documentation, https://dtool.readthedocs.io
Project-URL: Repository, https://github.com/jic-dtool/dtool
Project-URL: Changelog, https://github.com/jic-dtool/dtool/blob/master/CHANGELOG.rst
Description-Content-Type: text/x-rst
License-File: LICENSE.rst
Requires-Dist: dtoolcore ==3.18.3
Requires-Dist: dtool-cli ==0.7.1
Requires-Dist: dtool-create ==0.23.4
Requires-Dist: dtool-info ==0.16.2
Requires-Dist: dtool-symlink ==0.3.1
Requires-Dist: dtool-http ==0.5.1
Requires-Dist: dtool-config ==0.4.1
Requires-Dist: dtool-overlay ==0.3.1
Requires-Dist: dtool-annotation ==0.1.1
Requires-Dist: dtool-tag ==0.1.1
Provides-Extra: docs
Requires-Dist: sphinx ; extra == 'docs'
Requires-Dist: sphinx-rtd-theme ; extra == 'docs'
Provides-Extra: test
Requires-Dist: pytest ; extra == 'test'
Requires-Dist: pytest-cov ; extra == 'test'

dtool: Manage Scientific Data
=============================

.. |dtool| image:: https://github.com/jic-dtool/dtool/blob/master/icons/22x22/dtool_logo.png?raw=True
    :height: 20px
    :target: https://github.com/jic-dtool/dtool

.. |pypi| image:: https://badge.fury.io/py/dtool.svg
   :target: http://badge.fury.io/py/dtool
   :alt: PyPi package

.. |test| image:: https://img.shields.io/github/actions/workflow/status/jic-dtool/dtool/test.yml?branch=master&label=tests
    :target: https://github.com/jic-dtool/dtool/actions/workflows/test.yml

.. |docs| image:: https://readthedocs.org/projects/dtool/badge/?version=latest
   :target: https://readthedocs.org/projects/dtool?badge=latest
   :alt: Documentation Status

|dtool| |pypi| |test| |docs|

*Make your data more resilient, portable and easy to work with by packaging
files & metadata into self contained datasets.*

- Documentation: http://dtool.readthedocs.io
- Paper: https://doi.org/10.7717/peerj.6562
- Free software: MIT License

Overview
--------

dtool is a suite of software for managing scientific data and making it
accessible programmatically. It consists of a command line interface ``dtool``
and a Python API: `dtoolcore <https://github.com/jic-dtool/dtoolcore>`_.

The ``dtool`` command line interface allows one to organise files into datasets
and to move datasets between different storage solutions, for example from
local disk to remote object storage. Importantly it also provides methods to
verify that the transfer has been successful.

The Python API gives complete access to the data and metadata in a dataset.  It
makes it easy to create scripts for processing the items, or a subset of items,
in a dataset. The Python API also allows datasets to be constructed
programmatically.

dtool is extensible, meaning that it is possible to create plugins both for
adding functionality to the command line interface and for creating interfaces
to custom storage backends.

The ``dtool`` Python package is a meta package that installs the packages:

- `dtoolcore <https://github.com/jic-dtool/dtoolcore>`_ - core API
- `dtool-cli <https://github.com/jic-dtool/dtool-cli>`_ - CLI plugin scaffold
- `dtool-annotation <https://github.com/jic-dtool/dtool-annotation>`_ - CLI commands for working with dataset annotations
- `dtool-config <https://github.com/jic-dtool/dtool-config>`_ - CLI commands for configuring dtool
- `dtool-create <https://github.com/jic-dtool/dtool-create>`_ - CLI commands for creating datasets
- `dtool-info <https://github.com/jic-dtool/dtool-info>`_ - CLI commands for getting information about datasets
- `dtool-overlay <https://github.com/jic-dtool/dtool-overlay>`_ - CLI commands for working with per item metadata stored as overlays
- `dtool-symlink <https://github.com/jic-dtool/dtool-symlink>`_ - storage broker interface allowing symlinking to data
- `dtool-http <https://github.com/jic-dtool/dtool-symlink>`_ - storage broker interface allowing read only access to datasets over HTTP


Installation::

    $ pip install dtool

There are support packages for several object storage solutions:

- `dtool-s3 <https://github.com/jic-dtool/dtool-s3>`_ - storage broker interface to S3 object storage
- `dtool-smb <https://github.com/livMatS/dtool-smb>`_ - storage broker interface to smb network share
- `dtool-azure <https://github.com/jic-dtool/dtool-azure>`_ - storage broker interface to Azure Storage
- `dtool-ecs <https://github.com/jic-dtool/dtool-ecs>`_ - storage broker interface to ECS S3 object storage
- `dtool-irods <https://github.com/jic-dtool/dtool-irods>`_ - storage broker interface to iRODS

If you have access to Amazon S3, Microsoft Azure, ECS S3 or iRODS storage you may also want to install support for these::

    $ pip install dtool-s3 dtool-azure dtool-ecs dtool-irods

Usage::

    $ dtool create my-awesome-dataset
    Created proto dataset file:///Users/olssont/my-awesome-dataset
    Next steps:
    1. Add raw data, eg:
       dtool add item my_file.txt file:///Users/olssont/my-awesome-dataset
       Or use your system commands, e.g:
       mv my_data_directory /Users/olssont/my-awesome-dataset/data/
    2. Add descriptive metadata, e.g:
       dtool readme interactive file:///Users/olssont/my-awesome-dataset
    3. Convert the proto dataset into a dataset:
       dtool freeze file:///Users/olssont/my-awesome-dataset

