translator_directory.collections.documents ========================================== .. py:module:: translator_directory.collections.documents Attributes ---------- .. autoapisummary:: translator_directory.collections.documents.DEFAULT_DOCUMENT_CATEGORIES Classes ------- .. autoapisummary:: translator_directory.collections.documents.TranslatorDocumentCollection Module Contents --------------- .. py:data:: DEFAULT_DOCUMENT_CATEGORIES :value: ('Antrag', 'Diplome und Zertifikate', 'Abklärungen', 'Bestätigungen der Koordinationsstelle',... .. py:class:: TranslatorDocumentCollection(session: sqlalchemy.orm.Session, translator_id: uuid.UUID, category: str | None) Bases: :py:obj:`onegov.file.FileCollection`\ [\ :py:obj:`onegov.file.File`\ ] Manages files. :param session: The SQLAlchemy db session to use. :param type: The polymorphic type to use and to filter for, or '*' for all. :param allow_duplicates: Prevents duplicates if set to false. Duplicates are detected before pre-processing, so already stored files may be downloaded and added again, as they might have changed during the upload. Note that this does not change existing files. It only prevents new duplicates from being added. .. py:attribute:: supported_content_types :value: 'all' .. py:attribute:: translator_id .. py:attribute:: category .. py:property:: translator :type: onegov.translator_directory.models.translator.Translator | None .. py:property:: unique_categories :type: list[str] Returns a list of the defined default categories and the ones in the database. .. py:property:: files_by_category :type: tuple[tuple[str, tuple[onegov.file.File, Ellipsis]], Ellipsis]