NAME
Rtmgr::Gen::Db - Connect to rTorrent/ruTorrent installation and get a list of torrents, storing them to a database.
VERSION
Version 0.05
SYNOPSIS
Connects to a rTorrent/ruTorrent installation.
This module connects to an installation of rTorrent/ruTorrent and builds a local SQLite database with the content of the seedbox.
SUBROUTINES/METHODS
#!/usr/bin/env perl use Data::Dump qw(dump);
use Rtmgr::Gen qw(get_download_list create_db_table get_name get_tracker calc_scene insert_into_database_missing get_difference_between_server_and_database add_remove_extr$ # Create Database. my $create_db = create_db_table('database'); print $create_db;
# Populate database with ID's 'HASH' of torrents. my $dl_list_arr_ref = get_download_list('user','password','host','443','RPC2','database'); insert_into_database_missing($dl_list_arr_ref,'database');
# Remove Extraneous Reccords from Database. my $dl_list_ext_reccords = get_download_list('user','password','host','443','RPC2','database'); my $diff_list = get_difference_between_server_and_database($dl_list_ext_reccords,'database'); add_remove_extraneous_reccords($diff_list,'database');
# Populate database with Torrent Names. my $get_name = get_name('user','password','host','443','RPC2','database'); print $get_name;
# Populate database with trackers. my $get_tracker = get_tracker('user','password','host','443','RPC2','database'); print $get_tracker;
# Check if release is a scene release by checking for entry in srrdb. my $calc_scene = calc_scene('user','password','database'); print $calc_scene;
get
AUTHOR
Clem Morton, <clem at cpan.org>
BUGS
Please report any bugs or feature requests to bug-rtmgr-gen-db at rt.cpan.org
, or through the web interface at https://rt.cpan.org/NoAuth/ReportBug.html?Queue=Rtmgr-Gen-Db. I will be notified, and then you'll automatically be notified of progress on your bug as I make changes.
SUPPORT
You can find documentation for this module with the perldoc command.
perldoc Rtmgr::Gen::Db
You can also look for information at:
RT: CPAN's request tracker (report bugs here)
AnnoCPAN: Annotated CPAN documentation
CPAN Ratings
Search CPAN
ACKNOWLEDGEMENTS
LICENSE AND COPYRIGHT
This software is Copyright (c) 2020 by Clem Morton.
This is free software, licensed under:
The Artistic License 2.0 (GPL Compatible)