Skip to main content

A package to scrape bitchute platform recommendations using Selenium.

Project description

Python Bitchute Scraper

This repository contains a simple scaper for the bitcute video plattform. It makes uses of Selenium for retrieving data.

Installation

For using the scraper you can download, clone or fork the repsoitory and put the bitchute folder in the working directory of your python script.

Usage

Create a crawler object and download it the trending videos and tags.

import bitchute as bc
b = bc.Crawler()        
recommended_videos, tags = b.get_recommended_videos(type='trending')

You can also retrieve videos listed in popular and all from the homepage as well. These request currently return a list of videos as well as a list of tags. The latter is an artifact of the current implementation and is to be ignored. (Will be fixed later.)

recommended_videos, tags = b.get_recommended_videos(type='popular')
recommended_videos, tags = b.get_recommended_videos(type='all')

Recommended channels can be retrieved via.

recommended_channels = b.get_recommended_channels(extended=False)

Retrieve channel information containing both the channel about as well as the videos published by the channel.

about, videos = b.(channel_ids, get_channel_about=True, get_channel_videos=True)

Search Videos (sorted by relevance only).

videos = search(query, top=100)

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

bitchute-scraper-0.1.0.tar.gz (8.6 kB view hashes)

Uploaded Source

Built Distribution

bitchute_scraper-0.1.0-py3-none-any.whl (8.6 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