File size: 190 Bytes
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"