blob: fb419b9b7f64f3429baa2b2a95a7efaec5690000 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
|
from enum import Enum
import re
# Assigning numbers to types of data
class tokenTypes (Enum):
HEADING = 1
DATE = 2
TODO = 3
BULLETPOINT = 4
# Tokenizing
# TODO ADD SPACES TO HEADING TODO
# TODO keep the stuff in order when it lists TODO
def tokenize(file: str):
headingRe = r"\s*\*\s*([A-z0-9]+)\s*\*\s*\[(\d\d\d\d[.]\d\d[.]\d\d)\]\s*{(TO[.]DO|DONE)}\s*"
bulletPointRe = r"-\s*([A-z0-9]+)\s*"
heading = re.findall(headingRe, file)
print(heading)
bulletPoint = re.findall(bulletPointRe, file)
print(bulletPoint)
tokenize("""
*heading* [1004.23.23] {TO.DO}
- hi
- hey
*heading* [1004.23.23] {TO.DO}
- hi
- hey
""")
# Drop user into a shell
print("enter one of the following commands: list, toggle, change date, view, formatting help, or type close to exit program")
line = input(": ")
while line != "close":
if line == "list":
print("you said to list :)")
elif line == "toggle":
print("You said toggle :(")
elif line == "change date":
print("CHANGE DATEEE")
elif line == "view":
print("look at me (view)")
elif line == "formatting help":
print("you need help? loser.")
else:
print("Invalid command :(")
line = input(": ")
print("byee(closing file)")
|