Skip to content

Latest commit

 

History

History
executable file
·
21 lines (15 loc) · 371 Bytes

USAGE.md

File metadata and controls

executable file
·
21 lines (15 loc) · 371 Bytes
import wingspan
from wingspan.models import shared

s = wingspan.Wingspan()

req = shared.Calculate1099Request(
    member_client_id='Program',
    year=9615.59,
)

res = s.one_thousand_and_ninety_nine.calculate(req)

if res.calculate1099_response is not None:
    # handle response
    pass