Metadata-Version: 2.1
Name: wordplex
Version: 0.2.6
Summary: WordPlex
License: MIT
Author: fordnox
Author-email: fordnox@gmail.com
Requires-Python: >=3.8,<4.0
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Description-Content-Type: text/markdown

# WordPlex

The `WordPlex` class is a Python utility designed to generate and manipulate words. It provides methods 
for handling consonants, vowels, numbers and alphabet.

## Example

```python
    python -m wordplex -f "Porsche-99#"

    Porsche-990
    Porsche-991
    Porsche-992
    Porsche-993
    Porsche-994
    Porsche-995
    Porsche-996
    Porsche-997
    Porsche-998
    Porsche-999
```


## Requirements

- Python `^3.8`

## Installation

```python
pip install wordplex
```

## Usage

```python
from wordplex import WordPlex

# Initialize the class
wordplex = WordPlex()

# Example method usage (adjust according to actual methods)
result = wordplex.generate('CV')
print(result)
```

## Features

- **Consonants and Vowels Handling**: Provides lists of consonants and vowels for various processing needs.

## Contributing

Contributions to the `WordPlex` class are welcome. Please fork the repository, make your changes, and submit a 
pull request for review.

## License

MIT

