Last active
August 1, 2019 15:58
-
-
Save svandragt/080843c4ba632deaab6f3aea57ca9684 to your computer and use it in GitHub Desktop.
WorkLogPy: Keep track of what you are working on (Python 3). Writes a timestamped message to a CSV file.
This file contains 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
#!/usr/bin/env python3 | |
#v2.2 | |
from random import choice | |
from datetime import datetime | |
def wlog(answer,now): | |
with open(f"worklog-{now:%Y%m%d}.csv", "a") as f: | |
f.write(f'"{now}","{answer.strip()}"\n') | |
def main(): | |
wlog('--start session--', datetime.now() ) | |
while True: | |
try: | |
answer = input("Working on: ") | |
if answer.strip() == '': | |
break | |
now = datetime.now() | |
wlog(answer, now ) | |
print(f"[{now:%a %H:%M}] ✓") | |
except EOFError: | |
break | |
wlog('--stop session--', now ) | |
if __name__== "__main__": | |
main() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
v2.2: ctrl-d or enter to quit. works on python2 default systems. f-strings, code more elegant. day based csv files.