-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsrc.py
298 lines (275 loc) · 11.3 KB
/
src.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
import spotipy
import vk_api
from spotipy.oauth2 import SpotifyClientCredentials
from vk_api.audio import VkAudio
import collections
from collections import OrderedDict
from math import floor
import json
vkDump = False
FastSearch = True
cid = ''
secret = ''
redirect = ''
vkNumber = ''
vkPass = ''
def transliterate(name):
slovar = {'а':'a','б':'b','в':'v','г':'g','д':'d','е':'e','ё':'e',
'ж':'ge','з':'z','и':'i','й':'i','к':'k','л':'l','м':'m','н':'n',
'о':'o','п':'p','р':'r','с':'s','т':'t','у':'u','ф':'f','х':'h',
'ц':'c','ч':'cz','ш':'sh','щ':'sch','ъ':'','ы':'y','ь':'','э':'e',
'ю':'u','я':'ya', 'А':'A','Б':'B','В':'V','Г':'G','Д':'D','Е':'E','Ё':'E',
'Ж':'ge','З':'Z','И':'I','Й':'I','К':'K','Л':'L','М':'M','Н':'N',
'О':'O','П':'P','Р':'R','С':'S','Т':'T','У':'U','Ф':'F','Х':'H',
'Ц':'C','Ч':'CZ','Ш':'SH','Щ':'SCH','Ъ':'','Ы':'y','Ь':'','Э':'E',
'Ю':'U','Я':'YA',',':'','?':'?',' ':' ','~':'','!':'!','@':'','#':'',
'$':'','%':'','^':'','&':'','*':'','(':'(',')':')','-':'','=':'','+':'',
':':'',';':'','<':'','>':'','\'':'','"':'','\\':'','/':'','№':'',
'[':'',']':'','{':'','}':'','ґ':'','ї':'', 'є':'','Ґ':'g','Ї':'i',
'Є':'e', '—':''}
for key in slovar:
name = name.replace(key, slovar[key])
return name
class bcolors:
INFO = '\033[5;37;40m'
OKBLUE = '\033[94m'
OKGREEN = '\033[92m'
WARNING = '\033[0;31;40m'
FAIL = '\033[91m'
ENDC = '\033[0m'
BOLD = '\033[1m'
HEADER = '\033[0;34;40m'
def auth_handler():
key = input("Enter authentication code: ")
remember_device = True
return key, remember_device
def divide_chunks(l, n):
for i in range(0, len(l), n):
yield l[i:i + n]
def just_search():
return 0
def search_by_artist(sp, artistUri):
res = sp.artist_albums(artistUri, limit=50)
albums = []
for i in res['items']:
albums.append(i['uri'])
print(bcolors.INFO + 'Find ' + str(len(albums)) + ' albums' + bcolors.ENDC)
tr = []
k = 0
for i in albums:
offset = 0
trackss = sp.album_tracks(i, limit=50, offset=offset)
for t in trackss['items']:
d = {'Name': t['name'],
'Uri': t['uri']}
tr.append(d)
offset += len(trackss['items'])
while trackss['total'] > offset:
trackss = sp.album_tracks(i, limit=50, offset=offset)
offset += len(trackss['items'])
for t in trackss['items']:
d = {'Name': t['name'],
'Uri': t['uri']}
tr.append(d)
print(bcolors.INFO + 'Find ' + str(len(tr)) + ' tracks' + bcolors.ENDC)
return tr
def slow_search(sp):
spCount = 0
count = 0
skip = 0
uris = []
cha = []
cha2 = json.load(open("vk2spotify_cash.txt", 'r', encoding='utf-8'))
with open("vktracks.txt", "r", encoding='utf-8') as f:
lines = f.readlines()
for line in lines:
count += 1
x = line.split('|')
if(len(x) < 2):
skip += 1
continue
artist = x[0]
title = x[1].replace('\n', '')
print('\n' + bcolors.HEADER + 'Start search for ' +
artist + ' ' + title + bcolors.ENDC)
foundArtist = False
tracks = []
title = title.lower().replace(' ', '')
if cha2:
for c in cha2:
if c['Artist'] == artist:
foundArtist = True
tracks = c['tracks']
print(bcolors.BOLD + 'Static chache hint!' + bcolors.ENDC)
break
if cha and not foundArtist:
for c in cha:
if c['Artist'] == artist:
foundArtist = True
tracks = c['tracks']
print(bcolors.BOLD + 'Runtime chache hint!' + bcolors.ENDC)
break
if not foundArtist:
res = sp.search(artist, type='artist', limit=50)
ArtistFound = False
print(bcolors.INFO + 'Found ' + str(res['artists']['total']) + ' similar ones for the ' + artist + bcolors.ENDC)
alte = transliterate(artist).lower().replace(' ', '')
name2 = artist.lower().replace(' ', '')
for art in res['artists']['items']:
name1=art['name'].lower().replace(' ', '')
if name1 == name2 or name1 == alte:
ArtistFound = True
print(bcolors.INFO + art['name'] + ' fit the best' + bcolors.ENDC)
print(bcolors.BOLD + 'Start build the chache' + bcolors.ENDC)
tracks = search_by_artist(sp, art['uri'])
cha.append({'Artist': artist, 'tracks': tracks})
break
if not ArtistFound:print(bcolors.FAIL + 'artist: ' +artist + ' not found' + bcolors.ENDC)
foundTrack = False
for t in tracks:
name1 = t['Name'].lower().replace(' ', '')
if title.find(name1) >= 0 or name1.find(title) >= 0:
#if name1 == title:
foundTrack = True
spCount += 1
uris.append(t['Uri'])
break
if(not foundTrack):
print(bcolors.FAIL + artist + ' ' +
title + ' not found' + bcolors.ENDC)
else:
print(bcolors.OKGREEN + artist + ' ' + title +
' found!, title: ' + t['Name'] + ', uri: ' + t['Uri'] + bcolors.ENDC)
print('\n' + bcolors.OKBLUE + 'accuracy: ' + str((spCount / count) * 100) + ' the number of missed: ' + str(skip) + bcolors.ENDC)
chache = open("vk2spotify_cash.txt", "w", encoding='utf-8')
cha2 += cha
chache.write(json.dumps(cha2, ensure_ascii=False, indent=2))
return uris
def fast_search(sp):
spCount = 0
count = 0
skip = 0
uris = []
with open("vktracks.txt", "r", encoding='utf-8') as f:
lines = f.readlines()
for line in lines:
count += 1
x = line.split('|')
if(len(x) < 2):
skip += 1
continue
artist = x[0]
title = x[1].replace('\n', '')
print('\n' + bcolors.HEADER + 'Start search for ' +
artist + ' ' + title + bcolors.ENDC)
res = sp.search(artist + ' ' + title, type='track', limit=40)
found = False
for t in res['tracks']['items']:
str1 = title.lower().replace(' ', '')
str2 = t['name'].lower().replace(' ', '')
str3 = artist.lower().replace(' ', '')
str4 = t['artists'][0]['name'].lower().replace(' ', '')
if(str3.find(str4) >= 0 or str4.find(str3) >= 0):
if(str2.find(str1) >= 0 or str1.find(str2) >= 0):
found = True
spCount += 1
uris.append(t['uri'])
break
if(not found):
print(bcolors.FAIL + artist + ' ' +
title + ' not found' + bcolors.ENDC)
else:
print(bcolors.OKGREEN + artist + ' ' + title +
' found!, track uri: ' + t['uri'] + bcolors.ENDC)
print('\n' + bcolors.OKBLUE + 'accuracy: ' + str((spCount / count) * 100) + ' the number of missed: ' + str(skip) + bcolors.ENDC)
return uris
def chunks(l, n):
for i in range(0, len(l), n):
yield l[i:i+n]
def add_track_2_spotify(sp, retrieved, playlistUri):
if retrieved:
user_id = sp.me()['id']
chanks = list(chunks(retrieved, 60))
#chanks = [retrieved[i::chankSize] for i in range(chankSize)]
print('\n' + bcolors.INFO + 'Chanks count: ' +
str(len(chanks)) + bcolors.ENDC)
count = 0
for rn in chanks:
print(bcolors.INFO +'Chank[' + str(count) + '] added to playlist' + bcolors.ENDC)
sp.user_playlist_add_tracks(user_id, playlistUri, rn)
count += 1
def get_vk_mus():
vk_session = vk_api.VkApi(vkNumber, vkPass, auth_handler=auth_handler)
vk_session.auth()
vk = vk_session.get_api()
vkaudio = VkAudio(vk_session)
with open("vktracks.txt", "w", encoding='utf-8') as f:
for track in vkaudio.get():
print(track['artist'] + '|' + track['title'] + "\n")
f.write(track['artist'] + '|' + track['title'] + "\n")
def sp_auth():
oauth = spotipy.SpotifyOAuth(
client_id=cid, client_secret=secret, redirect_uri=redirect, cache_path='.spotify-cache',
scope="playlist-modify-private user-library-modify user-library-read playlist-modify-public"
)
return spotipy.Spotify(auth_manager=oauth)
def sp_build_playlist(sp):
user_id = sp.me()['id']
results = sp.current_user_playlists(limit=50)
findVkMus = False
playlistUri = ""
for i, item in enumerate(results['items']):
if item['name'] == 'VkMusic':
findVkMus = True
print(bcolors.INFO +
'The vkMusic playlist has already been created' + bcolors.ENDC)
playlistUri = item['uri']
break
if not findVkMus:
print(bcolors.INFO + 'Created a vkMusic playlist' + bcolors.ENDC)
res = sp.user_playlist_create(user_id, name='VkMusic')
playlistUri = res['uri']
return playlistUri, False
def delete_simular_tracks(sp, retrieved, p_uri):
print(bcolors.INFO + 'Getting tracks from the playlist' + bcolors.ENDC)
tracks = []
offset = 0
resp = sp.playlist_tracks(p_uri,
offset=offset,
fields='items.track.uri,total',
limit=100
)
offset += len(resp['items'])
total = resp['total']
for t in resp['items']:
tracks.append(t['track']['uri'])
while total > offset:
resp = sp.playlist_tracks(
p_uri, offset=offset, fields='items.track.uri,total', limit=100)
offset += len(resp['items'])
for t in resp['items']:
tracks.append(t['track']['uri'])
print(bcolors.INFO + 'Received ' +
str(len(tracks)) + ' tracks' + bcolors.ENDC)
listOfTracks = list(set(retrieved).difference(tracks))
print(bcolors.INFO + 'Removed ' + str(len(retrieved) - len(listOfTracks)) + ' similar tracks' + bcolors.ENDC)
return listOfTracks
def main():
if(vkDump):
get_vk_mus()
sp = sp_auth()
uris = []
if FastSearch:
uris = fast_search(sp)
else:
uris = slow_search(sp)
print('------------------------------------------------------------------------------\n')
retrieved = list(OrderedDict.fromkeys(uris))
print(bcolors.HEADER + 'Adding music to spotify, number of tracks: ' + str(len(retrieved)) + bcolors.ENDC)
playlistUri, playlistFound = sp_build_playlist(sp)
if not playlistFound:
listOfTracks = delete_simular_tracks(sp, retrieved, playlistUri)
add_track_2_spotify(sp, listOfTracks, playlistUri)
else: add_track_2_spotify(sp, retrieved, playlistUri)
if __name__ == "__main__":
main()