Part of Slepp's ProjectsPastebinTURLImagebinFilebin
Feedback -- English French German Japanese
Create Upload Newest Tools Donate
Sign In | Create Account

Advertising

advertising

related pastes to tag 'websockets'

1883073 - WebSockets/AMQP chat client : python amqp websockets
  1. # -*- coding: utf-8 -*-
  2. import sys
  3. import random
  4. import time
  5. import select
  6. import logging
  7. from logging import handlers
  8. if hasattr(select, "poll"):
  9.  
1881774 - Plugging AMQP and WebSockets: python amqp websockets
  1. # -*- coding: utf-8 -*-
  2. import sys
  3. import time
  4. import select
  5. import logging
  6. from logging import handlers
  7. if hasattr(select, "poll"):
  8.     from asyncore import poll2 as poll
  9.  
worth-right