Created
January 27, 2016 19:23
-
-
Save binki/36a1603dabdb2b465c2c to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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