Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/smartlegionlab/climan
Cross-platform config and manager for click console utilities.
https://github.com/smartlegionlab/climan
cli cli-app cli-applications cli-utilities pypi pypi-package pypi-packages python python3 smartlegionlab termux
Last synced: 17 days ago
JSON representation
Cross-platform config and manager for click console utilities.
- Host: GitHub
- URL: https://github.com/smartlegionlab/climan
- Owner: smartlegionlab
- License: bsd-3-clause
- Created: 2021-09-13T10:59:49.000Z (about 3 years ago)
- Default Branch: master
- Last Pushed: 2024-06-16T08:35:51.000Z (6 months ago)
- Last Synced: 2024-10-31T03:22:15.999Z (about 1 month ago)
- Topics: cli, cli-app, cli-applications, cli-utilities, pypi, pypi-package, pypi-packages, python, python3, smartlegionlab, termux
- Language: Python
- Homepage:
- Size: 8.79 KB
- Stars: 3
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- project-awesome - smartlegionlab/climan - Cross-platform config and manager for click console utilities. (Python)
README
# climan
***
[![GitHub top language](https://img.shields.io/github/languages/top/smartlegionlab/climan)](https://github.com/smartlegionlab/climan/)
[![PyPI - Downloads](https://img.shields.io/pypi/dm/climan?label=pypi%20downloads)](https://pypi.org/project/climan/)
[![GitHub release (latest by date)](https://img.shields.io/github/v/release/smartlegionlab/climan)](https://github.com/smartlegionlab/climan/)
[![GitHub](https://img.shields.io/github/license/smartlegionlab/climan?style=flat-square)](https://github.com/smartlegionlab/climan/blob/master/LICENSE)
[![PyPI](https://img.shields.io/pypi/v/climan)](https://pypi.org/project/climan)
[![PyPI - Format](https://img.shields.io/pypi/format/climan)](https://pypi.org/project/climan)
[![GitHub Repo stars](https://img.shields.io/github/stars/smartlegionlab/climan?style=social)](https://github.com/smartlegionlab/climan/)
[![GitHub watchers](https://img.shields.io/github/watchers/smartlegionlab/climan?style=social)](https://github.com/smartlegionlab/climan/)
[![GitHub forks](https://img.shields.io/github/forks/smartlegionlab/climan?style=social)](https://github.com/smartlegionlab/climan/)***
## Short Description:
___climan___ - Cross-platform config and manager for click console utilities.
***
Author and developer: ___A.A. Suvorov___
[![[email protected]](https://img.shields.io/static/v1?label=email&[email protected]&color=blue)](mailto:[email protected])
***
## What is news:
### ___climan v0.2.1___
***
## Help:
### Install and Use:
- `pip install climan`
```python
from climan.managers import ClickManagerMETADATA = {
'name': 'Cli name',
'title': 'Cli title',
'description': 'Cli Description',
'version': '0.0.0',
'author': 'Cli Author',
'email': '[email protected]',
'url': 'https://cliurl.ru',
'donate': 'https://clidonate.ru',
'copyright': 'Cli copyright',
}class CliManager(ClickManager):
def __init__(self, metadata):
super().__init__(metadata)cli_man = CliManager(METADATA)
```***
## Disclaimer of liability:
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.