├── .gitignore ├── LICENSE ├── README.md ├── app.py ├── docs ├── .nojekyll ├── README.md ├── _coverpage.md └── index.html ├── hook ├── __init__.py └── before_request.py ├── music ├── __init__.py ├── extions.py └── setting.py ├── package.n ├── public └── index.html ├── routes ├── __init__.py ├── migu │ ├── __init__.py │ ├── index.py │ ├── lyric.py │ ├── playlist.py │ ├── search.py │ ├── singer.py │ ├── song.py │ └── top.py └── qq │ ├── __init__.py │ ├── cookie.py │ ├── index.py │ ├── lyric.py │ ├── search.py │ ├── song.py │ └── top.py └── util ├── __init__.py ├── migu_request.py └── qq_request.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHub-ZC/W_PlatformMusicApi/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHub-ZC/W_PlatformMusicApi/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHub-ZC/W_PlatformMusicApi/HEAD/README.md -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHub-ZC/W_PlatformMusicApi/HEAD/app.py -------------------------------------------------------------------------------- /docs/.nojekyll: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHub-ZC/W_PlatformMusicApi/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/_coverpage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHub-ZC/W_PlatformMusicApi/HEAD/docs/_coverpage.md -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHub-ZC/W_PlatformMusicApi/HEAD/docs/index.html -------------------------------------------------------------------------------- /hook/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hook/before_request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHub-ZC/W_PlatformMusicApi/HEAD/hook/before_request.py -------------------------------------------------------------------------------- /music/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHub-ZC/W_PlatformMusicApi/HEAD/music/__init__.py -------------------------------------------------------------------------------- /music/extions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHub-ZC/W_PlatformMusicApi/HEAD/music/extions.py -------------------------------------------------------------------------------- /music/setting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHub-ZC/W_PlatformMusicApi/HEAD/music/setting.py -------------------------------------------------------------------------------- /package.n: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHub-ZC/W_PlatformMusicApi/HEAD/package.n -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHub-ZC/W_PlatformMusicApi/HEAD/public/index.html -------------------------------------------------------------------------------- /routes/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHub-ZC/W_PlatformMusicApi/HEAD/routes/__init__.py -------------------------------------------------------------------------------- /routes/migu/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHub-ZC/W_PlatformMusicApi/HEAD/routes/migu/__init__.py -------------------------------------------------------------------------------- /routes/migu/index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHub-ZC/W_PlatformMusicApi/HEAD/routes/migu/index.py -------------------------------------------------------------------------------- /routes/migu/lyric.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHub-ZC/W_PlatformMusicApi/HEAD/routes/migu/lyric.py -------------------------------------------------------------------------------- /routes/migu/playlist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHub-ZC/W_PlatformMusicApi/HEAD/routes/migu/playlist.py -------------------------------------------------------------------------------- /routes/migu/search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHub-ZC/W_PlatformMusicApi/HEAD/routes/migu/search.py -------------------------------------------------------------------------------- /routes/migu/singer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHub-ZC/W_PlatformMusicApi/HEAD/routes/migu/singer.py -------------------------------------------------------------------------------- /routes/migu/song.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHub-ZC/W_PlatformMusicApi/HEAD/routes/migu/song.py -------------------------------------------------------------------------------- /routes/migu/top.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHub-ZC/W_PlatformMusicApi/HEAD/routes/migu/top.py -------------------------------------------------------------------------------- /routes/qq/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHub-ZC/W_PlatformMusicApi/HEAD/routes/qq/__init__.py -------------------------------------------------------------------------------- /routes/qq/cookie.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHub-ZC/W_PlatformMusicApi/HEAD/routes/qq/cookie.py -------------------------------------------------------------------------------- /routes/qq/index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHub-ZC/W_PlatformMusicApi/HEAD/routes/qq/index.py -------------------------------------------------------------------------------- /routes/qq/lyric.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHub-ZC/W_PlatformMusicApi/HEAD/routes/qq/lyric.py -------------------------------------------------------------------------------- /routes/qq/search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHub-ZC/W_PlatformMusicApi/HEAD/routes/qq/search.py -------------------------------------------------------------------------------- /routes/qq/song.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHub-ZC/W_PlatformMusicApi/HEAD/routes/qq/song.py -------------------------------------------------------------------------------- /routes/qq/top.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHub-ZC/W_PlatformMusicApi/HEAD/routes/qq/top.py -------------------------------------------------------------------------------- /util/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /util/migu_request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHub-ZC/W_PlatformMusicApi/HEAD/util/migu_request.py -------------------------------------------------------------------------------- /util/qq_request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitHub-ZC/W_PlatformMusicApi/HEAD/util/qq_request.py --------------------------------------------------------------------------------