TypeDAL 3.15.2__py3-none-any.whl → 3.15.3__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.
Potentially problematic release.
This version of TypeDAL might be problematic. Click here for more details.
- typedal/__about__.py +1 -1
- typedal/core.py +8 -0
- {typedal-3.15.2.dist-info → typedal-3.15.3.dist-info}/METADATA +1 -1
- {typedal-3.15.2.dist-info → typedal-3.15.3.dist-info}/RECORD +6 -6
- {typedal-3.15.2.dist-info → typedal-3.15.3.dist-info}/WHEEL +0 -0
- {typedal-3.15.2.dist-info → typedal-3.15.3.dist-info}/entry_points.txt +0 -0
typedal/__about__.py
CHANGED
typedal/core.py
CHANGED
|
@@ -1697,6 +1697,14 @@ class TypedTable(_TypedTable, metaclass=TableMeta):
|
|
|
1697
1697
|
|
|
1698
1698
|
raise AttributeError(item)
|
|
1699
1699
|
|
|
1700
|
+
def keys(self):
|
|
1701
|
+
"""
|
|
1702
|
+
Return the combination of row + relationship keys.
|
|
1703
|
+
|
|
1704
|
+
Used by dict(row).
|
|
1705
|
+
"""
|
|
1706
|
+
return list(self._row.keys()) + getattr(self, "_with", [])
|
|
1707
|
+
|
|
1700
1708
|
def get(self, item: str, default: Any = None) -> Any:
|
|
1701
1709
|
"""
|
|
1702
1710
|
Try to get a column from this instance, else return default.
|
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
typedal/__about__.py,sha256=
|
|
1
|
+
typedal/__about__.py,sha256=62cP7HMo3c0nBogw4zgAclTNfv9zwu1wgsckXO6IfWI,207
|
|
2
2
|
typedal/__init__.py,sha256=Y6LT5UE3HrfWND_drJddYFbDjfnvqQER8MxZiEREFGw,366
|
|
3
3
|
typedal/caching.py,sha256=6YUzUMpan56nSy3D-Jl0FS-8V4LbTnpRSoDJHj6yPYo,11782
|
|
4
4
|
typedal/cli.py,sha256=SnWceLPDd-t90VPHAV9O3RR7JZtpVniT55TqtrRv3VM,19255
|
|
5
5
|
typedal/config.py,sha256=0qy1zrTUdtmXPM9jHzFnSR1DJsqGJqcdG6pvhzKQHe0,11625
|
|
6
|
-
typedal/core.py,sha256=
|
|
6
|
+
typedal/core.py,sha256=vcbCmQntNUvUWl_DP-0hflss3OronMqIAh_P0GdfqGQ,110674
|
|
7
7
|
typedal/fields.py,sha256=oOmTonXG-g4Lpj5_gSr8GJ-EZIEqO435Fm8-MS_cmoc,7356
|
|
8
8
|
typedal/for_py4web.py,sha256=KIIu8XgnAfRQCJfZCra79k8SInOHiFuLDKUv3hzTJng,1908
|
|
9
9
|
typedal/for_web2py.py,sha256=xn7zo6ImsmTkH6LacbjLQl2oqyBvP0zLqRxEJvMQk1w,1929
|
|
@@ -13,7 +13,7 @@ typedal/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
|
13
13
|
typedal/types.py,sha256=1FIgv1s0be0E8r5Wd9E1nvDvK4ETV8u2NlfI7_P6UUY,6752
|
|
14
14
|
typedal/web2py_py4web_shared.py,sha256=VK9T8P5UwVLvfNBsY4q79ANcABv-jX76YKADt1Zz_co,1539
|
|
15
15
|
typedal/serializers/as_json.py,sha256=3JZlFhPrdvZVFAmH7P5DUAz8-TIk-br0F1CjKG3PFDM,2246
|
|
16
|
-
typedal-3.15.
|
|
17
|
-
typedal-3.15.
|
|
18
|
-
typedal-3.15.
|
|
19
|
-
typedal-3.15.
|
|
16
|
+
typedal-3.15.3.dist-info/METADATA,sha256=zhGdjr7WGvQXGxabXqtJyl1gUHdbh0UGc7uLVYShIxY,10461
|
|
17
|
+
typedal-3.15.3.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
|
18
|
+
typedal-3.15.3.dist-info/entry_points.txt,sha256=m1wqcc_10rHWPdlQ71zEkmJDADUAnZtn7Jac_6mbyUc,44
|
|
19
|
+
typedal-3.15.3.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|