mirror of
https://github.com/MALSync/MAL-Sync-Backup.git
synced 2023-09-22 11:52:49 +02:00
No description
.github | ||
data | ||
.gitignore | ||
index.js | ||
package-lock.json | ||
package.json | ||
README.md |
MAL-Sync Backup
The main purppose of this repository is have a backup of the MAL-Sync MAL to Streaming page mapping database. But using the data for other uses is allowed. For commercial use contact us. The data is updated once a week. Wrong/missing mappings are not seldom, specially mangas, but because they are generated through all the users of MAL-Sync it should correct itself over time.
Stats
Page | Total | MalID | noMalID | AniID | noAniID |
---|---|---|---|---|---|
9anime | 11378 | 10956 | 422 | 10186 | 1192 |
Gogoanime | 11220 | 10585 | 635 | 10250 | 970 |
Marin | 1242 | 1223 | 19 | 1219 | 23 |
Zoro | 6077 | 6009 | 68 | 5828 | 249 |
Mangadex | 68083 | 31055 | 37028 | 34719 | 33364 |
MangaFox | 12282 | 7544 | 4738 | 7661 | 4621 |
MangaSee | 7376 | 6579 | 797 | 6626 | 750 |
MangaNato | 20525 | 11139 | 9386 | 11909 | 8616 |
MangaFire | 26484 | 22217 | 4267 | 24928 | 1556 |
Structure
An _index.json can be found in every folder containing an array of all ids
MAL -> Streaming Page Structure:
data/myanimelist/(anime|manga)/[id].json
anime/19815
{
"altTitle": [
"No Game, No Life",
"NGNL",
"ノーゲーム・ノーライフ"
],
"id": 19815,
"type": "anime",
"title": "No Game No Life",
"url": "https://myanimelist.net/anime/19815/No_Game_No_Life",
"image": "https://cdn.myanimelist.net/images/anime/5/65187.jpg",
"category": "TV",
"hentai": false,
"createdAt": "2020-10-12T12:36:13.580Z",
"updatedAt": "2020-10-15T11:36:06.203Z",
"Pages": {
"Aniwatch": {
"350": {
"...": "..."
}
},
"9anime": {
"4qkm": {
"...": "..."
},
"y2p0": {
"...": "..."
}
},
"Gogoanime": {
"no-game-no-life": {
"...": "..."
},
"no-game-no-life-dub": {
"...": "..."
}
},
"Twistmoe": {
"no-game-no-life": {
"...": "..."
}
}
}
}
Streaming Page -> MAL Structure:
data/pages/[streaming page key]/[id].json
9anime/214
{
"identifier": "214",
"malUrl": "https://myanimelist.net/anime/9617/K-On_Movie",
"type": "anime",
"page": "9anime",
"title": "K-On! Movie",
"url": "...",
"image": "....",
"hentai": false,
"sticky": false,
"active": true,
"actor": null,
"malId": 9617,
"createdAt": "...",
"updatedAt": "...",
"Mal": {
"altTitle": [],
"id": 9617,
"type": "anime",
"title": "K-On! Movie",
"url": "...",
"image": "...",
"category": "-",
"hentai": false,
"createdAt": "...",
"updatedAt": "..."
}
}
How to find the IDs can be checked in here.
[PageKey]/main.ts -> (overview|sync):getIdentifier(url)