Metadata-Version: 2.4
Name: text_in_pattern
Version: 1.0.0
Summary: It is a simple Python library that transforms user input text into a stylized pattern using a user-defined symbol.
Home-page: https://github.com/ethicaladarsh/text_in_pattern
Author: Adarsh Kumar
Author-email: ethycaladarsh@example.com
License: MIT
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: license
Dynamic: license-file
Dynamic: requires-python
Dynamic: summary

readme_content = """# text_in_pattern

**`text_in_pattern`** is a Python library that prints user input text in a stylized ASCII-art pattern using any symbol of your choice. Each letter of the alphabet is custom-designed to form a visually striking output that can be printed to the console.

## ✨ Features

- Convert any input text into a custom visual pattern
- Choose any symbol to decorate your text
- Lightweight and beginner-friendly

## 📦 Installation

Install the package via pip:

```bash

pip install text_in_pattern

```

## 📦 Usage

```bash

from text_in_pattern import text

# Your input string and the symbol to use
name = "Hello World"
symbol = "*"

text(name, symbol)

```


## 🛠️ Function

```bash

text(name: str, symbol: str) -> None
name: The input text to display

symbol: The character used to draw the pattern

Prints the stylized text directly to the console

```
