Skip to content

Instantly share code, notes, and snippets.

@aurynn
Created April 7, 2014 15:59
Show Gist options
  • Save aurynn/10023104 to your computer and use it in GitHub Desktop.
Save aurynn/10023104 to your computer and use it in GitHub Desktop.
Simple JSON client 1
from twisted.internet.protocol import Factory
from twisted.protocols.basic import LineReceiver
import json
your_name = "aurynn"
class JsonProtocol(LineReceiver):
def lineReceived(self, msg):
try:
msg = json.loads(msg)
except json.JSONDecoderError:
print "Received a non-JSON message: %s" % msg
print "<{from}> {message}".format(**msg)
def sendMessage(self, msg):
print "Sending a line?"
self.sendLine( json.dumps( {
"to": "EchoTest",
"from": your_name,
"message": msg
} ) )
class EchoClientFactory(Factory):
def buildProtocol(self, addr):
return JsonProtocol()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment