/bencode

module for decoding torrent file into a dict

Primary LanguagePython

bencode

decode torrent file into a dict

import bencode as b

exp = 'd3:cow3:moo4:spam4:eggse'

d = b.decode(exp) # d =  {'cow': 'moo', 'spam': 'eggs'}