-
Notifications
You must be signed in to change notification settings - Fork 0
/
Music Area.py
842 lines (749 loc) · 33.3 KB
/
Music Area.py
1
2
3
4
5
6
7
8
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
49
50
51
52
53
54
55
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
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
# 导入库
import tkinter as tk
from tkinter import ttk
import tkinter.messagebox as msgbox
import tkinter.filedialog as filebox
from PIL import Image, ImageTk
import random
#from tkinter import *
#启动页
def set_wait(state,start=False):#可移植,icon.ico为正方形图标即可
if state:
global root,mask
mask=tk.Toplevel()
mask.overrideredirect(True)
mask.configure(background='#000000')
mask.attributes("-alpha",0.7)
if start:
global img,imgf
mask.configure(background='#FFFFFF')
mask.attributes("-alpha",1)
imgf=Image.open("./icon.ico")
imgr=imgf.resize((256,256))
img=ImageTk.PhotoImage(image=imgr)
mask.geometry(str(root.winfo_width())+'x'+str(root.winfo_height()+30)+'+'+str(root.winfo_x()+10)+'+'+str(root.winfo_y()))
tk.Label(mask,text='',font=('微软雅黑',15),bg='#FFFFFF').pack()
tk.Label(mask,image=img,font=('微软雅黑',30),bg='#FFFFFF').pack(pady=50)
tk.Label(mask,text='正在启动',font=('微软雅黑',15),bg='#FFFFFF').pack()
f=open("./tips.txt",'r',encoding='utf-8')
tips=f.read()
tiplst=tips.split('\n')
tip=tiplst[random.randint(0,len(tiplst)-1)]
tk.Label(mask,text=tip,font=('微软雅黑',13),bg='#FFFFFF',fg='#909090').pack(pady=30)
else:
mask.configure(background='#000050')
mask.attributes("-alpha",1.0)
mask.geometry(str(150)+'x'+str(100)+'+'+str(root.winfo_x()+(root.winfo_width()-150)//2+10)+'+'+str(root.winfo_y()+(root.winfo_height()-100)//2+30))
tk.Label(mask,text='加载中',font=('微软雅黑',30),bg='#000050',fg='#FFFFFF').pack(pady=30)
root.update()
mask.update()
else:
try:
if start:
for i in range(0,10):
mask.attributes("-alpha",(10-i)/10)
time.sleep(0.02)
mask.update()
mask.destroy()
except:
win_print('可忽略错误:在未设置等待时就取消设置等待')
root.update()
root = tk.Tk()
root.title('音乐地带')
#win.iconbitmap("./icon.ico")
root.minsize(600,580)
#root.geometry('400x600')
root.iconbitmap("./icon.ico")
nb=ttk.Notebook(root)
root.update()
set_wait(True,start=True)
#import requests
from pypac import PACSession
#import json
import webbrowser
import os
import threading
from ctypes import *
import datetime,time
import eyed3
from eyed3.id3.frames import ImageFrame
import win32clipboard
requests=PACSession()
def delButton(tree):
x = tree.get_children()
for item in x:
tree.delete(item)
def find_song(word):
global proxies
set_wait(True)
try:
global mids,mnames,gkw
gkw=word
delButton(tree)
#load_full_t=threading.Thread(target=lambda:load_full(word))#放在前面可以尽早覆盖加载全部的进程
res=requests.get(url="https://cloudmusic-api-one.vercel.app/search?keywords="+word)
json=res.json()
mids=[]
mnames=[]
if json['result']=={}:# or json['result']['songCount']==0:
mids.append('5221167')
mnames.append('未找到任何内容')
tree.insert("", 0, text=str(0), values=('1', '未找到任何内容', '不要听这个', '你猜')) # 插入数据
else:
mlst=json['result']['songs']
win_print('共找到 '+str(json['result']['songCount'])+' 条结果,当前显示30条,完整结果在后台加载')
for m in mlst:
mids.append(str(m['id']))
mnames.append(m['name'])
ars=''
try:
for ar in m['artists']:
ars+=ar['name']+' / '
except:
for ar in m['ar']:
ars+=ar['name']+' / '
ars=ars[0:len(ars)-3]
no=str(mlst.index(m)+1)
if int(m['fee'])==1:
no+=' | 试听'
elif int(m['fee'])==4:
no+=' | 付费'
tree.insert("", mlst.index(m), text=str(mlst.index(m)), values=(no, m['name'], ars, m['id'])) # 插入数据
#if len(mids)>=30 and json['result']['hasMore']:
#load_full_t.start()
except Exception as e:
win_print('程序出错,对开发者来说,最有用的东西都在控制台')
print('出错函数:find_song')
print('--------------------')
print('网络信息:')
print('访问链接:'+"https://cloudmusic-api-one.vercel.app/search?keywords="+word)
print('返回数据:'+str(json))
print('--------------------')
print('本地报错信息:')
print(e)
print('--------------------')
print('额外信息:')
print('当前结果数:'+str(len(mids)))
print('====================')
set_wait(False)
def get_fav(usr,pwd):
global proxies
set_wait(True)
delButton(ftree)
try:
global mids,mnames
url="https://cloudmusic-api-one.vercel.app/login?email="+usr+"&password="+pwd
res=requests.get(url)
json=res.json()
cookie=json['cookie']
url="https://cloudmusic-api-one.vercel.app/user/account?cookie="+str(cookie)
res=requests.get(url)
json=res.json()
uid=str(json['account']['id'])
url="https://cloudmusic-api-one.vercel.app/user/playlist?limit=1&uid="+uid
res=requests.get(url)
json=res.json()
favlstid=str(json['playlist'][0]['id'])
url="https://cloudmusic-api-one.vercel.app/playlist/track/all?id="+favlstid+"&cookie="+cookie
res=requests.get(url)
json=res.json()
mids=[]
mnames=[]
mlst=json['songs']
url='N/A'
#收藏音乐信息挨个存列表
for m in mlst:
mids.append(str(m['id']))
mnames.append(m['name'])
ars=''
for ar in m['ar']:
ars+=str(ar['name'])+' / '
ars=ars[0:len(ars)-3]
ftree.insert("", mlst.index(m), text=str(mlst.index(m)), values=(mlst.index(m)+1, m['name'], ars, m['id'])) # 插入数据
except Exception as e:
#输出信息需要把账户密码屏蔽,我并不希望在反馈信息里得到用户的账户密码
if '&password=' in url:
url=url.replace(usr,'[*Username*]').replace(pwd,'[*Password*]')
win_print('程序出错,对开发者来说,最有用的东西都在控制台')
print('出错函数:getfav')
print('--------------------')
print('网络信息:')
print('访问链接:'+url)
print('返回数据:'+str(json))
print('--------------------')
print('本地报错信息:')
print(e)
print('--------------------')
print('额外信息:')
print('当前结果数:'+str(len(mids)))
print('====================')
set_wait(False)
def get_all_style():
global styles,astree,proxies
set_wait(True)
delButton(astree)
res=requests.get("https://cloudmusic-api-one.vercel.app/style/list")
json=res.json()
style_lst=json['data']
thread_list=[]
#遍历父级
for style in style_lst:
#styles[style['enName']+' ('+style['tagName']+')'+' ID:'+str(style['tagId'])]=[]#字典中每个key都是一种风格
lst_parent = astree.insert('', 'end', text=style['enName'],values=(style['tagName'],str(style['tagId'])))
thread_list.append(threading.Thread(target=lambda:show_child_styles(style,lst_parent)))#绝招:多线程加载子分类
thread_list[style_lst.index(style)].start()
win_print('顶级曲风分类加载完毕,更多曲风将在后台加载')
#styles={}
#tree_parent = astree.insert('', 'end', text='所有曲风')
#json2treeview(astree,tree_parent,styles)
set_wait(False)
def get_fav_style(usr,pwd):
global styles,fsstree,proxies
del_button(fstree)
set_wait(True)
url="https://cloudmusic-api-one.vercel.app/login?email="+usr+"&password="+pwd
res=requests.get(url)
json=res.json()
cookie=json['cookie']
res=requests.get("https://cloudmusic-api-one.vercel.app/style/preference?limit=20?cookie="+cookie)
json=res.json()
style_lst=json['data']['tagPreferenceVos']
for style in style_lst:
fstree.insert("", style_lst.index(style), text=str(style_lst.index(style)), values=(str(style_lst.index(style)+1), style['tagName'], str(style['ratio'])+'%', str(style['tagId'])))
set_wait(False)
def show_child_styles(style_lst,parent):
#遍历子风格
for child in style_lst['childrenTags']:
#styles[style['enName']+' ('+style['tagName']+')'+' ID:'+str(style['tagId'])].append(child['enName']+' ('+child['tagName']+')'+' ID:'+str(child['tagId']))#每个value是一个列表,存储子风格
lst_parent=astree.insert(parent, 'end', text=child['enName'],values=(child['tagName'],str(child['tagId'])))
if child['childrenTags']!=None:
show_child_styles(child,lst_parent)
def get_style_music(tagid):
global proxies
set_wait(True)
try:
global mids,mnames,gkw
gkw=tagid
delButton(smtree)
#load_full_t=threading.Thread(target=lambda:load_full(word))#放在前面可以尽早覆盖加载全部的进程
res=requests.get(url="https://cloudmusic-api-one.vercel.app/style/song?tagId="+tagid)
json=res.json()
mids=[]
mnames=[]
if json['data']['songs']==[]:
mids.append('5221167')
mnames.append('未找到任何内容')
tree.insert("", 0, text=str(0), values=('1', '未找到任何内容', '不要听这个', '你猜')) # 插入数据
else:
mlst=json['data']['songs']
for m in mlst:
mids.append(str(m['id']))
mnames.append(m['name'])
ars=''
for ar in m['ar']:
ars+=ar['name']+' / '
ars=ars[0:len(ars)-3]
no=str(mlst.index(m)+1)
if int(m['fee'])==1:
no+=' | 试听'
elif int(m['fee'])==4:
no+=' | 付费'
smtree.insert("", mlst.index(m), text=str(mlst.index(m)), values=(no, m['name'], ars, m['id'])) # 插入数据
#if len(mids)>=30 and json['result']['hasMore']:
#load_full_t.start()
except Exception as e:
win_print('程序出错,对开发者来说,最有用的东西都在控制台')
print('出错函数:get_style_music')
print('--------------------')
print('网络信息:')
print('访问链接:'+"https://cloudmusic-api-one.vercel.app/search?keywords="+tagid)
print('返回数据:'+str(json))
print('--------------------')
print('本地报错信息:')
print(e)
print('--------------------')
print('额外信息:')
print('当前结果数:'+str(len(mids)))
print('====================')
set_wait(False)
def down():
global nb
set_wait(True)
if int(nb.index(nb.select()))==0:#搜索下载
for item in tree.selection():
item_text = tree.item(item, "values")
elif int(nb.index(nb.select()))==1:#收藏下载
for item in ftree.selection():
item_text = ftree.item(item, "values")
elif int(nb.index(nb.select()))==2:#曲风搜歌
if int(swin.index(swin.select()))==2:#该风格的歌曲
for item in smtree.selection():
item_text = smtree.item(item, "values")
else:
msgbox.showerror('本地错误','您不能在本页使用此功能!')
return
else:
msgbox.showerror('本地错误','您不能在本页使用此功能!')
return
select = item_text[0]
select=select.split(' | ')[0]
select=int(select)
# return songmid[select-1], song_singer[select-1]
mid = mids[select - 1]
mname = mnames[select - 1]
res=requests.get(url="https://cloudmusic-api-one.vercel.app/song/url?id="+mid+"&br=320000")#+'&cookie='+cookie)
json=res.json()
murl=json['data'][0]['url']
set_wait(False)
if 'freeTrialInfo' in list(json['data'][0].keys()):
if json['data'][0]['freeTrialInfo']!=None:
freesec=json['data'][0]['freeTrialInfo']['end']-json['data'][0]['freeTrialInfo']['start']
cdown=msgbox.askyesno('请注意','该音乐仅可试听 '+str(freesec)+' 秒,您确定要下载吗?')
if not bool(cdown):
return
save_path = filebox.asksaveasfilename(title='保存音乐', initialfile=mname + ".mp3", filetypes=[('MP3音频文件', '.mp3')])
set_wait(True)
win_print('正在将 {name} 下载到 {path} ......'.format(name=mname, path=save_path))
if murl==None:
msgbox.showerror('错误',mname+' 无版权')
win_print(mname+' 无版权')
else:
res=requests.get(url=murl)
m=res.content
f=open(save_path,'wb')
f.write(m)
f.close()
infres=requests.get(url="https://cloudmusic-api-one.vercel.app/song/detail?ids="+mid)
infjson=infres.json()
inf=infjson['songs'][0]
ars=''
if inf['publishTime']!=0:#如果年份未知,则API返回0,程序会将年份误标为1970,故加上判断
pubyear=datetime.datetime.fromtimestamp(inf['publishTime']/1000.0).strftime('%Y')
else:
pubyear=''
for i in inf['ar']:
ars+=i['name']+';'
ars=ars[0:len(ars)-1]
res=requests.get(inf['al']['picUrl'])
img=res.content
#f=open("./cache.jpg",'wb')
#f.write(img)
#f.close()
if murl==None:
win_print(mname+' 无版权')
msgbox.showerror('音乐无版权',mname+' 无版权,没有音频可供下载')
else:
res=requests.get(url=murl)
m=res.content
#编辑信息
audiofile = eyed3.load(save_path)
audiofile.initTag()
audiofile.tag.title = inf['name']
audiofile.tag.artist = ars
audiofile.tag.album = inf['al']['name']
audiofile.tag.images.set(ImageFrame.FRONT_COVER, img, 'image/jpeg')
audiofile.tag.recording_date = str(pubyear) # 年份
audiofile.tag.save(version=eyed3.id3.ID3_V2_3)
set_wait(False)
def play():
global nb
set_wait(True)
if int(nb.index(nb.select()))==0:#搜索下载
for item in tree.selection():
item_text = tree.item(item, "values")
elif int(nb.index(nb.select()))==1:#收藏下载
for item in ftree.selection():
item_text = ftree.item(item, "values")
elif int(nb.index(nb.select()))==2:#曲风搜歌
if int(swin.index(swin.select()))==2:#该风格的歌曲
for item in smtree.selection():
item_text = smtree.item(item, "values")
else:
msgbox.showerror('本地错误','您不能在本页使用此功能!')
return
else:
msgbox.showerror('本地错误','您不能在本页使用此功能!')
return
select = item_text[0]
select=select.split(' | ')[0]
select=int(select)
# return songmid[select-1], song_singer[select-1]
mid = mids[select - 1]
mname = mnames[select - 1]
save_path = "./cache.mp3"
win_print('将 {name} 下载到 {path} 以试听'.format(name=mname, path=save_path))
res=requests.get(url="https://cloudmusic-api-one.vercel.app/song/url?id="+mid+"&br=320000")#+'&cookie='+cookie)
json=res.json()
murl=json['data'][0]['url']
if murl==None:
msgbox.showerror('错误',mname+' 无版权')
win_print(mname+' 无版权')
else:
res=requests.get(url=murl)
m=res.content
f=open(save_path,'wb')
f.write(m)
f.close()
infres=requests.get(url="https://cloudmusic-api-one.vercel.app/song/detail?ids="+mid)
infjson=infres.json()
inf=infjson['songs'][0]
ars=''
if inf['publishTime']!=0:#如果年份未知,则API返回0,程序会将年份误标为1970,故加上判断
pubyear=datetime.datetime.fromtimestamp(inf['publishTime']/1000.0).strftime('%Y')
else:
pubyear=''
for i in inf['ar']:
ars+=i['name']+';'
ars=ars[0:len(ars)-1]
res=requests.get(inf['al']['picUrl'])
img=res.content
#编辑信息
audiofile = eyed3.load(save_path)
audiofile.initTag()
audiofile.tag.title = inf['name']
if inf['name']=='Never Gonna Give You Up':
audiofile.tag.artist = '这可不能怪我哦'
audiofile.tag.album = '这是你自愿上钩的啊!'
else:
audiofile.tag.artist = ars
audiofile.tag.album = inf['al']['name']
imgf=open("./cache.jpg",'wb') # 封面
imgf.write(img)
imgf.close()
audiofile.tag.recording_date = str(pubyear) # 年份
audiofile.tag.save()
set_wait(False)
win_print('下载完成,启动播放器')
os.popen('ma_player.exe')
def openweb():
global nb
set_wait(True)
if int(nb.index(nb.select()))==0:#搜索下载
for item in tree.selection():
item_text = tree.item(item, "values")
elif int(nb.index(nb.select()))==1:#收藏下载
for item in ftree.selection():
item_text = ftree.item(item, "values")
elif int(nb.index(nb.select()))==2:#曲风搜歌
if int(swin.index(swin.select()))==2:#该风格的歌曲
for item in smtree.selection():
item_text = smtree.item(item, "values")
else:
msgbox.showerror('本地错误','您不能在本页使用此功能!')
return
else:
msgbox.showerror('本地错误','您不能在本页使用此功能!')
return
select = item_text[0]
select=select.split(' | ')[0]
select=int(select)
# return songmid[select-1], song_singer[select-1]
mid = mids[select - 1]
webbrowser.open("https://music.163.com/#/song?id="+mid)
set_wait(False)
def copyid():
global nb
id_index=3
if int(nb.index(nb.select()))==0:#搜索下载
for item in tree.selection():
item_text = tree.item(item, "values")
idtype='歌曲'
elif int(nb.index(nb.select()))==1:#收藏下载
for item in ftree.selection():
item_text = ftree.item(item, "values")
idtype='歌曲'
elif int(nb.index(nb.select()))==2:#曲风搜歌
if int(swin.index(swin.select()))==0:#所有曲风
for item in astree.selection():
item_text = astree.item(item, "values")
id_index=1
idtype='风格'
elif int(swin.index(swin.select()))==1:#曲风偏好
for item in fstree.selection():
item_text = fstree.item(item, "values")
idtype='风格'
elif int(swin.index(swin.select()))==2:#该风格的歌曲
for item in smtree.selection():
item_text = smtree.item(item, "values")
idtype='歌曲'
else:
msgbox.showerror('本地错误','您不能在本页使用此功能!')
return
else:
msgbox.showerror('本地错误','您不能在本页使用此功能!')
return
mid = item_text[id_index]
###
win32clipboard.OpenClipboard()
win32clipboard.EmptyClipboard()
win32clipboard.SetClipboardText(str(mid))
win32clipboard.CloseClipboard()
msgbox.showinfo('复制完成','已将'+str(idtype)+'ID('+str(mid)+')复制到剪切板')
def json2treeview(tree, parent, node):#感谢来自简书的WangLane,原链接https://www.jianshu.com/p/c6aae4d3f80d
"""
Populate tree view by given json object.
:param tree: treeview widget.
:param parent: parent node of treeview.
:param node: node should be a dict object.
:return:
"""
# 如果没有父节点,建立一个父节点
if parent is None:
parent = tree.insert('', 'end', text='Json')
# 由于node一定是dict,直接迭代
for item in node:
value = node.get(item)
if isinstance(value, dict):
cur = tree.insert(parent, 'end', text=str(item), values=(str(value).replace("'", '"'), type(value).__name__))
populate_treeview(tree, cur, value)
elif isinstance(value, list):
cur = tree.insert(parent, 'end', text=item, values=(str(value).replace("'", '"'), type(value).__name__))
for each in value:
if isinstance(each, dict):
tmp = tree.insert(cur, 'end', text='{}')
populate_treeview(tree, tmp, each)
else:
tree.insert(cur, 'end', text=str(each), values=(str(value).replace("'", '"'), type(value).__name__))
elif isinstance(value, int) or isinstance(value, str) or isinstance(value, bool):
# tmp = str(item) + ':' + str(value)
tmp = str(item)
tree.insert(parent, 'end', text=tmp, values=(str(value).replace("'", '"'), type(value).__name__))
def win_print(word):
global consle
console['state']='normal'
console.insert('end', word)
console.insert('end', '\n')
console.see(tk.END)
console['state']='disabled'
win.update()
def compare_ver(ver1, ver2):
"""
传入不带英文的版本号,特殊情况:"10.12.2.6.5">"10.12.2.6"
:param ver1: 版本号1
:param ver2: 版本号2
:return: ver1< = >ver2返回-1/0/1
"""
list1 = str(ver1).split(".")
list2 = str(ver2).split(".")
#print(list1)
#print(list2)
# 循环次数为短的列表的len
for i in range(len(list1)) if len(list1) < len(list2) else range(len(list2)):
if int(list1[i]) == int(list2[i]):
pass
elif int(list1[i]) < int(list2[i]):
return -1
else:
return 1
# 循环结束,哪个列表长哪个版本号高
if len(list1) == len(list2):
return 0
elif len(list1) < len(list2):
return -1
else:
return 1
def chkupd():
#global nowver,newver
#nowver='5.3.3'
#res=requests.get("https://api.github.com/repos/totowang-hhh/music_down/releases/latest", verify=False) #该站SSL无效
#json=res.json()
#print(json)
#newver=json['tag_name'].replace('v','')
#if compare_ver(nowver,newver)==-1:
# return True
#elif compare_ver(nowver,newver)==1:
# msgbox.showwarning('警告','您的版本('+nowver+')大于最新版('+newver+'),若您未征得作者许可,请停止使用内部版本!')
# return False
#else:
# return False
return False
def chkupdui(start=False):
#if chkupd():
# if bool(msgbox.askyesno('版本更新','您的版本('+nowver+')小于最新版('+newver+'),\n这说明有版本更新可用,您需要前往新版下载页吗?')):
# webbrowser.open("http://www.github.com/totowang-hhh/music_down/releases/latest")
#else:
# if not start:
# msgbox.showinfo('恭喜','您正在使用的版本是最新的')
if not start:
msgbox.showinfo('未检查更新','此为最终版本,不再检查更新。\n感谢使用,后会无期!')
btnpt=tk.Frame(root)
ttk.Button(btnpt, text='下载', command=down).pack(fill=tk.X,side=tk.LEFT,expand=True)
ttk.Button(btnpt, text='收听', command=play).pack(fill=tk.X,side=tk.LEFT,expand=True)
ttk.Button(btnpt, text='复制ID', command=copyid).pack(fill=tk.X,side=tk.LEFT,expand=True)
ttk.Button(btnpt, text='在网页中查看', command=openweb).pack(fill=tk.X,side=tk.LEFT,expand=True)
btnpt.pack(fill=tk.X,side=tk.BOTTOM)
#搜索下载
win=tk.Frame(nb)
nb.add(win, text='搜索下载')
searchPart = tk.Frame(win)
ttk.Button(searchPart, text='搜索', command=lambda:find_song(nameEnter.get()), width=12).pack(side=tk.RIGHT, fill=tk.Y)
nameEnter = ttk.Entry(searchPart)
nameEnter.pack(fill=tk.X)
searchPart.pack(fill=tk.BOTH)
nameEnter.bind('<Return>', lambda event:find_song(nameEnter.get()))
tree = ttk.Treeview(win, show="headings") # 表格
tree["columns"] = ("序号", "歌曲", "艺人","歌曲ID")
tree.column("序号", width=10)
tree.column("歌曲", width=100) # 表示列,不显示
tree.column("艺人", width=70)
tree.column("歌曲ID", width=10)
tree.heading("序号", text="序号")
tree.heading("歌曲", text="歌曲") # 显示表头
tree.heading("艺人", text="艺人")
tree.heading("歌曲ID", text="歌曲ID")
tree.pack(fill=tk.BOTH,expand=True)#最后pack,让它充满页面且不出错
#收藏下载
fwin=tk.Frame(nb)
nb.add(fwin, text='收藏下载')
loginPart = tk.Frame(fwin)
ttk.Button(loginPart, text='登录并\n查看收藏', command=lambda:get_fav(usrEnter.get(),pwdEnter.get()), width=12).pack(side=tk.RIGHT, fill=tk.Y)
tippt=tk.Frame(loginPart)
tk.Label(tippt,text='账户 ').pack()
tk.Label(tippt,text='密码 ').pack()
tippt.pack(side=tk.LEFT)
usrEnter = ttk.Entry(loginPart)
usrEnter.pack(fill=tk.X)
pwdEnter = ttk.Entry(loginPart,show='●')
pwdEnter.pack(fill=tk.X)
loginPart.pack(fill=tk.BOTH)
usrEnter.bind('<Return>', lambda event:pwdEnter.focus())
pwdEnter.bind('<Return>', lambda event:get_fav(usrEnter.get(),pwdEnter.get()))
ftree = ttk.Treeview(fwin, show="headings") # 表格
ftree["columns"] = ("序号", "歌曲", "艺人","歌曲ID")
ftree.column("序号", width=10)
ftree.column("歌曲", width=100) # 表示列,不显示
ftree.column("艺人", width=70)
ftree.column("歌曲ID", width=50)
ftree.heading("序号", text="序号")
ftree.heading("歌曲", text="歌曲") # 显示表头
ftree.heading("艺人", text="艺人")
ftree.heading("歌曲ID", text="歌曲ID")
#btnpt=tk.Frame(fwin)
ftree.pack(fill=tk.BOTH,expand=True)#最后pack,让它充满页面且不出错
#曲风搜歌
swin=ttk.Notebook(nb)
nb.add(swin, text='曲风搜歌')
#全部曲风
aswin=tk.Frame(swin)
swin.add(aswin,text='全部曲风')
astree = ttk.Treeview(aswin) #树状图
astree["columns"] = ("译名", "曲风ID")
astree.column("译名", width=100)
astree.column("曲风ID", width=50)
astree.heading("译名", text="译名")
astree.heading("曲风ID", text="曲风ID")
ttk.Button(aswin,text='获取所有曲风',command=get_all_style).pack(side=tk.BOTTOM,fill=tk.X)
astree.pack(fill=tk.BOTH,expand=True)
#曲风偏好
fswin=tk.Frame(swin)
swin.add(fswin,text='曲风偏好')
fsloginPart = tk.Frame(fswin)
ttk.Button(fsloginPart, text='登录并查看\n曲风偏好', command=lambda:get_fav_style(fsusrEnter.get(),fspwdEnter.get()), width=12).pack(side=tk.RIGHT, fill=tk.Y)
fstippt=tk.Frame(fsloginPart)
tk.Label(fstippt,text='账户 ').pack()
tk.Label(fstippt,text='密码 ').pack()
fstippt.pack(side=tk.LEFT)
fsusrEnter = ttk.Entry(fsloginPart)
fsusrEnter.pack(fill=tk.X)
fspwdEnter = ttk.Entry(fsloginPart,show='●')
fspwdEnter.pack(fill=tk.X)
fsloginPart.pack(fill=tk.BOTH)
fsusrEnter.bind('<Return>', lambda event:fspwdEnter.focus())
fspwdEnter.bind('<Return>', lambda event:get_fav_style(fsusrEnter.get(),fspwdEnter.get()))
tk.Label(fswin,text='理论上每次获取的数据不同,实际上会因为API缓存,再一段时间(2分钟)内获取到相同数据',fg='#0000FF').pack(fill=tk.X)
fstree = ttk.Treeview(fswin, show="headings") # 表格
fstree["columns"] = ("序号", "名称", "收听百分比","曲风ID")
fstree.column("序号", width=10)
fstree.column("名称", width=100) # 表示列,不显示
fstree.column("收听百分比", width=70)
fstree.column("曲风ID", width=50)
fstree.heading("序号", text="序号")
fstree.heading("名称", text="名称") # 显示表头
fstree.heading("收听百分比", text="收听百分比")
fstree.heading("曲风ID", text="曲风ID")
fstree.pack(fill=tk.BOTH,expand=True)
#该曲风的音乐
smwin=tk.Frame(swin)
swin.add(smwin, text='该曲风的音乐')
smsearchPart = tk.Frame(smwin)
ttk.Label(smsearchPart, text='曲风ID').pack(side=tk.LEFT, fill=tk.Y)
ttk.Button(smsearchPart, text='获取该曲风的歌曲', command=lambda:get_style_music(smnameEnter.get())).pack(side=tk.RIGHT, fill=tk.Y)
smnameEnter = ttk.Entry(smsearchPart)
smnameEnter.pack(fill=tk.X)
smsearchPart.pack(fill=tk.BOTH)
smnameEnter.bind('<Return>', lambda event:get_style_music(smnameEnter.get()))
smtree = ttk.Treeview(smwin, show="headings") # 表格
smtree["columns"] = ("序号", "歌曲", "艺人","歌曲ID")
smtree.column("序号", width=10)
smtree.column("歌曲", width=100) # 表示列,不显示
smtree.column("艺人", width=70)
smtree.column("歌曲ID", width=10)
smtree.heading("序号", text="序号")
smtree.heading("歌曲", text="歌曲") # 显示表头
smtree.heading("艺人", text="艺人")
smtree.heading("歌曲ID", text="歌曲ID")
smtree.pack(fill=tk.BOTH,expand=True)
#控制台
console = tk.Text(nb,font=('consolas', '10'),height=10)
nb.add(console, text='友好输出')
#告别
froot=tk.Frame(nb)
#tk.Label(froot,text='',font=('微软雅黑',20)).pack()
tk.Label(froot,text='此为最终续命版本',font=('微软雅黑',15,'bold')).pack()
#tk.Label(froot,text='').pack()
tk.Label(froot,text='我的个人精力有限,无法再继续完善此项目').pack()
tk.Label(froot,text='').pack()
tk.Label(froot,text='这个项目的原理尚且可行,所以我对其稍加修复,').pack()
tk.Label(froot,text='基于当前最稳定的5.3.3制作了这个最终续命版本。').pack()
tk.Label(froot,text='您可以继续使用该版本,直到NeteaseCloudmusicAPI的终点。').pack()
tk.Label(froot,text='').pack()
tk.Label(froot,text='该版本将会访问Vercel上的API,请自备可用的网络环境!').pack()
tk.Label(froot,text='该版本可以使用系统代理!这是我为续命做的最后努力。').pack()
tk.Label(froot,text='').pack()
tk.Label(froot,text='任何其他问题,仍然可以问我!').pack()
ttk.Button(froot,text='通过电子邮件联系我',command=lambda:webbrowser.open("mailto:[email protected]")).pack()
tk.Label(froot,text='').pack()
tk.Label(froot,text='我仍然会继续做一些有趣的作品').pack()
tk.Label(froot,text='您可以关注我GitHub上的其他项目').pack()
ttk.Button(froot,text='我的GitHub',command=lambda:webbrowser.open("https://github.xom/totowang-hhh/")).pack()
tk.Label(froot,text='').pack()
tk.Label(froot,text='感谢您的使用,再见!').pack()
tk.Label(froot,text='').pack()
tk.Label(froot,text='—— 真_人工智障 / rgzz666',anchor='e').pack(fill=tk.X,padx=50)
tk.Label(froot,text='2024/02/13',anchor='e').pack(fill=tk.X,padx=50)
nb.add(froot, text='告别')
#关于
aroot=tk.Frame(nb)
awin=tk.Frame(aroot,width=400,height=500)
awin.pack()
nb.add(aroot, text='关于')
#tk.Label(awin,text='',font=('微软雅黑',15)).pack(padx=25)
tk.Label(awin,text='音乐地带',font=('微软雅黑',25)).pack(padx=25,pady=5)
tk.Button(awin,text='版本:5.3.3.fix 配套播放器:0.1.1',bd=0,command=chkupdui).pack(padx=25)
tk.Label(awin,text='2024 By 真_人工智障').pack(padx=25)
tk.Label(awin,text='— 最终版本 · 后会无期 —').pack(padx=25)
ttk.Button(awin, text='我的官网', command=lambda: webbrowser.open("http://rgzz.great-site.net/")).pack(padx=25,pady=5)
ttk.Button(awin, text='项目GitHub', command=lambda: webbrowser.open("https://github.com/totowang-hhh/music_down/")).pack(padx=25,pady=5)
ttk.Separator(awin).pack(fill=tk.X,padx=50,pady=10)
tk.Label(awin,text='鸣谢',font=('微软雅黑',15)).pack(padx=25,pady=5)
tk.Button(awin,text='Vercel — API部署',bd=0,command=lambda:webbrowser.open("https://www.vercel.com")).pack(padx=25)
tk.Button(awin,text='Heymu — 播放器',bd=0,command=lambda:webbrowser.open("https://teameow.xyz/")).pack(padx=25)
#tk.Button(awin,text='AXIOMXS — 二级域名',bd=0,command=lambda:msgbox.showinfo('关于他','AXIOMXS,官网已删,网名频繁修改\n为尊重隐私,故不提供联系方式')).pack(padx=25)
tk.Button(awin,text='网易云音乐 NodeJS 版 API — 一切之本',bd=0,command=lambda:webbrowser.open("https://github.com/Binaryify/NeteaseCloudMusicApi")).pack(padx=25)
tk.Label(awin,text='· 以及每一位用户 ·',font=('微软雅黑',12,'bold')).pack(padx=25)
ttk.Separator(awin).pack(fill=tk.X,padx=50,pady=10)
tk.Label(aroot,text='声明',font=('微软雅黑',15)).pack(padx=25,pady=5)
tk.Label(aroot,text='请勿将任何下载的音乐用于商业用途,出现任何版权问题作者概不负责',fg='#FF0000').pack()
tk.Label(aroot,text='作者承诺软件无强制性收费且开源,若您为购买所得,请立即向平台或作者举报!',fg='#FF0000').pack()
#win.pack(fill=tk.BOTH)
nb.pack(fill=tk.BOTH,expand=True)
win_print('程序启动完成')
#print(nb.index(nb.select()))
time.sleep(1)
set_wait(False,start=True)
#chkupdui(start=True)
#win_print("Your proxies:\n"+str(proxies))
win_print("最终续命版本,请自行准备能够使用Vercel的网络环境")
win_print("我们后会无期!")
win.mainloop()
# def down():