-
-
Save codepanda26/ef7b17931e3f848881bcae7f85ea13f0 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
| /* | |
| Export Memrise course words to CSV. | |
| 1. Log into memrise.com | |
| 2. Navigate to course home page (e.g. http://www.memrise.com/course/335725/comprehensive-german-duolingo-vocabulary/) | |
| 3. Open Developer Console | |
| 4. Paste below script and hit enter | |
| 5. After all urls have been fetched, copy final word list into spreadsheet. | |
| */ | |
| (() => { | |
| 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 Object.keys(data.things).map(key => ({ | |
| original: data.things[key].columns[1].val, | |
| translation: data.things[key].columns[2].val | |
| })) | |
| }) | |
| .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