Browse Source

Update 'README.md'

天问 1 year ago
parent
commit
5b36efc8da
1 changed files with 16 additions and 1 deletions
  1. 16 1
      README.md

+ 16 - 1
README.md

@@ -1,3 +1,18 @@
 # cloudmusic
 
-网易云音乐下载依赖
+网易云音乐下载依赖
+
+
+## Usage
+```bash
+pip install cloudmusic
+
+music = cloudmusic.getMusic(1347630432)
+
+# 下载播放列表歌曲
+playlist = cloudmusic.getPlaylist(310729011)
+
+for music in playlist:
+    music.download(level = "lossless")
+
+```