1

I want to consume the events/Signals exposed by the Application via .NET SignalR. My requirement is to receive those signals using Python. Kindly help me out.

Donald_W
  • 1,773
  • 21
  • 35
  • Sounds like you need to write a SignalR python client from scratch or find if somebody else has written one. – davidfowl Nov 09 '14 at 17:35

2 Answers2

0

A similar question was asked here:

Using SignalR server from Python code

There are no Python SignalR libraries available, so your only option would be to port a lightweight version of SignalR to python yourself. See https://github.com/davidfowl/SignalR.Lite

Obviously this is not a trivial undertaking!

Community
  • 1
  • 1
Donald_W
  • 1,773
  • 21
  • 35
0

I just wanted to offer another approach. Maybe the simpler solution would be to execute the SignalrR javascript library in python and just create a translational layer to get it back into python objects.

I do not have code proving this, but I was hoping this would encourage someone in the future to try it.

David Price
  • 170
  • 1
  • 16