An python script to create a database for FastAni using AniList and theMovieDB. Thanks to tmdb for providing all the usefull episode metadata!
This project uses both the AniList and theMovieDB API's, thanks to tmdb I can take all the usefull episode metadata!
To Do list
Requirements
Usage
Variables you can change
Naming Scheme
JSON Structure
Issues
Other
- Fix issues
- Merge into the main repo
- ???
- Files must follow the Plex naming scheme
- Python and pip
- Tabulate (pip install tabulate)
- Requests (pip install requests)
- tmdbsimple (pip install tmdbsimple)
- An API v3 key for theMovieDB
-
Install Python and pip
-
Clone this repo at the root folder
-
Run
pip install tabulate
andpip install requests
or you could dopip install -r requirements.txt
-
Open the
config.py
file with any text editor and replace TMDB_API_v3_KEY with your API key (PS: make sure the api key is quoted.) -
Simply run
python createJson.py
in the root of your database -
Use the CLI to select any anime the script may have problems finding
-
Use the json file generated by the script however you like
- P.S. When all the unknown anime are searched and found the script will save a database.json with this structure, it will also save another JSON file with all the known anime, so that on the 2nd run and onwards it won't search again for the same anime, only for the unknown ones.
All variables you can change are located in the config.py file. Most of them are self explanatory but here is what they do.
Variables | Description |
---|---|
jsonPath | Where your generated json file is saved to, by default it's './database.json' |
jsonConfig | Where your saved configs are, by default it's './config.json' |
fileFormat | The file format which info is collected from, by default it's '.mp4' |
tmdb.API_KEY | Your API key for theMovieDB, change this you your key. Make sure it's in quotes like this 'XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX' (replace the Xs for your key) |
/Anime
/Season {Number}
Anime S{Number}E{Number}.mp4
Where {Number}
is a full number, in other words an Integer.
S{Number} ==> S01 (Season 1)
E{Number} ==> E01 (Episode 1)
For Example:
/One-Punch Man
/Season 1
One-Punch Man S01E01.mp4
One-Punch Man S01E02.mp4
The databse.json will look like this:
{
"83097": {
"Seasons": [
{
"Episodes": [
{
"ep": "01",
"file": "/Anime/Yakusoku_no_Neverland/Yakusoku no Neverland S01E01.mp4",
"directory": "/Anime/Yakusoku_no_Neverland",
"season_num": "01",
"thumb": "/Anime/Yakusoku_no_Neverland/thumbs/83097_thumbnail_01.jpg",
"title": "121045"
},
{
"ep": "02",
"file": "/Anime/Yakusoku_no_Neverland/Yakusoku no Neverland S01E02.mp4",
"directory": "H:/Anime/Yakusoku_no_Neverland",
"season_num": "01",
"thumb": "/Anime/Yakusoku_no_Neverland/thumbs/83097_thumbnail_02.jpg",
"title": "131045"
},
{
"ep": "03",
"file": "/Anime/Yakusoku_no_Neverland/Yakusoku no Neverland S01E03.mp4",
"directory": "/Anime/Yakusoku_no_Neverland",
"season_num": "01",
"thumb": "/Anime/Yakusoku_no_Neverland/thumbs/83097_thumbnail_03.jpg",
"title": "181045"
},
{
"ep": "04",
"file": "/Anime/Yakusoku_no_Neverland/Yakusoku no Neverland S01E04.mp4",
"directory": "/Anime/Yakusoku_no_Neverland",
"season_num": "01",
"thumb": "/Anime/Yakusoku_no_Neverland/thumbs/83097_thumbnail_04.jpg",
"title": "291045"
}
],
"pretty_title": "The Promised Neverland"
}
]
}
}
It has the anilist id as the key entry, and inside it a json that has an array of seasons with their files.
- The seasons dict conversion to an array (list) is not working or saved in the final result
All bugs, feature requests, pull requests, feedback, etc., are welcome. Create an issue.