mirror of
https://github.com/chubin/wttr.in
synced 2024-11-15 00:27:09 +00:00
9 lines
191 B
Python
9 lines
191 B
Python
#!/usr/bin/env python
|
|
# vim: set encoding=utf-8
|
|
|
|
import sys
|
|
import os
|
|
MYDIR = os.path.abspath(
|
|
os.path.dirname(os.path.dirname('__file__')))
|
|
sys.path.append("%s/lib/" % MYDIR)
|
|
import srv
|