We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b6d6fe6 commit 133e76dCopy full SHA for 133e76d
CHANGES
@@ -1,6 +1,18 @@
1
Changes
2
=======
3
4
+0.40.0
5
+------
6
+Added ``nested`` output option, which makes the response from a ``select``
7
+query use nested dictionaries:
8
+
9
+.. code-block:: python
10
11
+ >>> await Band.select(Band.name, *Band.manager.all_columns()).output(nested=True).run()
12
+ [{'name': 'Pythonistas', 'manager': {'id': 1, 'name': 'Guido'}}]
13
14
+Thanks to @wmshort for the idea.
15
16
0.39.0
17
------
18
Added ``to_dict`` method to ``Table``.
piccolo/__init__.py
@@ -1 +1 @@
-__VERSION__ = "0.39.0"
+__VERSION__ = "0.40.0"
0 commit comments