mirror of
https://github.com/ep1cman/unifi-protect-backup.git
synced 2025-12-05 23:53:30 +00:00
This uses a new API to download events like the way the web ui does, where it first asks for a video to be prepared (on the unifi protect host) and then downloads it. This might be potentially more stable than the existing downloader.
14 lines
425 B
Python
14 lines
425 B
Python
"""Top-level package for Unifi Protect Backup."""
|
|
|
|
__author__ = """sebastian.goscik"""
|
|
__email__ = 'sebastian@goscik.com'
|
|
__version__ = '0.10.7'
|
|
|
|
from .downloader import VideoDownloader
|
|
from .downloader_experimental import VideoDownloaderExperimental
|
|
from .event_listener import EventListener
|
|
from .purge import Purge
|
|
from .uploader import VideoUploader
|
|
|
|
from .missing_event_checker import MissingEventChecker # isort: skip
|