Puthon 1.0.0__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.
- puthon-1.0.0/PKG-INFO +9 -0
- puthon-1.0.0/Puthon.egg-info/PKG-INFO +9 -0
- puthon-1.0.0/Puthon.egg-info/SOURCES.txt +8 -0
- puthon-1.0.0/Puthon.egg-info/dependency_links.txt +1 -0
- puthon-1.0.0/Puthon.egg-info/top_level.txt +1 -0
- puthon-1.0.0/README.md +5 -0
- puthon-1.0.0/puthon/__init__.py +4 -0
- puthon-1.0.0/puthon/plus.py +14 -0
- puthon-1.0.0/setup.cfg +4 -0
- puthon-1.0.0/setup.py +10 -0
puthon-1.0.0/PKG-INFO
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
puthon
|
puthon-1.0.0/README.md
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()
|
puthon-1.0.0/setup.cfg
ADDED
puthon-1.0.0/setup.py
ADDED