├── .gitignore ├── Change Log.md ├── LICENSE.txt ├── NEMbox ├── __init__.py ├── api.py ├── cache.py ├── config.py ├── const.py ├── logger.py ├── menu.py ├── osdlyrics.py ├── player.py ├── scrollstring.py ├── singleton.py ├── storage.py ├── terminalsize.py ├── ui.py └── utils.py ├── README.md ├── requirements.txt └── setup.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaphone/musicbox/HEAD/.gitignore -------------------------------------------------------------------------------- /Change Log.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaphone/musicbox/HEAD/Change Log.md -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaphone/musicbox/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /NEMbox/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaphone/musicbox/HEAD/NEMbox/__init__.py -------------------------------------------------------------------------------- /NEMbox/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaphone/musicbox/HEAD/NEMbox/api.py -------------------------------------------------------------------------------- /NEMbox/cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaphone/musicbox/HEAD/NEMbox/cache.py -------------------------------------------------------------------------------- /NEMbox/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaphone/musicbox/HEAD/NEMbox/config.py -------------------------------------------------------------------------------- /NEMbox/const.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaphone/musicbox/HEAD/NEMbox/const.py -------------------------------------------------------------------------------- /NEMbox/logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaphone/musicbox/HEAD/NEMbox/logger.py -------------------------------------------------------------------------------- /NEMbox/menu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaphone/musicbox/HEAD/NEMbox/menu.py -------------------------------------------------------------------------------- /NEMbox/osdlyrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaphone/musicbox/HEAD/NEMbox/osdlyrics.py -------------------------------------------------------------------------------- /NEMbox/player.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaphone/musicbox/HEAD/NEMbox/player.py -------------------------------------------------------------------------------- /NEMbox/scrollstring.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaphone/musicbox/HEAD/NEMbox/scrollstring.py -------------------------------------------------------------------------------- /NEMbox/singleton.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaphone/musicbox/HEAD/NEMbox/singleton.py -------------------------------------------------------------------------------- /NEMbox/storage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaphone/musicbox/HEAD/NEMbox/storage.py -------------------------------------------------------------------------------- /NEMbox/terminalsize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaphone/musicbox/HEAD/NEMbox/terminalsize.py -------------------------------------------------------------------------------- /NEMbox/ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaphone/musicbox/HEAD/NEMbox/ui.py -------------------------------------------------------------------------------- /NEMbox/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaphone/musicbox/HEAD/NEMbox/utils.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaphone/musicbox/HEAD/README.md -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaphone/musicbox/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yaphone/musicbox/HEAD/setup.py --------------------------------------------------------------------------------