rda-python-dscheck 2.0.6__py3-none-any.whl → 2.0.8__py3-none-any.whl
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.
- rda_python_dscheck/__init__.py +26 -0
- rda_python_dscheck/dscheck.usg +493 -413
- rda_python_dscheck/pg_check.py +3 -1
- rda_python_dscheck-2.0.8.dist-info/METADATA +93 -0
- rda_python_dscheck-2.0.8.dist-info/RECORD +12 -0
- rda_python_dscheck-2.0.6.dist-info/METADATA +0 -22
- rda_python_dscheck-2.0.6.dist-info/RECORD +0 -12
- {rda_python_dscheck-2.0.6.dist-info → rda_python_dscheck-2.0.8.dist-info}/WHEEL +0 -0
- {rda_python_dscheck-2.0.6.dist-info → rda_python_dscheck-2.0.8.dist-info}/entry_points.txt +0 -0
- {rda_python_dscheck-2.0.6.dist-info → rda_python_dscheck-2.0.8.dist-info}/licenses/LICENSE +0 -0
- {rda_python_dscheck-2.0.6.dist-info → rda_python_dscheck-2.0.8.dist-info}/top_level.txt +0 -0
rda_python_dscheck/__init__.py
CHANGED
|
@@ -1 +1,27 @@
|
|
|
1
|
+
"""rda_python_dscheck: dataset check (dscheck) utility package.
|
|
1
2
|
|
|
3
|
+
This package exposes two parallel APIs:
|
|
4
|
+
|
|
5
|
+
1. Legacy module-based API (back-compat). Import the capitalized
|
|
6
|
+
submodule and call its module-level functions, e.g.::
|
|
7
|
+
|
|
8
|
+
from rda_python_dscheck import PgCheck
|
|
9
|
+
|
|
10
|
+
2. Class-based API (preferred for new code). Import the class from the
|
|
11
|
+
lower-case module and either instantiate or subclass it, e.g.::
|
|
12
|
+
|
|
13
|
+
from rda_python_dscheck.pg_check import PgCheck
|
|
14
|
+
|
|
15
|
+
The legacy submodule is eagerly imported below so that
|
|
16
|
+
``from rda_python_dscheck import PgCheck`` continues to return the module
|
|
17
|
+
object that existing callers expect.
|
|
18
|
+
"""
|
|
19
|
+
|
|
20
|
+
from . import PgCheck
|
|
21
|
+
|
|
22
|
+
__version__ = "2.0.8"
|
|
23
|
+
|
|
24
|
+
__all__ = [
|
|
25
|
+
"PgCheck",
|
|
26
|
+
"__version__",
|
|
27
|
+
]
|