CMS 3D CMS Logo

Functions
shell Namespace Reference

Functions

def close_connections (verbose=True)
 
def connect (connection_data=None, mode="r", map_blobs=False, secrets=None, pooling=True)
 

Detailed Description

Contains classes for shell part of framework - basically a collection of classes that are designed to be invoked on the command line.

Function Documentation

◆ close_connections()

def shell.close_connections (   verbose = True)

Definition at line 20 of file shell.py.

References print().

20 def close_connections(verbose=True):
21  global connections
22  for connection in connections:
23  connection_string = "%s/%s" % (connection.connection_data["database_name"], connection.connection_data["schema"])
24  connection.tear_down()
25  if verbose:
26  print("Connection to %s was closed." % connection_string)
void print(TMatrixD &m, const char *label=nullptr, bool mathematicaFormat=false)
Definition: Utilities.cc:47
def close_connections(verbose=True)
Definition: shell.py:20

◆ connect()

def shell.connect (   connection_data = None,
  mode = "r",
  map_blobs = False,
  secrets = None,
  pooling = True 
)

Definition at line 13 of file shell.py.

References querying.connect().

Referenced by shell_tests.shell_tests.test_init_shell().

13 def connect(connection_data=None, mode="r", map_blobs=False, secrets=None, pooling=True):
14  if connection_data == None:
15  connection_data = "frontier://FrontierProd/CMS_CONDITIONS"
16  connection = querying.connect(connection_data, mode=mode, map_blobs=map_blobs, secrets=secrets, pooling=pooling)
17  connections.append(connection)
18  return connection
19 
def connect(connection_data, mode="r", map_blobs=False, secrets=None, pooling=True)
Definition: querying.py:453
def connect(connection_data=None, mode="r", map_blobs=False, secrets=None, pooling=True)
Definition: shell.py:13