Skip to main content

Quick n' dirty torrent streaming with libtorrent and python

Project description

docs/tree.jpeg

Libtorrent made easy

This is pythonic high-level libtorrent API, inspired on the for-humans trend set by Kenneth Reitz (https://github.com/not-kennethreitz).

TorrentStream is centered around the principle of streaming a torrent (sequential download, buffering and playing).

pypi release downloads python_versions pypi_versions

TorrentStream exposes a CLI command, intended as an example usage.

docs/torrentstream_usage.png

Torrent objects are context managers that can clean up torrent content after you finish using them.

add_torrent method of a TorrentSession returns a Torrent object, thus can be used directly as a context manager.

async def stream_torrent(hash_torrent):
    session = TorrentSession()

    # By default this will cleanup torrent contents after playing
    with session.add_torrent(magnet_link=hash_torrent, remove_after=True) as torrent:
        # Force sequential mode
        torrent.sequential(True)

        # Wait for torrent to be started
        await torrent.wait_for('started')

        # Get first match of a media file
        try:
            media = next(a for a in torrent
                         if a.is_media and not 'sample' in a.path.lower())
        except StopIteration:
            raise Exception('Could not find a playable source')

        with timeout(5 * 60):  # Abort if we can't fill 5% in 5 minutes
            await media.wait_for_completion(5)

        return await asyncio.gather(media.wait_for_completion(100),
                                    media.launch())

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

torrentstream-0.3.1.tar.gz (5.7 kB view details)

Uploaded Source

Built Distribution

torrentstream-0.3.1-py3-none-any.whl (6.4 kB view details)

Uploaded Python 3

File details

Details for the file torrentstream-0.3.1.tar.gz.

File metadata

  • Download URL: torrentstream-0.3.1.tar.gz
  • Upload date:
  • Size: 5.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.1.4 CPython/3.9.5 Linux/5.12.11-arch1-1

File hashes

Hashes for torrentstream-0.3.1.tar.gz
Algorithm Hash digest
SHA256 3b514fedaf3500386f665cdf22454286871d99eb983f5551b2a9afd212fa04c0
MD5 2bbb5c4548e9fc4d09b2ab590de7c989
BLAKE2b-256 067d126f242f9128f3b18bfe51ec20d394bdca96b0f3241764021b7529a109c0

See more details on using hashes here.

File details

Details for the file torrentstream-0.3.1-py3-none-any.whl.

File metadata

  • Download URL: torrentstream-0.3.1-py3-none-any.whl
  • Upload date:
  • Size: 6.4 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.1.4 CPython/3.9.5 Linux/5.12.11-arch1-1

File hashes

Hashes for torrentstream-0.3.1-py3-none-any.whl
Algorithm Hash digest
SHA256 11ee5743e63ea8e0d499b26fd9874125f603636050d4df9b39fcf2566d664ce1
MD5 08ffd726453b54c8c52c5cc86aab8344
BLAKE2b-256 414881bcb9521faa018f86b35e0dfd9a9f3005a5c067881f62924b3a2e4f8014

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page