-
-
Save third-meow/1e1db8ca61d0e63d31bba41d3d1c6890 to your computer and use it in GitHub Desktop.
Export Memrise course words to CSV
This file contains 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 => { | |
console.log(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.translation + '\t' + word.original + '\n').join('') | |
}) | |
.then(console.log) | |
})() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
changed http to https, stops browser complaining