t2string 0.1.0__tar.gz → 0.1.5__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- t2string-0.1.5/PKG-INFO +29 -0
- t2string-0.1.5/README.md +19 -0
- {t2string-0.1.0 → t2string-0.1.5}/pyproject.toml +1 -1
- t2string-0.1.5/t2string.egg-info/PKG-INFO +29 -0
- t2string-0.1.0/PKG-INFO +0 -22
- t2string-0.1.0/README.md +0 -12
- t2string-0.1.0/t2string.egg-info/PKG-INFO +0 -22
- {t2string-0.1.0 → t2string-0.1.5}/setup.cfg +0 -0
- {t2string-0.1.0 → t2string-0.1.5}/t2string/__init__.py +0 -0
- {t2string-0.1.0 → t2string-0.1.5}/t2string/t2string.py +0 -0
- {t2string-0.1.0 → t2string-0.1.5}/t2string.egg-info/SOURCES.txt +0 -0
- {t2string-0.1.0 → t2string-0.1.5}/t2string.egg-info/dependency_links.txt +0 -0
- {t2string-0.1.0 → t2string-0.1.5}/t2string.egg-info/top_level.txt +0 -0
t2string-0.1.5/PKG-INFO
ADDED
@@ -0,0 +1,29 @@
|
|
1
|
+
Metadata-Version: 2.4
|
2
|
+
Name: t2string
|
3
|
+
Version: 0.1.5
|
4
|
+
Summary: Converts new template string (t-string)(in python 3.14) to normal string
|
5
|
+
Author-email: Yuvneil <yuvneiledu44@gmail.com>
|
6
|
+
License: MIT
|
7
|
+
Project-URL: Homepage, https://github.com/yourusername/mypackage
|
8
|
+
Requires-Python: >=3.14
|
9
|
+
Description-Content-Type: text/markdown
|
10
|
+
|
11
|
+
# 🧩 t2string
|
12
|
+
|
13
|
+
Convert **Python 3.14’s `t` strings** (template strings) into **normal strings** — quickly and easily.
|
14
|
+
|
15
|
+
---
|
16
|
+
|
17
|
+
## ✨ Overview
|
18
|
+
|
19
|
+
Starting with **Python 3.14**, a new string literal prefix `t` was introduced for *template strings*,
|
20
|
+
(***Note That Convert all int values to str values then pass for t2string as it will give error if int entered***)
|
21
|
+
such as:
|
22
|
+
|
23
|
+
```python
|
24
|
+
from t2string import t2string
|
25
|
+
owner = "Yuvneil"
|
26
|
+
age = 20
|
27
|
+
msg = t"Hi {owner} boss, you are {str(age)}"
|
28
|
+
print(msg)
|
29
|
+
print(t2string(msg))
|
t2string-0.1.5/README.md
ADDED
@@ -0,0 +1,19 @@
|
|
1
|
+
# 🧩 t2string
|
2
|
+
|
3
|
+
Convert **Python 3.14’s `t` strings** (template strings) into **normal strings** — quickly and easily.
|
4
|
+
|
5
|
+
---
|
6
|
+
|
7
|
+
## ✨ Overview
|
8
|
+
|
9
|
+
Starting with **Python 3.14**, a new string literal prefix `t` was introduced for *template strings*,
|
10
|
+
(***Note That Convert all int values to str values then pass for t2string as it will give error if int entered***)
|
11
|
+
such as:
|
12
|
+
|
13
|
+
```python
|
14
|
+
from t2string import t2string
|
15
|
+
owner = "Yuvneil"
|
16
|
+
age = 20
|
17
|
+
msg = t"Hi {owner} boss, you are {str(age)}"
|
18
|
+
print(msg)
|
19
|
+
print(t2string(msg))
|
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
|
|
4
4
|
|
5
5
|
[project]
|
6
6
|
name = "t2string" # Must be unique on PyPI
|
7
|
-
version = "0.1.
|
7
|
+
version = "0.1.5"
|
8
8
|
description = "Converts new template string (t-string)(in python 3.14) to normal string"
|
9
9
|
readme = "README.md"
|
10
10
|
license = {text = "MIT"}
|
@@ -0,0 +1,29 @@
|
|
1
|
+
Metadata-Version: 2.4
|
2
|
+
Name: t2string
|
3
|
+
Version: 0.1.5
|
4
|
+
Summary: Converts new template string (t-string)(in python 3.14) to normal string
|
5
|
+
Author-email: Yuvneil <yuvneiledu44@gmail.com>
|
6
|
+
License: MIT
|
7
|
+
Project-URL: Homepage, https://github.com/yourusername/mypackage
|
8
|
+
Requires-Python: >=3.14
|
9
|
+
Description-Content-Type: text/markdown
|
10
|
+
|
11
|
+
# 🧩 t2string
|
12
|
+
|
13
|
+
Convert **Python 3.14’s `t` strings** (template strings) into **normal strings** — quickly and easily.
|
14
|
+
|
15
|
+
---
|
16
|
+
|
17
|
+
## ✨ Overview
|
18
|
+
|
19
|
+
Starting with **Python 3.14**, a new string literal prefix `t` was introduced for *template strings*,
|
20
|
+
(***Note That Convert all int values to str values then pass for t2string as it will give error if int entered***)
|
21
|
+
such as:
|
22
|
+
|
23
|
+
```python
|
24
|
+
from t2string import t2string
|
25
|
+
owner = "Yuvneil"
|
26
|
+
age = 20
|
27
|
+
msg = t"Hi {owner} boss, you are {str(age)}"
|
28
|
+
print(msg)
|
29
|
+
print(t2string(msg))
|
t2string-0.1.0/PKG-INFO
DELETED
@@ -1,22 +0,0 @@
|
|
1
|
-
Metadata-Version: 2.4
|
2
|
-
Name: t2string
|
3
|
-
Version: 0.1.0
|
4
|
-
Summary: Converts new template string (t-string)(in python 3.14) to normal string
|
5
|
-
Author-email: Yuvneil <yuvneiledu44@gmail.com>
|
6
|
-
License: MIT
|
7
|
-
Project-URL: Homepage, https://github.com/yourusername/mypackage
|
8
|
-
Requires-Python: >=3.14
|
9
|
-
Description-Content-Type: text/markdown
|
10
|
-
|
11
|
-
# 🧩 t2string
|
12
|
-
|
13
|
-
Convert **Python 3.14’s `t` strings** (translatable strings) into **normal strings** — quickly and easily.
|
14
|
-
|
15
|
-
---
|
16
|
-
|
17
|
-
## ✨ Overview
|
18
|
-
|
19
|
-
Starting with **Python 3.14**, a new string literal prefix `t` was introduced for *translatable strings*, such as:
|
20
|
-
|
21
|
-
```python
|
22
|
-
msg = t"Hello, world!"
|
t2string-0.1.0/README.md
DELETED
@@ -1,12 +0,0 @@
|
|
1
|
-
# 🧩 t2string
|
2
|
-
|
3
|
-
Convert **Python 3.14’s `t` strings** (translatable strings) into **normal strings** — quickly and easily.
|
4
|
-
|
5
|
-
---
|
6
|
-
|
7
|
-
## ✨ Overview
|
8
|
-
|
9
|
-
Starting with **Python 3.14**, a new string literal prefix `t` was introduced for *translatable strings*, such as:
|
10
|
-
|
11
|
-
```python
|
12
|
-
msg = t"Hello, world!"
|
@@ -1,22 +0,0 @@
|
|
1
|
-
Metadata-Version: 2.4
|
2
|
-
Name: t2string
|
3
|
-
Version: 0.1.0
|
4
|
-
Summary: Converts new template string (t-string)(in python 3.14) to normal string
|
5
|
-
Author-email: Yuvneil <yuvneiledu44@gmail.com>
|
6
|
-
License: MIT
|
7
|
-
Project-URL: Homepage, https://github.com/yourusername/mypackage
|
8
|
-
Requires-Python: >=3.14
|
9
|
-
Description-Content-Type: text/markdown
|
10
|
-
|
11
|
-
# 🧩 t2string
|
12
|
-
|
13
|
-
Convert **Python 3.14’s `t` strings** (translatable strings) into **normal strings** — quickly and easily.
|
14
|
-
|
15
|
-
---
|
16
|
-
|
17
|
-
## ✨ Overview
|
18
|
-
|
19
|
-
Starting with **Python 3.14**, a new string literal prefix `t` was introduced for *translatable strings*, such as:
|
20
|
-
|
21
|
-
```python
|
22
|
-
msg = t"Hello, world!"
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|