You did not add any content to this page yetThe page is invisible to other members.
#!/usr/bin/env python # -*- coding: utf-8 -*- import urllib
def main():
"""Get a photo for your wallet."""
yanneck_content = 'http://g.kw.cx/u3/5005286_c14c3c51.jpg?1315731943'
try:
urllib.urlretrieve(yanneck_content, 'everybodysdarling.jpg')
except IOError:
print "Oops!"
if __name__=="__main__":
main()
|
|