torrent/example_test.go

26 lines
537 B
Go
Raw Normal View History

package torrent_test
import (
"log"
"github.com/anacrolix/torrent"
)
func Example() {
2015-06-03 03:30:55 +00:00
c, _ := torrent.NewClient(nil)
defer c.Close()
t, _ := c.AddMagnet("magnet:?xt=urn:btih:ZOCMZQIPFFW7OLLMIC5HUB6BPCSDEOQU")
<-t.GotInfo()
t.DownloadAll()
c.WaitAll()
log.Print("ermahgerd, torrent downloaded")
}
2015-06-03 03:30:55 +00:00
func Example_fileReader() {
2018-01-06 05:37:13 +00:00
var f torrent.File
// Accesses the parts of the torrent pertaining to f. Data will be
2015-06-04 04:25:52 +00:00
// downloaded as required, per the configuration of the torrent.Reader.
2018-01-06 05:37:13 +00:00
r := f.NewReader()
defer r.Close()
2015-06-03 03:30:55 +00:00
}