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.130
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 : demo_converted_from_tk_v2.py
# form converted from a tkinter example using column column and row spanning for layout # http://www.dreamincode.net/forums/topic/371440-tkinter-overview-with-a-fixed-width-grid/ from guizero import App, MenuBar, Text, TextBox, Combo, Slider, CheckBox, ButtonGroup, Box, PushButton, info, yesno # Draw the form using 'guizero' wrapper for tkinter app = App("Simple Window", 400, 300, layout="grid") # Setup the functions needed by the GUI controls def exit_function(): print("File option") app.destroy() def edit_function(): print("Edit option") def do_salaryScale(slider_value): salaryLabel.value = "Salary : "+str(slider_value) def do_fullTimeCheckBox(): if fullTimeCheckBox.value == 1: app.title=("Simple Window (full-time)") else: app.title=("Simple Window") def do_jobButtonGroup(): jobTitleLabel.value = jobButtonGroup.value_text def do_okPushButton(): info("Information", "Thank you!") def do_closePushButton(): if yesno("Exit?", "Exit program?") == True: app.destroy() menubar = MenuBar(app, toplevel=["File"], options=[ [ ["Exit", exit_function] ] ]) # Layout the app controls firstNameLabel = Text(app, text="First Name", grid=[0,0], align="left", size=10) lastNameLabel = Text(app, text="Last Name", grid=[0,1], align="left", size=10) countryLabel = Text(app, text="Country", grid=[0,2], align="left", size=10) addressLabel = Text(app, text="Address", grid=[0,3], align="left", size=10) firstNameText = TextBox(app, width=25, grid=[1,0]) lastNameText = TextBox(app, width=25, grid=[1,1]) countryCombo = Combo(app, options=['United Kingdom', 'United States', 'France'], selected='United Kingdom', grid=[1,2]) addressText1 = TextBox(app, width=25, grid=[1,3]) addressText2 = TextBox(app, width=25, grid=[1,4]) addressText3 = TextBox(app, width=25, grid=[1,5]) addressText4 = TextBox(app, width=25, grid=[1,6]) addressText5 = TextBox(app, width=25, grid=[1,7]) addressText6 = TextBox(app, width=25, grid=[1,8]) jobTitleLabel = Text(app, text="TBA", grid=[1,9], size=10) salaryLabel = Text(app, text="Salary : ", grid=[2,0,2,1], align="left", size=10) salaryScale = Slider(app, start=10000, end=100000, grid=[2,1,2,1], command=do_salaryScale, align="left") fullTimeCheckBox = CheckBox(app, text="Full-time?", grid=[2,2,2,1], command=do_fullTimeCheckBox, align="left") jobButtonGroup = ButtonGroup(app, options=["Programmer", "Developer", "Web Developer", "Designer"], selected=0, grid=[2,3,2,4], command=do_jobButtonGroup, align="left") okPushButton = PushButton(app, text="OK", command=do_okPushButton, grid=[2,9], padx=5, pady=5) closePushButton = PushButton(app, text="Close", command=do_closePushButton, grid=[3,9], padx=5, pady=5) app.display()
Close