-
-
Save wyun/7113ad2ff5ac6c69b437dbe80c176b96 to your computer and use it in GitHub Desktop.
Export Memrise course words to CSV
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(() => { | |
function getWords(courseId, level) { | |
const url = `https://www.memrise.com/ajax/session/?course_id=${courseId}&level_index=${level}&session_slug=preview` | |
console.log('Fetching words from ' + url) | |
return fetch(url, { credentials: 'same-origin' }) | |
// parse response | |
.then(res => { | |
return res.status === 200 | |
? res.json() | |
// map results | |
.then(data => { | |
return data.learnables.map(row => ({ | |
original: row.item.value, | |
translation: row.definition.value | |
})) | |
}) | |
.then(words => { | |
return getWords(courseId, level + 1) | |
.then(words.concat.bind(words)) | |
}) | |
: [] | |
}) | |
.catch(err => { | |
console.error(err) | |
return [] | |
}) | |
} | |
// fetch | |
const start = 1 | |
const courseId = location.href.slice(30).match(/\d+/)[0] | |
getWords(courseId, start) | |
// format as csv | |
.then(words => { | |
console.log(words.length + ' words') | |
return words.map(word => word.original + '\t' + word.translation + '\n').join('') | |
}) | |
.then(console.log) | |
})() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment