UzJu 5981418853 feat: update v0.4.0
新增
1. TenCentCloud Cos Scan
2. HuaweiCloud OBS Scan
修复
1、部分代码逻辑问题
2022-07-16 15:38:39 +08:00

42 lines
1.0 KiB
Python

#!/usr/bin/python3.8.4 (python版本)
# -*- coding: utf-8 -*-
# @Author : UzJu@菜菜狗
# @Email : UzJuer@163.com
# @Software: PyCharm
# @Time : 2022/7/2 14:22
# @File : conf.py
import datetime
from colorama import init, Fore, Back, Style
NowTime = datetime.datetime.now().strftime('%Y-%m-%d')
# aliyun
aliyun_id = ""
aliyun_key = ""
# aws
AWS_ACCESS_KEY = ""
AWS_SECRET_KEY = ""
# tencent
tencent_cam_id = ""
tencent_cam_key = ""
# huawei
huawei_access_key_id = ""
huawei_access_key_key = ""
version = "v.0.4.0"
author = "UzJu"
email = "UzJuer@163.com"
github = "GitHub.com/UzJu"
banner = f"""
{Fore.CYAN}______ _ _ _____
{Fore.YELLOW}| ___ \ | | | | / ___|
{Fore.GREEN}| |_/ /_ _ ___| | _____| |_\ `--. ___ __ _ _ __
{Fore.GREEN}| ___ \ | | |/ __| |/ / _ \ __|`--. \/ __/ _` | '_ \
{Fore.BLUE}| |_/ / |_| | (__| < __/ |_/\__/ / (_| (_| | | | |
{Fore.MAGENTA}\____/ \__,_|\___|_|\_\___|\__\____/ \___\__,_|_| |_|
{Fore.RED} Author:{author} Version:{version}
"""