Search found 1 match

by Thidrek
Mon Sep 13, 2010 10:18 am
Forum: Challenges Solved
Topic: One Minute Man
Replies: 39
Views: 4252

Well, this is my python script: #! /usr/bin/env python import time import urllib2 def crawler(): f = open('oneminute.txt','w') foo = urllib2.urlopen('http://www.hacker.org/challenge/misc/minuteman.php') content = '' for line in foo: content += line while True: time.sleep(30) foo = urllib2.urlopen('h...