Main Page
Namespaces
Classes
Package Documentation
Utilities
RelMon
scripts
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
#
7
#
8
# Danilo Piparo CERN - danilo.piparo@cern.ch
9
#
10
################################################################################
11
12
from
__future__
import
print_function
13
from
sys
import
argv,exit
14
from
utils
import
wget
15
16
if
__name__==
"__main__"
:
17
argc=len(argv)
18
if
argc!=2:
19
print
(
"Usage %prog url-to-fetch"
)
20
exit
(1)
21
22
url=argv[1]
23
wget
(url)
utils.wget
def wget(url)
Definition:
utils.py:457
edm::print
S & print(S &os, JobReport::InputFile const &f)
Definition:
JobReport.cc:66
cmsRelvalreport.exit
exit
Definition:
cmsRelvalreport.py:1001
Generated for CMSSW Reference Manual by
1.8.11