March 18, 2008
[Daniel] Oh Snap!
#!/usr/bin/env python
"""Since SnapTalent (http://snaptalent.com/) seems to have some solid jobs and a decent site, but no list of ads, let's make one."""
import urllib2
base_url = 'http://snaptalent.com/ads/'
for i in xrange(255):
current_url = "%s%s" % (base_url, i)
try:
oh_snap = urllib2.urlopen(current_url)
if oh_snap.code == 200:
print "Valid URL: %s" % current_url
oh_snap.close()
except:
pass
Permalink
|
Comments (2)
Comments
Daniel,
Some other people have been requesting this too. I made a page for you where you can see most of our ads, Its not perfect but it should be better than going one by one :) We're working on a better way to search existing jobs on our site.
Check it out here...
http://snaptalent.com/ads.html
Thanks,
Jamie
Posted on Mar 20, 2008 @ 12:13 p.m.
Thanks Jamie! Much appreciated and better than me arbitrarily hammering your site.
The ads/content on SnapTalent are great. Too bad California isn't an option. :D
Posted on Mar 20, 2008 @ 12:43 p.m.

