Linux lorencats.com 5.10.103-v7l+ #1529 SMP Tue Mar 8 12:24:00 GMT 2022 armv7l
Apache/2.4.59 (Raspbian)
: 10.0.0.29 | : 216.73.216.10
Cant Read [ /etc/named.conf ]
7.3.31-1~deb10u7
root
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
usr /
share /
doc /
python3-guizero /
examples /
[ HOME SHELL ]
Name
Size
Permission
Action
after_repeat.py
629
B
-rw-r--r--
alert.py
93
B
-rw-r--r--
aligning.py
1.08
KB
-rw-r--r--
animated_picture.py
301
B
-rw-r--r--
app_events.py
1.36
KB
-rw-r--r--
auto_update_example.py
511
B
-rw-r--r--
binary_counter.py
607
B
-rw-r--r--
box.py
164
B
-rw-r--r--
button.py
283
B
-rw-r--r--
button_group.py
503
B
-rw-r--r--
button_toggle_state.py
409
B
-rw-r--r--
button_value.py
327
B
-rw-r--r--
changing_sizes.py
781
B
-rw-r--r--
checkbox.py
152
B
-rw-r--r--
clickable_waffle.py
504
B
-rw-r--r--
colors_and_text.py
1016
B
-rw-r--r--
colour_example.py
764
B
-rw-r--r--
combo.py
284
B
-rw-r--r--
demo.py
1.7
KB
-rw-r--r--
demo_converted_from_tk_v1.py
2.83
KB
-rw-r--r--
demo_converted_from_tk_v2.py
2.77
KB
-rw-r--r--
floodit.py
2.77
KB
-rw-r--r--
grid_layout.py
846
B
-rw-r--r--
guizero.gif
20.47
KB
-rw-r--r--
guizero.jpg
61.1
KB
-rw-r--r--
guizero.png
56.83
KB
-rw-r--r--
guizero_flash.gif
38.93
KB
-rw-r--r--
hide_show_test.py
1.16
KB
-rw-r--r--
layout_beyonce.py
382
B
-rw-r--r--
layout_boxes.py
697
B
-rw-r--r--
layout_form.py
561
B
-rw-r--r--
layout_settings.py
1.01
KB
-rw-r--r--
layout_terms.py
1.6
KB
-rw-r--r--
listbox.py
780
B
-rw-r--r--
load_picture.py
201
B
-rw-r--r--
massive_waffle.py
832
B
-rw-r--r--
menu_bar.py
532
B
-rw-r--r--
multi_app.py
547
B
-rw-r--r--
multi_box.py
1.15
KB
-rw-r--r--
multi_window.py
625
B
-rw-r--r--
multiline_textbox.py
563
B
-rw-r--r--
on_close.py
363
B
-rw-r--r--
picture_button.py
413
B
-rw-r--r--
random_appearance.py
1.06
KB
-rw-r--r--
resize_picture.py
398
B
-rw-r--r--
resize_picture_button.py
457
B
-rw-r--r--
resize_waffle.py
618
B
-rw-r--r--
scale_picture.py
514
B
-rw-r--r--
sensehat_read_data.py
3.98
KB
-rw-r--r--
slider_textbox.py
202
B
-rw-r--r--
textbox.py
393
B
-rw-r--r--
waffle.py
627
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : random_appearance.py
from guizero import App, Text, TextBox, Slider, PushButton, Combo, Box from random import randint, choice colors_text = ["red", "purple", "black", "blue", "green"] colors_bg = ["pink", "yellow", "orange", "white", "cyan"] fonts = ["garamond", "arial", "helvetica", "courier new", "times new roman", "comic sans"] def randomise(): app.bg = choice(colors_bg) for widget in app.children: widget.bg = choice(colors_bg) widget.text_color = choice(colors_text) widget.text_size = randint(8,20) widget.font = choice(fonts) def reset(): app.bg = None app.text_color = None app.text_size = None app.font = None app = App(width=300, height=200) title = Text(app, "Customise your app") text = TextBox(app, text="then reset to default", width=20) combo = Combo(app, ["by setting to None"]) code = Text(app, text="widget.bg = None", font="courier new") box = Box(app, layout="grid") but_random = PushButton(box, text="random", command=randomise, grid=[0,0]) but_reset = PushButton(box, text="reset", command=reset, grid=[1,0]) app.display()
Close