thds.attrs-utils 1.6.20251103154246__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/attrs_utils/__init__.py +4 -0
- thds/attrs_utils/cattrs/__init__.py +29 -0
- thds/attrs_utils/cattrs/converter.py +182 -0
- thds/attrs_utils/cattrs/errors.py +46 -0
- thds/attrs_utils/defaults.py +31 -0
- thds/attrs_utils/docs.py +75 -0
- thds/attrs_utils/empty.py +146 -0
- thds/attrs_utils/isinstance/__init__.py +4 -0
- thds/attrs_utils/isinstance/check.py +107 -0
- thds/attrs_utils/isinstance/registry.py +13 -0
- thds/attrs_utils/isinstance/util.py +106 -0
- thds/attrs_utils/jsonschema/__init__.py +11 -0
- thds/attrs_utils/jsonschema/constructors.py +90 -0
- thds/attrs_utils/jsonschema/jsonschema.py +326 -0
- thds/attrs_utils/jsonschema/str_formats.py +109 -0
- thds/attrs_utils/jsonschema/util.py +94 -0
- thds/attrs_utils/py.typed +0 -0
- thds/attrs_utils/random/__init__.py +3 -0
- thds/attrs_utils/random/attrs.py +57 -0
- thds/attrs_utils/random/builtin.py +103 -0
- thds/attrs_utils/random/collection.py +41 -0
- thds/attrs_utils/random/gen.py +134 -0
- thds/attrs_utils/random/optional.py +13 -0
- thds/attrs_utils/random/registry.py +30 -0
- thds/attrs_utils/random/tuple.py +24 -0
- thds/attrs_utils/random/union.py +33 -0
- thds/attrs_utils/random/util.py +55 -0
- thds/attrs_utils/recursion.py +48 -0
- thds/attrs_utils/registry.py +40 -0
- thds/attrs_utils/type_cache.py +110 -0
- thds/attrs_utils/type_recursion.py +168 -0
- thds/attrs_utils/type_utils.py +180 -0
- thds_attrs_utils-1.6.20251103154246.dist-info/METADATA +230 -0
- thds_attrs_utils-1.6.20251103154246.dist-info/RECORD +36 -0
- thds_attrs_utils-1.6.20251103154246.dist-info/WHEEL +5 -0
- thds_attrs_utils-1.6.20251103154246.dist-info/top_level.txt +1 -0
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
thds/attrs_utils/__init__.py,sha256=7hP-VWe-nq56jMk4jqsDanussQDzTUgOG94zUn7GgwA,122
|
|
2
|
+
thds/attrs_utils/defaults.py,sha256=SjxB44PsArwJmtqDZ70iShdYZ1BxSlW8kQ2DnFCkeEg,1019
|
|
3
|
+
thds/attrs_utils/docs.py,sha256=ill0gCf2EWe7Lx9vz5xSqotmj6jh3vIt7wB3stwPI7o,2852
|
|
4
|
+
thds/attrs_utils/empty.py,sha256=96oeOFfovDmQgOHLqcwvNmd9c8-MTwAzZ_lP8XVIZc4,4633
|
|
5
|
+
thds/attrs_utils/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
6
|
+
thds/attrs_utils/recursion.py,sha256=qQjygpMnFtR2oNmTn6S24YojsJzc7lPzHBh0_DJsdKs,1607
|
|
7
|
+
thds/attrs_utils/registry.py,sha256=XVdz9MAlsSYPxHub1jcgMhns8Z_kNcsstI76OHwZV_k,1051
|
|
8
|
+
thds/attrs_utils/type_cache.py,sha256=t--FCqzJcwKhy-WJHqOxYr0dhaMOLvgViU13WZHGPzk,4008
|
|
9
|
+
thds/attrs_utils/type_recursion.py,sha256=Lr9BXO4VpNQMMFa--8ruQplsmP1YieAxizxl3O0LFp4,7400
|
|
10
|
+
thds/attrs_utils/type_utils.py,sha256=368WqiE0ojWFevt1iTVehsEQ8Jtyp68wbSAQiPQmXbQ,4924
|
|
11
|
+
thds/attrs_utils/cattrs/__init__.py,sha256=635CMqhH1Bzd-p1-c6l0MJrxKgmlk45EmA-IbGGbfC8,822
|
|
12
|
+
thds/attrs_utils/cattrs/converter.py,sha256=CIpHTf3GTtAmUcxU-FncsmYVe_9eoPqpFK7wSqgHCu4,7560
|
|
13
|
+
thds/attrs_utils/cattrs/errors.py,sha256=w7O7hRr8LcI17av1MTEnu-Im4jESECnpK30QqNVUqE8,1899
|
|
14
|
+
thds/attrs_utils/isinstance/__init__.py,sha256=EAGULDzlI85Mgedsy7FY8lbTpMa-qJHsh_dL-adrv3E,248
|
|
15
|
+
thds/attrs_utils/isinstance/check.py,sha256=zfyfT8Wm0wbfodxgUAbAZTYmxdmapRXiw-DA2I8pIys,3455
|
|
16
|
+
thds/attrs_utils/isinstance/registry.py,sha256=WumuN5F156fv3K39nbdvEVnDilKxD-UwKLla5GqghDs,251
|
|
17
|
+
thds/attrs_utils/isinstance/util.py,sha256=iAK7_eFKDBUclX-UTYk4XGNB-T4cfX8c6A9xHMcka8U,2956
|
|
18
|
+
thds/attrs_utils/jsonschema/__init__.py,sha256=UV5P8-Dnw4LlC6-xRbhmxPdqqeORnWT8Pjp3RqwSCxo,221
|
|
19
|
+
thds/attrs_utils/jsonschema/constructors.py,sha256=reSbWiHYgWqVL6iWB_XSWB5nLPesq1joa-dfSLtFzj0,1839
|
|
20
|
+
thds/attrs_utils/jsonschema/jsonschema.py,sha256=GZPm-RkcC-F5FFTN7btUnCMVN4DDvF02xfnvI4J8WAA,12895
|
|
21
|
+
thds/attrs_utils/jsonschema/str_formats.py,sha256=P_7IbvEvsJ5hEMfkwmiI85n4pBBfCNH5uv6nklG4O9A,3361
|
|
22
|
+
thds/attrs_utils/jsonschema/util.py,sha256=oa-cbIqplkriTIFTiW2OsVNyYpgFoK8sYMG8OJEIK3c,3400
|
|
23
|
+
thds/attrs_utils/random/__init__.py,sha256=A1n-9fispK5EkZFpwOhNJpO1kY_7xDZ5zec5ckflpmY,160
|
|
24
|
+
thds/attrs_utils/random/attrs.py,sha256=fLed-aLcCqZ2gLhHQogY5sn32A4HE_LlpobHuj8qvL8,1695
|
|
25
|
+
thds/attrs_utils/random/builtin.py,sha256=p16zK3CJJITfCpe2gg4f1TkRXi25y4m97o5CvZKmfWA,2854
|
|
26
|
+
thds/attrs_utils/random/collection.py,sha256=gSa_-478_KUcqzYt-01OREB3nJ7bcfGxwnFjSB7JJ30,1116
|
|
27
|
+
thds/attrs_utils/random/gen.py,sha256=kp0XZoFHL4lkzZvxWZJ9bMGLDHAaNqTTioAk31-mKF4,4737
|
|
28
|
+
thds/attrs_utils/random/optional.py,sha256=Mm0WnJ6VeUUUhYelrOK7ZAYRJePlBalHc0wQECyO9uM,386
|
|
29
|
+
thds/attrs_utils/random/registry.py,sha256=IcC2ucJtrnOG0RH43VK8lrMha1uhYflz8_pZJZj7jJ4,1056
|
|
30
|
+
thds/attrs_utils/random/tuple.py,sha256=YI_wzYFzprUG9iuxwloWz9OqQDmVJuhp9epu_pnUI2w,783
|
|
31
|
+
thds/attrs_utils/random/union.py,sha256=FEWB4SByQFVr0vCGeWUor4W3bTB3sj0MEdavGxrBc98,1242
|
|
32
|
+
thds/attrs_utils/random/util.py,sha256=tQKjJFP58NEhX5UNYuHeAUOiyf1SE39EQeZgj2O1uKk,1557
|
|
33
|
+
thds_attrs_utils-1.6.20251103154246.dist-info/METADATA,sha256=OQ7_IcJveeTc4aSFeYNO9AizxI0wEdNhE6MMfNF2kQY,8685
|
|
34
|
+
thds_attrs_utils-1.6.20251103154246.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
35
|
+
thds_attrs_utils-1.6.20251103154246.dist-info/top_level.txt,sha256=LTZaE5SkWJwv9bwOlMbIhiS-JWQEEIcjVYnJrt-CriY,5
|
|
36
|
+
thds_attrs_utils-1.6.20251103154246.dist-info/RECORD,,
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
thds
|