info.cgi 649 B

12345678910111213141516171819202122
  1. #!C:\Python36\python.exe
  2. # -*- coding: utf-8 -*-
  3. import json
  4. print("Content-Type: text/html")
  5. print("")
  6. JSON = {
  7. "uptime": "0 дн. 0 ч. 1 мин.",
  8. "model": "BT-6711",
  9. "prodate": "10.02.2021",
  10. "fwversion": "v 3.0",
  11. "macaddr": "EC-4C-4D-00-80-0A",
  12. "serno": "7020000",
  13. "sysname": "576",
  14. "owner": "test1234567890test3test1234567890test3t1234567890",
  15. "sysLocation": "",
  16. "comment": "test1234567890test3test1234567890test3t12345678901234567890-=+_`~?/.,<>|\:;*@#!%&^()[]{}\/test1234567890test3",
  17. "ups_model": "RTMP-IIv15",
  18. "ups_sn": "test1234",
  19. "ups_fwversion": "V8",
  20. "netsettings_changed": "false"
  21. }
  22. print(json.dumps(JSON))