YouTube Scraper for effortless public YouTube data collection, including video and channel information.
Project description
YouTube Scraper
With YouTube Scraper, you can easily collect public YouTube data without blocks. Follow this guide to see how to scrape YouTube using Oxylabs’ Scraper API.
How it works
Simply, send a web request to our API and you’ll retrieve the HTML of any public YouTube page you wish to scrape.
Python code example
The below code requests and delivers the HTML content of this Oxylabs video on YouTube:
import requests
from pprint import pprint
# Structure payload.
payload = {
'source': 'universal',
'url': 'https://www.youtube.com/watch?v=SLSGtgKWzxg',
'render': 'html'
}
# Get a response.
response = requests.request(
'POST',
'https://realtime.oxylabs.io/v1/queries',
auth=('USERNAME', 'PASSWORD'), # Your credentials go here
json=payload
)
# Instead of response with job status and results URL, this will return the
# JSON response with results.
pprint(response.json())
See Oxylabs documentation for more details.
Output sample
{
"results": [
{
"content":"<!doctype html>
<html lang="en">
<head>
...
</script></body>
</html>
",
"created_at": "2023-05-18 12:33:40",
"updated_at": "2023-05-18 12:33:55",
"page": 1,
"url": "https://www.youtube.com/watch?v=SLSGtgKWzxg",
"job_id": "7064941110115745793",
"status_code": 200
}
]
}
Oxylabs’ YouTube Scraper API will ease your data gathering efforts and you’ll be sure to gather YouTube data like channel information, video details, titles, descriptions, playlists, and more. Reach out to us via live chat or email in case you have any questions.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file youtube-video-scraper-api-0.1.3.tar.gz
.
File metadata
- Download URL: youtube-video-scraper-api-0.1.3.tar.gz
- Upload date:
- Size: 3.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1b7c497c6399da7cf109f621562f0449a85b4eacc51bbeb02fdd70fc6f7a5a68 |
|
MD5 | 68ed3ff2b824c9116cdef05ff89c80f1 |
|
BLAKE2b-256 | 9c9a2e84194299cf52e69a3110c553ea47402da45fe80931b0a79129d5412b13 |
File details
Details for the file youtube_video_scraper_api-0.1.3-py3-none-any.whl
.
File metadata
- Download URL: youtube_video_scraper_api-0.1.3-py3-none-any.whl
- Upload date:
- Size: 2.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5a3bb6644b798b9809c95811e33f3ff18dbcb31bd963b67d53a57c5e66078c38 |
|
MD5 | e998413d8b5dbdcc215e4d7b42b18fad |
|
BLAKE2b-256 | ab3853f09343163712cd636ef36300d4eaf583e8cc26c05ce786891ab77da2ec |