braxton 0.1.28__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- braxton-0.1.28/LICENSE +21 -0
- braxton-0.1.28/PKG-INFO +53 -0
- braxton-0.1.28/README.md +38 -0
- braxton-0.1.28/pyproject.toml +25 -0
- braxton-0.1.28/setup.cfg +4 -0
- braxton-0.1.28/src/braxton.egg-info/PKG-INFO +53 -0
- braxton-0.1.28/src/braxton.egg-info/SOURCES.txt +33 -0
- braxton-0.1.28/src/braxton.egg-info/dependency_links.txt +1 -0
- braxton-0.1.28/src/braxton.egg-info/requires.txt +5 -0
- braxton-0.1.28/src/braxton.egg-info/top_level.txt +1 -0
- braxton-0.1.28/src/naujoks/GitHub/__init__.py +0 -0
- braxton-0.1.28/src/naujoks/GitHub/clone_repo.py +109 -0
- braxton-0.1.28/src/naujoks/QR/__init__.py +5 -0
- braxton-0.1.28/src/naujoks/QR/create.py +13 -0
- braxton-0.1.28/src/naujoks/__init__.py +57 -0
- braxton-0.1.28/src/naujoks/animation/__init__.py +7 -0
- braxton-0.1.28/src/naujoks/animation/collection.py +205 -0
- braxton-0.1.28/src/naujoks/cloud/__init__.py +5 -0
- braxton-0.1.28/src/naujoks/cloud/local.py +2605 -0
- braxton-0.1.28/src/naujoks/crypto/__init__.py +23 -0
- braxton-0.1.28/src/naujoks/crypto/encoder.py +21 -0
- braxton-0.1.28/src/naujoks/crypto/encrypt.py +897 -0
- braxton-0.1.28/src/naujoks/crypto/get.py +237 -0
- braxton-0.1.28/src/naujoks/crypto/read_keys.py +95 -0
- braxton-0.1.28/src/naujoks/crypto/send.py +169 -0
- braxton-0.1.28/src/naujoks/crypto/write_keys.py +98 -0
- braxton-0.1.28/src/naujoks/gen_files/__init__.py +6 -0
- braxton-0.1.28/src/naujoks/gen_files/common.py +14 -0
- braxton-0.1.28/src/naujoks/get/__init__.py +0 -0
- braxton-0.1.28/src/naujoks/get/api.py +116 -0
- braxton-0.1.28/src/naujoks/sub_exe/__init__.py +8 -0
- braxton-0.1.28/src/naujoks/sub_exe/execute.py +39 -0
- braxton-0.1.28/src/naujoks/user/__init__.py +9 -0
- braxton-0.1.28/src/naujoks/user/cookies.py +62 -0
- braxton-0.1.28/src/naujoks/user/info.py +58 -0
braxton-0.1.28/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 permission-bit
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
braxton-0.1.28/PKG-INFO
ADDED
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: braxton
|
|
3
|
+
Version: 0.1.28
|
|
4
|
+
Summary: Python utility and cryptography library
|
|
5
|
+
Author: Vincent
|
|
6
|
+
Requires-Python: >=3.11
|
|
7
|
+
Description-Content-Type: text/markdown
|
|
8
|
+
License-File: LICENSE
|
|
9
|
+
Requires-Dist: cryptography>=45.0.0
|
|
10
|
+
Requires-Dist: qrcode
|
|
11
|
+
Requires-Dist: browser_cookie3
|
|
12
|
+
Requires-Dist: flask
|
|
13
|
+
Requires-Dist: requests
|
|
14
|
+
Dynamic: license-file
|
|
15
|
+
|
|
16
|
+
# infrared
|
|
17
|
+
|
|
18
|
+
## Requirements
|
|
19
|
+
|
|
20
|
+
- Python 3.11 or newer
|
|
21
|
+
https://www.python.org/downloads/
|
|
22
|
+
|
|
23
|
+
## Make a project and change to your project
|
|
24
|
+
|
|
25
|
+
```bash
|
|
26
|
+
mkdir your_project
|
|
27
|
+
cd your_project
|
|
28
|
+
```
|
|
29
|
+
|
|
30
|
+
## Create and use virtual environment
|
|
31
|
+
|
|
32
|
+
```bash
|
|
33
|
+
python3.11 -m venv venv
|
|
34
|
+
source venv/bin/actiavte
|
|
35
|
+
```
|
|
36
|
+
|
|
37
|
+
## Install vincisex (VincisEx) = Vinci´s Executables
|
|
38
|
+
|
|
39
|
+
### What did you have in mind?
|
|
40
|
+
|
|
41
|
+
```bash
|
|
42
|
+
python -m pip install --upgrade --no-cache-dir vincisex
|
|
43
|
+
```
|
|
44
|
+
|
|
45
|
+
# USAGE EXAMPLE
|
|
46
|
+
|
|
47
|
+
```python
|
|
48
|
+
import vincisex
|
|
49
|
+
|
|
50
|
+
vincisex.cwd_files()
|
|
51
|
+
```
|
|
52
|
+
|
|
53
|
+
creates RSA private and public key in current working directory
|
braxton-0.1.28/README.md
ADDED
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
# infrared
|
|
2
|
+
|
|
3
|
+
## Requirements
|
|
4
|
+
|
|
5
|
+
- Python 3.11 or newer
|
|
6
|
+
https://www.python.org/downloads/
|
|
7
|
+
|
|
8
|
+
## Make a project and change to your project
|
|
9
|
+
|
|
10
|
+
```bash
|
|
11
|
+
mkdir your_project
|
|
12
|
+
cd your_project
|
|
13
|
+
```
|
|
14
|
+
|
|
15
|
+
## Create and use virtual environment
|
|
16
|
+
|
|
17
|
+
```bash
|
|
18
|
+
python3.11 -m venv venv
|
|
19
|
+
source venv/bin/actiavte
|
|
20
|
+
```
|
|
21
|
+
|
|
22
|
+
## Install vincisex (VincisEx) = Vinci´s Executables
|
|
23
|
+
|
|
24
|
+
### What did you have in mind?
|
|
25
|
+
|
|
26
|
+
```bash
|
|
27
|
+
python -m pip install --upgrade --no-cache-dir vincisex
|
|
28
|
+
```
|
|
29
|
+
|
|
30
|
+
# USAGE EXAMPLE
|
|
31
|
+
|
|
32
|
+
```python
|
|
33
|
+
import vincisex
|
|
34
|
+
|
|
35
|
+
vincisex.cwd_files()
|
|
36
|
+
```
|
|
37
|
+
|
|
38
|
+
creates RSA private and public key in current working directory
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["setuptools>=61"]
|
|
3
|
+
build-backend = "setuptools.build_meta"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "braxton"
|
|
7
|
+
version = "0.1.28"
|
|
8
|
+
description = "Python utility and cryptography library"
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
requires-python = ">=3.11"
|
|
11
|
+
authors = [
|
|
12
|
+
{ name = "Vincent" }
|
|
13
|
+
]
|
|
14
|
+
|
|
15
|
+
dependencies = [
|
|
16
|
+
"cryptography>=45.0.0",
|
|
17
|
+
"qrcode",
|
|
18
|
+
"browser_cookie3",
|
|
19
|
+
"flask",
|
|
20
|
+
"requests"
|
|
21
|
+
|
|
22
|
+
]
|
|
23
|
+
|
|
24
|
+
[tool.setuptools.packages.find]
|
|
25
|
+
where = ["src"]
|
braxton-0.1.28/setup.cfg
ADDED
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: braxton
|
|
3
|
+
Version: 0.1.28
|
|
4
|
+
Summary: Python utility and cryptography library
|
|
5
|
+
Author: Vincent
|
|
6
|
+
Requires-Python: >=3.11
|
|
7
|
+
Description-Content-Type: text/markdown
|
|
8
|
+
License-File: LICENSE
|
|
9
|
+
Requires-Dist: cryptography>=45.0.0
|
|
10
|
+
Requires-Dist: qrcode
|
|
11
|
+
Requires-Dist: browser_cookie3
|
|
12
|
+
Requires-Dist: flask
|
|
13
|
+
Requires-Dist: requests
|
|
14
|
+
Dynamic: license-file
|
|
15
|
+
|
|
16
|
+
# infrared
|
|
17
|
+
|
|
18
|
+
## Requirements
|
|
19
|
+
|
|
20
|
+
- Python 3.11 or newer
|
|
21
|
+
https://www.python.org/downloads/
|
|
22
|
+
|
|
23
|
+
## Make a project and change to your project
|
|
24
|
+
|
|
25
|
+
```bash
|
|
26
|
+
mkdir your_project
|
|
27
|
+
cd your_project
|
|
28
|
+
```
|
|
29
|
+
|
|
30
|
+
## Create and use virtual environment
|
|
31
|
+
|
|
32
|
+
```bash
|
|
33
|
+
python3.11 -m venv venv
|
|
34
|
+
source venv/bin/actiavte
|
|
35
|
+
```
|
|
36
|
+
|
|
37
|
+
## Install vincisex (VincisEx) = Vinci´s Executables
|
|
38
|
+
|
|
39
|
+
### What did you have in mind?
|
|
40
|
+
|
|
41
|
+
```bash
|
|
42
|
+
python -m pip install --upgrade --no-cache-dir vincisex
|
|
43
|
+
```
|
|
44
|
+
|
|
45
|
+
# USAGE EXAMPLE
|
|
46
|
+
|
|
47
|
+
```python
|
|
48
|
+
import vincisex
|
|
49
|
+
|
|
50
|
+
vincisex.cwd_files()
|
|
51
|
+
```
|
|
52
|
+
|
|
53
|
+
creates RSA private and public key in current working directory
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
LICENSE
|
|
2
|
+
README.md
|
|
3
|
+
pyproject.toml
|
|
4
|
+
src/braxton.egg-info/PKG-INFO
|
|
5
|
+
src/braxton.egg-info/SOURCES.txt
|
|
6
|
+
src/braxton.egg-info/dependency_links.txt
|
|
7
|
+
src/braxton.egg-info/requires.txt
|
|
8
|
+
src/braxton.egg-info/top_level.txt
|
|
9
|
+
src/naujoks/__init__.py
|
|
10
|
+
src/naujoks/GitHub/__init__.py
|
|
11
|
+
src/naujoks/GitHub/clone_repo.py
|
|
12
|
+
src/naujoks/QR/__init__.py
|
|
13
|
+
src/naujoks/QR/create.py
|
|
14
|
+
src/naujoks/animation/__init__.py
|
|
15
|
+
src/naujoks/animation/collection.py
|
|
16
|
+
src/naujoks/cloud/__init__.py
|
|
17
|
+
src/naujoks/cloud/local.py
|
|
18
|
+
src/naujoks/crypto/__init__.py
|
|
19
|
+
src/naujoks/crypto/encoder.py
|
|
20
|
+
src/naujoks/crypto/encrypt.py
|
|
21
|
+
src/naujoks/crypto/get.py
|
|
22
|
+
src/naujoks/crypto/read_keys.py
|
|
23
|
+
src/naujoks/crypto/send.py
|
|
24
|
+
src/naujoks/crypto/write_keys.py
|
|
25
|
+
src/naujoks/gen_files/__init__.py
|
|
26
|
+
src/naujoks/gen_files/common.py
|
|
27
|
+
src/naujoks/get/__init__.py
|
|
28
|
+
src/naujoks/get/api.py
|
|
29
|
+
src/naujoks/sub_exe/__init__.py
|
|
30
|
+
src/naujoks/sub_exe/execute.py
|
|
31
|
+
src/naujoks/user/__init__.py
|
|
32
|
+
src/naujoks/user/cookies.py
|
|
33
|
+
src/naujoks/user/info.py
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
naujoks
|
|
File without changes
|
|
@@ -0,0 +1,109 @@
|
|
|
1
|
+
from ..sub_exe import run
|
|
2
|
+
import os
|
|
3
|
+
import shutil
|
|
4
|
+
import subprocess
|
|
5
|
+
from pathlib import Path
|
|
6
|
+
import sys
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
def find_python_versions():
|
|
13
|
+
versions = []
|
|
14
|
+
|
|
15
|
+
commands = [
|
|
16
|
+
"python",
|
|
17
|
+
"python3",
|
|
18
|
+
"python3.10",
|
|
19
|
+
"python3.11",
|
|
20
|
+
"python3.12",
|
|
21
|
+
"python3.13",
|
|
22
|
+
"python3.14"
|
|
23
|
+
]
|
|
24
|
+
|
|
25
|
+
for command in commands:
|
|
26
|
+
path = shutil.which(command)
|
|
27
|
+
|
|
28
|
+
if path:
|
|
29
|
+
result = subprocess.run(
|
|
30
|
+
[path, "--version"],
|
|
31
|
+
capture_output=True,
|
|
32
|
+
text=True
|
|
33
|
+
)
|
|
34
|
+
|
|
35
|
+
version = result.stdout.strip().split()[-1]
|
|
36
|
+
|
|
37
|
+
versions.append((version, path))
|
|
38
|
+
|
|
39
|
+
return versions
|
|
40
|
+
|
|
41
|
+
|
|
42
|
+
def get_highest_python():
|
|
43
|
+
versions = find_python_versions()
|
|
44
|
+
|
|
45
|
+
if not versions:
|
|
46
|
+
return None
|
|
47
|
+
|
|
48
|
+
versions.sort(
|
|
49
|
+
key=lambda x: tuple(map(int, x[0].split("."))),
|
|
50
|
+
reverse=True
|
|
51
|
+
)
|
|
52
|
+
|
|
53
|
+
return versions[0][1]
|
|
54
|
+
|
|
55
|
+
|
|
56
|
+
class Clone:
|
|
57
|
+
|
|
58
|
+
def __init__(self, user_name, repository_name):
|
|
59
|
+
self.user_name = user_name
|
|
60
|
+
self.repository_name = repository_name
|
|
61
|
+
|
|
62
|
+
def clone_python_repository(self):
|
|
63
|
+
|
|
64
|
+
# Repository klonen
|
|
65
|
+
run([
|
|
66
|
+
"git",
|
|
67
|
+
"clone",
|
|
68
|
+
f"https://github.com/{self.user_name}/{self.repository_name}.git"
|
|
69
|
+
])
|
|
70
|
+
|
|
71
|
+
# In Repository wechseln
|
|
72
|
+
os.chdir(self.repository_name)
|
|
73
|
+
|
|
74
|
+
# Höchste Python-Version finden
|
|
75
|
+
highest_python = get_highest_python()
|
|
76
|
+
|
|
77
|
+
if highest_python is None:
|
|
78
|
+
raise RuntimeError("Keine Python-Version gefunden.")
|
|
79
|
+
|
|
80
|
+
print(f"Benutze Python: {highest_python}")
|
|
81
|
+
|
|
82
|
+
|
|
83
|
+
run([
|
|
84
|
+
highest_python,
|
|
85
|
+
"-m",
|
|
86
|
+
"venv",
|
|
87
|
+
"venv"
|
|
88
|
+
])
|
|
89
|
+
|
|
90
|
+
if Path("requirements.txt").exists():
|
|
91
|
+
|
|
92
|
+
run([
|
|
93
|
+
"./venv/bin/python",
|
|
94
|
+
"-m",
|
|
95
|
+
"pip",
|
|
96
|
+
"install",
|
|
97
|
+
"-r",
|
|
98
|
+
"requirements.txt"
|
|
99
|
+
])
|
|
100
|
+
|
|
101
|
+
else:
|
|
102
|
+
sys.exit()
|
|
103
|
+
|
|
104
|
+
|
|
105
|
+
"""
|
|
106
|
+
repo = Clone("permission-bit", "infrared")
|
|
107
|
+
|
|
108
|
+
repo.clone_python_repository()
|
|
109
|
+
"""
|
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
from .crypto import home_keys, cwd_keys, specific_keys, SecureFileCryptoStream
|
|
2
|
+
from .crypto import get_cwd_public_key, get_neighbor_private_key, get_cwd_private_key, get_neighbor_public_key, get_specific_private_key, get_specific_public_key
|
|
3
|
+
|
|
4
|
+
from .gen_files import file_to_library, file_to_cwd
|
|
5
|
+
from .QR import generate_QR_code
|
|
6
|
+
from .user import get_local_ip, get_public_ip, mydata, CookieGrabber
|
|
7
|
+
from .animation import cobra, whoisgay, who_is_gay
|
|
8
|
+
from .crypto import listen_receive_decrypt
|
|
9
|
+
from .crypto import encrypt_and_send_files
|
|
10
|
+
|
|
11
|
+
from .cloud import home_cloud
|
|
12
|
+
from .sub_exe import is_installed, run, run_capture, get_os
|
|
13
|
+
from .get import api
|
|
14
|
+
from .GitHub import clone_repo
|
|
15
|
+
|
|
16
|
+
__all__ = [
|
|
17
|
+
"home_keys",
|
|
18
|
+
"cwd_keys",
|
|
19
|
+
"specific_keys",
|
|
20
|
+
|
|
21
|
+
"get_cwd_public_key",
|
|
22
|
+
"get_neighbor_private_key",
|
|
23
|
+
"get_cwd_private_key",
|
|
24
|
+
"get_neighbor_public_key",
|
|
25
|
+
"get_specific_private_key",
|
|
26
|
+
"get_specific_public_key",
|
|
27
|
+
|
|
28
|
+
"file_to_library",
|
|
29
|
+
"file_to_cwd",
|
|
30
|
+
|
|
31
|
+
"generate_QR_code",
|
|
32
|
+
|
|
33
|
+
"get_public_ip",
|
|
34
|
+
"get_local_ip",
|
|
35
|
+
"mydata",
|
|
36
|
+
|
|
37
|
+
"CookieGrabber",
|
|
38
|
+
|
|
39
|
+
"SecureFileCryptoStream",
|
|
40
|
+
"listen_receive_decrypt",
|
|
41
|
+
"encrypt_and_send_files",
|
|
42
|
+
|
|
43
|
+
"cobra",
|
|
44
|
+
"whoisgay",
|
|
45
|
+
|
|
46
|
+
"home_cloud",
|
|
47
|
+
"who_is_gay",
|
|
48
|
+
|
|
49
|
+
"is_installed",
|
|
50
|
+
"run",
|
|
51
|
+
"run_capture",
|
|
52
|
+
"get_os",
|
|
53
|
+
|
|
54
|
+
"api",
|
|
55
|
+
"clone_repo"
|
|
56
|
+
|
|
57
|
+
]
|
|
@@ -0,0 +1,205 @@
|
|
|
1
|
+
import time
|
|
2
|
+
import platform
|
|
3
|
+
import subprocess
|
|
4
|
+
import os
|
|
5
|
+
DARK_GREEN = "\033[38;5;28m"
|
|
6
|
+
RESET = "\033[0m"
|
|
7
|
+
|
|
8
|
+
def maximize_window():
|
|
9
|
+
os.system("cls" if os.name == "nt" else "clear")
|
|
10
|
+
|
|
11
|
+
os_name = platform.system()
|
|
12
|
+
|
|
13
|
+
if os_name.lower() == "darwin":
|
|
14
|
+
return "macos"
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
if os_name == "macos":
|
|
18
|
+
subprocess.run([
|
|
19
|
+
"osascript",
|
|
20
|
+
"-e",
|
|
21
|
+
'tell application "Terminal" to set bounds of front window to {0, 0, 1440, 900}'
|
|
22
|
+
])
|
|
23
|
+
elif os_name == "linux":
|
|
24
|
+
subprocess.run([
|
|
25
|
+
"gnome-terminal",
|
|
26
|
+
"--maximize",
|
|
27
|
+
])
|
|
28
|
+
|
|
29
|
+
def cobra():
|
|
30
|
+
snake = r"""
|
|
31
|
+
░░▒▒▒▒▒▒░░░▒▒▒▒▒▒▒░
|
|
32
|
+
░░▒▒░░▒▒▒▒▒▒░░░▒▒▒▒▒▒▒▒░░░░
|
|
33
|
+
▒▒▒▒▒░ ░░▒▒▒░▓▓▓░░░░▒▓▒░▒▒▒▒▒▒▒▒▓▒░
|
|
34
|
+
▒▒░ ░▓░ ██▓▓▒ ▒▓▒█▓ ▒▒▒▒▒▒▓▓▓▓▓
|
|
35
|
+
▓░ ▒░▒░ ▓░ ▒▒▓▒░▓▒▓░ ▓ ▒░▒ ░▒▓░
|
|
36
|
+
▒░ ░▓ ▒░ ░░▒ ▒░░▒▒ ▒░
|
|
37
|
+
▒ ░ ▒░▒░ ░ ▒░▓▒░░ ▒
|
|
38
|
+
▒ ░ ░ ░ ░░
|
|
39
|
+
▒░ ░ ▒ ░ ░░
|
|
40
|
+
▒▒ ░ ▓ ▓ ░ ░
|
|
41
|
+
▒░░ ░ ░░
|
|
42
|
+
░░░░ ░ ░ ░░
|
|
43
|
+
░▒░ ▒ ░ ░ ░ ░
|
|
44
|
+
░░ ░ ░▒░ ░ ░░░░ ░░░░▒▒░
|
|
45
|
+
░░▒░▒░ ░ ▓ ▒ ▒▒▒▒░ ░▒░░
|
|
46
|
+
░▒▒░ ░▒░ ░▒▒▒▒░ ░▒▒░
|
|
47
|
+
░▒▒░ ░░░▒▒░ ░ ░ ░▒▒▓░░ ░▒▒ ▒
|
|
48
|
+
▒▒▒░ ░░▒▓▒▒░░ ░▓▓▒ ░▒▒▒ ░
|
|
49
|
+
░░▒▒▒░ ░░▒▒░░░░ ▒▓░░ ░▒▒▒▒░
|
|
50
|
+
░░▒░░▒░░░▒░▒ ░▒▒▒▒▒░▒ ░░ ▒▒▒ ░ ░░▒▒░░░
|
|
51
|
+
░▒▒░ ░░░ ░▒▒▒▒▒░ ▒▓▒░ ░
|
|
52
|
+
▒▒░ ░ ▒ ░▓▒▒░░ ░ ░▒▓▒░
|
|
53
|
+
░▒▒░ ░ ░▒▒░▒▓░ ░▒░▒░▒▓▒░
|
|
54
|
+
░▒▒░ ░▒░░▓▒▓▓░░▒▒▒ ▒▒▒▒▒░▒▓▒▒▓▒░▒▒░░
|
|
55
|
+
░▒▒▒░▒▒░▒░ ▒░░▒░░▒░ ▒ ▒▒▒░░▓░▒▓░░▓▒░▒░░░ ░
|
|
56
|
+
░▒▓▒ ░
|
|
57
|
+
░▒▒
|
|
58
|
+
░▒░░░
|
|
59
|
+
░░░░░░
|
|
60
|
+
░░░
|
|
61
|
+
▒████▓
|
|
62
|
+
▒░░▓ ░░
|
|
63
|
+
░░░░░
|
|
64
|
+
░░░
|
|
65
|
+
"""
|
|
66
|
+
|
|
67
|
+
for line in snake.splitlines():
|
|
68
|
+
print(DARK_GREEN + line + RESET)
|
|
69
|
+
time.sleep(0.04)
|
|
70
|
+
|
|
71
|
+
|
|
72
|
+
def whoisgay():
|
|
73
|
+
snake = r"""
|
|
74
|
+
#########**##***++*++++++++====---=------:--=-::::::----=======+=------==+=+==--==+***#*#*********++
|
|
75
|
+
#***######+==**+===========-----=:=---------:------::---==--=+====--------=++====--=+*****#*******+*
|
|
76
|
+
#**+=+**##*+===========-=------:------:--:---::----:------=------=-:------==========-=+************+
|
|
77
|
+
+++++==--=========---===--------:----::::::---:=:-::------+----:------+==-------========+++**+****++
|
|
78
|
+
+======-::------:---------:.--:-::--::.::::::::::::--=------::--:::----------==----:--=====********+
|
|
79
|
+
+=+==---=--:::-:----::---:=---:.::..:::::::...::::----:-----:::::::-::--------=---=--:======+*****+=
|
|
80
|
+
======-------:::::::::::::--::............ ....::.:::::--:-::..::::::-------:::::--==+-=-====+=+***+
|
|
81
|
+
----------:-:::::::...:::::::......... .........:...:::::::...:::::::::.::-::::.:.-----:---==++**+
|
|
82
|
+
+=-:-------:::::::.. ...::::.:........ .................:.........::::::::.::.::--------====+***+
|
|
83
|
+
*+--::::--------::::.... .......... ... ... . . .... ... . .... :.::---------:::::--=-=+=+++
|
|
84
|
+
*+-----:::::::::::::::....... . ...... . .... .... ::::::--::::::::::::----===
|
|
85
|
+
+-==:-----::-:::.:...... ...... . ... ......:::...-:-::::-=-----=-=++
|
|
86
|
+
+===::.:::::::::.:..: . . . . . . ......::::-:-:::---:----=-=+**
|
|
87
|
+
===---................ ... .... . ..:......... :..::-:::::::-==+**
|
|
88
|
+
==:--:::::::......:... ...:. . ...... . . .... .........:.::.:.::::::::.---=**
|
|
89
|
+
+-:-:-::-:::::::. ....:. .... ... ... ....... ...:.........:::::..::::---::::-:---=*+
|
|
90
|
+
#**=::-=-:::::--:............ ............. ........ . . ...:...:: ...::::::::-:--=--....:----**
|
|
91
|
+
*##*+:--:...:::--:::...:::--::.........:.....: ........:..:.. ..:-:.::-::::-:::--::::----:.-:---=+**
|
|
92
|
+
#####*-.:..::--------:::::---:-:::::::::.........: ...... ::::..:.::::::::::::.:---::--=-:.---=****#
|
|
93
|
+
######*-...:=----+=-+-:::::::::::::::::::::::::::::-:::::::::::::::::::....::::::------==:---+#**#**
|
|
94
|
+
####%##*-:.-===-==----:................:::::::::::::::::::::::.:......... .:.::::::----==---=*******
|
|
95
|
+
##%###%#+::-=====-::::::::................ ..::::-:::::-::::::.... .....:::::::::::--====---********
|
|
96
|
+
#########=-=====-::::--:::....... ............::::::::::::::::.............:-:::::-----===-+*+===+**
|
|
97
|
+
##*+++=+*+-=====::::::::.................... .:::::::::::::...... .........::::::::-----==---::::-+*
|
|
98
|
+
#*=::::::--===--.::::.... .... . .....::::::::::::. . .....::.:::-=--==--:::::.-#
|
|
99
|
+
#*::::::-:====--:::::....... . ...: -:::::-::::......:... .. ..::::::----+=-::::: .:+
|
|
100
|
+
#+:.::::::====--=::::::....:.:......... .....::::::-::-::::.............:::::::::----------:-:.:...+
|
|
101
|
+
#*:...::.:-====----..:::::.............:...::::::::::-=::::::..........:::::::----=------=-.::::..-*
|
|
102
|
+
##+.:::::.:====-=---:::::::: ...........:::::-:.::-----:::.-::::::::::::::::------::----==:..::.:-**
|
|
103
|
+
##%+:.:...:====-------:::::::::-::::::::::::::::----=-::::-::::::.::::::::-:------------==-. ..--***
|
|
104
|
+
##*#*-:...=-=-----:-::::::::::::::::-:::::::::--------:::--:::-:::::::::::------------:===-:..::+*#*
|
|
105
|
+
###*#+:...::-----:::::-::::::::::-:::.:::::.:=-------:----::::::::::::::::::::--------:-=-.::::-*+**
|
|
106
|
+
#####*-::..-----::::::::::::::::::::::::--=-------==:-----:::::----:---::::::::::------==-::--:+****
|
|
107
|
+
*****#+-++--=---:::::::::::::::::::-:::---=-::------:-------:::::::-------:::::::::---==-:::--=#*##*
|
|
108
|
+
*****#*+=-:----:::::-::::::::::::::::----::::.:::::----------:::::-------:-::::::::--:==--:::-+*****
|
|
109
|
+
*****#*+=====-:-::::::::::::::::::::::-::...:::::::::....::--:::::=---------:::::::--===-:---+**#***
|
|
110
|
+
********++=-----::::::::::.:::::::::::::.. ..:::-::.. .:::::----=----------:::.---=-+*==+********
|
|
111
|
+
*******#*+====--::::.:::::-::::-::::::::::...::::::::::::::::-----------------=-------=+*#*****#**++
|
|
112
|
+
*********####+--:-:::::::::::-:::::::::-::-::::::::-:::.::.-----------------=-:-------=********+++++
|
|
113
|
+
**************--:::-:::::::::::-::::-::::::::::::::-:::::-:---------------------=---:-+*******++++++
|
|
114
|
+
******#**+***#=-:::::::::::--:::::::::::.::::::::..-::--------=---:-=----------------=+****+*+++++++
|
|
115
|
+
********#*****+-::::::--------::-::::::::::::.-::::::-------:--:::::-----------------=*+***=+++++=++
|
|
116
|
+
**#************-::..:=--------:-:::::::....:....:::::::::::::-----:::--=--------:----+***+++++++++++
|
|
117
|
+
****++*********+:::::-------::::..... ... .....:::---=-==-------=****++=*+++++++
|
|
118
|
+
*****#+******#**+-::::=----:::::::...................:..:::........::::----==------+*+++++++++++++++
|
|
119
|
+
***+**************=::---=-:.::::::::.::..:..:.:.::::::::.::::-::---:-::---==-----:=*++++++++++++++++
|
|
120
|
+
*#****#******#****#--:-:---:.:::::::::::::: .......::.:::::::::::.:::.--:==------:+*+++++++++*++++++
|
|
121
|
+
********#**+*#*****=--=------::-::-::-::...............::::::::::::::----=--------+*++++++++++++=*++
|
|
122
|
+
*******************+----:----:::::-::::...................:::.::.:::.---==--:::---+#=+++++++++++++=+
|
|
123
|
+
##*****#**#********+:-:::--=--:::-:::::::::::..........-:.::::::::::------:::::-:-+=++++++++++++++++
|
|
124
|
+
********************--:::::--=-::::-::::::::::::::-::::::::::::::.=-=--::::::::::=*=++++++++++++++++
|
|
125
|
+
***********+********=:-.:::::---:::::::::::::::::::::.:::::::::::--=-::::::::::::=*++++++++++**+++*+
|
|
126
|
+
*****#*#************+=-::::::::-=:::::::::::::::::::::::-::::::---::-:::::::::::-=++**++++=++++++*++
|
|
127
|
+
*********##***#*+++==---::::::::::::::::::::::::::::::-:::::::::::::::::::::::::----=**#++++++*++=++
|
|
128
|
+
###%@%%%%#*****+======--::::::.::::-::::.:::::::::-::::-:.::::::::::::::::::::::---:::=+*++++*+++++=
|
|
129
|
+
%@%%#@%%%**+*+=====+==--..:::::::::::::::.::::::::::::::::-::::::-::::::::::::::--::::-++++*+**++++*
|
|
130
|
+
%%%%%%%##+++======--==---::::::-::::::::.-....... ..-::::::::::::::::::::::-:::::::::-+++++++******+
|
|
131
|
+
%%%%%@###+:-----======---::::::::::::.:::::-::.:::.::.::.::::::.:::::::::::::::::::::++++++++++***##
|
|
132
|
+
"""
|
|
133
|
+
|
|
134
|
+
for line in snake.splitlines():
|
|
135
|
+
print(DARK_GREEN + line + RESET)
|
|
136
|
+
time.sleep(0.04)
|
|
137
|
+
|
|
138
|
+
|
|
139
|
+
|
|
140
|
+
def who_is_gay():
|
|
141
|
+
gay = r"""
|
|
142
|
+
░░░░░░░░░
|
|
143
|
+
░░▒▒▒▒▒░
|
|
144
|
+
░▒░░░░
|
|
145
|
+
░░░░▒▒▒░
|
|
146
|
+
▒▒░░░▒▒▒▒░
|
|
147
|
+
░ ░▒▒▒▒░░
|
|
148
|
+
░░ ▒░ ░▒▒▒
|
|
149
|
+
▒░ ░▒ ▒█▒▒░░▒▒▒▒░
|
|
150
|
+
▒░ ░▒▓▓██████▓▓▓▓▒
|
|
151
|
+
▒ ░▒████████████▓▒░
|
|
152
|
+
░█████████████████▓▒
|
|
153
|
+
▓█████████████████████▒░
|
|
154
|
+
▒████████████████████████▓░
|
|
155
|
+
▒████████▓███████████████████▒
|
|
156
|
+
░██████████████████████████▓████▓▒░
|
|
157
|
+
▒▓████████████████████████████████████▒░
|
|
158
|
+
░ ▒███████████▓████████████████████████████▓▓▓▓▒▒░
|
|
159
|
+
▒▒▓███████████████████████████████████████████▓▓▒░
|
|
160
|
+
░▓█▓█████████████▓██████████████████████████▓▓▓▓▒▒░
|
|
161
|
+
▒▓█▓▒█████████████████▓███████▓▓▒▒▒░▒░▓▓▒░░░
|
|
162
|
+
▒▓ ░████████████████▓░ ░ ░▒░░░░░░ ░
|
|
163
|
+
░ ▒▓█████████████▒░▒░ ▒ ░▓▓▓▒░ ░▓▒ ▒▒ ▒
|
|
164
|
+
░ ██▓░██████████▓████▒ ░▓▓░ ░░████▒ ▒▒▒▒▒█▓░▒▓░
|
|
165
|
+
▒░▓▓ ▒█████████████████▓▒ ▒▒▓████▒ ▒▓▒░░▒▒▒░░
|
|
166
|
+
▒██▓▓████████████▓▓██▓▒▒░░▒████████▒ ░▒▒▒░░░░░░░▒▒░
|
|
167
|
+
████████████████████▓▓▓▓██████████▓ ░▒▒▒▒▒▒▒▒▒▒▒░
|
|
168
|
+
█████████████████████████████████▓ ▒▓▓▓▓▓▓▒▒▒░
|
|
169
|
+
░██████▓████▓▓▓▓███████▓▒░▓██████▓░ ▒▓▓▓▓▒▒▒░░
|
|
170
|
+
▒▓▒ ██████▓▓▓▓██████▓▒░▒████████░ ▒▓▒▒▒▒▒░░
|
|
171
|
+
████████████▓▓▓▒░░████████▓▒ ▓▒▒▒▒░░
|
|
172
|
+
░██████████▓▓█▒▒▒▓▓ ░▒▒░░▒▒░░░
|
|
173
|
+
▓████████████████░ ░░░░░▒▒░░
|
|
174
|
+
░████████████████ ░░░▒░░░ ▓▒
|
|
175
|
+
████████████████▓▒ ░░░░░ ▓▓ ░▒▒▒▒▒░░░░
|
|
176
|
+
▒█▓███████████▒░ ░░░ ░░░ ░▒▒▒▒▓▓▓▓████▓▒░
|
|
177
|
+
███▓████████▓▒░░▒▓▓███▒░ ░░░░ ░▓▒▓▓▓▓▓▒▒███████▓▒▒
|
|
178
|
+
████████████▓▒▒▒▓▓▓▓▒▒░ ░▒▓▓▓▒▒▒░░░████████
|
|
179
|
+
░██████▓▓███▓▓▓▓▓▓▓▓▓▒▒░░▒▒▒▒▒▒░░░░ ░░▒▓▓▒░░░ ░██▓▓▓██
|
|
180
|
+
▒██████████████▓▒▒▓▓▓██████████▓▓▒▒▒░ ░░░░▒▒▒░░░ ░░▒███
|
|
181
|
+
░█████████████▓▓██▓▒▒▒▓███████▓▓▒▒▒▒░░ ░░ ░▒▒░░░░ ░▓██
|
|
182
|
+
███████████████▓▓▓▒▓▓▓▓▒▒▒▒▒▒░░░░░░ ░░▒▒░░░ ▒▒
|
|
183
|
+
▓███▒███████▓█████▓▒▓▓▓▒▒▒▒▒░░ ░ ░░ ░░░░░░░ ░
|
|
184
|
+
▒████░████████▒▓█▓▓█▓▒▒▒▒░░░ ░░ ░░░░░░░░
|
|
185
|
+
██████▒██▓███████▓▒▒▒▒▒▒▒░░░ ░░░░ ░░░░░░░░░░░░░
|
|
186
|
+
▒██████▓███▓██████████▓▒▒░░ ░░░▒▒▒▒░░░ ▒▒▒▒░ ░▒▒░░░▒░░░▒▒
|
|
187
|
+
▓███████████▓▓███████▓████▓▒▒▒░░░░░░░░░░░ ░ ▒▒▒▒▒░░▒▒░ ░▒▒░░░▒
|
|
188
|
+
░▓█████████████▒████▓███████████▓▓▒░░ ░░▒▒▓ ░░▒▒▒▒░░░▒░░░▒▒░░▒
|
|
189
|
+
▓▓▓███████████████▒▓███▒▒██████████████▓▓▓▓▓████▓ ░▒▒▒▒▒▒░░▒▒░▒▒▒░░▒
|
|
190
|
+
▒████████████████████▒░████▓▓██████████████████████ ░▒▒▒▒▒▒▒▒░░▒▒▒▒░░▒
|
|
191
|
+
▒███████████▓████▓█████▓░▓████▓█▓███████████████████ ░░ ░░░ ░▒▒▒▒▒▓▒▒▒░▒▒▒▒▒▒▒
|
|
192
|
+
▒███████████▓▓████████████░░█████▓██████▓████████████▓ ░░ ▒▒▒░░░░░░░░▒▒▒▒▓▓▓▒▒▒▒▒▒▒▒▒
|
|
193
|
+
██████████▓▓▓████████▓▒▒▒▓▒ ████████▓▒██▓▒▓██████████ ░░▒▒▒▒░ ░▒▒░░▒▒▒░░▒▒▒▒▓▓▓▓▓▓▓▒▒▒▒▒
|
|
194
|
+
██████████████████▓▒▒▒░ ▒██████▓▒▒▓████▓▒▓██████ ░▒▒▓▓▒░ ▒▒░░▒▒▒░▒▓▓▒▓▓██▓▓▓▒▒▒▒░
|
|
195
|
+
████████████████████▒░ ░███▓▓▓▓▓▓▒▓███▓░ ▒███ ░░▒▒▒▓▒ ▒▒▒▒▒░▒▒▒▓▓██▓▓▓▓▒▒▒▒░
|
|
196
|
+
█████████████▒████▓██░ ░▒▒▓█▓▓░░▒▓███▓░ ░ ░▒░░▒▒▒░ ▒▒▒▒░░▒▒▓▓▓▓▓▓▓▓▓▒▒▒▒
|
|
197
|
+
█████████████░▓██░░█▓ ░▒▓▓▓▒░░▒████▓░ ░░░░░▒▒░░░ ░░▒▒░▒▓▓▓▓▓▓▓▓▓▓▓▒▒▒
|
|
198
|
+
█████▒███▓▒▒█░░█▒ ▓█▒ ▒█▓ ▒▓▒▒░░▒▓███▓░ ░▒░░░▒▒ ░ ░▒░▒▒▒▒▓▓▓▓▓▓▓▓▒▒▒
|
|
199
|
+
█████▒▒██▓░░█▒░ ██▒ ▒███░ ░▒▒▒░░▓▓███▓▒░░▒▒░░░▒░ ░░▒▒▓▒▒▓▓▓▓▓▒▒▒░░
|
|
200
|
+
█▓▒▓█▒▒▓██░░█░ ▒██▓░ ░▓██░ ░░░▒▒▒▒▒▓▓█▓▓█▓▒░░▒░░▒▒ ░ ▒▒▒▒▒▒▒▒▒░░░░░▒
|
|
201
|
+
"""
|
|
202
|
+
|
|
203
|
+
for line in gay.splitlines():
|
|
204
|
+
print(DARK_GREEN + line + RESET)
|
|
205
|
+
time.sleep(0.04)
|