3 Contains classes for shell part of framework - basically a collection of classes that are designed to be invoked on the command line. 6 from __future__
import print_function
14 def connect(connection_data=None, mode="r", map_blobs=False, secrets=None, pooling=True):
15 if connection_data ==
None:
16 connection_data =
"frontier://FrontierProd/CMS_CONDITIONS" 17 connection =
querying.connect(connection_data, mode=mode, map_blobs=map_blobs, secrets=secrets, pooling=pooling)
18 connections.append(connection)
23 for connection
in connections:
24 connection_string =
"%s/%s" % (connection.connection_data[
"database_name"], connection.connection_data[
"schema"])
25 connection.tear_down()
27 print(
"Connection to %s was closed." % connection_string)
def connect(connection_data, mode="r", map_blobs=False, secrets=None, pooling=True)
S & print(S &os, JobReport::InputFile const &f)
def close_connections(verbose=True)
def connect(connection_data=None, mode="r", map_blobs=False, secrets=None, pooling=True)