Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/bytecurdler/makex
A Python script for Apache servers to make Python executeable
https://github.com/bytecurdler/makex
Last synced: about 1 month ago
JSON representation
A Python script for Apache servers to make Python executeable
- Host: GitHub
- URL: https://github.com/bytecurdler/makex
- Owner: ByteCurdler
- License: gpl-3.0
- Created: 2019-09-24T16:30:58.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2019-09-25T17:41:35.000Z (about 5 years ago)
- Last Synced: 2023-09-30T05:51:11.330Z (about 1 year ago)
- Language: Python
- Size: 21.5 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# makeX
A Python script for Apache servers to make Python executeable.
Usage: `python3 makeX?.py input.py output.py`
Each makeX version builds on previous ones.
+ makeX1: For basic execution. No POST, no GET. Good for programs without input.
+ makeX2: Provides the _POST and _GET dictionaries. Does not render "%xx" except "%0D%0A" (\r\n) as \n. Use makeX3 instead.
+ makeX3: Renders "%xx" and adds _status.
_status(dct,value) returns True if value is a "flag", returns a str if value is an input, and returns False if value is nonexistent.
+ makeX4: Adds _goto.
_goto(link[, reDir(simulate ridirect?)=true[, relative=false]]) changes the current address.
+ makeX5: Corrects rendering %xx twice.