YTubeInsight
YTubeInsight is a Python package for effortless YouTube channel analytics. Track video counts, extract details, and gain insights from YouTube channels with ease.
Features
- Analyze YouTube channels using either full channel URLs or channel IDs
- Count videos published within the last year
- Retrieve detailed information about each video (title, publish date, URL)
- Easy-to-use API with comprehensive error handling
- Compatibility with Python 3.6+
Installation
You can install YTubeInsight using pip. We recommend using a virtual environment to manage your dependencies. You can choose between venv (built into Python) or conda based on your preference.
Option 1: Using venv
-
Create a virtual environment:
python -m venv ytubeinsight-env
-
Activate the virtual environment:
-
Install YTubeInsight:
pip install ytubeinsight
Option 2: Using conda
-
Create a conda environment:
conda create --name ytubeinsight-env python=3.8
-
Activate the conda environment:
conda activate ytubeinsight-env
-
Install YTubeInsight:
pip install ytubeinsight
Quick Start
Here's a simple example of how to use YTubeInsight:
from ytubeinsight import analyze_channel
API_KEY = 'YOUR_API_KEY_HERE'
channel_url = 'https://www.youtube.com/channel/UC_x5XG1OV2P6uZZ5FSM9Ttw'
result = analyze_channel(channel_url, API_KEY)
print(f"Videos published in the last year: {result['video_count']}")
if result['video_data']:
video = result['video_data'][0]
print(f"Latest video:")
print(f"Title: {video['title']}")
print(f"Published on: {video['published_at']}")
print(f"URL: {video['url']}")
Detailed Usage
Analyzing a channel by URL
from ytubeinsight import analyze_channel
result = analyze_channel('https://www.youtube.com/channel/UC_x5XG1OV2P6uZZ5FSM9Ttw', 'YOUR_API_KEY')
Analyzing a channel by ID
from ytubeinsight import analyze_channel
result = analyze_channel('UCJFp8uSYCjXOMnkUyb3CQ3Q', 'YOUR_API_KEY', is_channel_id=True)
Handling errors
from ytubeinsight import analyze_channel, YTubeInsightError
try:
result = analyze_channel('invalid_channel_url', 'YOUR_API_KEY')
except YTubeInsightError as e:
print(f"An error occurred: {str(e)}")
API Reference
analyze_channel(channel_input, api_key, is_channel_id=False)
Analyzes a YouTube channel and returns video data for the past year.
channel_input
: Either a full channel URL or channel IDapi_key
: YouTube Data API keyis_channel_id
: Boolean indicating if channel_input is a channel ID
Returns a dictionary containing:
video_count
: Number of videos published in the last yearvideo_data
: List of dictionaries, each containing video details (title, publish date, URL)
For more detailed API documentation, please visit our Read the Docs page.
Obtaining a YouTube Data API Key
To use YTubeInsight, you need a YouTube Data API key. Here's how to get one:
- Go to the Google Developers Console.
- Create a new project or select an existing one.
- Enable the YouTube Data API v3 for your project.
- Create credentials (API key) for your project.
- Use this API key in your YTubeInsight calls.
Remember to keep your API key secret and never share it publicly.
Requirements
- Python 3.6+
- google-api-python-client
- requests
- beautifulsoup4
Development
To set up the development environment:
-
Clone the repository:
git clone https://github.com/FahimFBA/YTubeInsight.git
cd YTubeInsight
-
Create and activate a virtual environment (choose one):
- Using venv:
python -m venv venv
source venv/bin/activate # On Windows, use `venv\Scripts\activate`
- Using conda:
conda create --name ytubeinsight-dev python=3.8
conda activate ytubeinsight-dev
-
Install the development dependencies:
pip install -e .[dev]
-
Run the tests:
pytest
Contributing
Contributions are welcome! Please feel free to submit a Pull Request.
- Fork the repository
- Create your feature branch (
git checkout -b feature/AmazingFeature
) - Commit your changes (
git commit -m 'Add some AmazingFeature'
) - Push to the branch (
git push origin feature/AmazingFeature
) - Open a Pull Request
Please make sure to update tests as appropriate and adhere to the Code of Conduct.
License
This project is licensed under the MIT License - see the LICENSE file for details.
Changelog
For a detailed changelog, please see the CHANGELOG.md file.
Acknowledgments
- Google for providing the YouTube Data API
- All contributors who help improve this package
Support
If you encounter any problems or have any questions, please open an issue on GitHub.
Disclaimer
This project is not affiliated with, authorized, maintained, sponsored or endorsed by YouTube or any of its affiliates or subsidiaries. This is an independent and unofficial API. Use at your own risk.