Drshu

Results 2 issues of Drshu

Error:`UnicodeDecodeError: 'ascii' codec can't decode byte 0xe8 in position 22: ordinal not in range(128)` 原因就是Python的str默认是ascii编码,和unicode编码冲突 在脚本内加入 ``` reload(sys) sys.setdefaultencoding('utf8') ``` 即可

现在V2的登陆加入了验证码,所以无法继续签到了