ATLAS Offline Software
Loading...
Searching...
No Matches
TestEnviron.py
Go to the documentation of this file.
1#!/usr/bin/env python
2# Copyright (C) 2002-2020 CERN for the benefit of the ATLAS collaboration
3
4
5import os
6
7print ('Content-Type: text/html')
8print () # Blank line, end of headers
9print ('<html>')
10for key in os.environ:
11 print('<p><b>',key,':</b>',os.environ[key],'<p>')
12print ('</html>')
void print(char *figname, TCanvas *c1)