Metadata-Version: 2.4
Name: package_unique_char_counter_vl
Version: 0.0.1
Summary: A package for counting unique characters in text
Author-email: Valeriia <valerialisovec606@gmail.com>
License-Expression: MIT
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: OS Independent
Requires-Python: >=3.9
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: license-file

# Symbol Counter Package

This is a simple Python package for text analysis for counting unique characters. 

## Installation

To install the package locally from the project root, run the following command in your terminal: 

```bash
pip install .
```
## Usage

After installation, you can use the package as follows:
```
from symbol_counter import count_unique_symbols

text = "example text"
result = count_unique_symbols(text)
print(result)
```
## CLI Usage

After installing the package, you can use the command-line interface:

```bash
python -m symbol_counter.counter --string "original text"
```
