torrent/bencode
Matt Joiner fc4fab91f5 Switch to goimports import sorting
Used to use sortimports, but it's old, and goimports seems to have an opinion now.
2018-11-02 23:12:01 +11:00
..
testdata bencode: Use the testdata convention in tests 2016-02-23 21:31:15 +11:00
README.md The bencode README is markdown 2017-09-12 18:31:56 +10:00
api.go bencode.Marshal: Get rid of the intermediate buffer 2018-07-23 10:50:18 +10:00
bench_test.go bencode: Add benchmark for krpc.Msg 2018-07-23 10:32:19 +10:00
both_test.go bencode: Update some test code 2016-02-23 21:47:00 +11:00
bytes.go Make bencode.Bytes work with pointer and nonpointer receivers 2016-08-26 20:29:29 +10:00
decode.go Switch to goimports import sorting 2018-11-02 23:12:01 +11:00
decode_test.go bencode: Remove a lot of expensive allocations 2018-07-25 13:42:28 +10:00
encode.go bencode: Remove a lot of expensive allocations 2018-07-25 13:42:28 +10:00
encode_test.go bencode: Handle encoding big.Ints 2017-11-08 21:34:24 +11:00
fuzz.go bencode: Fuzz 2015-08-23 15:59:49 +10:00
misc.go bencode: Remove a lot of expensive allocations 2018-07-25 13:42:28 +10:00
scanner.go bencode.scanner.ReadByte returned errors when it shouldn't have 2017-11-10 23:44:24 +11:00
tags.go bencode: Add ignore_unmarshal_type_error tag 2018-01-27 14:31:46 +11:00

README.md

Bencode encoding/decoding sub package. Uses similar API design to Go's json package.

Install

go get github.com/anacrolix/torrent

Usage

package demo

import (
	bencode "github.com/anacrolix/torrent/bencode"
)

type Message struct {
	Query    string `json:"q,omitempty" bencode:"q,omitempty"`
}

var v Message

func main(){
	// encode
	data, err := bencode.Marshal(v)
	if err != nil {
		log.Fatal(err)
	}
	
	//decode
	err := bencode.Unmarshal(data, &v)
	if err != nil {
		log.Fatal(err)
	}
	fmt.Println(v)
}