Created
October 6, 2016 06:23
-
-
Save nerandell/c7ec6a6a0e9625014d776685fe4e3c0b to your computer and use it in GitHub Desktop.
Socket connector
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
''' | |
This is a minimal python chat client which connects to the `rooms:lobby` topic. | |
The server is supposed to be | |
http://www.phoenixframework.org/docs/channels#section-tying-it-all-together | |
''' | |
from __future__ import print_function | |
try: # py2 | |
get_user_input = raw_input | |
except: # py3 | |
get_user_input = input | |
from occamy import Socket | |
PING_COMMAND = 'ping' | |
socket = Socket('ws://kre.vagrant.internal:8102/socket', | |
params={'session_id': 'nBt0taU5vzxR68bac8addc9634e4714ed162b1140cf537fd5ae6CVzEX8r9BJt7uXeOwpXUg', | |
'instance': 'brewfictus'}) | |
socket.connect() | |
channel = socket.channel('presence-281f395f6f51d031a6d3db3489906c98285191ebac41bb744f9323f61af63433@v1_users_1', {}) | |
channel.on('new', lambda msg, x: print('> {}'.format(msg))) | |
channel.on('pong', lambda msg, x: print('> {}'.format(msg))) | |
channel.on('presence_state', lambda msg, x: print('> {}'.format(msg))) | |
channel.on('presence_diff', lambda msg, x: print('> {}'.format(msg))) | |
channel.on('CHANGE', lambda msg, x: print('> {}'.format(msg))) | |
channel.join() | |
print('Enter your message and press return to send the message.') | |
print() | |
while True: | |
message = raw_input('') | |
args = message.split(' ') | |
command = args[0] | |
if command == PING_COMMAND: | |
body = args[1] | |
channel.push(command, {'body': body}) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment