thds.tabularasa 0.13.0__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.
- thds/tabularasa/__init__.py +6 -0
- thds/tabularasa/__main__.py +1122 -0
- thds/tabularasa/compat.py +33 -0
- thds/tabularasa/data_dependencies/__init__.py +0 -0
- thds/tabularasa/data_dependencies/adls.py +97 -0
- thds/tabularasa/data_dependencies/build.py +573 -0
- thds/tabularasa/data_dependencies/sqlite.py +286 -0
- thds/tabularasa/data_dependencies/tabular.py +167 -0
- thds/tabularasa/data_dependencies/util.py +209 -0
- thds/tabularasa/diff/__init__.py +0 -0
- thds/tabularasa/diff/data.py +346 -0
- thds/tabularasa/diff/schema.py +254 -0
- thds/tabularasa/diff/summary.py +249 -0
- thds/tabularasa/git_util.py +37 -0
- thds/tabularasa/loaders/__init__.py +0 -0
- thds/tabularasa/loaders/lazy_adls.py +44 -0
- thds/tabularasa/loaders/parquet_util.py +385 -0
- thds/tabularasa/loaders/sqlite_util.py +346 -0
- thds/tabularasa/loaders/util.py +532 -0
- thds/tabularasa/py.typed +0 -0
- thds/tabularasa/schema/__init__.py +7 -0
- thds/tabularasa/schema/compilation/__init__.py +20 -0
- thds/tabularasa/schema/compilation/_format.py +50 -0
- thds/tabularasa/schema/compilation/attrs.py +257 -0
- thds/tabularasa/schema/compilation/attrs_sqlite.py +278 -0
- thds/tabularasa/schema/compilation/io.py +96 -0
- thds/tabularasa/schema/compilation/pandas.py +252 -0
- thds/tabularasa/schema/compilation/pyarrow.py +93 -0
- thds/tabularasa/schema/compilation/sphinx.py +550 -0
- thds/tabularasa/schema/compilation/sqlite.py +69 -0
- thds/tabularasa/schema/compilation/util.py +117 -0
- thds/tabularasa/schema/constraints.py +327 -0
- thds/tabularasa/schema/dtypes.py +153 -0
- thds/tabularasa/schema/extract_from_parquet.py +132 -0
- thds/tabularasa/schema/files.py +215 -0
- thds/tabularasa/schema/metaschema.py +1007 -0
- thds/tabularasa/schema/util.py +123 -0
- thds/tabularasa/schema/validation.py +878 -0
- thds/tabularasa/sqlite3_compat.py +41 -0
- thds/tabularasa/sqlite_from_parquet.py +34 -0
- thds/tabularasa/to_sqlite.py +56 -0
- thds_tabularasa-0.13.0.dist-info/METADATA +530 -0
- thds_tabularasa-0.13.0.dist-info/RECORD +46 -0
- thds_tabularasa-0.13.0.dist-info/WHEEL +5 -0
- thds_tabularasa-0.13.0.dist-info/entry_points.txt +2 -0
- thds_tabularasa-0.13.0.dist-info/top_level.txt +1 -0
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
thds/tabularasa/__init__.py,sha256=jc6w1WD868MQ2t4wkRNYvRssojwXvPDcNyC8V5gwbl0,169
|
|
2
|
+
thds/tabularasa/__main__.py,sha256=w10WQRwQmer4Hn3JmgHqjtVJ2WEjs9MtTiDvsAS9gog,47648
|
|
3
|
+
thds/tabularasa/compat.py,sha256=j0313TPIXtkbfvRI0AH4if8GLrjQSrDJ9heayCIl9w8,1037
|
|
4
|
+
thds/tabularasa/git_util.py,sha256=fBFhaCPi_5W2BpG2B3WiPcAWJvuVI_pG47rt73wLO6E,1388
|
|
5
|
+
thds/tabularasa/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
6
|
+
thds/tabularasa/sqlite3_compat.py,sha256=67hldmiLFTjG0qL2TPX0USV7XNfTjEN3j8MneqNWDNU,1646
|
|
7
|
+
thds/tabularasa/sqlite_from_parquet.py,sha256=yJatUIAbgErHUOL5dhchWJwzKZCrDrx93SP0nGm7It8,1115
|
|
8
|
+
thds/tabularasa/to_sqlite.py,sha256=5lcEUh38MNebxAJdLp2XGWOP_WQDIADtL1fyhOvi9UU,1715
|
|
9
|
+
thds/tabularasa/data_dependencies/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
10
|
+
thds/tabularasa/data_dependencies/adls.py,sha256=smL-iRYr9aXFFpW4inQBQmB-ieBKXcBVe9AdwV2zisw,3161
|
|
11
|
+
thds/tabularasa/data_dependencies/build.py,sha256=6iYgw93sOF2Nlnb6WSmA9NvPNwOf_Yyi2wXUQpRVkJM,23382
|
|
12
|
+
thds/tabularasa/data_dependencies/sqlite.py,sha256=eweuLdoxyGlG-PvQUANarlMe_mmZgA5cxuMbOYxcpsQ,12576
|
|
13
|
+
thds/tabularasa/data_dependencies/tabular.py,sha256=oq9wFse235ikLEv8Zvol59ptRRojZbkbzXJyQeFfC9o,6529
|
|
14
|
+
thds/tabularasa/data_dependencies/util.py,sha256=FQ9G1nIpqKh00z2lXOt0Y2R1mLQsEb-BC6Tka1z2egc,8489
|
|
15
|
+
thds/tabularasa/diff/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
16
|
+
thds/tabularasa/diff/data.py,sha256=J1YK9thlXRn4WYQjCKG5kgkGPPRp2wu9rPjkLbyIi3E,11680
|
|
17
|
+
thds/tabularasa/diff/schema.py,sha256=I-RC7yQuLWj5DqxWMWzQgMecT6LanJ2k1bH9-IJELcg,8855
|
|
18
|
+
thds/tabularasa/diff/summary.py,sha256=gENtDwhSrDYeN-8fWr6Ug2zgdp584b0pZF9UBYzKFlc,10039
|
|
19
|
+
thds/tabularasa/loaders/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
20
|
+
thds/tabularasa/loaders/lazy_adls.py,sha256=jrWy5tTKDQfWEv6aHQ3UJhFzLrDPOlSGsArv9zcl1g8,1375
|
|
21
|
+
thds/tabularasa/loaders/parquet_util.py,sha256=u75j3PkMSakO2zfq4zksWzXLYnaO--WizAgXTcSpXRY,13354
|
|
22
|
+
thds/tabularasa/loaders/sqlite_util.py,sha256=GLP271SF-GVQwxaaB0p5kCG0eGay6j4mWabL00a9pz0,11954
|
|
23
|
+
thds/tabularasa/loaders/util.py,sha256=XmsGkDdL6O8R6B4667Iqi5HoRgq0YMs6LP3VvPIqPVU,21369
|
|
24
|
+
thds/tabularasa/schema/__init__.py,sha256=bowvNXrrDrWB3TAmwDxCeEAvVEe9z7iRfqRaNg1Qmo4,440
|
|
25
|
+
thds/tabularasa/schema/constraints.py,sha256=V2vh01BhYR8OVQvgdujqSi0l_fMJvFKYSlBvWExZFG0,9744
|
|
26
|
+
thds/tabularasa/schema/dtypes.py,sha256=wHoDXiQoZ5_wC5K6b_TnPkmhtkrSMYmjZQ8TNault0I,4816
|
|
27
|
+
thds/tabularasa/schema/extract_from_parquet.py,sha256=WBOr0Vr2BFShfIyE3q7yXzgGhtTTyFYi3WV4lqr4MME,4730
|
|
28
|
+
thds/tabularasa/schema/files.py,sha256=gvDaeM9a0W7SpOBICw2WvWzepaRumu6c5ijAiXFeY_8,7604
|
|
29
|
+
thds/tabularasa/schema/metaschema.py,sha256=dPcyfVoeFOooRdOm-oliznU9NUkgkbNhwgFUXd2--eU,36997
|
|
30
|
+
thds/tabularasa/schema/util.py,sha256=3Rv3Mf1-Tw0obmq9vWoc2bQr9sy0viqn48a41c-RK84,4265
|
|
31
|
+
thds/tabularasa/schema/validation.py,sha256=5ESI1SCj8wgYiRaDP3oxtLgdbyhOShN_wwD5zSng7js,32193
|
|
32
|
+
thds/tabularasa/schema/compilation/__init__.py,sha256=kOX2fFyPsWfidxW1lYs1-oiKH_DsA1nPKalppf7gLWQ,636
|
|
33
|
+
thds/tabularasa/schema/compilation/_format.py,sha256=RayqDj-SXTtEFfPLyYvTRC1sL82LNVcOol40w5s8Qz8,1854
|
|
34
|
+
thds/tabularasa/schema/compilation/attrs.py,sha256=u6sTIajs2uEfbsRJcst05C-ekBS_-bsvHwJK8l0Q_ZQ,7749
|
|
35
|
+
thds/tabularasa/schema/compilation/attrs_sqlite.py,sha256=ayWOXgw7iuZtxkS9CHwjjtjUr4Wn8Vuus3tuiEbBiOk,10148
|
|
36
|
+
thds/tabularasa/schema/compilation/io.py,sha256=ehhVP0On0XwIm6qWSCO5uo7r5CjpThpBRLYKAqrb40I,3199
|
|
37
|
+
thds/tabularasa/schema/compilation/pandas.py,sha256=6yxXTTIlcTXsttVh9uRMccetty6OrvdbmRXgbvvHdyA,8176
|
|
38
|
+
thds/tabularasa/schema/compilation/pyarrow.py,sha256=pcNQ3a6UPJT1PBj6xHOl99UvZftp1hqV5OFdFbT0OHU,3030
|
|
39
|
+
thds/tabularasa/schema/compilation/sphinx.py,sha256=we5X-ZpCk6WH-8KCXAv6Nklg1JZmnkGPT3V2EHa2_rg,17491
|
|
40
|
+
thds/tabularasa/schema/compilation/sqlite.py,sha256=wSrSlVCYeuTpOf9AOHAnp6gJHkjHZhx8UkgkYgfoQVw,2368
|
|
41
|
+
thds/tabularasa/schema/compilation/util.py,sha256=YXFe1_yoBobED010hstKIoq-dwLHo6SBv1v1IAw6AYU,3886
|
|
42
|
+
thds_tabularasa-0.13.0.dist-info/METADATA,sha256=_L0l3HRtQ1BEsHweVjb5Oxmz_-JaMbAMcRQR5NtZ3pc,26786
|
|
43
|
+
thds_tabularasa-0.13.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
44
|
+
thds_tabularasa-0.13.0.dist-info/entry_points.txt,sha256=PX4ShRonjv6lMsVjrGu8RkFzpyyvgM9EnZlNfMomd9k,61
|
|
45
|
+
thds_tabularasa-0.13.0.dist-info/top_level.txt,sha256=LTZaE5SkWJwv9bwOlMbIhiS-JWQEEIcjVYnJrt-CriY,5
|
|
46
|
+
thds_tabularasa-0.13.0.dist-info/RECORD,,
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
thds
|