Skip to content

Instantly share code, notes, and snippets.

@binki
Created January 27, 2016 19:23
Show Gist options
  • Save binki/36a1603dabdb2b465c2c to your computer and use it in GitHub Desktop.
Save binki/36a1603dabdb2b465c2c to your computer and use it in GitHub Desktop.
#!/usr/bin/env python
import csv, io
with io.StringIO() as os:
writer = csv.writer(os)
writer.writerow(['hi', 'bye'])
writer.writerow(['there', 'here'])
# You would figure out how to pass this to your email system
print(os.getvalue())
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment