Websocket client and native python3 compatability.#2
Websocket client and native python3 compatability.#2scholer wants to merge 2 commits intopanisson:masterfrom
Conversation
|
Thanks a lot Rasmus for your contribution, I will merge your pull request to the repository. Before that, could you confirm this? I've tested the implementation with the examples, and in order to change the client to use websockets, you need to import websocket_client, create a GephiWsClient and use a from pygephi import websocket_client
g = websocket_client.GephiWsClient('ws://localhost:8080/workspace0', autoflush=True) |
|
Hi André, Yes, you are correct on all accounts, both regarding the websocket-client package and using from pygephi.websocket_client import GephiWsClient
g = GephiWsClient(autoflush=True)Regarding the |
Hi,
I have created a module, websocket_client.py, that uses websocket to communicate with the Gephi graph-streaming server.
Would you be interested in merging this into your main repository?
And thanks for creating this nice python module :)
---Rasmus