Metadata-Version: 2.1
Name: cleanpycache
Version: 0.1.1
Summary: Multiple ways to clean __pycache__ folders recursively from a specified root path
Author-email: Ed Waldner <waldevburry@proton.me>
Maintainer-email: Ed Waldner <waldevburry@proton.me>
Project-URL: Homepage, https://github.com/ew98/cleanpycache
Project-URL: Documentation, https://github.com/ew98/cleanpycache/wiki/CleanPycache
Project-URL: Issues, https://github.com/ew98/cleanpycache/issues
Keywords: util,utility
Classifier: Development Status :: 3 - Alpha
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Operating System :: OS Independent
Classifier: Topic :: Utilities
Requires-Python: >=3.9
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: argcomplete
Requires-Dist: quickcolor
Requires-Dist: delayviewer
Requires-Dist: showexception

# CleanPycache

**CleanPycache** is intended to be used as a CLI tool for clearing \_\_pycache\_\_ folders from a specified root path.

## Installation

Use the package manager [pip](https://pip.pypa.io/en/stable/) to install **cleanpycache**.

```bash
pip install cleanpycache
```

## CLI Utility

The following CLI is provided in this package.

```bash
# clean_pycache -h
usage: clean_pycache [-h] [<path>] [<runtype>]

-.-.-. Cleaning __pycache__ folders!

positional arguments:
  <path>      absolute root path to start clearing
  <runtype>   run type for clearing __pycache__ folders (shell cmds or native python)

options:
  -h, --help  show this help message and exit

-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.
```


## License

[MIT](https://choosealicense.com/licenses/mit/)

