Metadata-Version: 2.4
Name: t2string
Version: 0.1.5
Summary: Converts new template string (t-string)(in python 3.14) to normal string
Author-email: Yuvneil <yuvneiledu44@gmail.com>
License: MIT
Project-URL: Homepage, https://github.com/yourusername/mypackage
Requires-Python: >=3.14
Description-Content-Type: text/markdown

# 🧩 t2string

Convert **Python 3.14’s `t` strings** (template strings) into **normal strings** — quickly and easily.

---

## ✨ Overview

Starting with **Python 3.14**, a new string literal prefix `t` was introduced for *template strings*, 
(***Note That Convert all int values to str values then pass for t2string as it will give error if int entered***)
such as:

```python
from t2string import t2string
owner = "Yuvneil"
age = 20
msg = t"Hi {owner} boss, you are {str(age)}"
print(msg)
print(t2string(msg))
