-
Notifications
You must be signed in to change notification settings - Fork 43
/
INSTALL
40 lines (32 loc) · 1.36 KB
/
INSTALL
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
30
31
32
33
34
35
36
37
38
39
40
Installation
============
Because BakaBT requires your login info, this plugin requires a bit more work than most.
1. Firstly you'll need an [account](https://bakabt.me/signup.php)
2. Then you need to put your login information directly into the [plugin file](engines/bakabt.py):
You can do this by editing these specific lines (lineno. 52:53).
```
# Login information ######################################################
#
# SET THESE VALUES!!
#
username = "username"
password = "password"
##########################################################################
...
```
Now replace the "username" and "password" with *your* username and password, surrounded by quotation marks.
So if your username is `foobar` and your `password` is bazqux these lines should read:
```
...
# SET THESE VALUES
#
username = "foobar"
password = "bazqux"
...
```
After you've done this you can add this plugin to qBittorrent by going:
Search tab -> Plugins -> Install a new one -> Selecting the `bakabt.py` file.
Or by manually copying the `bakabt.py` to the following location:
* Linux: `~/.local/share/data/qBittorrent/nova/engines/bakabt.py`
* Mac: ``~/Library/Application Support/qBittorrent/nova/engines/bakabt.py`
* Windows: `C:\Documents and Settings\username\Local Settings\Application Data\qBittorrent\nova\engines\bakabt.py`