22 lines
450 B
Python
22 lines
450 B
Python
"""pypretix-device: A minimal API client for pretix device authentication and ticket scanning."""
|
|
|
|
from pypretix_device import auth
|
|
from pypretix_device.client import PretixDeviceClient
|
|
from pypretix_device.models import (
|
|
CheckinList,
|
|
CheckinResult,
|
|
DeviceInfo,
|
|
Event,
|
|
SearchResult,
|
|
)
|
|
|
|
__all__ = [
|
|
"auth",
|
|
"CheckinList",
|
|
"CheckinResult",
|
|
"DeviceInfo",
|
|
"Event",
|
|
"PretixDeviceClient",
|
|
"SearchResult",
|
|
]
|