Linux server.edchosting.com 4.18.0-553.79.1.lve.el7h.x86_64 #1 SMP Wed Oct 15 16:34:46 UTC 2025 x86_64
LiteSpeed
Server IP : 75.98.162.185 & Your IP : 216.73.216.163
Domains :
Cant Read [ /etc/named.conf ]
User : goons4good
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
lib64 /
python2.7 /
Demo /
tkinter /
ttk /
Delete
Unzip
Name
Size
Permission
Date
Action
img
[ DIR ]
drwxr-xr-x
2025-12-01 04:36
combo_themes.py
1.58
KB
-rw-r--r--
2013-05-11 23:32
combo_themes.pyc
1.88
KB
-rw-r--r--
2025-11-12 09:25
combo_themes.pyo
1.88
KB
-rw-r--r--
2025-11-12 09:25
dirbrowser.py
2.65
KB
-rw-r--r--
2013-05-11 23:32
dirbrowser.pyc
3.9
KB
-rw-r--r--
2025-11-12 09:25
dirbrowser.pyo
3.9
KB
-rw-r--r--
2025-11-12 09:25
listbox_scrollcmd.py
1.13
KB
-rw-r--r--
2013-05-11 23:32
listbox_scrollcmd.pyc
1.56
KB
-rw-r--r--
2025-11-12 09:25
listbox_scrollcmd.pyo
1.56
KB
-rw-r--r--
2025-11-12 09:25
mac_searchentry.py
3.63
KB
-rw-r--r--
2013-05-11 23:32
mac_searchentry.pyc
3.88
KB
-rw-r--r--
2025-11-12 09:25
mac_searchentry.pyo
3.88
KB
-rw-r--r--
2025-11-12 09:25
notebook_closebtn.py
2.47
KB
-rw-r--r--
2013-05-11 23:32
notebook_closebtn.pyc
2.91
KB
-rw-r--r--
2025-11-12 09:25
notebook_closebtn.pyo
2.91
KB
-rw-r--r--
2025-11-12 09:25
plastik_theme.py
9.36
KB
-rw-r--r--
2013-05-11 23:32
plastik_theme.pyc
7.36
KB
-rw-r--r--
2025-11-12 09:25
plastik_theme.pyo
7.36
KB
-rw-r--r--
2025-11-12 09:25
roundframe.py
5.47
KB
-rw-r--r--
2013-05-11 23:32
roundframe.pyc
6.29
KB
-rw-r--r--
2025-11-12 09:25
roundframe.pyo
6.29
KB
-rw-r--r--
2025-11-12 09:25
theme_selector.py
1.92
KB
-rw-r--r--
2013-05-11 23:32
theme_selector.pyc
2.81
KB
-rw-r--r--
2025-11-12 09:25
theme_selector.pyo
2.81
KB
-rw-r--r--
2025-11-12 09:25
treeview_multicolumn.py
4.15
KB
-rw-r--r--
2013-05-11 23:32
treeview_multicolumn.pyc
5.35
KB
-rw-r--r--
2025-11-12 09:25
treeview_multicolumn.pyo
5.35
KB
-rw-r--r--
2025-11-12 09:25
ttkcalendar.py
8.12
KB
-rw-r--r--
2013-05-11 23:32
ttkcalendar.pyc
9.55
KB
-rw-r--r--
2025-11-12 09:25
ttkcalendar.pyo
9.55
KB
-rw-r--r--
2025-11-12 09:25
widget_state.py
2.66
KB
-rw-r--r--
2013-05-11 23:32
widget_state.pyc
3.33
KB
-rw-r--r--
2025-11-12 09:25
widget_state.pyo
3.33
KB
-rw-r--r--
2025-11-12 09:25
Save
Rename
"""Sample taken from: http://www.tkdocs.com/tutorial/morewidgets.html and converted to Python, mainly to demonstrate xscrollcommand option. grid [tk::listbox .l -yscrollcommand ".s set" -height 5] -column 0 -row 0 -sticky nwes grid [ttk::scrollbar .s -command ".l yview" -orient vertical] -column 1 -row 0 -sticky ns grid [ttk::label .stat -text "Status message here" -anchor w] -column 0 -row 1 -sticky we grid [ttk::sizegrip .sz] -column 1 -row 1 -sticky se grid columnconfigure . 0 -weight 1; grid rowconfigure . 0 -weight 1 for {set i 0} {$i<100} {incr i} { .l insert end "Line $i of 100" } """ import Tkinter import ttk root = Tkinter.Tk() l = Tkinter.Listbox(height=5) l.grid(column=0, row=0, sticky='nwes') s = ttk.Scrollbar(command=l.yview, orient='vertical') l['yscrollcommand'] = s.set s.grid(column=1, row=0, sticky="ns") stat = ttk.Label(text="Status message here", anchor='w') stat.grid(column=0, row=1, sticky='we') sz = ttk.Sizegrip() sz.grid(column=1, row=1, sticky='se') root.grid_columnconfigure(0, weight=1) root.grid_rowconfigure(0, weight=1) for i in range(100): l.insert('end', "Line %d of 100" % i) root.mainloop()