.entry_points package

Submodules

.entry_points.base module

.entry_points.configuration module

.entry_points.oet module

.entry_points.synched_entrypoint module

.entry_points.testing module

.entry_points.tmc module

.entry_points.types module

class Composition(conf_type: ska_ser_skallop.mvp_control.configuration.types.CompositionType)[source]

Bases: object

class CompositionByFile(location: str, conf_type: ska_ser_skallop.mvp_control.configuration.types.CompositionType)[source]

Bases: ska_ser_skallop.mvp_control.configuration.types.Composition

Inherits from Configuration

class CompositionType(value)[source]

Bases: enum.Enum

An enumeration.

STANDARD = 1
class Enum(value)[source]

Bases: object

Generic enumeration.

Derive from this class to define new enumerations.

name

The name of the Enum member.

value

The value of the Enum member.

NamedTuple(typename, fields=None, /, **kwargs)[source]

Typed version of namedtuple.

Usage in Python versions >= 3.6:

class Employee(NamedTuple):
    name: str
    id: int

This is equivalent to:

Employee = collections.namedtuple('Employee', ['name', 'id'])

The resulting class has an extra __annotations__ attribute, giving a dict that maps field names to types. (The field names are also in the _fields attribute, which is part of the namedtuple API.) Alternative equivalent keyword syntax is also accepted:

Employee = NamedTuple('Employee', name=str, id=int)

In Python versions <= 3.5 use:

Employee = NamedTuple('Employee', [('name', str), ('id', int)])
class ScanConfiguration(conf_type: ska_ser_skallop.mvp_control.configuration.types.ScanConfigurationType)[source]

Bases: object

class ScanConfigurationByFile(location: str, conf_type: ska_ser_skallop.mvp_control.configuration.types.ScanConfigurationType)[source]

Bases: ska_ser_skallop.mvp_control.configuration.types.ScanConfiguration

Inherits from Configuration

class ScanConfigurationType(value)[source]

Bases: enum.Enum

An enumeration.

STANDARD = 1
class auto[source]

Bases: object

Instances are replaced with an appropriate value in Enum class suites.

value = <object object>

Module contents