Metadata-Version: 2.1
Name: count-unique-chars
Version: 0.0.4
Summary: A utility to count the number of unique characters in a string or file.
Author-email: Ilya Mishakin <imishakintyr@gmail.com>
License-File: LICENSE
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.7
Description-Content-Type: text/markdown

# Count-unique-chars

A small Python utility to count the number of unique characters in a given string or file.

# Installation

You can install the count_unique_chars package using pip:
```
pip install count-unique-chars
```

# Dependencies
```
pytest==7.3.1
pytest-mock==3.10.0	
```

# Usage

Run the script with a file argument
```
count_unique_chars --file path/to/file
```

Run the script with a string argument
```
count_unique_chars --string "your string"
```

When both --file and --string are provided, --file takes priority
```
count_unique_chars --file path/to/file --string "your string"
```

# License

This project is licensed under the MIT License. 