boomcode 0.1.1__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.
- boomcode-0.1.1/LICENSE +21 -0
- boomcode-0.1.1/PKG-INFO +33 -0
- boomcode-0.1.1/README.md +8 -0
- boomcode-0.1.1/boomcode/__init__.py +1 -0
- boomcode-0.1.1/boomcode/boomcode.py +141 -0
- boomcode-0.1.1/boomcode.egg-info/PKG-INFO +33 -0
- boomcode-0.1.1/boomcode.egg-info/SOURCES.txt +12 -0
- boomcode-0.1.1/boomcode.egg-info/dependency_links.txt +1 -0
- boomcode-0.1.1/boomcode.egg-info/requires.txt +2 -0
- boomcode-0.1.1/boomcode.egg-info/top_level.txt +1 -0
- boomcode-0.1.1/pyproject.toml +3 -0
- boomcode-0.1.1/setup.cfg +4 -0
- boomcode-0.1.1/setup.py +26 -0
- boomcode-0.1.1/tests/test.py +5 -0
boomcode-0.1.1/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2025 [daredevilmonkeyface (aka daredevilmonke)]
|
|
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
|
|
13
|
+
all 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
|
|
21
|
+
THE SOFTWARE.
|
boomcode-0.1.1/PKG-INFO
ADDED
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
Metadata-Version: 2.2
|
|
2
|
+
Name: boomcode
|
|
3
|
+
Version: 0.1.1
|
|
4
|
+
Summary: A fun, cool prank package that is easy to code in.
|
|
5
|
+
Home-page: https://github.com/daredevilmonkeyface/boomcode
|
|
6
|
+
Author: daredevilmonkeyface (AKA daredevilmonke)
|
|
7
|
+
Classifier: Programming Language :: Python :: 3
|
|
8
|
+
Classifier: Intended Audience :: Developers
|
|
9
|
+
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
10
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
11
|
+
Classifier: Operating System :: Microsoft :: Windows
|
|
12
|
+
Requires-Python: >=3.6
|
|
13
|
+
Description-Content-Type: text/markdown
|
|
14
|
+
License-File: LICENSE
|
|
15
|
+
Requires-Dist: pyautogui
|
|
16
|
+
Requires-Dist: pywin32
|
|
17
|
+
Dynamic: author
|
|
18
|
+
Dynamic: classifier
|
|
19
|
+
Dynamic: description
|
|
20
|
+
Dynamic: description-content-type
|
|
21
|
+
Dynamic: home-page
|
|
22
|
+
Dynamic: requires-dist
|
|
23
|
+
Dynamic: requires-python
|
|
24
|
+
Dynamic: summary
|
|
25
|
+
|
|
26
|
+
Hello, I am daredevilmonkeyface (AKA daredevilmonke), and am a begginer in python. I thought that it would be cool if someone could prank their friend with just a line of code. That would be great! But still, keep in mind I am a beginner and could not make this any better (mabye I could add more functions). Thank you for using this package! π« π
|
|
27
|
+
|
|
28
|
+
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
|
|
32
|
+
https://github.com/daredevilmonkeyface/boomcode
|
|
33
|
+
This project is licensed under the [MIT License](./LICENSE).
|
boomcode-0.1.1/README.md
ADDED
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
Hello, I am daredevilmonkeyface (AKA daredevilmonke), and am a begginer in python. I thought that it would be cool if someone could prank their friend with just a line of code. That would be great! But still, keep in mind I am a beginner and could not make this any better (mabye I could add more functions). Thank you for using this package! π« π
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
|
|
7
|
+
https://github.com/daredevilmonkeyface/boomcode
|
|
8
|
+
This project is licensed under the [MIT License](./LICENSE).
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
from .boomcode import sass_reply, annoying_load, matrix_overtake, crash, crazy_mouse
|
|
@@ -0,0 +1,141 @@
|
|
|
1
|
+
import random
|
|
2
|
+
import time
|
|
3
|
+
from itertools import count as breakloop
|
|
4
|
+
import win32gui as g,win32api as a
|
|
5
|
+
import pyautogui
|
|
6
|
+
|
|
7
|
+
def sass_reply():
|
|
8
|
+
sass_responses = [
|
|
9
|
+
"Oh, you want my opinion? Nah.",
|
|
10
|
+
"Let me think ... no.",
|
|
11
|
+
"π©°π
π
π
πππ",
|
|
12
|
+
"I'm not here to hold your hand.",
|
|
13
|
+
"If I had a penny for every time I heard that I'd be rich enough to ignore you.",
|
|
14
|
+
"Your question is beyond my level of interest.",
|
|
15
|
+
]
|
|
16
|
+
|
|
17
|
+
return random.choice(sass_responses)
|
|
18
|
+
|
|
19
|
+
def annoying_load():
|
|
20
|
+
print("Loading...")
|
|
21
|
+
time_list = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]
|
|
22
|
+
time_list_2 = [15, 20]
|
|
23
|
+
time.sleep(random.choice(time_list))
|
|
24
|
+
print("Not Done!")
|
|
25
|
+
time.sleep(1)
|
|
26
|
+
print("Loading...")
|
|
27
|
+
time.sleep(random.choice(time_list))
|
|
28
|
+
print("Almost there...")
|
|
29
|
+
time.sleep(random.choice(time_list))
|
|
30
|
+
print("Just kidding, I'm not loading anything for you.")
|
|
31
|
+
time.sleep(1)
|
|
32
|
+
print("Or am I?")
|
|
33
|
+
time.sleep(1)
|
|
34
|
+
print("Loading... please wait.))")
|
|
35
|
+
print("Oh.. and here's a picture of me:")
|
|
36
|
+
time.sleep(1)
|
|
37
|
+
print(""""
|
|
38
|
+
|
|
39
|
+
βββββββββ§β§β§β§β§β§β§ββββββββXXXXXXXβXXXXXββββββββββββββββββββββββββββββββββββββββββββ
|
|
40
|
+
ββββββββ§ββββββββ§βββXXXXXβββββββββββXββ§β§β§β§β§β§β§ββββββββββββββββββββββββββββββββββββ
|
|
41
|
+
ββββ§β§β§β§ββββββββββ§XXβββββββββββββββββ§β§βββββββ§β§β§β§β§ββββββββββββββββββββββββββββββββ
|
|
42
|
+
βββ§ββββ§β§ββββββββ§βXβββββββββββββββββ§βXββββββββββ§ββ§ββXXXXXββββββββββββββββββββββββ
|
|
43
|
+
ββ§ββββββ§β§β§β§β§β§β§β§ββXXβββββββββββββββββ§β§βββββ§βββββββXXββββXββββββββββββββββββββββββ
|
|
44
|
+
ββXβββXXXXββββββββXβββββββββββββββββXβ§β§β§β§β§β§β§βββββββββXXXββββββββββββββββββββββββ
|
|
45
|
+
βXβββββββXβββββββXXβββββββββββββββββXβββββββ§β§XββββββββββXβββββββββββββββββββββββ
|
|
46
|
+
XβββββββXXβββββββXββββββββββββββββXXXββββββββββββββββXXXββXXXββββββββββββββββββββββ
|
|
47
|
+
XβββββXββXβββββββXXXββββββββββββXXXβββββββββββββββββββXXXββXXXββββββββββββββββββββββ
|
|
48
|
+
βXXβββXXXXβββββββββXXXXXXXXXXXXXXββββββββββββββββXXXXXββββββββββββββββββββββββββ
|
|
49
|
+
ββXXXXββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
|
|
50
|
+
ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
|
|
51
|
+
ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
|
|
52
|
+
βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
|
|
53
|
+
ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
|
|
54
|
+
ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
|
|
55
|
+
""")
|
|
56
|
+
print("Actually loading something, please wait...")
|
|
57
|
+
time.sleep(random.choice(time_list_2))
|
|
58
|
+
print("Really done now!")
|
|
59
|
+
time.sleep(10)
|
|
60
|
+
print("Just kidding, I'm still loading.")
|
|
61
|
+
print("""βΛπΛ β±|γ
|
|
62
|
+
(ΛΛ γ7 look, a bee!
|
|
63
|
+
|γΛγ΅
|
|
64
|
+
γγΛ,)γ """)
|
|
65
|
+
|
|
66
|
+
def crash():
|
|
67
|
+
print("System crash imminent! Brace yourself!")
|
|
68
|
+
time.sleep(2)
|
|
69
|
+
print("Just kidding, but wouldn't that be fun?")
|
|
70
|
+
time.sleep(1)
|
|
71
|
+
print("Or would it? Who knows...")
|
|
72
|
+
time.sleep(1)
|
|
73
|
+
print("Please wait while microsoft tries to fix this.")
|
|
74
|
+
time.sleep(2)
|
|
75
|
+
print("Oooh they fixed it!")
|
|
76
|
+
print("You have 10 seconds before the system crashes. (really crashes this time)")
|
|
77
|
+
print("This is not a joke, I promise.")
|
|
78
|
+
print("10")
|
|
79
|
+
time.sleep(1)
|
|
80
|
+
print("9")
|
|
81
|
+
time.sleep(1)
|
|
82
|
+
print("8")
|
|
83
|
+
time.sleep(1)
|
|
84
|
+
print("7")
|
|
85
|
+
time.sleep(1)
|
|
86
|
+
print("6")
|
|
87
|
+
time.sleep(1)
|
|
88
|
+
print("5")
|
|
89
|
+
time.sleep(1)
|
|
90
|
+
print("4")
|
|
91
|
+
time.sleep(1)
|
|
92
|
+
print("3")
|
|
93
|
+
time.sleep(1)
|
|
94
|
+
print("2")
|
|
95
|
+
time.sleep(1)
|
|
96
|
+
print("1")
|
|
97
|
+
time.sleep(1)
|
|
98
|
+
print("SO LONG, SUCKER!")
|
|
99
|
+
list(breakloop(0))
|
|
100
|
+
|
|
101
|
+
def matrix_overtake():
|
|
102
|
+
print("Welcome to the Matrix!")
|
|
103
|
+
print("This program will take over your screen with a Matrix-like effect.")
|
|
104
|
+
print("Simply stop running this script to exit.")
|
|
105
|
+
print("You have 5 seconds to prepare.")
|
|
106
|
+
time.sleep(5)
|
|
107
|
+
sym = "。οΎο½±οΎοΎοΎο½ΉοΎο½΄ο½Άο½·οΎοΎ"
|
|
108
|
+
sym += "ζ₯οΎοΎοΎο½°ο½³ο½ΌοΎ
οΎοΎο½»οΎοΎπ
ππ©°"
|
|
109
|
+
sym += "0123456789010101100101001"
|
|
110
|
+
|
|
111
|
+
dc = g.GetDC(0)
|
|
112
|
+
font = g.LOGFONT()
|
|
113
|
+
font.lfFaceName = "Consolas"
|
|
114
|
+
fnt = g.CreateFontIndirect(font)
|
|
115
|
+
g.SelectObject(dc, fnt)
|
|
116
|
+
g.SetBkColor(dc, a.RGB(0, 0, 0))
|
|
117
|
+
colors = [
|
|
118
|
+
a.RGB(0, 255, 65),
|
|
119
|
+
a.RGB(0, 59, 0),
|
|
120
|
+
a.RGB(0, 143, 17)
|
|
121
|
+
]
|
|
122
|
+
w = a.GetSystemMetrics(0)
|
|
123
|
+
h = a.GetSystemMetrics(1)
|
|
124
|
+
while True:
|
|
125
|
+
x = random.randint(0, w) // 10 * 10
|
|
126
|
+
to = random.randint(0, h)
|
|
127
|
+
for y in range(0, to, 15):
|
|
128
|
+
color = random.choice(colors)
|
|
129
|
+
g.SetTextColor(dc, color)
|
|
130
|
+
g.DrawText(dc,
|
|
131
|
+
random.choice(sym),
|
|
132
|
+
1,
|
|
133
|
+
(x, y, x + 20, y + 30), 0)
|
|
134
|
+
|
|
135
|
+
def crazy_mouse():
|
|
136
|
+
x,y = pyautogui.position()
|
|
137
|
+
|
|
138
|
+
x += random.randint(-250,250)
|
|
139
|
+
y += random.randint(-250,250)
|
|
140
|
+
|
|
141
|
+
pyautogui.moveTo(x,y,duration=0.0000000000001)
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
Metadata-Version: 2.2
|
|
2
|
+
Name: boomcode
|
|
3
|
+
Version: 0.1.1
|
|
4
|
+
Summary: A fun, cool prank package that is easy to code in.
|
|
5
|
+
Home-page: https://github.com/daredevilmonkeyface/boomcode
|
|
6
|
+
Author: daredevilmonkeyface (AKA daredevilmonke)
|
|
7
|
+
Classifier: Programming Language :: Python :: 3
|
|
8
|
+
Classifier: Intended Audience :: Developers
|
|
9
|
+
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
10
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
11
|
+
Classifier: Operating System :: Microsoft :: Windows
|
|
12
|
+
Requires-Python: >=3.6
|
|
13
|
+
Description-Content-Type: text/markdown
|
|
14
|
+
License-File: LICENSE
|
|
15
|
+
Requires-Dist: pyautogui
|
|
16
|
+
Requires-Dist: pywin32
|
|
17
|
+
Dynamic: author
|
|
18
|
+
Dynamic: classifier
|
|
19
|
+
Dynamic: description
|
|
20
|
+
Dynamic: description-content-type
|
|
21
|
+
Dynamic: home-page
|
|
22
|
+
Dynamic: requires-dist
|
|
23
|
+
Dynamic: requires-python
|
|
24
|
+
Dynamic: summary
|
|
25
|
+
|
|
26
|
+
Hello, I am daredevilmonkeyface (AKA daredevilmonke), and am a begginer in python. I thought that it would be cool if someone could prank their friend with just a line of code. That would be great! But still, keep in mind I am a beginner and could not make this any better (mabye I could add more functions). Thank you for using this package! π« π
|
|
27
|
+
|
|
28
|
+
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
|
|
32
|
+
https://github.com/daredevilmonkeyface/boomcode
|
|
33
|
+
This project is licensed under the [MIT License](./LICENSE).
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
LICENSE
|
|
2
|
+
README.md
|
|
3
|
+
pyproject.toml
|
|
4
|
+
setup.py
|
|
5
|
+
boomcode/__init__.py
|
|
6
|
+
boomcode/boomcode.py
|
|
7
|
+
boomcode.egg-info/PKG-INFO
|
|
8
|
+
boomcode.egg-info/SOURCES.txt
|
|
9
|
+
boomcode.egg-info/dependency_links.txt
|
|
10
|
+
boomcode.egg-info/requires.txt
|
|
11
|
+
boomcode.egg-info/top_level.txt
|
|
12
|
+
tests/test.py
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
boomcode
|
boomcode-0.1.1/setup.cfg
ADDED
boomcode-0.1.1/setup.py
ADDED
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
# (c) 2025 daredevilmonkeyface (AKA daredevilmonke)
|
|
2
|
+
# Licensed under the MIT License
|
|
3
|
+
from setuptools import setup, find_packages
|
|
4
|
+
|
|
5
|
+
setup(
|
|
6
|
+
name='boomcode', # Change this to your actual package name
|
|
7
|
+
version='0.1.1',
|
|
8
|
+
author='daredevilmonkeyface (AKA daredevilmonke)',
|
|
9
|
+
description='A fun, cool prank package that is easy to code in.',
|
|
10
|
+
long_description=open('README.md', encoding ='utf-8' ).read(),
|
|
11
|
+
long_description_content_type='text/markdown',
|
|
12
|
+
url='https://github.com/daredevilmonkeyface/boomcode', # Optional but good
|
|
13
|
+
packages=find_packages(),
|
|
14
|
+
install_requires=[
|
|
15
|
+
"pyautogui",
|
|
16
|
+
"pywin32",
|
|
17
|
+
],
|
|
18
|
+
classifiers=[
|
|
19
|
+
'Programming Language :: Python :: 3',
|
|
20
|
+
'Intended Audience :: Developers',
|
|
21
|
+
'Topic :: Software Development :: Libraries :: Python Modules',
|
|
22
|
+
'License :: OSI Approved :: MIT License',
|
|
23
|
+
'Operating System :: Microsoft :: Windows',
|
|
24
|
+
],
|
|
25
|
+
python_requires='>=3.6',
|
|
26
|
+
)
|