podcastcrawler/podcastcrawler

PHP library to find podcasts

1.1.1 2017-07-15 02:56 UTC

This package is not auto-updated.

Last update: 2024-04-13 17:02:29 UTC


README

Build Status Codacy Badge Packagist Packagist Packagist

Podcast Crawler is a library that enables the search for podcasts to get details and mp3 files through API providers.

Table of Contents

Highlights

  • Simple API
  • Fully documented
  • Fully unit tested
  • Search podcasts on multiple API providers Itunes Digital Podcast
  • Search for podcasts by Term
  • Get details and mp3 files through from podcast's RSS

System Requirements

You need PHP >= 5.4.0 to use podcastcrawler/podcastcrawler, but the latest stable version of PHP is recommended.

Podcast Crawler is verified and tested on PHP 5.4, 5.5, 5.6 and 7.0.

It's necessary have installed Tidy library.

Installation

Install podcastcrawler/podcastcrawler using Composer:

$ composer require podcastcrawler/podcastcrawler

Basic Usage

<?php
// Require the composer auto loader
require 'vendor/autoload.php';

use PodcastCrawler\PodcastCrawler;
use PodcastCrawler\Provider\Itunes;

$PodcastCrawler = new PodcastCrawler(new Itunes);

$PodcastCrawler->get('nerdcast');
// Returns an array with search result (result count and a list with podcasts).

$PodcastCrawler->limit(2)->get('dev');
// Returns an array with 2 (two) items. Result count is also included.

$PodcastCrawler->find('https://jovemnerd.com.br/feed-nerdcast/');
// Returns an array with the podcast's detail and episodes with its mp3 files.

API

See the full API through this link.

Contribuing

We are so excited that you want contribute with the project! Follow these recommendations.

License

Podcast Crawler is open-sourced software licensed under the MIT License (MIT). Please see LICENSE for more information.

Designed with ❤️ by Dorian Neto