Skip to content

jagrosh/JLyrics

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

29 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Download Stars License CodeFactor Build status

JLyrics

🎼 Expandable lyrics-scraping API for Java

Example

LyricsClient client = new LyricsClient();
Lyrics lyrics = client.getLyrics("smooth criminal").get();
System.out.println(lyrics.getContent()); // As he came into the window ...

Features

Included Lyrics Sites

  • A-Z Lyrics
  • Genius
  • MusixMatch
  • [your contribution here]

Maven Setup

<repository>
		  <id>jitpack.io</id>
	   <url>https://jitpack.io</url>
</repository>
<dependency>
	   <groupId>com.github.jagrosh</groupId>
	   <artifactId>JLyrics</artifactId>
	   <version>master-SNAPSHOT</version>
</dependency>