https://github.com/agentcooper/kinoart-review-data
Match kinoart.ru review data with TMDB
https://github.com/agentcooper/kinoart-review-data
kinoart movies
Last synced: about 2 months ago
JSON representation
Match kinoart.ru review data with TMDB
- Host: GitHub
- URL: https://github.com/agentcooper/kinoart-review-data
- Owner: agentcooper
- Created: 2021-12-23T21:12:40.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2021-12-26T18:54:33.000Z (over 4 years ago)
- Last Synced: 2025-03-02T18:29:02.564Z (over 1 year ago)
- Topics: kinoart, movies
- Language: JavaScript
- Homepage:
- Size: 68.4 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Kinoart review data
Kinoart ("Искусство Кино") is a Russian movie review magazine, it is available online at https://kinoart.ru. Because they write in the Russian, all movie titles are referenced in Russian as well. This can be inconvenient for any data science needs.
File [`./data/output.csv`](https://github.com/agentcooper/kinoart-review-data/blob/main/data/output.csv) matches the supposed Russian title from the Kinoart review with the English movie title on [TMDB](https://www.themoviedb.org). It can be useful for further data analysis.
## Setup
Install [Node](https://nodejs.org/en/), then `npm install`.
## How to run
```bash
# Updates ./data/output.csv
./bin/update.js
```
## Notes
- The script caches all network requests using local files.
- The supposed Russian title of the movie is being guessed from the photo caption and the review title.
## Further use
I did this to check which of my watched movies have a review from the Kinoart magazine.
To match a [CSV export from Letterboxd](https://letterboxd.com/settings/data/) against the review data, you can use the [xsv](https://github.com/BurntSushi/xsv) tool:
```bash
% xsv join Name ~/Downloads/letterboxd-evilagentcooper-2021-12-23-20-10-utc/watched.csv Title ./data/output.csv | xsv select 'Name,Review URL'
Name,Review URL
Pulp Fiction,http://kinoart.ru/reviews/mesto-kriminalnogo-chtiva-kventina-tarantino-v-kinematografe-1990-h
Mad Max: Fury Road,http://kinoart.ru/reviews/bezumnyy-maks-doroga-yarosti-pyat-let-nazad-vyshel-film-kotoryy-podvel-nas-k-vratam-valgally
Interstellar,http://kinoart.ru/reviews/nulevaya-gravitatsiya-anton-dolin-o-filme-interstellar-kristofera-nolana
The Shining,http://kinoart.ru/reviews/ded-s-batey-stsepilis-po-pyani-doktor-son-po-stivenu-kingu-za-i-protiv
...
```
There is also `./bin/letterboxd-recent.js`.