Metadata-Version: 2.1
Name: ihatepyc
Version: 1.0.0.post1
Summary: We all hate the __pycache__ folders, so lets delete them
Author: Combo Gang
Author-email: contact@combogang.com
License: MIT
Description-Content-Type: text/markdown
License-File: LICENSE

# ihatepyc
Automatic __pycache__ folder deleter

## Usage
```bash
$ ihatepyc watch 
```
The above command will watch the current directory (you change change this by providing a --path /path/to/directory if you want a specific place) every 3 seconds and delete all `__pycache__` folders found within the directory, and sub directories. It will also print out the deleted folders because of the verbose option, you can delete it if needed.

## Installation

```bash

$ pip install ihatepyc

```
or
```bash

$ pip3 install ihatepyc

```

## Help
```bash
$ ihatepyc --help
```
```bash
$ ihatepyc watch --help
```

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

## Author
[combogangreal](https://combogang.com)(contact@combogang.com)(combogang on discord)

## Note
The actual project on relies on the [click](https://pypi.org/project/click/) library for the command line interface, but the build process is done with the base `pip install build` module and [twine](https://pypi.org/project/twine/).
