Metadata-Version: 2.1
Name: chinaski
Version: 0.0.2
Summary: Detect email addresses in files
Author: w0rmr1d3r
License: GPLv3
Project-URL: Homepage, https://github.com/w0rmr1d3r/chinaski
Project-URL: Repository, https://github.com/w0rmr1d3r/chinaski
Project-URL: Bug Tracker, https://github.com/w0rmr1d3r/chinaski/issues
Project-URL: Documentation, https://github.com/w0rmr1d3r/chinaski
Project-URL: Changelog, https://github.com/w0rmr1d3r/chinaski/releases
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Requires-Python: >=3.9.0
Description-Content-Type: text/markdown
Provides-Extra: dev
License-File: LICENSE

# chinaski

Detect emails addresses in files.
A tribute to the novel [Post Office](https://en.wikipedia.org/wiki/Post_Office_(novel)) from Charles Bukowski.

[![PyPI](https://img.shields.io/pypi/v/chinaski)](https://pypi.org/project/chinaski/)
[![GitHub release (latest by date)](https://img.shields.io/github/v/release/w0rmr1d3r/chinaski)](https://github.com/w0rmr1d3r/chinaski/releases)
![PyPI - Python Version](https://img.shields.io/pypi/pyversions/chinaski)
[![PyPi downloads](https://img.shields.io/pypi/dm/chinaski?label=PyPi%20downloads)](https://pypistats.org/packages/chinaski)

## Installation

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

```bash
pip install chinaski
```

## Usage

### As CLI

```text
Usage: python -m chinaski [OPTIONS]

Options:
  --file TEXT  REQUIRED - Path to single file to scan.
  --help       Show this message and exit.
```

Example:

```bash
python -m chinaski --file ./file.txt
```

### Inside your code

```python
from chinaski.henry import core

if __name__ == '__main__':
    core("file.txt")
```

## Contributing

Pull requests are welcome. For major changes, please open an issue first
to discuss what you would like to change.

Please make sure to update tests as appropriate.

## License

[GPLv3](LICENSE)
