feat: drop last.fm data files

This commit is contained in:
Cory Dransfeldt 2023-06-20 19:23:51 -07:00
parent 1764d744ec
commit 65b49e8e0e
No known key found for this signature in database
2 changed files with 0 additions and 24 deletions

View file

@ -1,12 +0,0 @@
const EleventyFetch = require('@11ty/eleventy-fetch')
module.exports = async function () {
const MUSIC_KEY = process.env.API_KEY_LASTFM
const url = `https://ws.audioscrobbler.com/2.0/?method=user.gettopalbums&user=cdme_&api_key=${MUSIC_KEY}&limit=8&format=json&period=7day`
const res = EleventyFetch(url, {
duration: '1h',
type: 'json',
}).catch()
const albums = await res
return albums['topalbums'].album
}

View file

@ -1,12 +0,0 @@
const EleventyFetch = require('@11ty/eleventy-fetch')
module.exports = async function () {
const MUSIC_KEY = process.env.API_KEY_LASTFM
const url = `https://ws.audioscrobbler.com/2.0/?method=user.gettopartists&user=cdme_&api_key=${MUSIC_KEY}&limit=8&format=json&period=7day`
const res = EleventyFetch(url, {
duration: '1h',
type: 'json',
}).catch()
const artists = await res
return artists['topartists'].artist
}