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.
@@ -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
+ ]