Compare commits

..

No commits in common. "279f0cbbf0d9303e458a573d5b145c5fdf3ed6f5" and "a7e49bfcbf0c27175326d3b3fd41da05b6584b85" have entirely different histories.

2 changed files with 13 additions and 24 deletions

View File

@ -1,8 +1,7 @@
# Automagnet
RSS feed parser, primarily for use on the seven seas.
Extend by adding entries to the `providers` array in config.json.
Includes sample provider for horriblesubs.info.
Extend by adding entries to the `providers` list. Includes sample provider for horriblesubs.info
## Quickstart
1. Install pip and pipenv
@ -16,29 +15,12 @@ Includes sample provider for horriblesubs.info.
pipenv install
```
3. Add some shows to the `wants` array in config.json
```json
{
"providers": [
...
],
"wants": [
{
"name": "Some weeb nonsense",
"target-quality": "1080p"
},
{
"name": "More weeb nonsense",
"min-quality": "720p"
},
{
"name": "Even more weeb nonsense"
}
]
}
3. Add some shows to wants.txt
```bash
echo 'weeb nonsense' >> wants.txt
```
4. Get some magnets / torrents, but only once, and do with them what you will. Handy to run in a cronjob every so often
4. Get some magnets, but only once, and do with them what you will.
```bash
pipenv run ./automagnet.py | transmission-cli -a
pipenv run ./automagnet.py has.txt wants.txt | transmission-cli -a
```

View File

@ -7,5 +7,12 @@
}
],
"wants": [
{
"name": "Comic Girls",
"min-quality": "1080p"
},
{
"name": "Hinamatsuri"
}
]
}