使用Python编写的豆瓣FM命令行播放器
尚在开发中。
- Linux/Mac OS X
- Python 3.4
只在Mac OS X和Linux Mint 14(Ubuntu 12.10)环境上进行了测试。大部分Unix/Linux上应该都能够正常工作。
pip3 install requests
pip3 install urwid
# on Linux with apt-get
sudo apt-get install mpg123
# on Mac OS X with Homebrew
brew install mpg123
config.json
{
"email": 豆瓣用户名,
"password": 豆瓣密码,
"last_fm_username": Last.fm用户名,
"last_fm_password": Last.fm密码
}
python3 pyfm.py
本项目主要参考了以下几个项目
- https://github.com/josephok/doubanfm
- https://github.com/zonyitoo/doubanfm-qt
- https://github.com/turingou/douban.fm
- http://hg.user1.be/ScrobblerPlugin/
感谢以上项目的作者,开源万岁!
The MIT License