rda-python-common 1.0.13__tar.gz → 1.0.15__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of rda-python-common might be problematic. Click here for more details.
- {rda_python_common-1.0.13 → rda_python_common-1.0.15}/PKG-INFO +3 -2
- {rda_python_common-1.0.13 → rda_python_common-1.0.15}/pyproject.toml +1 -1
- {rda_python_common-1.0.13 → rda_python_common-1.0.15}/src/rda_python_common/PgLOG.py +18 -2
- {rda_python_common-1.0.13 → rda_python_common-1.0.15}/src/rda_python_common.egg-info/PKG-INFO +3 -2
- {rda_python_common-1.0.13 → rda_python_common-1.0.15}/LICENSE +0 -0
- {rda_python_common-1.0.13 → rda_python_common-1.0.15}/README.md +0 -0
- {rda_python_common-1.0.13 → rda_python_common-1.0.15}/setup.cfg +0 -0
- {rda_python_common-1.0.13 → rda_python_common-1.0.15}/src/rda_python_common/PgCMD.py +0 -0
- {rda_python_common-1.0.13 → rda_python_common-1.0.15}/src/rda_python_common/PgDBI.py +0 -0
- {rda_python_common-1.0.13 → rda_python_common-1.0.15}/src/rda_python_common/PgFile.py +0 -0
- {rda_python_common-1.0.13 → rda_python_common-1.0.15}/src/rda_python_common/PgLock.py +0 -0
- {rda_python_common-1.0.13 → rda_python_common-1.0.15}/src/rda_python_common/PgOPT.py +0 -0
- {rda_python_common-1.0.13 → rda_python_common-1.0.15}/src/rda_python_common/PgSIG.py +0 -0
- {rda_python_common-1.0.13 → rda_python_common-1.0.15}/src/rda_python_common/PgSplit.py +0 -0
- {rda_python_common-1.0.13 → rda_python_common-1.0.15}/src/rda_python_common/PgUtil.py +0 -0
- {rda_python_common-1.0.13 → rda_python_common-1.0.15}/src/rda_python_common/__init__.py +0 -0
- {rda_python_common-1.0.13 → rda_python_common-1.0.15}/src/rda_python_common.egg-info/SOURCES.txt +0 -0
- {rda_python_common-1.0.13 → rda_python_common-1.0.15}/src/rda_python_common.egg-info/dependency_links.txt +0 -0
- {rda_python_common-1.0.13 → rda_python_common-1.0.15}/src/rda_python_common.egg-info/top_level.txt +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
Metadata-Version: 2.
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
2
|
Name: rda_python_common
|
|
3
|
-
Version: 1.0.
|
|
3
|
+
Version: 1.0.15
|
|
4
4
|
Summary: RDA Python common library codes shared by other RDA python packages
|
|
5
5
|
Author-email: Zaihua Ji <zji@ucar.edu>
|
|
6
6
|
Project-URL: Homepage, https://github.com/NCAR/rda-python-common
|
|
@@ -11,6 +11,7 @@ Classifier: Development Status :: 5 - Production/Stable
|
|
|
11
11
|
Requires-Python: >=3.7
|
|
12
12
|
Description-Content-Type: text/markdown
|
|
13
13
|
License-File: LICENSE
|
|
14
|
+
Dynamic: license-file
|
|
14
15
|
|
|
15
16
|
# rda-python-common
|
|
16
17
|
Python common library codes to be shared by other RDA python utility programs.
|
|
@@ -109,6 +109,7 @@ PGLOG = { # more defined in untaint_suid() with environment variables
|
|
|
109
109
|
'DSIDCHRS' : "d",
|
|
110
110
|
'DOSHELL' : False,
|
|
111
111
|
'NEWDSID' : True,
|
|
112
|
+
'PUSGDIR' : None,
|
|
112
113
|
'BCHHOSTS' : "PBS",
|
|
113
114
|
'HOSTTYPE' : 'dav', # default HOSTTYPE
|
|
114
115
|
'EMLMAX' : 256, # up limit of email line count
|
|
@@ -479,6 +480,13 @@ def get_call_trace(cut = 1):
|
|
|
479
480
|
|
|
480
481
|
return str + "\n" if str else ""
|
|
481
482
|
|
|
483
|
+
#
|
|
484
|
+
# get caller file name
|
|
485
|
+
#
|
|
486
|
+
def get_caller_file(cidx = 0):
|
|
487
|
+
|
|
488
|
+
return traceback.extract_stack()[cidx][0]
|
|
489
|
+
|
|
482
490
|
#
|
|
483
491
|
# log message, msg, for degugging processes according to the debug level
|
|
484
492
|
#
|
|
@@ -541,6 +549,13 @@ def pgtrim(line, rmcmt = 1):
|
|
|
541
549
|
|
|
542
550
|
return line
|
|
543
551
|
|
|
552
|
+
#
|
|
553
|
+
# set PGLOG['PUSGDIR'] from the program file with full path
|
|
554
|
+
#
|
|
555
|
+
def set_help_path(progfile):
|
|
556
|
+
|
|
557
|
+
PGLOG['PUSGDIR'] = op.dirname(op.abspath(progfile))
|
|
558
|
+
|
|
544
559
|
#
|
|
545
560
|
# Function: show_usage(progname: Perl program name to get file "progname.usg")
|
|
546
561
|
#
|
|
@@ -549,7 +564,9 @@ def pgtrim(line, rmcmt = 1):
|
|
|
549
564
|
#
|
|
550
565
|
def show_usage(progname, opts = None):
|
|
551
566
|
|
|
552
|
-
|
|
567
|
+
if PGLOG['PUSGDIR'] is None: set_help_path(get_caller_file())
|
|
568
|
+
usgname = join_paths(PGLOG['PUSGDIR'], progname + '.usg')
|
|
569
|
+
|
|
553
570
|
if opts:
|
|
554
571
|
# show usage for individual option of dsarch
|
|
555
572
|
for opt in opts:
|
|
@@ -1276,7 +1293,6 @@ def set_common_pglog():
|
|
|
1276
1293
|
SETPGLOG("DRDATAEP", "rda-quasar-drdata") # DRDATA Globus Endpoint on Quasar
|
|
1277
1294
|
SETPGLOG("DBGFILE", "pgdss.dbg") # debug file name
|
|
1278
1295
|
SETPGLOG("CNFPATH", PGLOG['DSSHOME']+"/config") # path to configuration files
|
|
1279
|
-
SETPGLOG("PUSGDIR", PGLOG['DSSDBHM']+"/prog_usage") # path to program usage files
|
|
1280
1296
|
SETPGLOG("DSSURL", "https://rda.ucar.edu") # current dss web URL
|
|
1281
1297
|
SETPGLOG("RQSTURL", "/datasets/request") # request URL path
|
|
1282
1298
|
SETPGLOG("WEBSERVERS", "rda-web-prod01.ucar.edu:rda-web-test01.ucar.edu") # webserver names for Web server
|
{rda_python_common-1.0.13 → rda_python_common-1.0.15}/src/rda_python_common.egg-info/PKG-INFO
RENAMED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
Metadata-Version: 2.
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
2
|
Name: rda_python_common
|
|
3
|
-
Version: 1.0.
|
|
3
|
+
Version: 1.0.15
|
|
4
4
|
Summary: RDA Python common library codes shared by other RDA python packages
|
|
5
5
|
Author-email: Zaihua Ji <zji@ucar.edu>
|
|
6
6
|
Project-URL: Homepage, https://github.com/NCAR/rda-python-common
|
|
@@ -11,6 +11,7 @@ Classifier: Development Status :: 5 - Production/Stable
|
|
|
11
11
|
Requires-Python: >=3.7
|
|
12
12
|
Description-Content-Type: text/markdown
|
|
13
13
|
License-File: LICENSE
|
|
14
|
+
Dynamic: license-file
|
|
14
15
|
|
|
15
16
|
# rda-python-common
|
|
16
17
|
Python common library codes to be shared by other RDA python utility programs.
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{rda_python_common-1.0.13 → rda_python_common-1.0.15}/src/rda_python_common.egg-info/SOURCES.txt
RENAMED
|
File without changes
|
|
File without changes
|
{rda_python_common-1.0.13 → rda_python_common-1.0.15}/src/rda_python_common.egg-info/top_level.txt
RENAMED
|
File without changes
|