diff --git a/himawaripy/config.py b/himawaripy/config.py index 0ee6acf..8228a8e 100644 --- a/himawaripy/config.py +++ b/himawaripy/config.py @@ -3,7 +3,7 @@ import appdirs # Increases the quality and the size. Possible values: 4, 8, 16, 20 -level = 16 +level = 4 # Define a hourly offset or let the script calculate it depending on your timezone # If auto_offset is True, then script will calculate your hour offset automatically depending on your location. @@ -19,4 +19,4 @@ "latest.png") # Deadline for the whole download process in minutes -dl_deadline = 1 +dl_deadline = 6 diff --git a/himawaripy/himawaripy.py b/himawaripy/himawaripy.py index 3039c7d..5157d26 100755 --- a/himawaripy/himawaripy.py +++ b/himawaripy/himawaripy.py @@ -15,8 +15,8 @@ from pytz import timezone from dateutil.tz import tzlocal -from config import level, output_file, auto_offset, hour_offset , dl_deadline -from utils import set_background, get_desktop_environment +from .config import level, output_file, auto_offset, hour_offset , dl_deadline +from .utils import set_background, get_desktop_environment counter = None height = 550