All Projects â†’ amacal â†’ Leak

amacal / Leak

Licence: mit
C# torrent library and client

Programming Languages

csharp
926 projects

Labels

Projects that are alternatives of or similar to Leak

Trackerslistcollection
🎈 Updated daily! A list of popular BitTorrent Trackers! / 每天更新!全网热门 BT Tracker 列表!
Stars: ✭ 9,761 (+14916.92%)
Mutual labels:  torrent
Moviemagnetbot
🤖 telegram bot for movies
Stars: ✭ 39 (-40%)
Mutual labels:  torrent
Bittorrent Peerid
Map a BitTorrent peer ID to a human-readable client name and version
Stars: ✭ 47 (-27.69%)
Mutual labels:  torrent
Libretorrent
Free and Open Source, full-featured torrent client for Android. Mirrored from https://gitlab.com/proninyaroslav/libretorrent
Stars: ✭ 895 (+1276.92%)
Mutual labels:  torrent
Torrent Creator
Create torrent files in your browser.
Stars: ✭ 37 (-43.08%)
Mutual labels:  torrent
Torrenter
Simple nodejs package to download torrents using torrent-indexer and webtorrent, especially movie and series.
Stars: ✭ 42 (-35.38%)
Mutual labels:  torrent
Bobarr
🍿 The all-in-one alternative for Sonarr, Radarr, Jackett... with a VPN and running in docker
Stars: ✭ 697 (+972.31%)
Mutual labels:  torrent
Nyaapi
Non-official api to access Nyaa.si and Nyaa.pantsu.cat (search, upload,...)
Stars: ✭ 56 (-13.85%)
Mutual labels:  torrent
Webtorrent Remote
Run WebTorrent in one process, control it from another process or even another machine
Stars: ✭ 37 (-43.08%)
Mutual labels:  torrent
Rats Search
BitTorrent P2P multi-platform search engine for Desktop and Web servers with integrated torrent client.
Stars: ✭ 1,037 (+1495.38%)
Mutual labels:  torrent
Metadata
a infohash metadata collector
Stars: ✭ 21 (-67.69%)
Mutual labels:  torrent
Opentorrentsite
A modern torrent site template that is easy to setup with an intuitive GUI. Currently in development.
Stars: ✭ 34 (-47.69%)
Mutual labels:  torrent
Javatorrent
BitTorrent Protocol implementation in Java
Stars: ✭ 43 (-33.85%)
Mutual labels:  torrent
Monotorrent
The official repository for MonoTorrent, a bittorrent library for .NET
Stars: ✭ 809 (+1144.62%)
Mutual labels:  torrent
Lenz
Console based MAP 🗺 : with lots of features 🤩
Stars: ✭ 51 (-21.54%)
Mutual labels:  torrent
Distribyted
📂 ➡️ 📺 🎶 🎮 Torrent client with on-demand file downloading as a filesystem.
Stars: ✭ 791 (+1116.92%)
Mutual labels:  torrent
Bittorrent Dht
🕸 Simple, robust, BitTorrent DHT implementation
Stars: ✭ 1,004 (+1444.62%)
Mutual labels:  torrent
Torrent To Google Drive Downloader
Simple notebook to stream torrent files to Google Drive using Google Colab and python3.
Stars: ✭ 63 (-3.08%)
Mutual labels:  torrent
Teletor
Telegram Torrents Bot
Stars: ✭ 54 (-16.92%)
Mutual labels:  torrent
Swiftytorrent
Basic torrent client for iOS
Stars: ✭ 46 (-29.23%)
Mutual labels:  torrent

leak

Leak is a torrent library for .NET 4.5 written only in C#. It implements its own IO layer to fully benefit from use of windows completion ports. It also delivers sample end user tools to demonstrate all its features.

downloads

The latest release of the leak library is available on NuGet or can be downloaded from GitHub.

documentation

Documentation is hosted on GitHub at https://github.com/amacal/leak/wiki.

license

Leak is Open Source software and is released under the MIT license. The license allows the use of Leak in free and commercial applications and libraries without restrictions.

sample

string tracker = "http://bttracker.debian.org:6969/announce";
FileHash hash = FileHash.Parse("883c6f02fc46188ac17ea49c13c3e9d97413a5a2");

using (SwarmClient client = new SwarmClient())
{
    SwarmNotification notification = null;
    SwarmSession session = await client.Connect(hash, tracker);

    session.Download("d:\\leak");

    do
    {
        notification = await session.Next();
    }
    while (notification.Type != SwarmNotificationType.DataCompleted)
}
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].