removed mklist and fixed requrements oopsie

This commit is contained in:
Izalia Mae 2019-04-10 19:24:54 -04:00
parent c62dfe9cc8
commit 7a9d14fd49
4 changed files with 9 additions and 18 deletions

View file

@ -22,7 +22,14 @@ list: Show all instances on the whitelist
### Whitelists
Furry
These lists can be imported directly via cat. For example:
```
["animal.business", "asonix.dog", "awoo.pub", "awoonet.org", "awooo.club", "bark.house", "barkshark.tk", "beach.city", "blimps.xyz", "bunny.blue", "chomp.life", "coyote.social", "donphan.social", "earfolds.com", "feather.city", "fellies.social", "friskypaws.social", "furry.engineer", "furrytf.club", "glaceon.social", "gravitas.cafe", "gulp.cafe", "hewwo.net", "hom.ph", "hyenas.space", "iamveryti.red", "kitsunet.net", "koyu.space", "kuko.hamburg", "loutre.info", "masto.werefoxsoftware.com", "mastodon.hack13.me", "meemu.org", "meow.social", "monsterpit.net", "nyan.lol", "paw.cafe", "plural.cafe", "plush.army", "plush.city", "pounced-on.me", "pounced.me", "puppo.space", "roxxers.xyz", "scalie.business", "screech.social", "sergal.org", "shiro.dog", "snaggletooth.life", "snouts.online", "social.illegalpornography.com", "social.kithop.ca", "social.mochi.academy", "social.unextro.net", "squeak.live", "tailburst.me", "therian.club", "thicc.horse", "this.mouse.rocks", "vulpine.club", "whomst.dog", "yiff.life"]
./app.py add `cat furry.list`
```
or
```
./app.py rm `cat furry.list`
```
[Furry](https://git.barkshark.tk/izaliamae/reqaccept/src/branch/master/furry.list)

View file

@ -1,4 +1,3 @@
snouts.online
sergal.org
glaceon.social

View file

@ -1,14 +0,0 @@
#!/usr/bin/env python3
from sys import argv as arg
import json
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(json.dumps(sorted(instances)))

View file

@ -1,2 +1 @@
Mastodon.py==1.3.1
playsound==1.2.2