36 lines
773 B
Python
36 lines
773 B
Python
DEBUG = False
|
|
|
|
# fake device
|
|
DEVICE = {
|
|
"app_version": "269.0.0.18.75",
|
|
"android_version": 26,
|
|
"android_release": "8.0.0",
|
|
"dpi": "480dpi",
|
|
"resolution": "1080x1920",
|
|
"manufacturer": "OnePlus",
|
|
"device": "Asus",
|
|
"model": "K00G",
|
|
"cpu": "qcom",
|
|
"version_code": "314665256",
|
|
}
|
|
|
|
# type define {mine:ext}
|
|
FILE_MINE_TYPE = {
|
|
"image/jpeg": "jpg",
|
|
"image/pjpeg": "jfif",
|
|
"image/png": "png",
|
|
"image/heic": "heic",
|
|
"image/heif": "heif",
|
|
"image/webp": "webp",
|
|
"video/mp4": "mp4",
|
|
"video/quicktime": "mov",
|
|
"video/hevc": "hevc",
|
|
}
|
|
|
|
TMP_DIR = "./tmp/"
|
|
|
|
# content picture
|
|
PROMA_WIDTH = 600
|
|
PROMA_HEIGHT = 600
|
|
PROMA_FONT = "./resource/OpenSans-Regular.ttf"
|
|
PROMA_FONTSIZE = 40 |