/couchpotato/core/providers/torrent/torrentleech/__init__.py
https://github.com/craigshaw/CouchPotatoServer · Python · 34 lines · 32 code · 2 blank · 0 comment · 0 complexity · 7c872dd169b2a204096b93a547229bb2 MD5 · raw file
- from .main import TorrentLeech
- def start():
- return TorrentLeech()
- config = [{
- 'name': 'torrentleech',
- 'groups': [
- {
- 'tab': 'searcher',
- 'subtab': 'providers',
- 'list': 'torrent_providers',
- 'name': 'TorrentLeech',
- 'description': 'See <a href="http://torrentleech.org">TorrentLeech</a>',
- 'wizard': True,
- 'options': [
- {
- 'name': 'enabled',
- 'type': 'enabler',
- 'default': False,
- },
- {
- 'name': 'username',
- 'default': '',
- },
- {
- 'name': 'password',
- 'default': '',
- 'type': 'password',
- },
- ],
- },
- ],
- }]