try calling it in a new transaction, it's likely constant per transaction time.
$ psql -U scott test
psql (9.6.8)
Type "help" for help.
test=# begin;
BEGIN
test=# select now();
now
------------------------------
2018-03-28 15:03:09.82421-04
(1 row)
test=# select now();
now
------------------------------
2018-03-28 15:03:09.82421-04
(1 row)
test=# select now();
now
------------------------------
2018-03-28 15:03:09.82421-04
(1 row)
test=# rollback;
ROLLBACK
test=# select now();
now
-------------------------------
2018-03-28 15:03:30.023129-04
(1 row)
test=# select now();
now
-------------------------------
2018-03-28 15:03:31.906217-04
(1 row)
test=#
> --
> SQLAlchemy -
> The Python SQL Toolkit and Object Relational Mapper
>
>
http://www.sqlalchemy.org/
>
> To post example code, please provide an MCVE: Minimal, Complete, and
> Verifiable Example. See
http://stackoverflow.com/help/mcve for a full
> description.
> ---
> You received this message because you are subscribed to the Google Groups
> "sqlalchemy" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to
sqlalchemy+...@googlegroups.com.
> To post to this group, send email to
sqlal...@googlegroups.com.
> Visit this group at
https://groups.google.com/group/sqlalchemy.
> For more options, visit
https://groups.google.com/d/optout.