closing issues #9 and #11

This commit is contained in:
Alexandre Strube 2018-10-10 23:23:34 +02:00
parent 44862fef22
commit ff1ec85d6e
2 changed files with 9 additions and 6 deletions

6
Calendar/settings.py Normal file
View File

@ -0,0 +1,6 @@
""" To quickly get started, fill in the following details:"""
url = "https://calendar.google.com/calendar/ical/en.usa%23holiday%40group.v.calendar.google.com/public/basic.ics"
api_key = "api-key"
location = "Julich, DE"
week_starts_on = "Monday"

View File

@ -1,4 +1,4 @@
#!/usr/bin/python #!/usr/bin/python3
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
""" """
@ -21,12 +21,9 @@ Copyright by Ace-Laboratory
# week_starts_on refers to the day on which the week starts on in your country. # week_starts_on refers to the day on which the week starts on in your country.
# Choose between Monday and Sunday. # Choose between Monday and Sunday.
""" To quickly get started, fill in the following details:""" """ To quickly get started, go to the settings.py file and fill in the necessary fields there"""
url = "https://calendar.google.com/calendar/ical/en.usa%23holiday%40group.v.calendar.google.com/public/basic.ics" from settings import *
api_key = ""
location = "California, US"
week_starts_on = "Monday"
"""That's all. The software will do the rest. You don't need to modify anything below this.""" """That's all. The software will do the rest. You don't need to modify anything below this."""