CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
relmon_authenticated_wget.py
Go to the documentation of this file.
1 #! /usr/bin/env python
2 ################################################################################
3 # RelMon: a tool for automatic Release Comparison
4 # https://twiki.cern.ch/twiki/bin/view/CMSPublic/RelMon
5 #
6 # $Author: dpiparo $
7 # $Date: 2012/06/12 12:25:28 $
8 # $Revision: 1.1 $
9 #
10 #
11 # Danilo Piparo CERN - danilo.piparo@cern.ch
12 #
13 ################################################################################
14 
15 from sys import argv,exit
16 from utils import wget
17 
18 if __name__=="__main__":
19  argc=len(argv)
20  if argc!=2:
21  print "Usage %prog url-to-fetch"
22  exit(1)
23 
24  url=argv[1]
25  wget(url)
def wget
Definition: utils.py:451