Metadata-Version: 2.4
Name: text2emoji
Version: 0.1.1
Summary: Convert words in text to emojis
Home-page: https://github.com/shohagcsediu/text2emoji
Author: Mohammad Shohag
Author-email: shohagcsediu@gmail.com
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.7
Description-Content-Type: text/markdown

# text2emoji

A simple Python package to convert words in text to emojis.

## Features
- Converts common words to emojis
- Handles punctuation and capitalization
- Easy to use in scripts, chat apps, or fun projects

## Installation

```bash
pip install text2emoji
```
## Usage

```bash
from text2emoji import text_to_emoji

print(text_to_emoji("I am happy"))
# Output: I am 😊
```
