Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
This repository was archived by the owner on Nov 13, 2019. It is now read-only.
/MusicFM.huPublic archive

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

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

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).

Install

viaNuGet

PM > Install-Package MusicFM.hu

Quick start

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

Packages

No packages published

Languages


[8]ページ先頭

©2009-2025 Movatter.jp