Metadata-Version: 2.1
Name: tags-generator
Version: 0.2.0
Summary: A library to generate tags list from a text using OpenAI
Home-page: https://github.com/nigohiroki/tags-generator
Author: nigohiroki
Author-email: nigohiroki@teit-inc.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Description-Content-Type: text/markdown
License-File: LICENSE

# Tags Generator

A Python library to generate a tags list from a text using OpenAI.

## Installation

Install the package using pip:


## Usage

```python
from tags_generator import TagsGenerator

# Set your OpenAI API key
openai_api_key = "your_openai_api_key"

# Initialize the TagsGenerator
tg = TagsGenerator(openai_api_key)

# Generate tags from a text
text = "Create a step-by-step guide on building a pip library to distribution the library."
tags = tg.generate_tags(text)

print(tags)



