climanu


Nameclimanu JSON
Version 0.0.2 PyPI version JSON
download
home_pageNone
SummaryA cli project to make many type of chosser menu
upload_time2024-10-31 12:00:52
maintainerNone
docs_urlNone
authorHui Hola
requires_python>=3.11.8
licenseNone
keywords cli app create you own simple manu python3
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # climanu
## climanu the cli menu creater


**description :** climanu used make cli menu like github repo have 

# installation
```
pip install climanu
```

# Example 1

```python
import climanu

mymanu=climanu.SimpleManu()

mymanu.setManu(options=["option 1","option2","option3"],title="my manu",console_text="Select",context="Chose any one")

mymanu.showManu()

print(mymanu.getUserinput())
```

# Example 2

```python
import climanu

mymanu=climanu.TableManu()

mymanu.setManu(columns=["no.","options"],
rows=[["1","apple"],["2","mango"],["3","orange"]],
title="Main Manu",
console_text="Select any one")

mymanu.showManu()
print(mymanu.getUserinput())
print(mymanu.getUserinputRow())
```

**auther**: HuiHola

            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "climanu",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.11.8",
    "maintainer_email": null,
    "keywords": "cli app, create you own simple manu, python3",
    "author": "Hui Hola",
    "author_email": null,
    "download_url": "https://files.pythonhosted.org/packages/17/40/89732f6c19d1e1acbdac41e3647050db6dc88dc2fc484c50e70fa67cd8f2/climanu-0.0.2.tar.gz",
    "platform": null,
    "description": "# climanu\n## climanu the cli menu creater\n\n\n**description :** climanu used make cli menu like github repo have \n\n# installation\n```\npip install climanu\n```\n\n# Example 1\n\n```python\nimport climanu\n\nmymanu=climanu.SimpleManu()\n\nmymanu.setManu(options=[\"option 1\",\"option2\",\"option3\"],title=\"my manu\",console_text=\"Select\",context=\"Chose any one\")\n\nmymanu.showManu()\n\nprint(mymanu.getUserinput())\n```\n\n# Example 2\n\n```python\nimport climanu\n\nmymanu=climanu.TableManu()\n\nmymanu.setManu(columns=[\"no.\",\"options\"],\nrows=[[\"1\",\"apple\"],[\"2\",\"mango\"],[\"3\",\"orange\"]],\ntitle=\"Main Manu\",\nconsole_text=\"Select any one\")\n\nmymanu.showManu()\nprint(mymanu.getUserinput())\nprint(mymanu.getUserinputRow())\n```\n\n**auther**: HuiHola\n",
    "bugtrack_url": null,
    "license": null,
    "summary": "A cli project to make many type of chosser menu",
    "version": "0.0.2",
    "project_urls": null,
    "split_keywords": [
        "cli app",
        " create you own simple manu",
        " python3"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "fe6fd4ae87c6d7205de0ee636f8b4842b81875265830215afc56463373c7166c",
                "md5": "d4b7091b0c7a0ebb725348334f763ed1",
                "sha256": "6f32447d1cafc41377a311a49812e674dc2a95488f565b41f52c6dd276b6ee26"
            },
            "downloads": -1,
            "filename": "climanu-0.0.2-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "d4b7091b0c7a0ebb725348334f763ed1",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.11.8",
            "size": 2936,
            "upload_time": "2024-10-31T12:00:49",
            "upload_time_iso_8601": "2024-10-31T12:00:49.745972Z",
            "url": "https://files.pythonhosted.org/packages/fe/6f/d4ae87c6d7205de0ee636f8b4842b81875265830215afc56463373c7166c/climanu-0.0.2-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "174089732f6c19d1e1acbdac41e3647050db6dc88dc2fc484c50e70fa67cd8f2",
                "md5": "8aa919527014dae6ee07d7edaf9d879c",
                "sha256": "79a2bc2692aaf68249fe8b769ba21a53083aabb522c98d5930f96e5931933bd3"
            },
            "downloads": -1,
            "filename": "climanu-0.0.2.tar.gz",
            "has_sig": false,
            "md5_digest": "8aa919527014dae6ee07d7edaf9d879c",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.11.8",
            "size": 2495,
            "upload_time": "2024-10-31T12:00:52",
            "upload_time_iso_8601": "2024-10-31T12:00:52.777502Z",
            "url": "https://files.pythonhosted.org/packages/17/40/89732f6c19d1e1acbdac41e3647050db6dc88dc2fc484c50e70fa67cd8f2/climanu-0.0.2.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-10-31 12:00:52",
    "github": false,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "lcname": "climanu"
}
        
Elapsed time: 1.20605s