reservation.core ================ .. py:module:: reservation.core Classes ------- .. autoapisummary:: reservation.core.LibresIntegration Module Contents --------------- .. py:class:: LibresIntegration Provides libres integration for :class:`onegov.core.framework.Framework` based applications. The application must be connected to a database Usage:: from onegov.core import Framework class MyApp(Framework, LibresIntegration): pass .. py:attribute:: session_manager :type: onegov.core.orm.session_manager.SessionManager .. py:method:: configure_libres(**cfg: Any) -> None Configures the libres integration and leaves two properties on the class: :libres_context: The libres context configured for the current application. :libres_registrye: The libres registry bound to the current application. With those two a scheduler can easily be created:: from libres import new_scheduler scheduler = new_scheduler( app.libres_context, 'test', 'Europe/Zurich' ) .. py:method:: libres_context_from_session_manager(registry: libres.context.registry.Registry, session_manager: onegov.core.orm.session_manager.SessionManager) -> libres.context.core.Context :staticmethod: .. py:property:: libres_resources :type: onegov.reservation.collection.ResourceCollection