This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# -*- coding: utf-8 -*- | |
""" | |
Problem: the candidate may already be linked. Need to register the candidate | |
and update both if the candidate has a better link. | |
Created on Wed Feb 22 12:08:02 2017 | |
@author: yosef, based on attempt by lillyverso | |
""" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
""" | |
Simple alarm clock, based on suggestion here: | |
https://atanok.wordpress.com/2009/10/27/amarok-kalarm-alarm-clock/ | |
Kalarm is crashy, hence Python to the rescue. | |
""" | |
import time, datetime, os | |
import argparse | |
parser = argparse.ArgumentParser() |