Skip to main content

Snatch from Beacon

Project description

Beacon Snatch

Beacon Snatch is a library and command-line interface (CLI) tool designed to authenticate, browse, and download video content from the Beacon streaming platform. The CLI offers both direct command execution and an interactive mode for ease of use.

Beacon Snatch is a project made quickly that uses a headless browser to obtain the video streams to download, so dont expect anything fast or secure. Use at your own risk.

Features

  • Authentication: Authenticate with your Beacon account using email and password or saved cookies.
  • Series Management: List available series, fetch series details, and download all content from a series.
  • Content Management: Fetch content details, display available streams, and download specific content by ID.
  • Interactive Mode: A user-friendly interactive command shell for managing your content downloads.
  • Output and Cache Management: Set the directory where downloaded files are saved and manage cached cookies for session persistence.

Installation

To install Beacon Snatch, first clone the repository and then install it using pip:

git clone https://github.com/retrozelda/beacon-snatch.git
cd beacon-snatch
pip install .

or simply

pip install beacon-snatch

This will install the required dependencies listed in the dependencies file and make the CLI accessible via the beacon-snatch command.

CLI Usage

You can run Beacon Snatch either in interactive mode or by directly executing commands.

Command-Line Mode Run any of the following commands directly from the terminal:

# Authenticate with your Beacon account
beacon-snatch authenticate

# List all available series
beacon-snatch list-series

# Get detailed information about a specific series
beacon-snatch series-info <series_id>

# List content in a specific series
beacon-snatch series-list-content <series_id>

# Download all content from a specific series
beacon-snatch series-download <series_id>

# Get detailed information about specific content
beacon-snatch content-info <content_id>

# Download specific content by content ID
beacon-snatch content-download <content_id>

# Set the output directory where downloaded files will be saved
beacon-snatch set-output <output_dir>

# Clear the stored authentication cookies
beacon-snatch clear-cookies

# View configuration info for the current session
beacon-snatch info

# Exit the CLI
beacon-snatch exit

Interactive Mode

Start the interactive mode for easier use:

beacon-snatch interactive

In interactive mode, you can type any of the above commands without the need to prefix them with beacon-snatch.

Example Interactive Session:

(Beacon) > authenticate
Enter your Beacon Email: your-email@example.com
Enter your Beacon Password:
Authenticated as: your-username

(Beacon) > list-series
0) series-1
1) series-2
2) series-3

(Beacon) > series-info series-1
	id:
		123
	title:
		Example Series Title
	description:
		This is an example series description.
	series_url:
		https://beacon.tv/series/series-1
	content count:
		10

(Beacon) > exit
Goodbye!

Configuration Options

When starting the CLI, you can set the following options:

  • --log-level [DEBUG|VERBOSE|INFO|WARNING|ERROR|CRITICAL]: Set the logging level.
  • --cache <cache_dir>: Path to the cache directory. If not provided, a default will be used.
  • --output <output_dir>: Path to save downloads. If not provided, a default will be used.

Example usage:

beacon-snatch --log-level INFO --cache ~/.beacon_cache --output ~/downloads authenticate

Python Library Usage

You can also use Beacon Snatch as a Python library to integrate its functionality into your own applications. Here's an example of how to use the library:

Example Usage

from beacon_snatch import BeaconAuthentication, BeaconSeries, BeaconContent

# Authenticate with your Beacon account
auth = BeaconAuthentication(email="your-email@example.com", password="your-password")
auth.authenticate()

# List available series
series_ids = BeaconSeries.get_all_series(auth)
print(series_ids)

# Get detailed information about a specific series
series = BeaconSeries.create(auth, "series_id")
print(f"Title: {series.title}")
print(f"Description: {series.description}")

# Fetch and list content in the series
series.fetch(auth)
for content in series.content:
    print(f"Content Title: {content.title}")

# Download a specific content
content = BeaconContent.create(auth, "content_id")
if content:
    stream = content.video_and_audio_streams[0]  # Selects the highest resolution stream
    content.download(stream, destination_folder="./downloads")

Available Classes

  • BeaconAuthentication: Handles authentication and session management.
  • BeaconSeries: Manages series data and content fetching.
  • BeaconContent: Manages individual content items and downloading.
  • BeaconStreamInfo: Represents available streams for a content item (e.g., video, audio, etc).

Dependencies

The project relies on several Python libraries, including:

  • selenium
  • requests
  • progressbar2
  • m3u8
  • click

These are automatically installed when you install the project using pip.

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

beacon_snatch-0.1.8.tar.gz (16.6 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

beacon_snatch-0.1.8-py3-none-any.whl (18.1 kB view details)

Uploaded Python 3

File details

Details for the file beacon_snatch-0.1.8.tar.gz.

File metadata

  • Download URL: beacon_snatch-0.1.8.tar.gz
  • Upload date:
  • Size: 16.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.13.5

File hashes

Hashes for beacon_snatch-0.1.8.tar.gz
Algorithm Hash digest
SHA256 01d0fa5547577e272fb0068214af26a742a2c04e7997f44a6f94efcfb5245777
MD5 be04dc5650022b9f8b66be9c7ebc74be
BLAKE2b-256 7ae5922cab2875d73c6ceda3609457fe81d68108934e1473e18478460d82d324

See more details on using hashes here.

File details

Details for the file beacon_snatch-0.1.8-py3-none-any.whl.

File metadata

  • Download URL: beacon_snatch-0.1.8-py3-none-any.whl
  • Upload date:
  • Size: 18.1 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.13.5

File hashes

Hashes for beacon_snatch-0.1.8-py3-none-any.whl
Algorithm Hash digest
SHA256 21234aae8537a08551b8097d685ccc2d23461546187d9de0a7b2e6c15140fe29
MD5 edc896304de843d3c73ac50401704330
BLAKE2b-256 87ed0497dd77da2a2be0131f1ddca80013385f3d64be74adfc611101704fa84b

See more details on using hashes here.

Supported by

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