Metadata-Version: 2.1
Name: unique_character
Version: 0.0.1
Summary: Package count unique chars in file or string
Author-email: Botvinko Dmitro <dmitrobottvinko@gmail.com>
License-File: LICENSE
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.8
Description-Content-Type: text/markdown

# Python module for counting unique symbol

Module get nuber of uniq chars in text file or string

## Options:
```bash
cli_unique_character.py [-h] 
```
```bash
cli_unique_character.py [--file FILE] 
```
```bash
cli_unique_character.py [--string STRING]
```
## Examples:

#### Command:
```bash
python3 cli_unique_character.py --string aaabbcc123
```
#### Output:
```bash
3
```

#### Command:
```bash
python3 cli_unique_character.py --file text_file.txt
```
#### Output:
```bash
100
```