Devendra174's picture
Upload folder using huggingface_hub
f5071ca verified
raw
history blame contribute delete
695 Bytes
// Configuration for IMDB
// To se the latest configuration fetch it from https://api.themoviedb.org/3/configuration?api_key=019e8f375549e0bbd4a4191862ebc88f
const API_URL = 'https://api.themoviedb.org/3/';
const API_KEY = '844dba0bfd8f3a4f3799f6130ef9e335';
// 019e8f375549e0bbd4a4191862ebc88f
// Images
// An image URL looks like this example:
// http://image.tmdb.org/t/p/w780/bOGkgRGdhrBYJSLpXaxhXVstddV.jpg
const IMAGE_BASE_URL ='http://image.tmdb.org/t/p/';
//Sizes: w300, w780, w1280, original
const BACKDROP_SIZE = 'w1280'
// w92, w154, w185, w342, w500, w780, original
const POSTER_SIZE = 'w500'
export {
API_URL,
API_KEY,
IMAGE_BASE_URL,
BACKDROP_SIZE,
POSTER_SIZE
}