From 4b53938adf1fbcceb45bff38f2bf127acec8727e Mon Sep 17 00:00:00 2001 From: EillesWan Date: Sun, 12 Jun 2022 18:38:31 +0800 Subject: [PATCH] =?UTF-8?q?=E8=A3=85=E9=80=BC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- resources/msctDevAuthors.txt | 6 +++--- 作者的自我装逼.py | 28 +++++++++++++++++++++++++++- 2 files changed, 30 insertions(+), 4 deletions(-) diff --git a/resources/msctDevAuthors.txt b/resources/msctDevAuthors.txt index 5da725a..41d89c5 100644 --- a/resources/msctDevAuthors.txt +++ b/resources/msctDevAuthors.txt @@ -15,10 +15,10 @@ en-US EillesWan 启诸葛亮与八卦阵 zh-CN 诸葛亮与八卦阵 zh-TW 諸葛亮與八卦陣 -# zh-ME 诸葛八卦喵 +zh-ME 诸葛八卦喵 zh-HK 諸葛亮與八卦陣 -# en-GB Bagua Array -# en-US bgArray +en-GB Bagua Array +en-US bgArray 启鸣凤鸽子 zh-CN 鸣凤鸽子 diff --git a/作者的自我装逼.py b/作者的自我装逼.py index e571642..32c67f8 100644 --- a/作者的自我装逼.py +++ b/作者的自我装逼.py @@ -1,4 +1,30 @@ +from time import sleep from msctLib.buildIN import author_reader +from os import system -input(author_reader()) \ No newline at end of file +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() \ No newline at end of file