Socket
Socket
Sign inDemoInstall

tmdb-script

Package Overview
Dependencies
117
Maintainers
1
Versions
10
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    tmdb-script

A nodejs script to collect data from TMDB API and store it in local mongo database.


Version published
0
Maintainers
1
Created
Weekly downloads
 

Readme

Source

tmdb-script

themoviedb.org offers an API to get movies data. This is a node console application to request data from TMDb API and store it in a local mongo database.

NPM

About TMDb API

NPM This product uses the TMDb API but is not endorsed or certified by TMDb. You can check out the api docs and try it out here. In order to use the API you need to make an account and request an api key (info).

Usage

usage In order to use the script first you need:

  • API key from tmdb.
  • Mongo database installed
  • npm install tmdb-script -g

Currently TMDb API can return ~332,751 movies and ~902,467 people in json format.If you are starting from scratch and do not have any data already the script will take a long time, because of the 40 requests / 10 seconds limitation. The script uses 4 collections to store the data:

  • Two main collections for movies and people
  • Two temporary collections which store the data temporary and then ask you at the end if you want to move the new data to the main collections. This is done because you can either start from scratch or you may run the script multiple times to update your database.

To use the script you need to make a config.json file like this:

{
	"tmdbApiKey": "your-tmdb-api-key",
	"dbServer": "mongodb://localhost/moviedb",
	"mainMoviesCollection": "movie",
	"mainPeopleCollection": "person",
	"tmpMoviesCollection": "newmovie",
	"tmpPeopleCollection": "newperson"
}

Start the script with:

  • tmdb-script -c path/to/config.json
  • For help tmdb-script --help

Steps:

  • First the script will check if you have existing movies in your main movies collection.
  • Then it will get the latest id from TMDb API and show you how much new movies are there.
  • By accepting to download now, the script will download all new movies and data related to them (images, videos, keywords, similar movies etc...) and all people which are in the cast or crew of the new movies and not exists already. This data will be stored in the temporary collections. Bear in mind that the script will make 40 requests and them sleep for 10 seconds. This is because of the max requests limitation from TMDb API. The steps will be executed in the following order
    1. download all general movies info
    2. download images for movies
    3. download videos for movies
    4. download keywords for movies
    5. download similar for movies
    6. download credits for movies
    7. download people
  • If the scripts stops for some reason, you can start it again from the step that failed i.e. tmdb-script -c ./config.json -s videos.
  • After everything is downloaded you will be given an option to transfer the new data to your main collections.

Contributing

Pull requests are welcome.

License

MIT License

Copyright (c) 2017 Dimitar Andreev

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Keywords

FAQs

Last updated on 20 Jan 2018

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc