code-moniker-workspace 0.4.0

Workspace model, ports, snapshots, linkage, and change analysis for code-moniker.
Documentation
1
2
3
4
5
6
7
8
9
10
class Customer:
    def __init__(self, customer_id: str, segment: str) -> None:
        self.customer_id = customer_id
        self.segment = segment


class RiskScore:
    def __init__(self, customer_id: str, label: str) -> None:
        self.customer_id = customer_id
        self.label = label