climan


Namecliman JSON
Version 0.2.1 PyPI version JSON
download
home_pagehttps://github.com/smartlegionlab/climan/
SummaryCross-platform config and manager for click console utilities.
upload_time2024-06-16 08:35:18
maintainerNone
docs_urlNone
authorA.A. Suvorov
requires_python>=3.6
licenseBSD 3-Clause License
keywords climan click click manager
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # 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___

[![smartlegiondev@gmail.com](https://img.shields.io/static/v1?label=email&message=smartlegiondev@gmail.com&color=blue)](mailto:mysmartlegionlab@ya.ru)

***

## What is news:

### ___climan v0.2.1___

***

## Help:

### Install and Use:

- `pip install climan`

```python
from climan.managers import ClickManager

METADATA = {
    'name': 'Cli name',
    'title': 'Cli title',
    'description': 'Cli Description',
    'version': '0.0.0',
    'author': 'Cli Author',
    'email': 'cli@email.com',
    '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.

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/smartlegionlab/climan/",
    "name": "climan",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.6",
    "maintainer_email": null,
    "keywords": "climan, click, click manager",
    "author": "A.A. Suvorov",
    "author_email": "smartlegiondev@gmail.com",
    "download_url": "https://files.pythonhosted.org/packages/d5/42/15b23aa746ec82f3032475342842bb46b4b886dbd6e2eb271ab2a9bcf970/climan-0.2.1.tar.gz",
    "platform": null,
    "description": "# climan\n\n***\n\n[![GitHub top language](https://img.shields.io/github/languages/top/smartlegionlab/climan)](https://github.com/smartlegionlab/climan/)\n[![PyPI - Downloads](https://img.shields.io/pypi/dm/climan?label=pypi%20downloads)](https://pypi.org/project/climan/)\n[![GitHub release (latest by date)](https://img.shields.io/github/v/release/smartlegionlab/climan)](https://github.com/smartlegionlab/climan/)\n[![GitHub](https://img.shields.io/github/license/smartlegionlab/climan?style=flat-square)](https://github.com/smartlegionlab/climan/blob/master/LICENSE)\n[![PyPI](https://img.shields.io/pypi/v/climan)](https://pypi.org/project/climan)\n[![PyPI - Format](https://img.shields.io/pypi/format/climan)](https://pypi.org/project/climan)\n[![GitHub Repo stars](https://img.shields.io/github/stars/smartlegionlab/climan?style=social)](https://github.com/smartlegionlab/climan/)\n[![GitHub watchers](https://img.shields.io/github/watchers/smartlegionlab/climan?style=social)](https://github.com/smartlegionlab/climan/)\n[![GitHub forks](https://img.shields.io/github/forks/smartlegionlab/climan?style=social)](https://github.com/smartlegionlab/climan/)\n\n***\n\n## Short Description:\n\n___climan___ - Cross-platform config and manager for click console utilities.\n\n***\n\nAuthor and developer: ___A.A. Suvorov___\n\n[![smartlegiondev@gmail.com](https://img.shields.io/static/v1?label=email&message=smartlegiondev@gmail.com&color=blue)](mailto:mysmartlegionlab@ya.ru)\n\n***\n\n## What is news:\n\n### ___climan v0.2.1___\n\n***\n\n## Help:\n\n### Install and Use:\n\n- `pip install climan`\n\n```python\nfrom climan.managers import ClickManager\n\nMETADATA = {\n    'name': 'Cli name',\n    'title': 'Cli title',\n    'description': 'Cli Description',\n    'version': '0.0.0',\n    'author': 'Cli Author',\n    'email': 'cli@email.com',\n    'url': 'https://cliurl.ru',\n    'donate': 'https://clidonate.ru',\n    'copyright': 'Cli copyright',\n}\n\nclass CliManager(ClickManager):\n    def __init__(self, metadata):\n        super().__init__(metadata)\n\ncli_man = CliManager(METADATA)\n```\n\n***\n\n## Disclaimer of liability:\n\n    THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\"\n    AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\n    IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\n    DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE\n    FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\n    DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\n    SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\n    CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\n    OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\n    OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n",
    "bugtrack_url": null,
    "license": "BSD 3-Clause License",
    "summary": "Cross-platform config and manager for click console utilities.",
    "version": "0.2.1",
    "project_urls": {
        "Documentation": "https://github.com/smartlegionlab/climan/blob/master/README.md",
        "Homepage": "https://github.com/smartlegionlab/climan/",
        "Release notes": "https://github.com/smartlegionlab/climan/releases"
    },
    "split_keywords": [
        "climan",
        " click",
        " click manager"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e6c6022443f4d950c1bdd63f2831d9cef81953d5efc028d77fb0a1174010af96",
                "md5": "a706dff2c30cc3d046b0500a5b125ea2",
                "sha256": "65d59f8473b7e86d68fee3eeda3f59cf2203f89f48e56adeffa5da2d627d3ce7"
            },
            "downloads": -1,
            "filename": "climan-0.2.1-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "a706dff2c30cc3d046b0500a5b125ea2",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.6",
            "size": 5228,
            "upload_time": "2024-06-16T08:35:16",
            "upload_time_iso_8601": "2024-06-16T08:35:16.874379Z",
            "url": "https://files.pythonhosted.org/packages/e6/c6/022443f4d950c1bdd63f2831d9cef81953d5efc028d77fb0a1174010af96/climan-0.2.1-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d54215b23aa746ec82f3032475342842bb46b4b886dbd6e2eb271ab2a9bcf970",
                "md5": "5a584c7453c410a1a8ba312258487c96",
                "sha256": "18b1536d0b2a179937addcb648e8509922fa82f4397373adaa1191bb387ea7e5"
            },
            "downloads": -1,
            "filename": "climan-0.2.1.tar.gz",
            "has_sig": false,
            "md5_digest": "5a584c7453c410a1a8ba312258487c96",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.6",
            "size": 4435,
            "upload_time": "2024-06-16T08:35:18",
            "upload_time_iso_8601": "2024-06-16T08:35:18.761242Z",
            "url": "https://files.pythonhosted.org/packages/d5/42/15b23aa746ec82f3032475342842bb46b4b886dbd6e2eb271ab2a9bcf970/climan-0.2.1.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-06-16 08:35:18",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "smartlegionlab",
    "github_project": "climan",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": false,
    "requirements": [],
    "tox": true,
    "lcname": "climan"
}
        
Elapsed time: 0.28025s