This commit is contained in:
EillesWan
2022-06-12 18:38:31 +08:00
parent 8502a02880
commit 4b53938adf
2 changed files with 30 additions and 4 deletions

View File

@ -1,4 +1,30 @@
from time import sleep
from msctLib.buildIN import author_reader
from os import system
input(author_reader())
authors = author_reader()
def run(string):
try:
system(string)
except:
return
run('color 70')
for bigname,languages in authors.items():
run('color 02')
for i in bigname:
print(i,end="",flush=True)
sleep(0.1)
run('color 70')
print(' :')
for language,author in languages.items():
line = ' '+language+' > '+author
for i in line:
print(i,end="",flush=True)
sleep(0.05)
print()
input()