Skip to content

Z3r0ish/createJson

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

65 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

database.json

An python script to create a database for FastAni using AniList and theMovieDB. Thanks to tmdb for providing all the usefull episode metadata!

AniList tmdb FastAni

Disclaimer

This project uses both the AniList and theMovieDB API's, thanks to tmdb I can take all the usefull episode metadata!

Table of contents

To Do list
Requirements
Usage
Variables you can change
Naming Scheme
JSON Structure
Issues
Other

To Do list

  • Fix issues
  • Merge into the main repo
  • ???

Requirements

Usage

  1. Install Python and pip

  2. Clone this repo at the root folder

  3. Run pip install tabulate and pip install requests or you could do pip install -r requirements.txt

  4. 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.)

  5. Simply run python createJson.py in the root of your database

  6. Use the CLI to select any anime the script may have problems finding

  7. 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.

Variables you can change

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)

Naming Scheme

/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

JSON Structure

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.

Issues

- The seasons dict conversion to an array (list) is not working or saved in the final result

Other

Feedback

All bugs, feature requests, pull requests, feedback, etc., are welcome. Create an issue.

License

Code

WTFPL – Do What the Fuck You Want to Public License

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages