pygeonhole-cli


Namepygeonhole-cli JSON
Version 1.0.0 PyPI version JSON
download
home_page
Summarypython cli program to organize files
upload_time2024-01-08 22:35:15
maintainer
docs_urlNone
author
requires_python>=3.8
licenseMIT License Copyright (c) 2021 betterthan-yesterday 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 typer cli file
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # pygeonhole-cli

pygeonhole-cli is a convenient python package that can 
list, sort, and customize the contents of the current 
directory and export the display to a new directory 
directly from the command line.

## Usage

### To get help with command-line arguments
```
pygeonhole-cli --help
```

### Initialize pygeonhole-cli databases
```
pygeonhole-cli init
```

### Example output
```
pygeonhole-cli show -d
```
```
/Users/betterthan-yesterday/pygeonhole-cli:

#  | Name                     | Mode       | Last Modified       | Size | Ext.  |
---------------------------------------------------------------------------------
1 | tests/                   | drwxr-xr-x | 2024-01-05 18:19:26 | --   | --    |
2 | pygeonhole/              | drwxr-xr-x | 2024-01-05 18:15:43 | --   | --    |
3 | requirements.txt         | -rw-r--r-- | 2024-01-05 18:11:00 | 61   | .txt  |
4 | pyproject.toml           | -rw-r--r-- | 2024-01-07 22:07:33 | 788  | .toml |
5 | README.md                | -rw-r--r-- | 2024-01-05 18:14:04 | 54   | .md   |
6 | setup.py                 | -rw-r--r-- | 2024-01-07 22:56:50 | 1046 | .py   |
7 | LICENSE.txt              | -rw-r--r-- | 2024-01-07 22:08:00 | 1076 | .txt  |
---------------------------------------------------------------------------------
```

```
pygeonhole-cli sort Name
```
```
/Users/betterthan-yesterday/pygeonhole-cli:

#  | Name                     | Mode       | Last Modified       | Size | Ext.  |
---------------------------------------------------------------------------------
1 | pygeonhole/              | drwxr-xr-x | 2024-01-05 18:15:43 | --   | --    |
2 | tests/                   | drwxr-xr-x | 2024-01-05 18:19:26 | --   | --    |
3 | LICENSE.txt              | -rw-r--r-- | 2024-01-07 22:08:00 | 1076 | .txt  |
4 | README.md                | -rw-r--r-- | 2024-01-05 18:14:04 | 54   | .md   |
5 | pyproject.toml           | -rw-r--r-- | 2024-01-07 22:07:33 | 788  | .toml |
6 | requirements.txt         | -rw-r--r-- | 2024-01-05 18:11:00 | 61   | .txt  |
7 | setup.py                 | -rw-r--r-- | 2024-01-07 22:56:50 | 1046 | .py   |
---------------------------------------------------------------------------------
```

### Disclaimer

It is recommended that you install the package in a local
virtual env.

First, create an env. 
```sh
python3 -m venv env_for_pyhcli
```

activate that env

```sh
source env_for_pyhcli/bin/activate
```

and then pip install.

## Installation

The current stable version of pygeonhole-cli is available on PyPI and
can be installed by running `pip install pygeonhole-cli`.

Other sources:

- PyPI: 
- GitHub: 

Note: Compatibility with Windows not yet tested.

## Meta

William Pol - polwilliam0@gmail.com

Distributed under the MIT license. See LICENSE for more information.

https://github.com/bettertha-yesterday/

            

