#!/usr/bin/python

import urllib, sys

try :
        robotsFile = urllib.urlopen("http://" + sys.argv[1] + "/robots.txt")
        print robotsFile.read()
except :
        print "Error fetching Robots.txt file !"

