Skip to content

Instantly share code, notes, and snippets.

@kisom
Created July 5, 2011 23:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kisom/1066200 to your computer and use it in GitHub Desktop.
Save kisom/1066200 to your computer and use it in GitHub Desktop.
the most badass quine you will ever see
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# author: kyle isom
# license: ISC / public domain dual-license
#
# quine: a program that prints itself
import urllib2
remote = 'http://www.kyleisom.net/quine.py.txt'
data = urllib2.urlopen(remote).read()
print data
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment