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

15 lines
260 B
Python
Raw Normal View History

2021-12-16 21:00:04 +08:00
#!/usr/bin/env python3
# -- coding:utf-8 --
# @Author: markushammered@gmail.com
# @Development Tool: PyCharm
# @Create Time: 2021/12/16
2021-12-16 22:25:21 +08:00
# @File Name: QWeather.py
import sys
from core import qweather
2021-12-18 21:39:48 +08:00
2021-12-16 22:25:21 +08:00
if __name__ == '__main__':
sys.exit(qweather.main())