This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <tr valign=top class=><td align=right class=note >4338</td><td > <a href="https://embed.spotify.com/?uri=spotify:playlist:59TVx2MmmBfg0BqRc7CvqM" class=note target=spotify title="See this playlist" onclick="linksync('https://embed.spotify.com/?uri=spotify:playlist:59TVx2MmmBfg0BqRc7CvqM');">☊</a></td><td class=note ><a href="?root=ugandan%20traditional&scope=all" title="Re-sort the list starting from here." style="color: #668C2F">ugandan traditional</a></td></tr> | |
| <tr valign=top class=><td align=right class=note >4339</td><td > <a href="https://embed.spotify.com/?uri=spotify:playlist:6PJCol5gHpuhFsPNKBsbuD" class=note target=spotify title="See this playlist" onclick="linksync('https://embed.spotify.com/?uri=spotify:playlist:6PJCol5gHpuhFsPNKBsbuD');">☊</a></td><td class=note ><a href="?root=trallalero&scope=all" title="Re-sort the list starting from here." style="color: #4F8B07">trallalero</a></td></tr> | |
| <tr valign=top class=><td align=right class=note >4340</td><td > <a href="https://embed.s |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| insert into MusicGenres values ("pop"); | |
| insert into MusicGenres values ("dance pop"); | |
| insert into MusicGenres values ("rap"); | |
| insert into MusicGenres values ("post-teen pop"); | |
| insert into MusicGenres values ("pop rap"); | |
| insert into MusicGenres values ("rock"); | |
| insert into MusicGenres values ("latin"); | |
| insert into MusicGenres values ("hip hop"); | |
| insert into MusicGenres values ("trap"); | |
| insert into MusicGenres values ("modern rock"); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import requests | |
| everynoisetext = requests.get('http://everynoise.com/everynoise1d.cgi?scope=all').text | |
| import re | |
| allgenres = re.findall(r'style="color: #.*?>(.*?)<', everynoisetext) | |
| for genre in allgenres: | |
| print ('insert into MusicGenres values ("{}");'.format(genre)) |
NewerOlder