forked from jdiazmx/PUPI
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcredit.py
More file actions
24 lines (19 loc) 路 815 Bytes
/
Copy pathcredit.py
File metadata and controls
24 lines (19 loc) 路 815 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
__version__ = '1.10'
__author__ = 'Ghostboy-287'
def getCredits():
return '''
___ ___ ___
/\ \ /\__\ /\ \ ___
/::\ \ /:/ / /::\ \ /\ \
/:/\:\ \ /:/ / /:/\:\ \ \:\ \
/::\~\:\ \ /:/ / ___ /::\~\:\ \ /::\__\\
/:/\:\ \:\__\/:/__/ /\__\/:/\:\ \:\__\ __/:/\/__/
\/__\:\/:/ /\:\ \ /:/ /\/__\:\/:/ //\/:/ /
\::/ / \:\ /:/ / \::/ / \::/__/
\/__/ \:\/:/ / \/__/ \:\__\
\::/ / \/__/
\/__/
version %s developed By %s
''' % (__version__, __author__,), __version__