acidjazz / tubestrip
YouTube爬虫
v0.1.5
2020-07-08 18:35 UTC
Requires
- php: ^7.4
- ext-json: *
- guzzlehttp/guzzle: 6.* || 7.*
- illuminate/support: 7.*
- symfony/dom-crawler: ^5.1
Requires (Dev)
- orchestra/testbench: ^5.3
- phpunit/phpunit: ^9.2
README
简单的YouTube爬虫
早期开发
功能
- 搜索YouTube
- 通过YouTube ID获取视频标题、描述、观看次数和发布日期
安装
使用composer安装tubestrip
composer require acidjazz/tubestrip
示例
<?php use acidjazz\tubestrip\TubeStrip; $ts = new TubeStrip(); $results = $ts->search('GETV ANSI Show'); dump($results);
array:20 [▼
0 => {#3768 ▼
+"id": "r_cYOi3pnhA"
+"title": "GETV: ANSI Art for the Masses"
}
...
<?php use acidjazz\tubestrip\TubeStrip; $ts = new TubeStrip(); dump($ts->get('r_cYOi3pnhA');
{#1588 ▼
+"title": "GETV: ANSI Art for the Masses"
+"description": """
Back before there was the Internet, early caveman dialed into computer bulletin board systems or BBSes to get their online fix. Many of these boards distinguish ▶
Originally posted:
http://www.geekentertainment.tv/2008/...
"""
+"viewCount": 55585
+"date": "Feb 9 2008"
}