Duplicated from wnm168/t
cdd5c14
1
2
3
4
5
6
7
8
9
10
from enum import Enum class DownloadStatus(Enum): not_downloading = "not_downloading" downloading = "downloading" done = "done" error = "error" not_found = "not_found"