├── .gitignore ├── GeniusLyricsAPI.iml ├── README.md ├── pom.xml └── src └── main └── java ├── core ├── GLA.java ├── HttpManager.java ├── ProjectInfo.java └── Statics.java └── genius ├── Lyrics.java ├── LyricsParser.java └── SongSearch.java /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LowLevelSubmarine/GeniusLyricsAPI/HEAD/.gitignore -------------------------------------------------------------------------------- /GeniusLyricsAPI.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LowLevelSubmarine/GeniusLyricsAPI/HEAD/GeniusLyricsAPI.iml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LowLevelSubmarine/GeniusLyricsAPI/HEAD/README.md -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LowLevelSubmarine/GeniusLyricsAPI/HEAD/pom.xml -------------------------------------------------------------------------------- /src/main/java/core/GLA.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LowLevelSubmarine/GeniusLyricsAPI/HEAD/src/main/java/core/GLA.java -------------------------------------------------------------------------------- /src/main/java/core/HttpManager.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LowLevelSubmarine/GeniusLyricsAPI/HEAD/src/main/java/core/HttpManager.java -------------------------------------------------------------------------------- /src/main/java/core/ProjectInfo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LowLevelSubmarine/GeniusLyricsAPI/HEAD/src/main/java/core/ProjectInfo.java -------------------------------------------------------------------------------- /src/main/java/core/Statics.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LowLevelSubmarine/GeniusLyricsAPI/HEAD/src/main/java/core/Statics.java -------------------------------------------------------------------------------- /src/main/java/genius/Lyrics.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LowLevelSubmarine/GeniusLyricsAPI/HEAD/src/main/java/genius/Lyrics.java -------------------------------------------------------------------------------- /src/main/java/genius/LyricsParser.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LowLevelSubmarine/GeniusLyricsAPI/HEAD/src/main/java/genius/LyricsParser.java -------------------------------------------------------------------------------- /src/main/java/genius/SongSearch.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LowLevelSubmarine/GeniusLyricsAPI/HEAD/src/main/java/genius/SongSearch.java --------------------------------------------------------------------------------