10 lines
142 B
Python
10 lines
142 B
Python
import sys
|
|
|
|
from lib import weather
|
|
from lib import config
|
|
|
|
if (__name__ == '__main__'):
|
|
config.init(cache=True)
|
|
weather.Main(sys.argv[1])
|
|
|