Skip to content

Latest commit

 

History

History
100 lines (71 loc) · 3.79 KB

README.rst

File metadata and controls

100 lines (71 loc) · 3.79 KB

CmdKit

A library for developing command-line applications in Python.

License

PyPI Version

Python Versions

Documentation

Downloads

Pytest

The cmdkit library implements a few common patterns needed by well-formed command-line applications in Python. It only touches a few concepts but it implements them well. The idea is to reduce the boilerplate needed to get a full featured CLI off the ground. Applications developed using cmdkit are easy to implement, easy to maintain, and easy to understand.

Features

  • An Interface class for parsing command-line arguments.
  • An Application class that provides the boilerplate for a good entry-point.
  • A Configuration class built on top of a recursive Namespace class that provides automatic depth-first merging of dictionaries from local files, as well as automatic environment variable discovery and type-coercion.

Installation

CmdKit is built on Python 3.7+ and can be installed using Pip.

➜ pip install cmdkit

Getting Started

See the Tutorial for examples.

You can also checkout how cmdkit is being used by other projects.

Project Description
REFITT Recommender Engine for Intelligent Transient Tracking

hyper-shell

Hyper-shell is an elegant, cross-platform, high-performance computing utility for processing shell commands over a distributed, asynchronous queue.

delete-cli A simple, cross-platform, command-line move-to-trash.

Documentation

Documentation for getting started, the API, and common recipes are available at cmdkit.readthedocs.io.

Contributions

Contributions are welcome in the form of suggestions for additional features, pull requests with new features or bug fixes, etc. If you find bugs or have questions, open an Issue here. If and when the project grows, a code of conduct will be provided along side a more comprehensive set of guidelines for contributing; until then, just be nice.