
Security News
NVD Concedes Inability to Keep Pace with Surging CVE Disclosures in 2025
Security experts warn that recent classification changes obscure the true scope of the NVD backlog as CVE volume hits all-time highs.
org.drewcarlson:qbittorrent-models-js
Advanced tools
Kotlin wrapper for the qBittorrent Web API using Ktor.
Multiplatform Kotlin wrapper for the qBittorrent Web API using Ktor.
Features
client
contains all the HTTP code, models
contains only the serializable data modelsFor a comprehensive list of available endpoints and to understand the returned data, see the qBittorrent API Docs.
QBittorrentClient only requires baseUrl
assuming default credentials are used.
val client = QBittorrentClient(
baseUrl = "http://localhost:8080",
username = "admin",
password = "adminadmin",
// When subscribed to a syncing Flow, the API is polled at this rate
syncInterval = 5.seconds,
httpClient = HttpClient(),
dispatcher = Dispatchers.Default,
)
Add a new torrent:
client.addTorrent {
// Add HTTP/Magnet URLs:
urls.add("magnet:?xt=urn:btih:c12fe1c06bba254a9dc9f519b335aa7c1367a88a")
// Or torrent file paths:
torrents.add("~/Downloads/my.torrent")
// Or torrent file names and ByteArrays:
rawTorrents["my.torrent"] = getFileBytes()
// ... configure other optional parameters
savepath = "/downloads"
}
Subscribe to MainData updates:
client.observeMainData()
.collect { mainData ->
println("Server Status: ${mainData.serverState.connectionStatus}")
println("Tracking ${mainData.torrents.size} torrents.")
}
Subscribe to Torrent updates:
client.observeTorrent("c12fe1c06bba254a9dc9f519b335aa7c1367a88a")
.collect { torrent ->
println("${torrent.name} : ${torrent.state}")
}
Note that the maindata
endpoint is only polled at the provided syncInterval
while collecting either the
observeMainData()
or observeTorrent(...)
Flow
s.
When all instances of these Flow
s are completed/cancelled no API endpoints will be called until explicitly requested.
repositories {
mavenCentral()
// (Optional) For Snapshots:
maven(url = "https://s01.oss.sonatype.org/content/repositories/snapshots/")
}
dependencies {
implementation("org.drewcarlson:qbittorrent-client:$qbittorrent_version")
// Optional: Just the data models without the client/http lib.
implementation("org.drewcarlson:qbittorrent-models:$qbittorrent_version")
}
Note: it is required to specify a Ktor client engine implementation. (Documentation)
dependencies {
// Jvm/Android
implementation("io.ktor:ktor-client-okhttp:$ktor_version")
implementation("io.ktor:ktor-client-android:$ktor_version")
// iOS
implementation("io.ktor:ktor-client-darwin:$ktor_version")
// macOS/Windows/Linux
implementation("io.ktor:ktor-client-curl:$ktor_version")
// Javascript/NodeJS
implementation("io.ktor:ktor-client-js:$ktor_version")
}
Copyright (c) 2020 Andrew Carlson
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
FAQs
Kotlin wrapper for the qBittorrent Web API using Ktor.
We found that org.drewcarlson:qbittorrent-models-js demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 0 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Security experts warn that recent classification changes obscure the true scope of the NVD backlog as CVE volume hits all-time highs.
Security Fundamentals
Attackers use obfuscation to hide malware in open source packages. Learn how to spot these techniques across npm, PyPI, Maven, and more.
Security News
Join Socket for exclusive networking events, rooftop gatherings, and one-on-one meetings during BSidesSF and RSA 2025 in San Francisco.