started furry list

This commit is contained in:
Izalia Mae 2019-04-09 12:12:00 -04:00
parent c9b1e7cdfa
commit bacbe9b273
4 changed files with 78 additions and 1 deletions

2
.gitignore vendored Normal file
View file

@ -0,0 +1,2 @@
__pycache__
run.sh

View file

@ -18,5 +18,5 @@ You can configure the whitelist in ~/.config/ReqAccept/config.ini. It accepts a
Furry
```
coming soon
['snouts.online', 'sergal.org', 'glaceon.social', 'meemu.org', 'plush.army', 'chomp.life', 'vulpine.club', 'bunny.blue', 'whomst.dog', 'hom.ph', 'furry.engineer', 'awoo.pub', 'barkshark.tk', 'hyenas.space', 'pounced-on.me', 'donphan.social', 'furrytf.club', 'blimps.xyz', 'beach.city', 'plural.cafe', 'yiff.life', 'earfolds.com', 'puppo.space', 'feather.city', 'kitsunet.net', 'social.illegalpornography.com', 'mastodon.hack13.me', 'loutre.info', 'nyan.lol', 'gulp.cafe', 'this.mouse.rocks', 'bark.house', 'iamveryti.red', 'roxxers.xyz', 'hewwo.net', 'squeak.live', 'plush.city', 'gravitas.cafe', 'meow.social', 'snaggletooth.life', 'kuko.hamburg', 'coyote.social', 'awoonet.org', 'koyu.space', 'monsterpit.net', 'awooo.club', 'scalie.business', 'fellies.social', 'paw.cafe', 'social.mochi.academy', 'friskypaws.social', 'shiro.dog', 'tailburst.me', 'social.unextro.net', 'animal.business', 'pounced.me', 'screech.social', 'therian.club', 'masto.werefoxsoftware.com', 'social.kithop.ca', 'asonix.dog']
```

62
furry.list Normal file
View file

@ -0,0 +1,62 @@
snouts.online
sergal.org
glaceon.social
meemu.org
plush.army
chomp.life
vulpine.club
bunny.blue
whomst.dog
hom.ph
furry.engineer
awoo.pub
barkshark.tk
hyenas.space
pounced-on.me
donphan.social
furrytf.club
blimps.xyz
beach.city
plural.cafe
yiff.life
earfolds.com
puppo.space
feather.city
kitsunet.net
social.illegalpornography.com
mastodon.hack13.me
loutre.info
nyan.lol
gulp.cafe
this.mouse.rocks
bark.house
iamveryti.red
roxxers.xyz
hewwo.net
squeak.live
plush.city
gravitas.cafe
meow.social
snaggletooth.life
kuko.hamburg
coyote.social
awoonet.org
koyu.space
monsterpit.net
awooo.club
scalie.business
fellies.social
paw.cafe
social.mochi.academy
friskypaws.social
shiro.dog
tailburst.me
social.unextro.net
animal.business
pounced.me
screech.social
therian.club
masto.werefoxsoftware.com
social.kithop.ca
asonix.dog

13
mklist.py Executable file
View file

@ -0,0 +1,13 @@
#!/usr/bin/env python3
from sys import argv as arg
try:
txtFile = arg[1]
except IndexError:
txtFile = 'furry.list'
insts = open(txtFile, 'r')
for line in insts:
instances = [line.strip() for line in insts]
print(instances)