consolecmdtools


Nameconsolecmdtools JSON
Version 6.4.0 PyPI version JSON
download
home_page
SummaryConsole command tools in Python
upload_time2024-02-29 08:48:59
maintainer
docs_urlNone
author
requires_python>=3.6
licenseMIT License Copyright (c) 2020 Kyan Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
keywords python console command tool
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # PyConsoleCMDTools
![PyPI - Downloads](https://img.shields.io/pypi/dm/consolecmdtools)
![GitHub release](https://img.shields.io/github/v/release/kyan001/PyConsoleCMDTools)
[![GitHub license](https://img.shields.io/github/license/kyan001/PyConsoleCMDTools.svg)](https://github.com/kyan001/PyConsoleCMDTools/blob/master/LICENSE)

## Installation

```sh
pip install consolecmdtools  # install
pip install --upgrade consolecmdtools  # update
python -m consolecmdtools  # examples
```

## Get Started

```python
import consolecmdtools as cct
print(cct.__version__)
```

## Functions

```python
>>> cct.banner("hello, world!")  # Generate banner for text
#######################
#    hello, world!    #
#######################

>>> cct.md5("blah blah blah")  # Return md5 hash for text.
'55e562bfee2bde4f9e71b8885eb5e303'

>>> cct.md5(42)  # Return md5 hash for number.
'a1d0c6e83f027327d8461063f4ac58a6'

>>> cct.md5('file.txt')  # Return md5 hash for file.
'd07aa6ddab4d6d2d2891aa9f3625a5db'

>>> cct.md5('file.txt', force_text=True)  # Force to return the md5 has for text, even the file exists.
'3d8e577bddb17db339eae0b3d9bcf180'

>>> cct.crc32("blah blah blah")  # Return crc32 hash for text.
753353432

>>> cct.crc32(42)  # Return crc32 hash for number.
841265288

>>> cct.crc32('file.txt')  # Return crc32 hash for file.
1030388931

>>> cct.crc32('file.txt', force_text=True)  # Force to return the md5 has for text, even the file exists.
3774289445

>>> cct.main_color('image.jpg')  # Get theme color of image.
(152, 156, 69)  # RGB value

>>> cct.main_color('http://image-url/image', is_url=True)  # Get theme color of web image.
(152, 156, 69)  # RGB value

>>> cct.main_color('image.jpg', scale=500)  # Cost more time to generate a preciser color. default scale is 200.
(152, 156, 69)

>>> cct.main_color('image.jpg', triplet='hex')  # Return color in hex triplet format. default mode is 'rgb'.
'#989C45'

>>> cct.clear_screen()  # Clear the console.

>>> cct.get_py_cmd()  # Get python running command for different OS.
'python3'

>>> cct.run_cmd("echo hello")  # Run console command. If the command failed, a warning message echoed. Returns bool.
*
| __RUN COMMAND__________________________
| (Command) echo hello
hello
`

>>> cct.read_cmd("echo hello")  # Run a command and return the output.
| (_command) echo hello
'hello\n'

>>> cct.read_cmd("echo hello", verbose=False)  # Run a command and return the output without verbose.
'hello\n'

>>> cct.read_cmd("notexist")  # If the command failed, a warning message echoed.
| (_command) echo hello
| (Warn) Command Failed:
'Error Messages'

>>> cct.is_cmd_exist("ls")  # Test if a command is exist.
True

>>> cct.install_package("git")  # Install a package.
True

>>> cct.install_package(name="ping3", manager="pip3")  # Install a package using a different package manager.
True

>>> cct.install_package({
    "Windows": "pypy",
    "Darwin": "python",
    "Linux": "python3"
})  # Install a package using different package names for different OS.
True

>>> cct.install_package({
    "Linux": "python3",
    "*": "python"
})  # Install a package using different package names for different OS with a default one.
True

>>> cct.install_package("git", manager={
    "Windows": "choco",
    "Darwin": "port",
    "Linux": "snap",
    "*": "npm"
})  # Install a package using different package managers for different OS with a default one.

>>> cct.get_path("./file.txt")  # Get the absolute path.
Path('/path/to/file.txt')  # Path Object which is a subclass of str.

>>> cct.get_path("./file.txt").split('/')  # Path Object can be used as str.
['path', 'to', 'file.txt']

>>> cct.get_path("./file.txt").path  # Get the original path.
'./file.txt'

>>> cct.get_path("./file.txt").abs  # Get the absolute path. Same as `get_path("./file.txt")` itself.

>>> cct.get_path("./file.txt").exists  # Test if the path exists.
True

>>> cct.get_path("/path/to/file.txt").basename  # Get the basename of the file or dir.
'file.txt'

>>> cct.get_path("/path/to/file.txt").ext  # Get the extension of the path. If the path is a dir, return ''.
'txt'

>>> cct.get_path("/path/to/file.txt").stem  # Get the name of the path without extension. If the path is a dir, return its basename.
'file'

>>> cct.get_path("/path/to/file.txt").parent  # Get the parent dir path of the file or dir.
'/path/to'

>>> cct.get_path("/path/to/file.txt").parent.basename  # Get the parent dir path's basename of the file or dir.
'to'

>>> cct.select_path()  # Show file dialog to get file path. Additional args pass to tkinter.filedialog.askopenfilename()
'/path/to/file'

>>> cct.select_path(multiple=True)  # Show file dialog to get multiple file paths.
['/path/to/file1', '/path/to/file2']

>>> cct.select_path(dir=True)  # Show file dialog to get dir path.
'/path/to/dir'

>>> cct.bfs_walk("/path/to/root")  # Get all paths in the root dir using Breadth-first search.
['/path/to/root', '/path/to/root/folder', '/path/to/root/folder/file1', '/path/to/root/folder/file2']

>>> cct.get_paths("/path/to/root", filter=lambda path: path.name.startswith("f"))  # Filter paths and return as list[str]
['/path/to/root/folder', '/path/to/root/folder/file1', '/path/to/root/folder/file2']

>>> cct.ls_tree(root="/path/to/root")  # Show folders and files in a tree.
📂 root\
├──📁 folder\
│   ├──📄 file1
│   ├──📄 file2

>>> cct.ls_tree(root="/path/to/root", show_icon=False, ascii=True)  # Show without icons, using ASCII chars.
root/
|-- folder/
|  |-- file1
|  |-- file2

>>> cct.ls_tree(root="/path/to/root", to_visible=lambda path: path.is_dir())  # Show only folders.
📂 root\
├──📁 folder\

>>> cct.ls_tree(root="/path/to/root", to_highlight=lambda path: path.name == "file1")  # Highlight certain file.
📂 root\
├──📁 folder\
│   ├──📄 file1  # highlighted
│   ├──📄 file2

>>> cct.ls_tree(root="/path/to/root", add_suffix=lambda path: "(current)" if pathe.name == "file1" else "")  # Add suffix to path name.
📂 root\
├──📁 folder\
│   ├──📄 file1 (current)
│   ├──📄 file2

>>> cct.show_in_file_manager("/path/to/file")  # Show file in Explorer/Finder/File Manager.

>>> cct.show_in_file_manager("/path/to/file", ask=True)  # Ask before show.

>>> cct.diff("str1", "str2")  # Compare 2 strings, return the list of diffs.
[  # you can use `"\n".join(diff)` to print the diff.
    "-str1",
    "+str2"
]

>>> cct.diff("str1", "str2", meta=True)  # show meta data in the first 3 lines.
[
    "--- <class 'str'>",
    "+++ <class 'str'>",
    "@@ -1 +1 @@",
    "-str1",
    "+str2"
]


>>> cct.diff(["a", "b"], ["a", "b", "c"])  # Compare 2 lists and print diffs.
[
    "+c"
]

>>> cct.diff(["a", "b"], ["a", "b", "c"], context=2)  # Show diffs with 2 extra context lines.
[
    " a",  # context line
    " b",  # context line
    "+c"  # diff
]

>>> cct.diff("/path/to/file1", "/path/to/file2")  # Compare between 2 files.

>>> cct.diff("/path/to/file1", "str")  # Compare between file and str/list.

>>> cct.diff('str', 'str')  # If no diff, return [].
[]

>>> cct.update_file('file', 'http://file-url')  # Update file if the file is not as same as url content.
False  # if already up-to-date.

>>> cct.read_file('file')  # Read file using different encoding automatically.
"file content"

>>> cct.move_file("/path/to/src", "/path/to/dst")  # Move file from src to dst, overwrite if dst already exists.

>>> cct.move_file("/path/to/src", "/path/to/dst", copy=True)  # Copy file from src to dst.

>>> cct.move_file("/path/to/src", "/path/to/dst", backup=True)  # Backup dst file before move or copy.

>>> cct.move_file("/path/to/src", "/path/to/dst", ensure=True)  # Ensure the dst dir exists before move or copy.

>>> cct.move_file("/path/to/src", "/path/to/dst", msgout=print)  # Use `print` to handle output logs.

>>> cct.copy_file("/path/to/src", "/path/to/dst")  # Copy file from src to dst. Same as `move_file(src, dst, copy=True)`.

>>> cct.ajax('http://ajax-url')  # Start a AJAX request.
{'result': 'data'}  # As python dict.

>>> cct.ajax('http://ajax-url', {'data': 'value'})  # AJAX request with param.
{'result': 'data'}

>>> cct.ajax('http://ajax-url', method='post')  # AJAX request using post. default is 'get'.
{'result': 'data'}

>>> if not cct.is_admin():  # Check does the script has admin privileges.
...     cct.runas_admin(__file__)  # run the script with admin privileges.
... else:
...     # your code here
```

            

Raw data

            {
    "_id": null,
    "home_page": "",
    "name": "consolecmdtools",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.6",
    "maintainer_email": "",
    "keywords": "python,console,command,tool",
    "author": "",
    "author_email": "Kyan <kai@kyan001.com>",
    "download_url": "https://files.pythonhosted.org/packages/1f/22/505d8389c22c46c0b61aefcf2c871f41f3c6404e9b88873a3b82fc6b2d9e/consolecmdtools-6.4.0.tar.gz",
    "platform": null,
    "description": "# PyConsoleCMDTools\n![PyPI - Downloads](https://img.shields.io/pypi/dm/consolecmdtools)\n![GitHub release](https://img.shields.io/github/v/release/kyan001/PyConsoleCMDTools)\n[![GitHub license](https://img.shields.io/github/license/kyan001/PyConsoleCMDTools.svg)](https://github.com/kyan001/PyConsoleCMDTools/blob/master/LICENSE)\n\n## Installation\n\n```sh\npip install consolecmdtools  # install\npip install --upgrade consolecmdtools  # update\npython -m consolecmdtools  # examples\n```\n\n## Get Started\n\n```python\nimport consolecmdtools as cct\nprint(cct.__version__)\n```\n\n## Functions\n\n```python\n>>> cct.banner(\"hello, world!\")  # Generate banner for text\n#######################\n#    hello, world!    #\n#######################\n\n>>> cct.md5(\"blah blah blah\")  # Return md5 hash for text.\n'55e562bfee2bde4f9e71b8885eb5e303'\n\n>>> cct.md5(42)  # Return md5 hash for number.\n'a1d0c6e83f027327d8461063f4ac58a6'\n\n>>> cct.md5('file.txt')  # Return md5 hash for file.\n'd07aa6ddab4d6d2d2891aa9f3625a5db'\n\n>>> cct.md5('file.txt', force_text=True)  # Force to return the md5 has for text, even the file exists.\n'3d8e577bddb17db339eae0b3d9bcf180'\n\n>>> cct.crc32(\"blah blah blah\")  # Return crc32 hash for text.\n753353432\n\n>>> cct.crc32(42)  # Return crc32 hash for number.\n841265288\n\n>>> cct.crc32('file.txt')  # Return crc32 hash for file.\n1030388931\n\n>>> cct.crc32('file.txt', force_text=True)  # Force to return the md5 has for text, even the file exists.\n3774289445\n\n>>> cct.main_color('image.jpg')  # Get theme color of image.\n(152, 156, 69)  # RGB value\n\n>>> cct.main_color('http://image-url/image', is_url=True)  # Get theme color of web image.\n(152, 156, 69)  # RGB value\n\n>>> cct.main_color('image.jpg', scale=500)  # Cost more time to generate a preciser color. default scale is 200.\n(152, 156, 69)\n\n>>> cct.main_color('image.jpg', triplet='hex')  # Return color in hex triplet format. default mode is 'rgb'.\n'#989C45'\n\n>>> cct.clear_screen()  # Clear the console.\n\n>>> cct.get_py_cmd()  # Get python running command for different OS.\n'python3'\n\n>>> cct.run_cmd(\"echo hello\")  # Run console command. If the command failed, a warning message echoed. Returns bool.\n*\n| __RUN COMMAND__________________________\n| (Command) echo hello\nhello\n`\n\n>>> cct.read_cmd(\"echo hello\")  # Run a command and return the output.\n| (_command) echo hello\n'hello\\n'\n\n>>> cct.read_cmd(\"echo hello\", verbose=False)  # Run a command and return the output without verbose.\n'hello\\n'\n\n>>> cct.read_cmd(\"notexist\")  # If the command failed, a warning message echoed.\n| (_command) echo hello\n| (Warn) Command Failed:\n'Error Messages'\n\n>>> cct.is_cmd_exist(\"ls\")  # Test if a command is exist.\nTrue\n\n>>> cct.install_package(\"git\")  # Install a package.\nTrue\n\n>>> cct.install_package(name=\"ping3\", manager=\"pip3\")  # Install a package using a different package manager.\nTrue\n\n>>> cct.install_package({\n    \"Windows\": \"pypy\",\n    \"Darwin\": \"python\",\n    \"Linux\": \"python3\"\n})  # Install a package using different package names for different OS.\nTrue\n\n>>> cct.install_package({\n    \"Linux\": \"python3\",\n    \"*\": \"python\"\n})  # Install a package using different package names for different OS with a default one.\nTrue\n\n>>> cct.install_package(\"git\", manager={\n    \"Windows\": \"choco\",\n    \"Darwin\": \"port\",\n    \"Linux\": \"snap\",\n    \"*\": \"npm\"\n})  # Install a package using different package managers for different OS with a default one.\n\n>>> cct.get_path(\"./file.txt\")  # Get the absolute path.\nPath('/path/to/file.txt')  # Path Object which is a subclass of str.\n\n>>> cct.get_path(\"./file.txt\").split('/')  # Path Object can be used as str.\n['path', 'to', 'file.txt']\n\n>>> cct.get_path(\"./file.txt\").path  # Get the original path.\n'./file.txt'\n\n>>> cct.get_path(\"./file.txt\").abs  # Get the absolute path. Same as `get_path(\"./file.txt\")` itself.\n\n>>> cct.get_path(\"./file.txt\").exists  # Test if the path exists.\nTrue\n\n>>> cct.get_path(\"/path/to/file.txt\").basename  # Get the basename of the file or dir.\n'file.txt'\n\n>>> cct.get_path(\"/path/to/file.txt\").ext  # Get the extension of the path. If the path is a dir, return ''.\n'txt'\n\n>>> cct.get_path(\"/path/to/file.txt\").stem  # Get the name of the path without extension. If the path is a dir, return its basename.\n'file'\n\n>>> cct.get_path(\"/path/to/file.txt\").parent  # Get the parent dir path of the file or dir.\n'/path/to'\n\n>>> cct.get_path(\"/path/to/file.txt\").parent.basename  # Get the parent dir path's basename of the file or dir.\n'to'\n\n>>> cct.select_path()  # Show file dialog to get file path. Additional args pass to tkinter.filedialog.askopenfilename()\n'/path/to/file'\n\n>>> cct.select_path(multiple=True)  # Show file dialog to get multiple file paths.\n['/path/to/file1', '/path/to/file2']\n\n>>> cct.select_path(dir=True)  # Show file dialog to get dir path.\n'/path/to/dir'\n\n>>> cct.bfs_walk(\"/path/to/root\")  # Get all paths in the root dir using Breadth-first search.\n['/path/to/root', '/path/to/root/folder', '/path/to/root/folder/file1', '/path/to/root/folder/file2']\n\n>>> cct.get_paths(\"/path/to/root\", filter=lambda path: path.name.startswith(\"f\"))  # Filter paths and return as list[str]\n['/path/to/root/folder', '/path/to/root/folder/file1', '/path/to/root/folder/file2']\n\n>>> cct.ls_tree(root=\"/path/to/root\")  # Show folders and files in a tree.\n\ud83d\udcc2 root\\\n\u251c\u2500\u2500\ud83d\udcc1 folder\\\n\u2502   \u251c\u2500\u2500\ud83d\udcc4 file1\n\u2502   \u251c\u2500\u2500\ud83d\udcc4 file2\n\n>>> cct.ls_tree(root=\"/path/to/root\", show_icon=False, ascii=True)  # Show without icons, using ASCII chars.\nroot/\n|-- folder/\n|  |-- file1\n|  |-- file2\n\n>>> cct.ls_tree(root=\"/path/to/root\", to_visible=lambda path: path.is_dir())  # Show only folders.\n\ud83d\udcc2 root\\\n\u251c\u2500\u2500\ud83d\udcc1 folder\\\n\n>>> cct.ls_tree(root=\"/path/to/root\", to_highlight=lambda path: path.name == \"file1\")  # Highlight certain file.\n\ud83d\udcc2 root\\\n\u251c\u2500\u2500\ud83d\udcc1 folder\\\n\u2502   \u251c\u2500\u2500\ud83d\udcc4 file1  # highlighted\n\u2502   \u251c\u2500\u2500\ud83d\udcc4 file2\n\n>>> cct.ls_tree(root=\"/path/to/root\", add_suffix=lambda path: \"(current)\" if pathe.name == \"file1\" else \"\")  # Add suffix to path name.\n\ud83d\udcc2 root\\\n\u251c\u2500\u2500\ud83d\udcc1 folder\\\n\u2502   \u251c\u2500\u2500\ud83d\udcc4 file1 (current)\n\u2502   \u251c\u2500\u2500\ud83d\udcc4 file2\n\n>>> cct.show_in_file_manager(\"/path/to/file\")  # Show file in Explorer/Finder/File Manager.\n\n>>> cct.show_in_file_manager(\"/path/to/file\", ask=True)  # Ask before show.\n\n>>> cct.diff(\"str1\", \"str2\")  # Compare 2 strings, return the list of diffs.\n[  # you can use `\"\\n\".join(diff)` to print the diff.\n    \"-str1\",\n    \"+str2\"\n]\n\n>>> cct.diff(\"str1\", \"str2\", meta=True)  # show meta data in the first 3 lines.\n[\n    \"--- <class 'str'>\",\n    \"+++ <class 'str'>\",\n    \"@@ -1 +1 @@\",\n    \"-str1\",\n    \"+str2\"\n]\n\n\n>>> cct.diff([\"a\", \"b\"], [\"a\", \"b\", \"c\"])  # Compare 2 lists and print diffs.\n[\n    \"+c\"\n]\n\n>>> cct.diff([\"a\", \"b\"], [\"a\", \"b\", \"c\"], context=2)  # Show diffs with 2 extra context lines.\n[\n    \" a\",  # context line\n    \" b\",  # context line\n    \"+c\"  # diff\n]\n\n>>> cct.diff(\"/path/to/file1\", \"/path/to/file2\")  # Compare between 2 files.\n\n>>> cct.diff(\"/path/to/file1\", \"str\")  # Compare between file and str/list.\n\n>>> cct.diff('str', 'str')  # If no diff, return [].\n[]\n\n>>> cct.update_file('file', 'http://file-url')  # Update file if the file is not as same as url content.\nFalse  # if already up-to-date.\n\n>>> cct.read_file('file')  # Read file using different encoding automatically.\n\"file content\"\n\n>>> cct.move_file(\"/path/to/src\", \"/path/to/dst\")  # Move file from src to dst, overwrite if dst already exists.\n\n>>> cct.move_file(\"/path/to/src\", \"/path/to/dst\", copy=True)  # Copy file from src to dst.\n\n>>> cct.move_file(\"/path/to/src\", \"/path/to/dst\", backup=True)  # Backup dst file before move or copy.\n\n>>> cct.move_file(\"/path/to/src\", \"/path/to/dst\", ensure=True)  # Ensure the dst dir exists before move or copy.\n\n>>> cct.move_file(\"/path/to/src\", \"/path/to/dst\", msgout=print)  # Use `print` to handle output logs.\n\n>>> cct.copy_file(\"/path/to/src\", \"/path/to/dst\")  # Copy file from src to dst. Same as `move_file(src, dst, copy=True)`.\n\n>>> cct.ajax('http://ajax-url')  # Start a AJAX request.\n{'result': 'data'}  # As python dict.\n\n>>> cct.ajax('http://ajax-url', {'data': 'value'})  # AJAX request with param.\n{'result': 'data'}\n\n>>> cct.ajax('http://ajax-url', method='post')  # AJAX request using post. default is 'get'.\n{'result': 'data'}\n\n>>> if not cct.is_admin():  # Check does the script has admin privileges.\n...     cct.runas_admin(__file__)  # run the script with admin privileges.\n... else:\n...     # your code here\n```\n",
    "bugtrack_url": null,
    "license": "MIT License  Copyright (c) 2020 Kyan  Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:  The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.  THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ",
    "summary": "Console command tools in Python",
    "version": "6.4.0",
    "project_urls": {
        "Homepage": "https://github.com/kyan001/PyConsoleCMDTools",
        "Issue Tracker": "https://github.com/kyan001/PyConsoleCMDTools/issues",
        "Source Code": "https://github.com/kyan001/PyConsoleCMDTools"
    },
    "split_keywords": [
        "python",
        "console",
        "command",
        "tool"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9bf23d4d1e64e91cbd36a4be92e85f1b3871dfeab05f5816c007ea807a31f25d",
                "md5": "bc87aebf710646e4067b024bce311ae6",
                "sha256": "c3830635e134e9e78b66dd17fbf58e92b3b9bee96dd2773b616a24ff444b07cf"
            },
            "downloads": -1,
            "filename": "consolecmdtools-6.4.0-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "bc87aebf710646e4067b024bce311ae6",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.6",
            "size": 14972,
            "upload_time": "2024-02-29T08:48:56",
            "upload_time_iso_8601": "2024-02-29T08:48:56.407459Z",
            "url": "https://files.pythonhosted.org/packages/9b/f2/3d4d1e64e91cbd36a4be92e85f1b3871dfeab05f5816c007ea807a31f25d/consolecmdtools-6.4.0-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1f22505d8389c22c46c0b61aefcf2c871f41f3c6404e9b88873a3b82fc6b2d9e",
                "md5": "e95b62aa8399ad4ebde4f2cc056160e5",
                "sha256": "0d3b660042d4ce23e05f834a92549940df133b435a5331d440214992efafc958"
            },
            "downloads": -1,
            "filename": "consolecmdtools-6.4.0.tar.gz",
            "has_sig": false,
            "md5_digest": "e95b62aa8399ad4ebde4f2cc056160e5",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.6",
            "size": 19983,
            "upload_time": "2024-02-29T08:48:59",
            "upload_time_iso_8601": "2024-02-29T08:48:59.168077Z",
            "url": "https://files.pythonhosted.org/packages/1f/22/505d8389c22c46c0b61aefcf2c871f41f3c6404e9b88873a3b82fc6b2d9e/consolecmdtools-6.4.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-02-29 08:48:59",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "kyan001",
    "github_project": "PyConsoleCMDTools",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": false,
    "lcname": "consolecmdtools"
}
        
Elapsed time: 0.21557s