├── .gitignore ├── LICENSE ├── README.md ├── README.zh.md ├── _db └── reseed.sql ├── app.py ├── config ├── __init__.py └── config.py ├── models ├── __init__.py └── user.py ├── requirements.txt ├── scripts ├── 6v.py ├── README.md └── reseed.py ├── utils ├── __init__.py ├── database.py ├── sites │ ├── __init__.py │ ├── hdchina.py │ ├── ourbits.py │ └── tjupt.py └── torrent_compare.py ├── uwsgi └── uwsgi.example.ini └── views ├── __init__.py ├── plugin.py ├── reseed.py └── user.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tongyifan/Reseed-backend/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tongyifan/Reseed-backend/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tongyifan/Reseed-backend/HEAD/README.md -------------------------------------------------------------------------------- /README.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tongyifan/Reseed-backend/HEAD/README.zh.md -------------------------------------------------------------------------------- /_db/reseed.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tongyifan/Reseed-backend/HEAD/_db/reseed.sql -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tongyifan/Reseed-backend/HEAD/app.py -------------------------------------------------------------------------------- /config/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /config/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tongyifan/Reseed-backend/HEAD/config/config.py -------------------------------------------------------------------------------- /models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /models/user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tongyifan/Reseed-backend/HEAD/models/user.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tongyifan/Reseed-backend/HEAD/requirements.txt -------------------------------------------------------------------------------- /scripts/6v.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tongyifan/Reseed-backend/HEAD/scripts/6v.py -------------------------------------------------------------------------------- /scripts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tongyifan/Reseed-backend/HEAD/scripts/README.md -------------------------------------------------------------------------------- /scripts/reseed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tongyifan/Reseed-backend/HEAD/scripts/reseed.py -------------------------------------------------------------------------------- /utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tongyifan/Reseed-backend/HEAD/utils/__init__.py -------------------------------------------------------------------------------- /utils/database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tongyifan/Reseed-backend/HEAD/utils/database.py -------------------------------------------------------------------------------- /utils/sites/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tongyifan/Reseed-backend/HEAD/utils/sites/__init__.py -------------------------------------------------------------------------------- /utils/sites/hdchina.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tongyifan/Reseed-backend/HEAD/utils/sites/hdchina.py -------------------------------------------------------------------------------- /utils/sites/ourbits.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tongyifan/Reseed-backend/HEAD/utils/sites/ourbits.py -------------------------------------------------------------------------------- /utils/sites/tjupt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tongyifan/Reseed-backend/HEAD/utils/sites/tjupt.py -------------------------------------------------------------------------------- /utils/torrent_compare.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tongyifan/Reseed-backend/HEAD/utils/torrent_compare.py -------------------------------------------------------------------------------- /uwsgi/uwsgi.example.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tongyifan/Reseed-backend/HEAD/uwsgi/uwsgi.example.ini -------------------------------------------------------------------------------- /views/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tongyifan/Reseed-backend/HEAD/views/__init__.py -------------------------------------------------------------------------------- /views/plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tongyifan/Reseed-backend/HEAD/views/plugin.py -------------------------------------------------------------------------------- /views/reseed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tongyifan/Reseed-backend/HEAD/views/reseed.py -------------------------------------------------------------------------------- /views/user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tongyifan/Reseed-backend/HEAD/views/user.py --------------------------------------------------------------------------------