activity.types ============== .. py:module:: activity.types Classes ------- .. autoapisummary:: activity.types.BoundedIntegerRange Module Contents --------------- .. py:class:: BoundedIntegerRange(lower: int, upper: int, bounds: str = '[)') Bases: :py:obj:`psycopg2.extras.NumericRange` A `Range` suitable to pass Python numeric types to a PostgreSQL range. PostgreSQL types :sql:`int4range`, :sql:`int8range`, :sql:`numrange` are casted into `!NumericRange` instances. .. py:property:: upper :type: int The upper bound of the range. `!None` if empty or unbound. .. py:property:: lower :type: int The lower bound of the range. `!None` if empty or unbound.