Skip to content

Latest commit

 

History

History
16 lines (11 loc) · 406 Bytes

README.md

File metadata and controls

16 lines (11 loc) · 406 Bytes

BEncode.jl

Build Status

A Julia library for BEncode.

using BEncode

bencode(Dic("Dict" => [1, "two"]))
# "d4:Dictli1e3:twoee"

bdecode("d4:Dictli1e3:twoee")
# Dict{Any,Any} with 1 entry:
#   "Dict" => Union{Int64, String, Dict, Array}[1, "two"]