Piccolo

Latest version: v1.24.1

Safety actively analyzes 723650 Python packages for vulnerabilities to keep your Python projects secure.

Scan your dependencies

Page 7 of 53

1.3.0

-----

Added the ``piccolo user list`` command - a quick and convenient way of listing
Piccolo Admin users from the command line.

``ModelBuilder`` now creates timezone aware ``datetime`` objects for
``Timestamptz`` columns.

Updated the ASGI templates.

SQLite auto migrations are now allowed. We used to raise an exception, but
now we output a warning instead. While SQLite auto migrations aren't as feature
rich as Postgres, they work fine for simple use cases.

-------------------------------------------------------------------------------

1.2.2

-----

Fixed a bug with filtering ``Array`` columns when choices are defined. Thanks
to sinisaos for discovering the solution.

-------------------------------------------------------------------------------

1.2.1

-----

Fixed a bug with ``Array`` columns which have choices defined. Both a
``select`` and ``input`` widget were being shown.

-------------------------------------------------------------------------------

1.2.0

-----

There's now an alternative syntax for joins, which works really well with
static type checkers like Mypy and Pylance.

The traditional syntax (which continues to work as before):

.. code-block:: python

Get the band name, and the manager's name from a related table
await Band.select(Band.name, Band.manager.name)

The alternative syntax is as follows:

.. code-block:: python

await Band.select(Band.name, Band.manager._.name)

Note how we use ``._.`` instead of ``.`` after a ``ForeignKey``.

This offers a considerably better static typing experience. In the above
example, type checkers know that ``Band.manager._.name`` refers to the ``name``
column on the ``Manager`` table. This means typos can be detected, and code
navigation is easier.

Other changes
~~~~~~~~~~~~~

* Improve static typing for ``get_related``.
* Added support for the ``esmerald`` ASGI framework.

-------------------------------------------------------------------------------

1.1.3

-----

Improved CSV downloads - the user now has the option of using commas or
semicolons as delimiters. In Piccolo Admin v1 we had changed to using
semicolons by default, which was causing confusion.

-------------------------------------------------------------------------------

1.1.2

-----

The sidebar styles were improved (see
`this issue <https://github.com/piccolo-orm/piccolo_admin/issues/342>`_ for more
info).

-------------------------------------------------------------------------------

Page 7 of 53

Links

Releases

Has known vulnerabilities

© 2025 Safety CLI Cybersecurity Inc. All Rights Reserved.