This commit is contained in:
Yax 2025-12-21 15:59:21 +01:00
parent c233d8fb02
commit bd77ea09fe
2 changed files with 7 additions and 5 deletions

View file

@ -8,7 +8,9 @@ authors = [
] ]
requires-python = ">=3.13.1" requires-python = ">=3.13.1"
dependencies = [ dependencies = [
"black>=25.12.0",
"caldav>=2.0.1", "caldav>=2.0.1",
"isort>=7.0.0",
"python-dotenv>=1.1.1", "python-dotenv>=1.1.1",
] ]

View file

@ -6,14 +6,14 @@ this logs into a caldav server and get a digest of all of the
events scheduled for next days. Good candidate to run from cron events scheduled for next days. Good candidate to run from cron
""" """
import sys
import os import os
from dotenv import load_dotenv import sys
from datetime import date, datetime, time, timedelta, timezone
from datetime import datetime, timedelta, date, time, timezone
from os import environ from os import environ
from urllib.parse import quote_plus from urllib.parse import quote_plus
import caldav import caldav
from dotenv import load_dotenv
load_dotenv() load_dotenv()