Add aperture science ASCII art

This commit is contained in:
Julia van der Kris 2023-01-09 00:03:54 +01:00
parent 117bc7738c
commit 1aaeae1197
No known key found for this signature in database
GPG key ID: 1510909663FDF2C0
2 changed files with 31 additions and 1 deletions

View file

@ -0,0 +1,26 @@
from . import AsciiArt
aperture = AsciiArt(match=r'''"Aperture"*''', color='6 6 7 1', ascii=r"""
${c1} .,-:;//;:=,
. :H@@@MM@M#H/.,+%;,
,/X+ +M@@M@MM%=,-%HMMM@X/,
-+@MM; $M@@MH+-,;XMMMM@MMMM@+-
;@M@@M- XM@X;. -+XXXXXHHH@M@M#@/.
,%MM@@MH ,@%= .---=-=:=,.
=@#@@@MX., -%HX$$%%%:;
=-./@M@M$ .;@MMMM@MM:
X@/ -$MM/ . +MM@@@M$
,@M@H: :@: . =X#@@@@-
,@@@MMX, . /H- ;@M@M=
.H@@@@M@+, %MM+..%#$.
/MMMM@MMH/. XM@MH; =;
/%+%$XHH@$= , .H@@@@MX,
.=--------. -%H.,@@@@@MX,
.%MM@@@HHHXX$$$%+- .:$MMX =M@@MM%.
=XMMM@MM@MM#H;,-+HMM@M+ /MMMX=
=%@M@M#@$-.=$@MM@@@M; %M%=
,:+$+-,/H#MMMMMMM@= =,
=++%%%%+/:-.
""")

View file

@ -1336,4 +1336,8 @@ def detect(name: str) -> AsciiArt | None:
if name == 'sunos': if name == 'sunos':
from .sunos import sunos from .sunos import sunos
return sunos return sunos
if name == 'aperture':
from .aperture import aperture
return aperture