Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/owenvoke/torrent-parser-php
A collection of parsers for various torrent RSS/JSON feeds.
https://github.com/owenvoke/torrent-parser-php
extratorrent mininova parser rarbg torrents worldwidetorrents
Last synced: 3 months ago
JSON representation
A collection of parsers for various torrent RSS/JSON feeds.
- Host: GitHub
- URL: https://github.com/owenvoke/torrent-parser-php
- Owner: owenvoke
- License: mit
- Created: 2017-01-31T10:06:17.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2018-12-20T10:47:35.000Z (about 6 years ago)
- Last Synced: 2024-11-14T15:51:18.613Z (3 months ago)
- Topics: extratorrent, mininova, parser, rarbg, torrents, worldwidetorrents
- Language: PHP
- Homepage: https://packagist.org/packages/pxgamer/torrent-parser-php
- Size: 122 KB
- Stars: 7
- Watchers: 4
- Forks: 5
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Contributing: .github/CONTRIBUTING.md
- License: LICENSE.md
- Code of conduct: .github/CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
# torrent-parser-php
[![Latest Version on Packagist][ico-version]][link-packagist]
[![Software License][ico-license]](LICENSE.md)
[![Build Status][ico-travis]][link-travis]
[![Style CI][ico-styleci]][link-styleci]
[![Code Coverage][ico-code-quality]][link-code-quality]
[![Total Downloads][ico-downloads]][link-downloads]A collection of parsers for various torrent RSS/JSON feeds.
## Install
Via Composer
```bash
$ composer require pxgamer/torrent-parser-php
```## Usage
All parameters are returned as a [Collection](https://github.com/tightenco/collect) of [`Torrent`](src/Torrent.php) instances.
### Currently Supported Feeds
- [WorldWide Torrents](src/WorldWideTorrents.php)
- [RARBG](src/RARBG.php)
- [EZTV](src/EZTV.php)
- [LimeTorrents](src/LimeTorrents.php)### Examples
#### WorldWide Torrents
_Search_
```php
use \pxgamer\TorrentParser;
TorrentParser\WorldWideTorrents::search('Search Query');
```_Latest_
```php
use \pxgamer\TorrentParser;
TorrentParser\WorldWideTorrents::latest();
```_User_
```php
use \pxgamer\TorrentParser;
TorrentParser\WorldWideTorrents::user('username');
```#### RARBG
*__NOTE:__ RARBG only supports the `::latest()` function.*
_Latest_
```php
use \pxgamer\TorrentParser;
TorrentParser\RARBG::latest();
```#### EZTV
*__NOTE:__ EZTV only supports the `::latest()` function.*
_Latest_
```php
use \pxgamer\TorrentParser;
TorrentParser\EZTV::latest();
```#### LimeTorrents
*__NOTE:__ LimeTorrents only supports the `::latest()` function.*
_Latest_
```php
use \pxgamer\TorrentParser;
TorrentParser\LimeTorrents::latest();
```## Change log
Please see [CHANGELOG](CHANGELOG.md) for more information on what has changed recently.
## Testing
``` bash
$ composer test
```## Contributing
Please see [CONTRIBUTING](.github/CONTRIBUTING.md) and [CODE_OF_CONDUCT](.github/CODE_OF_CONDUCT.md) for details.
## Security
If you discover any security related issues, please email [email protected] instead of using the issue tracker.
## Credits
- [pxgamer][link-author]
- [All Contributors][link-contributors]## License
The MIT License (MIT). Please see [License File](LICENSE.md) for more information.
[ico-version]: https://img.shields.io/packagist/v/pxgamer/torrent-parser-php.svg?style=flat-square
[ico-license]: https://img.shields.io/badge/license-MIT-brightgreen.svg?style=flat-square
[ico-travis]: https://img.shields.io/travis/pxgamer/torrent-parser-php/master.svg?style=flat-square
[ico-styleci]: https://styleci.io/repos/80509300/shield
[ico-code-quality]: https://img.shields.io/codecov/c/github/pxgamer/torrent-parser-php.svg?style=flat-square
[ico-downloads]: https://img.shields.io/packagist/dt/pxgamer/torrent-parser-php.svg?style=flat-square[link-packagist]: https://packagist.org/packages/pxgamer/torrent-parser-php
[link-travis]: https://travis-ci.org/pxgamer/torrent-parser-php
[link-styleci]: https://styleci.io/repos/80509300
[link-code-quality]: https://codecov.io/gh/pxgamer/torrent-parser-php
[link-downloads]: https://packagist.org/packages/pxgamer/torrent-parser-php
[link-author]: https://github.com/pxgamer
[link-contributors]: ../../contributors