Skip to content

Instantly share code, notes, and snippets.

@noahp
Created September 1, 2015 19:39
Show Gist options
  • Save noahp/105d21e50f4c449db0a9 to your computer and use it in GitHub Desktop.
Save noahp/105d21e50f4c449db0a9 to your computer and use it in GitHub Desktop.
python_droplet
import sys
if __name__ == "__main__":
infile = sys.argv[1]
with open(infile, 'r') as f:
for line in f:
print 'first line: '
print line
# more processes?
break
# wait for button
raw_input('show me what you goooootttt')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment