mirror of
https://github.com/Death916/c2cscrape.git
synced 2026-04-10 03:04:40 -07:00
add download location for qbit
This commit is contained in:
parent
5b542ae2cc
commit
f639dfb02a
1 changed files with 2 additions and 3 deletions
|
|
@ -5,9 +5,7 @@ import logging
|
||||||
import os
|
import os
|
||||||
import random
|
import random
|
||||||
import re
|
import re
|
||||||
from this import d
|
|
||||||
import time
|
import time
|
||||||
from turtle import done
|
|
||||||
|
|
||||||
import qbittorrentapi as qbapi
|
import qbittorrentapi as qbapi
|
||||||
import requests
|
import requests
|
||||||
|
|
@ -110,6 +108,7 @@ class Qbittorrent:
|
||||||
self.password = os.getenv("QB_PASSWORD")
|
self.password = os.getenv("QB_PASSWORD")
|
||||||
self.host = os.getenv("QB_HOST")
|
self.host = os.getenv("QB_HOST")
|
||||||
self.port = os.getenv("QB_PORT")
|
self.port = os.getenv("QB_PORT")
|
||||||
|
self.download_path = os.getenv("QB_DOWNLOAD_PATH")
|
||||||
if not self.username or not self.password:
|
if not self.username or not self.password:
|
||||||
raise ValueError("QB_USERNAME and QB_PASSWORD must be set in .env file")
|
raise ValueError("QB_USERNAME and QB_PASSWORD must be set in .env file")
|
||||||
|
|
||||||
|
|
@ -133,7 +132,7 @@ class Qbittorrent:
|
||||||
|
|
||||||
for link in links:
|
for link in links:
|
||||||
try:
|
try:
|
||||||
torrent.torrents_add(urls=link,download_path=)
|
torrent.torrents_add(urls=link, save_path=self.download_path)
|
||||||
logging.info(f"Added torrent {link} to qbittorrent")
|
logging.info(f"Added torrent {link} to qbittorrent")
|
||||||
except Exception as e:
|
except Exception as e:
|
||||||
logging.error(f"Error adding torrent {link} to qbittorrent: {e}")
|
logging.error(f"Error adding torrent {link} to qbittorrent: {e}")
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue