ConsoleType 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.
ConsoleType/__init__.py
ADDED
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import os
|
|
2
|
+
import time
|
|
3
|
+
|
|
4
|
+
def prints(text, times, size, title):
|
|
5
|
+
sizes = 0
|
|
6
|
+
ot = "-"
|
|
7
|
+
tt = "-" * size
|
|
8
|
+
while not sizes == size:
|
|
9
|
+
os.system("cls")
|
|
10
|
+
print(f"{ot}{text}{tt}")
|
|
11
|
+
time.sleep(times)
|
|
12
|
+
tt = tt[:-1]
|
|
13
|
+
ot = ot + "-"
|
|
14
|
+
sizes += 1
|
|
15
|
+
|
|
16
|
+
print(title)
|
|
17
|
+
#print("Create in prints")
|
|
18
|
+
|
|
19
|
+
def outputs(text, times):
|
|
20
|
+
print(f"gf")
|
|
21
|
+
|
|
22
|
+
def title(title):
|
|
23
|
+
print(title)
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: ConsoleType
|
|
3
|
+
Version: 1.0
|
|
4
|
+
Summary: My Project
|
|
5
|
+
Home-page: https://github.com/твой-аккаунт/твой-пакет
|
|
6
|
+
Author: Vadim | Mur Studio
|
|
7
|
+
Author-email: somerare23@gmail.com
|
|
8
|
+
Description-Content-Type: text/markdown
|
|
9
|
+
Dynamic: author
|
|
10
|
+
Dynamic: author-email
|
|
11
|
+
Dynamic: description
|
|
12
|
+
Dynamic: description-content-type
|
|
13
|
+
Dynamic: home-page
|
|
14
|
+
Dynamic: summary
|
|
15
|
+
|
|
16
|
+
This is a project with animations and other things and text output (In Beta)
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
ConsoleType/__init__.py,sha256=azvhQSmPlEY-1dRRssqjVOG4GLlysMHesFbx0KvO350,433
|
|
2
|
+
consoletype-1.0.dist-info/METADATA,sha256=yGbgcY5JTorWWjI9q6AGqk2xe41TMAfdFqSu9fNjSKc,472
|
|
3
|
+
consoletype-1.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
4
|
+
consoletype-1.0.dist-info/top_level.txt,sha256=WvPDCvJRSUVVfXCReqh13AcVtGMF_nPti02qKa1cKyQ,12
|
|
5
|
+
consoletype-1.0.dist-info/RECORD,,
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
ConsoleType
|