-
Notifications
You must be signed in to change notification settings - Fork 1
info
Alex Jung edited this page Dec 21, 2024
·
2 revisions
Provides end API system information.
None
Type | Description |
---|---|
SystemInfo | System information object |
from apyefa import EfaClient, SystemInfo
from pprint import pprint
async with EfaClient("https://efa.vgn.de/vgnExt_oeffi/") as client:
info: SystemInfo = await client.info()
pprint(info)
# OUTPUT:
# SystemInfo(version='10.6.14.22',
# app_version='10.4.30.6 build 16.09.2024 01:30:57',
# data_format='EFA10_04_00',
# data_build='2024-12-02T16:53:02Z',
# valid_from=datetime.date(2024, 11, 1),
# valid_to=datetime.date(2025, 12, 13))