Skip to content

Instantly share code, notes, and snippets.

View samlovescoding's full-sized avatar
🔮
Building

Sampan Verma samlovescoding

🔮
Building
View GitHub Profile
.horizontal-container {
display: flex;
flex-wrap: nowrap;
overflow-x: auto;
}
.horizontal-container .scrollable-item {
flex: 0 0 auto;
}
@galli-leo
galli-leo / tmdbdump.py
Last active April 7, 2024 03:05
Dumping the entire TMDB database's json inside a directory. Usage: python3 tmdbdump.py START_ID (defaults to 1)
import requests
import time
import json
import sys
import threading
import queue
from datetime import timedelta
API_KEY = "YOUR_TMDB_APIKEY"
append_to_response = "images,alternative_titles,videos,credits,keywords,release_dates,similar_movies,recommendations" //Change this if you do not want all the data.