forked from Bytespeicher/twitterstatus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
wordlist.py
57 lines (55 loc) · 893 Bytes
/
wordlist.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
#!bin/python
"""
The word list is a list with seperate lists for
* Space
* is
* open
* closed
* fill words - good
* fill words - bad
"""
WORDLIST = [
[
'The space',
'Bytespeicher'
],
[
'is',
],
[
'open',
'allowing access',
],
[
'closed',
'not open anymore'
],
[
'magnificent',
'imposing',
'impressive',
'awe-inspiring',
'grand',
'splendid',
'majestic',
'monumental',
'glorious',
'sumptuous',
'resplendent',
'lavish',
'beautiful',
'delightful',
'lovely',
],
[
'Too bad',
'ignoble',
'inglorious',
'dishonorable',
'atrocious',
'flagitious',
'lowly',
'mean',
'poor',
]
]