Metadata-Version: 2.4
Name: productgen
Version: 0.0.2
Summary: Product generator
Author-email: rifqanzalbina <zalbinarifqan19@gmail.com>
License: MIT
Project-URL: Homepage, https://github.com/rifqanzalbina/product-generator
Project-URL: Bug Tracker, https://github.com/rifqanzalbina/product-generator/issues
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Natural Language :: Indonesian
Classifier: Topic :: Text Processing :: Linguistic
Requires-Python: >=3.6
Description-Content-Type: text/markdown
Requires-Dist: nltk>=3.6.0
Requires-Dist: pandas>=1.0.0

# product generator

## What can do?
- Make a product name automatically

# How To Usage ?

```python
from product_generator import generate_product_name, Style

# Generate a product name using the simple concatenation style
simple_concat_name = generate_product_name(Style.SIMPLE_CONCAT)
print(f"Simple Concatenation Style: {simple_concat_name}")

# Generate a product name using the hyphenation style
hyphenation_name = generate_product_name(Style.HYPHENATION)
print(f"Hyphenation Style: {hyphenation_name}")

# Generate a product name using the title case style
title_case_name = generate_product_name(Style.TITLE_CASE)
print(f"Title Case Style: {title_case_name}")

# Generate a product name using the capitalization style
capitalization_name = generate_product_name(Style.CAPITALIZATION)
print(f"Capitalization Style: {capitalization_name}")

# Generate a product name using the random capitalization style
random_capitalization_name = generate_product_name(Style.RANDOM_CAPITALIZATION)
```
