To reset a column value to its default, the following SQL statement can be used:
update "<table>"
set "<column>" = default
where "<condition>"
However, I couldn't find how to get the same query with SQLAlchemy. It can be taken from column's definition, but the idea is to get a query as above.
Table.column.default # ColumnDefault object