Add some pre-existing scripts.
This commit is contained in:
Executable
+15
@@ -0,0 +1,15 @@
|
||||
#!/usr/bin/env python3
|
||||
from bencodepy import decode_from_file
|
||||
import os
|
||||
|
||||
filename = 'Another - TV Series [2012] - Blu-ray MKV h264 10-bit 1080p FLAC 2.0 Softsubs (Coalgirls).50781.torrent'
|
||||
folder = '/home/lukas/Torrents/'
|
||||
fullpath = os.path.join(folder,filename)
|
||||
print(f"Full path to file: {fullpath}.")
|
||||
print(f"File exists: {os.path.lexists(fullpath)}")
|
||||
|
||||
torrent_pieces = decode_from_file(fullpath)[b'info'][b'files']
|
||||
|
||||
for torrent_piece in torrent_pieces:
|
||||
print(torrent_piece[b'path'][0].decode("utf-8"))
|
||||
|
||||
Reference in New Issue
Block a user