1 2 3 4 5 6 7 8
#!/usr/bin/env python3 import json import sys import time body = sys.stdin.read() time.sleep(0.1) print(json.dumps({"ok": True, "received": body}, separators=(",", ":")))