2
I was thinking of making a site that shows information from movies and books, for that I intend to take data from Aces like TMDB and Openlibrary.
My idea is to join them in collections, for example the Harry Potter collection will contain all the original books and films from the franchise.
The site would automatically update the data at predetermined periods.
Does anyone have any idea how I could relate this data and assemble the collections, how I can know which films and books belong to the same franchise, has any logic that allows this process to be automatic?
Thanks in advance!
TMDB has an API - https://www.themoviedb.org/documentation/api and the Open Library also - https://openlibrary.org/developers/api. They will help you with this. Know what an API is ?
– Diego Souza
Yes, I know, my idea is to take the data of these two Pis. My problem is not data capture, it is more a logic problem anyway. I wanted to see if there is any way that the site can automatically join these collections. I will edit the question to be more specific.
– katerinaptrv
Okay. I didn’t even know there was an API. But when someone asks you something like that, that’s the first thing I get. Rsrs I haven’t even seen what these API’s offer.
– Diego Souza
From the quick read I’ve given you now, I don’t think you have any specific data. But nothing a word search won’t solve.
– Diego Souza
My fear is that a name search has great chances of getting incorrect, if I search Harry Potter for example, there are several unofficial books with this title.
– katerinaptrv
@katerinaptrv Everything depends on what the api returns. If a book from Harry returns for example a category "Harry", and searching for movies returns a category "Harry", you can relate directly, but if you do not return any data of this type between books and movies, you will have to come up with the logic of comparison.
– Matheus