Skip to main content

Simple Python HTTP Exec Server

Project description

Pypi version Publish Package Licence PyPI Downloads Python versions

pywebexec

Simple Python HTTP(S) API/Web Server Command Launcher and Terminal sharing

Install

$ pip install pywebexec

Quick start

  • share terminal
    • start http server and spawn a new terminal shared on 0.0.0.0 port 8080 (defaults)
    • exiting terminal stops server/share
$ pywebexec shareterm
  • serve executables
    • 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 -d <dir>
  • Launch commands with params/view live output/Status using browser
  • Share your terminal output using pywebexec -d <dir> term

pywebexecnew11

all commands output / statuses are available in the executables directory in subdirectory .web_status

features

  • Serve executables in a directory
  • full API driven with dynamic swagger UI
  • Launch commands with params from web browser or API call
  • multiple share terminal output
  • Follow live output
  • Replay terminal history
  • Stop command
  • Relaunch command
  • HTTPS support
  • HTTPS self-signed certificate generator
  • Basic Auth
  • LDAP(S) password check/group member
  • Safe url token generation
  • Can be started as a daemon (POSIX)
  • Uses gunicorn to serve http/https
  • Linux/MacOS compatible
  • Markdown help for commands

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

Sharing terminals

  • start server and share tty in one command
$ pywebexec -d ~/webshare shareterm
  • share tty with an already pywebexec server started
$ pywebexec -d ~/webshare term

if another user need to share his terminal, he need to have write permission on <dir>/.web_status directory.

Safe url token

  • generate safe url, use the url to access the server
$ pywebexec -T
$ pywebexec --tokenurl
Starting server:
http://<host>:8080?token=jSTWiNgEVkddeEJ7I97x2ekOeaiXs2mErRSKNxm3DP0
http://x.x.x.x:8080?token=jSTWiNgEVkddeEJ7I97x2ekOeaiXs2mErRSKNxm3DP0

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 ldap server must accept memberOf attribute for group members
$ export PYWEBEXEC_LDAP_SERVER=ldaps://ldap.mydomain.com:389
$ export PYWEBEXEC_LDAP_BIND_DN="cn=read-only-admin,dc=example,dc=com"
$ export PYWEBEXEC_LDAP_BIND_PASSWORD="password"
$ export PYWEBEXEC_LDAP_BASE_DN="dc=example,dc=com"
$ export PYWEBEXEC_LDAP_USER_ID="uid" # sAMAccountName for AD
$ export PYWEBEXEC_LDAP_GROUPS="ou=mathematicians,dc=example,dc=com ou=scientists,dc=example,dc=com"
$ pywebexec

HTTPS server

  • Generate auto-signed certificate and start https server
$ pywebexec --gencert
$ pywebexec --g
  • Start https server using existing certificate
$ pywebexec --cert /pathto/host.cert --key /pathto/host.key
$ pywebexec -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/commands/myscript -H 'Content-Type: application/json' -X POST -d '{"params":["param1", ...]}'
$ curl http://myhost:8080/commands/<command_id>
$ curl http://myhost:8080/commands/<command_id>/output -H "Accept: text/plain"

Add markdown help to commands

For each exposed command, you can add a help message by creating a file named <command>.help in the same directory as the command. The help message must be written in markdown.
The help message is displayed:

  • in the web interface as tooltip when focused on param input field,
  • in the response when calling the API /executables
  • in the swagger-ui in the /commands/<command> route.

Swagger UI

A swagger UI is available at http[s]://<srv>/v0/documentation

API reference

method route params/payload returns
GET /executables executables: [
  {command: str,help: str},
]
GET /commands commands: [
  {
    command_id: uuid
    command: str
    start_time: isotime
    end_time: isotime
    status: str
    exit_code: int
    last_output_line: str
  },
]
GET /commands/{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 /commands/{id}/output offset: int output: str
status: str
links: { next: str }
GET /commands/{id}/output_raw offset: int output: stream raw output until end of command
curl -Ns http://srv/commands/{id}/output_raw
POST /commands command: str
params: array[str]
rows: int
cols: int
command_id: uuid
message: str
POST /commands/{cmd} params: array[str]
rows: int
cols: int
command_id: uuid
message: str
PATCH /commands/{id}/stop message: str

Project details


Release history Release notifications | RSS feed

This version

1.9.7

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.9.7.tar.gz (1.8 MB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

pywebexec-1.9.7-py3-none-any.whl (1.9 MB view details)

Uploaded Python 3

File details

Details for the file pywebexec-1.9.7.tar.gz.

File metadata

  • Download URL: pywebexec-1.9.7.tar.gz
  • Upload date:
  • Size: 1.8 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.9.21

File hashes

Hashes for pywebexec-1.9.7.tar.gz
Algorithm Hash digest
SHA256 62e756e9df6d073ce08fe2d7b3a7ab739ddcbc2d67cf4e527715044d954a804d
MD5 10b597d78b97df16fedc8056530eb23c
BLAKE2b-256 070981c237080cae9534c09119939ae0ff2cbd7b695378d1cc01328de812f2a9

See more details on using hashes here.

File details

Details for the file pywebexec-1.9.7-py3-none-any.whl.

File metadata

  • Download URL: pywebexec-1.9.7-py3-none-any.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.9.21

File hashes

Hashes for pywebexec-1.9.7-py3-none-any.whl
Algorithm Hash digest
SHA256 61810c1e1f3fe8117590101f4a707c006b94245f7f68b1db392930c6eb3bfe55
MD5 84269a6e2145da677ad3f375563b8f05
BLAKE2b-256 fa3e495a39f6c878fd3201a4b1eb91313f489adfc9156a90d581b1d7dcec5312

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page