qBittorrent client in Deno
Deno must be installed. Instructions can be found at https://deno.land/manual/getting_started/installation
Basic usage
import { qBittorrent } from 'https://deno.land/x/qbit/mod.ts';
const client = new qBittorrent(Deno.env.QBITTORRENT_URL);
await client.login();
// Display qBittorrent info
console.log(`qBittorrent: ${await client.version}`);
console.log(`qBittorrent Web API: ${await client.webapiVersion}`);
Object.entries(await client.buildInfo).forEach(([key, value]) => {
console.log(`${key}: ${value}`);
});
// Retrieve and show all torrents
for await (const { name, hash, state } of await client.torrents()) {
console.log(`${hash}: ${name} (${state})`);
}
A couple examples are provided in examples folder that demonstrate the various usage of this library.
- Basic Example: The above example.
- mktorrent:
mktorrent
clone. - retorrent: reload torrent files.
Some examples are made as a CLI tool, so they can be run directly from the source:
$ deno run -A https://deno.land/x/qbit/examples/mktorrent.ts {sha1hash} [flags]
$ deno run -A https://deno.land/x/qbit/examples/retorrent.ts [flags]