https://github.com/teug91/qbittorrentsharp
C# library to work with the qBittorrent WebUI API.
https://github.com/teug91/qbittorrentsharp
api c-sharp qbittorrent webui wrapper
Last synced: about 1 year ago
JSON representation
C# library to work with the qBittorrent WebUI API.
- Host: GitHub
- URL: https://github.com/teug91/qbittorrentsharp
- Owner: teug91
- License: mit
- Created: 2017-11-04T14:59:23.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2018-05-21T17:30:19.000Z (about 8 years ago)
- Last Synced: 2025-03-29T20:23:01.100Z (over 1 year ago)
- Topics: api, c-sharp, qbittorrent, webui, wrapper
- Language: C#
- Homepage:
- Size: 202 KB
- Stars: 15
- Watchers: 3
- Forks: 4
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# qBittorrentSharp
C# library to work with the [qBittorrent WebUI API](https://github.com/qbittorrent/qBittorrent/wiki/WebUI-API-Documentation).
This library is largely untested. [The official qBittorrent WebUI API documentation](https://github.com/qbittorrent/qBittorrent/wiki/WebUI-API-Documentation) might be helpfull.
## How to use it ##
qBittorrentSharp.API.Initialize("http://192.168.1.100:8080"); // Initialize
bool? LogInSuccessful = await qBittorrentSharp.API.Login("username", "password"); // Login
await qBittorrentSharp.API.PauseAll(); // Run some method
## Credit
* [qBittorrent](https://github.com/qbittorrent/qBittorrent) - A BitTorrent client
* [Json.NET](https://www.newtonsoft.com/json) - Popular high-performance JSON framework for .NET