userfs.config.source
index
/home/vkottler/src/vkottler/workspace/userfs/userfs/config/source.py

A module implementing a data structure for project sources.

 
Classes
       
builtins.object
SourceSpecification
enum.Enum(builtins.object)
SourceKind

 
class SourceKind(enum.Enum)
    SourceKind(*values)
 
An enumeration describing kinds of sources.
 
 
Method resolution order:
SourceKind
enum.Enum
builtins.object

Data and other attributes defined here:
GIT = <SourceKind.GIT: 'git'>
SRC = <SourceKind.SRC: 'src'>

Data descriptors inherited from enum.Enum:
name
The name of the Enum member.
value
The value of the Enum member.

Methods inherited from enum.EnumType:
__contains__(value) from enum.EnumType
Return True if `value` is in `cls`.
 
`value` is in `cls` if:
1) `value` is a member of `cls`, or
2) `value` is the value of one of the `cls`'s members.
__getitem__(name) from enum.EnumType
Return the member matching `name`.
__iter__() from enum.EnumType
Return members in definition order.
__len__() from enum.EnumType
Return the number of members (no aliases)

Readonly properties inherited from enum.EnumType:
__members__
Returns a mapping of member name->value.
 
This mapping lists all enum members, including aliases. Note that this
is a read-only view of the internal mapping.

 
class SourceSpecification(builtins.object)
    SourceSpecification(kind: userfs.config.source.SourceKind, suffix: str, protocol: str, user: str, port: Optional[int], host: str, attributes: Dict[str, Any]) -&gt; None
 
Informaiton describing a source specification.
 
  Methods defined here:
__eq__(self, other)
Return self==value.
__init__(self, kind: userfs.config.source.SourceKind, suffix: str, protocol: str, user: str, port: Optional[int], host: str, attributes: Dict[str, Any]) -> None
Initialize self.  See help(type(self)) for accurate signature.
__repr__(self)
Return repr(self).

Static methods defined here:
from_json(data: Dict[str, Union[str, int, float, bool, NoneType, Dict[str, Union[str, int, float, bool, NoneType]], List[Union[str, int, float, bool, NoneType]]]]) -> 'SourceSpecification'
Create a source specification from JSON data.

Data descriptors defined here:
__dict__
dictionary for instance variables
__weakref__
list of weak references to the object

Data and other attributes defined here:
__annotations__ = {'attributes': typing.Dict[str, typing.Any], 'host': <class 'str'>, 'kind': <enum 'SourceKind'>, 'port': typing.Optional[int], 'protocol': <class 'str'>, 'suffix': <class 'str'>, 'user': <class 'str'>}
__dataclass_fields__ = {'attributes': Field(name='attributes',type=typing.Dict[str, ty...appingproxy({}),kw_only=False,_field_type=_FIELD), 'host': Field(name='host',type=<class 'str'>,default=<da...appingproxy({}),kw_only=False,_field_type=_FIELD), 'kind': Field(name='kind',type=<enum 'SourceKind'>,defau...appingproxy({}),kw_only=False,_field_type=_FIELD), 'port': Field(name='port',type=typing.Optional[int],defa...appingproxy({}),kw_only=False,_field_type=_FIELD), 'protocol': Field(name='protocol',type=<class 'str'>,default...appingproxy({}),kw_only=False,_field_type=_FIELD), 'suffix': Field(name='suffix',type=<class 'str'>,default=<...appingproxy({}),kw_only=False,_field_type=_FIELD), 'user': Field(name='user',type=<class 'str'>,default=<da...appingproxy({}),kw_only=False,_field_type=_FIELD)}
__dataclass_params__ = _DataclassParams(init=True,repr=True,eq=True,ord...rue,kw_only=False,slots=False,weakref_slot=False)
__hash__ = None
__match_args__ = ('kind', 'suffix', 'protocol', 'user', 'port', 'host', 'attributes')

 
Data
        Dict = typing.Dict
JsonObject = typing.Dict[str, typing.Union[str, int, float, b...[typing.Union[str, int, float, bool, NoneType]]]]
Optional = typing.Optional