18 lines
426 B
Python
18 lines
426 B
Python
# 公钥
|
|
from ufile import config
|
|
|
|
PUBLIC_KEY = "4Z7QYI7qml36QRjcCjKrls7aHl1R6H6uq"
|
|
# 私钥
|
|
PRIVATE_KEY = "FIdW1Kev1Ge3K7GHXzSLyGG1wTnaG6LE9BxmIVubcCaG"
|
|
# 桶
|
|
BUCKET = "drg100"
|
|
# 上传后缀
|
|
UPLOAD_SUFFIX = ".cn-sh2.ufileos.com"
|
|
# 下载后缀
|
|
DOWNLOAD_SUFFIX = ".cn-sh2.ufileos.com"
|
|
# 私空间文件地址过期时间(秒)
|
|
PRIVATE_EXPIRES = 3600
|
|
|
|
# 设置默认请求超时时间
|
|
config.set_default(connection_timeout=60)
|