Flask Shell2HTTP Versions Save

Execute shell commands via HTTP server (via flask's endpoints).

v1.9.1

2 years ago

v1.9.0

2 years ago

v1.8.0

2 years ago

v1.7.0

2 years ago

v1.6.0

3 years ago

v1.5.2

3 years ago

Get it on PyPi

  • Now decodes stdout and stderr to utf-8 and not ascii. Thanks @vBLFTePebWNi6c for the contribution.

v1.5.0

3 years ago

Get it on PyPi

  • Added the ability to apply multiple View Decorators on the exposed endpoint. See Example Code.
  • Useful in case you wish to apply authentication, caching, etc. to the endpoint.
  • Backwards compatible with v1.4.x

v1.4.3

3 years ago

Patch release after v1.4.0.

Fixed Backward compatibility issues.

v1.4.1

3 years ago

Please use v1.4.3 or greater

  • Bug fixes where multipart requests were failing because of nested form data. Because of this the multipart (file containing) POST request now has an updated schema (examples have been updated accordingly).
  • Dropped dataclass for report generation because it causes various bugs in python 3.6.

v1.4.0

3 years ago
  • Additional context from the POST request's JSON can be passed to the user-defined callback function. This allows for better future's post-completion processing.

Note: Please see Examples section for the relevant code in such use-cases.

  • Updated docs with more examples/ use-cases.
  • Added more type-hinting.