You've already forked QWeatherReporter
13 lines
231 B
Python
13 lines
231 B
Python
#!/usr/bin/env python3
|
|
# -- coding:utf-8 --
|
|
# @Author: markushammered@gmail.com
|
|
# @Development Tool: PyCharm
|
|
# @Create Time: 2021/12/15
|
|
# @File Name: __init__.py
|
|
|
|
|
|
import os
|
|
|
|
if not os.path.exists('./logs'):
|
|
os.mkdir('./logs')
|