text-redcolor 0.1.0__py3-none-any.whl

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.
@@ -0,0 +1 @@
1
+ from .red import text
text_redcolor/red.py ADDED
@@ -0,0 +1,4 @@
1
+ def text(value):
2
+ RED = "\033[91m"
3
+ RESET = "\033[0m"
4
+ print(f"{RED}{value}{RESET}")
@@ -0,0 +1,17 @@
1
+ Metadata-Version: 2.4
2
+ Name: text_redcolor
3
+ Version: 0.1.0
4
+ Summary: Print text in red color like print()
5
+ Author: Your Name
6
+ License: MIT
7
+ Requires-Python: >=3.7
8
+ Description-Content-Type: text/markdown
9
+
10
+ # text_redcolor
11
+
12
+ By Sayko Xx
13
+
14
+
15
+ from text_redcolor import text
16
+
17
+ text("Hello World")
@@ -0,0 +1,6 @@
1
+ text_redcolor/__init__.py,sha256=WrUK5BDGj4vLDRdwlhYL4H6EEMVZQ4mbzC-XPmdglJg,21
2
+ text_redcolor/red.py,sha256=LVWm65zzMqar8N3sKmFun9gQOjzP2FnWc0hhu9lw3Fo,94
3
+ text_redcolor-0.1.0.dist-info/METADATA,sha256=k2yZ2oJNYPj3W9OBN6OLyXqg9K1smAhEu1ge9LYNOJ0,281
4
+ text_redcolor-0.1.0.dist-info/WHEEL,sha256=wUyA8OaulRlbfwMtmQsvNngGrxQHAvkKcvRmdizlJi0,92
5
+ text_redcolor-0.1.0.dist-info/top_level.txt,sha256=6WBJYtoaZELfUwFzwh8-Zu5v3ko-Bc0qqf_IjwX5ZBQ,14
6
+ text_redcolor-0.1.0.dist-info/RECORD,,
@@ -0,0 +1,5 @@
1
+ Wheel-Version: 1.0
2
+ Generator: setuptools (80.10.2)
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
5
+
@@ -0,0 +1 @@
1
+ text_redcolor