thunderx / pikpakapi /enums.py
wnm168's picture
Upload 6 files
cdd5c14 verified
raw
history blame contribute delete
190 Bytes
from enum import Enum
class DownloadStatus(Enum):
not_downloading = "not_downloading"
downloading = "downloading"
done = "done"
error = "error"
not_found = "not_found"