-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathWatcherSetting.py
More file actions
29 lines (23 loc) · 830 Bytes
/
Copy pathWatcherSetting.py
File metadata and controls
29 lines (23 loc) · 830 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
'''
Created on 2013-02-04
@author: JordSti
'''
class WatcherSetting:
def __init__(self):
self.username = 'username'
#self.tmpFolder = '/home/rtorrent/tmp'
#self.torrentFolder = '/home/rtorrent/watch'
self.reloadRules = True
self.sleepTime = 60*5 #in seconds
self.tmpFolder = 'tmp'
self.downloadUrl = 'http://www.scenetime.com/download.php/'
self.rssUrl = 'http://www.scenetime.com/get_rss.php?cat=9,63,43,77,2'
self.passkey = '00000000000000000000000000000000'
#bit-torrent client
#utorrent section
#self.client = "utorrent"
#self.clientPath = ""
#self.downloadPath = "C:\\DownloadTorrent\\"
#rtorrent section
self.client = "rtorrent"
self.torrentFolder = 'watch'