Files
cariflex/tools/EVerest-main/modules/API/RpcApi/tools/python-client-gui
Eric F d398a6ced2 Add extracted tools: CitrineOS, OpenOCPP, ShapeShifter
- CitrineOS core extracted (CSMS OCPP 2.0.1)
- OpenOCPP extracted (firmware OCPP 1.6J/2.0.1)
- ShapeShifter library installed (pip install -e)
- ShapeShifter specification extracted
- EVerest extracted

TODO updated with progress
2026-06-08 00:38:27 -04:00
..

JSON-RPC WebSocket Client GUI

A simple Python-based GUI application to connect to the EVerest JSON-RPC API. Designed for debugging, development, and manual interaction with JSON-RPC services.


🚀 Features

  • Connect via IP and port to a JSON-RPC WebSocket server.
  • Automatically sends API.Hello after connecting.
  • Displays JSON-RPC requests, responses, and notifications in separate consoles.
  • Dynamically filters notifications by method name.
  • Send custom JSON-RPC method calls with parameters.
  • Save, load, and delete custom method calls (persisted to disk).
  • All settings are saved and reloaded across sessions.
  • UNIX timestamp (with millisecond precision) shown for all received messages.

🖥️ Requirements

Make sure the following packages are installed (on Debian/Ubuntu-based systems):

sudo apt update
sudo apt install -y python3 python3-pip python3-tk

📦 Install dependencies

Create and activate a virtual environment:

python3 -m venv venv
source venv/bin/activate

Install required packages:

pip install -r requirements.txt

▶️ How to Run

python3 everest-json-rpc-websocket-client.py

💾 Persistent Files

  • settings.json: Stores the last used IP and port.
  • saved_calls.json: Stores saved method calls with their parameters.

📘 Compatibility Matrix

GUI Version JSON-RPC Server API Version Notes
1.0.0 1.0.0 Initial stable version

📝 License

Apache-2.0