Raw data

            {
    "_id": null,
    "home_page": "",
    "name": "pygeonhole-cli",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.8",
    "maintainer_email": "",
    "keywords": "typer,cli,file",
    "author": "",
    "author_email": "William Pol <polwilliam0@gmail.com>",
    "download_url": "https://files.pythonhosted.org/packages/d6/db/4d2f07359386afcd60d693d195d961915dab583361e26f01ab7fee5713c6/pygeonhole-cli-1.0.0.tar.gz",
    "platform": null,
    "description": "# pygeonhole-cli\n\npygeonhole-cli is a convenient python package that can \nlist, sort, and customize the contents of the current \ndirectory and export the display to a new directory \ndirectly from the command line.\n\n## Usage\n\n### To get help with command-line arguments\n```\npygeonhole-cli --help\n```\n\n### Initialize pygeonhole-cli databases\n```\npygeonhole-cli init\n```\n\n### Example output\n```\npygeonhole-cli show -d\n```\n```\n/Users/betterthan-yesterday/pygeonhole-cli:\n\n#  | Name                     | Mode       | Last Modified       | Size | Ext.  |\n---------------------------------------------------------------------------------\n1 | tests/                   | drwxr-xr-x | 2024-01-05 18:19:26 | --   | --    |\n2 | pygeonhole/              | drwxr-xr-x | 2024-01-05 18:15:43 | --   | --    |\n3 | requirements.txt         | -rw-r--r-- | 2024-01-05 18:11:00 | 61   | .txt  |\n4 | pyproject.toml           | -rw-r--r-- | 2024-01-07 22:07:33 | 788  | .toml |\n5 | README.md                | -rw-r--r-- | 2024-01-05 18:14:04 | 54   | .md   |\n6 | setup.py                 | -rw-r--r-- | 2024-01-07 22:56:50 | 1046 | .py   |\n7 | LICENSE.txt              | -rw-r--r-- | 2024-01-07 22:08:00 | 1076 | .txt  |\n---------------------------------------------------------------------------------\n```\n\n```\npygeonhole-cli sort Name\n```\n```\n/Users/betterthan-yesterday/pygeonhole-cli:\n\n#  | Name                     | Mode       | Last Modified       | Size | Ext.  |\n---------------------------------------------------------------------------------\n1 | pygeonhole/              | drwxr-xr-x | 2024-01-05 18:15:43 | --   | --    |\n2 | tests/                   | drwxr-xr-x | 2024-01-05 18:19:26 | --   | --    |\n3 | LICENSE.txt              | -rw-r--r-- | 2024-01-07 22:08:00 | 1076 | .txt  |\n4 | README.md                | -rw-r--r-- | 2024-01-05 18:14:04 | 54   | .md   |\n5 | pyproject.toml           | -rw-r--r-- | 2024-01-07 22:07:33 | 788  | .toml |\n6 | requirements.txt         | -rw-r--r-- | 2024-01-05 18:11:00 | 61   | .txt  |\n7 | setup.py                 | -rw-r--r-- | 2024-01-07 22:56:50 | 1046 | .py   |\n---------------------------------------------------------------------------------\n```\n\n### Disclaimer\n\nIt is recommended that you install the package in a local\nvirtual env.\n\nFirst, create an env. \n```sh\npython3 -m venv env_for_pyhcli\n```\n\nactivate that env\n\n```sh\nsource env_for_pyhcli/bin/activate\n```\n\nand then pip install.\n\n## Installation\n\nThe current stable version of pygeonhole-cli is available on PyPI and\ncan be installed by running `pip install pygeonhole-cli`.\n\nOther sources:\n\n- PyPI: \n- GitHub: \n\nNote: Compatibility with Windows not yet tested.\n\n## Meta\n\nWilliam Pol - polwilliam0@gmail.com\n\nDistributed under the MIT license. See LICENSE for more information.\n\nhttps://github.com/bettertha-yesterday/\n",
    "bugtrack_url": null,
    "license": "MIT License  Copyright (c) 2021 betterthan-yesterday  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": "python cli program to organize files",
    "version": "1.0.0",
    "project_urls": {
        "Homepage": "https://github.com/betterthan-yesterday/pygeonhole-cli.git"
    },
    "split_keywords": [
        "typer",
        "cli",
        "file"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0f35c855a3d9e0fe460e40e4363e367489ccf4adbf343358249e4e520e94eadd",
                "md5": "845170ff04400306e8e06c5167bdd3fc",
                "sha256": "e3da69e9803258b22f7a062cf4605b95eb725a7baf24133918f154b61fa55a2e"
            },
            "downloads": -1,
            "filename": "pygeonhole_cli-1.0.0-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "845170ff04400306e8e06c5167bdd3fc",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.8",
            "size": 10216,
            "upload_time": "2024-01-08T22:35:14",
            "upload_time_iso_8601": "2024-01-08T22:35:14.280094Z",
            "url": "https://files.pythonhosted.org/packages/0f/35/c855a3d9e0fe460e40e4363e367489ccf4adbf343358249e4e520e94eadd/pygeonhole_cli-1.0.0-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d6db4d2f07359386afcd60d693d195d961915dab583361e26f01ab7fee5713c6",
                "md5": "bc7eff913a52931c37fdbe0c4f8b7037",
                "sha256": "0d1d7ee8b4f38bb5ae1f2478daff24ceb9715803598c63fb87793795b1a81c86"
            },
            "downloads": -1,
            "filename": "pygeonhole-cli-1.0.0.tar.gz",
            "has_sig": false,
            "md5_digest": "bc7eff913a52931c37fdbe0c4f8b7037",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.8",
            "size": 8959,
            "upload_time": "2024-01-08T22:35:15",
            "upload_time_iso_8601": "2024-01-08T22:35:15.622744Z",
            "url": "https://files.pythonhosted.org/packages/d6/db/4d2f07359386afcd60d693d195d961915dab583361e26f01ab7fee5713c6/pygeonhole-cli-1.0.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-01-08 22:35:15",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "betterthan-yesterday",
    "github_project": "pygeonhole-cli",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "requirements": [],
    "lcname": "pygeonhole-cli"
}
        
Elapsed time: 0.33618s