Deno module for Genius.com API and lyrics scraping.
import { searchSong, searchArtist, searchArtistSongs } from 'https://deno.land/x/genius_lyrics/mod.ts'
const params = {
q: "<QUERY>",
access_token: "<YOUR-GENIUS-ACCESS-TOKEN>",
};
const song = await searchSong(params);
const artist = await searchArtist(params);
const artistSongs = await searchArtistSongs(params);
- Fork the Project
- Create your Feature Branch (
git checkout -b feature/AmazingFeature
) - Commit your Changes (
git commit -m 'Add some AmazingFeature'
) - Push to the Branch (
git push origin feature/AmazingFeature
) - Open a Pull Request
Distributed under the MIT License. See LICENSE
for more information.