Skip to content

Instantly share code, notes, and snippets.

@rectalogic
Created June 11, 2014 21:24
Show Gist options
  • Save rectalogic/2a969bd631a18684a456 to your computer and use it in GitHub Desktop.
Save rectalogic/2a969bd631a18684a456 to your computer and use it in GitHub Desktop.
import uuid
from pylons import response
@login_required_json
@jsonify2
def test_stream(self):
for i in range(10000):
response.body_file.write(u"{0} {1}\n".format(i, str(uuid.uuid4())))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment