1.1 KiB
1.1 KiB
How to use
- Install G2O WebSocket module to your server
- Download include/ folder and import the Squirrel part of the library:
<import src="include/pyg2o.exml" />
- Install python library to your application
pip install git+https://github.com/AURUMVORXX/PyG2O.git
- Launch websocket client in your Squirrel scripts
// PyG2O_Start(url, reconnect, silent)
// reconnect - auto reconnect if server stopped
// silent - disable information prints
// Start server before any events
PyG2O_Start("ws://localhost:8080", true, false)
addEventHandler("onInit"...
- In your application, launch asyncio event loop and websocket server
import pyg2o
import asyncio
srv = None
async def main():
global srv
srv = pyg2o.PythonWebsocketServer(
host='localhost',
port=8080,
ping_interval=30,
silent=False,
whitelist=['::1'],
# logger = YOUR_LOGGER,
)
try:
await srv.start()
except asyncio.CancelledError:
await srv.stop()
if __name__ == '__main__':
asyncio.run(main())