Skip to content

Instantly share code, notes, and snippets.

@offby1
Created May 22, 2015 04:13
Show Gist options
  • Select an option

  • Save offby1/3e1dd8fbe0679151a034 to your computer and use it in GitHub Desktop.

Select an option

Save offby1/3e1dd8fbe0679151a034 to your computer and use it in GitHub Desktop.
batch = []
for line in sys.stdin:
if len(batch) == 100:
do_something_with_batch(batch)
batch = []
batch.append(line)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment