├── .deepsource.toml ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── feature_request.md │ └── other.md └── workflows │ ├── black.yml │ ├── codeql-analysis.yml │ ├── greetings.yml │ └── python-app.yml ├── .gitignore ├── .pre-commit-config.yaml ├── AppleMusicRP.py ├── CODE_OF_CONDUCT.md ├── LICENSE ├── README.md ├── logos ├── icon_dark.svg ├── icon_light.svg ├── logo_lightx1024.png ├── logo_lightx256.png ├── pause_button512.png ├── play_button512.png ├── social-preview.png └── social-preview.psd ├── pyproject.toml ├── screenshots ├── screenshot.png └── screenshot_old.png ├── setup_win.py └── src └── applemusicrp ├── __init__.py ├── __main__.py ├── applemusicrp.py ├── assets ├── icon.ico └── icon.png ├── config.py ├── rpc.py ├── scripts └── getmusicinfo.applescript └── utils.py /.deepsource.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wxllow/applemusicrp/HEAD/.deepsource.toml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wxllow/applemusicrp/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wxllow/applemusicrp/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/other.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wxllow/applemusicrp/HEAD/.github/ISSUE_TEMPLATE/other.md -------------------------------------------------------------------------------- /.github/workflows/black.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wxllow/applemusicrp/HEAD/.github/workflows/black.yml -------------------------------------------------------------------------------- /.github/workflows/codeql-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wxllow/applemusicrp/HEAD/.github/workflows/codeql-analysis.yml -------------------------------------------------------------------------------- /.github/workflows/greetings.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wxllow/applemusicrp/HEAD/.github/workflows/greetings.yml -------------------------------------------------------------------------------- /.github/workflows/python-app.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wxllow/applemusicrp/HEAD/.github/workflows/python-app.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wxllow/applemusicrp/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wxllow/applemusicrp/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /AppleMusicRP.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wxllow/applemusicrp/HEAD/AppleMusicRP.py -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wxllow/applemusicrp/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wxllow/applemusicrp/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wxllow/applemusicrp/HEAD/README.md -------------------------------------------------------------------------------- /logos/icon_dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wxllow/applemusicrp/HEAD/logos/icon_dark.svg -------------------------------------------------------------------------------- /logos/icon_light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wxllow/applemusicrp/HEAD/logos/icon_light.svg -------------------------------------------------------------------------------- /logos/logo_lightx1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wxllow/applemusicrp/HEAD/logos/logo_lightx1024.png -------------------------------------------------------------------------------- /logos/logo_lightx256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wxllow/applemusicrp/HEAD/logos/logo_lightx256.png -------------------------------------------------------------------------------- /logos/pause_button512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wxllow/applemusicrp/HEAD/logos/pause_button512.png -------------------------------------------------------------------------------- /logos/play_button512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wxllow/applemusicrp/HEAD/logos/play_button512.png -------------------------------------------------------------------------------- /logos/social-preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wxllow/applemusicrp/HEAD/logos/social-preview.png -------------------------------------------------------------------------------- /logos/social-preview.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wxllow/applemusicrp/HEAD/logos/social-preview.psd -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wxllow/applemusicrp/HEAD/pyproject.toml -------------------------------------------------------------------------------- /screenshots/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wxllow/applemusicrp/HEAD/screenshots/screenshot.png -------------------------------------------------------------------------------- /screenshots/screenshot_old.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wxllow/applemusicrp/HEAD/screenshots/screenshot_old.png -------------------------------------------------------------------------------- /setup_win.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wxllow/applemusicrp/HEAD/setup_win.py -------------------------------------------------------------------------------- /src/applemusicrp/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/applemusicrp/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wxllow/applemusicrp/HEAD/src/applemusicrp/__main__.py -------------------------------------------------------------------------------- /src/applemusicrp/applemusicrp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wxllow/applemusicrp/HEAD/src/applemusicrp/applemusicrp.py -------------------------------------------------------------------------------- /src/applemusicrp/assets/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wxllow/applemusicrp/HEAD/src/applemusicrp/assets/icon.ico -------------------------------------------------------------------------------- /src/applemusicrp/assets/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wxllow/applemusicrp/HEAD/src/applemusicrp/assets/icon.png -------------------------------------------------------------------------------- /src/applemusicrp/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wxllow/applemusicrp/HEAD/src/applemusicrp/config.py -------------------------------------------------------------------------------- /src/applemusicrp/rpc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wxllow/applemusicrp/HEAD/src/applemusicrp/rpc.py -------------------------------------------------------------------------------- /src/applemusicrp/scripts/getmusicinfo.applescript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wxllow/applemusicrp/HEAD/src/applemusicrp/scripts/getmusicinfo.applescript -------------------------------------------------------------------------------- /src/applemusicrp/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wxllow/applemusicrp/HEAD/src/applemusicrp/utils.py --------------------------------------------------------------------------------