Data management command line tool: dtool.
Project description
Data management command line tool: dtool.
Overview
The dtool-cli python package provides a skeleton command line interface to dtool that other “dtool” command line packages can be plugged into.
It makes use of click and click-plugins.
Creating a plugin
The dtool-cli plug-in system exposes name space dtool.cli for registering commands.
To create a dtool-cli plug-in, create a Python package and register the function of interest in the setup.py file. Below is the content of a hypothetical dtool_create/__init__.py file:
import click @click.command() def create(): print("Creating dataset...") @click.command() def freeze(): print("Freezing dataset...")
To create an entry point for this function add the below in the setup.py:
from setuptools import setup setup( ... entry_points={ "dtool.cli": [ "create=dtool_create:create", "freeze=dtool_create:freeze", ], }, ... )
Installation
To install the dtool-cli package.
cd dtool-cli
python setup.py install
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
File details
Details for the file dtool-cli-0.7.1.tar.gz
.
File metadata
- Download URL: dtool-cli-0.7.1.tar.gz
- Upload date:
- Size: 4.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/52.0.0.post20210125 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.9.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2664750dd76ece7d41e8aa7288cda66aef2f04eb4d39dcd13484fc1a193d3385 |
|
MD5 | d1e7153698324005be0037f55c071507 |
|
BLAKE2b-256 | 0ddd3d28c3a86a43ea253df0e3afaa1a4dd16c6f249cdd101ca7787f6d99cfe9 |