You've already forked QWeatherReporter
14 lines
259 B
Python
14 lines
259 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
|
|
|
|
if __name__ == '__main__':
|
|
sys.exit(qweather.main())
|