diff --git a/calendar_grabber.py b/calendar_grabber.py new file mode 100644 index 0000000..cdc2a49 --- /dev/null +++ b/calendar_grabber.py @@ -0,0 +1,8 @@ + +class CalGrab(object): + + def __init__(self): + print("Hello") + + + diff --git a/run.py b/run.py new file mode 100644 index 0000000..40d3cad --- /dev/null +++ b/run.py @@ -0,0 +1,3 @@ +from calendar_grabber import CalGrab + +CalGrab() \ No newline at end of file