Initial commit

master
Sven Slootweg 11 years ago
commit e8cf644062

@ -0,0 +1,26 @@
# nzbspider
Takes input in the form of either a list of release names or a
configuration file (matching database entries), and then searches for
and downloads the corresponding NZBs.
## Sources
Currently uses nzbindex.nl and binsearch.info. Shouldn't be hard to
extend. Contributions welcome.
## Installing
You'll need to `pip install oursql` (this will require having the MySQL
development libraries installed). Other than that, just run main.py.
## License
Licensed under the WTFPL or, if you take issue with that for some
reason, the CC0. Attribution (to Sven Slootweg) appreciated, not
required.
## Donating
If you like this, you can donate
[here](http://cryto.net/~joepie91/donate.html).

@ -0,0 +1,4 @@
import re, oursql
from sources.nzbindex import NzbindexSpider
from sources.binsearch import BinsearchSpider

@ -0,0 +1,2 @@
class NzbindexSpider(object):
pass

@ -0,0 +1,2 @@
class BinsearchSpider(object):
pass
Loading…
Cancel
Save