Linux mail.vriendennsm.nl 6.1.0-51-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.177-1 (2026-07-16) x86_64
Apache/2.4.68 (Debian)
Server IP : 217.154.75.17 & Your IP : 216.73.216.195
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
share /
doc /
python3-serial /
examples /
Delete
Unzip
Name
Size
Permission
Date
Action
at_protocol.py
4.82
KB
-rw-r--r--
2020-04-04 02:20
port_publisher.py
19.68
KB
-rwxr-xr-x
2020-04-04 02:20
port_publisher.sh
1.03
KB
-rwxr-xr-x
2020-04-04 02:20
rfc2217_server.py
6
KB
-rwxr-xr-x
2020-09-16 09:25
setup-miniterm-py2exe.py
794
B
-rw-r--r--
2020-04-04 02:20
setup-rfc2217_server-py2exe.py
780
B
-rw-r--r--
2020-04-04 02:20
setup-wxTerminal-py2exe.py
1
KB
-rw-r--r--
2020-04-04 02:20
tcp_serial_redirect.py
7.33
KB
-rwxr-xr-x
2020-09-16 09:25
wxSerialConfigDialog.py
12.89
KB
-rwxr-xr-x
2020-09-14 21:29
wxSerialConfigDialog.wxg
13.29
KB
-rw-r--r--
2020-04-04 02:20
wxTerminal.py
14.18
KB
-rwxr-xr-x
2020-09-16 09:25
wxTerminal.wxg
6.74
KB
-rw-r--r--
2020-04-04 02:20
Save
Rename
# This is a setup.py example script for the use with py2exe # # (C) 2001-2015 Chris Liechti <cliechti@gmx.net> # # SPDX-License-Identifier: BSD-3-Clause from distutils.core import setup import os import sys # 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="https://github.com/pyserial/pyserial/", )