Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Split HUGE BEWGor.py script to make more maintainable #11

Closed
wants to merge 3 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2,544 changes: 0 additions & 2,544 deletions BEWGor.py

This file was deleted.

623 changes: 623 additions & 0 deletions bewgor/BEWGor.py

Large diffs are not rendered by default.

Empty file added bewgor/__init__.py
Empty file.
73 changes: 73 additions & 0 deletions bewgor/banners.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,73 @@
#!/usr/bin/env python3

# Function to show the big ASCII Art
def showTheName():
print ("""
___ _ _ _ ___
| _ ) _ _ | | | | ( ) ___ | __| _ _ ___
| _ \ | || | | | | | |/ (_-< | _| | || | / -_)
|___/ \_,_| |_| |_| /__/ |___| \_, | \___|
__ __ _ _ _ |__/ _
\ \ / / ___ _ _ __| | | | (_) ___ | |_
\ \/\/ / / _ \ | '_| / _` | | | | | (_-< | _|
\_/\_/ \___/ |_| \__,_| |_| |_| /__/ \__|
/ __| ___ _ _ ___ _ _ __ _ | |_ ___ _ _
| (_ | / -_) | ' \ / -_) | '_| / _` | | _| / _ \ | '_|
\___| \___| |_||_| \___| |_| \__,_| \__| \___/ |_|
also knowns as BEWGor
Pronounced "Booger"
"Pick your Knows!"


by berzerk0 @ Github
Version 0.0.1 - 'FLAT' ALPHA RELEASE
""")

#Function to show the mini ASCII Art
def showMiniName():
print ("""
___ _____ _____
| _ ) __\ \ / / __|___ _ _
| _ \ _| \ \/\/ / (_ / _ \ '_|
|___/___| \_/\_/ \___\___/_| """ )


#shows the BEWGor logo in ASCII art
def showNose():
print ("""
.`

:
-.
`+
+.
-+
`s
`s.
s:
`s/
`s/
-y:
`+y.
:y+`
-ss.
-ss-
.sy: ```
`+h/` ```.-.`
-hs. .-:`
:d/ `/-
/m: o-
.m+ .s
sd .y
ds s:
dy `oo
+m. ``.::::-.`` `/s:
yd. `-+shddhhhhhsooso+//+oo:`
+do.` ``:oyyo:yys-..-oys` -hy-.`
.+hyo+++osyyohh. -yy-`yh .yy: `yy
`-:::-. +y/ `syoy:.-oys` -ys
`sy: `yyyyyys/` -yy.
`oy+y- `..` .+yo.
`ssyyo+//+osy+-
`sd+ .-://:-.
`- """)
Loading