A modern, API-based package to scrape BitChute platform data.
Project description
BitChute Scraper
Python scraper for the BitChute video platform. It allows you to query for videos and to retrieve platform recommendations such as trending videos, popular videos (now called "fresh") or trending tags. The release of version 1.0.0 is a major update using an API approach to data collection compared to the Selenium based scraper of now defunct previous versions. Since the codebase was completely rewritten in collaboration with Claude AI backwards compatibility is not provided.
Features
- Fast API-based data collection - 10x faster than HTML parsing approaches
- Automatic media downloads - Thumbnails and videos with smart caching
- Comprehensive data models - Videos, channels, hashtags with computed properties
- Concurrent processing - Parallel requests with configurable rate limiting
- Multiple export formats - CSV, JSON, Excel, Parquet with timestamps
- Command-line interface - Easy automation and scripting support
- Robust error handling - Automatic retries and graceful fallbacks
Installation
Install from PyPI:
pip3 install bitchute-scraper
For full functionality including progress bars and fast data formats:
pip install bitchute-scraper[full]
System Requirements
- Python 3.7+
- Google Chrome or Chromium browser
- ChromeDriver (auto-managed)
Quick Start
Basic Usage
import bitchute
# Initialize API client
api = bitchute.BitChuteAPI(verbose=True)
# Get trending videos
trending = api.get_trending_videos('day', limit=50)
print(f"Retrieved {len(trending)} trending videos")
# Search for videos
results = api.search_videos('climate change', limit=100)
# Get video details
video_info = api.get_video_info('VIDEO_ID', include_counts=True)
Download Support
# Initialize with downloads enabled
api = bitchute.BitChuteAPI(
enable_downloads=True,
download_base_dir="downloads",
verbose=True
)
# Download videos with thumbnails
videos = api.get_trending_videos(
'week',
limit=20,
download_thumbnails=True,
download_videos=True
)
Data Export
from bitchute.utils import DataExporter
# Get data and export to multiple formats
videos = api.get_popular_videos(limit=100)
exporter = DataExporter()
exported_files = exporter.export_data(
videos,
'popular_videos',
['csv', 'json', 'xlsx']
)
Command Line Interface
# Get trending videos
bitchute trending --timeframe day --limit 50 --format csv
# Search videos with details
bitchute search "bitcoin" --limit 100 --sort views --analyze
# Export to Excel
bitchute popular --limit 200 --format xlsx --analyze
API Overview
Core Methods
Platform Recommendations:
get_trending_videos(timeframe, limit)- Trending by day/week/monthget_popular_videos(limit)- Popular videosget_recent_videos(limit)- Most recent uploadsget_short_videos(limit)- Short-form content
Search Functions:
search_videos(query, sensitivity, sort, limit)- Video searchsearch_channels(query, sensitivity, limit)- Channel search
Individual Items:
get_video_info(video_id, include_counts, include_media)- Single video detailsget_channel_info(channel_id)- Channel information
Hashtags:
get_trending_hashtags(limit)- Trending hashtagsget_videos_by_hashtag(hashtag, limit)- Videos by hashtag
Configuration Options
api = bitchute.BitChuteAPI(
verbose=True, # Enable logging
enable_downloads=True, # Enable media downloads
download_base_dir="data", # Download directory
max_concurrent_downloads=5, # Concurrent downloads
rate_limit=0.3, # Seconds between requests
timeout=60 # Request timeout
)
Data Models
All methods return pandas DataFrames with consistent schemas:
- Video: Complete metadata with engagement metrics and download paths
- Channel: Channel information with statistics and social links
- Hashtag: Trending hashtags with rankings and video counts
Advanced Usage
Bulk Data Collection
# Get large datasets efficiently
all_videos = api.get_all_videos(limit=5000, include_details=True)
# Process with filtering
from bitchute.utils import ContentFilter
filtered = ContentFilter.filter_by_views(all_videos, min_views=1000)
crypto_videos = ContentFilter.filter_by_keywords(filtered, ['bitcoin', 'crypto'])
Performance Monitoring
# Track download performance
stats = api.get_download_stats()
print(f"Success rate: {stats['success_rate']:.1%}")
print(f"Total downloaded: {stats['total_bytes_formatted']}")
Documentation
- API Reference: Complete method documentation with examples
- User Guide: Detailed tutorials and best practices
- CLI Reference: Command-line usage and automation examples
Contributing
We welcome contributions! Please see our contributing guidelines:
- Fork the repository
- Create a feature branch
- Add tests for new functionality
- Ensure all tests pass
- Submit a pull request
Development Setup
git clone https://github.com/bumatic/bitchute-scraper.git
cd bitchute-scraper
pip install -e .[dev]
pytest
License
MIT License - see LICENSE file for details.
Support
- Issues: GitHub Issues
- Discussions: GitHub Discussions
Disclaimer
This software is intended for educational and research purposes only. Users are responsible for complying with Terms of Service and all applicable laws. The software authors disclaim all liability for any misuse of this software.
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
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file bitchute_scraper-1.0.0.tar.gz.
File metadata
- Download URL: bitchute_scraper-1.0.0.tar.gz
- Upload date:
- Size: 103.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
250ceed2101b61afae23ef018531a94011c2b9a9b7342194ee969970786bf094
|
|
| MD5 |
83e29b471bac52b2f1ecf98091507ba6
|
|
| BLAKE2b-256 |
809f31f01fe4aa89bc1459f5089b0ed2b7f9ee91f8fc71504f97b3eecfedae25
|
File details
Details for the file bitchute_scraper-1.0.0-py3-none-any.whl.
File metadata
- Download URL: bitchute_scraper-1.0.0-py3-none-any.whl
- Upload date:
- Size: 71.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
41cf0282bc4278cef0f893b77d69bc2aedca748e0f7d8ba8fb091f44d7a57ac7
|
|
| MD5 |
edef2e2a5da097b1805e626625e9c9b1
|
|
| BLAKE2b-256 |
30dc41378c9971c2251c4101783d9160d2f781701c474f5a4041dc226eceb0cc
|