election_day.collections.data_sources ===================================== .. py:module:: election_day.collections.data_sources Classes ------- .. autoapisummary:: election_day.collections.data_sources.DataSourceCollection election_day.collections.data_sources.DataSourceItemCollection Module Contents --------------- .. py:class:: DataSourceCollection(session: sqlalchemy.orm.Session, page: int = 0) Bases: :py:obj:`onegov.core.collection.Pagination`\ [\ :py:obj:`onegov.election_day.models.DataSource`\ ] Provides collections with pagination, if they implement a few documented properties and methods. See :class:`onegov.ticket.TicketCollection` for an example. .. py:attribute:: page :type: int .. py:attribute:: session .. py:method:: __eq__(other: object) -> bool Returns True if the current and the other Pagination instance are equal. Used to find the current page in a list of pages. .. py:method:: subset() -> sqlalchemy.orm.Query[onegov.election_day.models.DataSource] Returns an SQLAlchemy query containing all records that should be considered for pagination. .. py:property:: page_index :type: int Returns the current page index (starting at 0). .. py:method:: page_by_index(index: int) -> Self Returns the page at the given index. A page here means an instance of the class inheriting from the ``Pagination`` base class. .. py:method:: query() -> sqlalchemy.orm.Query[onegov.election_day.models.DataSource] .. py:method:: by_id(id: uuid.UUID) -> onegov.election_day.models.DataSource | None .. py:method:: add(source: onegov.election_day.models.DataSource) -> None .. py:method:: delete(source: onegov.election_day.models.DataSource) -> None .. py:class:: DataSourceItemCollection(session: sqlalchemy.orm.Session, id: uuid.UUID | None = None, page: int = 0) Bases: :py:obj:`onegov.core.collection.Pagination`\ [\ :py:obj:`onegov.election_day.models.DataSourceItem`\ ] Provides collections with pagination, if they implement a few documented properties and methods. See :class:`onegov.ticket.TicketCollection` for an example. .. py:attribute:: page :type: int .. py:attribute:: session .. py:attribute:: id :value: None .. py:method:: __eq__(other: object) -> bool Returns True if the current and the other Pagination instance are equal. Used to find the current page in a list of pages. .. py:method:: subset() -> sqlalchemy.orm.Query[onegov.election_day.models.DataSourceItem] Returns an SQLAlchemy query containing all records that should be considered for pagination. .. py:property:: page_index :type: int Returns the current page index (starting at 0). .. py:method:: page_by_index(index: int) -> Self Returns the page at the given index. A page here means an instance of the class inheriting from the ``Pagination`` base class. .. py:method:: query() -> sqlalchemy.orm.Query[onegov.election_day.models.DataSourceItem] .. py:method:: by_id(id: uuid.UUID) -> onegov.election_day.models.DataSourceItem | None .. py:property:: source :type: onegov.election_day.models.DataSource | None .. py:method:: add(item: onegov.election_day.models.DataSourceItem) -> None .. py:method:: delete(item: onegov.election_day.models.DataSourceItem) -> None