Skip to content

Instantly share code, notes, and snippets.

@komly
Created August 1, 2015 23:13
Show Gist options
  • Save komly/8c9398d33c509167d8da to your computer and use it in GitHub Desktop.
Save komly/8c9398d33c509167d8da to your computer and use it in GitHub Desktop.
#!/usr/bin/env python3
import random
import string
import time
import sys
import json
while True:
chunk = ''
for i in range(random.randrange(1, 6)):
chunk += json.dumps({
'command': 'upper',
'data': ''.join([random.choice(string.ascii_lowercase)
for i in range(random.randrange(1, 20))])
})
chunk += '\r\n'
sys.stdout.write(chunk)
sys.stdout.flush()
time.sleep(0.1)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment