README.md 4.0 KB
Newer Older
Z
Zain 已提交
1 2
# 网易云音乐个性化纠正工具

ZainCheung's avatar
ZainCheung 已提交
3
快速刷单曲播放次数,完整文档见:https://zaincheung.github.io/netease-cloud
Z
Zain 已提交
4 5 6 7

<p align="center">
    <a href="https://github.com/ZainCheung"><img alt="Author" src="https://img.shields.io/badge/author-ZainCheung-blueviolet"/></a>
    <img alt="PHP" src="https://img.shields.io/badge/code-Python-success"/>
ZainCheung's avatar
ZainCheung 已提交
8
    <img src="https://github-visitor-badge.glitch.me/badge?page_id=ZainCheung.netease-cloud-fastplay"/>
Z
Zain 已提交
9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48
</p>



[📷 效果演示](#效果演示)

[🎁 下载地址](#下载地址)

[🔔 注意事项](#注意事项)

[🎨 项目结构](#项目结构)

[👻 免责声明](#免责声明)



------



# 效果演示

使用前可以看到两首歌分别是**92**次和**41**

![使用前](https://s1.ax1x.com/2020/07/08/UZyQv8.png)

使用后两首各自涨了**300**

![使用后](https://s1.ax1x.com/2020/07/08/UZyUCq.png)

有人可能会问上面那个累计播放次数**2218**首没有变化,那是因为总数的累计播放只计算不重复的歌曲。

调用的API地址是(这个API可以自己搭建):

![](https://s1.ax1x.com/2020/07/08/UZ6geg.png)

打开软件填好账号密码(**MD5**)和**API**就可以开始执行任务了

软件的截图是这样

Z
Zain 已提交
49
![](https://s1.ax1x.com/2020/07/11/UloH6P.png)
Z
Zain 已提交
50

Z
Zain 已提交
51
这个歌单的`id``5101628912`,一共有6首歌,播放次数填写为`1000`,点击开始执行后等待几秒钟便可以在软件下方的状态栏看到反馈,这里一共听了6000首。
Z
Zain 已提交
52 53 54

# 下载地址

Z
Zain 已提交
55
软件地址:[https://zaincheung.lanzous.com/i9HD9ehj29g](https://zaincheung.lanzous.com/i9HD9ehj29g)
Z
Zain 已提交
56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132

软件项目地址:[https://github.com/ZainCheung/netease-cloud-fastplay](https://github.com/ZainCheung/netease-cloud-fastplay)

api接口项目地址:[https://github.com/ZainCheung/netease-cloud-api](https://github.com/ZainCheung/netease-cloud-api)

api的Demo演示地址:[https://netease-cloud-api.glitch.me](https://netease-cloud-api.glitch.me)

------



# 注意事项

### 1. API

API最好自己搭建,使用默认的API将会因为使用的人数较多导致**非常慢甚至进不去**,这个软件使用的API依旧是上次的API,只不过项目新增了接口,如果之前你搭建过就不需要重新搭建了,只需要复制项目的`index.php`文件的全部内容,然后粘贴到你的api项目里的`index.php`里面去,重启项目即可。

API项目最新地址:[https://github.com/ZainCheung/netease-cloud-api](https://github.com/ZainCheung/netease-cloud-api)

### 2. 密码

**密码必须自己前往MD5加密网站进行转换!!制作时选择32位小写!!!**

本软件不会将你的原文密码上传到服务器,请放心使用

在线“制作”MD5:[https://tool.chinaz.com/tools/md5.aspx](https://tool.chinaz.com/tools/md5.aspx)

### 3. 听歌次数

注意:播放次数不建议设置太大,可以先设置几十试试。

### 4. 初衷

这款软件的开发初衷是为了帮助使用过网易云音乐自动升级的用户,在系统推送不够精准的情况下进行自我纠正,通过增加某几首歌的播放次数可以告知系统你的听歌偏好,以便系统为你推荐你喜欢的歌单以及歌曲。

### 5. 其他

点击执行任务之前请不要打开或者删除日志文件和配置文件!

------

# 项目结构

```
|-- 项目文件夹
    |-- LICENSE
    |-- README.md
    |-- init.config
    |-- main.py
    |-- ui.py
    |-- api.py
    |-- requirements.txt
    |-- run.log
```

`LICENSE`:开源许可证

`README.md`:项目自述文件

`init.config`:配置文件

`main.py`:主程序

`ui.py`:界面模块

`api.py`:接口模块

`requirements.txt`:依赖清单

`run.log`:运行日志

# 免责声明

本项目的所有脚本、API以及软件仅用于个人学习开发测试,所有`网易云`相关字样版权属于网易公司,勿用于商业及非法用途,如产生法律纠纷与本人无关。

------