Simple Python HTTP Exec Server
Project description
pywebexec
Simple Python HTTP(S) API/Web Command Launcher
Install
$ pip install pywebexec
Quick start
- put in a directory the scripts/commands/links to commands you want to expose
- start http server serving current directory executables listening on 0.0.0.0 port 8080
$ pywebexec
- Launch commands with params/view live output/Status using browser
all commands output / statuses are available in the executables directory in subdirectory .web_status
features
- Serve executables in a directory
- Launch commands with params from web browser or API call
- Follow live output
- Stop command
- Relaunch command
- HTTPS support
- HTTPS self-signed certificate generator
- Basic Auth
- LDAP(S)
- Can be started as a daemon (POSIX)
- Uses gunicorn to serve http/https
- Linux/MacOS compatible
Customize server
$ pywebexec --dir ~/myscripts --listen 0.0.0.0 --port 8080 --title myscripts
$ pywebexec -d ~/myscripts -l 0.0.0.0 -p 8080 -t myscripts
Basic auth
- single user/password
$ pywebexec --user myuser [--password mypass]
$ pywebexec -u myuser [-P mypass]
Generated password is given if no --pasword option
- ldap(s) password check / group member
$ export PYWEBEXEC_LDAP_SERVER=ldap://ldap.forumsys.com:389
$ export PYWEBEXEC_LDAP_BIND_DN="cn=read-only-admin,dc=example,dc=com"
$ export PYWEBEXEC_LDAP_BIND_PASSWORD="password"
$ export PYWEBEXEC_LDAP_GROUPS="ou=mathematicians,ou=scientists"
$ export PYWEBEXEC_LDAP_USER_ID="uid"
$ export PYWEBEXEC_LDAP_BASE_DN="dc=example,dc=com"
$ pywebexec
HTTPS server
- Generate auto-signed certificate and start https server
$ pywebfs --gencert
$ pywebfs --g
- Start https server using existing certificate
$ pywebfs --cert /pathto/host.cert --key /pathto/host.key
$ pywebfs -c /pathto/host.cert -k /pathto/host.key
Launch server as a daemon
$ pywebexec start
$ pywebexec status
$ pywebexec stop
- log of server are stored in directory
~/[.config/].pywebexec/pywebexec_<listen>:<port>.log
Launch command through API
$ curl http://myhost:8080/run_script -H 'Content-Type: application/json' -X POST -d '{ "script_name":"myscript", "params":["param1", ...]}
$ curl http://myhost:8080/command_status/<command_id>
$ curl http://myhost:8080/command_output/<command_id> -H "Accept: text/plain"
API reference
| method | route | params/payload | returns |
|---|---|---|---|
| POST | /run_command | command: str params: array[str] |
command_id: uuid message: str |
| POST | /stop_command/command_id | message: str | |
| GET | /command_status/command_id | command_id: uuid command: str params: array[str] start_time: isotime end_time: isotime status: str exit_code: int last_output_line: str |
|
| GET | /command_output/command_id | output: str status: str |
|
| GET | /commands | array of command_id: uuid command: str start_time: isotime end_time: isotime status: str exit_code: int last_output_line: str |
|
| GET | /executables | array of str |
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
pywebexec-1.1.19.tar.gz
(40.6 kB
view details)
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file pywebexec-1.1.19.tar.gz.
File metadata
- Download URL: pywebexec-1.1.19.tar.gz
- Upload date:
- Size: 40.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.9.21
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c12f3be1e9075a01b292e024bc6289c97c8366b5e9184a57a869fa88c1fad8a1
|
|
| MD5 |
2005d2f99e5920a2f2e33f0555c91c18
|
|
| BLAKE2b-256 |
129b5ac470f18481321039e6698d135530c7e680c92ffa7f88ab431b23056bd1
|
File details
Details for the file pywebexec-1.1.19-py3-none-any.whl.
File metadata
- Download URL: pywebexec-1.1.19-py3-none-any.whl
- Upload date:
- Size: 37.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.9.21
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a8174b89ee38bf6ded9a84d72b458eadd0a0eab5d56d963f967d121795ff9ead
|
|
| MD5 |
3e584a0b3ea2cd9c65e2df953b02f63e
|
|
| BLAKE2b-256 |
dbba0807b6d9fe42f59c37dc3de0648e3b8d0e337b67e104246fb6fb12d67e15
|