Skip to main content

A package for generating transcripts from YouTube videos in various formats

Project description

PyPI version License: MIT Downloads

Tube Scriptor

tube_scriptor is a Python package designed to fetch and generate transcripts from YouTube videos in various formats including XML, JSON, Python lists, or plain text. It simplifies the process of obtaining video transcripts, making it accessible for data analysis, content generation, and accessibility features.

Installation

To install tube_scriptor, you can use pip:

pip install tube_scriptor

Usage

Using tube_scriptor is straightforward. Below are examples demonstrating how to fetch a video transcript in various formats and using both a YouTube URL and a direct video ID.

Fetching Transcript as a List

from tube_scriptor import fetch_transcript

# Using a YouTube URL
youtube_url = "https://www.youtube.com/watch?v=exampleVideoId"
transcript_list = fetch_transcript(youtube_url, 'list')
print(transcript_list)

# Using a YouTube video ID
youtube_id = "exampleVideoId"
transcript_list = fetch_transcript(youtube_id, 'list')
print(transcript_list)

Fetching Transcript as a JSON String

# Using a YouTube video ID
youtube_id = "exampleVideoId"
transcript_json = fetch_transcript(youtube_id, 'json')
print(transcript_json)

Fetching Transcript as Plain Text

# Using a YouTube video ID
youtube_id = "exampleVideoId"
transcript_text = fetch_transcript(youtube_id, 'string')
print(transcript_text)

Fetching Transcript as XML

# Using a YouTube video ID
youtube_id = "exampleVideoId"
transcript_xml = fetch_transcript(youtube_id, 'xml')
print(transcript_xml)

These examples illustrate the flexibility of tube_scriptor in handling different formats and inputs. Choose the format that best suits your needs, whether it's for further processing, display, or storage.

Features

  • Support for fetching transcripts in XML, JSON, Python list, or plain string format.
  • Easy integration into Python projects.
  • Flexible input with support for both YouTube video URLs and video IDs.
  • Lightweight with minimal dependencies.

Contributing

Contributions, issues, and feature requests are welcome! Feel free to check the issues page.

License

This project is licensed under the MIT License.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

tube_scriptor-0.1.1.tar.gz (4.3 kB view hashes)

Uploaded Source

Built Distribution

tube_scriptor-0.1.1-py3-none-any.whl (5.0 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page