Linux ip-148-66-134-25.ip.secureserver.net 3.10.0-1160.119.1.el7.tuxcare.els10.x86_64 #1 SMP Fri Oct 11 21:40:41 UTC 2024 x86_64
Apache
: 148.66.134.25 | : 3.141.21.199
66 Domain
8.0.30
amvm
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
BLACK DEFEND!
README
+ Create Folder
+ Create File
/
usr /
share /
doc /
pyserial-2.6 /
examples /
[ HOME SHELL ]
Name
Size
Permission
Action
enhancedserial.py
2.12
KB
-rw-r--r--
port_publisher.py
17.05
KB
-rw-r--r--
port_publisher.sh
1.03
KB
-rw-r--r--
rfc2217_server.py
6.53
KB
-rw-r--r--
scan.py
762
B
-rw-r--r--
scanlinux.py
481
B
-rw-r--r--
scanwin32.py
7.9
KB
-rw-r--r--
setup-miniterm-py2exe.py
609
B
-rw-r--r--
setup-rfc2217_server-py2exe.py
518
B
-rw-r--r--
setup-wxTerminal-py2exe.py
917
B
-rw-r--r--
tcp_serial_redirect.py
10.28
KB
-rw-r--r--
wxSerialConfigDialog.py
11.5
KB
-rw-r--r--
wxSerialConfigDialog.wxg
13.22
KB
-rw-r--r--
wxTerminal.py
13.21
KB
-rw-r--r--
wxTerminal.wxg
5.51
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : setup-wxTerminal-py2exe.py
# This is a setup.py example script for the use with py2exe from distutils.core import setup import py2exe import sys, os #this script is only useful for py2exe so just run that distutils command. #that allows to run it with a simple double click. sys.argv.append('py2exe') #get an icon from somewhere.. the python installation should have one: icon = os.path.join(os.path.dirname(sys.executable), 'py.ico') setup( options = {'py2exe': { 'excludes': ['javax.comm'], 'optimize': 2, 'dist_dir': 'dist', } }, name = "wxTerminal", windows = [ { 'script': "wxTerminal.py", 'icon_resources': [(0x0004, icon)] }, ], zipfile = "stuff.lib", description = "Simple serial terminal application", version = "0.1", author = "Chris Liechti", author_email = "cliechti@gmx.net", url = "http://pyserial.sf.net", )
Close