This repository has been archived on 2025-12-22. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
QWeatherReporter/QWeather.py
2021-12-18 08:14:15 +08:00

16 lines
315 B
Python

#!/usr/bin/env python3
# -- coding:utf-8 --
# @Author: markushammered@gmail.com
# @Development Tool: PyCharm
# @Create Time: 2021/12/16
# @File Name: QWeather.py
import sys
from core import qweather
from core.logger import Logger
if __name__ == '__main__':
Logger.info('Start')
sys.exit(qweather.main())