bioimageio.spec.application.v0_3       
                
                        
                        
                        1from typing import TYPE_CHECKING, ClassVar, Literal, Optional 2 3from pydantic import Field 4from typing_extensions import Annotated 5 6from .._internal.io import FileDescr as FileDescr 7from .._internal.io_basics import Sha256 as Sha256 8from .._internal.types import FAIR, FileSource_ 9from .._internal.url import HttpUrl as HttpUrl 10from ..generic.v0_3 import VALID_COVER_IMAGE_EXTENSIONS as VALID_COVER_IMAGE_EXTENSIONS 11from ..generic.v0_3 import Author as Author 12from ..generic.v0_3 import BadgeDescr as BadgeDescr 13from ..generic.v0_3 import BioimageioConfig as BioimageioConfig 14from ..generic.v0_3 import CiteEntry as CiteEntry 15from ..generic.v0_3 import Config as Config 16from ..generic.v0_3 import DeprecatedLicenseId as DeprecatedLicenseId 17from ..generic.v0_3 import Doi as Doi 18from ..generic.v0_3 import GenericDescrBase, LinkedResourceBase, ResourceId 19from ..generic.v0_3 import LicenseId as LicenseId 20from ..generic.v0_3 import LinkedResource as LinkedResource 21from ..generic.v0_3 import Maintainer as Maintainer 22from ..generic.v0_3 import OrcidId as OrcidId 23from ..generic.v0_3 import RelativeFilePath as RelativeFilePath 24from ..generic.v0_3 import Uploader as Uploader 25from ..generic.v0_3 import Version as Version 26 27 28class ApplicationId(ResourceId): 29 pass 30 31 32class ApplicationDescr(GenericDescrBase): 33 """Bioimage.io description of an application.""" 34 35 implemented_type: ClassVar[Literal["application"]] = "application" 36 if TYPE_CHECKING: 37 type: Literal["application"] = "application" 38 else: 39 type: Literal["application"] 40 41 id: Optional[ApplicationId] = None 42 """bioimage.io-wide unique resource identifier 43 assigned by bioimage.io; version **un**specific.""" 44 45 parent: Optional[ApplicationId] = None 46 """The description from which this one is derived""" 47 48 source: Annotated[ 49 FAIR[Optional[FileSource_]], 50 Field(description="URL or path to the source of the application"), 51 ] = None 52 """The primary source of the application""" 53 54 55class LinkedApplication(LinkedResourceBase): 56 """Reference to a bioimage.io application.""" 57 58 id: ApplicationId 59 """A valid application `id` from the bioimage.io collection."""
str(object='') -> str str(bytes_or_buffer[, encoding[, errors]]) -> str
Create a new string object from the given object. If encoding or errors is specified, then the object must expose a data buffer that will be decoded using the given encoding and error handler. Otherwise, returns the result of object.__str__() (if defined) or repr(object). encoding defaults to sys.getdefaultencoding(). errors defaults to 'strict'.
Inherited Members
33class ApplicationDescr(GenericDescrBase): 34 """Bioimage.io description of an application.""" 35 36 implemented_type: ClassVar[Literal["application"]] = "application" 37 if TYPE_CHECKING: 38 type: Literal["application"] = "application" 39 else: 40 type: Literal["application"] 41 42 id: Optional[ApplicationId] = None 43 """bioimage.io-wide unique resource identifier 44 assigned by bioimage.io; version **un**specific.""" 45 46 parent: Optional[ApplicationId] = None 47 """The description from which this one is derived""" 48 49 source: Annotated[ 50 FAIR[Optional[FileSource_]], 51 Field(description="URL or path to the source of the application"), 52 ] = None 53 """The primary source of the application"""
Bioimage.io description of an application.
            source: Annotated[Optional[Annotated[Union[bioimageio.spec._internal.url.HttpUrl, bioimageio.spec._internal.io.RelativeFilePath, Annotated[pathlib.Path, PathType(path_type='file'), FieldInfo(annotation=NoneType, required=True, title='FilePath')]], FieldInfo(annotation=NoneType, required=True, metadata=[_PydanticGeneralMetadata(union_mode='left_to_right')]), AfterValidator(func=<function wo_special_file_name at 0x7efc0116c900>), PlainSerializer(func=<function _package_serializer at 0x7efbf1b27920>, return_type=PydanticUndefined, when_used='unless-none')]], AfterWarner(func=<function as_warning.<locals>.wrapper at 0x7efc006a6ac0>, severity=35, msg=None, context=None), FieldInfo(annotation=NoneType, required=True, description='URL or path to the source of the application')]        =
None
        
    
    
    
            URL or path to the source of the application
Inherited Members
- bioimageio.spec.generic.v0_3.GenericDescrBase
 - implemented_format_version
 - convert_from_old_format_wo_validation
 - documentation
 - badges
 - config
 - bioimageio.spec.generic.v0_3.GenericModelDescrBase
 - name
 - description
 - covers
 - id_emoji
 - attachments
 - cite
 - license
 - git_repo
 - icon
 - links
 - uploader
 - maintainers
 - warn_about_tag_categories
 - version
 - version_comment
 
56class LinkedApplication(LinkedResourceBase): 57 """Reference to a bioimage.io application.""" 58 59 id: ApplicationId 60 """A valid application `id` from the bioimage.io collection."""
Reference to a bioimage.io application.