torrent-scraper icon indicating copy to clipboard operation
torrent-scraper copied to clipboard

Search for torrent on many torrent websites

Torrent Scraper

Build Status

About

This library provides an abstraction to search for torrent files accross some torrent websites.

Usage

<?php

$scraperService = new \Xurumelous\TorrentScraper\TorrentScrapperService(['ezTv', 'kickassTorrents']);
$results = $scraperService->search('elementaryos');

foreach ($results as $result) {
	$result->getName();
    $result->getSeeders();
    $result->getLeechers();
    $result->getTorrentUrl();
    $result->getMagnetUrl();
}

Available adapters