Compare commits
2 Commits
a7e49bfcbf
...
279f0cbbf0
Author | SHA1 | Date |
---|---|---|
Derek | 279f0cbbf0 | |
Derek | 224e178b8b |
30
README.md
30
README.md
|
@ -1,7 +1,8 @@
|
||||||
# Automagnet
|
# Automagnet
|
||||||
RSS feed parser, primarily for use on the seven seas.
|
RSS feed parser, primarily for use on the seven seas.
|
||||||
|
|
||||||
Extend by adding entries to the `providers` list. Includes sample provider for horriblesubs.info
|
Extend by adding entries to the `providers` array in config.json.
|
||||||
|
Includes sample provider for horriblesubs.info.
|
||||||
|
|
||||||
## Quickstart
|
## Quickstart
|
||||||
1. Install pip and pipenv
|
1. Install pip and pipenv
|
||||||
|
@ -15,12 +16,29 @@ Extend by adding entries to the `providers` list. Includes sample provider for h
|
||||||
pipenv install
|
pipenv install
|
||||||
```
|
```
|
||||||
|
|
||||||
3. Add some shows to wants.txt
|
3. Add some shows to the `wants` array in config.json
|
||||||
```bash
|
```json
|
||||||
echo 'weeb nonsense' >> wants.txt
|
{
|
||||||
|
"providers": [
|
||||||
|
...
|
||||||
|
],
|
||||||
|
"wants": [
|
||||||
|
{
|
||||||
|
"name": "Some weeb nonsense",
|
||||||
|
"target-quality": "1080p"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "More weeb nonsense",
|
||||||
|
"min-quality": "720p"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Even more weeb nonsense"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
4. Get some magnets, but only once, and do with them what you will.
|
4. Get some magnets / torrents, but only once, and do with them what you will. Handy to run in a cronjob every so often
|
||||||
```bash
|
```bash
|
||||||
pipenv run ./automagnet.py has.txt wants.txt | transmission-cli -a
|
pipenv run ./automagnet.py | transmission-cli -a
|
||||||
```
|
```
|
||||||
|
|
|
@ -7,12 +7,5 @@
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"wants": [
|
"wants": [
|
||||||
{
|
|
||||||
"name": "Comic Girls",
|
|
||||||
"min-quality": "1080p"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Hinamatsuri"
|
|
||||||
}
|
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue