Metadata-Version: 2.4
Name: symjoy
Version: 1.0.1
Summary: The unicode_symbols package is designed to simplify the use of Unicode characters in Python projects. Whether you need emojis for chat applications, symbols for documentation, mathematical symbols for calculations, currency symbols for finance apps, or miscellaneous icons for fun, this package has you covered.
Project-URL: Homepage, https://github.com/vishwanathdvgmm/symjoy
Project-URL: Issues, https://github.com/vishwanathdvgmm/symjoy/issues
Author-email: Vishwanath M M <vishwanathmm2005@gmail.com>
License-Expression: MIT
License-File: LICENSE
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.12
Description-Content-Type: text/markdown

# Symjoy

**symjoy** is a comprehensive Python package providing easy access to Unicode characters, including **emojis, symbols, arrows, mathematical symbols, currency signs, and miscellaneous icons**. Perfect for chat apps, games, educational tools, financial apps, or any Python project requiring Unicode characters.

---

## Installation

Install from PyPI:

```bash
pip install symjoy
```

## Usage

**Import the categories you need:**

```bash
from symjoy import emojis, symbols, arrows, math_symbols, currency, misc
```

**Emojis**

```bash
print(emojis["smile"]) # 😄
print(emojis["party"]) # 🎉
print(emojis["thinking"]) # 🤔
print(emojis["cry"]) # 😭
```

**Symbols**

```bash
print(symbols["heart"]) # ♥
print(symbols["check"]) # ✔
print(symbols["star"]) # ★
print(symbols["bullet"]) # •
```

**Arrows**

```bash
print(arrows["up"]) # ↑
print(arrows["down_left"]) # ↙
print(arrows["double_right"]) # ⇒
```

**Mathematical Symbols**

```bash
print(math_symbols["pi"]) # π
print(math_symbols["infinity"]) # ∞
print(math_symbols["plus_minus"]) # ±
print(math_symbols["sqrt"]) # √
```

**Currency Symbols**

```bash
print(currency["dollar"]) # $
print(currency["rupee"]) # ₹
print(currency["bitcoin"]) # ₿
print(currency["euro"]) # €
```

**Miscellaneous Icons**

```bash
print(misc["sun"]) # ☀
print(misc["music"]) # ♪
print(misc["peace"]) # ☮
print(misc["yin_yang"]) # ☯
```
