├── .github └── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── .gitignore ├── LICENSE ├── README.md ├── ico └── nyaa.ico ├── main.pyw ├── requirements.txt └── util ├── gui.py ├── nyaa.py └── torrent_parser.py /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcpinet/nyaadownloader/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcpinet/nyaadownloader/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcpinet/nyaadownloader/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcpinet/nyaadownloader/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcpinet/nyaadownloader/HEAD/README.md -------------------------------------------------------------------------------- /ico/nyaa.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcpinet/nyaadownloader/HEAD/ico/nyaa.ico -------------------------------------------------------------------------------- /main.pyw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcpinet/nyaadownloader/HEAD/main.pyw -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcpinet/nyaadownloader/HEAD/requirements.txt -------------------------------------------------------------------------------- /util/gui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcpinet/nyaadownloader/HEAD/util/gui.py -------------------------------------------------------------------------------- /util/nyaa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcpinet/nyaadownloader/HEAD/util/nyaa.py -------------------------------------------------------------------------------- /util/torrent_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcpinet/nyaadownloader/HEAD/util/torrent_parser.py --------------------------------------------------------------------------------