https://github.com/josh/tmdb-index
Compact TMDB external ID index
https://github.com/josh/tmdb-index
gh-pages parquet tmdb
Last synced: about 1 year ago
JSON representation
Compact TMDB external ID index
- Host: GitHub
- URL: https://github.com/josh/tmdb-index
- Owner: josh
- License: mit
- Created: 2025-06-17T03:55:57.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2025-07-15T17:47:45.000Z (about 1 year ago)
- Last Synced: 2025-07-16T14:24:20.355Z (about 1 year ago)
- Topics: gh-pages, parquet, tmdb
- Language: Python
- Homepage:
- Size: 121 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# tmdb-index
An enhanced version of the [TMDB Daily ID Export](https://developer.themoviedb.org/docs/daily-id-exports) as a [parquet file](https://parquet.apache.org/).
```
>>> import polars as pl
>>> pl.read_parquet("https://josh.github.io/tmdb-index/tmdb-movie.parquet").filter(pl.col("imdb_numeric_id") == 111161)
┌──────────┬─────────────┬──────────────┬──────────────────┬────────────────┬─────────────────────────────┬───────────────────────┬───────────────────────────┐
│ id (u32) ┆ date (date) ┆ adult (bool) ┆ in_export (bool) ┆ success (bool) ┆ retrieved_at (datetime[ns]) ┆ imdb_numeric_id (u32) ┆ wikidata_numeric_id (u32) │
╞══════════╪═════════════╪══════════════╪══════════════════╪════════════════╪═════════════════════════════╪═══════════════════════╪═══════════════════════════╡
│ 278 ┆ 2023-03-05 ┆ false ┆ true ┆ true ┆ 2023-03-05 16:04:53 ┆ 111161 ┆ 172241 │
└──────────┴─────────────┴──────────────┴──────────────────┴────────────────┴─────────────────────────────┴───────────────────────┴───────────────────────────┘
```