forked from LilianaKinsley/PinkiePyBot
-
Notifications
You must be signed in to change notification settings - Fork 2
/
boru.py
53 lines (51 loc) · 908 Bytes
/
boru.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
'''
boru.py - ignore_tags list for Ouroboros sites like e621.net, e926.net and twentypercentcooler.net
Initial list by Kazunekit
Additions and formatting by JordanKinsley
Copyright (C) 2013 by JordanKinsley
Licensed under the Eiffel Forum License 2.
'''
# a list of regular expressions to substitute out of the list of tags.
ignore_tags = [
'artist:(\S*)',
'bed',
'blanket',
'fur',
'blue(\S*)',
'candle',
'safe',
'questionable',
'explicit',
'duo',
'solo',
'equine',
'female',
'feral',
'friendship_is_magic',
'horse',
'horn',
'my_little_pony',
'(\S*)_background',
'two_tone_hair',
'unicorn',
'white(\S*)',
'black(\S*)',
'looking_(\S*)',
'[0-9][0-9][0-9][0-9]',
'text',
'english_text',
'dialogue',
'oddly_sexy',
'smile',
'wings',
'(\S*)_eyes',
'(\S*)_hair',
'presenting_(\S*)',
'veins',
'(\S*)_fur',
'cutie_mark',
'tongue',
'spread_legs',
'spreading',
'raised_tail'
]