-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcatpuns.py
67 lines (65 loc) · 1.49 KB
/
catpuns.py
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
56
57
58
59
60
61
62
63
64
65
66
67
word_dict = {
'awful' : 'claw-ful',
'awesome' : 'paw-some',
'attitude' : 'catitude',
'feeling' :'feline',
'friend': 'fur-end',
'kidding' : 'kitten',
'lying' : 'lion',
'me out' : 'meow-t',
'literally' : 'litter-ally'
}
syllable_dict = {
'far' : 'fur',
'fer' : 'fur',
'fir' : 'fur',
'for' : 'fur',
'pon' : 'pawn',
'pau': 'paw',
'pah' : 'paw',
'par' : 'paw',
'pros' : 'paws',
'prop' : 'pawp',
'pos' : 'paws',
'hist' : 'hisst',
'hys' : 'hiss',
'mu' : 'mew',
'meo' : 'meow',
'mo' : 'meow',
'now' : 'meow',
'no' : 'nya',
'pur' : 'purr',
'pro': 'purr',
'per' : 'purr',
'pre' : 'purr',
'pr' : 'purr',
'cle' : 'claw',
}
synonym_dict = {
'joking' : 'kitten',
'disaster' : 'cat-astrophe',
'calamity' : 'cat-astrophe',
'terrible' : 'claw-ful',
'horrible' : 'claw-ful',
'the worst' : 'claw-ful',
'viable' : 'paw-sible',
'jerk' : 'sourpuss',
'sore loser' : 'sourpuss',
'goof ball' : 'furball',
'goofball' : 'furball',
'dork' : 'furball',
'idiot' : 'paw-looka',
'basically' : 'pur-actically',
'hilarious' : 'hiss-terical',
'insane' : 'hiss-terical',
'crazy' : 'hiss-terical',
'funny' : 'hiss-terical',
'irritated' : 'hissy',
'angry' : 'hissy',
'sassy' : 'catty',
"bee's knees" : "cat's meow",
"is great" : "is the cat's meow",
"beautiful" : 'pur-ty',
'gorgeous' : 'pur-ty',
'special' : 'pur-ecious'
}