This repository was archived by the owner on Nov 13, 2019. It is now read-only.
- Notifications
You must be signed in to change notification settings - Fork0
http://musicfm.hu/ WAS (2012 - 2019) one of the most popular radio station in Hungary. This is a .NET Standard 2.0 library to access the Timeline, every MusicKiller DJ's tracklist and the two chart (TOP 20 and TOP 50).
License
NotificationsYou must be signed in to change notification settings
PoLaKoSz/MusicFM.hu
Folders and files
Name | Name | Last commit message | Last commit date | |
---|---|---|---|---|
Repository files navigation
MusicFM.hu is the one of the most popular radio station in Hungary. This is a .NET Standard 2.0 library to can access the Timeline,every MusicKIller DJ's tracklist and the two chart (TOP 20 and TOP 50).
viaNuGet
PM > Install-Package MusicFM.hu
That's all You need and can use with this library. Copied from the sample project:
usingPoLaKoSz.MusicFM;usingPoLaKoSz.MusicFM.Models;usingSystem;usingSystem.Collections.Generic;namespaceConsoleApp{classProgram{staticvoidMain(string[]args){varmusicFM=newMusicFM();varMKdjTracklist=musicFM.MusicKillers.TracklistFrom.Antonyo().GetAwaiter().GetResult();DisplayTracklist(MKdjTracklist,"MK DJ Antonyo");vartimeLine=musicFM.HomePage.Timeline().GetAwaiter().GetResult();DisplayTracklist(timeLine,"Timeline");vartop20Tracks=musicFM.Charts.Top20.All().GetAwaiter().GetResult();DisplayTracklist(top20Tracks,"TOP 20");vartop50Tracks=musicFM.Charts.Top50.All().GetAwaiter().GetResult();DisplayTracklist(top50Tracks,"TOP 50");Console.Read();}privatestaticvoidDisplayTracklist(List<Track>tracklist,stringname){Console.WriteLine(name);for(inti=0;i<tracklist.Count;i++){vartrack=tracklist[i];Console.WriteLine($"\t#{i,3}\t{track.Artist} -{track.Name}");}Console.WriteLine("\n");}privatestaticvoidDisplayTracklist(List<Music>tracklist,stringname){Console.WriteLine(name);for(inti=0;i<tracklist.Count;i++){vartrack=tracklist[i];Console.WriteLine($"\t#{i,3}\t{track.Name}");}Console.WriteLine("\n");}}}
About
http://musicfm.hu/ WAS (2012 - 2019) one of the most popular radio station in Hungary. This is a .NET Standard 2.0 library to access the Timeline, every MusicKiller DJ's tracklist and the two chart (TOP 20 and TOP 50).
Topics
Resources
License
Stars
Watchers
Forks
Packages0
No packages published