mirror of
https://github.com/vikstrous/pirate-get
synced 2025-01-10 10:04:21 +01:00
Copying torrent magnets from the pirate-get CLI
I often use seedboxes, and find myself having to save a magnet to file and then copy its contents, to input a magnet link into my seedbox. To remedy this issue, I introduced the 'c' command inside pirate-get, that allows the user to copy a magnet link to theit clipboard. For example, the 'c3' command would copy torrent number three into the user's clipboard. I hope you find my pull request satisfactory. Have a great day! - Matteo
This commit is contained in:
parent
08848d1bd4
commit
a19fb7fc30
@ -84,8 +84,8 @@ def parse_cmd(cmd, url):
|
||||
|
||||
def parse_torrent_command(l):
|
||||
# Very permissive handling
|
||||
# Check for any occurances or d, f, p, t, m, or q
|
||||
cmd_code_match = re.search(r'([hdfpmtq])', l,
|
||||
# Check for any occurances of c, d, f, p, t, m, or q
|
||||
cmd_code_match = re.search(r'([hdfpmtqc])', l,
|
||||
flags=re.IGNORECASE)
|
||||
if cmd_code_match:
|
||||
code = cmd_code_match.group(0).lower()
|
||||
@ -382,6 +382,7 @@ def pirate_main(args):
|
||||
printer.print('Options:',
|
||||
'<links>: Download selected torrents',
|
||||
'[m<links>]: Save magnets as files',
|
||||
'[c<links>]: Copy magnets to clipboard',
|
||||
'[t<links>]: Save .torrent files',
|
||||
'[d<links>]: Get descriptions',
|
||||
'[f<links>]: Get files',
|
||||
@ -399,6 +400,8 @@ def pirate_main(args):
|
||||
elif code == 'm':
|
||||
pirate.torrent.save_magnets(printer, choices, results,
|
||||
args.save_directory)
|
||||
elif code == 'c':
|
||||
pirate.torrent.copy_magnets(printer, choices, results)
|
||||
elif code == 't':
|
||||
pirate.torrent.save_torrents(printer, choices, results,
|
||||
args.save_directory)
|
||||
|
@ -1,6 +1,7 @@
|
||||
import re
|
||||
import sys
|
||||
import gzip
|
||||
import pyperclip
|
||||
import urllib.request as request
|
||||
import urllib.parse as parse
|
||||
import urllib.error
|
||||
@ -197,3 +198,13 @@ def save_magnets(printer, chosen_links, results, folder):
|
||||
printer.print('Saved {:X} in {}'.format(info_hash, file))
|
||||
with open(file, 'w') as f:
|
||||
f.write(magnet + '\n')
|
||||
|
||||
def copy_magnets(printer, chosen_links, results):
|
||||
clipboard_text = ''
|
||||
for link in chosen_links:
|
||||
magnet = results[link]['magnet']
|
||||
info_hash = int(re.search(r'btih:([a-f0-9]{40})', magnet).group(1), 16)
|
||||
clipboard_text += magnet + "\n"
|
||||
printer.print('Copying {:X} to clipboard'.format(info_hash))
|
||||
|
||||
pyperclip.copy(clipboard_text)
|
Loading…
Reference in New Issue
Block a user