├── .github └── workflows │ └── mirror.yml ├── .gitignore ├── CODE_OF_CONDUCT.md ├── LICENSE ├── README.md └── assets ├── CN.svg ├── PT站点汇总.png ├── deluge.svg ├── flood.svg ├── oss.svg ├── qbittorrent.svg ├── rtorrent.svg ├── rutorrent.svg ├── transmission.svg └── utorrent.svg /.github/workflows/mirror.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabersalv/awesome-pt/HEAD/.github/workflows/mirror.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | website 3 | -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabersalv/awesome-pt/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabersalv/awesome-pt/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabersalv/awesome-pt/HEAD/README.md -------------------------------------------------------------------------------- /assets/CN.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabersalv/awesome-pt/HEAD/assets/CN.svg -------------------------------------------------------------------------------- /assets/PT站点汇总.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabersalv/awesome-pt/HEAD/assets/PT站点汇总.png -------------------------------------------------------------------------------- /assets/deluge.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabersalv/awesome-pt/HEAD/assets/deluge.svg -------------------------------------------------------------------------------- /assets/flood.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabersalv/awesome-pt/HEAD/assets/flood.svg -------------------------------------------------------------------------------- /assets/oss.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabersalv/awesome-pt/HEAD/assets/oss.svg -------------------------------------------------------------------------------- /assets/qbittorrent.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabersalv/awesome-pt/HEAD/assets/qbittorrent.svg -------------------------------------------------------------------------------- /assets/rtorrent.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabersalv/awesome-pt/HEAD/assets/rtorrent.svg -------------------------------------------------------------------------------- /assets/rutorrent.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabersalv/awesome-pt/HEAD/assets/rutorrent.svg -------------------------------------------------------------------------------- /assets/transmission.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabersalv/awesome-pt/HEAD/assets/transmission.svg -------------------------------------------------------------------------------- /assets/utorrent.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sabersalv/awesome-pt/HEAD/assets/utorrent.svg --------------------------------------------------------------------------------