Puthon 1.0.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.
puthon/__init__.py ADDED
@@ -0,0 +1,4 @@
1
+ from .plus import say, cool_print
2
+
3
+ __version__ = "1.0.0"
4
+ __author__ = "CYAN-08"
puthon/plus.py ADDED
@@ -0,0 +1,14 @@
1
+ import os
2
+ import sys
3
+ import time
4
+
5
+ def say(text):
6
+ os.system(f'powershell -Command "Add-Type -AssemblyName System.Speech; (New-Object System.Speech.Synthesis.SpeechSynthesizer).Speak(\'{text}\')"')
7
+ print(f"[Puthon-Say]: {text}")
8
+
9
+ def cool_print(text, delay=0.05):
10
+ for char in text:
11
+ sys.stdout.write(char)
12
+ sys.stdout.flush%
13
+ time.sleep(delay)
14
+ print()
@@ -0,0 +1,9 @@
1
+ Metadata-Version: 2.4
2
+ Name: Puthon
3
+ Version: 1.0.0
4
+ Summary: Python Plus Version - More powerful instructions!
5
+ Author: CYAN-08
6
+ Requires-Python: >=3.6
7
+ Dynamic: author
8
+ Dynamic: requires-python
9
+ Dynamic: summary
@@ -0,0 +1,6 @@
1
+ puthon/__init__.py,sha256=plO9S8h0n3pTFzqEMDBhKdwWF6ZAYohPlZuR5-kynQA,81
2
+ puthon/plus.py,sha256=9ffcbmA8snppwtrDiFKF-Y8oOjBc3NCt8cI5iwYKiZg,388
3
+ puthon-1.0.0.dist-info/METADATA,sha256=71QulEeMrot9Ieid-khM1YzkQJ-2E-NYn9dugflufvY,215
4
+ puthon-1.0.0.dist-info/WHEEL,sha256=aeYiig01lYGDzBgS8HxWXOg3uV61G9ijOsup-k9o1sk,91
5
+ puthon-1.0.0.dist-info/top_level.txt,sha256=98-TrikuC9eGMWwD3iAvAl6yTMQLmK_Hz_O0JiDJH3w,7
6
+ puthon-1.0.0.dist-info/RECORD,,
@@ -0,0 +1,5 @@
1
+ Wheel-Version: 1.0
2
+ Generator: setuptools (82.0.1)
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
5
+
@@ -0,0 +1 @@
1
+ puthon