{"id":13895001,"url":"https://github.com/xgfone/go-bt","last_synced_at":"2025-10-25T20:09:50.549Z","repository":{"id":40344320,"uuid":"270205782","full_name":"xgfone/go-bt","owner":"xgfone","description":"Another pure golang implementation of BitTorrent library.","archived":false,"fork":false,"pushed_at":"2024-12-15T03:05:34.000Z","size":184,"stargazers_count":53,"open_issues_count":5,"forks_count":15,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-03-31T18:21:18.234Z","etag":null,"topics":["bit-torrent","bittorrent","bt","dht","go","golang","libtorrent","p2p","torrent","torrent-client","torrent-downloader","torrent-server","torrent-tracker","tracker"],"latest_commit_sha":null,"homepage":"","language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/xgfone.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2020-06-07T05:40:56.000Z","updated_at":"2025-01-24T05:42:06.000Z","dependencies_parsed_at":"2024-04-16T00:39:44.802Z","dependency_job_id":"15bcd284-32f9-46fc-9638-d4c9dd45e4f0","html_url":"https://github.com/xgfone/go-bt","commit_stats":{"total_commits":71,"total_committers":1,"mean_commits":71.0,"dds":0.0,"last_synced_commit":"aa4abbc304d268e933902e66cf7645a4ceeb306a"},"previous_names":["xgfone/bt"],"tags_count":10,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/xgfone%2Fgo-bt","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/xgfone%2Fgo-bt/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/xgfone%2Fgo-bt/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/xgfone%2Fgo-bt/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/xgfone","download_url":"https://codeload.github.com/xgfone/go-bt/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":253150073,"owners_count":21861829,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["bit-torrent","bittorrent","bt","dht","go","golang","libtorrent","p2p","torrent","torrent-client","torrent-downloader","torrent-server","torrent-tracker","tracker"],"created_at":"2024-08-06T18:01:55.197Z","updated_at":"2025-10-25T20:09:50.452Z","avatar_url":"https://github.com/xgfone.png","language":"Go","funding_links":[],"categories":["Go"],"sub_categories":[],"readme":"# BT - Another Implementation For Golang [![Build Status](https://github.com/xgfone/go-bt/actions/workflows/go.yml/badge.svg)](https://github.com/xgfone/go-bt/actions/workflows/go.yml) [![GoDoc](https://pkg.go.dev/badge/github.com/xgfone/go-bt)](https://pkg.go.dev/github.com/xgfone/go-bt) [![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg?style=flat-square)](https://raw.githubusercontent.com/xgfone/go-bt/master/LICENSE)\n\nA pure golang implementation of [BitTorrent](http://bittorrent.org/beps/bep_0000.html) library, which is inspired by [dht](https://github.com/shiyanhui/dht) and [torrent](https://github.com/anacrolix/torrent).\n\n## Install\n\n```shell\n$ go get -u github.com/xgfone/go-bt\n```\n\n## Features\n\n- Support `Go1.11+`.\n- Support IPv4/IPv6.\n- Multi-BEPs implementation.\n- Pure Go implementation without `CGO`.\n- Only library without any denpendencies. For the command tools, see [bttools](https://github.com/xgfone/bttools).\n\n## The Implemented Specifications\n\n- [x] [**BEP 03:** The BitTorrent Protocol Specification](http://bittorrent.org/beps/bep_0003.html)\n- [x] [**BEP 05:** DHT Protocol](http://bittorrent.org/beps/bep_0005.html)\n- [x] [**BEP 06:** Fast Extension](http://bittorrent.org/beps/bep_0006.html)\n- [x] [**BEP 07:** IPv6 Tracker Extension](http://bittorrent.org/beps/bep_0007.html)\n- [x] [**BEP 09:** Extension for Peers to Send Metadata Files](http://bittorrent.org/beps/bep_0009.html)\n- [x] [**BEP 10:** Extension Protocol](http://bittorrent.org/beps/bep_0010.html)\n- [ ] [**BEP 11:** Peer Exchange (PEX)](http://bittorrent.org/beps/bep_0011.html)\n- [x] [**BEP 12:** Multitracker Metadata Extension](http://bittorrent.org/beps/bep_0012.html)\n- [x] [**BEP 15:** UDP Tracker Protocol for BitTorrent](http://bittorrent.org/beps/bep_0015.html)\n- [x] [**BEP 19:** WebSeed - HTTP/FTP Seeding (GetRight style)](http://bittorrent.org/beps/bep_0019.html) (Only `url-list` in metainfo)\n- [x] [**BEP 23:** Tracker Returns Compact Peer Lists](http://bittorrent.org/beps/bep_0023.html)\n- [x] [**BEP 32:** IPv6 extension for DHT](http://bittorrent.org/beps/bep_0032.html)\n- [ ] [**BEP 33:** DHT scrape](http://bittorrent.org/beps/bep_0033.html)\n- [x] [**BEP 41:** UDP Tracker Protocol Extensions](http://bittorrent.org/beps/bep_0041.html)\n- [x] [**BEP 43:** Read-only DHT Nodes](http://bittorrent.org/beps/bep_0043.html)\n- [ ] [**BEP 44:** Storing arbitrary data in the DHT](http://bittorrent.org/beps/bep_0044.html)\n- [x] [**BEP 48:** Tracker Protocol Extension: Scrape](http://bittorrent.org/beps/bep_0048.html)\n\n## Example\n\nSee [godoc](https://pkg.go.dev/github.com/xgfone/go-bt) or [bttools](https://github.com/xgfone/bttools).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fxgfone%2Fgo-bt","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fxgfone%2Fgo-bt","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fxgfone%2Fgo-bt/lists"}