update .gitignore
and hide ascii art with collapsible function
This commit is contained in:
parent
4bbc920579
commit
1561a1f6d1
2
.gitignore
vendored
2
.gitignore
vendored
@ -1,7 +1,7 @@
|
|||||||
*.log
|
*.log
|
||||||
*.env
|
*.env
|
||||||
*.spec
|
*.spec
|
||||||
test.py
|
*.test.py
|
||||||
checklist.md
|
checklist.md
|
||||||
/build
|
/build
|
||||||
/dist
|
/dist
|
||||||
|
11
.vscode/settings.json
vendored
Normal file
11
.vscode/settings.json
vendored
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
{
|
||||||
|
"python.testing.unittestArgs": [
|
||||||
|
"-v",
|
||||||
|
"-s",
|
||||||
|
".",
|
||||||
|
"-p",
|
||||||
|
"*test*.py"
|
||||||
|
],
|
||||||
|
"python.testing.pytestEnabled": false,
|
||||||
|
"python.testing.unittestEnabled": true
|
||||||
|
}
|
77
installer.py
77
installer.py
@ -70,45 +70,46 @@ tar_file_path = 'mods.tar.gz'
|
|||||||
extract_to = 'mods'
|
extract_to = 'mods'
|
||||||
extract_tar_archive(tar_file_path, extract_to)
|
extract_tar_archive(tar_file_path, extract_to)
|
||||||
|
|
||||||
|
def ascii():
|
||||||
|
print()
|
||||||
|
print()
|
||||||
|
print(" :+++++=")
|
||||||
|
print(" -++++++.")
|
||||||
|
print(" :++++++. .")
|
||||||
|
print(" .++++++. -=. -: .::")
|
||||||
|
print(" =+++++. :=. =- .--:. -")
|
||||||
|
print(" =+++++. .+ =: -=. :=")
|
||||||
|
print(" =+++++. +. :.=* .=: =:")
|
||||||
|
print(" =++++= .+ +. -- :+ .=")
|
||||||
|
print(" .+++++= .= ..=: :. =")
|
||||||
|
print(" .++=++- .= .+- =")
|
||||||
|
print(" ==++*=::.. * +")
|
||||||
|
print(" =*#-+- .:---:. :=-- .-=%. --=#- ..::.--")
|
||||||
|
print(" :#=-*- .::--:.*: .+ #@. - *@@- .. -#:")
|
||||||
|
print(" ++:*. .:--==:--:: .%%-.. :=.")
|
||||||
|
print(" =++.:...::::::..... :---+-:. .:.: --")
|
||||||
|
print(" *=..:::.. .=.")
|
||||||
|
print(" :-. .=:::")
|
||||||
|
print(" ..:=. :-..-:---:")
|
||||||
|
print(" ==:- .=-: :=-")
|
||||||
|
print(" .= =- :--. .--")
|
||||||
|
print(" -- :-:. -= .::::-:=.")
|
||||||
|
print(" :- =- :+ .+")
|
||||||
|
print(" --- -: .+ +.")
|
||||||
|
print(" := -= .+ =:")
|
||||||
|
print(" +. -: =: :=.")
|
||||||
|
print(" -. .=: --.....::-:")
|
||||||
|
print(" .=- .= :-:----- .::::.")
|
||||||
|
print(" .-: .= ..+:")
|
||||||
|
print(" -=......:.:-:+ :=")
|
||||||
|
print(" .::--::... := -")
|
||||||
|
print(" =: =:")
|
||||||
|
print(" --::.--")
|
||||||
|
print(" ....")
|
||||||
|
#someone's gonna think im a furry or a femboy or some shit because of this.
|
||||||
|
print()
|
||||||
|
|
||||||
print()
|
ascii()
|
||||||
print()
|
|
||||||
print(" :+++++=")
|
|
||||||
print(" -++++++.")
|
|
||||||
print(" :++++++. .")
|
|
||||||
print(" .++++++. -=. -: .::")
|
|
||||||
print(" =+++++. :=. =- .--:. -")
|
|
||||||
print(" =+++++. .+ =: -=. :=")
|
|
||||||
print(" =+++++. +. :.=* .=: =:")
|
|
||||||
print(" =++++= .+ +. -- :+ .=")
|
|
||||||
print(" .+++++= .= ..=: :. =")
|
|
||||||
print(" .++=++- .= .+- =")
|
|
||||||
print(" ==++*=::.. * +")
|
|
||||||
print(" =*#-+- .:---:. :=-- .-=%. --=#- ..::.--")
|
|
||||||
print(" :#=-*- .::--:.*: .+ #@. - *@@- .. -#:")
|
|
||||||
print(" ++:*. .:--==:--:: .%%-.. :=.")
|
|
||||||
print(" =++.:...::::::..... :---+-:. .:.: --")
|
|
||||||
print(" *=..:::.. .=.")
|
|
||||||
print(" :-. .=:::")
|
|
||||||
print(" ..:=. :-..-:---:")
|
|
||||||
print(" ==:- .=-: :=-")
|
|
||||||
print(" .= =- :--. .--")
|
|
||||||
print(" -- :-:. -= .::::-:=.")
|
|
||||||
print(" :- =- :+ .+")
|
|
||||||
print(" --- -: .+ +.")
|
|
||||||
print(" := -= .+ =:")
|
|
||||||
print(" +. -: =: :=.")
|
|
||||||
print(" -. .=: --.....::-:")
|
|
||||||
print(" .=- .= :-:----- .::::.")
|
|
||||||
print(" .-: .= ..+:")
|
|
||||||
print(" -=......:.:-:+ :=")
|
|
||||||
print(" .::--::... := -")
|
|
||||||
print(" =: =:")
|
|
||||||
print(" --::.--")
|
|
||||||
print(" ....")
|
|
||||||
#someone's gonna think im a furry or a femboy or some shit because of this.
|
|
||||||
print()
|
|
||||||
|
|
||||||
print("sigma")
|
print("sigma")
|
||||||
print("all done!")
|
print("all done!")
|
||||||
print("This script will exit and close in ten seconds. :)")
|
print("This script will exit and close in ten seconds. :)")
|
||||||
|
Reference in New Issue
Block a user