
Security News
Astral Launches pyx: A Python-Native Package Registry
Astral unveils pyx, a Python-native package registry in beta, designed to speed installs, enhance security, and integrate deeply with uv.
Overdrive is a RSS frontend for the transmission bit torrent client. It has hooks to make downloading TV series much easier, and allows recipes with callbacks to make filtering show much easier.
Overdrive is a ruby gem that uses gemcutter. To install, simply do the following:
sudo gem install gemcutter
sudo gem tumble
then
sudo gem install overdrive
This should install the overdrive binary in your path.
To do anything useful, you need to setup a recipe. You can store the recipe (in Linux) at
/etc/overdrive.rb
/var/transmission/config/overdrive.rb
$HOME/.overdrive/overdrive.rb
and you can add paths via the -c argument:
overdrive -c /path/to/recipe.rb
A sample recipe might look like this:
add_feed "http://www.mytorrents.com/torrents.rss"
add_feed "http://www.myothertorrents.com/torrents.rss"
add_title "24"
add_title "30 Rock"
add_title "Alias"
filter do |item|
parsed = parse_metadata(item)
if parsed[:title] && parsed[:series] && parsed[:episode]
title = parsed[:title].split(' ').map { |t| t[0..0].upcase + t[1..-1] }.join(' ')
if titles.include?(title)
target = "/videos/#{title}/Season #{parsed[:series].to_i.to_s}"
download(item.url, :download_dir => target)
end
end
end
You can get a full list of command line arguments by running
overdrive -h
You can get a list of DSL commands on the wiki
FAQs
Unknown package
We found that overdrive demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Astral unveils pyx, a Python-native package registry in beta, designed to speed installs, enhance security, and integrate deeply with uv.
Security News
The Latio podcast explores how static and runtime reachability help teams prioritize exploitable vulnerabilities and streamline AppSec workflows.
Security News
The latest Opengrep releases add Apex scanning, precision rule tuning, and performance gains for open source static code analysis.