/JLyrics

🎼 Expandable lyrics-scraping API for Java

Primary LanguageJavaApache License 2.0Apache-2.0

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
  • MusicMatch
  • [your contribution here]

Maven Setup

<repository>
    <id>bintray-jagrosh-maven</id>
    <name>bintray</name>
    <url>https://dl.bintray.com/jagrosh/maven</url>
</repository>
<dependency>
    <groupId>com.jagrosh</groupId>
    <artifactId>JLyrics</artifactId>
    <version>VERSION</version>
</dependency>