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 : RadioButton.py
from tkinter import Radiobutton from . import utilities as utils from .base import TextWidget # Only to be used as part of button group # unless you want to externally create a controlling variable StringVar() # Does NOT create an internal StringVar() as this is handled by the ButtonGroup class class RadioButton(TextWidget): def __init__(self, master, text, value, variable, command=None, grid=None, align=None, visible=True, enabled=None): description = "[RadioButton] object with option=\"" + str(text) + "\" value=\"" + str(value) + "\"" self._text = text self._value = value # `variable` is the externally passed StringVar keeping track of which # option was selected. This class should not be instantiated by a user # unless they know what they are doing. tk = Radiobutton(master.tk, text=self._text, value=self._value, variable=variable) super(RadioButton, self).__init__(master, tk, description, grid, align, visible, enabled, None, None) # PROPERTIES # ----------------------------------- # The value of this button @property def value(self): return (self._value) @value.setter def value(self, value): self._value = str(value) self.tk.config(value=str(value)) self.description = "[RadioButton] object with option=\"" + self._text + "\" value=\"" + str(value) + "\"" # The text from this button @property def text(self): return (self._text) @text.setter def text(self, text): self._text = str(text) self.tk.config(text=self._text) self.description = "[RadioButton] object with option=\"" + str(text) + "\" value=\"" + self._value + "\""
Close