From dc5fc28ffd33f2e9d12b32c3d742ba32071adb66 Mon Sep 17 00:00:00 2001 From: renaisssancee Date: Mon, 23 Mar 2026 23:33:49 +0300 Subject: [PATCH] Add CineMatch RAG film recommendation system - Film data ingestion and processing pipeline - ChromaDB-based vector retrieval with BM25 hybrid search - Query analysis and hallucination detection - Streamlit web interface - Evaluation framework with test queries --- .env.example | 1 + .gitignore | 10 + README.md | 962 ++++++- config.yaml | 35 + data/processed/movies.jsonl | 4764 +++++++++++++++++++++++++++++++++++ data/test_queries.jsonl | 30 + prompts.yaml | 60 + requirements.txt | 9 + scripts/build_index.py | 101 + scripts/evaluate.py | 185 ++ scripts/ingest.py | 119 + src/__init__.py | 0 src/app.py | 117 + src/hallucination.py | 32 + src/llm_utils.py | 47 + src/query_analyzer.py | 103 + src/rag.py | 229 ++ src/retrieval.py | 133 + 18 files changed, 6870 insertions(+), 67 deletions(-) create mode 100644 .env.example create mode 100644 .gitignore create mode 100644 config.yaml create mode 100644 data/processed/movies.jsonl create mode 100644 data/test_queries.jsonl create mode 100644 prompts.yaml create mode 100644 requirements.txt create mode 100644 scripts/build_index.py create mode 100644 scripts/evaluate.py create mode 100644 scripts/ingest.py create mode 100644 src/__init__.py create mode 100644 src/app.py create mode 100644 src/hallucination.py create mode 100644 src/llm_utils.py create mode 100644 src/query_analyzer.py create mode 100644 src/rag.py create mode 100644 src/retrieval.py diff --git a/.env.example b/.env.example new file mode 100644 index 0000000..bd84041 --- /dev/null +++ b/.env.example @@ -0,0 +1 @@ +OPENROUTER_API_KEY=your_key_here diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..9b6c58a --- /dev/null +++ b/.gitignore @@ -0,0 +1,10 @@ +data/raw/ +.env +__pycache__/ +chroma_db/ +*.pyc +*.egg-info/ +.venv/ +venv/ +data/logs.db +.DS_Store diff --git a/README.md b/README.md index 2ef1fe6..f979f48 100644 --- a/README.md +++ b/README.md @@ -1,104 +1,932 @@ -# CineMatch: LLM-based Movie Recommendation System +# CineMatch — Рекомендательная система фильмов на основе RAG -LLM-based система для семантического поиска фильмов по описанию настроения, -жанра и предпочтений с объяснением рекомендаций. +CineMatch - это система рекомендаций фильмов, которая помогает подобрать кино под ваше настроение или запрос. Пользователь может просто описать, что ему хочется посмотреть (на русском или английском), а система подберёт подходящие варианты. +В основе лежит подход Retrieval-Augmented Generation (RAG): сначала система ищет релевантные фильмы в датасете TMDB 5000, а затем формирует понятное объяснение, почему именно эти фильмы подходят под запрос. --- -## Описание проекта +## Оглавление -AI Movie Assistant — это RAG-based система, которая: +1. [Архитектура](#1-архитектура) +2. [Стек технологий](#2-стек-технологий) +3. [Структура проекта](#3-структура-проекта) +4. [Установка и запуск](#4-установка-и-запуск) +5. [Конфигурация](#5-конфигурация) +6. [Компоненты системы](#6-компоненты-системы) + - [6.1 Query Analyzer](#61-query-analyzer-srcquery_analyzerpy) + - [6.2 Retriever](#62-retriever-srcretrievalpy) + - [6.3 Hallucination Guard](#63-hallucination-guard-srchallucinationpy) + - [6.4 RAG Orchestrator](#64-rag-orchestrator-srcragpy) + - [6.5 LLM Utils](#65-llm-utils-srcllm_utilspy) + - [6.6 Streamlit UI](#66-streamlit-ui-srcapppy) +7. [Скрипты](#7-скрипты) + - [7.1 Ingest](#71-ingest-scriptsingestpy) + - [7.2 Build Index](#72-build-index-scriptsbuild_indexpy) + - [7.3 Evaluate](#73-evaluate-scriptsevaluatepy) +8. [Данные](#8-данные) +9. [Промпты](#9-промпты) +10. [Обработка ошибок и отказоустойчивость](#10-обработка-ошибок-и-отказоустойчивость) +11. [Логирование и обратная связь](#11-логирование-и-обратная-связь) +12. [Оценка качества](#12-оценка-качества) +13. [Примеры работы пайплайна](#13-примеры-работы-пайплайна) -- принимает запрос пользователя на естественном языке («хочу что-то грустное про войну») -- семантически сопоставляет запрос с базой фильмов -- объясняет, почему именно эти фильмы подходят -- выделяет ключевые темы, жанры и настроение -- генерирует персональные рекомендации с обоснованием +--- + +## 1. Архитектура + +Система реализует пятиступенчатый RAG-пайплайн: + +``` +┌─────────────────────────────────────────────────────────────────┐ +│ Пользователь │ +│ "Хочу страшный фильм до 100 минут" │ +└──────────────────────────┬──────────────────────────────────────┘ + │ + ▼ +┌──────────────────────────────────────────────────────────────────┐ +│ 1. Query Analyzer (LLM) │ +│ Парсит запрос -> структурированные параметры │ +│ {genre: "Horror", max_duration: 100, │ +│ semantic_query: "scary horror movie"} │ +└──────────────────────────┬──────────────────────────────────────┘ + │ + ▼ +┌──────────────────────────────────────────────────────────────────┐ +│ 2. Hybrid Retrieval │ +│ Векторный поиск (ChromaDB) + Фильтры по метаданным │ +│ -> 20 кандидатов │ +│ │ +│ 3. Cross-Encoder Reranking │ +│ Переранжирование кандидатов -> top-5 │ +└──────────────────────────┬──────────────────────────────────────┘ + │ + ▼ +┌──────────────────────────────────────────────────────────────────┐ +│ 4. Hallucination Guard │ +│ Проверка качества выдачи (similarity ≥ 0.4) │ +└──────────────────────────┬──────────────────────────────────────┘ + │ + ▼ +┌──────────────────────────────────────────────────────────────────┐ +│ 5. Generation (LLM) │ +│ Генерация ответа с объяснениями │ +│ на основе найденных фильмов │ +└──────────────────────────┬──────────────────────────────────────┘ + │ + ▼ +┌──────────────────────────────────────────────────────────────────┐ +│ Ответ пользователю + Логирование в SQLite │ +└──────────────────────────────────────────────────────────────────┘ +``` + +--- + +## 2. Стек технологий + +| Компонент | Технология | Назначение | +|-----------|-----------|------------| +| Векторная БД | ChromaDB ≥ 0.4.22 | Хранение и поиск эмбеддингов фильмов | +| Эмбеддинги | sentence-transformers ≥ 2.3.0 (`all-MiniLM-L6-v2`) | Векторизация текста, 384-мерные векторы | +| Реранкер | sentence-transformers (`cross-encoder/ms-marco-MiniLM-L-6-v2`) | Точное ранжирование кандидатов | +| LLM API | openai ≥ 1.0.0 (через OpenRouter) | Анализ запросов и генерация ответов | +| Web UI | Streamlit ≥ 1.30.0 | Интерактивный чат-интерфейс | +| Данные | pandas ≥ 2.1.0, kagglehub ≥ 0.2.0 | Загрузка и обработка TMDB 5000 | +| Конфигурация | PyYAML ≥ 6.0, python-dotenv ≥ 1.0.0 | Настройки и секреты | +| Логирование | SQLite (встроенный) | Запись запросов, ответов, фидбека | +| Python | 3.11+ | Рантайм | + +**LLM-модели (через OpenRouter, free tier):** + +| Приоритет | Модель | Роль | +|-----------|--------|------| +| Primary | `nvidia/nemotron-3-super-120b-a12b:free` | Основная модель | +| Fallback 1 | `deepseek/deepseek-chat-v3-0324:free` | Первая резервная | +| Fallback 2 | `google/gemma-3-27b-it:free` | Вторая резервная | +| Fallback 3 | `meta-llama/llama-4-maverick:free` | Третья резервная | + +--- + +## 3. Структура проекта + +``` +rag_film/ +├── .env.example # Шаблон переменных окружения +├── .gitignore # Правила исключения из Git +├── config.yaml # Конфигурация (модели, параметры, пути) +├── prompts.yaml # Шаблоны промптов для LLM (v1.0) +├── requirements.txt # Python-зависимости +├── design_doc.md # Дизайн-документ проекта +│ +├── src/ # Основной пакет приложения +│ ├── __init__.py # Маркер пакета +│ ├── app.py # Streamlit UI — точка входа для пользователя +│ ├── query_analyzer.py # Анализ запроса -> структурированные параметры +│ ├── retrieval.py # Векторный поиск + реранкинг +│ ├── rag.py # Оркестратор RAG-пайплайна +│ ├── hallucination.py # Защита от галлюцинаций +│ └── llm_utils.py # Общий хелпер для LLM-вызовов с retry/fallback +│ +├── scripts/ # Утилитарные скрипты +│ ├── ingest.py # Загрузка и предобработка TMDB 5000 +│ ├── build_index.py # Построение ChromaDB-индекса +│ └── evaluate.py # Оценка качества пайплайна +│ +├── data/ +│ ├── raw/ # Исходные CSV от TMDB (заполняется ingest.py) +│ ├── processed/ +│ │ └── movies.jsonl # Обработанные фильмы (~5000 записей, ~5.3 МБ) +│ ├── test_queries.jsonl # Тестовый набор (30 запросов с разметкой) +│ └── logs.db # SQLite-лог запросов (создаётся автоматически) +│ +└── chroma_db/ # Персистентный векторный индекс (создаётся build_index.py) +``` + +--- + +## 4. Установка и запуск + +### Предварительные требования + +- Python 3.11+ +- API-ключ OpenRouter ([openrouter.ai](https://openrouter.ai)) + +### Шаг 1. Клонирование и установка зависимостей + +```bash +git clone +cd rag_film +python -m venv .venv +source .venv/bin/activate +pip install -r requirements.txt +``` + +### Шаг 2. Настройка API-ключа + +```bash +cp .env.example .env +# Отредактируйте .env и вставьте свой ключ: +# OPENROUTER_API_KEY=sk-or-v1-... +``` + +### Шаг 3. Загрузка данных и построение индекса + +```bash +# Скачивает TMDB 5000 с Kaggle и создаёт movies.jsonl +python scripts/ingest.py + +# Строит векторный индекс в ChromaDB +python scripts/build_index.py +``` + +### Шаг 4. Запуск приложения + +```bash +streamlit run src/app.py +``` + +Приложение откроется в браузере по адресу `http://localhost:8501`. + +### Шаг 5. (Опционально) Запуск оценки качества + +```bash +python scripts/evaluate.py +``` + +--- + +## 5. Конфигурация + +Вся конфигурация сосредоточена в двух YAML-файлах. + +### config.yaml — параметры системы + +```yaml +# Модели +embedding_model: "all-MiniLM-L6-v2" # Модель эмбеддингов (384 измерения) +reranker_model: "cross-encoder/ms-marco-MiniLM-L-6-v2" # Кросс-энкодер для реранкинга +llm_model: "nvidia/nemotron-3-super-120b-a12b:free" # Основная LLM +fallback_models: # Резервные LLM (в порядке приоритета) + - "deepseek/deepseek-chat-v3-0324:free" + - "google/gemma-3-27b-it:free" + - "meta-llama/llama-4-maverick:free" +openrouter_base_url: "https://openrouter.ai/api/v1" + +# ChromaDB +chroma_db_path: "chroma_db" # Путь к персистентной БД +chroma_collection: "movies" # Имя коллекции +chroma_distance: "cosine" # Метрика расстояния + +# Поиск +retrieval: + n_results: 20 # Начальное кол-во кандидатов из ChromaDB + top_k: 5 # Финальное кол-во рекомендаций + min_results_with_filter: 5 # Мин. результатов с фильтром (иначе -> поиск без фильтра) + similarity_threshold: 0.4 # Порог сходства (ниже -> "ничего не найдено") + +# Анализ запроса +query_analyzer: + max_retries: 2 # Макс. повторов при ошибке парсинга JSON + backoff_base_seconds: 2 # База экспоненциального backoff (2^1=2с, 2^2=4с, ...) + +# Генерация ответа +generation: + max_retries: 2 # Макс. повторов при ошибке парсинга JSON + backoff_base_seconds: 2 # База экспоненциального backoff + history_turns: 2 # Кол-во пар (вопрос-ответ) для контекста диалога + +# Данные +data: + raw_path: "data/raw" + processed_path: "data/processed" + movies_file: "data/processed/movies.jsonl" + +# Логирование +logging: + db_path: "data/logs.db" +``` + +**Ключевые настройки для тюнинга:** + +| Параметр | Влияние | Компромисс | +|----------|---------|------------| +| `similarity_threshold` | Порог для hallucination guard | Ниже -> больше ответов, но выше риск нерелевантных рекомендаций | +| `n_results` | Размер пула кандидатов | Больше -> точнее реранкинг, но медленнее | +| `top_k` | Количество рекомендаций | Больше -> больше выбор, но менее фокусированный ответ | +| `history_turns` | Глубина контекста диалога | Больше -> лучше понимание контекста, но длиннее промпт | + +### prompts.yaml — шаблоны промптов + +Содержит system-промпты и user-шаблоны для двух LLM-вызовов: анализа запроса и генерации ответа. Подробнее в разделе [9. Промпты](#9-промпты). + +--- + +## 6. Компоненты системы + +### 6.1 Query Analyzer (`src/query_analyzer.py`) + +**Назначение:** Преобразование свободного текстового запроса пользователя в структурированные параметры поиска с помощью LLM. + +**Класс: `QueryAnalyzer`** + +```python +class QueryAnalyzer: + def __init__(self, api_key: str) + def analyze(self, user_query: str, history: list[dict] | None = None) -> dict + def _clean_json_response(self, text: str) -> str +``` + +**Метод `analyze()` — основной метод:** + +1. Формирует контекст диалога из последних `history_turns * 2` сообщений. +2. Подставляет запрос и историю в шаблон промпта. +3. Вызывает LLM через `llm_call_with_retry()` (с fallback-моделями и exponential backoff). +4. Парсит JSON-ответ, очищая от markdown code fences. +5. При ошибке парсинга — повторяет до `max_retries` раз. +6. При полном отказе — возвращает запрос "как есть" в поле `semantic_query`. + +**Формат выходных данных:** + +```python +# Успешный парсинг — рекомендация: +{ + "genre": "Horror", # жанр или None + "mood": "scary", # настроение или None + "max_duration": 100, # макс. длительность (мин.) или None + "min_year": 2010, # мин. год выпуска или None + "min_rating": 7.0, # мин. рейтинг или None + "semantic_query": "scary horror movie" # всегда на английском +} + +# Off-topic запрос: +{"off_topic": True} + +# Ошибка парсинга (fallback): +{ + "genre": None, "mood": None, "max_duration": None, + "min_year": None, "min_rating": None, + "semantic_query": "исходный запрос пользователя" +} +``` + +**Метод `_clean_json_response()`:** + +Очищает ответ LLM от markdown-обёрток: +- Удаляет ` ```json ` и ` ``` ` +- Извлекает первый JSON-объект `{...}` с помощью регулярного выражения +- Возвращает очищенный текст для `json.loads()` + +--- + +### 6.2 Retriever (`src/retrieval.py`) + +**Назначение:** Гибридный поиск фильмов: векторное сходство + фильтрация по метаданным + кросс-энкодерный реранкинг. + +**Класс: `Retriever`** + +```python +class Retriever: + def __init__(self) + def retrieve(self, parsed_query: dict) -> list[dict] + def _build_where_filter(self, parsed_query: dict) -> dict | None + def _query_chroma(self, query_embedding: list, where_filter: dict | None) -> list[dict] + def _rerank(self, query: str, candidates: list[dict]) -> list[dict] +``` + +**Инициализация:** +- Загружает SentenceTransformer (`all-MiniLM-L6-v2`) для создания эмбеддингов. +- Загружает CrossEncoder (`cross-encoder/ms-marco-MiniLM-L-6-v2`) для реранкинга. +- Подключается к персистентному ChromaDB и получает коллекцию `movies`. + +**Метод `retrieve()` — основной пайплайн:** + +``` +semantic_query -> Encode -> ChromaDB query (+ metadata filters) + │ + 20 кандидатов + │ + [если < 5 -> повтор без фильтра] + │ + Cross-Encoder Reranking + │ + top-5 результатов +``` + +1. Кодирует `semantic_query` в вектор +2. Строит фильтр метаданных (жанр, длительность, год, рейтинг) +3. Запрашивает ChromaDB, получает до 20 кандидатов +4. Если с фильтром найдено менее 5, повторяет без фильтра +5. Реранжирует кандидатов кросс-энкодером +6. Возвращает top-5 + +**Метод `_build_where_filter()` — построение ChromaDB-фильтров:** + +Поддерживаемые фильтры: + +| Поле | Оператор ChromaDB | Пример | +|------|-------------------|--------| +| `genre` | `$contains` по `genres_pipe` | `|Horror|` содержит "Horror" | +| `max_duration` | `$lte` по `duration_min` | `duration_min ≤ 100` | +| `min_year` | `$gte` по `year` | `year ≥ 2010` | +| `min_rating` | `$gte` по `rating` | `rating ≥ 7.0` | + +При нескольких условиях объединяются через `$and`. + +**Метод `_rerank()` — кросс-энкодерное переранжирование:** + +- Формирует пары `(запрос, описание_фильма)` для каждого кандидата. +- CrossEncoder оценивает семантическую релевантность каждой пары. +- Сортирует по `rerank_score` (убывание). + +**Формат выходного объекта фильма:** + +```python +{ + "id": "19995", + "title": "Avatar", + "year": 2009, + "duration_min": 162, + "rating": 7.2, + "genres": "|Action|Adventure|Fantasy|Science Fiction|", + "overview": "In the 22nd century, a paraplegic Marine...", + "similarity": 0.7234, # косинусное сходство (из ChromaDB) + "rerank_score": 8.45 # оценка кросс-энкодера +} +``` + +--- + +### 6.3 Hallucination Guard (`src/hallucination.py`) + +**Назначение:** Предотвращение нерелевантных рекомендаций. Если лучший найденный фильм слишком далёк от запроса, система честно сообщает, что подходящих результатов нет. + +**Функция:** + +```python +def check_retrieval_quality(candidates: list[dict]) -> tuple[bool, str] +``` + +**Логика:** +1. Если список кандидатов пуст -> `(False, "подходящих фильмов не найдено")` +2. Находит максимальное значение `similarity` среди всех кандидатов. +3. Если `max_similarity < 0.4` -> `(False, "попробуйте переформулировать")` +4. Иначе -> `(True, "")` — качество достаточное. + +**Зачем это нужно:** Без этой проверки LLM может "натянуть" объяснение на нерелевантные фильмы, создавая иллюзию полезного ответа. Hallucination guard гарантирует, что LLM получает только достаточно релевантных кандидатов. + +--- + +### 6.4 RAG Orchestrator (`src/rag.py`) + +**Назначение:** Центральный компонент, объединяющий все этапы пайплайна. Управляет потоком данных от запроса до ответа, логированием и обратной связью. + +**Класс: `CineMatchRAG`** + +```python +class CineMatchRAG: + def __init__(self, api_key: str) + def query(self, user_query: str, history: list[dict] | None = None) -> dict + def save_feedback(self, request_id: str, feedback: str) +``` + +**Метод `query()` — главная точка входа:** + +```python +def query(self, user_query, history=None) -> dict: + # 1. Генерация request_id (UUID) и замер времени + # 2. Анализ запроса (QueryAnalyzer) + # -> если off_topic — ранний возврат + # 3. Поиск кандидатов (Retriever) + # 4. Проверка качества (Hallucination Guard) + # -> если low quality — возврат с fallback-сообщением + # 5. Генерация ответа (LLM) + # 6. Логирование в SQLite + # 7. Возврат результата +``` + +**Формат ответа:** + +```python +# Рекомендация: +{ + "request_id": "550e8400-e29b-41d4-a716-446655440000", + "type": "recommendation", + "message": "Вот несколько фильмов, которые могут вам понравиться:", + "movies": [ + { + "title": "Insidious", + "year": 2010, + "rating": 6.8, + "duration_min": 103, + "reason": "Классический хоррор с психологическими пугалками" + }, + ... + ] +} + +# Off-topic: +{ + "request_id": "...", + "type": "off_topic", + "message": "Я — CineMatch, рекомендательная система фильмов...", + "movies": [] +} + +# Нет результатов: +{ + "request_id": "...", + "type": "no_results", + "message": "По вашему запросу подходящих фильмов не найдено...", + "movies": [] +} +``` + +**Метод `_generate_response()` — генерация ответа:** + +1. Форматирует найденные фильмы в JSON. +2. Подставляет в шаблон промпта: запрос, фильмы, историю. +3. Вызывает LLM через `llm_call_with_retry()`. +4. Парсит JSON-ответ. +5. **Fallback**: если LLM не отвечает или JSON невалиден — возвращает базовую информацию о фильмах (без генеративных объяснений). + +**Внутренние методы:** +- `_init_db()` — создание SQLite-таблицы `logs` при инициализации. +- `_log(...)` — запись запроса/ответа в SQLite. +- `save_feedback(request_id, feedback)` — сохранение лайка/дизлайка от пользователя. +- `_clean_json_response(text)` — очистка ответа LLM от markdown. --- -## Команда проекта +### 6.5 LLM Utils (`src/llm_utils.py`) + +**Назначение:** Общий хелпер для надёжных LLM-вызовов с exponential backoff и цепочкой fallback-моделей. Используется в `query_analyzer.py`, `rag.py` и `evaluate.py`. + +**Функция:** + +```python +def llm_call_with_retry( + client: openai.OpenAI, + model: str, + messages: list[dict], + fallback_models: list[str] | None = None, + max_retries: int = 2, + backoff_base: float = 2.0, +) -> str | None +``` + +**Алгоритм:** + +``` +Для каждой модели в [primary, fallback_1, fallback_2, ...]: + Для каждой попытки (0 .. max_retries): + Попытка вызова API + ├── Успех -> return текст ответа + ├── RateLimitError / APIConnectionError / APIStatusError + │ ├── Есть ещё попытки -> sleep(backoff_base^(attempt+1)), retry + │ └── Попытки кончились -> следующая модель + └── Пустой ответ -> следующая модель -- **ML / NLP инженер** — разработка retrieval + embeddings (Пахолкова Мария) -- **Backend инженер** — API, интеграции (Цисарук Мария) -- **Product / UX** — пользовательский сценарий и интерфейс (Смешкова Екатерина) +Все модели исчерпаны -> return None +``` + +**Задержки при backoff (backoff_base=2):** +- 1-й retry: `2^1 = 2` секунды +- 2-й retry: `2^2 = 4` секунды +- 3-й retry: `2^3 = 8` секунд + +**Обрабатываемые ошибки:** +- `openai.RateLimitError` (HTTP 429) — превышение лимита запросов +- `openai.APIConnectionError` — проблемы с сетью +- `openai.APIStatusError` — серверные ошибки API (500, 503 и др.) +- `ValueError` — пустой ответ от модели --- -## Данные +### 6.6 Streamlit UI (`src/app.py`) + +**Назначение:** Веб-интерфейс с чатом для взаимодействия с пользователем. + +**Основные элементы:** + +- **Заголовок:** "CineMatch" с подписью "Рекомендательная система фильмов на основе RAG" +- **Чат:** Многоходовый диалог с сохранением истории в `st.session_state` +- **Ввод:** Текстовое поле с плейсхолдером "Опишите, какой фильм вы хотите посмотреть..." +- **Рекомендации:** Форматированный вывод с рейтингом, длительностью и объяснением +- **Обратная связь:** Кнопки "👍" и "👎" на каждом ответе ассистента + +**Формат отображения рекомендации:** -| Датасет | Источник | Размер | Назначение | -|---|---|---|---| -| IMDB Top 1000 Movies | Kaggle | около 1 000 фильмов | Основная база (RAG) | -| IMDB Movie Reviews | Kaggle | около 50 000 рецензий | Обогащение контекста | -| MovieLens Dataset | grouplens.org | около 60 000 фильмов | Расширение базы | +``` +**1. Insidious** (2010) + ⭐ 6.8 | ⏱ 103 мин + _Классический хоррор с психологическими пугалками_ +``` + +**Обработка ошибок:** + +Вызов `rag.query()` обёрнут в `try/except`. При любом необработанном исключении пользователь видит дружелюбное сообщение вместо traceback: + +> "Произошла ошибка при обработке запроса. Попробуйте ещё раз через несколько секунд." + +**Кэширование:** + +`get_rag()` декорирован `@st.cache_resource` — RAG-пайплайн (включая загрузку моделей и подключение к ChromaDB) инициализируется один раз и переиспользуется между запросами. --- -## Архитектура (MVP) +## 7. Скрипты + +### 7.1 Ingest (`scripts/ingest.py`) + +**Назначение:** Загрузка датасета TMDB 5000 с Kaggle и его предобработка. -Pipeline: +**Запуск:** `python scripts/ingest.py` -1. Пользователь вводит запрос в свободной форме -2. Очистка и нормализация текста запроса -3. Embedding запроса (bi-encoder) -4. Vector search — top-K фильмов из базы -5. Cross-encoder rerank -6. LLM-агент: - - анализ соответствия запроса и описания фильма - - объяснение логики рекомендации - - генерация краткого обзора почему фильм подходит -7. Ответ пользователю (JSON + текст) +**Что делает:** + +1. Скачивает `tmdb_5000_movies.csv` через `kagglehub`. +2. Парсит JSON-столбцы (`genres`, `keywords`), извлекая имена. +3. Извлекает год из `release_date`. +4. Переименовывает: `runtime` -> `duration_min`, `vote_average` -> `rating`. +5. Фильтрует фильмы без описания или длительности. +6. Создаёт `text_for_embedding`: + ``` + Avatar (2009). Genres: Action, Adventure, Fantasy, Science Fiction. + In the 22nd century, a paraplegic Marine... + Tags: culture clash, future, space war + ``` +7. Создаёт pipe-delimited поля для фильтрации в ChromaDB: + - `genres_pipe`: `|Action|Adventure|Fantasy|` + - `tags_pipe`: `|culture clash|future|space war|` +8. Сохраняет результат в `data/processed/movies.jsonl` (одна строка — один JSON-объект). + +**Выходной формат записи:** + +```json +{ + "id": "19995", + "title": "Avatar", + "year": 2009, + "duration_min": 162, + "rating": 7.2, + "genres": "Action, Adventure, Fantasy, Science Fiction", + "genres_pipe": "|Action|Adventure|Fantasy|Science Fiction|", + "keywords": "culture clash, future, space war, ...", + "tags_pipe": "|culture clash|future|space war|...|", + "overview": "In the 22nd century, a paraplegic Marine...", + "text_for_embedding": "Avatar (2009). Genres: Action, Adventure, ..." +} +``` --- -## Технологический стек +### 7.2 Build Index (`scripts/build_index.py`) + +**Назначение:** Построение векторного индекса ChromaDB из обработанных фильмов. + +**Запуск:** `python scripts/build_index.py` + +**Что делает:** -- **Python** -- **FastAPI** -- **Streamlit** -- **Qdrant** (Vector DB) -- **Sentence-Transformers** (bi-encoder) -- **Cross-Encoder** (rerank) -- **GPT-4o mini / Gemini** (LLM) +1. Загружает фильмы из `data/processed/movies.jsonl`. +2. Инициализирует SentenceTransformer (`all-MiniLM-L6-v2`). +3. Батчево кодирует все `text_for_embedding` (batch_size=64). +4. Создаёт коллекцию `movies` в ChromaDB с метрикой cosine. +5. Батчево добавляет документы (batch_size=500) с: + - **ID:** id фильма + - **Document:** text_for_embedding + - **Embedding:** предвычисленный вектор + - **Metadata:** title, year, duration_min, rating, genres_pipe, tags_pipe, overview +6. Выполняет тестовый запрос `"space exploration emotional drama"` для верификации. + +**Важно:** Индекс нужно пересоздавать при: +- Смене embedding-модели +- Обновлении данных (re-run ingest.py) +- Изменении формата `text_for_embedding` --- -## Метрики +### 7.3 Evaluate (`scripts/evaluate.py`) + +**Назначение:** Автоматическая оценка качества RAG-пайплайна по набору тестовых запросов. + +**Запуск:** `python scripts/evaluate.py` + +**Метрики:** + +| Метрика | Описание | Целевое значение | +|---------|----------|-----------------| +| Recall@5 (genre) | Доля запросов, где хотя бы один фильм соответствует ожидаемому жанру | ≥ 0.75 | +| Avg Latency | Среднее время обработки запроса (мс) | ≤ 10 000 мс | +| LLM Judge | Средняя оценка рекомендаций от LLM-судьи (1-5) | ≥ 4.0 | +| Hallucination Rate | Доля запросов, где ожидались рекомендации, но система вернула "не найдено" | < 5% | + +**LLM Judge** — отдельный LLM-вызов, оценивающий качество по критериям: +- Релевантность к запросу (жанр, настроение, тема) +- Разнообразие рекомендаций +- Качество объяснений + +**Отказоустойчивость:** +- Каждый `rag.query()` обёрнут в `try/except` — один упавший запрос не прерывает весь evaluation. +- `evaluate_with_llm_judge()` использует `llm_call_with_retry()` с fallback-моделями. +- Между запросами — `time.sleep(1)` для снижения нагрузки на API (courtesy delay). -**Retrieval:** -- Recall@K -- nDCG@K -- Precision@K +**Пример выходных данных:** -**LLM:** -- groundedness (ответ основан на данных из базы) -- структурная валидность JSON -- ручная проверка релевантности рекомендаций +``` +[1/30] Хочу что-то как Интерстеллар + Genre recall: 1.00 + LLM judge: 4.5/5 + Latency: 3200ms | Type: recommendation -**UX:** -- latency -- пользовательская оценка (like/dislike)- Qdrant (Vector DB) -- Sentence-Transformers (bi-encoder) -- Cross-Encoder (rerank) -- GPT-4o mini / Gemini (LLM) +... + +============================================================ +EVALUATION RESULTS +============================================================ +Recall@5 (genre): 0.85 (target: >= 0.75) +Avg Latency: 4200ms (target: <= 10000ms) +LLM Judge: 4.2/5 (target: >= 4.0) +Hallucination rate: 3.3% (target: < 5%) + +Overall: PASS ✓ +``` --- -## Метрики +## 8. Данные + +### Источник: TMDB 5000 + +Датасет [TMDB 5000 Movie Dataset](https://www.kaggle.com/datasets/tmdb/tmdb-movie-metadata) с Kaggle. Содержит ~5000 фильмов с метаданными: название, жанры, ключевые слова, синопсис, рейтинг, длительность, дата выпуска. + +### Обработанный формат (`movies.jsonl`) + +Каждая строка — JSON-объект с полями: + +| Поле | Тип | Описание | +|------|-----|----------| +| `id` | string | ID фильма в TMDB | +| `title` | string | Название фильма | +| `year` | int | Год выпуска | +| `duration_min` | int | Длительность в минутах | +| `rating` | float | Средняя оценка (0-10) | +| `genres` | string | Жанры через запятую | +| `genres_pipe` | string | Жанры в формате `\|Genre1\|Genre2\|` для ChromaDB | +| `keywords` | string | Ключевые слова (до 15) через запятую | +| `tags_pipe` | string | Ключевые слова в pipe-формате | +| `overview` | string | Синопсис фильма (на английском) | +| `text_for_embedding` | string | Объединённый текст для векторизации | + +### Тестовый набор (`test_queries.jsonl`) + +30 запросов на русском языке с разметкой: + +```jsonl +{"query": "Хочу что-то как Интерстеллар", "expected_genres": ["Science Fiction", "Drama"], "expected_type": "recommendation"} +{"query": "Страшный фильм до 100 минут", "expected_genres": ["Horror"], "expected_type": "recommendation"} +{"query": "Какая сегодня погода?", "expected_genres": [], "expected_type": "off_topic"} +``` + +- 27 запросов типа `recommendation` (различные жанры, настроения, ограничения) +- 3 запроса типа `off_topic` (не связаны с фильмами) + +--- + +## 9. Промпты + +### Query Analyzer: system prompt + +Задача: парсить запросы пользователя в структурированный JSON. + +Ключевые инструкции: +- Входные данные: запрос (русский/английский) + история диалога +- **`semantic_query` всегда на английском** (эмбеддинги обучены на английском) +- Фильтры (`genre`, `mood`, `max_duration`, `min_year`, `min_rating`) только если явно указаны +- Off-topic запросы -> `{"off_topic": true}` +- Ответ строго в формате JSON, без пояснений + +### Generation: system prompt + +Задача: сгенерировать рекомендации на основе найденных фильмов. + +Ключевые правила: +1. Рекомендовать **только** из предоставленного списка (никогда не выдумывать) +2. Отвечать **на языке пользователя** +3. Краткое объяснение для каждого фильма +4. Честно сказать, если результаты не идеально подходят +5. Лаконичные ответы + +Формат ответа: + +```json +{ + "movies": [ + { + "title": "...", + "year": 2020, + "rating": 7.5, + "duration_min": 120, + "reason": "Краткое объяснение, почему фильм подходит" + } + ], + "message": "Разговорное сообщение на языке пользователя" +} +``` + +--- + +## 10. Обработка ошибок и отказоустойчивость + +Система спроектирована так, чтобы деградировать gracefully, а не падать. + +### Уровни защиты + +``` +┌────────────────────────────────────────────────────────┐ +│ Уровень 1: LLM retry + backoff │ +│ RateLimitError -> повтор через 2с, 4с, 8с │ +├────────────────────────────────────────────────────────┤ +│ Уровень 2: Fallback-модели │ +│ primary -> deepseek -> gemma -> llama │ +├────────────────────────────────────────────────────────┤ +│ Уровень 3: Локальные fallback-ответы │ +│ Query Analyzer: raw query как semantic_query │ +│ Generation: базовая инфо о фильмах без LLM │ +├────────────────────────────────────────────────────────┤ +│ Уровень 4: UI error handling │ +│ try/except -> st.error() вместо traceback │ +└────────────────────────────────────────────────────────┘ +``` + +### Сценарии ошибок + +| Ситуация | Поведение | +|----------|-----------| +| API rate limit (429) | Retry с exponential backoff -> fallback models -> локальный fallback | +| Сеть недоступна | Те же retry/fallback, после исчерпания -> сообщение об ошибке | +| LLM вернула невалидный JSON | До 2 retry JSON-парсинга -> fallback на raw data | +| LLM вернула пустой ответ | Переключение на следующую модель | +| Нет подходящих фильмов | Hallucination guard -> сообщение "попробуйте переформулировать" | +| Фильтр слишком строгий | Автоматический повтор поиска без фильтра | +| ChromaDB не создана | Ошибка при инициализации (требуется `build_index.py`) | +| Нет API-ключа | `st.error()` с инструкцией при запуске | + +--- + +## 11. Логирование и обратная связь + +### SQLite-лог (`data/logs.db`) + +Каждый запрос записывается в таблицу `logs`: + +| Столбец | Тип | Описание | +|---------|-----|----------| +| `request_id` | TEXT (PK) | UUID запроса | +| `timestamp` | REAL | Unix timestamp | +| `user_query` | TEXT | Исходный запрос пользователя | +| `parsed_query` | TEXT | JSON: структурированные параметры | +| `retrieved_movie_ids` | TEXT | JSON-массив ID найденных фильмов | +| `llm_response` | TEXT | Полный JSON-ответ генерации | +| `latency_ms` | REAL | Время обработки (мс) | +| `feedback` | TEXT | "like" / "dislike" / NULL | + +### Обратная связь + +Каждый ответ ассистента сопровождается кнопками 👍/👎. При нажатии `feedback` обновляется в соответствующей строке `logs`. + +Данные логирования можно использовать для: +- Анализа популярных запросов +- Выявления проблемных паттернов (частые no_results, low judge scores) +- Корреляции feedback с качеством выдачи +- Мониторинга latency + +--- + +## 12. Оценка качества + +### Запуск + +```bash +python scripts/evaluate.py +``` + +### Метрики и пороги + +| Метрика | Формула | Целевое значение | Что измеряет | +|---------|---------|-----------------|--------------| +| **Recall@5** | (запросы с хотя бы 1 совпавшим жанром) / (всего запросов) | ≥ 0.75 | Точность жанрового поиска | +| **Avg Latency** | среднее(latency по всем запросам) | ≤ 10 с | Скорость отклика | +| **LLM Judge** | среднее(оценка LLM 1-5) | ≥ 4.0 | Общее качество рекомендаций | +| **Hallucination Rate** | (ожидали рекомендации, получили "не найдено") / total × 100% | < 5% | False negative rate | + +### Общий вердикт + +**PASS** — все 4 метрики достигают целевых значений одновременно. + +--- + +## 13. Примеры работы пайплайна + +### Пример 1: Жанровый запрос с ограничениями + +``` +Запрос: "Страшный фильм до 100 минут" + +-> Query Analyzer: + {genre: "Horror", max_duration: 100, semantic_query: "scary horror movie"} + +-> Retriever: + Фильтр: genres $contains "Horror" AND duration_min <= 100 + 20 кандидатов -> реранкинг -> top-5 + +-> Hallucination Guard: max_similarity = 0.72 ≥ 0.4 ✓ + +-> Generation: + { + movies: [{title: "Insidious", year: 2010, rating: 6.8, duration_min: 103, reason: "..."}], + message: "Вот несколько ужастиков, которые уложатся в ваше время:" + } +``` + +### Пример 2: Off-topic запрос + +``` +Запрос: "Какая сегодня погода?" + +-> Query Analyzer: {off_topic: true} + +-> Немедленный возврат: + {type: "off_topic", message: "Я — CineMatch, рекомендательная система фильмов..."} +``` + +### Пример 3: Нет подходящих результатов + +``` +Запрос: "Документальный фильм про выращивание сыра в Швейцарии" + +-> Query Analyzer: + {genre: "Documentary", semantic_query: "cheese making Switzerland documentary"} + +-> Retriever: 3 кандидата, max_similarity = 0.25 + +-> Hallucination Guard: 0.25 < 0.4 ✗ + +-> Возврат: + {type: "no_results", message: "По вашему запросу подходящих фильмов не найдено..."} +``` + +### Пример 4: Fallback при отказе API -Retrieval: -- Recall@K -- nDCG@K -- Precision@K +``` +Запрос: "Романтическая комедия" -LLM: -- groundedness -- структурная валидность JSON -- ручная проверка рекомендаций +-> Query Analyzer -> llm_call_with_retry: + nvidia/nemotron -> 429 RateLimitError + retry 1 (2с) -> 429 + retry 2 (4с) -> 429 + deepseek/deepseek-chat -> 200 OK ✓ -UX: -- latency -- пользовательская оценка (like/dislike) +-> Далее обычный пайплайн с ответом от deepseek +``` --- diff --git a/config.yaml b/config.yaml new file mode 100644 index 0000000..31d934f --- /dev/null +++ b/config.yaml @@ -0,0 +1,35 @@ +embedding_model: "all-MiniLM-L6-v2" +reranker_model: "cross-encoder/ms-marco-MiniLM-L-6-v2" +llm_model: "nvidia/nemotron-3-super-120b-a12b:free" +fallback_models: + - "deepseek/deepseek-chat-v3-0324:free" + - "google/gemma-3-27b-it:free" + - "meta-llama/llama-4-maverick:free" +openrouter_base_url: "https://openrouter.ai/api/v1" + +chroma_db_path: "chroma_db" +chroma_collection: "movies" +chroma_distance: "cosine" + +retrieval: + n_results: 20 + top_k: 5 + min_results_with_filter: 5 + similarity_threshold: 0.4 + +query_analyzer: + max_retries: 2 + backoff_base_seconds: 2 + +generation: + max_retries: 2 + backoff_base_seconds: 2 + history_turns: 2 + +data: + raw_path: "data/raw" + processed_path: "data/processed" + movies_file: "data/processed/movies.jsonl" + +logging: + db_path: "data/logs.db" diff --git a/data/processed/movies.jsonl b/data/processed/movies.jsonl new file mode 100644 index 0000000..14ba21e --- /dev/null +++ b/data/processed/movies.jsonl @@ -0,0 +1,4764 @@ +{"id": "19995", "title": "Avatar", "year": 2009, "duration_min": 162, "rating": 7.2, "genres": "Action, Adventure, Fantasy, Science Fiction", "genres_pipe": "|Action|Adventure|Fantasy|Science Fiction|", "keywords": "culture clash, future, space war, space colony, society, space travel, futuristic, romance, space, alien, tribe, alien planet, cgi, marine, soldier", "tags_pipe": "|culture clash|future|space war|space colony|society|space travel|futuristic|romance|space|alien|tribe|alien planet|cgi|marine|soldier|", "overview": "In the 22nd century, a paraplegic Marine is dispatched to the moon Pandora on a unique mission, but becomes torn between following orders and protecting an alien civilization.", "text_for_embedding": "Avatar (2009). Genres: Action, Adventure, Fantasy, Science Fiction. In the 22nd century, a paraplegic Marine is dispatched to the moon Pandora on a unique mission, but becomes torn between following orders and protecting an alien civilization.. Tags: culture clash, future, space war, space colony, society, space travel, futuristic, romance, space, alien, tribe, alien planet, cgi, marine, soldier"} +{"id": "285", "title": "Pirates of the Caribbean: At World's End", "year": 2007, "duration_min": 169, "rating": 6.9, "genres": "Adventure, Fantasy, Action", "genres_pipe": "|Adventure|Fantasy|Action|", "keywords": "ocean, drug abuse, exotic island, east india trading company, love of one's life, traitor, shipwreck, strong woman, ship, alliance, calypso, afterlife, fighter, pirate, swashbuckler", "tags_pipe": "|ocean|drug abuse|exotic island|east india trading company|love of one's life|traitor|shipwreck|strong woman|ship|alliance|calypso|afterlife|fighter|pirate|swashbuckler|", "overview": "Captain Barbossa, long believed to be dead, has come back to life and is headed to the edge of the Earth with Will Turner and Elizabeth Swann. But nothing is quite as it seems.", "text_for_embedding": "Pirates of the Caribbean: At World's End (2007). Genres: Adventure, Fantasy, Action. Captain Barbossa, long believed to be dead, has come back to life and is headed to the edge of the Earth with Will Turner and Elizabeth Swann. But nothing is quite as it seems.. Tags: ocean, drug abuse, exotic island, east india trading company, love of one's life, traitor, shipwreck, strong woman, ship, alliance, calypso, afterlife, fighter, pirate, swashbuckler"} +{"id": "206647", "title": "Spectre", "year": 2015, "duration_min": 148, "rating": 6.3, "genres": "Action, Adventure, Crime", "genres_pipe": "|Action|Adventure|Crime|", "keywords": "spy, based on novel, secret agent, sequel, mi6, british secret service, united kingdom", "tags_pipe": "|spy|based on novel|secret agent|sequel|mi6|british secret service|united kingdom|", "overview": "A cryptic message from Bond’s past sends him on a trail to uncover a sinister organization. While M battles political forces to keep the secret service alive, Bond peels back the layers of deceit to reveal the terrible truth behind SPECTRE.", "text_for_embedding": "Spectre (2015). Genres: Action, Adventure, Crime. A cryptic message from Bond’s past sends him on a trail to uncover a sinister organization. While M battles political forces to keep the secret service alive, Bond peels back the layers of deceit to reveal the terrible truth behind SPECTRE.. Tags: spy, based on novel, secret agent, sequel, mi6, british secret service, united kingdom"} +{"id": "49026", "title": "The Dark Knight Rises", "year": 2012, "duration_min": 165, "rating": 7.6, "genres": "Action, Crime, Drama, Thriller", "genres_pipe": "|Action|Crime|Drama|Thriller|", "keywords": "dc comics, crime fighter, terrorist, secret identity, burglar, hostage drama, time bomb, gotham city, vigilante, cover-up, superhero, villainess, tragic hero, terrorism, destruction", "tags_pipe": "|dc comics|crime fighter|terrorist|secret identity|burglar|hostage drama|time bomb|gotham city|vigilante|cover-up|superhero|villainess|tragic hero|terrorism|destruction|", "overview": "Following the death of District Attorney Harvey Dent, Batman assumes responsibility for Dent's crimes to protect the late attorney's reputation and is subsequently hunted by the Gotham City Police Department. Eight years later, Batman encounters the mysterious Selina Kyle and the villainous Bane, a new terrorist leader who overwhelms Gotham's finest. The Dark Knight resurfaces to protect a city that has branded him an enemy.", "text_for_embedding": "The Dark Knight Rises (2012). Genres: Action, Crime, Drama, Thriller. Following the death of District Attorney Harvey Dent, Batman assumes responsibility for Dent's crimes to protect the late attorney's reputation and is subsequently hunted by the Gotham City Police Department. Eight years later, Batman encounters the mysterious Selina Kyle and the villainous Bane, a new terrorist leader who overwhelms Gotham's finest. The Dark Knight resurfaces to protect a city that has branded him an enemy.. Tags: dc comics, crime fighter, terrorist, secret identity, burglar, hostage drama, time bomb, gotham city, vigilante, cover-up, superhero, villainess, tragic hero, terrorism, destruction"} +{"id": "49529", "title": "John Carter", "year": 2012, "duration_min": 132, "rating": 6.1, "genres": "Action, Adventure, Science Fiction", "genres_pipe": "|Action|Adventure|Science Fiction|", "keywords": "based on novel, mars, medallion, space travel, princess, alien, steampunk, martian, escape, edgar rice burroughs, alien race, superhuman strength, mars civilization, sword and planet, 19th century", "tags_pipe": "|based on novel|mars|medallion|space travel|princess|alien|steampunk|martian|escape|edgar rice burroughs|alien race|superhuman strength|mars civilization|sword and planet|19th century|", "overview": "John Carter is a war-weary, former military captain who's inexplicably transported to the mysterious and exotic planet of Barsoom (Mars) and reluctantly becomes embroiled in an epic conflict. It's a world on the brink of collapse, and Carter rediscovers his humanity when he realizes the survival of Barsoom and its people rests in his hands.", "text_for_embedding": "John Carter (2012). Genres: Action, Adventure, Science Fiction. John Carter is a war-weary, former military captain who's inexplicably transported to the mysterious and exotic planet of Barsoom (Mars) and reluctantly becomes embroiled in an epic conflict. It's a world on the brink of collapse, and Carter rediscovers his humanity when he realizes the survival of Barsoom and its people rests in his hands.. Tags: based on novel, mars, medallion, space travel, princess, alien, steampunk, martian, escape, edgar rice burroughs, alien race, superhuman strength, mars civilization, sword and planet, 19th century"} +{"id": "559", "title": "Spider-Man 3", "year": 2007, "duration_min": 139, "rating": 5.9, "genres": "Fantasy, Action, Adventure", "genres_pipe": "|Fantasy|Action|Adventure|", "keywords": "dual identity, amnesia, sandstorm, love of one's life, forgiveness, spider, wretch, death of a friend, egomania, sand, narcism, hostility, marvel comic, sequel, superhero", "tags_pipe": "|dual identity|amnesia|sandstorm|love of one's life|forgiveness|spider|wretch|death of a friend|egomania|sand|narcism|hostility|marvel comic|sequel|superhero|", "overview": "The seemingly invincible Spider-Man goes up against an all-new crop of villain – including the shape-shifting Sandman. While Spider-Man’s superpowers are altered by an alien organism, his alter ego, Peter Parker, deals with nemesis Eddie Brock and also gets caught up in a love triangle.", "text_for_embedding": "Spider-Man 3 (2007). Genres: Fantasy, Action, Adventure. The seemingly invincible Spider-Man goes up against an all-new crop of villain – including the shape-shifting Sandman. While Spider-Man’s superpowers are altered by an alien organism, his alter ego, Peter Parker, deals with nemesis Eddie Brock and also gets caught up in a love triangle.. Tags: dual identity, amnesia, sandstorm, love of one's life, forgiveness, spider, wretch, death of a friend, egomania, sand, narcism, hostility, marvel comic, sequel, superhero"} +{"id": "38757", "title": "Tangled", "year": 2010, "duration_min": 100, "rating": 7.4, "genres": "Animation, Family", "genres_pipe": "|Animation|Family|", "keywords": "hostage, magic, horse, fairy tale, musical, princess, animation, tower, blonde woman, selfishness, healing power, based on fairy tale, duringcreditsstinger, healing gift, animal sidekick", "tags_pipe": "|hostage|magic|horse|fairy tale|musical|princess|animation|tower|blonde woman|selfishness|healing power|based on fairy tale|duringcreditsstinger|healing gift|animal sidekick|", "overview": "When the kingdom's most wanted-and most charming-bandit Flynn Rider hides out in a mysterious tower, he's taken hostage by Rapunzel, a beautiful and feisty tower-bound teen with 70 feet of magical, golden hair. Flynn's curious captor, who's looking for her ticket out of the tower where she's been locked away for years, strikes a deal with the handsome thief and the unlikely duo sets off on an action-packed escapade, complete with a super-cop horse, an over-protective chameleon and a gruff gang of pub thugs.", "text_for_embedding": "Tangled (2010). Genres: Animation, Family. When the kingdom's most wanted-and most charming-bandit Flynn Rider hides out in a mysterious tower, he's taken hostage by Rapunzel, a beautiful and feisty tower-bound teen with 70 feet of magical, golden hair. Flynn's curious captor, who's looking for her ticket out of the tower where she's been locked away for years, strikes a deal with the handsome thief and the unlikely duo sets off on an action-packed escapade, complete with a super-cop horse, an over-protective chameleon and a gruff gang of pub thugs.. Tags: hostage, magic, horse, fairy tale, musical, princess, animation, tower, blonde woman, selfishness, healing power, based on fairy tale, duringcreditsstinger, healing gift, animal sidekick"} +{"id": "99861", "title": "Avengers: Age of Ultron", "year": 2015, "duration_min": 141, "rating": 7.3, "genres": "Action, Adventure, Science Fiction", "genres_pipe": "|Action|Adventure|Science Fiction|", "keywords": "marvel comic, sequel, superhero, based on comic book, vision, superhero team, duringcreditsstinger, marvel cinematic universe, 3d", "tags_pipe": "|marvel comic|sequel|superhero|based on comic book|vision|superhero team|duringcreditsstinger|marvel cinematic universe|3d|", "overview": "When Tony Stark tries to jumpstart a dormant peacekeeping program, things go awry and Earth’s Mightiest Heroes are put to the ultimate test as the fate of the planet hangs in the balance. As the villainous Ultron emerges, it is up to The Avengers to stop him from enacting his terrible plans, and soon uneasy alliances and unexpected action pave the way for an epic and unique global adventure.", "text_for_embedding": "Avengers: Age of Ultron (2015). Genres: Action, Adventure, Science Fiction. When Tony Stark tries to jumpstart a dormant peacekeeping program, things go awry and Earth’s Mightiest Heroes are put to the ultimate test as the fate of the planet hangs in the balance. As the villainous Ultron emerges, it is up to The Avengers to stop him from enacting his terrible plans, and soon uneasy alliances and unexpected action pave the way for an epic and unique global adventure.. Tags: marvel comic, sequel, superhero, based on comic book, vision, superhero team, duringcreditsstinger, marvel cinematic universe, 3d"} +{"id": "767", "title": "Harry Potter and the Half-Blood Prince", "year": 2009, "duration_min": 153, "rating": 7.4, "genres": "Adventure, Fantasy, Family", "genres_pipe": "|Adventure|Fantasy|Family|", "keywords": "witch, magic, broom, school of witchcraft, wizardry, apparition, teenage crush, werewolf", "tags_pipe": "|witch|magic|broom|school of witchcraft|wizardry|apparition|teenage crush|werewolf|", "overview": "As Harry begins his sixth year at Hogwarts, he discovers an old book marked as 'Property of the Half-Blood Prince', and begins to learn more about Lord Voldemort's dark past.", "text_for_embedding": "Harry Potter and the Half-Blood Prince (2009). Genres: Adventure, Fantasy, Family. As Harry begins his sixth year at Hogwarts, he discovers an old book marked as 'Property of the Half-Blood Prince', and begins to learn more about Lord Voldemort's dark past.. Tags: witch, magic, broom, school of witchcraft, wizardry, apparition, teenage crush, werewolf"} +{"id": "209112", "title": "Batman v Superman: Dawn of Justice", "year": 2016, "duration_min": 151, "rating": 5.7, "genres": "Action, Adventure, Fantasy", "genres_pipe": "|Action|Adventure|Fantasy|", "keywords": "dc comics, vigilante, superhero, based on comic book, revenge, super powers, clark kent, bruce wayne, dc extended universe", "tags_pipe": "|dc comics|vigilante|superhero|based on comic book|revenge|super powers|clark kent|bruce wayne|dc extended universe|", "overview": "Fearing the actions of a god-like Super Hero left unchecked, Gotham City’s own formidable, forceful vigilante takes on Metropolis’s most revered, modern-day savior, while the world wrestles with what sort of hero it really needs. And with Batman and Superman at war with one another, a new threat quickly arises, putting mankind in greater danger than it’s ever known before.", "text_for_embedding": "Batman v Superman: Dawn of Justice (2016). Genres: Action, Adventure, Fantasy. Fearing the actions of a god-like Super Hero left unchecked, Gotham City’s own formidable, forceful vigilante takes on Metropolis’s most revered, modern-day savior, while the world wrestles with what sort of hero it really needs. And with Batman and Superman at war with one another, a new threat quickly arises, putting mankind in greater danger than it’s ever known before.. Tags: dc comics, vigilante, superhero, based on comic book, revenge, super powers, clark kent, bruce wayne, dc extended universe"} +{"id": "1452", "title": "Superman Returns", "year": 2006, "duration_min": 154, "rating": 5.4, "genres": "Adventure, Fantasy, Action, Science Fiction", "genres_pipe": "|Adventure|Fantasy|Action|Science Fiction|", "keywords": "saving the world, dc comics, invulnerability, sequel, superhero, based on comic book, kryptonite, super powers, superhuman strength, lex luthor", "tags_pipe": "|saving the world|dc comics|invulnerability|sequel|superhero|based on comic book|kryptonite|super powers|superhuman strength|lex luthor|", "overview": "Superman returns to discover his 5-year absence has allowed Lex Luthor to walk free, and that those he was closest too felt abandoned and have moved on. Luthor plots his ultimate revenge that could see millions killed and change the face of the planet forever, as well as ridding himself of the Man of Steel.", "text_for_embedding": "Superman Returns (2006). Genres: Adventure, Fantasy, Action, Science Fiction. Superman returns to discover his 5-year absence has allowed Lex Luthor to walk free, and that those he was closest too felt abandoned and have moved on. Luthor plots his ultimate revenge that could see millions killed and change the face of the planet forever, as well as ridding himself of the Man of Steel.. Tags: saving the world, dc comics, invulnerability, sequel, superhero, based on comic book, kryptonite, super powers, superhuman strength, lex luthor"} +{"id": "10764", "title": "Quantum of Solace", "year": 2008, "duration_min": 106, "rating": 6.1, "genres": "Adventure, Action, Thriller, Crime", "genres_pipe": "|Adventure|Action|Thriller|Crime|", "keywords": "killing, undercover, secret agent, british secret service", "tags_pipe": "|killing|undercover|secret agent|british secret service|", "overview": "Quantum of Solace continues the adventures of James Bond after Casino Royale. Betrayed by Vesper, the woman he loved, 007 fights the urge to make his latest mission personal. Pursuing his determination to uncover the truth, Bond and M interrogate Mr. White, who reveals that the organization that blackmailed Vesper is far more complex and dangerous than anyone had imagined.", "text_for_embedding": "Quantum of Solace (2008). Genres: Adventure, Action, Thriller, Crime. Quantum of Solace continues the adventures of James Bond after Casino Royale. Betrayed by Vesper, the woman he loved, 007 fights the urge to make his latest mission personal. Pursuing his determination to uncover the truth, Bond and M interrogate Mr. White, who reveals that the organization that blackmailed Vesper is far more complex and dangerous than anyone had imagined.. Tags: killing, undercover, secret agent, british secret service"} +{"id": "58", "title": "Pirates of the Caribbean: Dead Man's Chest", "year": 2006, "duration_min": 151, "rating": 7.0, "genres": "Adventure, Fantasy, Action", "genres_pipe": "|Adventure|Fantasy|Action|", "keywords": "witch, fortune teller, bondage, exotic island, monster, captain, card game, east india trading company, compass, ship, daughter, pirate, swashbuckler, aftercreditsstinger", "tags_pipe": "|witch|fortune teller|bondage|exotic island|monster|captain|card game|east india trading company|compass|ship|daughter|pirate|swashbuckler|aftercreditsstinger|", "overview": "Captain Jack Sparrow works his way out of a blood debt with the ghostly Davey Jones, he also attempts to avoid eternal damnation.", "text_for_embedding": "Pirates of the Caribbean: Dead Man's Chest (2006). Genres: Adventure, Fantasy, Action. Captain Jack Sparrow works his way out of a blood debt with the ghostly Davey Jones, he also attempts to avoid eternal damnation.. Tags: witch, fortune teller, bondage, exotic island, monster, captain, card game, east india trading company, compass, ship, daughter, pirate, swashbuckler, aftercreditsstinger"} +{"id": "57201", "title": "The Lone Ranger", "year": 2013, "duration_min": 149, "rating": 5.9, "genres": "Action, Adventure, Western", "genres_pipe": "|Action|Adventure|Western|", "keywords": "texas, horse, survivor, texas ranger, partner, outlaw, escape, lawyer, train, lone ranger, comanche, the lone ranger, tonto", "tags_pipe": "|texas|horse|survivor|texas ranger|partner|outlaw|escape|lawyer|train|lone ranger|comanche|the lone ranger|tonto|", "overview": "The Texas Rangers chase down a gang of outlaws led by Butch Cavendish, but the gang ambushes the Rangers, seemingly killing them all. One survivor is found, however, by an American Indian named Tonto, who nurses him back to health. The Ranger, donning a mask and riding a white stallion named Silver, teams up with Tonto to bring the unscrupulous gang and others of that ilk to justice.", "text_for_embedding": "The Lone Ranger (2013). Genres: Action, Adventure, Western. The Texas Rangers chase down a gang of outlaws led by Butch Cavendish, but the gang ambushes the Rangers, seemingly killing them all. One survivor is found, however, by an American Indian named Tonto, who nurses him back to health. The Ranger, donning a mask and riding a white stallion named Silver, teams up with Tonto to bring the unscrupulous gang and others of that ilk to justice.. Tags: texas, horse, survivor, texas ranger, partner, outlaw, escape, lawyer, train, lone ranger, comanche, the lone ranger, tonto"} +{"id": "49521", "title": "Man of Steel", "year": 2013, "duration_min": 143, "rating": 6.5, "genres": "Action, Adventure, Fantasy, Science Fiction", "genres_pipe": "|Action|Adventure|Fantasy|Science Fiction|", "keywords": "saving the world, dc comics, superhero, based on comic book, superhuman, alien invasion, reboot, super powers, dc extended universe", "tags_pipe": "|saving the world|dc comics|superhero|based on comic book|superhuman|alien invasion|reboot|super powers|dc extended universe|", "overview": "A young boy learns that he has extraordinary powers and is not of this earth. As a young man, he journeys to discover where he came from and what he was sent here to do. But the hero in him must emerge if he is to save the world from annihilation and become the symbol of hope for all mankind.", "text_for_embedding": "Man of Steel (2013). Genres: Action, Adventure, Fantasy, Science Fiction. A young boy learns that he has extraordinary powers and is not of this earth. As a young man, he journeys to discover where he came from and what he was sent here to do. But the hero in him must emerge if he is to save the world from annihilation and become the symbol of hope for all mankind.. Tags: saving the world, dc comics, superhero, based on comic book, superhuman, alien invasion, reboot, super powers, dc extended universe"} +{"id": "2454", "title": "The Chronicles of Narnia: Prince Caspian", "year": 2008, "duration_min": 150, "rating": 6.3, "genres": "Adventure, Family, Fantasy", "genres_pipe": "|Adventure|Family|Fantasy|", "keywords": "based on novel, fictional place, brother sister relationship, lion, human being, wretch, leap in time, matter of life and death, faith, uncle, narnia, fantasy world", "tags_pipe": "|based on novel|fictional place|brother sister relationship|lion|human being|wretch|leap in time|matter of life and death|faith|uncle|narnia|fantasy world|", "overview": "One year after their incredible adventures in the Lion, the Witch and the Wardrobe, Peter, Edmund, Lucy and Susan Pevensie return to Narnia to aid a young prince whose life has been threatened by the evil King Miraz. Now, with the help of a colorful cast of new characters, including Trufflehunter the badger and Nikabrik the dwarf, the Pevensie clan embarks on an incredible quest to ensure that Narnia is returned to its rightful heir.", "text_for_embedding": "The Chronicles of Narnia: Prince Caspian (2008). Genres: Adventure, Family, Fantasy. One year after their incredible adventures in the Lion, the Witch and the Wardrobe, Peter, Edmund, Lucy and Susan Pevensie return to Narnia to aid a young prince whose life has been threatened by the evil King Miraz. Now, with the help of a colorful cast of new characters, including Trufflehunter the badger and Nikabrik the dwarf, the Pevensie clan embarks on an incredible quest to ensure that Narnia is returned to its rightful heir.. Tags: based on novel, fictional place, brother sister relationship, lion, human being, wretch, leap in time, matter of life and death, faith, uncle, narnia, fantasy world"} +{"id": "24428", "title": "The Avengers", "year": 2012, "duration_min": 143, "rating": 7.4, "genres": "Science Fiction, Action, Adventure", "genres_pipe": "|Science Fiction|Action|Adventure|", "keywords": "new york, shield, marvel comic, superhero, based on comic book, alien invasion, superhero team, aftercreditsstinger, duringcreditsstinger, marvel cinematic universe", "tags_pipe": "|new york|shield|marvel comic|superhero|based on comic book|alien invasion|superhero team|aftercreditsstinger|duringcreditsstinger|marvel cinematic universe|", "overview": "When an unexpected enemy emerges and threatens global safety and security, Nick Fury, director of the international peacekeeping agency known as S.H.I.E.L.D., finds himself in need of a team to pull the world back from the brink of disaster. Spanning the globe, a daring recruitment effort begins!", "text_for_embedding": "The Avengers (2012). Genres: Science Fiction, Action, Adventure. When an unexpected enemy emerges and threatens global safety and security, Nick Fury, director of the international peacekeeping agency known as S.H.I.E.L.D., finds himself in need of a team to pull the world back from the brink of disaster. Spanning the globe, a daring recruitment effort begins!. Tags: new york, shield, marvel comic, superhero, based on comic book, alien invasion, superhero team, aftercreditsstinger, duringcreditsstinger, marvel cinematic universe"} +{"id": "1865", "title": "Pirates of the Caribbean: On Stranger Tides", "year": 2011, "duration_min": 136, "rating": 6.4, "genres": "Adventure, Action, Fantasy", "genres_pipe": "|Adventure|Action|Fantasy|", "keywords": "sea, captain, mutiny, sword, prime minister, sailing, silver, ship, duke, mermaid, pirate, soldier, battle, swashbuckler, aftercreditsstinger", "tags_pipe": "|sea|captain|mutiny|sword|prime minister|sailing|silver|ship|duke|mermaid|pirate|soldier|battle|swashbuckler|aftercreditsstinger|", "overview": "Captain Jack Sparrow crosses paths with a woman from his past, and he's not sure if it's love -- or if she's a ruthless con artist who's using him to find the fabled Fountain of Youth. When she forces him aboard the Queen Anne's Revenge, the ship of the formidable pirate Blackbeard, Jack finds himself on an unexpected adventure in which he doesn't know who to fear more: Blackbeard or the woman from his past.", "text_for_embedding": "Pirates of the Caribbean: On Stranger Tides (2011). Genres: Adventure, Action, Fantasy. Captain Jack Sparrow crosses paths with a woman from his past, and he's not sure if it's love -- or if she's a ruthless con artist who's using him to find the fabled Fountain of Youth. When she forces him aboard the Queen Anne's Revenge, the ship of the formidable pirate Blackbeard, Jack finds himself on an unexpected adventure in which he doesn't know who to fear more: Blackbeard or the woman from his past.. Tags: sea, captain, mutiny, sword, prime minister, sailing, silver, ship, duke, mermaid, pirate, soldier, battle, swashbuckler, aftercreditsstinger"} +{"id": "41154", "title": "Men in Black 3", "year": 2012, "duration_min": 106, "rating": 6.2, "genres": "Action, Comedy, Science Fiction", "genres_pipe": "|Action|Comedy|Science Fiction|", "keywords": "time travel, time machine, alien, fictional government agency, seeing the future, changing history", "tags_pipe": "|time travel|time machine|alien|fictional government agency|seeing the future|changing history|", "overview": "Agents J (Will Smith) and K (Tommy Lee Jones) are back...in time. J has seen some inexplicable things in his 15 years with the Men in Black, but nothing, not even aliens, perplexes him as much as his wry, reticent partner. But when K's life and the fate of the planet are put at stake, Agent J will have to travel back in time to put things right. J discovers that there are secrets to the universe that K never told him - secrets that will reveal themselves as he teams up with the young Agent K (Josh Brolin) to save his partner, the agency, and the future of humankind.", "text_for_embedding": "Men in Black 3 (2012). Genres: Action, Comedy, Science Fiction. Agents J (Will Smith) and K (Tommy Lee Jones) are back...in time. J has seen some inexplicable things in his 15 years with the Men in Black, but nothing, not even aliens, perplexes him as much as his wry, reticent partner. But when K's life and the fate of the planet are put at stake, Agent J will have to travel back in time to put things right. J discovers that there are secrets to the universe that K never told him - secrets that will reveal themselves as he teams up with the young Agent K (Josh Brolin) to save his partner, the agency, and the future of humankind.. Tags: time travel, time machine, alien, fictional government agency, seeing the future, changing history"} +{"id": "122917", "title": "The Hobbit: The Battle of the Five Armies", "year": 2014, "duration_min": 144, "rating": 7.1, "genres": "Action, Adventure, Fantasy", "genres_pipe": "|Action|Adventure|Fantasy|", "keywords": "corruption, elves, dwarves, orcs, middle-earth (tolkien), hobbit, dragon, battle, unlikely friendship, epic battle, sword and sorcery", "tags_pipe": "|corruption|elves|dwarves|orcs|middle-earth (tolkien)|hobbit|dragon|battle|unlikely friendship|epic battle|sword and sorcery|", "overview": "Immediately after the events of The Desolation of Smaug, Bilbo and the dwarves try to defend Erebor's mountain of treasure from others who claim it: the men of the ruined Laketown and the elves of Mirkwood. Meanwhile an army of Orcs led by Azog the Defiler is marching on Erebor, fueled by the rise of the dark lord Sauron. Dwarves, elves and men must unite, and the hope for Middle-Earth falls into Bilbo's hands.", "text_for_embedding": "The Hobbit: The Battle of the Five Armies (2014). Genres: Action, Adventure, Fantasy. Immediately after the events of The Desolation of Smaug, Bilbo and the dwarves try to defend Erebor's mountain of treasure from others who claim it: the men of the ruined Laketown and the elves of Mirkwood. Meanwhile an army of Orcs led by Azog the Defiler is marching on Erebor, fueled by the rise of the dark lord Sauron. Dwarves, elves and men must unite, and the hope for Middle-Earth falls into Bilbo's hands.. Tags: corruption, elves, dwarves, orcs, middle-earth (tolkien), hobbit, dragon, battle, unlikely friendship, epic battle, sword and sorcery"} +{"id": "1930", "title": "The Amazing Spider-Man", "year": 2012, "duration_min": 136, "rating": 6.5, "genres": "Action, Adventure, Fantasy", "genres_pipe": "|Action|Adventure|Fantasy|", "keywords": "loss of father, vigilante, serum, marvel comic, scientific experiment, spider bite, masked vigilante, reboot, super powers, genetic engineering, social outcast, duringcreditsstinger", "tags_pipe": "|loss of father|vigilante|serum|marvel comic|scientific experiment|spider bite|masked vigilante|reboot|super powers|genetic engineering|social outcast|duringcreditsstinger|", "overview": "Peter Parker is an outcast high schooler abandoned by his parents as a boy, leaving him to be raised by his Uncle Ben and Aunt May. Like most teenagers, Peter is trying to figure out who he is and how he got to be the person he is today. As Peter discovers a mysterious briefcase that belonged to his father, he begins a quest to understand his parents' disappearance – leading him directly to Oscorp and the lab of Dr. Curt Connors, his father's former partner. As Spider-Man is set on a collision course with Connors' alter ego, The Lizard, Peter will make life-altering choices to use his powers and shape his destiny to become a hero.", "text_for_embedding": "The Amazing Spider-Man (2012). Genres: Action, Adventure, Fantasy. Peter Parker is an outcast high schooler abandoned by his parents as a boy, leaving him to be raised by his Uncle Ben and Aunt May. Like most teenagers, Peter is trying to figure out who he is and how he got to be the person he is today. As Peter discovers a mysterious briefcase that belonged to his father, he begins a quest to understand his parents' disappearance – leading him directly to Oscorp and the lab of Dr. Curt Connors, his father's former partner. As Spider-Man is set on a collision course with Connors' alter ego, The Lizard, Peter will make life-altering choices to use his powers and shape his destiny to become a hero.. Tags: loss of father, vigilante, serum, marvel comic, scientific experiment, spider bite, masked vigilante, reboot, super powers, genetic engineering, social outcast, duringcreditsstinger"} +{"id": "20662", "title": "Robin Hood", "year": 2010, "duration_min": 140, "rating": 6.2, "genres": "Action, Adventure", "genres_pipe": "|Action|Adventure|", "keywords": "robin hood, archer, knight, sherwood forest, bow and arrow, middle ages, medieval, king of england", "tags_pipe": "|robin hood|archer|knight|sherwood forest|bow and arrow|middle ages|medieval|king of england|", "overview": "When soldier Robin happens upon the dying Robert of Loxley, he promises to return the man's sword to his family in Nottingham. There, he assumes Robert's identity; romances his widow, Marion; and draws the ire of the town's sheriff and King John's henchman, Godfrey.", "text_for_embedding": "Robin Hood (2010). Genres: Action, Adventure. When soldier Robin happens upon the dying Robert of Loxley, he promises to return the man's sword to his family in Nottingham. There, he assumes Robert's identity; romances his widow, Marion; and draws the ire of the town's sheriff and King John's henchman, Godfrey.. Tags: robin hood, archer, knight, sherwood forest, bow and arrow, middle ages, medieval, king of england"} +{"id": "57158", "title": "The Hobbit: The Desolation of Smaug", "year": 2013, "duration_min": 161, "rating": 7.6, "genres": "Adventure, Fantasy", "genres_pipe": "|Adventure|Fantasy|", "keywords": "elves, dwarves, orcs, hobbit, dragon, wizard, sword and sorcery", "tags_pipe": "|elves|dwarves|orcs|hobbit|dragon|wizard|sword and sorcery|", "overview": "The Dwarves, Bilbo and Gandalf have successfully escaped the Misty Mountains, and Bilbo has gained the One Ring. They all continue their journey to get their gold back from the Dragon, Smaug.", "text_for_embedding": "The Hobbit: The Desolation of Smaug (2013). Genres: Adventure, Fantasy. The Dwarves, Bilbo and Gandalf have successfully escaped the Misty Mountains, and Bilbo has gained the One Ring. They all continue their journey to get their gold back from the Dragon, Smaug.. Tags: elves, dwarves, orcs, hobbit, dragon, wizard, sword and sorcery"} +{"id": "2268", "title": "The Golden Compass", "year": 2007, "duration_min": 113, "rating": 5.8, "genres": "Adventure, Fantasy", "genres_pipe": "|Adventure|Fantasy|", "keywords": "england, compass, experiment, lordship, uncle, polar bear, orphan, animal, based on young adult novel", "tags_pipe": "|england|compass|experiment|lordship|uncle|polar bear|orphan|animal|based on young adult novel|", "overview": "After overhearing a shocking secret, precocious orphan Lyra Belacqua trades her carefree existence roaming the halls of Jordan College for an otherworldly adventure in the far North, unaware that it's part of her destiny.", "text_for_embedding": "The Golden Compass (2007). Genres: Adventure, Fantasy. After overhearing a shocking secret, precocious orphan Lyra Belacqua trades her carefree existence roaming the halls of Jordan College for an otherworldly adventure in the far North, unaware that it's part of her destiny.. Tags: england, compass, experiment, lordship, uncle, polar bear, orphan, animal, based on young adult novel"} +{"id": "254", "title": "King Kong", "year": 2005, "duration_min": 187, "rating": 6.6, "genres": "Adventure, Drama, Action", "genres_pipe": "|Adventure|Drama|Action|", "keywords": "film business, screenplay, show business, film making, film producer, exotic island, monster, indigenous, ship, dinosaur", "tags_pipe": "|film business|screenplay|show business|film making|film producer|exotic island|monster|indigenous|ship|dinosaur|", "overview": "In 1933 New York, an overly ambitious movie producer coerces his cast and hired ship crew to travel to mysterious Skull Island, where they encounter Kong, a giant ape who is immediately smitten with the leading lady.", "text_for_embedding": "King Kong (2005). Genres: Adventure, Drama, Action. In 1933 New York, an overly ambitious movie producer coerces his cast and hired ship crew to travel to mysterious Skull Island, where they encounter Kong, a giant ape who is immediately smitten with the leading lady.. Tags: film business, screenplay, show business, film making, film producer, exotic island, monster, indigenous, ship, dinosaur"} +{"id": "597", "title": "Titanic", "year": 1997, "duration_min": 194, "rating": 7.5, "genres": "Drama, Romance, Thriller", "genres_pipe": "|Drama|Romance|Thriller|", "keywords": "shipwreck, iceberg, ship, panic, titanic, ocean liner, epic, rich woman - poor man, love, disaster, tragic love, class differences, imax, star crossed lovers, steerage", "tags_pipe": "|shipwreck|iceberg|ship|panic|titanic|ocean liner|epic|rich woman - poor man|love|disaster|tragic love|class differences|imax|star crossed lovers|steerage|", "overview": "84 years later, a 101-year-old woman named Rose DeWitt Bukater tells the story to her granddaughter Lizzy Calvert, Brock Lovett, Lewis Bodine, Bobby Buell and Anatoly Mikailavich on the Keldysh about her life set in April 10th 1912, on a ship called Titanic when young Rose boards the departing ship with the upper-class passengers and her mother, Ruth DeWitt Bukater, and her fiancé, Caledon Hockley. Meanwhile, a drifter and artist named Jack Dawson and his best friend Fabrizio De Rossi win third-class tickets to the ship in a game. And she explains the whole story from departure until the death of Titanic on its first and last voyage April 15th, 1912 at 2:20 in the morning.", "text_for_embedding": "Titanic (1997). Genres: Drama, Romance, Thriller. 84 years later, a 101-year-old woman named Rose DeWitt Bukater tells the story to her granddaughter Lizzy Calvert, Brock Lovett, Lewis Bodine, Bobby Buell and Anatoly Mikailavich on the Keldysh about her life set in April 10th 1912, on a ship called Titanic when young Rose boards the departing ship with the upper-class passengers and her mother, Ruth DeWitt Bukater, and her fiancé, Caledon Hockley. Meanwhile, a drifter and artist named Jack Dawson and his best friend Fabrizio De Rossi win third-class tickets to the ship in a game. And she explains the whole story from departure until the death of Titanic on its first and last voyage April 15th, 1912 at 2:20 in the morning.. Tags: shipwreck, iceberg, ship, panic, titanic, ocean liner, epic, rich woman - poor man, love, disaster, tragic love, class differences, imax, star crossed lovers, steerage"} +{"id": "271110", "title": "Captain America: Civil War", "year": 2016, "duration_min": 147, "rating": 7.1, "genres": "Adventure, Action, Science Fiction", "genres_pipe": "|Adventure|Action|Science Fiction|", "keywords": "civil war, war, marvel comic, sequel, superhero, based on comic book, imax, aftercreditsstinger, duringcreditsstinger, marvel cinematic universe, 3d", "tags_pipe": "|civil war|war|marvel comic|sequel|superhero|based on comic book|imax|aftercreditsstinger|duringcreditsstinger|marvel cinematic universe|3d|", "overview": "Following the events of Age of Ultron, the collective governments of the world pass an act designed to regulate all superhuman activity. This polarizes opinion amongst the Avengers, causing two factions to side with Iron Man or Captain America, which causes an epic battle between former allies.", "text_for_embedding": "Captain America: Civil War (2016). Genres: Adventure, Action, Science Fiction. Following the events of Age of Ultron, the collective governments of the world pass an act designed to regulate all superhuman activity. This polarizes opinion amongst the Avengers, causing two factions to side with Iron Man or Captain America, which causes an epic battle between former allies.. Tags: civil war, war, marvel comic, sequel, superhero, based on comic book, imax, aftercreditsstinger, duringcreditsstinger, marvel cinematic universe, 3d"} +{"id": "44833", "title": "Battleship", "year": 2012, "duration_min": 131, "rating": 5.5, "genres": "Thriller, Action, Adventure, Science Fiction", "genres_pipe": "|Thriller|Action|Adventure|Science Fiction|", "keywords": "fight, u.s. navy, mind reading, hong kong, soccer, scientist, fictional war, naval, armada, battleship, naval combat, jds myoko, lost communication, taser, buoy", "tags_pipe": "|fight|u.s. navy|mind reading|hong kong|soccer|scientist|fictional war|naval|armada|battleship|naval combat|jds myoko|lost communication|taser|buoy|", "overview": "When mankind beams a radio signal into space, a reply comes from ‘Planet G’, in the form of several alien crafts that splash down in the waters off Hawaii. Lieutenant Alex Hopper is a weapons officer assigned to the USS John Paul Jones, part of an international naval coalition which becomes the world's last hope for survival as they engage the hostile alien force of unimaginable strength. While taking on the invaders, Hopper must also try to live up to the potential his brother, and his fiancée's father, Admiral Shane, expect of him.", "text_for_embedding": "Battleship (2012). Genres: Thriller, Action, Adventure, Science Fiction. When mankind beams a radio signal into space, a reply comes from ‘Planet G’, in the form of several alien crafts that splash down in the waters off Hawaii. Lieutenant Alex Hopper is a weapons officer assigned to the USS John Paul Jones, part of an international naval coalition which becomes the world's last hope for survival as they engage the hostile alien force of unimaginable strength. While taking on the invaders, Hopper must also try to live up to the potential his brother, and his fiancée's father, Admiral Shane, expect of him.. Tags: fight, u.s. navy, mind reading, hong kong, soccer, scientist, fictional war, naval, armada, battleship, naval combat, jds myoko, lost communication, taser, buoy"} +{"id": "135397", "title": "Jurassic World", "year": 2015, "duration_min": 124, "rating": 6.5, "genres": "Action, Adventure, Science Fiction, Thriller", "genres_pipe": "|Action|Adventure|Science Fiction|Thriller|", "keywords": "monster, dna, tyrannosaurus rex, velociraptor, island, sequel, suspense, disaster, escape, dinosaur, amusement park, animal attack, theme park, jurassic park, 3d", "tags_pipe": "|monster|dna|tyrannosaurus rex|velociraptor|island|sequel|suspense|disaster|escape|dinosaur|amusement park|animal attack|theme park|jurassic park|3d|", "overview": "Twenty-two years after the events of Jurassic Park, Isla Nublar now features a fully functioning dinosaur theme park, Jurassic World, as originally envisioned by John Hammond.", "text_for_embedding": "Jurassic World (2015). Genres: Action, Adventure, Science Fiction, Thriller. Twenty-two years after the events of Jurassic Park, Isla Nublar now features a fully functioning dinosaur theme park, Jurassic World, as originally envisioned by John Hammond.. Tags: monster, dna, tyrannosaurus rex, velociraptor, island, sequel, suspense, disaster, escape, dinosaur, amusement park, animal attack, theme park, jurassic park, 3d"} +{"id": "37724", "title": "Skyfall", "year": 2012, "duration_min": 143, "rating": 6.9, "genres": "Action, Adventure, Thriller", "genres_pipe": "|Action|Adventure|Thriller|", "keywords": "spy, secret agent, sociopath, killer, art gallery, british secret service, istanbul turkey, imax, uzi, booby trap, impersonating a police officer, macao", "tags_pipe": "|spy|secret agent|sociopath|killer|art gallery|british secret service|istanbul turkey|imax|uzi|booby trap|impersonating a police officer|macao|", "overview": "When Bond's latest assignment goes gravely wrong and agents around the world are exposed, MI6 is attacked forcing M to relocate the agency. These events cause her authority and position to be challenged by Gareth Mallory, the new Chairman of the Intelligence and Security Committee. With MI6 now compromised from both inside and out, M is left with one ally she can trust: Bond. 007 takes to the shadows - aided only by field agent, Eve - following a trail to the mysterious Silva, whose lethal and hidden motives have yet to reveal themselves.", "text_for_embedding": "Skyfall (2012). Genres: Action, Adventure, Thriller. When Bond's latest assignment goes gravely wrong and agents around the world are exposed, MI6 is attacked forcing M to relocate the agency. These events cause her authority and position to be challenged by Gareth Mallory, the new Chairman of the Intelligence and Security Committee. With MI6 now compromised from both inside and out, M is left with one ally she can trust: Bond. 007 takes to the shadows - aided only by field agent, Eve - following a trail to the mysterious Silva, whose lethal and hidden motives have yet to reveal themselves.. Tags: spy, secret agent, sociopath, killer, art gallery, british secret service, istanbul turkey, imax, uzi, booby trap, impersonating a police officer, macao"} +{"id": "558", "title": "Spider-Man 2", "year": 2004, "duration_min": 127, "rating": 6.7, "genres": "Action, Adventure, Fantasy", "genres_pipe": "|Action|Adventure|Fantasy|", "keywords": "dual identity, love of one's life, pizza boy, marvel comic, sequel, superhero, doctor, scientist, tentacle, death, super villain", "tags_pipe": "|dual identity|love of one's life|pizza boy|marvel comic|sequel|superhero|doctor|scientist|tentacle|death|super villain|", "overview": "Peter Parker is going through a major identity crisis. Burned out from being Spider-Man, he decides to shelve his superhero alter ego, which leaves the city suffering in the wake of carnage left by the evil Doc Ock. In the meantime, Parker still can't act on his feelings for Mary Jane Watson, a girl he's loved since childhood.", "text_for_embedding": "Spider-Man 2 (2004). Genres: Action, Adventure, Fantasy. Peter Parker is going through a major identity crisis. Burned out from being Spider-Man, he decides to shelve his superhero alter ego, which leaves the city suffering in the wake of carnage left by the evil Doc Ock. In the meantime, Parker still can't act on his feelings for Mary Jane Watson, a girl he's loved since childhood.. Tags: dual identity, love of one's life, pizza boy, marvel comic, sequel, superhero, doctor, scientist, tentacle, death, super villain"} +{"id": "68721", "title": "Iron Man 3", "year": 2013, "duration_min": 130, "rating": 6.8, "genres": "Action, Adventure, Science Fiction", "genres_pipe": "|Action|Adventure|Science Fiction|", "keywords": "terrorist, war on terror, tennessee, malibu, marvel comic, superhero, based on comic book, tony stark, iron man, aftercreditsstinger, marvel cinematic universe, mandarin, 3d, war machine, iron patriot", "tags_pipe": "|terrorist|war on terror|tennessee|malibu|marvel comic|superhero|based on comic book|tony stark|iron man|aftercreditsstinger|marvel cinematic universe|mandarin|3d|war machine|iron patriot|", "overview": "When Tony Stark's world is torn apart by a formidable terrorist called the Mandarin, he starts an odyssey of rebuilding and retribution.", "text_for_embedding": "Iron Man 3 (2013). Genres: Action, Adventure, Science Fiction. When Tony Stark's world is torn apart by a formidable terrorist called the Mandarin, he starts an odyssey of rebuilding and retribution.. Tags: terrorist, war on terror, tennessee, malibu, marvel comic, superhero, based on comic book, tony stark, iron man, aftercreditsstinger, marvel cinematic universe, mandarin, 3d, war machine, iron patriot"} +{"id": "12155", "title": "Alice in Wonderland", "year": 2010, "duration_min": 108, "rating": 6.4, "genres": "Family, Fantasy, Adventure", "genres_pipe": "|Family|Fantasy|Adventure|", "keywords": "based on novel, fictional place, queen, fantasy, alice in wonderland, fantasy world, 3d", "tags_pipe": "|based on novel|fictional place|queen|fantasy|alice in wonderland|fantasy world|3d|", "overview": "Alice, an unpretentious and individual 19-year-old, is betrothed to a dunce of an English nobleman. At her engagement party, she escapes the crowd to consider whether to go through with the marriage and falls down a hole in the garden after spotting an unusual rabbit. Arriving in a strange and surreal place called 'Underland,' she finds herself in a world that resembles the nightmares she had as a child, filled with talking animals, villainous queens and knights, and frumious bandersnatches. Alice realizes that she is there for a reason – to conquer the horrific Jabberwocky and restore the rightful queen to her throne.", "text_for_embedding": "Alice in Wonderland (2010). Genres: Family, Fantasy, Adventure. Alice, an unpretentious and individual 19-year-old, is betrothed to a dunce of an English nobleman. At her engagement party, she escapes the crowd to consider whether to go through with the marriage and falls down a hole in the garden after spotting an unusual rabbit. Arriving in a strange and surreal place called 'Underland,' she finds herself in a world that resembles the nightmares she had as a child, filled with talking animals, villainous queens and knights, and frumious bandersnatches. Alice realizes that she is there for a reason – to conquer the horrific Jabberwocky and restore the rightful queen to her throne.. Tags: based on novel, fictional place, queen, fantasy, alice in wonderland, fantasy world, 3d"} +{"id": "36668", "title": "X-Men: The Last Stand", "year": 2006, "duration_min": 104, "rating": 6.3, "genres": "Adventure, Action, Science Fiction, Thriller", "genres_pipe": "|Adventure|Action|Science Fiction|Thriller|", "keywords": "mutant, marvel comic, based on comic book, superhuman, beast, cyclops, aftercreditsstinger", "tags_pipe": "|mutant|marvel comic|based on comic book|superhuman|beast|cyclops|aftercreditsstinger|", "overview": "When a cure is found to treat mutations, lines are drawn amongst the X-Men and The Brotherhood, a band of powerful mutants organized under Xavier's former ally, Magneto.", "text_for_embedding": "X-Men: The Last Stand (2006). Genres: Adventure, Action, Science Fiction, Thriller. When a cure is found to treat mutations, lines are drawn amongst the X-Men and The Brotherhood, a band of powerful mutants organized under Xavier's former ally, Magneto.. Tags: mutant, marvel comic, based on comic book, superhuman, beast, cyclops, aftercreditsstinger"} +{"id": "62211", "title": "Monsters University", "year": 2013, "duration_min": 104, "rating": 7.0, "genres": "Animation, Family", "genres_pipe": "|Animation|Family|", "keywords": "monster, dormitory, games, animation, best friend, university, scary, aftercreditsstinger", "tags_pipe": "|monster|dormitory|games|animation|best friend|university|scary|aftercreditsstinger|", "overview": "A look at the relationship between Mike and Sulley during their days at Monsters University — when they weren't necessarily the best of friends.", "text_for_embedding": "Monsters University (2013). Genres: Animation, Family. A look at the relationship between Mike and Sulley during their days at Monsters University — when they weren't necessarily the best of friends.. Tags: monster, dormitory, games, animation, best friend, university, scary, aftercreditsstinger"} +{"id": "8373", "title": "Transformers: Revenge of the Fallen", "year": 2009, "duration_min": 150, "rating": 6.0, "genres": "Science Fiction, Action, Adventure", "genres_pipe": "|Science Fiction|Action|Adventure|", "keywords": "egypt, sun, chaos, symbol, artifact, transformers, tank, robot, imax, duringcreditsstinger", "tags_pipe": "|egypt|sun|chaos|symbol|artifact|transformers|tank|robot|imax|duringcreditsstinger|", "overview": "Sam Witwicky leaves the Autobots behind for a normal life. But when his mind is filled with cryptic symbols, the Decepticons target him and he is dragged back into the Transformers' war.", "text_for_embedding": "Transformers: Revenge of the Fallen (2009). Genres: Science Fiction, Action, Adventure. Sam Witwicky leaves the Autobots behind for a normal life. But when his mind is filled with cryptic symbols, the Decepticons target him and he is dragged back into the Transformers' war.. Tags: egypt, sun, chaos, symbol, artifact, transformers, tank, robot, imax, duringcreditsstinger"} +{"id": "91314", "title": "Transformers: Age of Extinction", "year": 2014, "duration_min": 165, "rating": 5.8, "genres": "Science Fiction, Action, Adventure", "genres_pipe": "|Science Fiction|Action|Adventure|", "keywords": "sequel, alien, transformers, giant robot, robot, imax, transforming robot", "tags_pipe": "|sequel|alien|transformers|giant robot|robot|imax|transforming robot|", "overview": "As humanity picks up the pieces, following the conclusion of \"Transformers: Dark of the Moon,\" Autobots and Decepticons have all but vanished from the face of the planet. However, a group of powerful, ingenious businessman and scientists attempt to learn from past Transformer incursions and push the boundaries of technology beyond what they can control - all while an ancient, powerful Transformer menace sets Earth in his cross-hairs.", "text_for_embedding": "Transformers: Age of Extinction (2014). Genres: Science Fiction, Action, Adventure. As humanity picks up the pieces, following the conclusion of \"Transformers: Dark of the Moon,\" Autobots and Decepticons have all but vanished from the face of the planet. However, a group of powerful, ingenious businessman and scientists attempt to learn from past Transformer incursions and push the boundaries of technology beyond what they can control - all while an ancient, powerful Transformer menace sets Earth in his cross-hairs.. Tags: sequel, alien, transformers, giant robot, robot, imax, transforming robot"} +{"id": "68728", "title": "Oz: The Great and Powerful", "year": 2013, "duration_min": 130, "rating": 5.7, "genres": "Fantasy, Adventure, Family", "genres_pipe": "|Fantasy|Adventure|Family|", "keywords": "circus, witch, magic, hope, illusion, lost, magic trick, wizard, 3d", "tags_pipe": "|circus|witch|magic|hope|illusion|lost|magic trick|wizard|3d|", "overview": "Oscar Diggs, a small-time circus illusionist and con-artist, is whisked from Kansas to the Land of Oz where the inhabitants assume he's the great wizard of prophecy, there to save Oz from the clutches of evil.", "text_for_embedding": "Oz: The Great and Powerful (2013). Genres: Fantasy, Adventure, Family. Oscar Diggs, a small-time circus illusionist and con-artist, is whisked from Kansas to the Land of Oz where the inhabitants assume he's the great wizard of prophecy, there to save Oz from the clutches of evil.. Tags: circus, witch, magic, hope, illusion, lost, magic trick, wizard, 3d"} +{"id": "102382", "title": "The Amazing Spider-Man 2", "year": 2014, "duration_min": 142, "rating": 6.5, "genres": "Action, Adventure, Fantasy", "genres_pipe": "|Action|Adventure|Fantasy|", "keywords": "obsession, marvel comic, sequel, based on comic book, electrocution, medical experiment, electricity, super powers", "tags_pipe": "|obsession|marvel comic|sequel|based on comic book|electrocution|medical experiment|electricity|super powers|", "overview": "For Peter Parker, life is busy. Between taking out the bad guys as Spider-Man and spending time with the person he loves, Gwen Stacy, high school graduation cannot come quickly enough. Peter has not forgotten about the promise he made to Gwen’s father to protect her by staying away, but that is a promise he cannot keep. Things will change for Peter when a new villain, Electro, emerges, an old friend, Harry Osborn, returns, and Peter uncovers new clues about his past.", "text_for_embedding": "The Amazing Spider-Man 2 (2014). Genres: Action, Adventure, Fantasy. For Peter Parker, life is busy. Between taking out the bad guys as Spider-Man and spending time with the person he loves, Gwen Stacy, high school graduation cannot come quickly enough. Peter has not forgotten about the promise he made to Gwen’s father to protect her by staying away, but that is a promise he cannot keep. Things will change for Peter when a new villain, Electro, emerges, an old friend, Harry Osborn, returns, and Peter uncovers new clues about his past.. Tags: obsession, marvel comic, sequel, based on comic book, electrocution, medical experiment, electricity, super powers"} +{"id": "20526", "title": "TRON: Legacy", "year": 2010, "duration_min": 125, "rating": 6.3, "genres": "Adventure, Action, Science Fiction", "genres_pipe": "|Adventure|Action|Science Fiction|", "keywords": "artificial intelligence, secret identity, computer program, dystopia, computer, deception, duel, motorcycle, neon light, autocracy", "tags_pipe": "|artificial intelligence|secret identity|computer program|dystopia|computer|deception|duel|motorcycle|neon light|autocracy|", "overview": "Sam Flynn, the tech-savvy and daring son of Kevin Flynn, investigates his father's disappearance and is pulled into The Grid. With the help of a mysterious program named Quorra, Sam quests to stop evil dictator Clu from crossing into the real world.", "text_for_embedding": "TRON: Legacy (2010). Genres: Adventure, Action, Science Fiction. Sam Flynn, the tech-savvy and daring son of Kevin Flynn, investigates his father's disappearance and is pulled into The Grid. With the help of a mysterious program named Quorra, Sam quests to stop evil dictator Clu from crossing into the real world.. Tags: artificial intelligence, secret identity, computer program, dystopia, computer, deception, duel, motorcycle, neon light, autocracy"} +{"id": "49013", "title": "Cars 2", "year": 2011, "duration_min": 106, "rating": 5.8, "genres": "Animation, Family, Adventure, Comedy", "genres_pipe": "|Animation|Family|Adventure|Comedy|", "keywords": "car race, sequel, comedy, anthropomorphism, best friend, duringcreditsstinger", "tags_pipe": "|car race|sequel|comedy|anthropomorphism|best friend|duringcreditsstinger|", "overview": "Star race car Lightning McQueen and his pal Mater head overseas to compete in the World Grand Prix race. But the road to the championship becomes rocky as Mater gets caught up in an intriguing adventure of his own: international espionage.", "text_for_embedding": "Cars 2 (2011). Genres: Animation, Family, Adventure, Comedy. Star race car Lightning McQueen and his pal Mater head overseas to compete in the World Grand Prix race. But the road to the championship becomes rocky as Mater gets caught up in an intriguing adventure of his own: international espionage.. Tags: car race, sequel, comedy, anthropomorphism, best friend, duringcreditsstinger"} +{"id": "44912", "title": "Green Lantern", "year": 2011, "duration_min": 114, "rating": 5.1, "genres": "Adventure, Action, Thriller, Science Fiction", "genres_pipe": "|Adventure|Action|Thriller|Science Fiction|", "keywords": "dc comics, transformation, superhero, alien, alien infection, magical object, protector, super powers, origin, 3d", "tags_pipe": "|dc comics|transformation|superhero|alien|alien infection|magical object|protector|super powers|origin|3d|", "overview": "For centuries, a small but powerful force of warriors called the Green Lantern Corps has sworn to keep intergalactic order. Each Green Lantern wears a ring that grants him superpowers. But when a new enemy called Parallax threatens to destroy the balance of power in the Universe, their fate and the fate of Earth lie in the hands of the first human ever recruited.", "text_for_embedding": "Green Lantern (2011). Genres: Adventure, Action, Thriller, Science Fiction. For centuries, a small but powerful force of warriors called the Green Lantern Corps has sworn to keep intergalactic order. Each Green Lantern wears a ring that grants him superpowers. But when a new enemy called Parallax threatens to destroy the balance of power in the Universe, their fate and the fate of Earth lie in the hands of the first human ever recruited.. Tags: dc comics, transformation, superhero, alien, alien infection, magical object, protector, super powers, origin, 3d"} +{"id": "10193", "title": "Toy Story 3", "year": 2010, "duration_min": 103, "rating": 7.6, "genres": "Animation, Family, Comedy", "genres_pipe": "|Animation|Family|Comedy|", "keywords": "hostage, college, toy, barbie, animation, escape, day care, teddy bear, duringcreditsstinger, toy comes to life, personification, inanimate objects coming to life, toy story", "tags_pipe": "|hostage|college|toy|barbie|animation|escape|day care|teddy bear|duringcreditsstinger|toy comes to life|personification|inanimate objects coming to life|toy story|", "overview": "Woody, Buzz, and the rest of Andy's toys haven't been played with in years. With Andy about to go to college, the gang find themselves accidentally left at a nefarious day care center. The toys must band together to escape and return home to Andy.", "text_for_embedding": "Toy Story 3 (2010). Genres: Animation, Family, Comedy. Woody, Buzz, and the rest of Andy's toys haven't been played with in years. With Andy about to go to college, the gang find themselves accidentally left at a nefarious day care center. The toys must band together to escape and return home to Andy.. Tags: hostage, college, toy, barbie, animation, escape, day care, teddy bear, duringcreditsstinger, toy comes to life, personification, inanimate objects coming to life, toy story"} +{"id": "534", "title": "Terminator Salvation", "year": 2009, "duration_min": 115, "rating": 5.9, "genres": "Action, Science Fiction, Thriller", "genres_pipe": "|Action|Science Fiction|Thriller|", "keywords": "saving the world, artificial intelligence, prophecy, san francisco, cyborg, killer robot, gas station, post-apocalyptic, dystopia, army, firearm, wartime, los angeles", "tags_pipe": "|saving the world|artificial intelligence|prophecy|san francisco|cyborg|killer robot|gas station|post-apocalyptic|dystopia|army|firearm|wartime|los angeles|", "overview": "All grown up in post-apocalyptic 2018, John Connor must lead the resistance of humans against the increasingly dominating militaristic robots. But when Marcus Wright appears, his existence confuses the mission as Connor tries to determine whether Wright has come from the future or the past -- and whether he's friend or foe.", "text_for_embedding": "Terminator Salvation (2009). Genres: Action, Science Fiction, Thriller. All grown up in post-apocalyptic 2018, John Connor must lead the resistance of humans against the increasingly dominating militaristic robots. But when Marcus Wright appears, his existence confuses the mission as Connor tries to determine whether Wright has come from the future or the past -- and whether he's friend or foe.. Tags: saving the world, artificial intelligence, prophecy, san francisco, cyborg, killer robot, gas station, post-apocalyptic, dystopia, army, firearm, wartime, los angeles"} +{"id": "168259", "title": "Furious 7", "year": 2015, "duration_min": 137, "rating": 7.3, "genres": "Action", "genres_pipe": "|Action|", "keywords": "car race, speed, revenge, suspense, car, race, muscle car", "tags_pipe": "|car race|speed|revenge|suspense|car|race|muscle car|", "overview": "Deckard Shaw seeks revenge against Dominic Toretto and his family for his comatose brother.", "text_for_embedding": "Furious 7 (2015). Genres: Action. Deckard Shaw seeks revenge against Dominic Toretto and his family for his comatose brother.. Tags: car race, speed, revenge, suspense, car, race, muscle car"} +{"id": "72190", "title": "World War Z", "year": 2013, "duration_min": 116, "rating": 6.7, "genres": "Action, Drama, Horror, Science Fiction, Thriller", "genres_pipe": "|Action|Drama|Horror|Science Fiction|Thriller|", "keywords": "dystopia, apocalypse, zombie, nuclear weapons, multiple perspectives, zombie apocalypse", "tags_pipe": "|dystopia|apocalypse|zombie|nuclear weapons|multiple perspectives|zombie apocalypse|", "overview": "Life for former United Nations investigator Gerry Lane and his family seems content. Suddenly, the world is plagued by a mysterious infection turning whole human populations into rampaging mindless zombies. After barely escaping the chaos, Lane is persuaded to go on a mission to investigate this disease. What follows is a perilous trek around the world where Lane must brave horrific dangers and long odds to find answers before human civilization falls.", "text_for_embedding": "World War Z (2013). Genres: Action, Drama, Horror, Science Fiction, Thriller. Life for former United Nations investigator Gerry Lane and his family seems content. Suddenly, the world is plagued by a mysterious infection turning whole human populations into rampaging mindless zombies. After barely escaping the chaos, Lane is persuaded to go on a mission to investigate this disease. What follows is a perilous trek around the world where Lane must brave horrific dangers and long odds to find answers before human civilization falls.. Tags: dystopia, apocalypse, zombie, nuclear weapons, multiple perspectives, zombie apocalypse"} +{"id": "127585", "title": "X-Men: Days of Future Past", "year": 2014, "duration_min": 131, "rating": 7.5, "genres": "Action, Adventure, Fantasy, Science Fiction", "genres_pipe": "|Action|Adventure|Fantasy|Science Fiction|", "keywords": "1970s, mutant, time travel, marvel comic, based on comic book, superhuman, storm, beast, aftercreditsstinger, changing the past or future", "tags_pipe": "|1970s|mutant|time travel|marvel comic|based on comic book|superhuman|storm|beast|aftercreditsstinger|changing the past or future|", "overview": "The ultimate X-Men ensemble fights a war for the survival of the species across two time periods as they join forces with their younger selves in an epic battle that must change the past – to save our future.", "text_for_embedding": "X-Men: Days of Future Past (2014). Genres: Action, Adventure, Fantasy, Science Fiction. The ultimate X-Men ensemble fights a war for the survival of the species across two time periods as they join forces with their younger selves in an epic battle that must change the past – to save our future.. Tags: 1970s, mutant, time travel, marvel comic, based on comic book, superhuman, storm, beast, aftercreditsstinger, changing the past or future"} +{"id": "54138", "title": "Star Trek Into Darkness", "year": 2013, "duration_min": 132, "rating": 7.4, "genres": "Action, Adventure, Science Fiction", "genres_pipe": "|Action|Adventure|Science Fiction|", "keywords": "spacecraft, friendship, sequel, futuristic, space, alien, imax, space opera, terrorist bombing, 3d", "tags_pipe": "|spacecraft|friendship|sequel|futuristic|space|alien|imax|space opera|terrorist bombing|3d|", "overview": "When the crew of the Enterprise is called back home, they find an unstoppable force of terror from within their own organization has detonated the fleet and everything it stands for, leaving our world in a state of crisis. With a personal score to settle, Captain Kirk leads a manhunt to a war-zone world to capture a one man weapon of mass destruction. As our heroes are propelled into an epic chess game of life and death, love will be challenged, friendships will be torn apart, and sacrifices must be made for the only family Kirk has left: his crew.", "text_for_embedding": "Star Trek Into Darkness (2013). Genres: Action, Adventure, Science Fiction. When the crew of the Enterprise is called back home, they find an unstoppable force of terror from within their own organization has detonated the fleet and everything it stands for, leaving our world in a state of crisis. With a personal score to settle, Captain Kirk leads a manhunt to a war-zone world to capture a one man weapon of mass destruction. As our heroes are propelled into an epic chess game of life and death, love will be challenged, friendships will be torn apart, and sacrifices must be made for the only family Kirk has left: his crew.. Tags: spacecraft, friendship, sequel, futuristic, space, alien, imax, space opera, terrorist bombing, 3d"} +{"id": "81005", "title": "Jack the Giant Slayer", "year": 2013, "duration_min": 114, "rating": 5.5, "genres": "Action, Family, Fantasy", "genres_pipe": "|Action|Family|Fantasy|", "keywords": "based on fairy tale, giant", "tags_pipe": "|based on fairy tale|giant|", "overview": "The story of an ancient war that is reignited when a young farmhand unwittingly opens a gateway between our world and a fearsome race of giants. Unleashed on the Earth for the first time in centuries, the giants strive to reclaim the land they once lost, forcing the young man, Jack into the battle of his life to stop them. Fighting for a kingdom, its people, and the love of a brave princess, he comes face to face with the unstoppable warriors he thought only existed in legend–and gets the chance to become a legend himself.", "text_for_embedding": "Jack the Giant Slayer (2013). Genres: Action, Family, Fantasy. The story of an ancient war that is reignited when a young farmhand unwittingly opens a gateway between our world and a fearsome race of giants. Unleashed on the Earth for the first time in centuries, the giants strive to reclaim the land they once lost, forcing the young man, Jack into the battle of his life to stop them. Fighting for a kingdom, its people, and the love of a brave princess, he comes face to face with the unstoppable warriors he thought only existed in legend–and gets the chance to become a legend himself.. Tags: based on fairy tale, giant"} +{"id": "64682", "title": "The Great Gatsby", "year": 2013, "duration_min": 143, "rating": 7.3, "genres": "Drama, Romance", "genres_pipe": "|Drama|Romance|", "keywords": "based on novel, infidelity, obsession, hope, 3d", "tags_pipe": "|based on novel|infidelity|obsession|hope|3d|", "overview": "An adaptation of F. Scott Fitzgerald's Long Island-set novel, where Midwesterner Nick Carraway is lured into the lavish world of his neighbor, Jay Gatsby. Soon enough, however, Carraway will see through the cracks of Gatsby's nouveau riche existence, where obsession, madness, and tragedy await.", "text_for_embedding": "The Great Gatsby (2013). Genres: Drama, Romance. An adaptation of F. Scott Fitzgerald's Long Island-set novel, where Midwesterner Nick Carraway is lured into the lavish world of his neighbor, Jay Gatsby. Soon enough, however, Carraway will see through the cracks of Gatsby's nouveau riche existence, where obsession, madness, and tragedy await.. Tags: based on novel, infidelity, obsession, hope, 3d"} +{"id": "9543", "title": "Prince of Persia: The Sands of Time", "year": 2010, "duration_min": 116, "rating": 6.2, "genres": "Adventure, Fantasy, Action, Romance", "genres_pipe": "|Adventure|Fantasy|Action|Romance|", "keywords": "persia, sandstorm, brother against brother, armageddon, regent, based on video game", "tags_pipe": "|persia|sandstorm|brother against brother|armageddon|regent|based on video game|", "overview": "A rogue prince reluctantly joins forces with a mysterious princess and together, they race against dark forces to safeguard an ancient dagger capable of releasing the Sands of Time – gift from the gods that can reverse time and allow its possessor to rule the world.", "text_for_embedding": "Prince of Persia: The Sands of Time (2010). Genres: Adventure, Fantasy, Action, Romance. A rogue prince reluctantly joins forces with a mysterious princess and together, they race against dark forces to safeguard an ancient dagger capable of releasing the Sands of Time – gift from the gods that can reverse time and allow its possessor to rule the world.. Tags: persia, sandstorm, brother against brother, armageddon, regent, based on video game"} +{"id": "68726", "title": "Pacific Rim", "year": 2013, "duration_min": 131, "rating": 6.7, "genres": "Action, Science Fiction, Adventure", "genres_pipe": "|Action|Science Fiction|Adventure|", "keywords": "dystopia, giant robot, giant monster, apocalypse, imax, duringcreditsstinger, 3d", "tags_pipe": "|dystopia|giant robot|giant monster|apocalypse|imax|duringcreditsstinger|3d|", "overview": "When legions of monstrous creatures, known as Kaiju, started rising from the sea, a war began that would take millions of lives and consume humanity's resources for years on end. To combat the giant Kaiju, a special type of weapon was devised: massive robots, called Jaegers, which are controlled simultaneously by two pilots whose minds are locked in a neural bridge. But even the Jaegers are proving nearly defenseless in the face of the relentless Kaiju. On the verge of defeat, the forces defending mankind have no choice but to turn to two unlikely heroes—a washed-up former pilot (Charlie Hunnam) and an untested trainee (Rinko Kikuchi)—who are teamed to drive a legendary but seemingly obsolete Jaeger from the past. Together, they stand as mankind's last hope against the mounting apocalypse.", "text_for_embedding": "Pacific Rim (2013). Genres: Action, Science Fiction, Adventure. When legions of monstrous creatures, known as Kaiju, started rising from the sea, a war began that would take millions of lives and consume humanity's resources for years on end. To combat the giant Kaiju, a special type of weapon was devised: massive robots, called Jaegers, which are controlled simultaneously by two pilots whose minds are locked in a neural bridge. But even the Jaegers are proving nearly defenseless in the face of the relentless Kaiju. On the verge of defeat, the forces defending mankind have no choice but to turn to two unlikely heroes—a washed-up former pilot (Charlie Hunnam) and an untested trainee (Rinko Kikuchi)—who are teamed to drive a legendary but seemingly obsolete Jaeger from the past. Together, they stand as mankind's last hope against the mounting apocalypse.. Tags: dystopia, giant robot, giant monster, apocalypse, imax, duringcreditsstinger, 3d"} +{"id": "38356", "title": "Transformers: Dark of the Moon", "year": 2011, "duration_min": 154, "rating": 6.1, "genres": "Action, Science Fiction, Adventure", "genres_pipe": "|Action|Science Fiction|Adventure|", "keywords": "moon, spacecraft, traitor, bodyguard, alien planet, based on cartoon, transformers, giant robot, sabotage, word domination, commando, duringcreditsstinger", "tags_pipe": "|moon|spacecraft|traitor|bodyguard|alien planet|based on cartoon|transformers|giant robot|sabotage|word domination|commando|duringcreditsstinger|", "overview": "Sam Witwicky takes his first tenuous steps into adulthood while remaining a reluctant human ally of Autobot-leader Optimus Prime. The film centers around the space race between the USSR and the USA, suggesting there was a hidden Transformers role in it all that remains one of the planet's most dangerous secrets.", "text_for_embedding": "Transformers: Dark of the Moon (2011). Genres: Action, Science Fiction, Adventure. Sam Witwicky takes his first tenuous steps into adulthood while remaining a reluctant human ally of Autobot-leader Optimus Prime. The film centers around the space race between the USSR and the USA, suggesting there was a hidden Transformers role in it all that remains one of the planet's most dangerous secrets.. Tags: moon, spacecraft, traitor, bodyguard, alien planet, based on cartoon, transformers, giant robot, sabotage, word domination, commando, duringcreditsstinger"} +{"id": "217", "title": "Indiana Jones and the Kingdom of the Crystal Skull", "year": 2008, "duration_min": 122, "rating": 5.7, "genres": "Adventure, Action", "genres_pipe": "|Adventure|Action|", "keywords": "saving the world, riddle, whip, treasure, mexico city, leather jacket, machinegun, alien phenomenons, maya civilization, peru, treasure hunt, nuclear explosion, refrigerator, archaeologist, indiana jones", "tags_pipe": "|saving the world|riddle|whip|treasure|mexico city|leather jacket|machinegun|alien phenomenons|maya civilization|peru|treasure hunt|nuclear explosion|refrigerator|archaeologist|indiana jones|", "overview": "Set during the Cold War, the Soviets – led by sword-wielding Irina Spalko – are in search of a crystal skull which has supernatural powers related to a mystical Lost City of Gold. After being captured and then escaping from them, Indy is coerced to head to Peru at the behest of a young man whose friend – and Indy's colleague – Professor Oxley has been captured for his knowledge of the skull's whereabouts.", "text_for_embedding": "Indiana Jones and the Kingdom of the Crystal Skull (2008). Genres: Adventure, Action. Set during the Cold War, the Soviets – led by sword-wielding Irina Spalko – are in search of a crystal skull which has supernatural powers related to a mystical Lost City of Gold. After being captured and then escaping from them, Indy is coerced to head to Peru at the behest of a young man whose friend – and Indy's colleague – Professor Oxley has been captured for his knowledge of the skull's whereabouts.. Tags: saving the world, riddle, whip, treasure, mexico city, leather jacket, machinegun, alien phenomenons, maya civilization, peru, treasure hunt, nuclear explosion, refrigerator, archaeologist, indiana jones"} +{"id": "105864", "title": "The Good Dinosaur", "year": 2015, "duration_min": 93, "rating": 6.6, "genres": "Adventure, Animation, Family", "genres_pipe": "|Adventure|Animation|Family|", "keywords": "tyrannosaurus rex, friends, alternate history, dinosaur, fear, storm, nature, human, journey", "tags_pipe": "|tyrannosaurus rex|friends|alternate history|dinosaur|fear|storm|nature|human|journey|", "overview": "An epic journey into the world of dinosaurs where an Apatosaurus named Arlo makes an unlikely human friend.", "text_for_embedding": "The Good Dinosaur (2015). Genres: Adventure, Animation, Family. An epic journey into the world of dinosaurs where an Apatosaurus named Arlo makes an unlikely human friend.. Tags: tyrannosaurus rex, friends, alternate history, dinosaur, fear, storm, nature, human, journey"} +{"id": "62177", "title": "Brave", "year": 2012, "duration_min": 93, "rating": 6.7, "genres": "Animation, Adventure, Comedy, Family, Action, Fantasy", "genres_pipe": "|Animation|Adventure|Comedy|Family|Action|Fantasy|", "keywords": "scotland, rebel, bravery, kingdom, archer, wish, bear, scot, rebellious daughter, turns into animal, archery, ruins, aftercreditsstinger, peace offering, woman director", "tags_pipe": "|scotland|rebel|bravery|kingdom|archer|wish|bear|scot|rebellious daughter|turns into animal|archery|ruins|aftercreditsstinger|peace offering|woman director|", "overview": "Brave is set in the mystical Scottish Highlands, where Mérida is the princess of a kingdom ruled by King Fergus and Queen Elinor. An unruly daughter and an accomplished archer, Mérida one day defies a sacred custom of the land and inadvertently brings turmoil to the kingdom. In an attempt to set things right, Mérida seeks out an eccentric old Wise Woman and is granted an ill-fated wish. Also figuring into Mérida’s quest — and serving as comic relief — are the kingdom’s three lords: the enormous Lord MacGuffin, the surly Lord Macintosh, and the disagreeable Lord Dingwall.", "text_for_embedding": "Brave (2012). Genres: Animation, Adventure, Comedy, Family, Action, Fantasy. Brave is set in the mystical Scottish Highlands, where Mérida is the princess of a kingdom ruled by King Fergus and Queen Elinor. An unruly daughter and an accomplished archer, Mérida one day defies a sacred custom of the land and inadvertently brings turmoil to the kingdom. In an attempt to set things right, Mérida seeks out an eccentric old Wise Woman and is granted an ill-fated wish. Also figuring into Mérida’s quest — and serving as comic relief — are the kingdom’s three lords: the enormous Lord MacGuffin, the surly Lord Macintosh, and the disagreeable Lord Dingwall.. Tags: scotland, rebel, bravery, kingdom, archer, wish, bear, scot, rebellious daughter, turns into animal, archery, ruins, aftercreditsstinger, peace offering, woman director"} +{"id": "188927", "title": "Star Trek Beyond", "year": 2016, "duration_min": 122, "rating": 6.6, "genres": "Action, Adventure, Science Fiction", "genres_pipe": "|Action|Adventure|Science Fiction|", "keywords": "sequel, stranded, hatred, space opera", "tags_pipe": "|sequel|stranded|hatred|space opera|", "overview": "The USS Enterprise crew explores the furthest reaches of uncharted space, where they encounter a mysterious new enemy who puts them and everything the Federation stands for to the test.", "text_for_embedding": "Star Trek Beyond (2016). Genres: Action, Adventure, Science Fiction. The USS Enterprise crew explores the furthest reaches of uncharted space, where they encounter a mysterious new enemy who puts them and everything the Federation stands for to the test.. Tags: sequel, stranded, hatred, space opera"} +{"id": "10681", "title": "WALL·E", "year": 2008, "duration_min": 98, "rating": 7.8, "genres": "Animation, Family", "genres_pipe": "|Animation|Family|", "keywords": "romantic comedy", "tags_pipe": "|romantic comedy|", "overview": "WALL·E is the last robot left on an Earth that has been overrun with garbage and all humans have fled to outer space. For 700 years he has continued to try and clean up the mess, but has developed some rather interesting human-like qualities. When a ship arrives with a sleek new type of robot, WALL·E thinks he's finally found a friend and stows away on the ship when it leaves.", "text_for_embedding": "WALL·E (2008). Genres: Animation, Family. WALL·E is the last robot left on an Earth that has been overrun with garbage and all humans have fled to outer space. For 700 years he has continued to try and clean up the mess, but has developed some rather interesting human-like qualities. When a ship arrives with a sleek new type of robot, WALL·E thinks he's finally found a friend and stows away on the ship when it leaves.. Tags: romantic comedy"} +{"id": "5174", "title": "Rush Hour 3", "year": 2007, "duration_min": 91, "rating": 6.1, "genres": "Action, Comedy, Crime, Thriller", "genres_pipe": "|Action|Comedy|Crime|Thriller|", "keywords": "ambassador", "tags_pipe": "|ambassador|", "overview": "After an attempted assassination on Ambassador Han, Inspector Lee and Detective Carter are back in action as they head to Paris to protect a French woman with knowledge of the Triads' secret leaders. Lee also holds secret meetings with a United Nations authority, but his personal struggles with a Chinese criminal mastermind named Kenji, which reveals that it's Lee's long-lost...brother.", "text_for_embedding": "Rush Hour 3 (2007). Genres: Action, Comedy, Crime, Thriller. After an attempted assassination on Ambassador Han, Inspector Lee and Detective Carter are back in action as they head to Paris to protect a French woman with knowledge of the Triads' secret leaders. Lee also holds secret meetings with a United Nations authority, but his personal struggles with a Chinese criminal mastermind named Kenji, which reveals that it's Lee's long-lost...brother.. Tags: ambassador"} +{"id": "14161", "title": "2012", "year": 2009, "duration_min": 158, "rating": 5.6, "genres": "Action, Adventure, Science Fiction", "genres_pipe": "|Action|Adventure|Science Fiction|", "keywords": "civilization, natural disaster, end of the world, disaster, apocalypse, destruction, volcanic eruption, mayan, ark, solar, destruction of mankind", "tags_pipe": "|civilization|natural disaster|end of the world|disaster|apocalypse|destruction|volcanic eruption|mayan|ark|solar|destruction of mankind|", "overview": "Dr. Adrian Helmsley, part of a worldwide geophysical team investigating the effect on the earth of radiation from unprecedented solar storms, learns that the earth's core is heating up. He warns U.S. President Thomas Wilson that the crust of the earth is becoming unstable and that without proper preparations for saving a fraction of the world's population, the entire race is doomed. Meanwhile, writer Jackson Curtis stumbles on the same information. While the world's leaders race to build \"arks\" to escape the impending cataclysm, Curtis struggles to find a way to save his family. Meanwhile, volcanic eruptions and earthquakes of unprecedented strength wreak havoc around the world.", "text_for_embedding": "2012 (2009). Genres: Action, Adventure, Science Fiction. Dr. Adrian Helmsley, part of a worldwide geophysical team investigating the effect on the earth of radiation from unprecedented solar storms, learns that the earth's core is heating up. He warns U.S. President Thomas Wilson that the crust of the earth is becoming unstable and that without proper preparations for saving a fraction of the world's population, the entire race is doomed. Meanwhile, writer Jackson Curtis stumbles on the same information. While the world's leaders race to build \"arks\" to escape the impending cataclysm, Curtis struggles to find a way to save his family. Meanwhile, volcanic eruptions and earthquakes of unprecedented strength wreak havoc around the world.. Tags: civilization, natural disaster, end of the world, disaster, apocalypse, destruction, volcanic eruption, mayan, ark, solar, destruction of mankind"} +{"id": "17979", "title": "A Christmas Carol", "year": 2009, "duration_min": 96, "rating": 6.6, "genres": "Animation, Drama", "genres_pipe": "|Animation|Drama|", "keywords": "holiday, based on novel, victorian england, money, christmas eve, scrooge, christmas carol, ghost, lesson, charles dickens, christmas", "tags_pipe": "|holiday|based on novel|victorian england|money|christmas eve|scrooge|christmas carol|ghost|lesson|charles dickens|christmas|", "overview": "Miser Ebenezer Scrooge is awakened on Christmas Eve by spirits who reveal to him his own miserable existence, what opportunities he wasted in his youth, his current cruelties, and the dire fate that awaits him if he does not change his ways. Scrooge is faced with his own story of growing bitterness and meanness, and must decide what his own future will hold: death or redemption.", "text_for_embedding": "A Christmas Carol (2009). Genres: Animation, Drama. Miser Ebenezer Scrooge is awakened on Christmas Eve by spirits who reveal to him his own miserable existence, what opportunities he wasted in his youth, his current cruelties, and the dire fate that awaits him if he does not change his ways. Scrooge is faced with his own story of growing bitterness and meanness, and must decide what his own future will hold: death or redemption.. Tags: holiday, based on novel, victorian england, money, christmas eve, scrooge, christmas carol, ghost, lesson, charles dickens, christmas"} +{"id": "76757", "title": "Jupiter Ascending", "year": 2015, "duration_min": 124, "rating": 5.2, "genres": "Science Fiction, Fantasy, Action, Adventure", "genres_pipe": "|Science Fiction|Fantasy|Action|Adventure|", "keywords": "jupiter, space, woman director, 3d, interspecies romance", "tags_pipe": "|jupiter|space|woman director|3d|interspecies romance|", "overview": "In a universe where human genetic material is the most precious commodity, an impoverished young Earth woman becomes the key to strategic maneuvers and internal strife within a powerful dynasty…", "text_for_embedding": "Jupiter Ascending (2015). Genres: Science Fiction, Fantasy, Action, Adventure. In a universe where human genetic material is the most precious commodity, an impoverished young Earth woman becomes the key to strategic maneuvers and internal strife within a powerful dynasty…. Tags: jupiter, space, woman director, 3d, interspecies romance"} +{"id": "258489", "title": "The Legend of Tarzan", "year": 2016, "duration_min": 109, "rating": 5.5, "genres": "Action, Adventure", "genres_pipe": "|Action|Adventure|", "keywords": "africa, feral child, tarzan, jungle, animal attack", "tags_pipe": "|africa|feral child|tarzan|jungle|animal attack|", "overview": "Tarzan, having acclimated to life in London, is called back to his former home in the jungle to investigate the activities at a mining encampment.", "text_for_embedding": "The Legend of Tarzan (2016). Genres: Action, Adventure. Tarzan, having acclimated to life in London, is called back to his former home in the jungle to investigate the activities at a mining encampment.. Tags: africa, feral child, tarzan, jungle, animal attack"} +{"id": "411", "title": "The Chronicles of Narnia: The Lion, the Witch and the Wardrobe", "year": 2005, "duration_min": 143, "rating": 6.7, "genres": "Adventure, Family, Fantasy", "genres_pipe": "|Adventure|Family|Fantasy|", "keywords": "saving the world, witch, based on novel, brother sister relationship, self sacrifice, winter, cupboard, beaver, lion, fairy-tale figure, battle, narnia, fantasy world, duringcreditsstinger", "tags_pipe": "|saving the world|witch|based on novel|brother sister relationship|self sacrifice|winter|cupboard|beaver|lion|fairy-tale figure|battle|narnia|fantasy world|duringcreditsstinger|", "overview": "Siblings Lucy, Edmund, Susan and Peter step through a magical wardrobe and find the land of Narnia. There, the they discover a charming, once peaceful kingdom that has been plunged into eternal winter by the evil White Witch, Jadis. Aided by the wise and magnificent lion, Aslan, the children lead Narnia into a spectacular, climactic battle to be free of the Witch's glacial powers forever.", "text_for_embedding": "The Chronicles of Narnia: The Lion, the Witch and the Wardrobe (2005). Genres: Adventure, Family, Fantasy. Siblings Lucy, Edmund, Susan and Peter step through a magical wardrobe and find the land of Narnia. There, the they discover a charming, once peaceful kingdom that has been plunged into eternal winter by the evil White Witch, Jadis. Aided by the wise and magnificent lion, Aslan, the children lead Narnia into a spectacular, climactic battle to be free of the Witch's glacial powers forever.. Tags: saving the world, witch, based on novel, brother sister relationship, self sacrifice, winter, cupboard, beaver, lion, fairy-tale figure, battle, narnia, fantasy world, duringcreditsstinger"} +{"id": "246655", "title": "X-Men: Apocalypse", "year": 2016, "duration_min": 144, "rating": 6.4, "genres": "Science Fiction", "genres_pipe": "|Science Fiction|", "keywords": "mutant, supernatural powers, marvel comic, superhero, based on comic book, superhuman, apocalypse, superhero team, world domination, aftercreditsstinger, 1980s", "tags_pipe": "|mutant|supernatural powers|marvel comic|superhero|based on comic book|superhuman|apocalypse|superhero team|world domination|aftercreditsstinger|1980s|", "overview": "After the re-emergence of the world's first mutant, world-destroyer Apocalypse, the X-Men must unite to defeat his extinction level plan.", "text_for_embedding": "X-Men: Apocalypse (2016). Genres: Science Fiction. After the re-emergence of the world's first mutant, world-destroyer Apocalypse, the X-Men must unite to defeat his extinction level plan.. Tags: mutant, supernatural powers, marvel comic, superhero, based on comic book, superhuman, apocalypse, superhero team, world domination, aftercreditsstinger, 1980s"} +{"id": "155", "title": "The Dark Knight", "year": 2008, "duration_min": 152, "rating": 8.2, "genres": "Drama, Action, Crime, Thriller", "genres_pipe": "|Drama|Action|Crime|Thriller|", "keywords": "dc comics, crime fighter, secret identity, scarecrow, sadism, chaos, gotham city, vigilante, joker, superhero, based on comic book, tragic hero, organized crime, criminal mastermind, district attorney", "tags_pipe": "|dc comics|crime fighter|secret identity|scarecrow|sadism|chaos|gotham city|vigilante|joker|superhero|based on comic book|tragic hero|organized crime|criminal mastermind|district attorney|", "overview": "Batman raises the stakes in his war on crime. With the help of Lt. Jim Gordon and District Attorney Harvey Dent, Batman sets out to dismantle the remaining criminal organizations that plague the streets. The partnership proves to be effective, but they soon find themselves prey to a reign of chaos unleashed by a rising criminal mastermind known to the terrified citizens of Gotham as the Joker.", "text_for_embedding": "The Dark Knight (2008). Genres: Drama, Action, Crime, Thriller. Batman raises the stakes in his war on crime. With the help of Lt. Jim Gordon and District Attorney Harvey Dent, Batman sets out to dismantle the remaining criminal organizations that plague the streets. The partnership proves to be effective, but they soon find themselves prey to a reign of chaos unleashed by a rising criminal mastermind known to the terrified citizens of Gotham as the Joker.. Tags: dc comics, crime fighter, secret identity, scarecrow, sadism, chaos, gotham city, vigilante, joker, superhero, based on comic book, tragic hero, organized crime, criminal mastermind, district attorney"} +{"id": "14160", "title": "Up", "year": 2009, "duration_min": 96, "rating": 7.7, "genres": "Animation, Comedy, Family, Adventure", "genres_pipe": "|Animation|Comedy|Family|Adventure|", "keywords": "age difference, central and south america, balloon, animation, floating in the air, duringcreditsstinger, exploring", "tags_pipe": "|age difference|central and south america|balloon|animation|floating in the air|duringcreditsstinger|exploring|", "overview": "Carl Fredricksen spent his entire life dreaming of exploring the globe and experiencing life to its fullest. But at age 78, life seems to have passed him by, until a twist of fate (and a persistent 8-year old Wilderness Explorer named Russell) gives him a new lease on life.", "text_for_embedding": "Up (2009). Genres: Animation, Comedy, Family, Adventure. Carl Fredricksen spent his entire life dreaming of exploring the globe and experiencing life to its fullest. But at age 78, life seems to have passed him by, until a twist of fate (and a persistent 8-year old Wilderness Explorer named Russell) gives him a new lease on life.. Tags: age difference, central and south america, balloon, animation, floating in the air, duringcreditsstinger, exploring"} +{"id": "15512", "title": "Monsters vs Aliens", "year": 2009, "duration_min": 94, "rating": 6.0, "genres": "Animation, Family, Adventure, Science Fiction", "genres_pipe": "|Animation|Family|Adventure|Science Fiction|", "keywords": "alien, giant robot, duringcreditsstinger", "tags_pipe": "|alien|giant robot|duringcreditsstinger|", "overview": "When Susan Murphy is unwittingly clobbered by a meteor full of outer space gunk on her wedding day, she mysteriously grows to 49-feet-11-inches. The military jumps into action and captures Susan, secreting her away to a covert government compound. She is renamed Ginormica and placed in confinement with a ragtag group of Monsters...", "text_for_embedding": "Monsters vs Aliens (2009). Genres: Animation, Family, Adventure, Science Fiction. When Susan Murphy is unwittingly clobbered by a meteor full of outer space gunk on her wedding day, she mysteriously grows to 49-feet-11-inches. The military jumps into action and captures Susan, secreting her away to a covert government compound. She is renamed Ginormica and placed in confinement with a ragtag group of Monsters.... Tags: alien, giant robot, duringcreditsstinger"} +{"id": "1726", "title": "Iron Man", "year": 2008, "duration_min": 126, "rating": 7.4, "genres": "Action, Science Fiction, Adventure", "genres_pipe": "|Action|Science Fiction|Adventure|", "keywords": "middle east, arms dealer, malibu, marvel comic, superhero, based on comic book, tony stark, iron man, aftercreditsstinger, marvel cinematic universe, counter terrorism, agent coulson", "tags_pipe": "|middle east|arms dealer|malibu|marvel comic|superhero|based on comic book|tony stark|iron man|aftercreditsstinger|marvel cinematic universe|counter terrorism|agent coulson|", "overview": "After being held captive in an Afghan cave, billionaire engineer Tony Stark creates a unique weaponized suit of armor to fight evil.", "text_for_embedding": "Iron Man (2008). Genres: Action, Science Fiction, Adventure. After being held captive in an Afghan cave, billionaire engineer Tony Stark creates a unique weaponized suit of armor to fight evil.. Tags: middle east, arms dealer, malibu, marvel comic, superhero, based on comic book, tony stark, iron man, aftercreditsstinger, marvel cinematic universe, counter terrorism, agent coulson"} +{"id": "44826", "title": "Hugo", "year": 2011, "duration_min": 126, "rating": 7.0, "genres": "Adventure, Drama, Family", "genres_pipe": "|Adventure|Drama|Family|", "keywords": "library, clock, film director, key, toy, boy, love, orphan, robot, automaton, hiding, filmmaking, leg brace, doberman, 3d", "tags_pipe": "|library|clock|film director|key|toy|boy|love|orphan|robot|automaton|hiding|filmmaking|leg brace|doberman|3d|", "overview": "Hugo is an orphan boy living in the walls of a train station in 1930s Paris. He learned to fix clocks and other gadgets from his father and uncle which he puts to use keeping the train station clocks running. The only thing that he has left that connects him to his dead father is an automaton (mechanical man) that doesn't work without a special key which Hugo needs to find to unlock the secret he believes it contains. On his adventures, he meets with a shopkeeper, George Melies, who works in the train station and his adventure-seeking god-daughter. Hugo finds that they have a surprising connection to his father and the automaton, and he discovers it unlocks some memories the old man has buried inside regarding his past.", "text_for_embedding": "Hugo (2011). Genres: Adventure, Drama, Family. Hugo is an orphan boy living in the walls of a train station in 1930s Paris. He learned to fix clocks and other gadgets from his father and uncle which he puts to use keeping the train station clocks running. The only thing that he has left that connects him to his dead father is an automaton (mechanical man) that doesn't work without a special key which Hugo needs to find to unlock the secret he believes it contains. On his adventures, he meets with a shopkeeper, George Melies, who works in the train station and his adventure-seeking god-daughter. Hugo finds that they have a surprising connection to his father and the automaton, and he discovers it unlocks some memories the old man has buried inside regarding his past.. Tags: library, clock, film director, key, toy, boy, love, orphan, robot, automaton, hiding, filmmaking, leg brace, doberman, 3d"} +{"id": "8487", "title": "Wild Wild West", "year": 1999, "duration_min": 106, "rating": 5.1, "genres": "Action, Adventure, Comedy, Science Fiction, Western", "genres_pipe": "|Action|Adventure|Comedy|Science Fiction|Western|", "keywords": "steampunk, based on tv series, steam locomotive, drag", "tags_pipe": "|steampunk|based on tv series|steam locomotive|drag|", "overview": "Legless Southern inventor Dr. Arliss Loveless plans to rekindle the Civil War by assassinating President U.S. Grant. Only two men can stop him: gunfighter James West and master-of-disguise and inventor Artemus Gordon. The two must team up to thwart Loveless' plans.", "text_for_embedding": "Wild Wild West (1999). Genres: Action, Adventure, Comedy, Science Fiction, Western. Legless Southern inventor Dr. Arliss Loveless plans to rekindle the Civil War by assassinating President U.S. Grant. Only two men can stop him: gunfighter James West and master-of-disguise and inventor Artemus Gordon. The two must team up to thwart Loveless' plans.. Tags: steampunk, based on tv series, steam locomotive, drag"} +{"id": "1735", "title": "The Mummy: Tomb of the Dragon Emperor", "year": 2008, "duration_min": 112, "rating": 5.2, "genres": "Adventure, Action, Fantasy", "genres_pipe": "|Adventure|Action|Fantasy|", "keywords": "", "tags_pipe": "", "overview": "Archaeologist Rick O'Connell travels to China, pitting him against an emperor from the 2,000-year-old Han dynasty who's returned from the dead to pursue a quest for world domination. This time, O'Connell enlists the help of his wife and son to quash the so-called 'Dragon Emperor' and his abuse of supernatural power.", "text_for_embedding": "The Mummy: Tomb of the Dragon Emperor (2008). Genres: Adventure, Action, Fantasy. Archaeologist Rick O'Connell travels to China, pitting him against an emperor from the 2,000-year-old Han dynasty who's returned from the dead to pursue a quest for world domination. This time, O'Connell enlists the help of his wife and son to quash the so-called 'Dragon Emperor' and his abuse of supernatural power.. Tags: "} +{"id": "297761", "title": "Suicide Squad", "year": 2016, "duration_min": 123, "rating": 5.9, "genres": "Action, Adventure, Crime, Fantasy, Science Fiction", "genres_pipe": "|Action|Adventure|Crime|Fantasy|Science Fiction|", "keywords": "dc comics, shared universe, anti hero, secret mission, villain, superhero, supervillain, dc extended universe", "tags_pipe": "|dc comics|shared universe|anti hero|secret mission|villain|superhero|supervillain|dc extended universe|", "overview": "From DC Comics comes the Suicide Squad, an antihero team of incarcerated supervillains who act as deniable assets for the United States government, undertaking high-risk black ops missions in exchange for commuted prison sentences.", "text_for_embedding": "Suicide Squad (2016). Genres: Action, Adventure, Crime, Fantasy, Science Fiction. From DC Comics comes the Suicide Squad, an antihero team of incarcerated supervillains who act as deniable assets for the United States government, undertaking high-risk black ops missions in exchange for commuted prison sentences.. Tags: dc comics, shared universe, anti hero, secret mission, villain, superhero, supervillain, dc extended universe"} +{"id": "2698", "title": "Evan Almighty", "year": 2007, "duration_min": 96, "rating": 5.3, "genres": "Fantasy, Comedy, Family", "genres_pipe": "|Fantasy|Comedy|Family|", "keywords": "father son relationship, daily life, married couple, support, father, marriage, faith, baustelle, rescue, animal, nature, duringcreditsstinger, noah's ark", "tags_pipe": "|father son relationship|daily life|married couple|support|father|marriage|faith|baustelle|rescue|animal|nature|duringcreditsstinger|noah's ark|", "overview": "God contacts Congressman Evan Baxter and tells him to build an ark in preparation for a great flood.", "text_for_embedding": "Evan Almighty (2007). Genres: Fantasy, Comedy, Family. God contacts Congressman Evan Baxter and tells him to build an ark in preparation for a great flood.. Tags: father son relationship, daily life, married couple, support, father, marriage, faith, baustelle, rescue, animal, nature, duringcreditsstinger, noah's ark"} +{"id": "137113", "title": "Edge of Tomorrow", "year": 2014, "duration_min": 113, "rating": 7.6, "genres": "Action, Science Fiction", "genres_pipe": "|Action|Science Fiction|", "keywords": "deja vu, time warp, restart, dystopia, war, alien, military officer, soldier, alien invasion, exoskeleton", "tags_pipe": "|deja vu|time warp|restart|dystopia|war|alien|military officer|soldier|alien invasion|exoskeleton|", "overview": "Major Bill Cage is an officer who has never seen a day of combat when he is unceremoniously demoted and dropped into combat. Cage is killed within minutes, managing to take an alpha alien down with him. He awakens back at the beginning of the same day and is forced to fight and die again... and again - as physical contact with the alien has thrown him into a time loop.", "text_for_embedding": "Edge of Tomorrow (2014). Genres: Action, Science Fiction. Major Bill Cage is an officer who has never seen a day of combat when he is unceremoniously demoted and dropped into combat. Cage is killed within minutes, managing to take an alpha alien down with him. He awakens back at the beginning of the same day and is forced to fight and die again... and again - as physical contact with the alien has thrown him into a time loop.. Tags: deja vu, time warp, restart, dystopia, war, alien, military officer, soldier, alien invasion, exoskeleton"} +{"id": "9804", "title": "Waterworld", "year": 1995, "duration_min": 135, "rating": 5.9, "genres": "Adventure, Action", "genres_pipe": "|Adventure|Action|", "keywords": "ocean, tattoo, mutant, water, dystopia, doomsday", "tags_pipe": "|ocean|tattoo|mutant|water|dystopia|doomsday|", "overview": "In a futuristic world where the polar ice caps have melted and made Earth a liquid planet, a beautiful barmaid rescues a mutant seafarer from a floating island prison. They escape, along with her young charge, Enola, and sail off aboard his ship. But the trio soon becomes the target of a menacing pirate who covets the map to 'Dryland' – which is tattooed on Enola's back.", "text_for_embedding": "Waterworld (1995). Genres: Adventure, Action. In a futuristic world where the polar ice caps have melted and made Earth a liquid planet, a beautiful barmaid rescues a mutant seafarer from a floating island prison. They escape, along with her young charge, Enola, and sail off aboard his ship. But the trio soon becomes the target of a menacing pirate who covets the map to 'Dryland' – which is tattooed on Enola's back.. Tags: ocean, tattoo, mutant, water, dystopia, doomsday"} +{"id": "14869", "title": "G.I. Joe: The Rise of Cobra", "year": 2009, "duration_min": 118, "rating": 5.6, "genres": "Adventure, Action, Thriller, Science Fiction", "genres_pipe": "|Adventure|Action|Thriller|Science Fiction|", "keywords": "terrorist, secret, hostage, technology, warhead, government, president, revenge, murder, attack, explosion, scientist, lasers, evil, cobra", "tags_pipe": "|terrorist|secret|hostage|technology|warhead|government|president|revenge|murder|attack|explosion|scientist|lasers|evil|cobra|", "overview": "From the Egyptian desert to deep below the polar ice caps, the elite G.I. JOE team uses the latest in next-generation spy and military equipment to fight the corrupt arms dealer Destro and the growing threat of the mysterious Cobra organization to prevent them from plunging the world into chaos.", "text_for_embedding": "G.I. Joe: The Rise of Cobra (2009). Genres: Adventure, Action, Thriller, Science Fiction. From the Egyptian desert to deep below the polar ice caps, the elite G.I. JOE team uses the latest in next-generation spy and military equipment to fight the corrupt arms dealer Destro and the growing threat of the mysterious Cobra organization to prevent them from plunging the world into chaos.. Tags: terrorist, secret, hostage, technology, warhead, government, president, revenge, murder, attack, explosion, scientist, lasers, evil, cobra"} +{"id": "150540", "title": "Inside Out", "year": 2015, "duration_min": 94, "rating": 8.0, "genres": "Drama, Comedy, Animation, Family", "genres_pipe": "|Drama|Comedy|Animation|Family|", "keywords": "dream, cartoon, imaginary friend, animation, family, moving, kids, unicorn, duringcreditsstinger, 3d, emotions", "tags_pipe": "|dream|cartoon|imaginary friend|animation|family|moving|kids|unicorn|duringcreditsstinger|3d|emotions|", "overview": "Growing up can be a bumpy road, and it's no exception for Riley, who is uprooted from her Midwest life when her father starts a new job in San Francisco. Like all of us, Riley is guided by her emotions - Joy, Fear, Anger, Disgust and Sadness. The emotions live in Headquarters, the control center inside Riley's mind, where they help advise her through everyday life. As Riley and her emotions struggle to adjust to a new life in San Francisco, turmoil ensues in Headquarters. Although Joy, Riley's main and most important emotion, tries to keep things positive, the emotions conflict on how best to navigate a new city, house and school.", "text_for_embedding": "Inside Out (2015). Genres: Drama, Comedy, Animation, Family. Growing up can be a bumpy road, and it's no exception for Riley, who is uprooted from her Midwest life when her father starts a new job in San Francisco. Like all of us, Riley is guided by her emotions - Joy, Fear, Anger, Disgust and Sadness. The emotions live in Headquarters, the control center inside Riley's mind, where they help advise her through everyday life. As Riley and her emotions struggle to adjust to a new life in San Francisco, turmoil ensues in Headquarters. Although Joy, Riley's main and most important emotion, tries to keep things positive, the emotions conflict on how best to navigate a new city, house and school.. Tags: dream, cartoon, imaginary friend, animation, family, moving, kids, unicorn, duringcreditsstinger, 3d, emotions"} +{"id": "278927", "title": "The Jungle Book", "year": 2016, "duration_min": 106, "rating": 6.7, "genres": "Family, Adventure, Drama, Fantasy", "genres_pipe": "|Family|Adventure|Drama|Fantasy|", "keywords": "based on novel, snake, wolf, elephant, tiger, feral child, panther, remake, bear, jungle, talking animal, orphan, animal, talking to animals", "tags_pipe": "|based on novel|snake|wolf|elephant|tiger|feral child|panther|remake|bear|jungle|talking animal|orphan|animal|talking to animals|", "overview": "After a threat from the tiger Shere Khan forces him to flee the jungle, a man-cub named Mowgli embarks on a journey of self discovery with the help of panther, Bagheera, and free spirited bear, Baloo.", "text_for_embedding": "The Jungle Book (2016). Genres: Family, Adventure, Drama, Fantasy. After a threat from the tiger Shere Khan forces him to flee the jungle, a man-cub named Mowgli embarks on a journey of self discovery with the help of panther, Bagheera, and free spirited bear, Baloo.. Tags: based on novel, snake, wolf, elephant, tiger, feral child, panther, remake, bear, jungle, talking animal, orphan, animal, talking to animals"} +{"id": "10138", "title": "Iron Man 2", "year": 2010, "duration_min": 124, "rating": 6.6, "genres": "Adventure, Action, Science Fiction", "genres_pipe": "|Adventure|Action|Science Fiction|", "keywords": "malibu, marvel comic, superhero, based on comic book, revenge, aftercreditsstinger, marvel cinematic universe", "tags_pipe": "|malibu|marvel comic|superhero|based on comic book|revenge|aftercreditsstinger|marvel cinematic universe|", "overview": "With the world now aware of his dual life as the armored superhero Iron Man, billionaire inventor Tony Stark faces pressure from the government, the press and the public to share his technology with the military. Unwilling to let go of his invention, Stark, with Pepper Potts and James 'Rhodey' Rhodes at his side, must forge new alliances – and confront powerful enemies.", "text_for_embedding": "Iron Man 2 (2010). Genres: Adventure, Action, Science Fiction. With the world now aware of his dual life as the armored superhero Iron Man, billionaire inventor Tony Stark faces pressure from the government, the press and the public to share his technology with the military. Unwilling to let go of his invention, Stark, with Pepper Potts and James 'Rhodey' Rhodes at his side, must forge new alliances – and confront powerful enemies.. Tags: malibu, marvel comic, superhero, based on comic book, revenge, aftercreditsstinger, marvel cinematic universe"} +{"id": "58595", "title": "Snow White and the Huntsman", "year": 2012, "duration_min": 127, "rating": 5.8, "genres": "Adventure, Fantasy, Drama", "genres_pipe": "|Adventure|Fantasy|Drama|", "keywords": "queen, magic, fairy tale, immortality, forest, deception, woman, eternal youth, snow white, evil queen, evil stepmother, imprisoned, sorceress", "tags_pipe": "|queen|magic|fairy tale|immortality|forest|deception|woman|eternal youth|snow white|evil queen|evil stepmother|imprisoned|sorceress|", "overview": "After the Evil Queen marries the King, she performs a violent coup in which the King is murdered and his daughter, Snow White, is taken captive. Almost a decade later, a grown Snow White is still in the clutches of the Queen. In order to obtain immortality, The Evil Queen needs the heart of Snow White. After Snow escapes the castle, the Queen sends the Huntsman to find her in the Dark Forest.", "text_for_embedding": "Snow White and the Huntsman (2012). Genres: Adventure, Fantasy, Drama. After the Evil Queen marries the King, she performs a violent coup in which the King is murdered and his daughter, Snow White, is taken captive. Almost a decade later, a grown Snow White is still in the clutches of the Queen. In order to obtain immortality, The Evil Queen needs the heart of Snow White. After Snow escapes the castle, the Queen sends the Huntsman to find her in the Dark Forest.. Tags: queen, magic, fairy tale, immortality, forest, deception, woman, eternal youth, snow white, evil queen, evil stepmother, imprisoned, sorceress"} +{"id": "102651", "title": "Maleficent", "year": 2014, "duration_min": 97, "rating": 7.0, "genres": "Fantasy, Adventure, Action, Family, Romance", "genres_pipe": "|Fantasy|Adventure|Action|Family|Romance|", "keywords": "fairy tale, villain, sleeping beauty, dark fantasy, based on fairy tale, adaptation, retelling, literary adaptation, 3d", "tags_pipe": "|fairy tale|villain|sleeping beauty|dark fantasy|based on fairy tale|adaptation|retelling|literary adaptation|3d|", "overview": "The untold story of Disney's most iconic villain from the 1959 classic 'Sleeping Beauty'. A beautiful, pure-hearted young woman, Maleficent has an idyllic life growing up in a peaceable forest kingdom, until one day when an invading army threatens the harmony of the land. Maleficent rises to be the land's fiercest protector, but she ultimately suffers a ruthless betrayal – an act that begins to turn her heart into stone. Bent on revenge, Maleficent faces an epic battle with the invading King's successor and, as a result, places a curse upon his newborn infant Aurora. As the child grows, Maleficent realizes that Aurora holds the key to peace in the kingdom - and to Maleficent's true happiness as well.", "text_for_embedding": "Maleficent (2014). Genres: Fantasy, Adventure, Action, Family, Romance. The untold story of Disney's most iconic villain from the 1959 classic 'Sleeping Beauty'. A beautiful, pure-hearted young woman, Maleficent has an idyllic life growing up in a peaceable forest kingdom, until one day when an invading army threatens the harmony of the land. Maleficent rises to be the land's fiercest protector, but she ultimately suffers a ruthless betrayal – an act that begins to turn her heart into stone. Bent on revenge, Maleficent faces an epic battle with the invading King's successor and, as a result, places a curse upon his newborn infant Aurora. As the child grows, Maleficent realizes that Aurora holds the key to peace in the kingdom - and to Maleficent's true happiness as well.. Tags: fairy tale, villain, sleeping beauty, dark fantasy, based on fairy tale, adaptation, retelling, literary adaptation, 3d"} +{"id": "119450", "title": "Dawn of the Planet of the Apes", "year": 2014, "duration_min": 130, "rating": 7.3, "genres": "Science Fiction, Action, Drama, Thriller", "genres_pipe": "|Science Fiction|Action|Drama|Thriller|", "keywords": "leader, colony, post-apocalyptic, dystopia, forest, sequel, woods, ape, scientist, monkey, medical research, animal attack, plague, 3d", "tags_pipe": "|leader|colony|post-apocalyptic|dystopia|forest|sequel|woods|ape|scientist|monkey|medical research|animal attack|plague|3d|", "overview": "A group of scientists in San Francisco struggle to stay alive in the aftermath of a plague that is wiping out humanity, while Caesar tries to maintain dominance over his community of intelligent apes.", "text_for_embedding": "Dawn of the Planet of the Apes (2014). Genres: Science Fiction, Action, Drama, Thriller. A group of scientists in San Francisco struggle to stay alive in the aftermath of a plague that is wiping out humanity, while Caesar tries to maintain dominance over his community of intelligent apes.. Tags: leader, colony, post-apocalyptic, dystopia, forest, sequel, woods, ape, scientist, monkey, medical research, animal attack, plague, 3d"} +{"id": "79698", "title": "The Lovers", "year": 2015, "duration_min": 109, "rating": 4.8, "genres": "Action, Adventure, Science Fiction, Romance", "genres_pipe": "|Action|Adventure|Science Fiction|Romance|", "keywords": "", "tags_pipe": "", "overview": "The Lovers is an epic romance time travel adventure film. Helmed by Roland Joffé from a story by Ajey Jhankar, the film is a sweeping tale of an impossible love set against the backdrop of the first Anglo-Maratha war across two time periods and continents and centred around four characters — a British officer in 18th century colonial India, the Indian woman he falls deeply in love with, an American present-day marine biologist and his wife.", "text_for_embedding": "The Lovers (2015). Genres: Action, Adventure, Science Fiction, Romance. The Lovers is an epic romance time travel adventure film. Helmed by Roland Joffé from a story by Ajey Jhankar, the film is a sweeping tale of an impossible love set against the backdrop of the first Anglo-Maratha war across two time periods and continents and centred around four characters — a British officer in 18th century colonial India, the Indian woman he falls deeply in love with, an American present-day marine biologist and his wife.. Tags: "} +{"id": "64686", "title": "47 Ronin", "year": 2013, "duration_min": 119, "rating": 5.9, "genres": "Drama, Action, Adventure, Fantasy", "genres_pipe": "|Drama|Action|Adventure|Fantasy|", "keywords": "japan, suicide, samurai, based on true story, samurai sword, ronin, shogun, half breed, 3d", "tags_pipe": "|japan|suicide|samurai|based on true story|samurai sword|ronin|shogun|half breed|3d|", "overview": "Based on the original 1941 movie from Japan, and from ancient Japan’s most enduring tale, the epic 3D fantasy-adventure 47 Ronin is born. Keanu Reeves leads the cast as Kai, an outcast who joins Oishi (Hiroyuki Sanada), the leader of the 47 outcast samurai. Together they seek vengeance upon the treacherous overlord who killed their master and banished their kind. To restore honor to their homeland, the warriors embark upon a quest that challenges them with a series of trials that would destroy ordinary warriors.", "text_for_embedding": "47 Ronin (2013). Genres: Drama, Action, Adventure, Fantasy. Based on the original 1941 movie from Japan, and from ancient Japan’s most enduring tale, the epic 3D fantasy-adventure 47 Ronin is born. Keanu Reeves leads the cast as Kai, an outcast who joins Oishi (Hiroyuki Sanada), the leader of the 47 outcast samurai. Together they seek vengeance upon the treacherous overlord who killed their master and banished their kind. To restore honor to their homeland, the warriors embark upon a quest that challenges them with a series of trials that would destroy ordinary warriors.. Tags: japan, suicide, samurai, based on true story, samurai sword, ronin, shogun, half breed, 3d"} +{"id": "100402", "title": "Captain America: The Winter Soldier", "year": 2014, "duration_min": 136, "rating": 7.6, "genres": "Action, Adventure, Science Fiction", "genres_pipe": "|Action|Adventure|Science Fiction|", "keywords": "washington d.c., future, shield, marvel comic, superhero, based on comic book, captain america, aftercreditsstinger, duringcreditsstinger, marvel cinematic universe, 3d, political thriller", "tags_pipe": "|washington d.c.|future|shield|marvel comic|superhero|based on comic book|captain america|aftercreditsstinger|duringcreditsstinger|marvel cinematic universe|3d|political thriller|", "overview": "After the cataclysmic events in New York with The Avengers, Steve Rogers, aka Captain America is living quietly in Washington, D.C. and trying to adjust to the modern world. But when a S.H.I.E.L.D. colleague comes under attack, Steve becomes embroiled in a web of intrigue that threatens to put the world at risk. Joining forces with the Black Widow, Captain America struggles to expose the ever-widening conspiracy while fighting off professional assassins sent to silence him at every turn. When the full scope of the villainous plot is revealed, Captain America and the Black Widow enlist the help of a new ally, the Falcon. However, they soon find themselves up against an unexpected and formidable enemy—the Winter Soldier.", "text_for_embedding": "Captain America: The Winter Soldier (2014). Genres: Action, Adventure, Science Fiction. After the cataclysmic events in New York with The Avengers, Steve Rogers, aka Captain America is living quietly in Washington, D.C. and trying to adjust to the modern world. But when a S.H.I.E.L.D. colleague comes under attack, Steve becomes embroiled in a web of intrigue that threatens to put the world at risk. Joining forces with the Black Widow, Captain America struggles to expose the ever-widening conspiracy while fighting off professional assassins sent to silence him at every turn. When the full scope of the villainous plot is revealed, Captain America and the Black Widow enlist the help of a new ally, the Falcon. However, they soon find themselves up against an unexpected and formidable enemy—the Winter Soldier.. Tags: washington d.c., future, shield, marvel comic, superhero, based on comic book, captain america, aftercreditsstinger, duringcreditsstinger, marvel cinematic universe, 3d, political thriller"} +{"id": "10192", "title": "Shrek Forever After", "year": 2010, "duration_min": 93, "rating": 6.0, "genres": "Comedy, Adventure, Fantasy, Animation, Family", "genres_pipe": "|Comedy|Adventure|Fantasy|Animation|Family|", "keywords": "ogre, 3d", "tags_pipe": "|ogre|3d|", "overview": "A bored and domesticated Shrek pacts with deal-maker Rumpelstiltskin to get back to feeling like a real ogre again, but when he's duped and sent to a twisted version of Far Far Away—where Rumpelstiltskin is king, ogres are hunted, and he and Fiona have never met—he sets out to restore his world and reclaim his true love.", "text_for_embedding": "Shrek Forever After (2010). Genres: Comedy, Adventure, Fantasy, Animation, Family. A bored and domesticated Shrek pacts with deal-maker Rumpelstiltskin to get back to feeling like a real ogre again, but when he's duped and sent to a twisted version of Far Far Away—where Rumpelstiltskin is king, ogres are hunted, and he and Fiona have never met—he sets out to restore his world and reclaim his true love.. Tags: ogre, 3d"} +{"id": "158852", "title": "Tomorrowland", "year": 2015, "duration_min": 130, "rating": 6.2, "genres": "Adventure, Family, Mystery, Science Fiction", "genres_pipe": "|Adventure|Family|Mystery|Science Fiction|", "keywords": "inventor, apocalypse, destiny, imax, dreamer, futuristic car, futuristic city", "tags_pipe": "|inventor|apocalypse|destiny|imax|dreamer|futuristic car|futuristic city|", "overview": "Bound by a shared destiny, a bright, optimistic teen bursting with scientific curiosity and a former boy-genius inventor jaded by disillusionment embark on a danger-filled mission to unearth the secrets of an enigmatic place somewhere in time and space that exists in their collective memory as \"Tomorrowland.\"", "text_for_embedding": "Tomorrowland (2015). Genres: Adventure, Family, Mystery, Science Fiction. Bound by a shared destiny, a bright, optimistic teen bursting with scientific curiosity and a former boy-genius inventor jaded by disillusionment embark on a danger-filled mission to unearth the secrets of an enigmatic place somewhere in time and space that exists in their collective memory as \"Tomorrowland.\". Tags: inventor, apocalypse, destiny, imax, dreamer, futuristic car, futuristic city"} +{"id": "177572", "title": "Big Hero 6", "year": 2014, "duration_min": 102, "rating": 7.8, "genres": "Adventure, Family, Animation, Action, Comedy", "genres_pipe": "|Adventure|Family|Animation|Action|Comedy|", "keywords": "brother brother relationship, hero, talent, revenge, best friend, another dimension, robot, boy genius, hate, aftercreditsstinger, moral dilemma, 3d, teen superheroes, dead brother", "tags_pipe": "|brother brother relationship|hero|talent|revenge|best friend|another dimension|robot|boy genius|hate|aftercreditsstinger|moral dilemma|3d|teen superheroes|dead brother|", "overview": "The special bond that develops between plus-sized inflatable robot Baymax, and prodigy Hiro Hamada, who team up with a group of friends to form a band of high-tech heroes.", "text_for_embedding": "Big Hero 6 (2014). Genres: Adventure, Family, Animation, Action, Comedy. The special bond that develops between plus-sized inflatable robot Baymax, and prodigy Hiro Hamada, who team up with a group of friends to form a band of high-tech heroes.. Tags: brother brother relationship, hero, talent, revenge, best friend, another dimension, robot, boy genius, hate, aftercreditsstinger, moral dilemma, 3d, teen superheroes, dead brother"} +{"id": "82690", "title": "Wreck-It Ralph", "year": 2012, "duration_min": 108, "rating": 7.1, "genres": "Family, Animation, Comedy, Adventure", "genres_pipe": "|Family|Animation|Comedy|Adventure|", "keywords": "support group, product placement, bullying, racing, arcade, medal, self esteem, curiosity, precocious child, aftercreditsstinger, duringcreditsstinger, first person shooter, glitch, carefree, video gamer", "tags_pipe": "|support group|product placement|bullying|racing|arcade|medal|self esteem|curiosity|precocious child|aftercreditsstinger|duringcreditsstinger|first person shooter|glitch|carefree|video gamer|", "overview": "Wreck-It Ralph is the 9-foot-tall, 643-pound villain of an arcade video game named Fix-It Felix Jr., in which the game's titular hero fixes buildings that Ralph destroys. Wanting to prove he can be a good guy and not just a villain, Ralph escapes his game and lands in Hero's Duty, a first-person shooter where he helps the game's hero battle against alien invaders. He later enters Sugar Rush, a kart racing game set on tracks made of candies, cookies and other sweets. There, Ralph meets Vanellope von Schweetz who has learned that her game is faced with a dire threat that could affect the entire arcade, and one that Ralph may have inadvertently started.", "text_for_embedding": "Wreck-It Ralph (2012). Genres: Family, Animation, Comedy, Adventure. Wreck-It Ralph is the 9-foot-tall, 643-pound villain of an arcade video game named Fix-It Felix Jr., in which the game's titular hero fixes buildings that Ralph destroys. Wanting to prove he can be a good guy and not just a villain, Ralph escapes his game and lands in Hero's Duty, a first-person shooter where he helps the game's hero battle against alien invaders. He later enters Sugar Rush, a kart racing game set on tracks made of candies, cookies and other sweets. There, Ralph meets Vanellope von Schweetz who has learned that her game is faced with a dire threat that could affect the entire arcade, and one that Ralph may have inadvertently started.. Tags: support group, product placement, bullying, racing, arcade, medal, self esteem, curiosity, precocious child, aftercreditsstinger, duringcreditsstinger, first person shooter, glitch, carefree, video gamer"} +{"id": "5255", "title": "The Polar Express", "year": 2004, "duration_min": 100, "rating": 6.4, "genres": "Adventure, Animation, Family, Fantasy", "genres_pipe": "|Adventure|Animation|Family|Fantasy|", "keywords": "santa claus, nerd, faith, gift, bell, beard, north pole, chute, trestle, ticket, christmas", "tags_pipe": "|santa claus|nerd|faith|gift|bell|beard|north pole|chute|trestle|ticket|christmas|", "overview": "When a doubting young boy takes an extraordinary train ride to the North Pole, he embarks on a journey of self-discovery that shows him that the wonder of life never fades for those who believe.", "text_for_embedding": "The Polar Express (2004). Genres: Adventure, Animation, Family, Fantasy. When a doubting young boy takes an extraordinary train ride to the North Pole, he embarks on a journey of self-discovery that shows him that the wonder of life never fades for those who believe.. Tags: santa claus, nerd, faith, gift, bell, beard, north pole, chute, trestle, ticket, christmas"} +{"id": "47933", "title": "Independence Day: Resurgence", "year": 2016, "duration_min": 120, "rating": 4.9, "genres": "Action, Adventure, Science Fiction", "genres_pipe": "|Action|Adventure|Science Fiction|", "keywords": "alternate history, alien invasion", "tags_pipe": "|alternate history|alien invasion|", "overview": "We always knew they were coming back. Using recovered alien technology, the nations of Earth have collaborated on an immense defense program to protect the planet. But nothing can prepare us for the aliens’ advanced and unprecedented force. Only the ingenuity of a few brave men and women can bring our world back from the brink of extinction.", "text_for_embedding": "Independence Day: Resurgence (2016). Genres: Action, Adventure, Science Fiction. We always knew they were coming back. Using recovered alien technology, the nations of Earth have collaborated on an immense defense program to protect the planet. But nothing can prepare us for the aliens’ advanced and unprecedented force. Only the ingenuity of a few brave men and women can bring our world back from the brink of extinction.. Tags: alternate history, alien invasion"} +{"id": "10191", "title": "How to Train Your Dragon", "year": 2010, "duration_min": 98, "rating": 7.5, "genres": "Fantasy, Adventure, Animation, Family", "genres_pipe": "|Fantasy|Adventure|Animation|Family|", "keywords": "flying, blacksmith, arena, island, night, ship, training, village, forest, viking, friendship, ignorance, flight, nest, dragon", "tags_pipe": "|flying|blacksmith|arena|island|night|ship|training|village|forest|viking|friendship|ignorance|flight|nest|dragon|", "overview": "As the son of a Viking leader on the cusp of manhood, shy Hiccup Horrendous Haddock III faces a rite of passage: he must kill a dragon to prove his warrior mettle. But after downing a feared dragon, he realizes that he no longer wants to destroy it, and instead befriends the beast – which he names Toothless – much to the chagrin of his warrior father", "text_for_embedding": "How to Train Your Dragon (2010). Genres: Fantasy, Adventure, Animation, Family. As the son of a Viking leader on the cusp of manhood, shy Hiccup Horrendous Haddock III faces a rite of passage: he must kill a dragon to prove his warrior mettle. But after downing a feared dragon, he realizes that he no longer wants to destroy it, and instead befriends the beast – which he names Toothless – much to the chagrin of his warrior father. Tags: flying, blacksmith, arena, island, night, ship, training, village, forest, viking, friendship, ignorance, flight, nest, dragon"} +{"id": "296", "title": "Terminator 3: Rise of the Machines", "year": 2003, "duration_min": 109, "rating": 5.9, "genres": "Action, Thriller, Science Fiction", "genres_pipe": "|Action|Thriller|Science Fiction|", "keywords": "saving the world, artificial intelligence, man vs machine, cyborg, killer robot, sun glasses, leather jacket, nanotechnology, rocket launcher, firemen, veterinarian, fire engine, dystopia, psychiatrist", "tags_pipe": "|saving the world|artificial intelligence|man vs machine|cyborg|killer robot|sun glasses|leather jacket|nanotechnology|rocket launcher|firemen|veterinarian|fire engine|dystopia|psychiatrist|", "overview": "It's been 10 years since John Connor saved Earth from Judgment Day, and he's now living under the radar, steering clear of using anything Skynet can trace. That is, until he encounters T-X, a robotic assassin ordered to finish what T-1000 started. Good thing Connor's former nemesis, the Terminator, is back to aid the now-adult Connor … just like he promised.", "text_for_embedding": "Terminator 3: Rise of the Machines (2003). Genres: Action, Thriller, Science Fiction. It's been 10 years since John Connor saved Earth from Judgment Day, and he's now living under the radar, steering clear of using anything Skynet can trace. That is, until he encounters T-X, a robotic assassin ordered to finish what T-1000 started. Good thing Connor's former nemesis, the Terminator, is back to aid the now-adult Connor … just like he promised.. Tags: saving the world, artificial intelligence, man vs machine, cyborg, killer robot, sun glasses, leather jacket, nanotechnology, rocket launcher, firemen, veterinarian, fire engine, dystopia, psychiatrist"} +{"id": "118340", "title": "Guardians of the Galaxy", "year": 2014, "duration_min": 121, "rating": 7.9, "genres": "Action, Science Fiction, Adventure", "genres_pipe": "|Action|Science Fiction|Adventure|", "keywords": "marvel comic, spaceship, space, outer space, orphan, adventurer, aftercreditsstinger, duringcreditsstinger, marvel cinematic universe", "tags_pipe": "|marvel comic|spaceship|space|outer space|orphan|adventurer|aftercreditsstinger|duringcreditsstinger|marvel cinematic universe|", "overview": "Light years from Earth, 26 years after being abducted, Peter Quill finds himself the prime target of a manhunt after discovering an orb wanted by Ronan the Accuser.", "text_for_embedding": "Guardians of the Galaxy (2014). Genres: Action, Science Fiction, Adventure. Light years from Earth, 26 years after being abducted, Peter Quill finds himself the prime target of a manhunt after discovering an orb wanted by Ronan the Accuser.. Tags: marvel comic, spaceship, space, outer space, orphan, adventurer, aftercreditsstinger, duringcreditsstinger, marvel cinematic universe"} +{"id": "157336", "title": "Interstellar", "year": 2014, "duration_min": 169, "rating": 8.1, "genres": "Adventure, Drama, Science Fiction", "genres_pipe": "|Adventure|Drama|Science Fiction|", "keywords": "saving the world, artificial intelligence, father son relationship, single parent, nasa, expedition, wormhole, space travel, famine, black hole, dystopia, race against time, quantum mechanics, spaceship, space", "tags_pipe": "|saving the world|artificial intelligence|father son relationship|single parent|nasa|expedition|wormhole|space travel|famine|black hole|dystopia|race against time|quantum mechanics|spaceship|space|", "overview": "Interstellar chronicles the adventures of a group of explorers who make use of a newly discovered wormhole to surpass the limitations on human space travel and conquer the vast distances involved in an interstellar voyage.", "text_for_embedding": "Interstellar (2014). Genres: Adventure, Drama, Science Fiction. Interstellar chronicles the adventures of a group of explorers who make use of a newly discovered wormhole to surpass the limitations on human space travel and conquer the vast distances involved in an interstellar voyage.. Tags: saving the world, artificial intelligence, father son relationship, single parent, nasa, expedition, wormhole, space travel, famine, black hole, dystopia, race against time, quantum mechanics, spaceship, space"} +{"id": "27205", "title": "Inception", "year": 2010, "duration_min": 148, "rating": 8.1, "genres": "Action, Thriller, Science Fiction, Mystery, Adventure", "genres_pipe": "|Action|Thriller|Science Fiction|Mystery|Adventure|", "keywords": "loss of lover, dream, kidnapping, sleep, subconsciousness, heist, redemption, female hero", "tags_pipe": "|loss of lover|dream|kidnapping|sleep|subconsciousness|heist|redemption|female hero|", "overview": "Cobb, a skilled thief who commits corporate espionage by infiltrating the subconscious of his targets is offered a chance to regain his old life as payment for a task considered to be impossible: \"inception\", the implantation of another person's idea into a target's subconscious.", "text_for_embedding": "Inception (2010). Genres: Action, Thriller, Science Fiction, Mystery, Adventure. Cobb, a skilled thief who commits corporate espionage by infiltrating the subconscious of his targets is offered a chance to regain his old life as payment for a task considered to be impossible: \"inception\", the implantation of another person's idea into a target's subconscious.. Tags: loss of lover, dream, kidnapping, sleep, subconsciousness, heist, redemption, female hero"} +{"id": "315011", "title": "Shin Godzilla", "year": 2016, "duration_min": 120, "rating": 6.5, "genres": "Action, Adventure, Drama, Horror, Science Fiction", "genres_pipe": "|Action|Adventure|Drama|Horror|Science Fiction|", "keywords": "monster, godzilla, giant monster, destruction, kaiju, toyko", "tags_pipe": "|monster|godzilla|giant monster|destruction|kaiju|toyko|", "overview": "From the mind behind Evangelion comes a hit larger than life. When a massive, gilled monster emerges from the deep and tears through the city, the government scrambles to save its citizens. A rag-tag team of volunteers cuts through a web of red tape to uncover the monster's weakness and its mysterious ties to a foreign superpower. But time is not on their side - the greatest catastrophe to ever befall the world is about to evolve right before their very eyes.", "text_for_embedding": "Shin Godzilla (2016). Genres: Action, Adventure, Drama, Horror, Science Fiction. From the mind behind Evangelion comes a hit larger than life. When a massive, gilled monster emerges from the deep and tears through the city, the government scrambles to save its citizens. A rag-tag team of volunteers cuts through a web of red tape to uncover the monster's weakness and its mysterious ties to a foreign superpower. But time is not on their side - the greatest catastrophe to ever befall the world is about to evolve right before their very eyes.. Tags: monster, godzilla, giant monster, destruction, kaiju, toyko"} +{"id": "49051", "title": "The Hobbit: An Unexpected Journey", "year": 2012, "duration_min": 169, "rating": 7.0, "genres": "Adventure, Fantasy, Action", "genres_pipe": "|Adventure|Fantasy|Action|", "keywords": "riddle, elves, dwarves, orcs, middle-earth (tolkien), hobbit, mountains, wizard, journey, ring, goblin, courage, giant, tunnel, underground lake", "tags_pipe": "|riddle|elves|dwarves|orcs|middle-earth (tolkien)|hobbit|mountains|wizard|journey|ring|goblin|courage|giant|tunnel|underground lake|", "overview": "Bilbo Baggins, a hobbit enjoying his quiet life, is swept into an epic quest by Gandalf the Grey and thirteen dwarves who seek to reclaim their mountain home from Smaug, the dragon.", "text_for_embedding": "The Hobbit: An Unexpected Journey (2012). Genres: Adventure, Fantasy, Action. Bilbo Baggins, a hobbit enjoying his quiet life, is swept into an epic quest by Gandalf the Grey and thirteen dwarves who seek to reclaim their mountain home from Smaug, the dragon.. Tags: riddle, elves, dwarves, orcs, middle-earth (tolkien), hobbit, mountains, wizard, journey, ring, goblin, courage, giant, tunnel, underground lake"} +{"id": "9799", "title": "The Fast and the Furious", "year": 2001, "duration_min": 106, "rating": 6.6, "genres": "Action, Crime, Thriller", "genres_pipe": "|Action|Crime|Thriller|", "keywords": "street gang, car race, undercover, auto-tuning, los angeles, car, automobile racing, aftercreditsstinger, duringcreditsstinger", "tags_pipe": "|street gang|car race|undercover|auto-tuning|los angeles|car|automobile racing|aftercreditsstinger|duringcreditsstinger|", "overview": "Domenic Toretto is a Los Angeles street racer suspected of masterminding a series of big-rig hijackings. When undercover cop Brian O'Conner infiltrates Toretto's iconoclastic crew, he falls for Toretto's sister and must choose a side: the gang or the LAPD.", "text_for_embedding": "The Fast and the Furious (2001). Genres: Action, Crime, Thriller. Domenic Toretto is a Los Angeles street racer suspected of masterminding a series of big-rig hijackings. When undercover cop Brian O'Conner infiltrates Toretto's iconoclastic crew, he falls for Toretto's sister and must choose a side: the gang or the LAPD.. Tags: street gang, car race, undercover, auto-tuning, los angeles, car, automobile racing, aftercreditsstinger, duringcreditsstinger"} +{"id": "4922", "title": "The Curious Case of Benjamin Button", "year": 2008, "duration_min": 166, "rating": 7.3, "genres": "Fantasy, Drama, Thriller, Mystery, Romance", "genres_pipe": "|Fantasy|Drama|Thriller|Mystery|Romance|", "keywords": "diary, navy, funeral, tea, travel, hospital", "tags_pipe": "|diary|navy|funeral|tea|travel|hospital|", "overview": "Tells the story of Benjamin Button, a man who starts aging backwards with bizarre consequences.", "text_for_embedding": "The Curious Case of Benjamin Button (2008). Genres: Fantasy, Drama, Thriller, Mystery, Romance. Tells the story of Benjamin Button, a man who starts aging backwards with bizarre consequences.. Tags: diary, navy, funeral, tea, travel, hospital"} +{"id": "49538", "title": "X-Men: First Class", "year": 2011, "duration_min": 132, "rating": 7.1, "genres": "Action, Science Fiction, Adventure", "genres_pipe": "|Action|Science Fiction|Adventure|", "keywords": "cia, mutant, mine, marvel comic, superhero, based on comic book, superhuman, historical fiction, nuclear war, cuban missile crisis, world war iii, 1960s", "tags_pipe": "|cia|mutant|mine|marvel comic|superhero|based on comic book|superhuman|historical fiction|nuclear war|cuban missile crisis|world war iii|1960s|", "overview": "Before Charles Xavier and Erik Lensherr took the names Professor X and Magneto, they were two young men discovering their powers for the first time. Before they were arch-enemies, they were closest of friends, working together with other mutants (some familiar, some new), to stop the greatest threat the world has ever known.", "text_for_embedding": "X-Men: First Class (2011). Genres: Action, Science Fiction, Adventure. Before Charles Xavier and Erik Lensherr took the names Professor X and Magneto, they were two young men discovering their powers for the first time. Before they were arch-enemies, they were closest of friends, working together with other mutants (some familiar, some new), to stop the greatest threat the world has ever known.. Tags: cia, mutant, mine, marvel comic, superhero, based on comic book, superhuman, historical fiction, nuclear war, cuban missile crisis, world war iii, 1960s"} +{"id": "131634", "title": "The Hunger Games: Mockingjay - Part 2", "year": 2015, "duration_min": 137, "rating": 6.6, "genres": "Action, Adventure, Science Fiction", "genres_pipe": "|Action|Adventure|Science Fiction|", "keywords": "revolution, strong woman, dystopia, game of death, 3d, based on young adult novel", "tags_pipe": "|revolution|strong woman|dystopia|game of death|3d|based on young adult novel|", "overview": "With the nation of Panem in a full scale war, Katniss confronts President Snow in the final showdown. Teamed with a group of her closest friends – including Gale, Finnick, and Peeta – Katniss goes off on a mission with the unit from District 13 as they risk their lives to stage an assassination attempt on President Snow who has become increasingly obsessed with destroying her. The mortal traps, enemies, and moral choices that await Katniss will challenge her more than any arena she faced in The Hunger Games.", "text_for_embedding": "The Hunger Games: Mockingjay - Part 2 (2015). Genres: Action, Adventure, Science Fiction. With the nation of Panem in a full scale war, Katniss confronts President Snow in the final showdown. Teamed with a group of her closest friends – including Gale, Finnick, and Peeta – Katniss goes off on a mission with the unit from District 13 as they risk their lives to stage an assassination attempt on President Snow who has become increasingly obsessed with destroying her. The mortal traps, enemies, and moral choices that await Katniss will challenge her more than any arena she faced in The Hunger Games.. Tags: revolution, strong woman, dystopia, game of death, 3d, based on young adult novel"} +{"id": "27022", "title": "The Sorcerer's Apprentice", "year": 2010, "duration_min": 109, "rating": 5.8, "genres": "Fantasy, Adventure, Action, Comedy, Drama", "genres_pipe": "|Fantasy|Adventure|Action|Comedy|Drama|", "keywords": "witch, fire, wolf, fountain, magic, book, castle, water, apprentice, training, merlin, love, mission, sorcerer, dragon", "tags_pipe": "|witch|fire|wolf|fountain|magic|book|castle|water|apprentice|training|merlin|love|mission|sorcerer|dragon|", "overview": "Balthazar Blake is a master sorcerer in modern-day Manhattan trying to defend the city from his arch-nemesis, Maxim Horvath. Balthazar can't do it alone, so he recruits Dave Stutler, a seemingly average guy who demonstrates hidden potential, as his reluctant protégé. The sorcerer gives his unwilling accomplice a crash course in the art and science of magic, and together, these unlikely partners work to stop the forces of darkness.", "text_for_embedding": "The Sorcerer's Apprentice (2010). Genres: Fantasy, Adventure, Action, Comedy, Drama. Balthazar Blake is a master sorcerer in modern-day Manhattan trying to defend the city from his arch-nemesis, Maxim Horvath. Balthazar can't do it alone, so he recruits Dave Stutler, a seemingly average guy who demonstrates hidden potential, as his reluctant protégé. The sorcerer gives his unwilling accomplice a crash course in the art and science of magic, and together, these unlikely partners work to stop the forces of darkness.. Tags: witch, fire, wolf, fountain, magic, book, castle, water, apprentice, training, merlin, love, mission, sorcerer, dragon"} +{"id": "503", "title": "Poseidon", "year": 2006, "duration_min": 99, "rating": 5.5, "genres": "Adventure, Action, Drama, Thriller", "genres_pipe": "|Adventure|Action|Drama|Thriller|", "keywords": "new year's eve, fire, drowning, cataclysm, loss of father, atlantic ocean, ball, self-abandonment, shipwreck, giant wave, blackout, ship, daughter, single, escape", "tags_pipe": "|new year's eve|fire|drowning|cataclysm|loss of father|atlantic ocean|ball|self-abandonment|shipwreck|giant wave|blackout|ship|daughter|single|escape|", "overview": "A packed cruise ship traveling the Atlantic is hit and overturned by a massive wave, compelling the passengers to begin a dramatic fight for their lives.", "text_for_embedding": "Poseidon (2006). Genres: Adventure, Action, Drama, Thriller. A packed cruise ship traveling the Atlantic is hit and overturned by a massive wave, compelling the passengers to begin a dramatic fight for their lives.. Tags: new year's eve, fire, drowning, cataclysm, loss of father, atlantic ocean, ball, self-abandonment, shipwreck, giant wave, blackout, ship, daughter, single, escape"} +{"id": "241259", "title": "Alice Through the Looking Glass", "year": 2016, "duration_min": 113, "rating": 6.5, "genres": "Fantasy", "genres_pipe": "|Fantasy|", "keywords": "based on novel, clock, queen, sequel, alice in wonderland, dark fantasy, mad hatter, 3d", "tags_pipe": "|based on novel|clock|queen|sequel|alice in wonderland|dark fantasy|mad hatter|3d|", "overview": "In the sequel to Tim Burton's \"Alice in Wonderland\", Alice Kingsleigh returns to Underland and faces a new adventure in saving the Mad Hatter.", "text_for_embedding": "Alice Through the Looking Glass (2016). Genres: Fantasy. In the sequel to Tim Burton's \"Alice in Wonderland\", Alice Kingsleigh returns to Underland and faces a new adventure in saving the Mad Hatter.. Tags: based on novel, clock, queen, sequel, alice in wonderland, dark fantasy, mad hatter, 3d"} +{"id": "810", "title": "Shrek the Third", "year": 2007, "duration_min": 93, "rating": 6.0, "genres": "Fantasy, Adventure, Animation, Comedy, Family", "genres_pipe": "|Fantasy|Adventure|Animation|Comedy|Family|", "keywords": "ambush, sadness, stage, liberation of prisoners, island, traitor, shipwreck, prince, ship, donkey, kingdom, theatre play, transformation, conciliation, tricks", "tags_pipe": "|ambush|sadness|stage|liberation of prisoners|island|traitor|shipwreck|prince|ship|donkey|kingdom|theatre play|transformation|conciliation|tricks|", "overview": "The King of Far Far Away has died and Shrek and Fiona are to become King & Queen. However, Shrek wants to return to his cozy swamp and live in peace and quiet, so when he finds out there is another heir to the throne, they set off to bring him back to rule the kingdom.", "text_for_embedding": "Shrek the Third (2007). Genres: Fantasy, Adventure, Animation, Comedy, Family. The King of Far Far Away has died and Shrek and Fiona are to become King & Queen. However, Shrek wants to return to his cozy swamp and live in peace and quiet, so when he finds out there is another heir to the throne, they set off to bring him back to rule the kingdom.. Tags: ambush, sadness, stage, liberation of prisoners, island, traitor, shipwreck, prince, ship, donkey, kingdom, theatre play, transformation, conciliation, tricks"} +{"id": "68735", "title": "Warcraft", "year": 2016, "duration_min": 123, "rating": 6.3, "genres": "Action, Adventure, Fantasy", "genres_pipe": "|Action|Adventure|Fantasy|", "keywords": "video game, elves, orcs, magic, chase, based on comic book, sorcerer, fictional war, based on video game, wizard, fictional language, muscles, orc, sword and sorcery", "tags_pipe": "|video game|elves|orcs|magic|chase|based on comic book|sorcerer|fictional war|based on video game|wizard|fictional language|muscles|orc|sword and sorcery|", "overview": "The peaceful realm of Azeroth stands on the brink of war as its civilization faces a fearsome race of invaders: orc warriors fleeing their dying home to colonize another. As a portal opens to connect the two worlds, one army faces destruction and the other faces extinction. From opposing sides, two heroes are set on a collision course that will decide the fate of their family, their people, and their home.", "text_for_embedding": "Warcraft (2016). Genres: Action, Adventure, Fantasy. The peaceful realm of Azeroth stands on the brink of war as its civilization faces a fearsome race of invaders: orc warriors fleeing their dying home to colonize another. As a portal opens to connect the two worlds, one army faces destruction and the other faces extinction. From opposing sides, two heroes are set on a collision course that will decide the fate of their family, their people, and their home.. Tags: video game, elves, orcs, magic, chase, based on comic book, sorcerer, fictional war, based on video game, wizard, fictional language, muscles, orc, sword and sorcery"} +{"id": "87101", "title": "Terminator Genisys", "year": 2015, "duration_min": 126, "rating": 5.8, "genres": "Science Fiction, Action, Thriller, Adventure", "genres_pipe": "|Science Fiction|Action|Thriller|Adventure|", "keywords": "saving the world, artificial intelligence, cyborg, killer robot, future, time travel, dystopia, sequel, fiction, duringcreditsstinger, 3d", "tags_pipe": "|saving the world|artificial intelligence|cyborg|killer robot|future|time travel|dystopia|sequel|fiction|duringcreditsstinger|3d|", "overview": "The year is 2029. John Connor, leader of the resistance continues the war against the machines. At the Los Angeles offensive, John's fears of the unknown future begin to emerge when TECOM spies reveal a new plot by SkyNet that will attack him from both fronts; past and future, and will ultimately change warfare forever.", "text_for_embedding": "Terminator Genisys (2015). Genres: Science Fiction, Action, Thriller, Adventure. The year is 2029. John Connor, leader of the resistance continues the war against the machines. At the Los Angeles offensive, John's fears of the unknown future begin to emerge when TECOM spies reveal a new plot by SkyNet that will attack him from both fronts; past and future, and will ultimately change warfare forever.. Tags: saving the world, artificial intelligence, cyborg, killer robot, future, time travel, dystopia, sequel, fiction, duringcreditsstinger, 3d"} +{"id": "10140", "title": "The Chronicles of Narnia: The Voyage of the Dawn Treader", "year": 2010, "duration_min": 113, "rating": 6.2, "genres": "Adventure, Family, Fantasy", "genres_pipe": "|Adventure|Family|Fantasy|", "keywords": "based on novel, magic, good vs evil, king, narnia, fantasy world, knife held to throat, snowing, quest", "tags_pipe": "|based on novel|magic|good vs evil|king|narnia|fantasy world|knife held to throat|snowing|quest|", "overview": "This time around Edmund and Lucy Pevensie, along with their pesky cousin Eustace Scrubb find themselves swallowed into a painting and on to a fantastic Narnian ship headed for the very edges of the world.", "text_for_embedding": "The Chronicles of Narnia: The Voyage of the Dawn Treader (2010). Genres: Adventure, Family, Fantasy. This time around Edmund and Lucy Pevensie, along with their pesky cousin Eustace Scrubb find themselves swallowed into a painting and on to a fantastic Narnian ship headed for the very edges of the world.. Tags: based on novel, magic, good vs evil, king, narnia, fantasy world, knife held to throat, snowing, quest"} +{"id": "676", "title": "Pearl Harbor", "year": 2001, "duration_min": 183, "rating": 6.6, "genres": "History, Romance, War", "genres_pipe": "|History|Romance|War|", "keywords": "nurse, patriotism, hawaii, world war ii, pilot, pearl harbor, u.s. air force, airplane, war, army, love, pin-up", "tags_pipe": "|nurse|patriotism|hawaii|world war ii|pilot|pearl harbor|u.s. air force|airplane|war|army|love|pin-up|", "overview": "The lifelong friendship between Rafe McCawley and Danny Walker is put to the ultimate test when the two ace fighter pilots become entangled in a love triangle with beautiful Naval nurse Evelyn Johnson. But the rivalry between the friends-turned-foes is immediately put on hold when they find themselves at the center of Japan's devastating attack on Pearl Harbor on Dec. 7, 1941.", "text_for_embedding": "Pearl Harbor (2001). Genres: History, Romance, War. The lifelong friendship between Rafe McCawley and Danny Walker is put to the ultimate test when the two ace fighter pilots become entangled in a love triangle with beautiful Naval nurse Evelyn Johnson. But the rivalry between the friends-turned-foes is immediately put on hold when they find themselves at the center of Japan's devastating attack on Pearl Harbor on Dec. 7, 1941.. Tags: nurse, patriotism, hawaii, world war ii, pilot, pearl harbor, u.s. air force, airplane, war, army, love, pin-up"} +{"id": "1858", "title": "Transformers", "year": 2007, "duration_min": 144, "rating": 6.6, "genres": "Adventure, Science Fiction, Action", "genres_pipe": "|Adventure|Science Fiction|Action|", "keywords": "destroy, transformation, alien, based on toy, transformers, robot, duringcreditsstinger, teenage hero", "tags_pipe": "|destroy|transformation|alien|based on toy|transformers|robot|duringcreditsstinger|teenage hero|", "overview": "Young teenager, Sam Witwicky becomes involved in the ancient struggle between two extraterrestrial factions of transforming robots – the heroic Autobots and the evil Decepticons. Sam holds the clue to unimaginable power and the Decepticons will stop at nothing to retrieve it.", "text_for_embedding": "Transformers (2007). Genres: Adventure, Science Fiction, Action. Young teenager, Sam Witwicky becomes involved in the ancient struggle between two extraterrestrial factions of transforming robots – the heroic Autobots and the evil Decepticons. Sam holds the clue to unimaginable power and the Decepticons will stop at nothing to retrieve it.. Tags: destroy, transformation, alien, based on toy, transformers, robot, duringcreditsstinger, teenage hero"} +{"id": "1966", "title": "Alexander", "year": 2004, "duration_min": 175, "rating": 5.6, "genres": "War, History, Action, Adventure, Drama, Romance", "genres_pipe": "|War|History|Action|Adventure|Drama|Romance|", "keywords": "aristotle, egypt, greece, persia, elephant, campaign, alexander the great, homosexuality, gay relationship, ancient world", "tags_pipe": "|aristotle|egypt|greece|persia|elephant|campaign|alexander the great|homosexuality|gay relationship|ancient world|", "overview": "Alexander, the King of Macedonia, leads his legions against the giant Persian Empire. After defeating the Persians, he leads his army across the then known world, venturing farther than any westerner had ever gone, all the way to India.", "text_for_embedding": "Alexander (2004). Genres: War, History, Action, Adventure, Drama, Romance. Alexander, the King of Macedonia, leads his legions against the giant Persian Empire. After defeating the Persians, he leads his army across the then known world, venturing farther than any westerner had ever gone, all the way to India.. Tags: aristotle, egypt, greece, persia, elephant, campaign, alexander the great, homosexuality, gay relationship, ancient world"} +{"id": "675", "title": "Harry Potter and the Order of the Phoenix", "year": 2007, "duration_min": 138, "rating": 7.4, "genres": "Adventure, Fantasy, Family, Mystery", "genres_pipe": "|Adventure|Fantasy|Family|Mystery|", "keywords": "prophecy, witch, loss of lover, magic, cutting the cord, child hero, dying and death, broom, sorcerer's apprentice, school of witchcraft, black magic, death of a friend, sorcery, occultism", "tags_pipe": "|prophecy|witch|loss of lover|magic|cutting the cord|child hero|dying and death|broom|sorcerer's apprentice|school of witchcraft|black magic|death of a friend|sorcery|occultism|", "overview": "Returning for his fifth year of study at Hogwarts, Harry is stunned to find that his warnings about the return of Lord Voldemort have been ignored. Left with no choice, Harry takes matters into his own hands, training a small group of students – dubbed 'Dumbledore's Army' – to defend themselves against the dark arts.", "text_for_embedding": "Harry Potter and the Order of the Phoenix (2007). Genres: Adventure, Fantasy, Family, Mystery. Returning for his fifth year of study at Hogwarts, Harry is stunned to find that his warnings about the return of Lord Voldemort have been ignored. Left with no choice, Harry takes matters into his own hands, training a small group of students – dubbed 'Dumbledore's Army' – to defend themselves against the dark arts.. Tags: prophecy, witch, loss of lover, magic, cutting the cord, child hero, dying and death, broom, sorcerer's apprentice, school of witchcraft, black magic, death of a friend, sorcery, occultism"} +{"id": "674", "title": "Harry Potter and the Goblet of Fire", "year": 2005, "duration_min": 157, "rating": 7.5, "genres": "Adventure, Fantasy, Family", "genres_pipe": "|Adventure|Fantasy|Family|", "keywords": "magic, dying and death, broom, sorcerer's apprentice, school of witchcraft, chosen one, black magic, boarding school, vision, tournament, teenager, wizard, teenage hero, based on young adult novel", "tags_pipe": "|magic|dying and death|broom|sorcerer's apprentice|school of witchcraft|chosen one|black magic|boarding school|vision|tournament|teenager|wizard|teenage hero|based on young adult novel|", "overview": "Harry starts his fourth year at Hogwarts, competes in the treacherous Triwizard Tournament and faces the evil Lord Voldemort. Ron and Hermione help Harry manage the pressure – but Voldemort lurks, awaiting his chance to destroy Harry and all that he stands for.", "text_for_embedding": "Harry Potter and the Goblet of Fire (2005). Genres: Adventure, Fantasy, Family. Harry starts his fourth year at Hogwarts, competes in the treacherous Triwizard Tournament and faces the evil Lord Voldemort. Ron and Hermione help Harry manage the pressure – but Voldemort lurks, awaiting his chance to destroy Harry and all that he stands for.. Tags: magic, dying and death, broom, sorcerer's apprentice, school of witchcraft, chosen one, black magic, boarding school, vision, tournament, teenager, wizard, teenage hero, based on young adult novel"} +{"id": "8960", "title": "Hancock", "year": 2008, "duration_min": 92, "rating": 6.2, "genres": "Fantasy, Action", "genres_pipe": "|Fantasy|Action|", "keywords": "flying, alcohol, love of one's life, forbidden love, lovers, affection, advertising expert, alcoholism, invulnerability, superhero, pokies, duringcreditsstinger", "tags_pipe": "|flying|alcohol|love of one's life|forbidden love|lovers|affection|advertising expert|alcoholism|invulnerability|superhero|pokies|duringcreditsstinger|", "overview": "Hancock is a down-and-out superhero who's forced to employ a PR expert to help repair his image when the public grows weary of all the damage he's inflicted during his lifesaving heroics. The agent's idea of imprisoning the antihero to make the world miss him proves successful, but will Hancock stick to his new sense of purpose or slip back into old habits?", "text_for_embedding": "Hancock (2008). Genres: Fantasy, Action. Hancock is a down-and-out superhero who's forced to employ a PR expert to help repair his image when the public grows weary of all the damage he's inflicted during his lifesaving heroics. The agent's idea of imprisoning the antihero to make the world miss him proves successful, but will Hancock stick to his new sense of purpose or slip back into old habits?. Tags: flying, alcohol, love of one's life, forbidden love, lovers, affection, advertising expert, alcoholism, invulnerability, superhero, pokies, duringcreditsstinger"} +{"id": "6479", "title": "I Am Legend", "year": 2007, "duration_min": 101, "rating": 6.9, "genres": "Drama, Horror, Action, Thriller, Science Fiction", "genres_pipe": "|Drama|Horror|Action|Thriller|Science Fiction|", "keywords": "saving the world, lost civilisation, post-apocalyptic, dystopia, matter of life and death, alone, helplessness, virus, pandemic", "tags_pipe": "|saving the world|lost civilisation|post-apocalyptic|dystopia|matter of life and death|alone|helplessness|virus|pandemic|", "overview": "Robert Neville is a scientist who was unable to stop the spread of the terrible virus that was incurable and man-made. Immune, Neville is now the last human survivor in what is left of New York City and perhaps the world. For three years, Neville has faithfully sent out daily radio messages, desperate to find any other survivors who might be out there. But he is not alone.", "text_for_embedding": "I Am Legend (2007). Genres: Drama, Horror, Action, Thriller, Science Fiction. Robert Neville is a scientist who was unable to stop the spread of the terrible virus that was incurable and man-made. Immune, Neville is now the last human survivor in what is left of New York City and perhaps the world. For three years, Neville has faithfully sent out daily radio messages, desperate to find any other survivors who might be out there. But he is not alone.. Tags: saving the world, lost civilisation, post-apocalyptic, dystopia, matter of life and death, alone, helplessness, virus, pandemic"} +{"id": "118", "title": "Charlie and the Chocolate Factory", "year": 2005, "duration_min": 115, "rating": 6.7, "genres": "Adventure, Comedy, Family, Fantasy", "genres_pipe": "|Adventure|Comedy|Family|Fantasy|", "keywords": "london england, father son relationship, chocolate, factory worker, based on novel, parents kids relationship, candy, overweight child, grandfather grandson relationship, teacher", "tags_pipe": "|london england|father son relationship|chocolate|factory worker|based on novel|parents kids relationship|candy|overweight child|grandfather grandson relationship|teacher|", "overview": "A young boy wins a tour through the most magnificent chocolate factory in the world, led by the world's most unusual candy maker.", "text_for_embedding": "Charlie and the Chocolate Factory (2005). Genres: Adventure, Comedy, Family, Fantasy. A young boy wins a tour through the most magnificent chocolate factory in the world, led by the world's most unusual candy maker.. Tags: london england, father son relationship, chocolate, factory worker, based on novel, parents kids relationship, candy, overweight child, grandfather grandson relationship, teacher"} +{"id": "2062", "title": "Ratatouille", "year": 2007, "duration_min": 111, "rating": 7.5, "genres": "Animation, Comedy, Family, Fantasy", "genres_pipe": "|Animation|Comedy|Family|Fantasy|", "keywords": "paris, brother brother relationship, expensive restaurant, river, cook, mouse, confidence, roof, window, leaving one's family, work, restaurant critic, kitchen, spice, court", "tags_pipe": "|paris|brother brother relationship|expensive restaurant|river|cook|mouse|confidence|roof|window|leaving one's family|work|restaurant critic|kitchen|spice|court|", "overview": "A rat named Remy dreams of becoming a great French chef despite his family's wishes and the obvious problem of being a rat in a decidedly rodent-phobic profession. When fate places Remy in the sewers of Paris, he finds himself ideally situated beneath a restaurant made famous by his culinary hero, Auguste Gusteau. Despite the apparent dangers of being an unlikely - and certainly unwanted - visitor in the kitchen of a fine French restaurant, Remy's passion for cooking soon sets into motion a hilarious and exciting rat race that turns the culinary world of Paris upside down.", "text_for_embedding": "Ratatouille (2007). Genres: Animation, Comedy, Family, Fantasy. A rat named Remy dreams of becoming a great French chef despite his family's wishes and the obvious problem of being a rat in a decidedly rodent-phobic profession. When fate places Remy in the sewers of Paris, he finds himself ideally situated beneath a restaurant made famous by his culinary hero, Auguste Gusteau. Despite the apparent dangers of being an unlikely - and certainly unwanted - visitor in the kitchen of a fine French restaurant, Remy's passion for cooking soon sets into motion a hilarious and exciting rat race that turns the culinary world of Paris upside down.. Tags: paris, brother brother relationship, expensive restaurant, river, cook, mouse, confidence, roof, window, leaving one's family, work, restaurant critic, kitchen, spice, court"} +{"id": "272", "title": "Batman Begins", "year": 2005, "duration_min": 140, "rating": 7.5, "genres": "Action, Crime, Drama", "genres_pipe": "|Action|Crime|Drama|", "keywords": "himalaya, martial arts, dc comics, crime fighter, secret identity, undercover, hero, loss of father, society, gotham city, vigilante, superhero, based on comic book, rivalry, tragic hero", "tags_pipe": "|himalaya|martial arts|dc comics|crime fighter|secret identity|undercover|hero|loss of father|society|gotham city|vigilante|superhero|based on comic book|rivalry|tragic hero|", "overview": "Driven by tragedy, billionaire Bruce Wayne dedicates his life to uncovering and defeating the corruption that plagues his home, Gotham City. Unable to work within the system, he instead creates a new identity, a symbol of fear for the criminal underworld - The Batman.", "text_for_embedding": "Batman Begins (2005). Genres: Action, Crime, Drama. Driven by tragedy, billionaire Bruce Wayne dedicates his life to uncovering and defeating the corruption that plagues his home, Gotham City. Unable to work within the system, he instead creates a new identity, a symbol of fear for the criminal underworld - The Batman.. Tags: himalaya, martial arts, dc comics, crime fighter, secret identity, undercover, hero, loss of father, society, gotham city, vigilante, superhero, based on comic book, rivalry, tragic hero"} +{"id": "10527", "title": "Madagascar: Escape 2 Africa", "year": 2008, "duration_min": 89, "rating": 6.2, "genres": "Family, Animation", "genres_pipe": "|Family|Animation|", "keywords": "africa, jealousy, dance, hunger, lion, zoo, hippopotamus, chimp, penguin, volcano, madagascar, airplane, zebra, sequel, shark", "tags_pipe": "|africa|jealousy|dance|hunger|lion|zoo|hippopotamus|chimp|penguin|volcano|madagascar|airplane|zebra|sequel|shark|", "overview": "Alex, Marty, Melman, Gloria, King Julien, Maurice, the penguins and the chimps are back and still marooned on Madagascar. In the face of this obstacle, the New Yorkers have hatched a plan so crazy it just might work. With military precision, the penguins have repaired an old crashed plane... sort of.", "text_for_embedding": "Madagascar: Escape 2 Africa (2008). Genres: Family, Animation. Alex, Marty, Melman, Gloria, King Julien, Maurice, the penguins and the chimps are back and still marooned on Madagascar. In the face of this obstacle, the New Yorkers have hatched a plan so crazy it just might work. With military precision, the penguins have repaired an old crashed plane... sort of.. Tags: africa, jealousy, dance, hunger, lion, zoo, hippopotamus, chimp, penguin, volcano, madagascar, airplane, zebra, sequel, shark"} +{"id": "18360", "title": "Night at the Museum: Battle of the Smithsonian", "year": 2009, "duration_min": 105, "rating": 5.9, "genres": "Adventure, Fantasy, Action, Comedy, Family", "genres_pipe": "|Adventure|Fantasy|Action|Comedy|Family|", "keywords": "museum, theodore roosevelt, duringcreditsstinger, amelia earhart, smithsonian", "tags_pipe": "|museum|theodore roosevelt|duringcreditsstinger|amelia earhart|smithsonian|", "overview": "Hapless museum night watchman Larry Daley must help his living, breathing exhibit friends out of a pickle now that they've been transferred to the archives at the Smithsonian Institution. Larry's (mis)adventures this time include close encounters with Amelia Earhart, Abe Lincoln and Ivan the Terrible.", "text_for_embedding": "Night at the Museum: Battle of the Smithsonian (2009). Genres: Adventure, Fantasy, Action, Comedy, Family. Hapless museum night watchman Larry Daley must help his living, breathing exhibit friends out of a pickle now that they've been transferred to the archives at the Smithsonian Institution. Larry's (mis)adventures this time include close encounters with Amelia Earhart, Abe Lincoln and Ivan the Terrible.. Tags: museum, theodore roosevelt, duringcreditsstinger, amelia earhart, smithsonian"} +{"id": "2080", "title": "X-Men Origins: Wolverine", "year": 2009, "duration_min": 107, "rating": 6.2, "genres": "Adventure, Action, Thriller, Science Fiction", "genres_pipe": "|Adventure|Action|Thriller|Science Fiction|", "keywords": "corruption, mutant, boxer, army, marvel comic, superhero, aftercreditsstinger, duringcreditsstinger", "tags_pipe": "|corruption|mutant|boxer|army|marvel comic|superhero|aftercreditsstinger|duringcreditsstinger|", "overview": "After seeking to live a normal life, Logan sets out to avenge the death of his girlfriend by undergoing the mutant Weapon X program and becoming Wolverine.", "text_for_embedding": "X-Men Origins: Wolverine (2009). Genres: Adventure, Action, Thriller, Science Fiction. After seeking to live a normal life, Logan sets out to avenge the death of his girlfriend by undergoing the mutant Weapon X program and becoming Wolverine.. Tags: corruption, mutant, boxer, army, marvel comic, superhero, aftercreditsstinger, duringcreditsstinger"} +{"id": "605", "title": "The Matrix Revolutions", "year": 2003, "duration_min": 129, "rating": 6.4, "genres": "Adventure, Action, Thriller, Science Fiction", "genres_pipe": "|Adventure|Action|Thriller|Science Fiction|", "keywords": "saving the world, artificial intelligence, man vs machine, flying, philosophy, fortune teller, kung fu, underground world, killer robot, temple, subway, dream, sun, hero, fight", "tags_pipe": "|saving the world|artificial intelligence|man vs machine|flying|philosophy|fortune teller|kung fu|underground world|killer robot|temple|subway|dream|sun|hero|fight|", "overview": "The human city of Zion defends itself against the massive invasion of the machines as Neo fights to end the war at another front while also opposing the rogue Agent Smith.", "text_for_embedding": "The Matrix Revolutions (2003). Genres: Adventure, Action, Thriller, Science Fiction. The human city of Zion defends itself against the massive invasion of the machines as Neo fights to end the war at another front while also opposing the rogue Agent Smith.. Tags: saving the world, artificial intelligence, man vs machine, flying, philosophy, fortune teller, kung fu, underground world, killer robot, temple, subway, dream, sun, hero, fight"} +{"id": "109445", "title": "Frozen", "year": 2013, "duration_min": 102, "rating": 7.3, "genres": "Animation, Adventure, Family", "genres_pipe": "|Animation|Adventure|Family|", "keywords": "queen, musical, princess, betrayal, snowman, animation, reindeer, curse, snow, troll, mountain climber, aftercreditsstinger, woman director, 3d", "tags_pipe": "|queen|musical|princess|betrayal|snowman|animation|reindeer|curse|snow|troll|mountain climber|aftercreditsstinger|woman director|3d|", "overview": "Young princess Anna of Arendelle dreams about finding true love at her sister Elsa’s coronation. Fate takes her on a dangerous journey in an attempt to end the eternal winter that has fallen over the kingdom. She's accompanied by ice delivery man Kristoff, his reindeer Sven, and snowman Olaf. On an adventure where she will find out what friendship, courage, family, and true love really means.", "text_for_embedding": "Frozen (2013). Genres: Animation, Adventure, Family. Young princess Anna of Arendelle dreams about finding true love at her sister Elsa’s coronation. Fate takes her on a dangerous journey in an attempt to end the eternal winter that has fallen over the kingdom. She's accompanied by ice delivery man Kristoff, his reindeer Sven, and snowman Olaf. On an adventure where she will find out what friendship, courage, family, and true love really means.. Tags: queen, musical, princess, betrayal, snowman, animation, reindeer, curse, snow, troll, mountain climber, aftercreditsstinger, woman director, 3d"} +{"id": "604", "title": "The Matrix Reloaded", "year": 2003, "duration_min": 138, "rating": 6.7, "genres": "Adventure, Action, Thriller, Science Fiction", "genres_pipe": "|Adventure|Action|Thriller|Science Fiction|", "keywords": "saving the world, artificial intelligence, man vs machine, martial arts, kung fu, underground world, dream, hero, fight, computer virus, key, future, plato, precognition, rave", "tags_pipe": "|saving the world|artificial intelligence|man vs machine|martial arts|kung fu|underground world|dream|hero|fight|computer virus|key|future|plato|precognition|rave|", "overview": "Six months after the events depicted in The Matrix, Neo has proved to be a good omen for the free humans, as more and more humans are being freed from the matrix and brought to Zion, the one and only stronghold of the Resistance. Neo himself has discovered his superpowers including super speed, ability to see the codes of the things inside the matrix and a certain degree of pre-cognition. But a nasty piece of news hits the human resistance: 250,000 machine sentinels are digging to Zion and would reach them in 72 hours. As Zion prepares for the ultimate war, Neo, Morpheus and Trinity are advised by the Oracle to find the Keymaker who would help them reach the Source. Meanwhile Neo's recurrent dreams depicting Trinity's death have got him worried and as if it was not enough, Agent Smith has somehow escaped deletion, has become more powerful than before and has fixed Neo as his next target.", "text_for_embedding": "The Matrix Reloaded (2003). Genres: Adventure, Action, Thriller, Science Fiction. Six months after the events depicted in The Matrix, Neo has proved to be a good omen for the free humans, as more and more humans are being freed from the matrix and brought to Zion, the one and only stronghold of the Resistance. Neo himself has discovered his superpowers including super speed, ability to see the codes of the things inside the matrix and a certain degree of pre-cognition. But a nasty piece of news hits the human resistance: 250,000 machine sentinels are digging to Zion and would reach them in 72 hours. As Zion prepares for the ultimate war, Neo, Morpheus and Trinity are advised by the Oracle to find the Keymaker who would help them reach the Source. Meanwhile Neo's recurrent dreams depicting Trinity's death have got him worried and as if it was not enough, Agent Smith has somehow escaped deletion, has become more powerful than before and has fixed Neo as his next target.. Tags: saving the world, artificial intelligence, man vs machine, martial arts, kung fu, underground world, dream, hero, fight, computer virus, key, future, plato, precognition, rave"} +{"id": "76338", "title": "Thor: The Dark World", "year": 2013, "duration_min": 112, "rating": 6.8, "genres": "Action, Adventure, Fantasy", "genres_pipe": "|Action|Adventure|Fantasy|", "keywords": "marvel comic, superhero, based on comic book, hostile takeover, norse mythology, aftercreditsstinger, duringcreditsstinger, marvel cinematic universe, 3d, asgard", "tags_pipe": "|marvel comic|superhero|based on comic book|hostile takeover|norse mythology|aftercreditsstinger|duringcreditsstinger|marvel cinematic universe|3d|asgard|", "overview": "Thor fights to restore order across the cosmos… but an ancient race led by the vengeful Malekith returns to plunge the universe back into darkness. Faced with an enemy that even Odin and Asgard cannot withstand, Thor must embark on his most perilous and personal journey yet, one that will reunite him with Jane Foster and force him to sacrifice everything to save us all.", "text_for_embedding": "Thor: The Dark World (2013). Genres: Action, Adventure, Fantasy. Thor fights to restore order across the cosmos… but an ancient race led by the vengeful Malekith returns to plunge the universe back into darkness. Faced with an enemy that even Odin and Asgard cannot withstand, Thor must embark on his most perilous and personal journey yet, one that will reunite him with Jane Foster and force him to sacrifice everything to save us all.. Tags: marvel comic, superhero, based on comic book, hostile takeover, norse mythology, aftercreditsstinger, duringcreditsstinger, marvel cinematic universe, 3d, asgard"} +{"id": "76341", "title": "Mad Max: Fury Road", "year": 2015, "duration_min": 120, "rating": 7.2, "genres": "Action, Adventure, Science Fiction, Thriller", "genres_pipe": "|Action|Adventure|Science Fiction|Thriller|", "keywords": "future, chase, post-apocalyptic, dystopia, australia, rescue, survival, on the run, convoy, peak oil, dark future", "tags_pipe": "|future|chase|post-apocalyptic|dystopia|australia|rescue|survival|on the run|convoy|peak oil|dark future|", "overview": "An apocalyptic story set in the furthest reaches of our planet, in a stark desert landscape where humanity is broken, and most everyone is crazed fighting for the necessities of life. Within this world exist two rebels on the run who just might be able to restore order. There's Max, a man of action and a man of few words, who seeks peace of mind following the loss of his wife and child in the aftermath of the chaos. And Furiosa, a woman of action and a woman who believes her path to survival may be achieved if she can make it across the desert back to her childhood homeland.", "text_for_embedding": "Mad Max: Fury Road (2015). Genres: Action, Adventure, Science Fiction, Thriller. An apocalyptic story set in the furthest reaches of our planet, in a stark desert landscape where humanity is broken, and most everyone is crazed fighting for the necessities of life. Within this world exist two rebels on the run who just might be able to restore order. There's Max, a man of action and a man of few words, who seeks peace of mind following the loss of his wife and child in the aftermath of the chaos. And Furiosa, a woman of action and a woman who believes her path to survival may be achieved if she can make it across the desert back to her childhood homeland.. Tags: future, chase, post-apocalyptic, dystopia, australia, rescue, survival, on the run, convoy, peak oil, dark future"} +{"id": "13448", "title": "Angels & Demons", "year": 2009, "duration_min": 138, "rating": 6.5, "genres": "Thriller, Mystery", "genres_pipe": "|Thriller|Mystery|", "keywords": "rome, vatican, based on novel, symbolism, christian, illuminati, quantum mechanics, prequel, anti matter, conspiracy, investigator, catholicism, cern", "tags_pipe": "|rome|vatican|based on novel|symbolism|christian|illuminati|quantum mechanics|prequel|anti matter|conspiracy|investigator|catholicism|cern|", "overview": "Harvard symbologist Robert Langdon investigates a mysterious symbol seared into the chest of a murdered physicist. He discovers evidence of the unimaginable, the rebirth of an ancient secret brotherhood known as the Illuminati, the most powerful underground organization ever to walk the earth.", "text_for_embedding": "Angels & Demons (2009). Genres: Thriller, Mystery. Harvard symbologist Robert Langdon investigates a mysterious symbol seared into the chest of a murdered physicist. He discovers evidence of the unimaginable, the rebirth of an ancient secret brotherhood known as the Illuminati, the most powerful underground organization ever to walk the earth.. Tags: rome, vatican, based on novel, symbolism, christian, illuminati, quantum mechanics, prequel, anti matter, conspiracy, investigator, catholicism, cern"} +{"id": "10195", "title": "Thor", "year": 2011, "duration_min": 115, "rating": 6.6, "genres": "Adventure, Fantasy, Action", "genres_pipe": "|Adventure|Fantasy|Action|", "keywords": "new mexico, banishment, shield, marvel comic, hammer, superhero, based on comic book, redemption, norse mythology, aftercreditsstinger, marvel cinematic universe, 3d, asgard, odin, heimdall", "tags_pipe": "|new mexico|banishment|shield|marvel comic|hammer|superhero|based on comic book|redemption|norse mythology|aftercreditsstinger|marvel cinematic universe|3d|asgard|odin|heimdall|", "overview": "Against his father Odin's will, The Mighty Thor - a powerful but arrogant warrior god - recklessly reignites an ancient war. Thor is cast down to Earth and forced to live among humans as punishment. Once here, Thor learns what it takes to be a true hero when the most dangerous villain of his world sends the darkest forces of Asgard to invade Earth.", "text_for_embedding": "Thor (2011). Genres: Adventure, Fantasy, Action. Against his father Odin's will, The Mighty Thor - a powerful but arrogant warrior god - recklessly reignites an ancient war. Thor is cast down to Earth and forced to live among humans as punishment. Once here, Thor learns what it takes to be a true hero when the most dangerous villain of his world sends the darkest forces of Asgard to invade Earth.. Tags: new mexico, banishment, shield, marvel comic, hammer, superhero, based on comic book, redemption, norse mythology, aftercreditsstinger, marvel cinematic universe, 3d, asgard, odin, heimdall"} +{"id": "13053", "title": "Bolt", "year": 2008, "duration_min": 98, "rating": 6.3, "genres": "Animation, Family, Adventure, Comedy", "genres_pipe": "|Animation|Family|Adventure|Comedy|", "keywords": "hamster, kids and family, animal, cat vs dog, duringcreditsstinger, dog cat friendship, animal lead, girl dog relationship", "tags_pipe": "|hamster|kids and family|animal|cat vs dog|duringcreditsstinger|dog cat friendship|animal lead|girl dog relationship|", "overview": "Bolt is the star of the biggest show in Hollywood. The only problem is, he thinks it's real. After he's accidentally shipped to New York City and separated from Penny, his beloved co-star and owner, Bolt must harness all his \"super powers\" to find a way home.", "text_for_embedding": "Bolt (2008). Genres: Animation, Family, Adventure, Comedy. Bolt is the star of the biggest show in Hollywood. The only problem is, he thinks it's real. After he's accidentally shipped to New York City and separated from Penny, his beloved co-star and owner, Bolt must harness all his \"super powers\" to find a way home.. Tags: hamster, kids and family, animal, cat vs dog, duringcreditsstinger, dog cat friendship, animal lead, girl dog relationship"} +{"id": "19585", "title": "G-Force", "year": 2009, "duration_min": 88, "rating": 5.1, "genres": "Fantasy, Action, Adventure, Family, Comedy", "genres_pipe": "|Fantasy|Action|Adventure|Family|Comedy|", "keywords": "dyr, duringcreditsstinger", "tags_pipe": "|dyr|duringcreditsstinger|", "overview": "A team of trained secret agent animals, guinea pigs Darwin, Juarez, Blaster, mole Speckles, and fly Mooch takes on a mission for the US government to stop evil Leonard Saber, who plans to destroy the world with household appliances. But the government shuts them down and they are sentenced to a pet shop. Can they escape to defeat the villain and save the world?", "text_for_embedding": "G-Force (2009). Genres: Fantasy, Action, Adventure, Family, Comedy. A team of trained secret agent animals, guinea pigs Darwin, Juarez, Blaster, mole Speckles, and fly Mooch takes on a mission for the US government to stop evil Leonard Saber, who plans to destroy the world with household appliances. But the government shuts them down and they are sentenced to a pet shop. Can they escape to defeat the villain and save the world?. Tags: dyr, duringcreditsstinger"} +{"id": "57165", "title": "Wrath of the Titans", "year": 2012, "duration_min": 99, "rating": 5.5, "genres": "Adventure", "genres_pipe": "|Adventure|", "keywords": "underworld, hades, mythology, greek mythology, zeus, perseus, gods, ancient greece, based on greek myth, ares, 3d", "tags_pipe": "|underworld|hades|mythology|greek mythology|zeus|perseus|gods|ancient greece|based on greek myth|ares|3d|", "overview": "A decade after his heroic defeat of the monstrous Kraken, Perseus-the demigod son of Zeus-is attempting to live a quieter life as a village fisherman and the sole parent to his 10-year old son, Helius. Meanwhile, a struggle for supremacy rages between the gods and the Titans. Dangerously weakened by humanity's lack of devotion, the gods are losing control of the imprisoned Titans and their ferocious leader, Kronos, father of the long-ruling brothers Zeus, Hades and Poseidon.", "text_for_embedding": "Wrath of the Titans (2012). Genres: Adventure. A decade after his heroic defeat of the monstrous Kraken, Perseus-the demigod son of Zeus-is attempting to live a quieter life as a village fisherman and the sole parent to his 10-year old son, Helius. Meanwhile, a struggle for supremacy rages between the gods and the Titans. Dangerously weakened by humanity's lack of devotion, the gods are losing control of the imprisoned Titans and their ferocious leader, Kronos, father of the long-ruling brothers Zeus, Hades and Poseidon.. Tags: underworld, hades, mythology, greek mythology, zeus, perseus, gods, ancient greece, based on greek myth, ares, 3d"} +{"id": "62213", "title": "Dark Shadows", "year": 2012, "duration_min": 113, "rating": 5.7, "genres": "Comedy, Fantasy", "genres_pipe": "|Comedy|Fantasy|", "keywords": "witch, imprisonment, vampire, curse, fish out of water, chains, gothic, madness, old house, lost love, angry mob, 18th century, ghost, hidden room, old mansion", "tags_pipe": "|witch|imprisonment|vampire|curse|fish out of water|chains|gothic|madness|old house|lost love|angry mob|18th century|ghost|hidden room|old mansion|", "overview": "Vampire Barnabas Collins is inadvertently freed from his tomb and emerges into the very changed world of 1972. He returns to Collinwood Manor to find that his once-grand estate and family have fallen into ruin.", "text_for_embedding": "Dark Shadows (2012). Genres: Comedy, Fantasy. Vampire Barnabas Collins is inadvertently freed from his tomb and emerges into the very changed world of 1972. He returns to Collinwood Manor to find that his once-grand estate and family have fallen into ruin.. Tags: witch, imprisonment, vampire, curse, fish out of water, chains, gothic, madness, old house, lost love, angry mob, 18th century, ghost, hidden room, old mansion"} +{"id": "177677", "title": "Mission: Impossible - Rogue Nation", "year": 2015, "duration_min": 131, "rating": 7.1, "genres": "Action, Adventure, Thriller", "genres_pipe": "|Action|Adventure|Thriller|", "keywords": "london england, spy, austria, villain, sequel, mission, conspiracy, vienna opera, vienna", "tags_pipe": "|london england|spy|austria|villain|sequel|mission|conspiracy|vienna opera|vienna|", "overview": "Ethan and team take on their most impossible mission yet, eradicating the Syndicate - an International rogue organization as highly skilled as they are, committed to destroying the IMF.", "text_for_embedding": "Mission: Impossible - Rogue Nation (2015). Genres: Action, Adventure, Thriller. Ethan and team take on their most impossible mission yet, eradicating the Syndicate - an International rogue organization as highly skilled as they are, committed to destroying the IMF.. Tags: london england, spy, austria, villain, sequel, mission, conspiracy, vienna opera, vienna"} +{"id": "7978", "title": "The Wolfman", "year": 2010, "duration_min": 102, "rating": 5.5, "genres": "Drama, Horror, Thriller", "genres_pipe": "|Drama|Horror|Thriller|", "keywords": "father son relationship, victorian england, remake, rural setting, werewolf", "tags_pipe": "|father son relationship|victorian england|remake|rural setting|werewolf|", "overview": "Lawrence Talbot, an American man on a visit to Victorian London to make amends with his estranged father, gets bitten by a werewolf and, after a moonlight transformation, leaves him with a savage hunger for flesh.", "text_for_embedding": "The Wolfman (2010). Genres: Drama, Horror, Thriller. Lawrence Talbot, an American man on a visit to Victorian London to make amends with his estranged father, gets bitten by a werewolf and, after a moonlight transformation, leaves him with a savage hunger for flesh.. Tags: father son relationship, victorian england, remake, rural setting, werewolf"} +{"id": "5559", "title": "Bee Movie", "year": 2007, "duration_min": 91, "rating": 5.7, "genres": "Family, Animation, Adventure, Comedy", "genres_pipe": "|Family|Animation|Adventure|Comedy|", "keywords": "factory worker, tennis, flower, florist, flower shop, pilot, college, airplane, beehive, court, aftercreditsstinger", "tags_pipe": "|factory worker|tennis|flower|florist|flower shop|pilot|college|airplane|beehive|court|aftercreditsstinger|", "overview": "Barry B. Benson, a bee who has just graduated from college, is disillusioned at his lone career choice: making honey. On a special trip outside the hive, Barry's life is saved by Vanessa, a florist in New York City. As their relationship blossoms, he discovers humans actually eat honey, and subsequently decides to sue us.", "text_for_embedding": "Bee Movie (2007). Genres: Family, Animation, Adventure, Comedy. Barry B. Benson, a bee who has just graduated from college, is disillusioned at his lone career choice: making honey. On a special trip outside the hive, Barry's life is saved by Vanessa, a florist in New York City. As their relationship blossoms, he discovers humans actually eat honey, and subsequently decides to sue us.. Tags: factory worker, tennis, flower, florist, flower shop, pilot, college, airplane, beehive, court, aftercreditsstinger"} +{"id": "49444", "title": "Kung Fu Panda 2", "year": 2011, "duration_min": 91, "rating": 6.7, "genres": "Animation, Family", "genres_pipe": "|Animation|Family|", "keywords": "martial arts, hope, fleet, panda, mission, woman director", "tags_pipe": "|martial arts|hope|fleet|panda|mission|woman director|", "overview": "Po is now living his dream as The Dragon Warrior, protecting the Valley of Peace alongside his friends and fellow kung fu masters, The Furious Five - Tigress, Crane, Mantis, Viper and Monkey. But Po’s new life of awesomeness is threatened by the emergence of a formidable villain, who plans to use a secret, unstoppable weapon to conquer China and destroy kung fu. It is up to Po and The Furious Five to journey across China to face this threat and vanquish it. But how can Po stop a weapon that can stop kung fu? He must look to his past and uncover the secrets of his mysterious origins; only then will he be able to unlock the strength he needs to succeed.", "text_for_embedding": "Kung Fu Panda 2 (2011). Genres: Animation, Family. Po is now living his dream as The Dragon Warrior, protecting the Valley of Peace alongside his friends and fellow kung fu masters, The Furious Five - Tigress, Crane, Mantis, Viper and Monkey. But Po’s new life of awesomeness is threatened by the emergence of a formidable villain, who plans to use a secret, unstoppable weapon to conquer China and destroy kung fu. It is up to Po and The Furious Five to journey across China to face this threat and vanquish it. But how can Po stop a weapon that can stop kung fu? He must look to his past and uncover the secrets of his mysterious origins; only then will he be able to unlock the strength he needs to succeed.. Tags: martial arts, hope, fleet, panda, mission, woman director"} +{"id": "10196", "title": "The Last Airbender", "year": 2010, "duration_min": 103, "rating": 4.7, "genres": "Action, Adventure, Family, Fantasy", "genres_pipe": "|Action|Adventure|Family|Fantasy|", "keywords": "fire, ice, war ship, prince, kingdom, water, village, arrest, remake, attack, avatar, air, spirit, world, domination", "tags_pipe": "|fire|ice|war ship|prince|kingdom|water|village|arrest|remake|attack|avatar|air|spirit|world|domination|", "overview": "The story follows the adventures of Aang, a young successor to a long line of Avatars, who must put his childhood ways aside and stop the Fire Nation from enslaving the Water, Earth and Air nations.", "text_for_embedding": "The Last Airbender (2010). Genres: Action, Adventure, Family, Fantasy. The story follows the adventures of Aang, a young successor to a long line of Avatars, who must put his childhood ways aside and stop the Fire Nation from enslaving the Water, Earth and Air nations.. Tags: fire, ice, war ship, prince, kingdom, water, village, arrest, remake, attack, avatar, air, spirit, world, domination"} +{"id": "956", "title": "Mission: Impossible III", "year": 2006, "duration_min": 126, "rating": 6.5, "genres": "Adventure, Action, Thriller", "genres_pipe": "|Adventure|Action|Thriller|", "keywords": "berlin, cia, vatican, white house, secret identity, secret, explosive, mobile phone, map, traitor, mask, honeymoon, shanghai, pretended murder, secret mission", "tags_pipe": "|berlin|cia|vatican|white house|secret identity|secret|explosive|mobile phone|map|traitor|mask|honeymoon|shanghai|pretended murder|secret mission|", "overview": "Retired from active duty to train new IMF agents, Ethan Hunt is called back into action to confront sadistic arms dealer, Owen Davian. Hunt must try to protect his girlfriend while working with his new team to complete the mission.", "text_for_embedding": "Mission: Impossible III (2006). Genres: Adventure, Action, Thriller. Retired from active duty to train new IMF agents, Ethan Hunt is called back into action to confront sadistic arms dealer, Owen Davian. Hunt must try to protect his girlfriend while working with his new team to complete the mission.. Tags: berlin, cia, vatican, white house, secret identity, secret, explosive, mobile phone, map, traitor, mask, honeymoon, shanghai, pretended murder, secret mission"} +{"id": "117251", "title": "White House Down", "year": 2013, "duration_min": 131, "rating": 6.4, "genres": "Action, Drama, Thriller", "genres_pipe": "|Action|Drama|Thriller|", "keywords": "usa president, conspiracy, secret service, the white house", "tags_pipe": "|usa president|conspiracy|secret service|the white house|", "overview": "Capitol Policeman John Cale has just been denied his dream job with the Secret Service of protecting President James Sawyer. Not wanting to let down his little girl with the news, he takes her on a tour of the White House, when the complex is overtaken by a heavily armed paramilitary group. Now, with the nation's government falling into chaos and time running out, it's up to Cale to save the president, his daughter, and the country.", "text_for_embedding": "White House Down (2013). Genres: Action, Drama, Thriller. Capitol Policeman John Cale has just been denied his dream job with the Secret Service of protecting President James Sawyer. Not wanting to let down his little girl with the news, he takes her on a tour of the White House, when the complex is overtaken by a heavily armed paramilitary group. Now, with the nation's government falling into chaos and time running out, it's up to Cale to save the president, his daughter, and the country.. Tags: usa president, conspiracy, secret service, the white house"} +{"id": "50321", "title": "Mars Needs Moms", "year": 2011, "duration_min": 88, "rating": 5.5, "genres": "Adventure, Animation, Family", "genres_pipe": "|Adventure|Animation|Family|", "keywords": "boy, alien, rescue, martian, alien abduction, alien invasion, based on children's book, duringcreditsstinger", "tags_pipe": "|boy|alien|rescue|martian|alien abduction|alien invasion|based on children's book|duringcreditsstinger|", "overview": "When Martians suddenly abduct his mom, mischievous Milo rushes to the rescue and discovers why all moms are so special.", "text_for_embedding": "Mars Needs Moms (2011). Genres: Adventure, Animation, Family. When Martians suddenly abduct his mom, mischievous Milo rushes to the rescue and discovers why all moms are so special.. Tags: boy, alien, rescue, martian, alien abduction, alien invasion, based on children's book, duringcreditsstinger"} +{"id": "11619", "title": "Flushed Away", "year": 2006, "duration_min": 85, "rating": 6.0, "genres": "Adventure, Animation, Comedy, Family", "genres_pipe": "|Adventure|Animation|Comedy|Family|", "keywords": "london england, underworld, return, ship, frog, girlfriend, rubin", "tags_pipe": "|london england|underworld|return|ship|frog|girlfriend|rubin|", "overview": "London high-society mouse, Roddy is flushed down the toilet by Sid, a common sewer rat. Hang on for a madcap adventure deep in the sewer bowels of Ratropolis, where Roddy meets the resourceful Rita, the rodent-hating Toad and his faithful thugs, Spike and Whitey.", "text_for_embedding": "Flushed Away (2006). Genres: Adventure, Animation, Comedy, Family. London high-society mouse, Roddy is flushed down the toilet by Sid, a common sewer rat. Hang on for a madcap adventure deep in the sewer bowels of Ratropolis, where Roddy meets the resourceful Rita, the rodent-hating Toad and his faithful thugs, Spike and Whitey.. Tags: london england, underworld, return, ship, frog, girlfriend, rubin"} +{"id": "266647", "title": "Pan", "year": 2015, "duration_min": 111, "rating": 5.9, "genres": "Adventure, Family, Fantasy", "genres_pipe": "|Adventure|Family|Fantasy|", "keywords": "flying, magic, fairy tale, peter pan, mermaid, pirate, fantasy world", "tags_pipe": "|flying|magic|fairy tale|peter pan|mermaid|pirate|fantasy world|", "overview": "Living a bleak existence at a London orphanage, 12-year-old Peter finds himself whisked away to the fantastical world of Neverland. Adventure awaits as he meets new friend James Hook and the warrior Tiger Lily. They must band together to save Neverland from the ruthless pirate Blackbeard. Along the way, the rebellious and mischievous boy discovers his true destiny, becoming the hero forever known as Peter Pan.", "text_for_embedding": "Pan (2015). Genres: Adventure, Family, Fantasy. Living a bleak existence at a London orphanage, 12-year-old Peter finds himself whisked away to the fantastical world of Neverland. Adventure awaits as he meets new friend James Hook and the warrior Tiger Lily. They must band together to save Neverland from the ruthless pirate Blackbeard. Along the way, the rebellious and mischievous boy discovers his true destiny, becoming the hero forever known as Peter Pan.. Tags: flying, magic, fairy tale, peter pan, mermaid, pirate, fantasy world"} +{"id": "82703", "title": "Mr. Peabody & Sherman", "year": 2014, "duration_min": 92, "rating": 6.7, "genres": "Animation, Adventure, Family", "genres_pipe": "|Animation|Adventure|Family|", "keywords": "father son relationship, egypt, intelligence, adoption, time travel, boy, child prodigy, friendship, growing up, children, talking animal, talking dog, dog, first love, ancient egypt", "tags_pipe": "|father son relationship|egypt|intelligence|adoption|time travel|boy|child prodigy|friendship|growing up|children|talking animal|talking dog|dog|first love|ancient egypt|", "overview": "A young boy and his dog, who happens to have a genius-level IQ, spring into action when their time-travel machine is stolen and moments in history begin to be changed.", "text_for_embedding": "Mr. Peabody & Sherman (2014). Genres: Animation, Adventure, Family. A young boy and his dog, who happens to have a genius-level IQ, spring into action when their time-travel machine is stolen and moments in history begin to be changed.. Tags: father son relationship, egypt, intelligence, adoption, time travel, boy, child prodigy, friendship, growing up, children, talking animal, talking dog, dog, first love, ancient egypt"} +{"id": "652", "title": "Troy", "year": 2004, "duration_min": 163, "rating": 6.9, "genres": "Adventure, Drama, War", "genres_pipe": "|Adventure|Drama|War|", "keywords": "brother brother relationship, adultery, mythology, beauty, trojan war, bravery, wall, fraud, hostility, epic, sword fight, battlefield, ancient world, pyre, ancient greece", "tags_pipe": "|brother brother relationship|adultery|mythology|beauty|trojan war|bravery|wall|fraud|hostility|epic|sword fight|battlefield|ancient world|pyre|ancient greece|", "overview": "In year 1250 B.C. during the late Bronze age, two emerging nations begin to clash. Paris, the Trojan prince, convinces Helen, Queen of Sparta, to leave her husband Menelaus, and sail with him back to Troy. After Menelaus finds out that his wife was taken by the Trojans, he asks his brother Agamemnom to help him get her back. Agamemnon sees this as an opportunity for power. So they set off with 1,000 ships holding 50,000 Greeks to Troy. With the help of Achilles, the Greeks are able to fight the never before defeated Trojans.", "text_for_embedding": "Troy (2004). Genres: Adventure, Drama, War. In year 1250 B.C. during the late Bronze age, two emerging nations begin to clash. Paris, the Trojan prince, convinces Helen, Queen of Sparta, to leave her husband Menelaus, and sail with him back to Troy. After Menelaus finds out that his wife was taken by the Trojans, he asks his brother Agamemnom to help him get her back. Agamemnon sees this as an opportunity for power. So they set off with 1,000 ships holding 50,000 Greeks to Troy. With the help of Achilles, the Greeks are able to fight the never before defeated Trojans.. Tags: brother brother relationship, adultery, mythology, beauty, trojan war, bravery, wall, fraud, hostility, epic, sword fight, battlefield, ancient world, pyre, ancient greece"} +{"id": "80321", "title": "Madagascar 3: Europe's Most Wanted", "year": 2012, "duration_min": 93, "rating": 6.4, "genres": "Animation, Family", "genres_pipe": "|Animation|Family|", "keywords": "madagascar, 3d", "tags_pipe": "|madagascar|3d|", "overview": "Alex, Marty, Gloria and Melman are still trying to get back to the Big Apple and their beloved Central Park zoo, but first they need to find the penguins. When they travel to Monte Carlo, they attract the attention of Animal Control after gate crashing a party and are joined by the penguins, King Julian and Co., and the monkeys. How do a lion, zebra, hippo, giraffe, four penguins, two monkeys, three lemurs travel through Europe without attracting attention and get back to New York? They join a traveling circus. Their attempts to get back to New York are consistently hampered by the Captain of Animal Control who wants to make Alex part of her collection. Once they make it back to New York Marty, Alex, Gloria and Melman realize that they want to be part of the traveling circus.", "text_for_embedding": "Madagascar 3: Europe's Most Wanted (2012). Genres: Animation, Family. Alex, Marty, Gloria and Melman are still trying to get back to the Big Apple and their beloved Central Park zoo, but first they need to find the penguins. When they travel to Monte Carlo, they attract the attention of Animal Control after gate crashing a party and are joined by the penguins, King Julian and Co., and the monkeys. How do a lion, zebra, hippo, giraffe, four penguins, two monkeys, three lemurs travel through Europe without attracting attention and get back to New York? They join a traveling circus. Their attempts to get back to New York are consistently hampered by the Captain of Animal Control who wants to make Alex part of her collection. Once they make it back to New York Marty, Alex, Gloria and Melman realize that they want to be part of the traveling circus.. Tags: madagascar, 3d"} +{"id": "36669", "title": "Die Another Day", "year": 2002, "duration_min": 133, "rating": 5.8, "genres": "Adventure, Action, Thriller", "genres_pipe": "|Adventure|Action|Thriller|", "keywords": "laser, british secret service, secret service agent, space based weapon", "tags_pipe": "|laser|british secret service|secret service agent|space based weapon|", "overview": "Bond takes on a North Korean leader who undergoes DNA replacement procedures that allow him to assume different identities. American agent, Jinx Johnson assists Bond in his attempt to thwart the villain's plans to exploit a satellite that is powered by solar energy.", "text_for_embedding": "Die Another Day (2002). Genres: Adventure, Action, Thriller. Bond takes on a North Korean leader who undergoes DNA replacement procedures that allow him to assume different identities. American agent, Jinx Johnson assists Bond in his attempt to thwart the villain's plans to exploit a satellite that is powered by solar energy.. Tags: laser, british secret service, secret service agent, space based weapon"} +{"id": "43074", "title": "Ghostbusters", "year": 2016, "duration_min": 116, "rating": 5.3, "genres": "Action, Fantasy, Comedy", "genres_pipe": "|Action|Fantasy|Comedy|", "keywords": "female friendship, ghost hunting, reboot, ghost", "tags_pipe": "|female friendship|ghost hunting|reboot|ghost|", "overview": "Following a ghost invasion of Manhattan, paranormal enthusiasts Erin Gilbert and Abby Yates, nuclear engineer Jillian Holtzmann, and subway worker Patty Tolan band together to stop the otherworldly threat.", "text_for_embedding": "Ghostbusters (2016). Genres: Action, Fantasy, Comedy. Following a ghost invasion of Manhattan, paranormal enthusiasts Erin Gilbert and Abby Yates, nuclear engineer Jillian Holtzmann, and subway worker Patty Tolan band together to stop the otherworldly threat.. Tags: female friendship, ghost hunting, reboot, ghost"} +{"id": "95", "title": "Armageddon", "year": 1998, "duration_min": 151, "rating": 6.4, "genres": "Action, Thriller, Science Fiction, Adventure", "genres_pipe": "|Action|Thriller|Science Fiction|Adventure|", "keywords": "saving the world, paris, moon, cataclysm, asteroid, self sacrifice, nasa, space marine, loss of father, daughter, space, wedding, astronaut, eiffel tower paris, duringcreditsstinger", "tags_pipe": "|saving the world|paris|moon|cataclysm|asteroid|self sacrifice|nasa|space marine|loss of father|daughter|space|wedding|astronaut|eiffel tower paris|duringcreditsstinger|", "overview": "When an asteroid threatens to collide with Earth, NASA honcho Dan Truman determines the only way to stop it is to drill into its surface and detonate a nuclear bomb. This leads him to renowned driller Harry Stamper, who agrees to helm the dangerous space mission provided he can bring along his own hotshot crew. Among them is the cocksure A.J. who Harry thinks isn't good enough for his daughter, until the mission proves otherwise.", "text_for_embedding": "Armageddon (1998). Genres: Action, Thriller, Science Fiction, Adventure. When an asteroid threatens to collide with Earth, NASA honcho Dan Truman determines the only way to stop it is to drill into its surface and detonate a nuclear bomb. This leads him to renowned driller Harry Stamper, who agrees to helm the dangerous space mission provided he can bring along his own hotshot crew. Among them is the cocksure A.J. who Harry thinks isn't good enough for his daughter, until the mission proves otherwise.. Tags: saving the world, paris, moon, cataclysm, asteroid, self sacrifice, nasa, space marine, loss of father, daughter, space, wedding, astronaut, eiffel tower paris, duringcreditsstinger"} +{"id": "608", "title": "Men in Black II", "year": 2002, "duration_min": 88, "rating": 6.0, "genres": "Action, Adventure, Comedy, Science Fiction", "genres_pipe": "|Action|Adventure|Comedy|Science Fiction|", "keywords": "saving the world, secret identity, sun glasses, undercover, space marine, illegal immigration, deportation, new identity, flying saucer, light, firearm, alien, fictional government agency", "tags_pipe": "|saving the world|secret identity|sun glasses|undercover|space marine|illegal immigration|deportation|new identity|flying saucer|light|firearm|alien|fictional government agency|", "overview": "Kay and Jay reunite to provide our best, last and only line of defense against a sinister seductress who levels the toughest challenge yet to the MIB's untarnished mission statement – protecting Earth from the scum of the universe. It's been four years since the alien-seeking agents averted an intergalactic disaster of epic proportions. Now it's a race against the clock as Jay must convince Kay – who not only has absolutely no memory of his time spent with the MIB, but is also the only living person left with the expertise to save the galaxy – to reunite with the MIB before the earth submits to ultimate destruction.", "text_for_embedding": "Men in Black II (2002). Genres: Action, Adventure, Comedy, Science Fiction. Kay and Jay reunite to provide our best, last and only line of defense against a sinister seductress who levels the toughest challenge yet to the MIB's untarnished mission statement – protecting Earth from the scum of the universe. It's been four years since the alien-seeking agents averted an intergalactic disaster of epic proportions. Now it's a race against the clock as Jay must convince Kay – who not only has absolutely no memory of his time spent with the MIB, but is also the only living person left with the expertise to save the galaxy – to reunite with the MIB before the earth submits to ultimate destruction.. Tags: saving the world, secret identity, sun glasses, undercover, space marine, illegal immigration, deportation, new identity, flying saucer, light, firearm, alien, fictional government agency"} +{"id": "2310", "title": "Beowulf", "year": 2007, "duration_min": 115, "rating": 5.5, "genres": "Adventure, Action, Animation", "genres_pipe": "|Adventure|Action|Animation|", "keywords": "denmark, nordic mythology, lie, pride and vanity, folk hero, human weakness, viking, alienation, festival hall, sin, royalty, curse, battle, ancient world, adult animation", "tags_pipe": "|denmark|nordic mythology|lie|pride and vanity|folk hero|human weakness|viking|alienation|festival hall|sin|royalty|curse|battle|ancient world|adult animation|", "overview": "6th-century Scandinavian warrior, Beowulf embarks on a mission to slay the manlike ogre Grendel, a descendant of Cain.", "text_for_embedding": "Beowulf (2007). Genres: Adventure, Action, Animation. 6th-century Scandinavian warrior, Beowulf embarks on a mission to slay the manlike ogre Grendel, a descendant of Cain.. Tags: denmark, nordic mythology, lie, pride and vanity, folk hero, human weakness, viking, alienation, festival hall, sin, royalty, curse, battle, ancient world, adult animation"} +{"id": "140300", "title": "Kung Fu Panda 3", "year": 2016, "duration_min": 95, "rating": 6.7, "genres": "Action, Adventure, Animation, Comedy, Family", "genres_pipe": "|Action|Adventure|Animation|Comedy|Family|", "keywords": "china, martial arts, kung fu, village, panda, sequel, talking animal, anthropomorphism, dragon, ancient china, wuxia, woman director", "tags_pipe": "|china|martial arts|kung fu|village|panda|sequel|talking animal|anthropomorphism|dragon|ancient china|wuxia|woman director|", "overview": "Continuing his \"legendary adventures of awesomeness\", Po must face two hugely epic, but different threats: one supernatural and the other a little closer to his home.", "text_for_embedding": "Kung Fu Panda 3 (2016). Genres: Action, Adventure, Animation, Comedy, Family. Continuing his \"legendary adventures of awesomeness\", Po must face two hugely epic, but different threats: one supernatural and the other a little closer to his home.. Tags: china, martial arts, kung fu, village, panda, sequel, talking animal, anthropomorphism, dragon, ancient china, wuxia, woman director"} +{"id": "56292", "title": "Mission: Impossible - Ghost Protocol", "year": 2011, "duration_min": 133, "rating": 6.8, "genres": "Action, Thriller, Adventure", "genres_pipe": "|Action|Thriller|Adventure|", "keywords": "fight, sequel, mission, explosion, broken arm, imax, nuclear threat", "tags_pipe": "|fight|sequel|mission|explosion|broken arm|imax|nuclear threat|", "overview": "In the 4th installment of the Mission Impossible series, Ethan Hunt (Cruise) and his team are racing against time to track down a dangerous terrorist named Hendricks (Nyqvist), who has gained access to Russian nuclear launch codes and is planning a strike on the United States. An attempt to stop him ends in an explosion causing severe destruction to the Kremlin and the IMF to be implicated in the bombing, forcing the President to disavow them. No longer being aided by the government, Ethan and his team chase Hendricks around the globe, although they might still be too late to stop a disaster.", "text_for_embedding": "Mission: Impossible - Ghost Protocol (2011). Genres: Action, Thriller, Adventure. In the 4th installment of the Mission Impossible series, Ethan Hunt (Cruise) and his team are racing against time to track down a dangerous terrorist named Hendricks (Nyqvist), who has gained access to Russian nuclear launch codes and is planning a strike on the United States. An attempt to stop him ends in an explosion causing severe destruction to the Kremlin and the IMF to be implicated in the bombing, forcing the President to disavow them. No longer being aided by the government, Ethan and his team chase Hendricks around the globe, although they might still be too late to stop a disaster.. Tags: fight, sequel, mission, explosion, broken arm, imax, nuclear threat"} +{"id": "81188", "title": "Rise of the Guardians", "year": 2012, "duration_min": 97, "rating": 7.1, "genres": "Fantasy, Animation, Family", "genres_pipe": "|Fantasy|Animation|Family|", "keywords": "dream, santa claus, nightmare, easter bunny, tooth fairy, jack frost, sandman, duringcreditsstinger", "tags_pipe": "|dream|santa claus|nightmare|easter bunny|tooth fairy|jack frost|sandman|duringcreditsstinger|", "overview": "When an evil spirit known as Pitch lays down the gauntlet to take over the world, the immortal Guardians must join forces for the first time to protect the hopes, beliefs and imagination of children all over the world.", "text_for_embedding": "Rise of the Guardians (2012). Genres: Fantasy, Animation, Family. When an evil spirit known as Pitch lays down the gauntlet to take over the world, the immortal Guardians must join forces for the first time to protect the hopes, beliefs and imagination of children all over the world.. Tags: dream, santa claus, nightmare, easter bunny, tooth fairy, jack frost, sandman, duringcreditsstinger"} +{"id": "7552", "title": "Fun with Dick and Jane", "year": 2005, "duration_min": 90, "rating": 5.9, "genres": "Comedy", "genres_pipe": "|Comedy|", "keywords": "based on novel, desperation, robber, hold-up robbery, remake, suburbia, loss of job, humiliation, unemployment, bankruptcy, travel agent, riches to rags, bearer bonds, comeuppance", "tags_pipe": "|based on novel|desperation|robber|hold-up robbery|remake|suburbia|loss of job|humiliation|unemployment|bankruptcy|travel agent|riches to rags|bearer bonds|comeuppance|", "overview": "After Dick Harper loses his job at Globodyne in an Enron-esque collapse, he and his wife, Jane, turn to crime in order to handle the massive debt they now face. Two intelligent people, Dick and Jane actually get pretty good at robbing people and even enjoy it -- but they have second thoughts when they're reminded that crime can hurt innocent people. When the couple hears that Globodyne boss Jack McCallister actually swindled the company, they plot revenge.", "text_for_embedding": "Fun with Dick and Jane (2005). Genres: Comedy. After Dick Harper loses his job at Globodyne in an Enron-esque collapse, he and his wife, Jane, turn to crime in order to handle the massive debt they now face. Two intelligent people, Dick and Jane actually get pretty good at robbing people and even enjoy it -- but they have second thoughts when they're reminded that crime can hurt innocent people. When the couple hears that Globodyne boss Jack McCallister actually swindled the company, they plot revenge.. Tags: based on novel, desperation, robber, hold-up robbery, remake, suburbia, loss of job, humiliation, unemployment, bankruptcy, travel agent, riches to rags, bearer bonds, comeuppance"} +{"id": "616", "title": "The Last Samurai", "year": 2003, "duration_min": 154, "rating": 7.3, "genres": "Drama, Action, War, History", "genres_pipe": "|Drama|Action|War|History|", "keywords": "japan, war crimes, sense of guilt, swordplay, general, samurai, war veteran, katana, sword, arms deal, homeland, emperor, language barrier, self-discovery, mountain village", "tags_pipe": "|japan|war crimes|sense of guilt|swordplay|general|samurai|war veteran|katana|sword|arms deal|homeland|emperor|language barrier|self-discovery|mountain village|", "overview": "Nathan Algren is an American hired to instruct the Japanese army in the ways of modern warfare, which finds him learning to respect the samurai and the honorable principles that rule them. Pressed to destroy the samurai's way of life in the name of modernization and open trade, Algren decides to become an ultimate warrior himself and to fight for their right to exist.", "text_for_embedding": "The Last Samurai (2003). Genres: Drama, Action, War, History. Nathan Algren is an American hired to instruct the Japanese army in the ways of modern warfare, which finds him learning to respect the samurai and the honorable principles that rule them. Pressed to destroy the samurai's way of life in the name of modernization and open trade, Algren decides to become an ultimate warrior himself and to fight for their right to exist.. Tags: japan, war crimes, sense of guilt, swordplay, general, samurai, war veteran, katana, sword, arms deal, homeland, emperor, language barrier, self-discovery, mountain village"} +{"id": "147441", "title": "Exodus: Gods and Kings", "year": 2014, "duration_min": 150, "rating": 5.6, "genres": "Adventure, Drama, Action", "genres_pipe": "|Adventure|Drama|Action|", "keywords": "moses, bible, ancient egypt, 3d, ramses", "tags_pipe": "|moses|bible|ancient egypt|3d|ramses|", "overview": "The defiant leader Moses rises up against the Egyptian Pharaoh Ramses, setting 400,000 slaves on a monumental journey of escape from Egypt and its terrifying cycle of deadly plagues.", "text_for_embedding": "Exodus: Gods and Kings (2014). Genres: Adventure, Drama, Action. The defiant leader Moses rises up against the Egyptian Pharaoh Ramses, setting 400,000 slaves on a monumental journey of escape from Egypt and its terrifying cycle of deadly plagues.. Tags: moses, bible, ancient egypt, 3d, ramses"} +{"id": "13475", "title": "Star Trek", "year": 2009, "duration_min": 127, "rating": 7.4, "genres": "Science Fiction, Action, Adventure", "genres_pipe": "|Science Fiction|Action|Adventure|", "keywords": "spacecraft, teleportation, space mission, parachute, time travel, black hole, supernova, prequel, warp speed, futuristic, warp engine, romulans, outer space, vulcan, alternate reality", "tags_pipe": "|spacecraft|teleportation|space mission|parachute|time travel|black hole|supernova|prequel|warp speed|futuristic|warp engine|romulans|outer space|vulcan|alternate reality|", "overview": "The fate of the galaxy rests in the hands of bitter rivals. One, James Kirk, is a delinquent, thrill-seeking Iowa farm boy. The other, Spock, a Vulcan, was raised in a logic-based society that rejects all emotion. As fiery instinct clashes with calm reason, their unlikely but powerful partnership is the only thing capable of leading their crew through unimaginable danger, boldly going where no one has gone before. The human adventure has begun again.", "text_for_embedding": "Star Trek (2009). Genres: Science Fiction, Action, Adventure. The fate of the galaxy rests in the hands of bitter rivals. One, James Kirk, is a delinquent, thrill-seeking Iowa farm boy. The other, Spock, a Vulcan, was raised in a logic-based society that rejects all emotion. As fiery instinct clashes with calm reason, their unlikely but powerful partnership is the only thing capable of leading their crew through unimaginable danger, boldly going where no one has gone before. The human adventure has begun again.. Tags: spacecraft, teleportation, space mission, parachute, time travel, black hole, supernova, prequel, warp speed, futuristic, warp engine, romulans, outer space, vulcan, alternate reality"} +{"id": "557", "title": "Spider-Man", "year": 2002, "duration_min": 121, "rating": 6.8, "genres": "Fantasy, Action", "genres_pipe": "|Fantasy|Action|", "keywords": "loss of lover, spider, thanksgiving, bad boss, hostility, marvel comic, superhero, pokies, evil, reference to superman, goblin", "tags_pipe": "|loss of lover|spider|thanksgiving|bad boss|hostility|marvel comic|superhero|pokies|evil|reference to superman|goblin|", "overview": "After being bitten by a genetically altered spider, nerdy high school student Peter Parker is endowed with amazing powers.", "text_for_embedding": "Spider-Man (2002). Genres: Fantasy, Action. After being bitten by a genetically altered spider, nerdy high school student Peter Parker is endowed with amazing powers.. Tags: loss of lover, spider, thanksgiving, bad boss, hostility, marvel comic, superhero, pokies, evil, reference to superman, goblin"} +{"id": "82702", "title": "How to Train Your Dragon 2", "year": 2014, "duration_min": 102, "rating": 7.6, "genres": "Fantasy, Action, Adventure, Animation, Comedy, Family", "genres_pipe": "|Fantasy|Action|Adventure|Animation|Comedy|Family|", "keywords": "father son relationship, wife husband relationship, sacrifice, viking, sequel, rescue, dragon, mother son relationship, death of husband, warrior, 3d", "tags_pipe": "|father son relationship|wife husband relationship|sacrifice|viking|sequel|rescue|dragon|mother son relationship|death of husband|warrior|3d|", "overview": "The thrilling second chapter of the epic How To Train Your Dragon trilogy brings back the fantastical world of Hiccup and Toothless five years later. While Astrid, Snotlout and the rest of the gang are challenging each other to dragon races (the island's new favorite contact sport), the now inseparable pair journey through the skies, charting unmapped territories and exploring new worlds. When one of their adventures leads to the discovery of a secret ice cave that is home to hundreds of new wild dragons and the mysterious Dragon Rider, the two friends find themselves at the center of a battle to protect the peace.", "text_for_embedding": "How to Train Your Dragon 2 (2014). Genres: Fantasy, Action, Adventure, Animation, Comedy, Family. The thrilling second chapter of the epic How To Train Your Dragon trilogy brings back the fantastical world of Hiccup and Toothless five years later. While Astrid, Snotlout and the rest of the gang are challenging each other to dragon races (the island's new favorite contact sport), the now inseparable pair journey through the skies, charting unmapped territories and exploring new worlds. When one of their adventures leads to the discovery of a secret ice cave that is home to hundreds of new wild dragons and the mysterious Dragon Rider, the two friends find themselves at the center of a battle to protect the peace.. Tags: father son relationship, wife husband relationship, sacrifice, viking, sequel, rescue, dragon, mother son relationship, death of husband, warrior, 3d"} +{"id": "205584", "title": "Gods of Egypt", "year": 2016, "duration_min": 127, "rating": 5.3, "genres": "Fantasy", "genres_pipe": "|Fantasy|", "keywords": "egypt, underworld, fight, mythology, nile, war, thief, rescue, desert, gods, egyptian mythology, egyptian, myth", "tags_pipe": "|egypt|underworld|fight|mythology|nile|war|thief|rescue|desert|gods|egyptian mythology|egyptian|myth|", "overview": "A common thief joins a mythical god on a quest through Egypt.", "text_for_embedding": "Gods of Egypt (2016). Genres: Fantasy. A common thief joins a mythical god on a quest through Egypt.. Tags: egypt, underworld, fight, mythology, nile, war, thief, rescue, desert, gods, egyptian mythology, egyptian, myth"} +{"id": "10048", "title": "Stealth", "year": 2005, "duration_min": 121, "rating": 4.9, "genres": "Action", "genres_pipe": "|Action|", "keywords": "artificial intelligence, u.s. navy, aftercreditsstinger", "tags_pipe": "|artificial intelligence|u.s. navy|aftercreditsstinger|", "overview": "Deeply ensconced in a top-secret military program, three pilots struggle to bring an artificial intelligence program under control ... before it initiates the next world war.", "text_for_embedding": "Stealth (2005). Genres: Action. Deeply ensconced in a top-secret military program, three pilots struggle to bring an artificial intelligence program under control ... before it initiates the next world war.. Tags: artificial intelligence, u.s. navy, aftercreditsstinger"} +{"id": "13183", "title": "Watchmen", "year": 2009, "duration_min": 163, "rating": 7.0, "genres": "Action, Mystery, Science Fiction", "genres_pipe": "|Action|Mystery|Science Fiction|", "keywords": "dc comics, secret identity, mass murder, retirement, based on comic book, conspiracy, nuclear war, doomsday, soviet, masked vigilante, doomsday clock, red square, death of superhero, american president, 1980s", "tags_pipe": "|dc comics|secret identity|mass murder|retirement|based on comic book|conspiracy|nuclear war|doomsday|soviet|masked vigilante|doomsday clock|red square|death of superhero|american president|1980s|", "overview": "In a gritty and alternate 1985 the glory days of costumed vigilantes have been brought to a close by a government crackdown, but after one of the masked veterans is brutally murdered an investigation into the killer is initiated. The reunited heroes set out to prevent their own destruction, but in doing so uncover a sinister plot that puts all of humanity in grave danger.", "text_for_embedding": "Watchmen (2009). Genres: Action, Mystery, Science Fiction. In a gritty and alternate 1985 the glory days of costumed vigilantes have been brought to a close by a government crackdown, but after one of the masked veterans is brutally murdered an investigation into the killer is initiated. The reunited heroes set out to prevent their own destruction, but in doing so uncover a sinister plot that puts all of humanity in grave danger.. Tags: dc comics, secret identity, mass murder, retirement, based on comic book, conspiracy, nuclear war, doomsday, soviet, masked vigilante, doomsday clock, red square, death of superhero, american president, 1980s"} +{"id": "944", "title": "Lethal Weapon 4", "year": 1998, "duration_min": 127, "rating": 6.3, "genres": "Action, Adventure, Comedy, Crime, Thriller", "genres_pipe": "|Action|Adventure|Comedy|Crime|Thriller|", "keywords": "lapd, house on fire, revolver", "tags_pipe": "|lapd|house on fire|revolver|", "overview": "In the combustible action franchise's final installment, maverick detectives Martin Riggs and Roger Murtaugh square off against Asian mobster Wah Sing Ku, who's up to his neck in slave trading and counterfeit currency. With help from gumshoe Leo Getz and smart-aleck rookie cop Lee Butters, Riggs and Murtaugh aim to take down Ku and his gang.", "text_for_embedding": "Lethal Weapon 4 (1998). Genres: Action, Adventure, Comedy, Crime, Thriller. In the combustible action franchise's final installment, maverick detectives Martin Riggs and Roger Murtaugh square off against Asian mobster Wah Sing Ku, who's up to his neck in slave trading and counterfeit currency. With help from gumshoe Leo Getz and smart-aleck rookie cop Lee Butters, Riggs and Murtaugh aim to take down Ku and his gang.. Tags: lapd, house on fire, revolver"} +{"id": "1927", "title": "Hulk", "year": 2003, "duration_min": 138, "rating": 5.3, "genres": "Drama, Action, Science Fiction", "genres_pipe": "|Drama|Action|Science Fiction|", "keywords": "california, san francisco, monster, general, gun, dna, mutation, psychology, berkeley, transformation, frog, president, marvel comic, superhero, golden gate bridge", "tags_pipe": "|california|san francisco|monster|general|gun|dna|mutation|psychology|berkeley|transformation|frog|president|marvel comic|superhero|golden gate bridge|", "overview": "Bruce Banner, a genetics researcher with a tragic past, suffers massive radiation exposure in his laboratory that causes him to transform into a raging green monster when he gets angry.", "text_for_embedding": "Hulk (2003). Genres: Drama, Action, Science Fiction. Bruce Banner, a genetics researcher with a tragic past, suffers massive radiation exposure in his laboratory that causes him to transform into a raging green monster when he gets angry.. Tags: california, san francisco, monster, general, gun, dna, mutation, psychology, berkeley, transformation, frog, president, marvel comic, superhero, golden gate bridge"} +{"id": "72559", "title": "G.I. Joe: Retaliation", "year": 2013, "duration_min": 110, "rating": 5.4, "genres": "Adventure, Action, Science Fiction, Thriller", "genres_pipe": "|Adventure|Action|Science Fiction|Thriller|", "keywords": "terror, assassin, secret, technology, missile, warhead, president, rescue, conspiracy, explosion, battle, surveillance, cobra", "tags_pipe": "|terror|assassin|secret|technology|missile|warhead|president|rescue|conspiracy|explosion|battle|surveillance|cobra|", "overview": "Framed for crimes against the country, the G.I. Joe team is terminated by Presidential order. This forces the G.I. Joes into not only fighting their mortal enemy Cobra; they are forced to contend with threats from within the government that jeopardize their very existence.", "text_for_embedding": "G.I. Joe: Retaliation (2013). Genres: Adventure, Action, Science Fiction, Thriller. Framed for crimes against the country, the G.I. Joe team is terminated by Presidential order. This forces the G.I. Joes into not only fighting their mortal enemy Cobra; they are forced to contend with threats from within the government that jeopardize their very existence.. Tags: terror, assassin, secret, technology, missile, warhead, president, rescue, conspiracy, explosion, battle, surveillance, cobra"} +{"id": "7364", "title": "Sahara", "year": 2005, "duration_min": 124, "rating": 5.7, "genres": "Action, Adventure, Comedy, Drama, Mystery", "genres_pipe": "|Action|Adventure|Comedy|Drama|Mystery|", "keywords": "tyrant, ironclad ship", "tags_pipe": "|tyrant|ironclad ship|", "overview": "Scouring the ocean depths for treasure-laden shipwrecks is business as usual for a thrill-seeking underwater adventurer and his wisecracking buddy. But when these two cross paths with a beautiful doctor, they find themselves on the ultimate treasure hunt.", "text_for_embedding": "Sahara (2005). Genres: Action, Adventure, Comedy, Drama, Mystery. Scouring the ocean depths for treasure-laden shipwrecks is business as usual for a thrill-seeking underwater adventurer and his wisecracking buddy. But when these two cross paths with a beautiful doctor, they find themselves on the ultimate treasure hunt.. Tags: tyrant, ironclad ship"} +{"id": "2114", "title": "Final Fantasy: The Spirits Within", "year": 2001, "duration_min": 106, "rating": 5.9, "genres": "Adventure, Action, Animation, Fantasy, Science Fiction, Thriller", "genres_pipe": "|Adventure|Action|Animation|Fantasy|Science Fiction|Thriller|", "keywords": "battle assignment, dystopia, alien, downfall, scientist, based on video game", "tags_pipe": "|battle assignment|dystopia|alien|downfall|scientist|based on video game|", "overview": "Led by a strange dream, scientist Aki Ross struggles to collect the eight spirits in the hope of creating a force powerful enough to protect the planet. With the aid of the Deep Eyes Squadron and her mentor, Dr. Sid, Aki must save the Earth from its darkest hate and unleash the spirits within.", "text_for_embedding": "Final Fantasy: The Spirits Within (2001). Genres: Adventure, Action, Animation, Fantasy, Science Fiction, Thriller. Led by a strange dream, scientist Aki Ross struggles to collect the eight spirits in the hope of creating a force powerful enough to protect the planet. With the aid of the Deep Eyes Squadron and her mentor, Dr. Sid, Aki must save the Earth from its darkest hate and unleash the spirits within.. Tags: battle assignment, dystopia, alien, downfall, scientist, based on video game"} +{"id": "1771", "title": "Captain America: The First Avenger", "year": 2011, "duration_min": 124, "rating": 6.6, "genres": "Action, Adventure, Science Fiction", "genres_pipe": "|Action|Adventure|Science Fiction|", "keywords": "new york, usa, world war ii, nazis, marvel comic, superhero, based on comic book, nazi germany, period drama, brooklyn new york city, captain america, aftercreditsstinger, marvel cinematic universe, 3d", "tags_pipe": "|new york|usa|world war ii|nazis|marvel comic|superhero|based on comic book|nazi germany|period drama|brooklyn new york city|captain america|aftercreditsstinger|marvel cinematic universe|3d|", "overview": "Predominantly set during World War II, Steve Rogers is a sickly man from Brooklyn who's transformed into super-soldier Captain America to aid in the war effort. Rogers must stop the Red Skull – Adolf Hitler's ruthless head of weaponry, and the leader of an organization that intends to use a mysterious device of untold powers for world domination.", "text_for_embedding": "Captain America: The First Avenger (2011). Genres: Action, Adventure, Science Fiction. Predominantly set during World War II, Steve Rogers is a sickly man from Brooklyn who's transformed into super-soldier Captain America to aid in the war effort. Rogers must stop the Red Skull – Adolf Hitler's ruthless head of weaponry, and the leader of an organization that intends to use a mysterious device of untold powers for world domination.. Tags: new york, usa, world war ii, nazis, marvel comic, superhero, based on comic book, nazi germany, period drama, brooklyn new york city, captain america, aftercreditsstinger, marvel cinematic universe, 3d"} +{"id": "36643", "title": "The World Is Not Enough", "year": 1999, "duration_min": 128, "rating": 6.0, "genres": "Adventure, Action, Thriller", "genres_pipe": "|Adventure|Action|Thriller|", "keywords": "british, mission, oil, heiress, bilbao spain, british secret service", "tags_pipe": "|british|mission|oil|heiress|bilbao spain|british secret service|", "overview": "Greed, revenge, world dominance and high-tech terrorism – it's all in a day's work for Bond, who's on a mission to a protect beautiful oil heiress from a notorious terrorist. In a race against time that culminates in a dramatic submarine showdown, Bond works to defuse the international power struggle that has the world's oil supply hanging in the balance.", "text_for_embedding": "The World Is Not Enough (1999). Genres: Adventure, Action, Thriller. Greed, revenge, world dominance and high-tech terrorism – it's all in a day's work for Bond, who's on a mission to a protect beautiful oil heiress from a notorious terrorist. In a race against time that culminates in a dramatic submarine showdown, Bond works to defuse the international power struggle that has the world's oil supply hanging in the balance.. Tags: british, mission, oil, heiress, bilbao spain, british secret service"} +{"id": "8619", "title": "Master and Commander: The Far Side of the World", "year": 2003, "duration_min": 138, "rating": 6.9, "genres": "Adventure", "genres_pipe": "|Adventure|", "keywords": "naturalist, frigate, self surgery, sea battle, weevil", "tags_pipe": "|naturalist|frigate|self surgery|sea battle|weevil|", "overview": "After an abrupt and violent encounter with a French warship inflicts severe damage upon his ship, a captain of the British Royal Navy begins a chase over two oceans to capture or destroy the enemy, though he must weigh his commitment to duty and ferocious pursuit of glory against the safety of his devoted crew, including the ship's thoughtful surgeon, his best friend.", "text_for_embedding": "Master and Commander: The Far Side of the World (2003). Genres: Adventure. After an abrupt and violent encounter with a French warship inflicts severe damage upon his ship, a captain of the British Royal Navy begins a chase over two oceans to capture or destroy the enemy, though he must weigh his commitment to duty and ferocious pursuit of glory against the safety of his devoted crew, including the ship's thoughtful surgeon, his best friend.. Tags: naturalist, frigate, self surgery, sea battle, weevil"} +{"id": "50620", "title": "The Twilight Saga: Breaking Dawn - Part 2", "year": 2012, "duration_min": 115, "rating": 6.1, "genres": "Adventure, Fantasy, Drama, Romance", "genres_pipe": "|Adventure|Fantasy|Drama|Romance|", "keywords": "vampire, romance, villainess, super strength, imprinting, cross breed, bloodsucker, grudge, vampire vs vampire, chief of police, dhampir, forks washington, wolf pack, misinformation, seeing the future", "tags_pipe": "|vampire|romance|villainess|super strength|imprinting|cross breed|bloodsucker|grudge|vampire vs vampire|chief of police|dhampir|forks washington|wolf pack|misinformation|seeing the future|", "overview": "After the birth of Renesmee, the Cullens gather other vampire clans in order to protect the child from a false allegation that puts the family in front of the Volturi.", "text_for_embedding": "The Twilight Saga: Breaking Dawn - Part 2 (2012). Genres: Adventure, Fantasy, Drama, Romance. After the birth of Renesmee, the Cullens gather other vampire clans in order to protect the child from a false allegation that puts the family in front of the Volturi.. Tags: vampire, romance, villainess, super strength, imprinting, cross breed, bloodsucker, grudge, vampire vs vampire, chief of police, dhampir, forks washington, wolf pack, misinformation, seeing the future"} +{"id": "65759", "title": "Happy Feet Two", "year": 2011, "duration_min": 100, "rating": 5.8, "genres": "Animation, Comedy, Family", "genres_pipe": "|Animation|Comedy|Family|", "keywords": "penguin, musical, aftercreditsstinger, 3d", "tags_pipe": "|penguin|musical|aftercreditsstinger|3d|", "overview": "Mumble the penguin has a problem: his son Erik, who is reluctant to dance, encounters The Mighty Sven, a penguin who can fly! Things get worse for Mumble when the world is shaken by powerful forces, causing him to brings together the penguin nations and their allies to set things right.", "text_for_embedding": "Happy Feet Two (2011). Genres: Animation, Comedy, Family. Mumble the penguin has a problem: his son Erik, who is reluctant to dance, encounters The Mighty Sven, a penguin who can fly! Things get worse for Mumble when the world is shaken by powerful forces, causing him to brings together the penguin nations and their allies to set things right.. Tags: penguin, musical, aftercreditsstinger, 3d"} +{"id": "1724", "title": "The Incredible Hulk", "year": 2008, "duration_min": 114, "rating": 6.1, "genres": "Science Fiction, Action, Adventure", "genres_pipe": "|Science Fiction|Action|Adventure|", "keywords": "new york, rio de janeiro, marvel comic, superhero, based on comic book, on the run, fugitive, super soldier, tony stark, virginia, military, hulk, marvel cinematic universe, angry, bruce banner", "tags_pipe": "|new york|rio de janeiro|marvel comic|superhero|based on comic book|on the run|fugitive|super soldier|tony stark|virginia|military|hulk|marvel cinematic universe|angry|bruce banner|", "overview": "Scientist Bruce Banner scours the planet for an antidote to the unbridled force of rage within him: the Hulk. But when the military masterminds who dream of exploiting his powers force him back to civilization, he finds himself coming face to face with a new, deadly foe.", "text_for_embedding": "The Incredible Hulk (2008). Genres: Science Fiction, Action, Adventure. Scientist Bruce Banner scours the planet for an antidote to the unbridled force of rage within him: the Hulk. But when the military masterminds who dream of exploiting his powers force him back to civilization, he finds himself coming face to face with a new, deadly foe.. Tags: new york, rio de janeiro, marvel comic, superhero, based on comic book, on the run, fugitive, super soldier, tony stark, virginia, military, hulk, marvel cinematic universe, angry, bruce banner"} +{"id": "267935", "title": "The BFG", "year": 2016, "duration_min": 120, "rating": 6.0, "genres": "Adventure, Family, Fantasy", "genres_pipe": "|Adventure|Family|Fantasy|", "keywords": "london england, england, based on novel, queen, little girl, orphan, cannibal, giant, evil brother", "tags_pipe": "|london england|england|based on novel|queen|little girl|orphan|cannibal|giant|evil brother|", "overview": "The BFG is no ordinary bone-crunching giant. He is far too nice and jumbly. It's lucky for Sophie that he is. Had she been carried off in the middle of the night by the Bloodbottler, or any of the other giants—rather than the BFG—she would have soon become breakfast. When Sophie hears that the giants are flush-bunking off to England to swollomp a few nice little chiddlers, she decides she must stop them once and for all. And the BFG is going to help her!", "text_for_embedding": "The BFG (2016). Genres: Adventure, Family, Fantasy. The BFG is no ordinary bone-crunching giant. He is far too nice and jumbly. It's lucky for Sophie that he is. Had she been carried off in the middle of the night by the Bloodbottler, or any of the other giants—rather than the BFG—she would have soon become breakfast. When Sophie hears that the giants are flush-bunking off to England to swollomp a few nice little chiddlers, she decides she must stop them once and for all. And the BFG is going to help her!. Tags: london england, england, based on novel, queen, little girl, orphan, cannibal, giant, evil brother"} +{"id": "281957", "title": "The Revenant", "year": 2015, "duration_min": 156, "rating": 7.3, "genres": "Western, Drama, Adventure, Thriller", "genres_pipe": "|Western|Drama|Adventure|Thriller|", "keywords": "father son relationship, rape, based on novel, mountains, winter, grizzly bear, wilderness, frontier, revenge, murder, native american, survival, bear, snow, violence", "tags_pipe": "|father son relationship|rape|based on novel|mountains|winter|grizzly bear|wilderness|frontier|revenge|murder|native american|survival|bear|snow|violence|", "overview": "In the 1820s, a frontiersman, Hugh Glass, sets out on a path of vengeance against those who left him for dead after a bear mauling.", "text_for_embedding": "The Revenant (2015). Genres: Western, Drama, Adventure, Thriller. In the 1820s, a frontiersman, Hugh Glass, sets out on a path of vengeance against those who left him for dead after a bear mauling.. Tags: father son relationship, rape, based on novel, mountains, winter, grizzly bear, wilderness, frontier, revenge, murder, native american, survival, bear, snow, violence"} +{"id": "77950", "title": "Turbo", "year": 2013, "duration_min": 96, "rating": 6.1, "genres": "Animation, Family", "genres_pipe": "|Animation|Family|", "keywords": "underdog, car race, dream, speed, power, snail, fast, friends, superpower, racer", "tags_pipe": "|underdog|car race|dream|speed|power|snail|fast|friends|superpower|racer|", "overview": "The tale of an ordinary garden snail who dreams of winning the Indy 500.", "text_for_embedding": "Turbo (2013). Genres: Animation, Family. The tale of an ordinary garden snail who dreams of winning the Indy 500.. Tags: underdog, car race, dream, speed, power, snail, fast, friends, superpower, racer"} +{"id": "44896", "title": "Rango", "year": 2011, "duration_min": 107, "rating": 6.6, "genres": "Animation, Comedy, Family, Western, Adventure", "genres_pipe": "|Animation|Comedy|Family|Western|Adventure|", "keywords": "sheriff, nevada, pet, rango, chameleon, las vegas, cactus, terrarium, construction site, armadillo, disillusionment", "tags_pipe": "|sheriff|nevada|pet|rango|chameleon|las vegas|cactus|terrarium|construction site|armadillo|disillusionment|", "overview": "When Rango, a lost family pet, accidentally winds up in the gritty, gun-slinging town of Dirt, the less-than-courageous lizard suddenly finds he stands out. Welcomed as the last hope the town has been waiting for, new Sheriff Rango is forced to play his new role to the hilt.", "text_for_embedding": "Rango (2011). Genres: Animation, Comedy, Family, Western, Adventure. When Rango, a lost family pet, accidentally winds up in the gritty, gun-slinging town of Dirt, the less-than-courageous lizard suddenly finds he stands out. Welcomed as the last hope the town has been waiting for, new Sheriff Rango is forced to play his new role to the hilt.. Tags: sheriff, nevada, pet, rango, chameleon, las vegas, cactus, terrarium, construction site, armadillo, disillusionment"} +{"id": "270946", "title": "Penguins of Madagascar", "year": 2014, "duration_min": 92, "rating": 6.5, "genres": "Family, Animation, Adventure, Comedy", "genres_pipe": "|Family|Animation|Adventure|Comedy|", "keywords": "penguin, madagascar, 3d", "tags_pipe": "|penguin|madagascar|3d|", "overview": "Skipper, Kowalski, Rico and Private join forces with undercover organization The North Wind to stop the villainous Dr. Octavius Brine from destroying the world as we know it.", "text_for_embedding": "Penguins of Madagascar (2014). Genres: Family, Animation, Adventure, Comedy. Skipper, Kowalski, Rico and Private join forces with undercover organization The North Wind to stop the villainous Dr. Octavius Brine from destroying the world as we know it.. Tags: penguin, madagascar, 3d"} +{"id": "2503", "title": "The Bourne Ultimatum", "year": 2007, "duration_min": 115, "rating": 7.3, "genres": "Action, Drama, Mystery, Thriller", "genres_pipe": "|Action|Drama|Mystery|Thriller|", "keywords": "paris, corruption, madrid, assassin, based on novel, europe, prosecution, dangerous, false identity, revelation, government, weapon, interpol, sequel, conspiracy", "tags_pipe": "|paris|corruption|madrid|assassin|based on novel|europe|prosecution|dangerous|false identity|revelation|government|weapon|interpol|sequel|conspiracy|", "overview": "Bourne is brought out of hiding once again by reporter Simon Ross who is trying to unveil Operation Blackbriar, an upgrade to Project Treadstone, in a series of newspaper columns. Information from the reporter stirs a new set of memories, and Bourne must finally uncover his dark past while dodging The Company's best efforts to eradicate him.", "text_for_embedding": "The Bourne Ultimatum (2007). Genres: Action, Drama, Mystery, Thriller. Bourne is brought out of hiding once again by reporter Simon Ross who is trying to unveil Operation Blackbriar, an upgrade to Project Treadstone, in a series of newspaper columns. Information from the reporter stirs a new set of memories, and Bourne must finally uncover his dark past while dodging The Company's best efforts to eradicate him.. Tags: paris, corruption, madrid, assassin, based on novel, europe, prosecution, dangerous, false identity, revelation, government, weapon, interpol, sequel, conspiracy"} +{"id": "9502", "title": "Kung Fu Panda", "year": 2008, "duration_min": 90, "rating": 6.9, "genres": "Adventure, Animation, Family, Comedy", "genres_pipe": "|Adventure|Animation|Family|Comedy|", "keywords": "china, martial arts, kung fu, mentor, snake, restaurant, shop, strong woman, bravery, tiger, turtle, panda, sensei, anthropomorphism, fighting", "tags_pipe": "|china|martial arts|kung fu|mentor|snake|restaurant|shop|strong woman|bravery|tiger|turtle|panda|sensei|anthropomorphism|fighting|", "overview": "When the Valley of Peace is threatened, lazy Po the panda discovers his destiny as the \"chosen one\" and trains to become a kung fu hero, but transforming the unsleek slacker into a brave warrior won't be easy. It's up to Master Shifu and the Furious Five -- Tigress, Crane, Mantis, Viper and Monkey -- to give it a try.", "text_for_embedding": "Kung Fu Panda (2008). Genres: Adventure, Animation, Family, Comedy. When the Valley of Peace is threatened, lazy Po the panda discovers his destiny as the \"chosen one\" and trains to become a kung fu hero, but transforming the unsleek slacker into a brave warrior won't be easy. It's up to Master Shifu and the Furious Five -- Tigress, Crane, Mantis, Viper and Monkey -- to give it a try.. Tags: china, martial arts, kung fu, mentor, snake, restaurant, shop, strong woman, bravery, tiger, turtle, panda, sensei, anthropomorphism, fighting"} +{"id": "102899", "title": "Ant-Man", "year": 2015, "duration_min": 117, "rating": 7.0, "genres": "Science Fiction, Action, Adventure", "genres_pipe": "|Science Fiction|Action|Adventure|", "keywords": "marvel comic, superhero, based on comic book, aftercreditsstinger, duringcreditsstinger, marvel cinematic universe, 3d", "tags_pipe": "|marvel comic|superhero|based on comic book|aftercreditsstinger|duringcreditsstinger|marvel cinematic universe|3d|", "overview": "Armed with the astonishing ability to shrink in scale but increase in strength, master thief Scott Lang must embrace his inner-hero and help his mentor, Doctor Hank Pym, protect the secret behind his spectacular Ant-Man suit from a new generation of towering threats. Against seemingly insurmountable obstacles, Pym and Lang must plan and pull off a heist that will save the world.", "text_for_embedding": "Ant-Man (2015). Genres: Science Fiction, Action, Adventure. Armed with the astonishing ability to shrink in scale but increase in strength, master thief Scott Lang must embrace his inner-hero and help his mentor, Doctor Hank Pym, protect the secret behind his spectacular Ant-Man suit from a new generation of towering threats. Against seemingly insurmountable obstacles, Pym and Lang must plan and pull off a heist that will save the world.. Tags: marvel comic, superhero, based on comic book, aftercreditsstinger, duringcreditsstinger, marvel cinematic universe, 3d"} +{"id": "101299", "title": "The Hunger Games: Catching Fire", "year": 2013, "duration_min": 146, "rating": 7.4, "genres": "Adventure, Action, Science Fiction", "genres_pipe": "|Adventure|Action|Science Fiction|", "keywords": "competition, based on novel, mentor, secret, factory, television, propaganda, future, dystopia, alliance, games, president, uprising, sequel, murder", "tags_pipe": "|competition|based on novel|mentor|secret|factory|television|propaganda|future|dystopia|alliance|games|president|uprising|sequel|murder|", "overview": "Katniss Everdeen has returned home safe after winning the 74th Annual Hunger Games along with fellow tribute Peeta Mellark. Winning means that they must turn around and leave their family and close friends, embarking on a \"Victor's Tour\" of the districts. Along the way Katniss senses that a rebellion is simmering, but the Capitol is still very much in control as President Snow prepares the 75th Annual Hunger Games (The Quarter Quell) - a competition that could change Panem forever.", "text_for_embedding": "The Hunger Games: Catching Fire (2013). Genres: Adventure, Action, Science Fiction. Katniss Everdeen has returned home safe after winning the 74th Annual Hunger Games along with fellow tribute Peeta Mellark. Winning means that they must turn around and leave their family and close friends, embarking on a \"Victor's Tour\" of the districts. Along the way Katniss senses that a rebellion is simmering, but the Capitol is still very much in control as President Snow prepares the 75th Annual Hunger Games (The Quarter Quell) - a competition that could change Panem forever.. Tags: competition, based on novel, mentor, secret, factory, television, propaganda, future, dystopia, alliance, games, president, uprising, sequel, murder"} +{"id": "228161", "title": "Home", "year": 2015, "duration_min": 94, "rating": 6.8, "genres": "Fantasy, Comedy, Animation, Science Fiction, Family", "genres_pipe": "|Fantasy|Comedy|Animation|Science Fiction|Family|", "keywords": "friendship, spaceship, space, alien, alien invasion, alien friendship, awful leader, taking resposibility", "tags_pipe": "|friendship|spaceship|space|alien|alien invasion|alien friendship|awful leader|taking resposibility|", "overview": "When Earth is taken over by the overly-confident Boov, an alien race in search of a new place to call home, all humans are promptly relocated, while all Boov get busy reorganizing the planet. But when one resourceful girl, Tip, manages to avoid capture, she finds herself the accidental accomplice of a banished Boov named Oh. The two fugitives realize there’s a lot more at stake than intergalactic relations as they embark on the road trip of a lifetime.", "text_for_embedding": "Home (2015). Genres: Fantasy, Comedy, Animation, Science Fiction, Family. When Earth is taken over by the overly-confident Boov, an alien race in search of a new place to call home, all humans are promptly relocated, while all Boov get busy reorganizing the planet. But when one resourceful girl, Tip, manages to avoid capture, she finds herself the accidental accomplice of a banished Boov named Oh. The two fugitives realize there’s a lot more at stake than intergalactic relations as they embark on the road trip of a lifetime.. Tags: friendship, spaceship, space, alien, alien invasion, alien friendship, awful leader, taking resposibility"} +{"id": "74", "title": "War of the Worlds", "year": 2005, "duration_min": 116, "rating": 6.2, "genres": "Adventure, Thriller, Science Fiction", "genres_pipe": "|Adventure|Thriller|Science Fiction|", "keywords": "post traumatic stress disorder, new jersey, airplane, dystopia, daughter, apocalypse, alien invasion, human subjugation", "tags_pipe": "|post traumatic stress disorder|new jersey|airplane|dystopia|daughter|apocalypse|alien invasion|human subjugation|", "overview": "Ray Ferrier is a divorced dockworker and less-than-perfect father. Soon after his ex-wife and her new husband drop of his teenage son and young daughter for a rare weekend visit, a strange and powerful lightning storm touches down.", "text_for_embedding": "War of the Worlds (2005). Genres: Adventure, Thriller, Science Fiction. Ray Ferrier is a divorced dockworker and less-than-perfect father. Soon after his ex-wife and her new husband drop of his teenage son and young daughter for a rare weekend visit, a strange and powerful lightning storm touches down.. Tags: post traumatic stress disorder, new jersey, airplane, dystopia, daughter, apocalypse, alien invasion, human subjugation"} +{"id": "8961", "title": "Bad Boys II", "year": 2003, "duration_min": 147, "rating": 6.3, "genres": "Adventure, Action, Comedy, Thriller, Crime", "genres_pipe": "|Adventure|Action|Comedy|Thriller|Crime|", "keywords": "miami, ku klux klan, cuba, undercover, mexican standoff, ecstasy, guantánamo, slaughter, shootout, gunfight, bromance, gangster, violence, foot chase, interrogation", "tags_pipe": "|miami|ku klux klan|cuba|undercover|mexican standoff|ecstasy|guantánamo|slaughter|shootout|gunfight|bromance|gangster|violence|foot chase|interrogation|", "overview": "Out-of-control, trash-talking buddy cops Marcus Burnett and Mike Lowrey of the Miami Narcotics Task Force reunite, and bullets fly, cars crash and laughs explode as they pursue a whacked-out drug lord from the streets of Miami to the barrios of Cuba. But the real fireworks result when Marcus discovers that playboy Mike is secretly romancing Marcus’ sexy sister.", "text_for_embedding": "Bad Boys II (2003). Genres: Adventure, Action, Comedy, Thriller, Crime. Out-of-control, trash-talking buddy cops Marcus Burnett and Mike Lowrey of the Miami Narcotics Task Force reunite, and bullets fly, cars crash and laughs explode as they pursue a whacked-out drug lord from the streets of Miami to the barrios of Cuba. But the real fireworks result when Marcus discovers that playboy Mike is secretly romancing Marcus’ sexy sister.. Tags: miami, ku klux klan, cuba, undercover, mexican standoff, ecstasy, guantánamo, slaughter, shootout, gunfight, bromance, gangster, violence, foot chase, interrogation"} +{"id": "417859", "title": "Puss in Boots", "year": 2011, "duration_min": 90, "rating": 6.4, "genres": "Action, Adventure, Animation, Family, Fantasy", "genres_pipe": "|Action|Adventure|Animation|Family|Fantasy|", "keywords": "adventure, fairy-tale figure", "tags_pipe": "|adventure|fairy-tale figure|", "overview": "Long before he even met Shrek, the notorious fighter, lover and outlaw Puss in Boots becomes a hero when he sets off on an adventure with the tough and street smart Kitty Softpaws and the mastermind Humpty Dumpty to save his town. This is the true story of The Cat, The Myth, The Legend... The Boots.", "text_for_embedding": "Puss in Boots (2011). Genres: Action, Adventure, Animation, Family, Fantasy. Long before he even met Shrek, the notorious fighter, lover and outlaw Puss in Boots becomes a hero when he sets off on an adventure with the tough and street smart Kitty Softpaws and the mastermind Humpty Dumpty to save his town. This is the true story of The Cat, The Myth, The Legend... The Boots.. Tags: adventure, fairy-tale figure"} +{"id": "27576", "title": "Salt", "year": 2010, "duration_min": 100, "rating": 6.2, "genres": "Action, Mystery, Thriller", "genres_pipe": "|Action|Mystery|Thriller|", "keywords": "assassination, spy, cia, kidnapping, cold war, soviet union, double agent, race against time, revenge, on the run, shootout, espionage, female protagonist, hitwoman, terrorism", "tags_pipe": "|assassination|spy|cia|kidnapping|cold war|soviet union|double agent|race against time|revenge|on the run|shootout|espionage|female protagonist|hitwoman|terrorism|", "overview": "As a CIA officer, Evelyn Salt swore an oath to duty, honor and country. Her loyalty will be tested when a defector accuses her of being a Russian spy. Salt goes on the run, using all her skills and years of experience as a covert operative to elude capture. Salt's efforts to prove her innocence only serve to cast doubt on her motives, as the hunt to uncover the truth behind her identity continues and the question remains: \"Who is Salt?\"", "text_for_embedding": "Salt (2010). Genres: Action, Mystery, Thriller. As a CIA officer, Evelyn Salt swore an oath to duty, honor and country. Her loyalty will be tested when a defector accuses her of being a Russian spy. Salt goes on the run, using all her skills and years of experience as a covert operative to elude capture. Salt's efforts to prove her innocence only serve to cast doubt on her motives, as the hunt to uncover the truth behind her identity continues and the question remains: \"Who is Salt?\". Tags: assassination, spy, cia, kidnapping, cold war, soviet union, double agent, race against time, revenge, on the run, shootout, espionage, female protagonist, hitwoman, terrorism"} +{"id": "86834", "title": "Noah", "year": 2014, "duration_min": 139, "rating": 5.6, "genres": "Drama, Adventure", "genres_pipe": "|Drama|Adventure|", "keywords": "bible, god, noah, 3d", "tags_pipe": "|bible|god|noah|3d|", "overview": "A man who suffers visions of an apocalyptic deluge takes measures to protect his family from the coming flood.", "text_for_embedding": "Noah (2014). Genres: Drama, Adventure. A man who suffers visions of an apocalyptic deluge takes measures to protect his family from the coming flood.. Tags: bible, god, noah, 3d"} +{"id": "17578", "title": "The Adventures of Tintin", "year": 2011, "duration_min": 107, "rating": 6.7, "genres": "Adventure, Animation, Mystery", "genres_pipe": "|Adventure|Animation|Mystery|", "keywords": "riddle, captain, treasure, liquor, treasure hunt, sunken treasure, plot, reporter, 3d, action", "tags_pipe": "|riddle|captain|treasure|liquor|treasure hunt|sunken treasure|plot|reporter|3d|action|", "overview": "Intrepid young reporter, Tintin and his loyal dog, Snowy are thrust into a world of high adventure when they discover a ship carrying an explosive secret. As Tintin is drawn into a centuries-old mystery, Ivan Ivanovitch Sakharine suspects him of stealing a priceless treasure. Tintin and Snowy, with the help of salty, cantankerous Captain Haddock and bumbling detectives, Thompson & Thomson, travel half the world, one step ahead of their enemies as Tintin endeavors to find The Unicorn, a sunken ship that may hold a vast fortune, but also an ancient curse.", "text_for_embedding": "The Adventures of Tintin (2011). Genres: Adventure, Animation, Mystery. Intrepid young reporter, Tintin and his loyal dog, Snowy are thrust into a world of high adventure when they discover a ship carrying an explosive secret. As Tintin is drawn into a centuries-old mystery, Ivan Ivanovitch Sakharine suspects him of stealing a priceless treasure. Tintin and Snowy, with the help of salty, cantankerous Captain Haddock and bumbling detectives, Thompson & Thomson, travel half the world, one step ahead of their enemies as Tintin endeavors to find The Unicorn, a sunken ship that may hold a vast fortune, but also an ancient curse.. Tags: riddle, captain, treasure, liquor, treasure hunt, sunken treasure, plot, reporter, 3d, action"} +{"id": "673", "title": "Harry Potter and the Prisoner of Azkaban", "year": 2004, "duration_min": 141, "rating": 7.7, "genres": "Adventure, Fantasy, Family", "genres_pipe": "|Adventure|Fantasy|Family|", "keywords": "flying, traitor, magic, cutting the cord, child hero, broom, sorcerer's apprentice, school of witchcraft, griffon, black magic, time travel, best friend, werewolf, dark, muggle", "tags_pipe": "|flying|traitor|magic|cutting the cord|child hero|broom|sorcerer's apprentice|school of witchcraft|griffon|black magic|time travel|best friend|werewolf|dark|muggle|", "overview": "Harry, Ron and Hermione return to Hogwarts for another magic-filled year. Harry comes face to face with danger yet again, this time in the form of escaped convict, Sirius Black – and turns to sympathetic Professor Lupin for help.", "text_for_embedding": "Harry Potter and the Prisoner of Azkaban (2004). Genres: Adventure, Fantasy, Family. Harry, Ron and Hermione return to Hogwarts for another magic-filled year. Harry comes face to face with danger yet again, this time in the form of escaped convict, Sirius Black – and turns to sympathetic Professor Lupin for help.. Tags: flying, traitor, magic, cutting the cord, child hero, broom, sorcerer's apprentice, school of witchcraft, griffon, black magic, time travel, best friend, werewolf, dark, muggle"} +{"id": "6972", "title": "Australia", "year": 2008, "duration_min": 165, "rating": 6.3, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "missionary, world war ii, ranch, australia, british, racist, cattle drive, aftercreditsstinger, stampede, waltzing matilda, trampled to death", "tags_pipe": "|missionary|world war ii|ranch|australia|british|racist|cattle drive|aftercreditsstinger|stampede|waltzing matilda|trampled to death|", "overview": "Set in northern Australia before World War II, an English aristocrat who inherits a sprawling ranch reluctantly pacts with a stock-man in order to protect her new property from a takeover plot. As the pair drive 2,000 head of cattle over unforgiving landscape, they experience the bombing of Darwin, Australia, by Japanese forces firsthand.", "text_for_embedding": "Australia (2008). Genres: Drama. Set in northern Australia before World War II, an English aristocrat who inherits a sprawling ranch reluctantly pacts with a stock-man in order to protect her new property from a takeover plot. As the pair drive 2,000 head of cattle over unforgiving landscape, they experience the bombing of Darwin, Australia, by Japanese forces firsthand.. Tags: missionary, world war ii, ranch, australia, british, racist, cattle drive, aftercreditsstinger, stampede, waltzing matilda, trampled to death"} +{"id": "82700", "title": "After Earth", "year": 2013, "duration_min": 100, "rating": 5.0, "genres": "Science Fiction, Action, Adventure", "genres_pipe": "|Science Fiction|Action|Adventure|", "keywords": "dystopia", "tags_pipe": "|dystopia|", "overview": "One thousand years after cataclysmic events forced humanity's escape from Earth, Nova Prime has become mankind's new home. Legendary General Cypher Raige returns from an extended tour of duty to his estranged family, ready to be a father to his 13-year-old son, Kitai. When an asteroid storm damages Cypher and Kitai's craft, they crash-land on a now unfamiliar and dangerous Earth. As his father lies dying in the cockpit, Kitai must trek across the hostile terrain to recover their rescue beacon. His whole life, Kitai has wanted nothing more than to be a soldier like his father. Today, he gets his chance.", "text_for_embedding": "After Earth (2013). Genres: Science Fiction, Action, Adventure. One thousand years after cataclysmic events forced humanity's escape from Earth, Nova Prime has become mankind's new home. Legendary General Cypher Raige returns from an extended tour of duty to his estranged family, ready to be a father to his 13-year-old son, Kitai. When an asteroid storm damages Cypher and Kitai's craft, they crash-land on a now unfamiliar and dangerous Earth. As his father lies dying in the cockpit, Kitai must trek across the hostile terrain to recover their rescue beacon. His whole life, Kitai has wanted nothing more than to be a soldier like his father. Today, he gets his chance.. Tags: dystopia"} +{"id": "10567", "title": "Dinosaur", "year": 2000, "duration_min": 82, "rating": 6.2, "genres": "Animation, Family", "genres_pipe": "|Animation|Family|", "keywords": "cataclysm, asteroid, leader, comet, animation, prehistoric, prehistoric egg, dinosaur, nesting grounds, prehistoric creature, prehistoric adventure, lemur, prehistoric times", "tags_pipe": "|cataclysm|asteroid|leader|comet|animation|prehistoric|prehistoric egg|dinosaur|nesting grounds|prehistoric creature|prehistoric adventure|lemur|prehistoric times|", "overview": "An orphaned dinosaur raised by lemurs joins an arduous trek to a sancturary after a meteorite shower destroys his family home.", "text_for_embedding": "Dinosaur (2000). Genres: Animation, Family. An orphaned dinosaur raised by lemurs joins an arduous trek to a sancturary after a meteorite shower destroys his family home.. Tags: cataclysm, asteroid, leader, comet, animation, prehistoric, prehistoric egg, dinosaur, nesting grounds, prehistoric creature, prehistoric adventure, lemur, prehistoric times"} +{"id": "181533", "title": "Night at the Museum: Secret of the Tomb", "year": 2014, "duration_min": 97, "rating": 6.1, "genres": "Adventure, Comedy, Fantasy, Family", "genres_pipe": "|Adventure|Comedy|Fantasy|Family|", "keywords": "night watchman, museum, natural history, history, smithsonian", "tags_pipe": "|night watchman|museum|natural history|history|smithsonian|", "overview": "When the magic powers of The Tablet of Ahkmenrah begin to die out, Larry Daley (Ben Stiller) spans the globe, uniting favorite and new characters while embarking on an epic quest to save the magic before it is gone forever.", "text_for_embedding": "Night at the Museum: Secret of the Tomb (2014). Genres: Adventure, Comedy, Fantasy, Family. When the magic powers of The Tablet of Ahkmenrah begin to die out, Larry Daley (Ben Stiller) spans the globe, uniting favorite and new characters while embarking on an epic quest to save the magic before it is gone forever.. Tags: night watchman, museum, natural history, history, smithsonian"} +{"id": "38055", "title": "Megamind", "year": 2010, "duration_min": 95, "rating": 6.7, "genres": "Animation, Action, Comedy, Family, Science Fiction", "genres_pipe": "|Animation|Action|Comedy|Family|Science Fiction|", "keywords": "saving the world, date, prison, secret identity, fish, gun, dna, mayor, anti hero, rain, museum, one-sided love, serum, talking animal, reporter", "tags_pipe": "|saving the world|date|prison|secret identity|fish|gun|dna|mayor|anti hero|rain|museum|one-sided love|serum|talking animal|reporter|", "overview": "Bumbling supervillain Megamind finally defeats his nemesis, the superhero Metro Man. But without a hero, he loses all purpose and must find new meaning to his life.", "text_for_embedding": "Megamind (2010). Genres: Animation, Action, Comedy, Family, Science Fiction. Bumbling supervillain Megamind finally defeats his nemesis, the superhero Metro Man. But without a hero, he loses all purpose and must find new meaning to his life.. Tags: saving the world, date, prison, secret identity, fish, gun, dna, mayor, anti hero, rain, museum, one-sided love, serum, talking animal, reporter"} +{"id": "671", "title": "Harry Potter and the Philosopher's Stone", "year": 2001, "duration_min": 152, "rating": 7.5, "genres": "Adventure, Fantasy, Family", "genres_pipe": "|Adventure|Fantasy|Family|", "keywords": "witch, christmas party, magic, cutting the cord, halloween, child hero, broom, chosen one, frog, fantasy world, based on young adult novel", "tags_pipe": "|witch|christmas party|magic|cutting the cord|halloween|child hero|broom|chosen one|frog|fantasy world|based on young adult novel|", "overview": "Harry Potter has lived under the stairs at his aunt and uncle's house his whole life. But on his 11th birthday, he learns he's a powerful wizard -- with a place waiting for him at the Hogwarts School of Witchcraft and Wizardry. As he learns to harness his newfound powers with the help of the school's kindly headmaster, Harry uncovers the truth about his parents' deaths -- and about the villain who's to blame.", "text_for_embedding": "Harry Potter and the Philosopher's Stone (2001). Genres: Adventure, Fantasy, Family. Harry Potter has lived under the stairs at his aunt and uncle's house his whole life. But on his 11th birthday, he learns he's a powerful wizard -- with a place waiting for him at the Hogwarts School of Witchcraft and Wizardry. As he learns to harness his newfound powers with the help of the school's kindly headmaster, Harry uncovers the truth about his parents' deaths -- and about the villain who's to blame.. Tags: witch, christmas party, magic, cutting the cord, halloween, child hero, broom, chosen one, frog, fantasy world, based on young adult novel"} +{"id": "49524", "title": "R.I.P.D.", "year": 2013, "duration_min": 96, "rating": 5.4, "genres": "Fantasy, Action, Comedy, Crime", "genres_pipe": "|Fantasy|Action|Comedy|Crime|", "keywords": "gold, police operation, partner, revenge, undead, ghost, police department", "tags_pipe": "|gold|police operation|partner|revenge|undead|ghost|police department|", "overview": "A recently slain cop joins a team of undead police officers working for the Rest in Peace Department and tries to find the man who murdered him. Based on the comic by Peter M. Lenkov.", "text_for_embedding": "R.I.P.D. (2013). Genres: Fantasy, Action, Comedy, Crime. A recently slain cop joins a team of undead police officers working for the Rest in Peace Department and tries to find the man who murdered him. Based on the comic by Peter M. Lenkov.. Tags: gold, police operation, partner, revenge, undead, ghost, police department"} +{"id": "22", "title": "Pirates of the Caribbean: The Curse of the Black Pearl", "year": 2003, "duration_min": 143, "rating": 7.5, "genres": "Adventure, Fantasy, Action", "genres_pipe": "|Adventure|Fantasy|Action|", "keywords": "exotic island, blacksmith, east india trading company, gold, marriage proposal, mutiny, jamaica, skeleton, daughter, governor, wooden eye, gold coin, pirate, alcoholic, swashbuckler", "tags_pipe": "|exotic island|blacksmith|east india trading company|gold|marriage proposal|mutiny|jamaica|skeleton|daughter|governor|wooden eye|gold coin|pirate|alcoholic|swashbuckler|", "overview": "Jack Sparrow, a freewheeling 17th-century pirate who roams the Caribbean Sea, butts heads with a rival pirate bent on pillaging the village of Port Royal. When the governor's daughter is kidnapped, Sparrow decides to help the girl's love save her. But their seafaring mission is hardly simple.", "text_for_embedding": "Pirates of the Caribbean: The Curse of the Black Pearl (2003). Genres: Adventure, Fantasy, Action. Jack Sparrow, a freewheeling 17th-century pirate who roams the Caribbean Sea, butts heads with a rival pirate bent on pillaging the village of Port Royal. When the governor's daughter is kidnapped, Sparrow decides to help the girl's love save her. But their seafaring mission is hardly simple.. Tags: exotic island, blacksmith, east india trading company, gold, marriage proposal, mutiny, jamaica, skeleton, daughter, governor, wooden eye, gold coin, pirate, alcoholic, swashbuckler"} +{"id": "131631", "title": "The Hunger Games: Mockingjay - Part 1", "year": 2014, "duration_min": 123, "rating": 6.6, "genres": "Science Fiction, Adventure, Thriller", "genres_pipe": "|Science Fiction|Adventure|Thriller|", "keywords": "resistance, post-apocalyptic, dystopia, war, sequel, female protagonist, bow and arrow, game, future war, revolt, class prejudice, human subjugation, based on young adult novel", "tags_pipe": "|resistance|post-apocalyptic|dystopia|war|sequel|female protagonist|bow and arrow|game|future war|revolt|class prejudice|human subjugation|based on young adult novel|", "overview": "Katniss Everdeen reluctantly becomes the symbol of a mass rebellion against the autocratic Capitol.", "text_for_embedding": "The Hunger Games: Mockingjay - Part 1 (2014). Genres: Science Fiction, Adventure, Thriller. Katniss Everdeen reluctantly becomes the symbol of a mass rebellion against the autocratic Capitol.. Tags: resistance, post-apocalyptic, dystopia, war, sequel, female protagonist, bow and arrow, game, future war, revolt, class prejudice, human subjugation, based on young adult novel"} +{"id": "591", "title": "The Da Vinci Code", "year": 2006, "duration_min": 149, "rating": 6.5, "genres": "Thriller, Mystery", "genres_pipe": "|Thriller|Mystery|", "keywords": "paris, holy grail, christianity, monk, based on novel, zurich, secret society, louvre, curator, symbologist, opus dei, heresy, mona lisa, freemason, conspiracy", "tags_pipe": "|paris|holy grail|christianity|monk|based on novel|zurich|secret society|louvre|curator|symbologist|opus dei|heresy|mona lisa|freemason|conspiracy|", "overview": "When the curator of the Louvre is found murdered in the famed museum's hallowed halls, Harvard professor, Robert Langdon and cryptographer, Sophie Neve must untangle a deadly web of deceit involving the works of Leonardo da Vinci.", "text_for_embedding": "The Da Vinci Code (2006). Genres: Thriller, Mystery. When the curator of the Louvre is found murdered in the famed museum's hallowed halls, Harvard professor, Robert Langdon and cryptographer, Sophie Neve must untangle a deadly web of deceit involving the works of Leonardo da Vinci.. Tags: paris, holy grail, christianity, monk, based on novel, zurich, secret society, louvre, curator, symbologist, opus dei, heresy, mona lisa, freemason, conspiracy"} +{"id": "172385", "title": "Rio 2", "year": 2014, "duration_min": 102, "rating": 6.3, "genres": "Animation, Adventure, Comedy, Family", "genres_pipe": "|Animation|Adventure|Comedy|Family|", "keywords": "bird, sequel, jungle, audition, amazon rainforest, parrots", "tags_pipe": "|bird|sequel|jungle|audition|amazon rainforest|parrots|", "overview": "It's a jungle out there for Blu, Jewel and their three kids after they're hurtled from Rio de Janeiro to the wilds of the Amazon. As Blu tries to fit in, he goes beak-to-beak with the vengeful Nigel, and meets the most fearsome adversary of all: his father-in-law.", "text_for_embedding": "Rio 2 (2014). Genres: Animation, Adventure, Comedy, Family. It's a jungle out there for Blu, Jewel and their three kids after they're hurtled from Rio de Janeiro to the wilds of the Amazon. As Blu tries to fit in, he goes beak-to-beak with the vengeful Nigel, and meets the most fearsome adversary of all: his father-in-law.. Tags: bird, sequel, jungle, audition, amazon rainforest, parrots"} +{"id": "36658", "title": "X2", "year": 2003, "duration_min": 133, "rating": 6.8, "genres": "Adventure, Action, Science Fiction, Thriller", "genres_pipe": "|Adventure|Action|Science Fiction|Thriller|", "keywords": "mutant, marvel comic, superhero, based on comic book, superhuman", "tags_pipe": "|mutant|marvel comic|superhero|based on comic book|superhuman|", "overview": "Professor Charles Xavier and his team of genetically gifted superheroes face a rising tide of anti-mutant sentiment led by Col. William Stryker. Storm, Wolverine and Jean Grey must join their usual nemeses – Magneto and Mystique – to unhinge Stryker's scheme to exterminate all mutants.", "text_for_embedding": "X2 (2003). Genres: Adventure, Action, Science Fiction, Thriller. Professor Charles Xavier and his team of genetically gifted superheroes face a rising tide of anti-mutant sentiment led by Col. William Stryker. Storm, Wolverine and Jean Grey must join their usual nemeses – Magneto and Mystique – to unhinge Stryker's scheme to exterminate all mutants.. Tags: mutant, marvel comic, superhero, based on comic book, superhuman"} +{"id": "51497", "title": "Fast Five", "year": 2011, "duration_min": 130, "rating": 7.1, "genres": "Action, Thriller, Crime", "genres_pipe": "|Action|Thriller|Crime|", "keywords": "brazil, fbi, freedom, escape from prison, car crash, heist, organized crime, on the run, money, fugitive, police chase, escaped convict, car, imax, automobile racing", "tags_pipe": "|brazil|fbi|freedom|escape from prison|car crash|heist|organized crime|on the run|money|fugitive|police chase|escaped convict|car|imax|automobile racing|", "overview": "Former cop Brian O'Conner partners with ex-con Dom Toretto on the opposite side of the law. Since Brian and Mia Toretto broke Dom out of custody, they've blown across many borders to elude authorities. Now backed into a corner in Rio de Janeiro, they must pull one last job in order to gain their freedom.", "text_for_embedding": "Fast Five (2011). Genres: Action, Thriller, Crime. Former cop Brian O'Conner partners with ex-con Dom Toretto on the opposite side of the law. Since Brian and Mia Toretto broke Dom out of custody, they've blown across many borders to elude authorities. Now backed into a corner in Rio de Janeiro, they must pull one last job in order to gain their freedom.. Tags: brazil, fbi, freedom, escape from prison, car crash, heist, organized crime, on the run, money, fugitive, police chase, escaped convict, car, imax, automobile racing"} +{"id": "58574", "title": "Sherlock Holmes: A Game of Shadows", "year": 2011, "duration_min": 129, "rating": 7.0, "genres": "Adventure, Action, Crime, Mystery", "genres_pipe": "|Adventure|Action|Crime|Mystery|", "keywords": "detective inspector, steampunk, criminal mastermind", "tags_pipe": "|detective inspector|steampunk|criminal mastermind|", "overview": "There is a new criminal mastermind at large (Professor Moriarty) and not only is he Holmes’ intellectual equal, but his capacity for evil and lack of conscience may give him an advantage over the detective.", "text_for_embedding": "Sherlock Holmes: A Game of Shadows (2011). Genres: Adventure, Action, Crime, Mystery. There is a new criminal mastermind at large (Professor Moriarty) and not only is he Holmes’ intellectual equal, but his capacity for evil and lack of conscience may give him an advantage over the detective.. Tags: detective inspector, steampunk, criminal mastermind"} +{"id": "18823", "title": "Clash of the Titans", "year": 2010, "duration_min": 106, "rating": 5.6, "genres": "Adventure, Fantasy, Action", "genres_pipe": "|Adventure|Fantasy|Action|", "keywords": "hades, mythology, greek mythology, zeus, medusa, mythological beast, sea monster, perseus, kraken, gods, ancient greece, based on greek myth, 3d", "tags_pipe": "|hades|mythology|greek mythology|zeus|medusa|mythological beast|sea monster|perseus|kraken|gods|ancient greece|based on greek myth|3d|", "overview": "Born of a god but raised as a man, Perseus is helpless to save his family from Hades, vengeful god of the underworld. With nothing to lose, Perseus volunteers to lead a dangerous mission to defeat Hades before he can seize power from Zeus and unleash hell on earth. Battling unholy demons and fearsome beasts, Perseus and his warriors will only survive if Perseus accepts his power as a god, defies fate and creates his own destiny.", "text_for_embedding": "Clash of the Titans (2010). Genres: Adventure, Fantasy, Action. Born of a god but raised as a man, Perseus is helpless to save his family from Hades, vengeful god of the underworld. With nothing to lose, Perseus volunteers to lead a dangerous mission to defeat Hades before he can seize power from Zeus and unleash hell on earth. Battling unholy demons and fearsome beasts, Perseus and his warriors will only survive if Perseus accepts his power as a god, defies fate and creates his own destiny.. Tags: hades, mythology, greek mythology, zeus, medusa, mythological beast, sea monster, perseus, kraken, gods, ancient greece, based on greek myth, 3d"} +{"id": "861", "title": "Total Recall", "year": 1990, "duration_min": 113, "rating": 7.1, "genres": "Action, Adventure, Science Fiction", "genres_pipe": "|Action|Adventure|Science Fiction|", "keywords": "oxygen, falsely accused, resistance, mars, double life, telepathy, mutant, hologram, space colony, false identity, secret agent, dystopia, cyberpunk, false memory, implanted memory", "tags_pipe": "|oxygen|falsely accused|resistance|mars|double life|telepathy|mutant|hologram|space colony|false identity|secret agent|dystopia|cyberpunk|false memory|implanted memory|", "overview": "Construction worker Douglas Quaid discovers a memory chip in his brain during a virtual-reality trip. He also finds that his past has been invented to conceal a plot of planetary domination. Soon, he's off to Mars to find out who he is and who planted the chip.", "text_for_embedding": "Total Recall (1990). Genres: Action, Adventure, Science Fiction. Construction worker Douglas Quaid discovers a memory chip in his brain during a virtual-reality trip. He also finds that his past has been invented to conceal a plot of planetary domination. Soon, he's off to Mars to find out who he is and who planted the chip.. Tags: oxygen, falsely accused, resistance, mars, double life, telepathy, mutant, hologram, space colony, false identity, secret agent, dystopia, cyberpunk, false memory, implanted memory"} +{"id": "1911", "title": "The 13th Warrior", "year": 1999, "duration_min": 102, "rating": 6.4, "genres": "Adventure, Fantasy, Action", "genres_pipe": "|Adventure|Fantasy|Action|", "keywords": "witch, cave, arabian, scandinavia, bagdad, viking, iraq, war, mission", "tags_pipe": "|witch|cave|arabian|scandinavia|bagdad|viking|iraq|war|mission|", "overview": "In AD 922, Arab courtier, Ahmad Ibn Fadlan accompanies a party of Vikings to the barbaric North to combat a terror that slaughters Vikings and devours their flesh.", "text_for_embedding": "The 13th Warrior (1999). Genres: Adventure, Fantasy, Action. In AD 922, Arab courtier, Ahmad Ibn Fadlan accompanies a party of Vikings to the barbaric North to combat a terror that slaughters Vikings and devours their flesh.. Tags: witch, cave, arabian, scandinavia, bagdad, viking, iraq, war, mission"} +{"id": "49040", "title": "The Bourne Legacy", "year": 2012, "duration_min": 120, "rating": 6.0, "genres": "Action, Thriller", "genres_pipe": "|Action|Thriller|", "keywords": "assassin, wolf, maryland, suicide by gunshot, rooftop, exploding house, laptop, tracking device, fake id, seoul south korea, pharmaceutical lab, government conspiracy, roof chase, manila philippines, hunted", "tags_pipe": "|assassin|wolf|maryland|suicide by gunshot|rooftop|exploding house|laptop|tracking device|fake id|seoul south korea|pharmaceutical lab|government conspiracy|roof chase|manila philippines|hunted|", "overview": "New CIA operative, Aaron Cross experiences life-or-death stakes that have been triggered by the previous actions of Jason Bourne.", "text_for_embedding": "The Bourne Legacy (2012). Genres: Action, Thriller. New CIA operative, Aaron Cross experiences life-or-death stakes that have been triggered by the previous actions of Jason Bourne.. Tags: assassin, wolf, maryland, suicide by gunshot, rooftop, exploding house, laptop, tracking device, fake id, seoul south korea, pharmaceutical lab, government conspiracy, roof chase, manila philippines, hunted"} +{"id": "415", "title": "Batman & Robin", "year": 1997, "duration_min": 125, "rating": 4.2, "genres": "Action, Crime, Fantasy", "genres_pipe": "|Action|Crime|Fantasy|", "keywords": "double life, dc comics, dual identity, crime fighter, fictional place, gotham city, superhero, credit card, super powers", "tags_pipe": "|double life|dc comics|dual identity|crime fighter|fictional place|gotham city|superhero|credit card|super powers|", "overview": "Along with crime-fighting partner Robin and new recruit Batgirl, Batman battles the dual threat of frosty genius Mr. Freeze and homicidal horticulturalist Poison Ivy. Freeze plans to put Gotham City on ice, while Ivy tries to drive a wedge between the dynamic duo.", "text_for_embedding": "Batman & Robin (1997). Genres: Action, Crime, Fantasy. Along with crime-fighting partner Robin and new recruit Batgirl, Batman battles the dual threat of frosty genius Mr. Freeze and homicidal horticulturalist Poison Ivy. Freeze plans to put Gotham City on ice, while Ivy tries to drive a wedge between the dynamic duo.. Tags: double life, dc comics, dual identity, crime fighter, fictional place, gotham city, superhero, credit card, super powers"} +{"id": "8871", "title": "How the Grinch Stole Christmas", "year": 2000, "duration_min": 104, "rating": 6.2, "genres": "Family, Comedy, Fantasy", "genres_pipe": "|Family|Comedy|Fantasy|", "keywords": "holiday, christmas party, new love, santa claus, village, kids and family", "tags_pipe": "|holiday|christmas party|new love|santa claus|village|kids and family|", "overview": "Inside a snowflake exists the magical land of Whoville. In Whoville, live the Whos, an almost mutated sort of Munchkin-like people. All the Whos love Christmas, yet just outside of their beloved Whoville lives the Grinch. The Grinch is a nasty creature that hates Christmas, and plots to steal it away from the Whos, whom he equally abhors. Yet a small child, Cindy Lou Who, decides to try befriending the Grinch.", "text_for_embedding": "How the Grinch Stole Christmas (2000). Genres: Family, Comedy, Fantasy. Inside a snowflake exists the magical land of Whoville. In Whoville, live the Whos, an almost mutated sort of Munchkin-like people. All the Whos love Christmas, yet just outside of their beloved Whoville lives the Grinch. The Grinch is a nasty creature that hates Christmas, and plots to steal it away from the Whos, whom he equally abhors. Yet a small child, Cindy Lou Who, decides to try befriending the Grinch.. Tags: holiday, christmas party, new love, santa claus, village, kids and family"} +{"id": "435", "title": "The Day After Tomorrow", "year": 2004, "duration_min": 124, "rating": 6.2, "genres": "Action, Adventure, Science Fiction, Thriller", "genres_pipe": "|Action|Adventure|Science Fiction|Thriller|", "keywords": "saving the world, library, cataclysm, climate change, greenhouse effect, tornado, twister, hurricane, hail, temperature drop, ice age, polar zone, meteorology, gulfstream, barrier ice", "tags_pipe": "|saving the world|library|cataclysm|climate change|greenhouse effect|tornado|twister|hurricane|hail|temperature drop|ice age|polar zone|meteorology|gulfstream|barrier ice|", "overview": "After years of increases in the greenhouse effect, havoc is wreaked globally in the form of catastrophic hurricanes, tornadoes, tidal waves, floods and the beginning of a new Ice Age. Paleoclimatologist, Jack Hall tries to warn the world while also shepherding to safety his son, trapped in New York after the city is overwhelmed by the start of the new big freeze.", "text_for_embedding": "The Day After Tomorrow (2004). Genres: Action, Adventure, Science Fiction, Thriller. After years of increases in the greenhouse effect, havoc is wreaked globally in the form of catastrophic hurricanes, tornadoes, tidal waves, floods and the beginning of a new Ice Age. Paleoclimatologist, Jack Hall tries to warn the world while also shepherding to safety his son, trapped in New York after the city is overwhelmed by the start of the new big freeze.. Tags: saving the world, library, cataclysm, climate change, greenhouse effect, tornado, twister, hurricane, hail, temperature drop, ice age, polar zone, meteorology, gulfstream, barrier ice"} +{"id": "955", "title": "Mission: Impossible II", "year": 2000, "duration_min": 123, "rating": 5.9, "genres": "Adventure, Action, Thriller", "genres_pipe": "|Adventure|Action|Thriller|", "keywords": "terror, spain, cia, helicopter, secret identity, skyscraper, undercover, island, ex-lover, secret mission, dying and death, secret agent, computer, duel, lethal virus", "tags_pipe": "|terror|spain|cia|helicopter|secret identity|skyscraper|undercover|island|ex-lover|secret mission|dying and death|secret agent|computer|duel|lethal virus|", "overview": "With computer genius Luther Stickell at his side and a beautiful thief on his mind, agent Ethan Hunt races across Australia and Spain to stop a former IMF agent from unleashing a genetically engineered biological weapon called Chimera. This mission, should Hunt choose to accept it, plunges him into the center of an international crisis of terrifying magnitude.", "text_for_embedding": "Mission: Impossible II (2000). Genres: Adventure, Action, Thriller. With computer genius Luther Stickell at his side and a beautiful thief on his mind, agent Ethan Hunt races across Australia and Spain to stop a former IMF agent from unleashing a genetically engineered biological weapon called Chimera. This mission, should Hunt choose to accept it, plunges him into the center of an international crisis of terrifying magnitude.. Tags: terror, spain, cia, helicopter, secret identity, skyscraper, undercover, island, ex-lover, secret mission, dying and death, secret agent, computer, duel, lethal virus"} +{"id": "2133", "title": "The Perfect Storm", "year": 2000, "duration_min": 130, "rating": 6.2, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "u.s. air force, grocery, jamaican, meteorologist, rescue boat, marina, city hall, the flemish cap, male camaraderie, storm at sea", "tags_pipe": "|u.s. air force|grocery|jamaican|meteorologist|rescue boat|marina|city hall|the flemish cap|male camaraderie|storm at sea|", "overview": "In October 1991, a confluence of weather conditions combined to form a killer storm in the North Atlantic. Caught in the storm was the sword-fishing boat Andrea Gail. Magnificent foreshadowing and anticipation fill this true-life drama while minute details of the fishing boats, their gear and the weather are juxtaposed with the sea adventure.", "text_for_embedding": "The Perfect Storm (2000). Genres: Drama. In October 1991, a confluence of weather conditions combined to form a killer storm in the North Atlantic. Caught in the storm was the sword-fishing boat Andrea Gail. Magnificent foreshadowing and anticipation fill this true-life drama while minute details of the fishing boats, their gear and the weather are juxtaposed with the sea adventure.. Tags: u.s. air force, grocery, jamaican, meteorologist, rescue boat, marina, city hall, the flemish cap, male camaraderie, storm at sea"} +{"id": "1979", "title": "Fantastic 4: Rise of the Silver Surfer", "year": 2007, "duration_min": 92, "rating": 5.4, "genres": "Adventure, Fantasy, Action, Thriller", "genres_pipe": "|Adventure|Fantasy|Action|Thriller|", "keywords": "fire, helicopter, surfboard, mask, satellite, airplane, transformation, forest, resurrection, marvel comic, sequel, superhero, based on comic book, outer space, wedding", "tags_pipe": "|fire|helicopter|surfboard|mask|satellite|airplane|transformation|forest|resurrection|marvel comic|sequel|superhero|based on comic book|outer space|wedding|", "overview": "The Fantastic Four return to the big screen as a new and all powerful enemy threatens the Earth. The seemingly unstoppable 'Silver Surfer', but all is not what it seems and there are old and new enemies that pose a greater threat than the intrepid superheroes realize.", "text_for_embedding": "Fantastic 4: Rise of the Silver Surfer (2007). Genres: Adventure, Fantasy, Action, Thriller. The Fantastic Four return to the big screen as a new and all powerful enemy threatens the Earth. The seemingly unstoppable 'Silver Surfer', but all is not what it seems and there are old and new enemies that pose a greater threat than the intrepid superheroes realize.. Tags: fire, helicopter, surfboard, mask, satellite, airplane, transformation, forest, resurrection, marvel comic, sequel, superhero, based on comic book, outer space, wedding"} +{"id": "87827", "title": "Life of Pi", "year": 2012, "duration_min": 127, "rating": 7.2, "genres": "Adventure, Drama, Action", "genres_pipe": "|Adventure|Drama|Action|", "keywords": "ocean, shipwreck, hindu, tiger, faith, zookeeper, teenage boy, cargo ship, lifeboat, injured animal", "tags_pipe": "|ocean|shipwreck|hindu|tiger|faith|zookeeper|teenage boy|cargo ship|lifeboat|injured animal|", "overview": "The story of an Indian boy named Pi, a zookeeper's son who finds himself in the company of a hyena, zebra, orangutan, and a Bengal tiger after a shipwreck sets them adrift in the Pacific Ocean.", "text_for_embedding": "Life of Pi (2012). Genres: Adventure, Drama, Action. The story of an Indian boy named Pi, a zookeeper's son who finds himself in the company of a hyena, zebra, orangutan, and a Bengal tiger after a shipwreck sets them adrift in the Pacific Ocean.. Tags: ocean, shipwreck, hindu, tiger, faith, zookeeper, teenage boy, cargo ship, lifeboat, injured animal"} +{"id": "1250", "title": "Ghost Rider", "year": 2007, "duration_min": 114, "rating": 5.2, "genres": "Thriller, Action, Fantasy, Horror", "genres_pipe": "|Thriller|Action|Fantasy|Horror|", "keywords": "mephisto, religion and supernatural, dying and death, devil's son, ghost world, stunts, flame, based on comic book", "tags_pipe": "|mephisto|religion and supernatural|dying and death|devil's son|ghost world|stunts|flame|based on comic book|", "overview": "In order to save his dying father, young stunt cyclist, Johnny Blaze sells his soul to Mephistopheles and sadly parts from the pure-hearted, Roxanne Simpson, the love of his life. Years later, Johnny's path crosses again with Roxanne, now a go-getting reporter, and also with Mephistopheles, who offers to release Johnny's soul if Johnny becomes the fabled, fiery 'Ghost Rider'.", "text_for_embedding": "Ghost Rider (2007). Genres: Thriller, Action, Fantasy, Horror. In order to save his dying father, young stunt cyclist, Johnny Blaze sells his soul to Mephistopheles and sadly parts from the pure-hearted, Roxanne Simpson, the love of his life. Years later, Johnny's path crosses again with Roxanne, now a go-getting reporter, and also with Mephistopheles, who offers to release Johnny's soul if Johnny becomes the fabled, fiery 'Ghost Rider'.. Tags: mephisto, religion and supernatural, dying and death, devil's son, ghost world, stunts, flame, based on comic book"} +{"id": "324668", "title": "Jason Bourne", "year": 2016, "duration_min": 123, "rating": 5.9, "genres": "Action, Thriller", "genres_pipe": "|Action|Thriller|", "keywords": "assassin, amnesia, flashback", "tags_pipe": "|assassin|amnesia|flashback|", "overview": "The most dangerous former operative of the CIA is drawn out of hiding to uncover hidden truths about his past.", "text_for_embedding": "Jason Bourne (2016). Genres: Action, Thriller. The most dangerous former operative of the CIA is drawn out of hiding to uncover hidden truths about his past.. Tags: assassin, amnesia, flashback"} +{"id": "9471", "title": "Charlie's Angels: Full Throttle", "year": 2003, "duration_min": 106, "rating": 5.2, "genres": "Action, Adventure, Comedy", "genres_pipe": "|Action|Adventure|Comedy|", "keywords": "robbery, secret identity, secret agent", "tags_pipe": "|robbery|secret identity|secret agent|", "overview": "The Angels are charged with finding a pair of missing rings that are encoded with the personal information of members of the Witness Protection Program. As informants are killed, the ladies target a rogue agent who might be responsible.", "text_for_embedding": "Charlie's Angels: Full Throttle (2003). Genres: Action, Adventure, Comedy. The Angels are charged with finding a pair of missing rings that are encoded with the personal information of members of the Witness Protection Program. As informants are killed, the ladies target a rogue agent who might be responsible.. Tags: robbery, secret identity, secret agent"} +{"id": "70981", "title": "Prometheus", "year": 2012, "duration_min": 124, "rating": 6.3, "genres": "Science Fiction, Adventure, Mystery", "genres_pipe": "|Science Fiction|Adventure|Mystery|", "keywords": "android, dystopia, alien, spin off, creation, emergency surgery, aftercreditsstinger, stasis, archeological dig, god complex, cave drawing, genetic mutation, origins of life", "tags_pipe": "|android|dystopia|alien|spin off|creation|emergency surgery|aftercreditsstinger|stasis|archeological dig|god complex|cave drawing|genetic mutation|origins of life|", "overview": "A team of explorers discover a clue to the origins of mankind on Earth, leading them on a journey to the darkest corners of the universe. There, they must fight a terrifying battle to save the future of the human race.", "text_for_embedding": "Prometheus (2012). Genres: Science Fiction, Adventure, Mystery. A team of explorers discover a clue to the origins of mankind on Earth, leading them on a journey to the darkest corners of the universe. There, they must fight a terrifying battle to save the future of the human race.. Tags: android, dystopia, alien, spin off, creation, emergency surgery, aftercreditsstinger, stasis, archeological dig, god complex, cave drawing, genetic mutation, origins of life"} +{"id": "10996", "title": "Stuart Little 2", "year": 2002, "duration_min": 78, "rating": 5.4, "genres": "Family, Adventure, Animation, Comedy", "genres_pipe": "|Family|Adventure|Animation|Comedy|", "keywords": "mouse, falcon, bird, friendship, family", "tags_pipe": "|mouse|falcon|bird|friendship|family|", "overview": "Stuart, an adorable white mouse, still lives happily with his adoptive family, the Littles, on the east side of Manhattan's Central Park. More crazy mouse adventures are in store as Stuart, his human brother, George, and their mischievous cat, Snowbell, set out to rescue a friend.", "text_for_embedding": "Stuart Little 2 (2002). Genres: Family, Adventure, Animation, Comedy. Stuart, an adorable white mouse, still lives happily with his adoptive family, the Littles, on the east side of Manhattan's Central Park. More crazy mouse adventures are in store as Stuart, his human brother, George, and their mischievous cat, Snowbell, set out to rescue a friend.. Tags: mouse, falcon, bird, friendship, family"} +{"id": "68724", "title": "Elysium", "year": 2013, "duration_min": 109, "rating": 6.4, "genres": "Science Fiction, Action, Drama, Thriller", "genres_pipe": "|Science Fiction|Action|Drama|Thriller|", "keywords": "dystopia, space station, class conflict", "tags_pipe": "|dystopia|space station|class conflict|", "overview": "In the year 2159, two classes of people exist: the very wealthy who live on a pristine man-made space station called Elysium, and the rest, who live on an overpopulated, ruined Earth. Secretary Rhodes (Jodie Foster), a hard line government official, will stop at nothing to enforce anti-immigration laws and preserve the luxurious lifestyle of the citizens of Elysium. That doesn’t stop the people of Earth from trying to get in, by any means they can. When unlucky Max (Matt Damon) is backed into a corner, he agrees to take on a daunting mission that, if successful, will not only save his life, but could bring equality to these polarized worlds.", "text_for_embedding": "Elysium (2013). Genres: Science Fiction, Action, Drama, Thriller. In the year 2159, two classes of people exist: the very wealthy who live on a pristine man-made space station called Elysium, and the rest, who live on an overpopulated, ruined Earth. Secretary Rhodes (Jodie Foster), a hard line government official, will stop at nothing to enforce anti-immigration laws and preserve the luxurious lifestyle of the citizens of Elysium. That doesn’t stop the people of Earth from trying to get in, by any means they can. When unlucky Max (Matt Damon) is backed into a corner, he agrees to take on a daunting mission that, if successful, will not only save his life, but could bring equality to these polarized worlds.. Tags: dystopia, space station, class conflict"} +{"id": "2789", "title": "The Chronicles of Riddick", "year": 2004, "duration_min": 119, "rating": 6.3, "genres": "Action, Science Fiction", "genres_pipe": "|Action|Science Fiction|", "keywords": "prison, dystopia, matter of life and death, outer space, intergalactic travel", "tags_pipe": "|prison|dystopia|matter of life and death|outer space|intergalactic travel|", "overview": "After years of outrunning ruthless bounty hunters, escaped convict Riddick suddenly finds himself caught between opposing forces in a fight for the future of the human race. Now, waging incredible battles on fantastic and deadly worlds, this lone, reluctant hero will emerge as humanity's champion - and the last hope for a universe on the edge of annihilation.", "text_for_embedding": "The Chronicles of Riddick (2004). Genres: Action, Science Fiction. After years of outrunning ruthless bounty hunters, escaped convict Riddick suddenly finds himself caught between opposing forces in a fight for the future of the human race. Now, waging incredible battles on fantastic and deadly worlds, this lone, reluctant hero will emerge as humanity's champion - and the last hope for a universe on the edge of annihilation.. Tags: prison, dystopia, matter of life and death, outer space, intergalactic travel"} +{"id": "97020", "title": "RoboCop", "year": 2014, "duration_min": 102, "rating": 5.7, "genres": "Action, Science Fiction", "genres_pipe": "|Action|Science Fiction|", "keywords": "cyborg, future, dystopia, police, remake, violence, detroit", "tags_pipe": "|cyborg|future|dystopia|police|remake|violence|detroit|", "overview": "In RoboCop, the year is 2028 and multinational conglomerate OmniCorp is at the center of robot technology. Overseas, their drones have been used by the military for years, but have been forbidden for law enforcement in America. Now OmniCorp wants to bring their controversial technology to the home front, and they see a golden opportunity to do it. When Alex Murphy – a loving husband, father and good cop doing his best to stem the tide of crime and corruption in Detroit – is critically injured, OmniCorp sees their chance to build a part-man, part-robot police officer. OmniCorp envisions a RoboCop in every city and even more billions for their shareholders, but they never counted on one thing: there is still a man inside the machine.", "text_for_embedding": "RoboCop (2014). Genres: Action, Science Fiction. In RoboCop, the year is 2028 and multinational conglomerate OmniCorp is at the center of robot technology. Overseas, their drones have been used by the military for years, but have been forbidden for law enforcement in America. Now OmniCorp wants to bring their controversial technology to the home front, and they see a golden opportunity to do it. When Alex Murphy – a loving husband, father and good cop doing his best to stem the tide of crime and corruption in Detroit – is critically injured, OmniCorp sees their chance to build a part-man, part-robot police officer. OmniCorp envisions a RoboCop in every city and even more billions for their shareholders, but they never counted on one thing: there is still a man inside the machine.. Tags: cyborg, future, dystopia, police, remake, violence, detroit"} +{"id": "7459", "title": "Speed Racer", "year": 2008, "duration_min": 135, "rating": 5.7, "genres": "Action, Family, Science Fiction", "genres_pipe": "|Action|Family|Science Fiction|", "keywords": "car race, loss of brother, chimp, family, duringcreditsstinger, woman director", "tags_pipe": "|car race|loss of brother|chimp|family|duringcreditsstinger|woman director|", "overview": "Speed Racer is the tale of a young and brilliant racing driver. When corruption in the racing leagues costs his brother his life, he must team up with the police and the mysterious Racer X to bring an end to the corruption and criminal activities. Inspired by the cartoon series.", "text_for_embedding": "Speed Racer (2008). Genres: Action, Family, Science Fiction. Speed Racer is the tale of a young and brilliant racing driver. When corruption in the racing leagues costs his brother his life, he must team up with the police and the mysterious Racer X to bring an end to the corruption and criminal activities. Inspired by the cartoon series.. Tags: car race, loss of brother, chimp, family, duringcreditsstinger, woman director"} +{"id": "42888", "title": "How Do You Know", "year": 2010, "duration_min": 121, "rating": 4.9, "genres": "Comedy, Drama, Romance", "genres_pipe": "|Comedy|Drama|Romance|", "keywords": "love triangle, baseball, athlete, aftercreditsstinger", "tags_pipe": "|love triangle|baseball|athlete|aftercreditsstinger|", "overview": "After being cut from the USA softball team and feeling a bit past her prime, Lisa finds herself evaluating her life and in the middle of a love triangle, as a corporate guy in crisis competes with her current, baseball-playing beau.", "text_for_embedding": "How Do You Know (2010). Genres: Comedy, Drama, Romance. After being cut from the USA softball team and feeling a bit past her prime, Lisa finds herself evaluating her life and in the middle of a love triangle, as a corporate guy in crisis competes with her current, baseball-playing beau.. Tags: love triangle, baseball, athlete, aftercreditsstinger"} +{"id": "37834", "title": "Knight and Day", "year": 2010, "duration_min": 109, "rating": 5.9, "genres": "Action, Comedy", "genres_pipe": "|Action|Comedy|", "keywords": "spy, airport, gas station, garage, pilot, chase, secret agent, rope, exploding building, car chase, police car, boy genius, duringcreditsstinger", "tags_pipe": "|spy|airport|gas station|garage|pilot|chase|secret agent|rope|exploding building|car chase|police car|boy genius|duringcreditsstinger|", "overview": "A fugitive couple goes on a glamorous and sometimes deadly adventure where nothing and no one – even themselves – are what they seem. Amid shifting alliances and unexpected betrayals, they race across the globe, with their survival ultimately hinging on the battle of truth vs. trust.", "text_for_embedding": "Knight and Day (2010). Genres: Action, Comedy. A fugitive couple goes on a glamorous and sometimes deadly adventure where nothing and no one – even themselves – are what they seem. Amid shifting alliances and unexpected betrayals, they race across the globe, with their survival ultimately hinging on the battle of truth vs. trust.. Tags: spy, airport, gas station, garage, pilot, chase, secret agent, rope, exploding building, car chase, police car, boy genius, duringcreditsstinger"} +{"id": "75612", "title": "Oblivion", "year": 2013, "duration_min": 124, "rating": 6.4, "genres": "Action, Science Fiction, Adventure, Mystery", "genres_pipe": "|Action|Science Fiction|Adventure|Mystery|", "keywords": "spacecraft, dystopia, space, drone, imax, human vs alien", "tags_pipe": "|spacecraft|dystopia|space|drone|imax|human vs alien|", "overview": "Jack Harper is one of the last few drone repairmen stationed on Earth. Part of a massive operation to extract vital resources after decades of war with a terrifying threat known as the Scavs, Jack’s mission is nearly complete. His existence is brought crashing down when he rescues a beautiful stranger from a downed spacecraft. Her arrival triggers a chain of events that forces him to question everything he knows and puts the fate of humanity in his hands.", "text_for_embedding": "Oblivion (2013). Genres: Action, Science Fiction, Adventure, Mystery. Jack Harper is one of the last few drone repairmen stationed on Earth. Part of a massive operation to extract vital resources after decades of war with a terrifying threat known as the Scavs, Jack’s mission is nearly complete. His existence is brought crashing down when he rescues a beautiful stranger from a downed spacecraft. Her arrival triggers a chain of events that forces him to question everything he knows and puts the fate of humanity in his hands.. Tags: spacecraft, dystopia, space, drone, imax, human vs alien"} +{"id": "1895", "title": "Star Wars: Episode III - Revenge of the Sith", "year": 2005, "duration_min": 140, "rating": 7.1, "genres": "Science Fiction, Adventure, Action", "genres_pipe": "|Science Fiction|Adventure|Action|", "keywords": "showdown, death star, vision, cult figure, hatred, dream sequence, expectant mother, space opera, chancel, childbirth, galactic war", "tags_pipe": "|showdown|death star|vision|cult figure|hatred|dream sequence|expectant mother|space opera|chancel|childbirth|galactic war|", "overview": "Years after the onset of the Clone Wars, the noble Jedi Knights lead a massive clone army into a galaxy-wide battle against the Separatists. When the sinister Sith unveil a thousand-year-old plot to rule the galaxy, the Republic crumbles and from its ashes rises the evil Galactic Empire. Jedi hero Anakin Skywalker is seduced by the dark side of the Force to become the Emperor's new apprentice – Darth Vader. The Jedi are decimated, as Obi-Wan Kenobi and Jedi Master Yoda are forced into hiding. The only hope for the galaxy are Anakin's own offspring – the twin children born in secrecy who will grow up to become heroes.", "text_for_embedding": "Star Wars: Episode III - Revenge of the Sith (2005). Genres: Science Fiction, Adventure, Action. Years after the onset of the Clone Wars, the noble Jedi Knights lead a massive clone army into a galaxy-wide battle against the Separatists. When the sinister Sith unveil a thousand-year-old plot to rule the galaxy, the Republic crumbles and from its ashes rises the evil Galactic Empire. Jedi hero Anakin Skywalker is seduced by the dark side of the Force to become the Emperor's new apprentice – Darth Vader. The Jedi are decimated, as Obi-Wan Kenobi and Jedi Master Yoda are forced into hiding. The only hope for the galaxy are Anakin's own offspring – the twin children born in secrecy who will grow up to become heroes.. Tags: showdown, death star, vision, cult figure, hatred, dream sequence, expectant mother, space opera, chancel, childbirth, galactic war"} +{"id": "1894", "title": "Star Wars: Episode II - Attack of the Clones", "year": 2002, "duration_min": 142, "rating": 6.4, "genres": "Adventure, Action, Science Fiction", "genres_pipe": "|Adventure|Action|Science Fiction|", "keywords": "senate, investigation, army, death star, jedi, cult figure, wedding, violence, kendo, laser gun, space opera, spaceport, teenage rebellion, good becoming evil, alien race", "tags_pipe": "|senate|investigation|army|death star|jedi|cult figure|wedding|violence|kendo|laser gun|space opera|spaceport|teenage rebellion|good becoming evil|alien race|", "overview": "Ten years after the invasion of Naboo, the galaxy is on the brink of civil war. Under the leadership of a renegade Jedi named Count Dooku, thousands of solar systems threaten to break away from the Galactic Republic. When an assassination attempt is made on Senator Padmé Amidala, the former Queen of Naboo, twenty-year-old Jedi apprentice Anakin Skywalker is assigned to protect her. In the course of his mission, Anakin discovers his love for Padmé as well as his own darker side. Soon, Anakin, Padmé, and Obi-Wan Kenobi are drawn into the heart of the Separatist movement and the beginning of the Clone Wars.", "text_for_embedding": "Star Wars: Episode II - Attack of the Clones (2002). Genres: Adventure, Action, Science Fiction. Ten years after the invasion of Naboo, the galaxy is on the brink of civil war. Under the leadership of a renegade Jedi named Count Dooku, thousands of solar systems threaten to break away from the Galactic Republic. When an assassination attempt is made on Senator Padmé Amidala, the former Queen of Naboo, twenty-year-old Jedi apprentice Anakin Skywalker is assigned to protect her. In the course of his mission, Anakin discovers his love for Padmé as well as his own darker side. Soon, Anakin, Padmé, and Obi-Wan Kenobi are drawn into the heart of the Separatist movement and the beginning of the Clone Wars.. Tags: senate, investigation, army, death star, jedi, cult figure, wedding, violence, kendo, laser gun, space opera, spaceport, teenage rebellion, good becoming evil, alien race"} +{"id": "585", "title": "Monsters, Inc.", "year": 2001, "duration_min": 92, "rating": 7.5, "genres": "Animation, Comedy, Family", "genres_pipe": "|Animation|Comedy|Family|", "keywords": "monster, infant, energy supply, company, rivalry, hijinks, best friend, scream, conveyor belt, energy company, friend", "tags_pipe": "|monster|infant|energy supply|company|rivalry|hijinks|best friend|scream|conveyor belt|energy company|friend|", "overview": "James Sullivan and Mike Wazowski are monsters, they earn their living scaring children and are the best in the business... even though they're more afraid of the children than they are of them. When a child accidentally enters their world, James and Mike suddenly find that kids are not to be afraid of and they uncover a conspiracy that could threaten all children across the world.", "text_for_embedding": "Monsters, Inc. (2001). Genres: Animation, Comedy, Family. James Sullivan and Mike Wazowski are monsters, they earn their living scaring children and are the best in the business... even though they're more afraid of the children than they are of them. When a child accidentally enters their world, James and Mike suddenly find that kids are not to be afraid of and they uncover a conspiracy that could threaten all children across the world.. Tags: monster, infant, energy supply, company, rivalry, hijinks, best friend, scream, conveyor belt, energy company, friend"} +{"id": "76170", "title": "The Wolverine", "year": 2013, "duration_min": 126, "rating": 6.3, "genres": "Action, Science Fiction, Adventure, Fantasy", "genres_pipe": "|Action|Science Fiction|Adventure|Fantasy|", "keywords": "japan, samurai, mutant, world war i, marvel comic, superhero, based on comic book, superhuman, duringcreditsstinger", "tags_pipe": "|japan|samurai|mutant|world war i|marvel comic|superhero|based on comic book|superhuman|duringcreditsstinger|", "overview": "Wolverine faces his ultimate nemesis - and tests of his physical, emotional, and mortal limits - in a life-changing voyage to modern-day Japan.", "text_for_embedding": "The Wolverine (2013). Genres: Action, Science Fiction, Adventure, Fantasy. Wolverine faces his ultimate nemesis - and tests of his physical, emotional, and mortal limits - in a life-changing voyage to modern-day Japan.. Tags: japan, samurai, mutant, world war i, marvel comic, superhero, based on comic book, superhuman, duringcreditsstinger"} +{"id": "1893", "title": "Star Wars: Episode I - The Phantom Menace", "year": 1999, "duration_min": 136, "rating": 6.3, "genres": "Adventure, Action, Science Fiction", "genres_pipe": "|Adventure|Action|Science Fiction|", "keywords": "prophecy, senate, queen, taskmaster, galaxy, apprentice, taxes, space opera", "tags_pipe": "|prophecy|senate|queen|taskmaster|galaxy|apprentice|taxes|space opera|", "overview": "Anakin Skywalker, a young slave strong with the Force, is discovered on Tatooine. Meanwhile, the evil Sith have returned, enacting their plot for revenge against the Jedi.", "text_for_embedding": "Star Wars: Episode I - The Phantom Menace (1999). Genres: Adventure, Action, Science Fiction. Anakin Skywalker, a young slave strong with the Force, is discovered on Tatooine. Meanwhile, the evil Sith have returned, enacting their plot for revenge against the Jedi.. Tags: prophecy, senate, queen, taskmaster, galaxy, apprentice, taxes, space opera"} +{"id": "49519", "title": "The Croods", "year": 2013, "duration_min": 98, "rating": 6.8, "genres": "Adventure, Animation, Comedy, Family, Fantasy", "genres_pipe": "|Adventure|Animation|Comedy|Family|Fantasy|", "keywords": "stone age, daughter, father, prehistoric, ancient world, father daughter relationship, family, cavemen, aftercreditsstinger, duringcreditsstinger", "tags_pipe": "|stone age|daughter|father|prehistoric|ancient world|father daughter relationship|family|cavemen|aftercreditsstinger|duringcreditsstinger|", "overview": "The Croods is a prehistoric comedy adventure that follows the world's first family as they embark on a journey of a lifetime when the cave that has always shielded them from danger is destroyed. Traveling across a spectacular landscape, the Croods discover an incredible new world filled with fantastic creatures -- and their outlook is changed forever.", "text_for_embedding": "The Croods (2013). Genres: Adventure, Animation, Comedy, Family, Fantasy. The Croods is a prehistoric comedy adventure that follows the world's first family as they embark on a journey of a lifetime when the cave that has always shielded them from danger is destroyed. Traveling across a spectacular landscape, the Croods discover an incredible new world filled with fantastic creatures -- and their outlook is changed forever.. Tags: stone age, daughter, father, prehistoric, ancient world, father daughter relationship, family, cavemen, aftercreditsstinger, duringcreditsstinger"} +{"id": "2395", "title": "Asterix at the Olympic Games", "year": 2008, "duration_min": 116, "rating": 5.0, "genres": "Fantasy, Adventure, Comedy, Family", "genres_pipe": "|Fantasy|Adventure|Comedy|Family|", "keywords": "competition, greece, colosseum, olympic games, emperor, magic, horse, roman, wild boar, governance, galier", "tags_pipe": "|competition|greece|colosseum|olympic games|emperor|magic|horse|roman|wild boar|governance|galier|", "overview": "Astérix and Obélix have to win the Olympic Games in order to help their friend Alafolix marry Princess Irina (portrayed by supermodel Vanessa Hessler). Brutus (Benoît Poelvoorde) uses every trick in the book to have his own team win the game, and get rid of his father Julius Caesar (Alain Delon) in the process.", "text_for_embedding": "Asterix at the Olympic Games (2008). Genres: Fantasy, Adventure, Comedy, Family. Astérix and Obélix have to win the Olympic Games in order to help their friend Alafolix marry Princess Irina (portrayed by supermodel Vanessa Hessler). Brutus (Benoît Poelvoorde) uses every trick in the book to have his own team win the game, and get rid of his father Julius Caesar (Alain Delon) in the process.. Tags: competition, greece, colosseum, olympic games, emperor, magic, horse, roman, wild boar, governance, galier"} +{"id": "12100", "title": "Windtalkers", "year": 2002, "duration_min": 134, "rating": 5.8, "genres": "Drama, Action, History, War", "genres_pipe": "|Drama|Action|History|War|", "keywords": "japan, world war ii, radio transmission, marine corps, u.s. army, code, navajo, pacific war", "tags_pipe": "|japan|world war ii|radio transmission|marine corps|u.s. army|code|navajo|pacific war|", "overview": "Joe Enders is a gung-ho Marine assigned to protect a \"windtalker\" - one of several Navajo Indians who were used to relay messages during World War II because their spoken language was indecipherable to Japanese code breakers.", "text_for_embedding": "Windtalkers (2002). Genres: Drama, Action, History, War. Joe Enders is a gung-ho Marine assigned to protect a \"windtalker\" - one of several Navajo Indians who were used to relay messages during World War II because their spoken language was indecipherable to Japanese code breakers.. Tags: japan, world war ii, radio transmission, marine corps, u.s. army, code, navajo, pacific war"} +{"id": "290595", "title": "The Huntsman: Winter's War", "year": 2016, "duration_min": 114, "rating": 6.0, "genres": "Action, Adventure, Drama", "genres_pipe": "|Action|Adventure|Drama|", "keywords": "witch, magic, fairy tale, snow white, huntsman", "tags_pipe": "|witch|magic|fairy tale|snow white|huntsman|", "overview": "As two evil sisters prepare to conquer the land, two renegades—Eric the Huntsman, who aided Snow White in defeating Ravenna in Snowwhite and the Huntsman, and his forbidden lover, Sara—set out to stop them.", "text_for_embedding": "The Huntsman: Winter's War (2016). Genres: Action, Adventure, Drama. As two evil sisters prepare to conquer the land, two renegades—Eric the Huntsman, who aided Snow White in defeating Ravenna in Snowwhite and the Huntsman, and his forbidden lover, Sara—set out to stop them.. Tags: witch, magic, fairy tale, snow white, huntsman"} +{"id": "98566", "title": "Teenage Mutant Ninja Turtles", "year": 2014, "duration_min": 101, "rating": 5.8, "genres": "Science Fiction, Action, Adventure, Fantasy, Comedy", "genres_pipe": "|Science Fiction|Action|Adventure|Fantasy|Comedy|", "keywords": "martial arts, terrorist, hero, mutation, van, turtle, vigilante, superhero, based on comic book, ninja, new york city, sewer, reboot, science experiment, 3d", "tags_pipe": "|martial arts|terrorist|hero|mutation|van|turtle|vigilante|superhero|based on comic book|ninja|new york city|sewer|reboot|science experiment|3d|", "overview": "The city needs heroes. Darkness has settled over New York City as Shredder and his evil Foot Clan have an iron grip on everything from the police to the politicians. The future is grim until four unlikely outcast brothers rise from the sewers and discover their destiny as Teenage Mutant Ninja Turtles. The Turtles must work with fearless reporter April and her wise-cracking cameraman Vern Fenwick to save the city and unravel Shredder's diabolical plan.", "text_for_embedding": "Teenage Mutant Ninja Turtles (2014). Genres: Science Fiction, Action, Adventure, Fantasy, Comedy. The city needs heroes. Darkness has settled over New York City as Shredder and his evil Foot Clan have an iron grip on everything from the police to the politicians. The future is grim until four unlikely outcast brothers rise from the sewers and discover their destiny as Teenage Mutant Ninja Turtles. The Turtles must work with fearless reporter April and her wise-cracking cameraman Vern Fenwick to save the city and unravel Shredder's diabolical plan.. Tags: martial arts, terrorist, hero, mutation, van, turtle, vigilante, superhero, based on comic book, ninja, new york city, sewer, reboot, science experiment, 3d"} +{"id": "49047", "title": "Gravity", "year": 2013, "duration_min": 91, "rating": 7.3, "genres": "Science Fiction, Thriller, Drama", "genres_pipe": "|Science Fiction|Thriller|Drama|", "keywords": "space mission, loss, space, astronaut, trapped in space", "tags_pipe": "|space mission|loss|space|astronaut|trapped in space|", "overview": "Dr. Ryan Stone, a brilliant medical engineer on her first Shuttle mission, with veteran astronaut Matt Kowalsky in command of his last flight before retiring. But on a seemingly routine spacewalk, disaster strikes. The Shuttle is destroyed, leaving Stone and Kowalsky completely alone-tethered to nothing but each other and spiraling out into the blackness of space. The deafening silence tells them they have lost any link to Earth and any chance for rescue. As fear turns to panic, every gulp of air eats away at what little oxygen is left. But the only way home may be to go further out into the terrifying expanse of space.", "text_for_embedding": "Gravity (2013). Genres: Science Fiction, Thriller, Drama. Dr. Ryan Stone, a brilliant medical engineer on her first Shuttle mission, with veteran astronaut Matt Kowalsky in command of his last flight before retiring. But on a seemingly routine spacewalk, disaster strikes. The Shuttle is destroyed, leaving Stone and Kowalsky completely alone-tethered to nothing but each other and spiraling out into the blackness of space. The deafening silence tells them they have lost any link to Earth and any chance for rescue. As fear turns to panic, every gulp of air eats away at what little oxygen is left. But the only way home may be to go further out into the terrifying expanse of space.. Tags: space mission, loss, space, astronaut, trapped in space"} +{"id": "9619", "title": "Dante's Peak", "year": 1997, "duration_min": 108, "rating": 5.7, "genres": "Action, Adventure, Thriller", "genres_pipe": "|Action|Adventure|Thriller|", "keywords": "helicopter, small town, mayor, evacuation, motel, lava, volcano, cabin, lovers, natural disaster, partnership, volcanologist, rescue, explosion, scientist", "tags_pipe": "|helicopter|small town|mayor|evacuation|motel|lava|volcano|cabin|lovers|natural disaster|partnership|volcanologist|rescue|explosion|scientist|", "overview": "Volcanologist Harry Dalton comes to the sleepy town of Dante's Peak to investigate the recent rumblings of the dormant volcano the burg is named for. Before long, his worst fears are realized when a massive eruption hits, and immediately, Harry, the mayor and the townspeople find themselves fighting for their lives amid a catastrophic nightmare.", "text_for_embedding": "Dante's Peak (1997). Genres: Action, Adventure, Thriller. Volcanologist Harry Dalton comes to the sleepy town of Dante's Peak to investigate the recent rumblings of the dormant volcano the burg is named for. Before long, his worst fears are realized when a massive eruption hits, and immediately, Harry, the mayor and the townspeople find themselves fighting for their lives amid a catastrophic nightmare.. Tags: helicopter, small town, mayor, evacuation, motel, lava, volcano, cabin, lovers, natural disaster, partnership, volcanologist, rescue, explosion, scientist"} +{"id": "308531", "title": "Teenage Mutant Ninja Turtles: Out of the Shadows", "year": 2016, "duration_min": 112, "rating": 5.8, "genres": "Fantasy, Action, Adventure, Comedy", "genres_pipe": "|Fantasy|Action|Adventure|Comedy|", "keywords": "brother brother relationship, turtle, sequel, based on comic book, ninja, rat", "tags_pipe": "|brother brother relationship|turtle|sequel|based on comic book|ninja|rat|", "overview": "After supervillain Shredder escapes custody, he joins forces with mad scientist Baxter Stockman and two dimwitted henchmen, Bebop and Rocksteady, to unleash a diabolical plan to take over the world. As the Turtles prepare to take on Shredder and his new crew, they find themselves facing an even greater evil with similar intentions: the notorious Krang.", "text_for_embedding": "Teenage Mutant Ninja Turtles: Out of the Shadows (2016). Genres: Fantasy, Action, Adventure, Comedy. After supervillain Shredder escapes custody, he joins forces with mad scientist Baxter Stockman and two dimwitted henchmen, Bebop and Rocksteady, to unleash a diabolical plan to take over the world. As the Turtles prepare to take on Shredder and his new crew, they find themselves facing an even greater evil with similar intentions: the notorious Krang.. Tags: brother brother relationship, turtle, sequel, based on comic book, ninja, rat"} +{"id": "166424", "title": "Fantastic Four", "year": 2015, "duration_min": 100, "rating": 4.4, "genres": "Action, Adventure, Science Fiction", "genres_pipe": "|Action|Adventure|Science Fiction|", "keywords": "teleportation, transformation, telekinesis, portal, marvel comic, superhero, based on comic book, superhero team, fantastic four, body horror, invisible woman", "tags_pipe": "|teleportation|transformation|telekinesis|portal|marvel comic|superhero|based on comic book|superhero team|fantastic four|body horror|invisible woman|", "overview": "Four young outsiders teleport to a dangerous universe, which alters their physical form in shocking ways. Their lives irrevocably upended, the team must learn to harness their daunting new abilities and work together to save Earth from a former friend turned enemy.", "text_for_embedding": "Fantastic Four (2015). Genres: Action, Adventure, Science Fiction. Four young outsiders teleport to a dangerous universe, which alters their physical form in shocking ways. Their lives irrevocably upended, the team must learn to harness their daunting new abilities and work together to save Earth from a former friend turned enemy.. Tags: teleportation, transformation, telekinesis, portal, marvel comic, superhero, based on comic book, superhero team, fantastic four, body horror, invisible woman"} +{"id": "1593", "title": "Night at the Museum", "year": 2006, "duration_min": 108, "rating": 6.3, "genres": "Action, Adventure, Comedy, Family, Fantasy", "genres_pipe": "|Action|Adventure|Comedy|Family|Fantasy|", "keywords": "museum, skeleton, night shift, chaos, genghis khan, maya civilization, natural history, theodore roosevelt, dinosaur, based on children's book, magical object, security guard, duringcreditsstinger, inanimate objects coming to life", "tags_pipe": "|museum|skeleton|night shift|chaos|genghis khan|maya civilization|natural history|theodore roosevelt|dinosaur|based on children's book|magical object|security guard|duringcreditsstinger|inanimate objects coming to life|", "overview": "Chaos reigns at the natural history museum when night watchman Larry Daley accidentally stirs up an ancient curse, awakening Attila the Hun, an army of gladiators, a Tyrannosaurus rex and other exhibits. Larry tries desperately to keep the museum under control, but he's fighting a losing battle until President Teddy Roosevelt comes to the rescue.", "text_for_embedding": "Night at the Museum (2006). Genres: Action, Adventure, Comedy, Family, Fantasy. Chaos reigns at the natural history museum when night watchman Larry Daley accidentally stirs up an ancient curse, awakening Attila the Hun, an army of gladiators, a Tyrannosaurus rex and other exhibits. Larry tries desperately to keep the museum under control, but he's fighting a losing battle until President Teddy Roosevelt comes to the rescue.. Tags: museum, skeleton, night shift, chaos, genghis khan, maya civilization, natural history, theodore roosevelt, dinosaur, based on children's book, magical object, security guard, duringcreditsstinger, inanimate objects coming to life"} +{"id": "254128", "title": "San Andreas", "year": 2015, "duration_min": 114, "rating": 6.0, "genres": "Action, Drama, Thriller", "genres_pipe": "|Action|Drama|Thriller|", "keywords": "california, earthquake, catastrophe, disaster film, 3d, san andreas, san andreas california, rescue operation", "tags_pipe": "|california|earthquake|catastrophe|disaster film|3d|san andreas|san andreas california|rescue operation|", "overview": "In the aftermath of a massive earthquake in California, a rescue-chopper pilot makes a dangerous journey across the state in order to rescue his estranged daughter.", "text_for_embedding": "San Andreas (2015). Genres: Action, Drama, Thriller. In the aftermath of a massive earthquake in California, a rescue-chopper pilot makes a dangerous journey across the state in order to rescue his estranged daughter.. Tags: california, earthquake, catastrophe, disaster film, 3d, san andreas, san andreas california, rescue operation"} +{"id": "714", "title": "Tomorrow Never Dies", "year": 1997, "duration_min": 119, "rating": 6.0, "genres": "Adventure, Action, Thriller", "genres_pipe": "|Adventure|Action|Thriller|", "keywords": "london england, england, spy, china, news broadcast, intelligence, television, missile, manipulation of the media, secret intelligence service, special car, tv station, media tycoon, navy, motorcycle", "tags_pipe": "|london england|england|spy|china|news broadcast|intelligence|television|missile|manipulation of the media|secret intelligence service|special car|tv station|media tycoon|navy|motorcycle|", "overview": "A deranged media mogul is staging international incidents to pit the world's superpowers against each other. Now 007 must take on this evil mastermind in an adrenaline-charged battle to end his reign of terror and prevent global pandemonium.", "text_for_embedding": "Tomorrow Never Dies (1997). Genres: Adventure, Action, Thriller. A deranged media mogul is staging international incidents to pit the world's superpowers against each other. Now 007 must take on this evil mastermind in an adrenaline-charged battle to end his reign of terror and prevent global pandemonium.. Tags: london england, england, spy, china, news broadcast, intelligence, television, missile, manipulation of the media, secret intelligence service, special car, tv station, media tycoon, navy, motorcycle"} +{"id": "2024", "title": "The Patriot", "year": 2000, "duration_min": 165, "rating": 6.8, "genres": "Drama, History, War, Action", "genres_pipe": "|Drama|History|War|Action|", "keywords": "rebel, southern usa, loss of son, martial arts, general, loss of family, passion, insurgence, french, daughter, south carolina, british, based on true story, gore, mission", "tags_pipe": "|rebel|southern usa|loss of son|martial arts|general|loss of family|passion|insurgence|french|daughter|south carolina|british|based on true story|gore|mission|", "overview": "After proving himself on the field of battle in the French and Indian War, Benjamin Martin wants nothing more to do with such things, preferring the simple life of a farmer. But when his son Gabriel enlists in the army to defend their new nation, America, against the British, Benjamin reluctantly returns to his old life to protect his son.", "text_for_embedding": "The Patriot (2000). Genres: Drama, History, War, Action. After proving himself on the field of battle in the French and Indian War, Benjamin Martin wants nothing more to do with such things, preferring the simple life of a farmer. But when his son Gabriel enlists in the army to defend their new nation, America, against the British, Benjamin reluctantly returns to his old life to protect his son.. Tags: rebel, southern usa, loss of son, martial arts, general, loss of family, passion, insurgence, french, daughter, south carolina, british, based on true story, gore, mission"} +{"id": "163", "title": "Ocean's Twelve", "year": 2004, "duration_min": 125, "rating": 6.4, "genres": "Thriller, Crime", "genres_pipe": "|Thriller|Crime|", "keywords": "sequel, fabergé egg, dutch eastindian company, second, part, golden egg, goon", "tags_pipe": "|sequel|fabergé egg|dutch eastindian company|second|part|golden egg|goon|", "overview": "Danny Ocean reunites with his old flame and the rest of his merry band of thieves in carrying out three huge heists in Rome, Paris and Amsterdam – but a Europol agent is hot on their heels.", "text_for_embedding": "Ocean's Twelve (2004). Genres: Thriller, Crime. Danny Ocean reunites with his old flame and the rest of his merry band of thieves in carrying out three huge heists in Rome, Paris and Amsterdam – but a Europol agent is hot on their heels.. Tags: sequel, fabergé egg, dutch eastindian company, second, part, golden egg, goon"} +{"id": "787", "title": "Mr. & Mrs. Smith", "year": 2005, "duration_min": 120, "rating": 6.5, "genres": "Action, Comedy, Drama, Thriller", "genres_pipe": "|Action|Comedy|Drama|Thriller|", "keywords": "bomb, assassin, secret identity, secret, assault rifle, gun, married couple, hitman, decoy, marriage crisis, marriage, job, dysfunctional marriage, gunfight, bullet wound", "tags_pipe": "|bomb|assassin|secret identity|secret|assault rifle|gun|married couple|hitman|decoy|marriage crisis|marriage|job|dysfunctional marriage|gunfight|bullet wound|", "overview": "After five (or six) years of vanilla-wedded bliss, ordinary suburbanites John and Jane Smith are stuck in a huge rut. Unbeknownst to each other, they are both coolly lethal, highly-paid assassins working for rival organisations. When they discover they're each other's next target, their secret lives collide in a spicy, explosive mix of wicked comedy, pent-up passion, nonstop action and high-tech weaponry.", "text_for_embedding": "Mr. & Mrs. Smith (2005). Genres: Action, Comedy, Drama, Thriller. After five (or six) years of vanilla-wedded bliss, ordinary suburbanites John and Jane Smith are stuck in a huge rut. Unbeknownst to each other, they are both coolly lethal, highly-paid assassins working for rival organisations. When they discover they're each other's next target, their secret lives collide in a spicy, explosive mix of wicked comedy, pent-up passion, nonstop action and high-tech weaponry.. Tags: bomb, assassin, secret identity, secret, assault rifle, gun, married couple, hitman, decoy, marriage crisis, marriage, job, dysfunctional marriage, gunfight, bullet wound"} +{"id": "262500", "title": "Insurgent", "year": 2015, "duration_min": 119, "rating": 6.2, "genres": "Adventure, Science Fiction, Thriller", "genres_pipe": "|Adventure|Science Fiction|Thriller|", "keywords": "based on novel, revolution, dystopia, sequel, dystopic future, young adult, 3d, divergent", "tags_pipe": "|based on novel|revolution|dystopia|sequel|dystopic future|young adult|3d|divergent|", "overview": "Beatrice Prior must confront her inner demons and continue her fight against a powerful alliance which threatens to tear her society apart.", "text_for_embedding": "Insurgent (2015). Genres: Adventure, Science Fiction, Thriller. Beatrice Prior must confront her inner demons and continue her fight against a powerful alliance which threatens to tear her society apart.. Tags: based on novel, revolution, dystopia, sequel, dystopic future, young adult, 3d, divergent"} +{"id": "2567", "title": "The Aviator", "year": 2004, "duration_min": 170, "rating": 7.0, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "ladykiller, pilot, biography, womanizer, aviation, phobia, u.s. congress, flying boat, test flight", "tags_pipe": "|ladykiller|pilot|biography|womanizer|aviation|phobia|u.s. congress|flying boat|test flight|", "overview": "A biopic depicting the life of filmmaker and aviation pioneer Howard Hughes from 1927 to 1947, during which time he became a successful film producer and an aviation magnate, while simultaneously growing more unstable due to severe obsessive-compulsive disorder.", "text_for_embedding": "The Aviator (2004). Genres: Drama. A biopic depicting the life of filmmaker and aviation pioneer Howard Hughes from 1927 to 1947, during which time he became a successful film producer and an aviation magnate, while simultaneously growing more unstable due to severe obsessive-compulsive disorder.. Tags: ladykiller, pilot, biography, womanizer, aviation, phobia, u.s. congress, flying boat, test flight"} +{"id": "38745", "title": "Gulliver's Travels", "year": 2010, "duration_min": 85, "rating": 4.9, "genres": "Comedy", "genres_pipe": "|Comedy|", "keywords": "journalist, forbidden love, princess, royal court, 3d", "tags_pipe": "|journalist|forbidden love|princess|royal court|3d|", "overview": "Travel writer Lemuel Gulliver takes an assignment in Bermuda, but ends up on the island of Liliput, where he towers over its tiny citizens.", "text_for_embedding": "Gulliver's Travels (2010). Genres: Comedy. Travel writer Lemuel Gulliver takes an assignment in Bermuda, but ends up on the island of Liliput, where he towers over its tiny citizens.. Tags: journalist, forbidden love, princess, royal court, 3d"} +{"id": "40805", "title": "The Green Hornet", "year": 2011, "duration_min": 119, "rating": 5.5, "genres": "Action, Crime, Comedy", "genres_pipe": "|Action|Crime|Comedy|", "keywords": "bomb, martial arts, assassin, vandalism, nightclub, training, knife, party, playboy, superhero, revenge, trap, violence, kato, car chase", "tags_pipe": "|bomb|martial arts|assassin|vandalism|nightclub|training|knife|party|playboy|superhero|revenge|trap|violence|kato|car chase|", "overview": "Britt Reid (Seth Rogen), the heir to the largest newspaper fortune in Los Angeles, is a spoiled playboy who has been, thus far, happy to lead an aimless life. After his father (Tom Wilkinson) dies, Britt meets Kato (Jay Chou), a resourceful company employee. Realizing that they have the talent and resources to make something of their lives, Britt and Kato join forces as costumed crime-fighters to bring down the city's most-powerful criminal, Chudnofsky (Christoph Waltz).", "text_for_embedding": "The Green Hornet (2011). Genres: Action, Crime, Comedy. Britt Reid (Seth Rogen), the heir to the largest newspaper fortune in Los Angeles, is a spoiled playboy who has been, thus far, happy to lead an aimless life. After his father (Tom Wilkinson) dies, Britt meets Kato (Jay Chou), a resourceful company employee. Realizing that they have the talent and resources to make something of their lives, Britt and Kato join forces as costumed crime-fighters to bring down the city's most-powerful criminal, Chudnofsky (Christoph Waltz).. Tags: bomb, martial arts, assassin, vandalism, nightclub, training, knife, party, playboy, superhero, revenge, trap, violence, kato, car chase"} +{"id": "53182", "title": "300: Rise of an Empire", "year": 2014, "duration_min": 102, "rating": 6.1, "genres": "Action, War", "genres_pipe": "|Action|War|", "keywords": "based on graphic novel, ancient greece, duringcreditsstinger, sea battle, hand to hand combat, minions, naval warfare, 3d", "tags_pipe": "|based on graphic novel|ancient greece|duringcreditsstinger|sea battle|hand to hand combat|minions|naval warfare|3d|", "overview": "Based on Frank Miller's latest graphic novel Xerxes and told in the breathtaking visual style of the blockbuster \"300,\" this new chapter of the epic saga takes the action to a fresh battlefield--on the sea--as Greek general Themistokles attempts to unite all of Greece by leading the charge that will change the course of the war. \"300: Rise of an Empire\" pits Themistokles against the massive invading Persian forces led by mortal-turned-god Xerxes and Artemesia, the vengeful commander of the Persian navy.", "text_for_embedding": "300: Rise of an Empire (2014). Genres: Action, War. Based on Frank Miller's latest graphic novel Xerxes and told in the breathtaking visual style of the blockbuster \"300,\" this new chapter of the epic saga takes the action to a fresh battlefield--on the sea--as Greek general Themistokles attempts to unite all of Greece by leading the charge that will change the course of the war. \"300: Rise of an Empire\" pits Themistokles against the massive invading Persian forces led by mortal-turned-god Xerxes and Artemesia, the vengeful commander of the Persian navy.. Tags: based on graphic novel, ancient greece, duringcreditsstinger, sea battle, hand to hand combat, minions, naval warfare, 3d"} +{"id": "41513", "title": "The Smurfs", "year": 2011, "duration_min": 103, "rating": 5.5, "genres": "Animation, Family, Adventure, Comedy, Fantasy", "genres_pipe": "|Animation|Family|Adventure|Comedy|Fantasy|", "keywords": "moon, magic, based on comic book, animation, good vs evil, smurf, blue, vortex, mischief, cat and mouse, duringcreditsstinger", "tags_pipe": "|moon|magic|based on comic book|animation|good vs evil|smurf|blue|vortex|mischief|cat and mouse|duringcreditsstinger|", "overview": "When the evil wizard Gargamel chases the tiny blue Smurfs out of their village, they tumble from their magical world and into ours -- in fact, smack dab in the middle of Central Park. Just three apples high and stuck in the Big Apple, the Smurfs must find a way to get back to their village before Gargamel tracks them down.", "text_for_embedding": "The Smurfs (2011). Genres: Animation, Family, Adventure, Comedy, Fantasy. When the evil wizard Gargamel chases the tiny blue Smurfs out of their village, they tumble from their magical world and into ours -- in fact, smack dab in the middle of Central Park. Just three apples high and stuck in the Big Apple, the Smurfs must find a way to get back to their village before Gargamel tracks them down.. Tags: moon, magic, based on comic book, animation, good vs evil, smurf, blue, vortex, mischief, cat and mouse, duringcreditsstinger"} +{"id": "13700", "title": "Home on the Range", "year": 2004, "duration_min": 76, "rating": 5.7, "genres": "Animation, Family", "genres_pipe": "|Animation|Family|", "keywords": "farm, cow, animal", "tags_pipe": "|farm|cow|animal|", "overview": "When a greedy outlaw schemes to take possession of the \"Patch Of Heaven\" dairy farm, three determined cows, a karate-kicking stallion and a colorful corral of critters join forces to save their home. The stakes are sky-high as this unlikely animal alliance risk their hides and match wits with a mysterious band of bad guys.", "text_for_embedding": "Home on the Range (2004). Genres: Animation, Family. When a greedy outlaw schemes to take possession of the \"Patch Of Heaven\" dairy farm, three determined cows, a karate-kicking stallion and a colorful corral of critters join forces to save their home. The stakes are sky-high as this unlikely animal alliance risk their hides and match wits with a mysterious band of bad guys.. Tags: farm, cow, animal"} +{"id": "262504", "title": "Allegiant", "year": 2016, "duration_min": 121, "rating": 5.9, "genres": "Adventure, Science Fiction", "genres_pipe": "|Adventure|Science Fiction|", "keywords": "based on novel, revolution, dystopia, sequel, dystopic future, young adult, based on young adult novel", "tags_pipe": "|based on novel|revolution|dystopia|sequel|dystopic future|young adult|based on young adult novel|", "overview": "Beatrice Prior and Tobias Eaton venture into the world outside of the fence and are taken into protective custody by a mysterious agency known as the Bureau of Genetic Welfare.", "text_for_embedding": "Allegiant (2016). Genres: Adventure, Science Fiction. Beatrice Prior and Tobias Eaton venture into the world outside of the fence and are taken into protective custody by a mysterious agency known as the Bureau of Genetic Welfare.. Tags: based on novel, revolution, dystopia, sequel, dystopic future, young adult, based on young adult novel"} +{"id": "39254", "title": "Real Steel", "year": 2011, "duration_min": 127, "rating": 6.6, "genres": "Action, Science Fiction, Drama", "genres_pipe": "|Action|Science Fiction|Drama|", "keywords": "father son relationship, fight, sport, robot, prizefighting, father son reunion, robot fighting", "tags_pipe": "|father son relationship|fight|sport|robot|prizefighting|father son reunion|robot fighting|", "overview": "In the near-future, Charlie Kenton is a washed-up fighter who retired from the ring when robots took over the sport. After Charlie's robot is trashed, he reluctantly teams up with his estranged son Max to rebuild and train an unlikely contender.", "text_for_embedding": "Real Steel (2011). Genres: Action, Science Fiction, Drama. In the near-future, Charlie Kenton is a washed-up fighter who retired from the ring when robots took over the sport. After Charlie's robot is trashed, he reluctantly teams up with his estranged son Max to rebuild and train an unlikely contender.. Tags: father son relationship, fight, sport, robot, prizefighting, father son reunion, robot fighting"} +{"id": "77931", "title": "The Smurfs 2", "year": 2013, "duration_min": 105, "rating": 5.5, "genres": "Fantasy, Family, Comedy, Animation", "genres_pipe": "|Fantasy|Family|Comedy|Animation|", "keywords": "based on cartoon, animation, smurf", "tags_pipe": "|based on cartoon|animation|smurf|", "overview": "The evil wizard Gargamel creates a couple of mischievous Smurf-like creatures called the Naughties that he hopes will let him harness the all-powerful, magical Smurf-essence. But when he discovers that only a real Smurf can give him what he wants, and only a secret spell that Smurfette knows can turn the Naughties into real Smurfs, Gargamel kidnaps Smurfette and brings her to Paris, where he has been winning the adoration of millions as the world¹s greatest sorcerer. It's up to Papa, Clumsy, Grouchy, and Vanity to return to our world, reunite with their human friends Patrick and Grace Winslow, and rescue her! Will Smurfette, who has always felt different from the other Smurfs, find a new connection with the Naughties Vexy and Hackus or will the Smurfs convince her that their love for her is True Blue?", "text_for_embedding": "The Smurfs 2 (2013). Genres: Fantasy, Family, Comedy, Animation. The evil wizard Gargamel creates a couple of mischievous Smurf-like creatures called the Naughties that he hopes will let him harness the all-powerful, magical Smurf-essence. But when he discovers that only a real Smurf can give him what he wants, and only a secret spell that Smurfette knows can turn the Naughties into real Smurfs, Gargamel kidnaps Smurfette and brings her to Paris, where he has been winning the adoration of millions as the world¹s greatest sorcerer. It's up to Papa, Clumsy, Grouchy, and Vanity to return to our world, reunite with their human friends Patrick and Grace Winslow, and rescue her! Will Smurfette, who has always felt different from the other Smurfs, find a new connection with the Naughties Vexy and Hackus or will the Smurfs convince her that their love for her is True Blue?. Tags: based on cartoon, animation, smurf"} +{"id": "1639", "title": "Speed 2: Cruise Control", "year": 1997, "duration_min": 121, "rating": 4.1, "genres": "Action, Adventure, Thriller", "genres_pipe": "|Action|Adventure|Thriller|", "keywords": "boat, cruise, computer, disaster, diamond, collision course", "tags_pipe": "|boat|cruise|computer|disaster|diamond|collision course|", "overview": "Sandra Bullock and Jason Patric star as a young couple whose dream cruise turns to terror when a lunatic computer genius (Willem Dafoe) sets a new course for destruction.", "text_for_embedding": "Speed 2: Cruise Control (1997). Genres: Action, Adventure, Thriller. Sandra Bullock and Jason Patric star as a young couple whose dream cruise turns to terror when a lunatic computer genius (Willem Dafoe) sets a new course for destruction.. Tags: boat, cruise, computer, disaster, diamond, collision course"} +{"id": "80274", "title": "Ender's Game", "year": 2013, "duration_min": 114, "rating": 6.6, "genres": "Science Fiction, Action, Adventure", "genres_pipe": "|Science Fiction|Action|Adventure|", "keywords": "based on novel, intolerance, chosen one, child prodigy, futuristic, space, science fiction, alien invasion, military school, morality tale, based on young adult novel", "tags_pipe": "|based on novel|intolerance|chosen one|child prodigy|futuristic|space|science fiction|alien invasion|military school|morality tale|based on young adult novel|", "overview": "Based on the classic novel by Orson Scott Card, Ender's Game is the story of the Earth's most gifted children training to defend their homeplanet in the space wars of the future.", "text_for_embedding": "Ender's Game (2013). Genres: Science Fiction, Action, Adventure. Based on the classic novel by Orson Scott Card, Ender's Game is the story of the Earth's most gifted children training to defend their homeplanet in the space wars of the future.. Tags: based on novel, intolerance, chosen one, child prodigy, futuristic, space, science fiction, alien invasion, military school, morality tale, based on young adult novel"} +{"id": "1571", "title": "Live Free or Die Hard", "year": 2007, "duration_min": 128, "rating": 6.4, "genres": "Action, Thriller", "genres_pipe": "|Action|Thriller|", "keywords": "usa, washington d.c., helicopter, hostage, fbi, kidnapping, hacker, satellite, transport of prisoners, traffic jam, fistfight, ex-cop, sequel, suspense, shootout", "tags_pipe": "|usa|washington d.c.|helicopter|hostage|fbi|kidnapping|hacker|satellite|transport of prisoners|traffic jam|fistfight|ex-cop|sequel|suspense|shootout|", "overview": "John McClane is back and badder than ever, and this time he's working for Homeland Security. He calls on the services of a young hacker in his bid to stop a ring of Internet terrorists intent on taking control of America's computer infrastructure.", "text_for_embedding": "Live Free or Die Hard (2007). Genres: Action, Thriller. John McClane is back and badder than ever, and this time he's working for Homeland Security. He calls on the services of a young hacker in his bid to stop a ring of Internet terrorists intent on taking control of America's computer infrastructure.. Tags: usa, washington d.c., helicopter, hostage, fbi, kidnapping, hacker, satellite, transport of prisoners, traffic jam, fistfight, ex-cop, sequel, suspense, shootout"} +{"id": "120", "title": "The Lord of the Rings: The Fellowship of the Ring", "year": 2001, "duration_min": 178, "rating": 8.0, "genres": "Adventure, Fantasy, Action", "genres_pipe": "|Adventure|Fantasy|Action|", "keywords": "elves, dwarves, orcs, middle-earth (tolkien), hobbit, based on novel, mountains, fireworks, castle, volcano, password, death of a friend, uncle, mirror, wizard", "tags_pipe": "|elves|dwarves|orcs|middle-earth (tolkien)|hobbit|based on novel|mountains|fireworks|castle|volcano|password|death of a friend|uncle|mirror|wizard|", "overview": "Young hobbit Frodo Baggins, after inheriting a mysterious ring from his uncle Bilbo, must leave his home in order to keep it from falling into the hands of its evil creator. Along the way, a fellowship is formed to protect the ringbearer and make sure that the ring arrives at its final destination: Mt. Doom, the only place where it can be destroyed.", "text_for_embedding": "The Lord of the Rings: The Fellowship of the Ring (2001). Genres: Adventure, Fantasy, Action. Young hobbit Frodo Baggins, after inheriting a mysterious ring from his uncle Bilbo, must leave his home in order to keep it from falling into the hands of its evil creator. Along the way, a fellowship is formed to protect the ringbearer and make sure that the ring arrives at its final destination: Mt. Doom, the only place where it can be destroyed.. Tags: elves, dwarves, orcs, middle-earth (tolkien), hobbit, based on novel, mountains, fireworks, castle, volcano, password, death of a friend, uncle, mirror, wizard"} +{"id": "10204", "title": "Around the World in 80 Days", "year": 2004, "duration_min": 120, "rating": 5.7, "genres": "Action, Adventure, Comedy", "genres_pipe": "|Action|Adventure|Comedy|", "keywords": "paris, london england, new york, jules verne, san francisco, istanbul, hot air balloon, journey round the world", "tags_pipe": "|paris|london england|new york|jules verne|san francisco|istanbul|hot air balloon|journey round the world|", "overview": "A bet pits a British inventor, a Chinese thief and a French artist on a worldwide adventure that they can circle the globe in 80 days.", "text_for_embedding": "Around the World in 80 Days (2004). Genres: Action, Adventure, Comedy. A bet pits a British inventor, a Chinese thief and a French artist on a worldwide adventure that they can circle the globe in 80 days.. Tags: paris, london england, new york, jules verne, san francisco, istanbul, hot air balloon, journey round the world"} +{"id": "8489", "title": "Ali", "year": 2001, "duration_min": 157, "rating": 6.7, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "usa, transporter, boxer, biography, muhammad", "tags_pipe": "|usa|transporter|boxer|biography|muhammad|", "overview": "In 1964, a brash new pro boxer, fresh from his olympic gold medal victory, explodes on to the scene; Cassius Clay. Bold and outspoken, he cuts an entirely new image for African Americans in sport with his proud public self confidence and his unapologetic belief that he is the greatest boxer of all time. Yet at the top of his game, both Ali's personal and professional lives face the ultimate test.", "text_for_embedding": "Ali (2001). Genres: Drama. In 1964, a brash new pro boxer, fresh from his olympic gold medal victory, explodes on to the scene; Cassius Clay. Bold and outspoken, he cuts an entirely new image for African Americans in sport with his proud public self confidence and his unapologetic belief that he is the greatest boxer of all time. Yet at the top of his game, both Ali's personal and professional lives face the ultimate test.. Tags: usa, transporter, boxer, biography, muhammad"} +{"id": "10588", "title": "The Cat in the Hat", "year": 2003, "duration_min": 82, "rating": 4.9, "genres": "Comedy, Fantasy, Family", "genres_pipe": "|Comedy|Fantasy|Family|", "keywords": "cat, brother sister relationship, boredom, chaos, step father, based on children's book", "tags_pipe": "|cat|brother sister relationship|boredom|chaos|step father|based on children's book|", "overview": "Conrad and Sally Walden are home alone with their pet fish. It is raining outside, and there is nothing to do. Until The Cat in the Hat walks in the front door. He introduces them to their imagination, and at first it's all fun and games, until things get out of hand, and The Cat must go, go, go, before their parents get back.", "text_for_embedding": "The Cat in the Hat (2003). Genres: Comedy, Fantasy, Family. Conrad and Sally Walden are home alone with their pet fish. It is raining outside, and there is nothing to do. Until The Cat in the Hat walks in the front door. He introduces them to their imagination, and at first it's all fun and games, until things get out of hand, and The Cat must go, go, go, before their parents get back.. Tags: cat, brother sister relationship, boredom, chaos, step father, based on children's book"} +{"id": "2048", "title": "I, Robot", "year": 2004, "duration_min": 115, "rating": 6.7, "genres": "Action, Science Fiction", "genres_pipe": "|Action|Science Fiction|", "keywords": "suicide, artificial intelligence, man vs machine, chicago, based on novel, hero, future, law, dystopia, police, murder, robot, 3d, humanoid robot", "tags_pipe": "|suicide|artificial intelligence|man vs machine|chicago|based on novel|hero|future|law|dystopia|police|murder|robot|3d|humanoid robot|", "overview": "In 2035, where robots are common-place and abide by the three laws of robotics, a techno-phobic cop investigates an apparent suicide. Suspecting that a robot may be responsible for the death, his investigation leads him to believe that humanity may be in danger.", "text_for_embedding": "I, Robot (2004). Genres: Action, Science Fiction. In 2035, where robots are common-place and abide by the three laws of robotics, a techno-phobic cop investigates an apparent suicide. Suspecting that a robot may be responsible for the death, his investigation leads him to believe that humanity may be in danger.. Tags: suicide, artificial intelligence, man vs machine, chicago, based on novel, hero, future, law, dystopia, police, murder, robot, 3d, humanoid robot"} +{"id": "1495", "title": "Kingdom of Heaven", "year": 2005, "duration_min": 144, "rating": 6.6, "genres": "Drama, Action, Adventure, History, War", "genres_pipe": "|Drama|Action|Adventure|History|War|", "keywords": "crusade, epic, knight, swordsman, order of the templars, religious, knight templars, saladin, king richard", "tags_pipe": "|crusade|epic|knight|swordsman|order of the templars|religious|knight templars|saladin|king richard|", "overview": "After his wife dies, a blacksmith named Balian is thrust into royalty, political intrigue and bloody holy wars during the Crusades.", "text_for_embedding": "Kingdom of Heaven (2005). Genres: Drama, Action, Adventure, History, War. After his wife dies, a blacksmith named Balian is thrust into royalty, political intrigue and bloody holy wars during the Crusades.. Tags: crusade, epic, knight, swordsman, order of the templars, religious, knight templars, saladin, king richard"} +{"id": "10137", "title": "Stuart Little", "year": 1999, "duration_min": 84, "rating": 5.8, "genres": "Animation, Fantasy, Family, Comedy", "genres_pipe": "|Animation|Fantasy|Family|Comedy|", "keywords": "brother brother relationship, based on novel, cat, mouse, adoption, orphanage, step brother, kids and family, new york city twin towers, gangster", "tags_pipe": "|brother brother relationship|based on novel|cat|mouse|adoption|orphanage|step brother|kids and family|new york city twin towers|gangster|", "overview": "The adventures of a heroic and debonair stalwart mouse named Stuart Little with human qualities, who faces some comic misadventures while searching for his lost bird friend and living with a human family as their child.", "text_for_embedding": "Stuart Little (1999). Genres: Animation, Fantasy, Family, Comedy. The adventures of a heroic and debonair stalwart mouse named Stuart Little with human qualities, who faces some comic misadventures while searching for his lost bird friend and living with a human family as their child.. Tags: brother brother relationship, based on novel, cat, mouse, adoption, orphanage, step brother, kids and family, new york city twin towers, gangster"} +{"id": "10198", "title": "The Princess and the Frog", "year": 2009, "duration_min": 97, "rating": 6.7, "genres": "Romance, Family, Animation, Music", "genres_pipe": "|Romance|Family|Animation|Music|", "keywords": "based on novel, voodoo, kiss, princess, animation, cajun, firefly, based on fairy tale, duringcreditsstinger, big dreams, frog prince, charlatan", "tags_pipe": "|based on novel|voodoo|kiss|princess|animation|cajun|firefly|based on fairy tale|duringcreditsstinger|big dreams|frog prince|charlatan|", "overview": "A waitress, desperate to fulfill her dreams as a restaurant owner, is set on a journey to turn a frog prince back into a human being, but she has to do face the same problem after she kisses him.", "text_for_embedding": "The Princess and the Frog (2009). Genres: Romance, Family, Animation, Music. A waitress, desperate to fulfill her dreams as a restaurant owner, is set on a journey to turn a frog prince back into a human being, but she has to do face the same problem after she kisses him.. Tags: based on novel, voodoo, kiss, princess, animation, cajun, firefly, based on fairy tale, duringcreditsstinger, big dreams, frog prince, charlatan"} +{"id": "286217", "title": "The Martian", "year": 2015, "duration_min": 141, "rating": 7.6, "genres": "Drama, Adventure, Science Fiction", "genres_pipe": "|Drama|Adventure|Science Fiction|", "keywords": "based on novel, mars, nasa, isolation, botanist, stranded, spaceship, space, engineering, survival, astronaut, science, deep space explorer, duringcreditsstinger, battle for survival", "tags_pipe": "|based on novel|mars|nasa|isolation|botanist|stranded|spaceship|space|engineering|survival|astronaut|science|deep space explorer|duringcreditsstinger|battle for survival|", "overview": "During a manned mission to Mars, Astronaut Mark Watney is presumed dead after a fierce storm and left behind by his crew. But Watney has survived and finds himself stranded and alone on the hostile planet. With only meager supplies, he must draw upon his ingenuity, wit and spirit to subsist and find a way to signal to Earth that he is alive.", "text_for_embedding": "The Martian (2015). Genres: Drama, Adventure, Science Fiction. During a manned mission to Mars, Astronaut Mark Watney is presumed dead after a fierce storm and left behind by his crew. But Watney has survived and finds himself stranded and alone on the hostile planet. With only meager supplies, he must draw upon his ingenuity, wit and spirit to subsist and find a way to signal to Earth that he is alive.. Tags: based on novel, mars, nasa, isolation, botanist, stranded, spaceship, space, engineering, survival, astronaut, science, deep space explorer, duringcreditsstinger, battle for survival"} +{"id": "1635", "title": "The Island", "year": 2005, "duration_min": 136, "rating": 6.5, "genres": "Action, Thriller, Science Fiction, Adventure", "genres_pipe": "|Action|Thriller|Science Fiction|Adventure|", "keywords": "clone, transplantation, love of one's life, dystopia, genetics, freedom, escape, cloning, plague", "tags_pipe": "|clone|transplantation|love of one's life|dystopia|genetics|freedom|escape|cloning|plague|", "overview": "In 2019, Lincoln Six-Echo is a resident of a seemingly \"Utopian\" but contained facility. Like all of the inhabitants of this carefully-controlled environment, Lincoln hopes to be chosen to go to The Island — reportedly the last uncontaminated location on the planet. But Lincoln soon discovers that everything about his existence is a lie.", "text_for_embedding": "The Island (2005). Genres: Action, Thriller, Science Fiction, Adventure. In 2019, Lincoln Six-Echo is a resident of a seemingly \"Utopian\" but contained facility. Like all of the inhabitants of this carefully-controlled environment, Lincoln hopes to be chosen to go to The Island — reportedly the last uncontaminated location on the planet. But Lincoln soon discovers that everything about his existence is a lie.. Tags: clone, transplantation, love of one's life, dystopia, genetics, freedom, escape, cloning, plague"} +{"id": "24113", "title": "Town & Country", "year": 2001, "duration_min": 104, "rating": 3.7, "genres": "Comedy, Romance", "genres_pipe": "|Comedy|Romance|", "keywords": "architect, cellist, friends, anniversary", "tags_pipe": "|architect|cellist|friends|anniversary|", "overview": "Porter Stoddard is a well-known New York architect who is at a crossroads... a nexus where twists and turns lead to myriad missteps some with his wife Ellie, others with longtime friends Mona and her husband Griffin. Deciding which direction to take often leads to unexpected encounters with hilarious consequences.", "text_for_embedding": "Town & Country (2001). Genres: Comedy, Romance. Porter Stoddard is a well-known New York architect who is at a crossroads... a nexus where twists and turns lead to myriad missteps some with his wife Ellie, others with longtime friends Mona and her husband Griffin. Deciding which direction to take often leads to unexpected encounters with hilarious consequences.. Tags: architect, cellist, friends, anniversary"} +{"id": "9679", "title": "Gone in Sixty Seconds", "year": 2000, "duration_min": 118, "rating": 6.1, "genres": "Action, Crime, Thriller", "genres_pipe": "|Action|Crime|Thriller|", "keywords": "brother brother relationship, detective, car race, car thief, blackmail, brother, remake, heist, betrayal, organized crime, shootout, police chase, explosion, violence, lock pick", "tags_pipe": "|brother brother relationship|detective|car race|car thief|blackmail|brother|remake|heist|betrayal|organized crime|shootout|police chase|explosion|violence|lock pick|", "overview": "Upon learning that he has to come out of retirement to steal 50 cars in one night to save his brother Kip's life, former car thief Randall \"Memphis\" Raines enlists help from a few \"boost happy\" pals to accomplish a seemingly impossible feat. From countless car chases to relentless cops, the high-octane excitement builds as Randall swerves around more than a few roadblocks to keep Kip alive.", "text_for_embedding": "Gone in Sixty Seconds (2000). Genres: Action, Crime, Thriller. Upon learning that he has to come out of retirement to steal 50 cars in one night to save his brother Kip's life, former car thief Randall \"Memphis\" Raines enlists help from a few \"boost happy\" pals to accomplish a seemingly impossible feat. From countless car chases to relentless cops, the high-octane excitement builds as Randall swerves around more than a few roadblocks to keep Kip alive.. Tags: brother brother relationship, detective, car race, car thief, blackmail, brother, remake, heist, betrayal, organized crime, shootout, police chase, explosion, violence, lock pick"} +{"id": "98", "title": "Gladiator", "year": 2000, "duration_min": 155, "rating": 7.9, "genres": "Action, Drama, Adventure", "genres_pipe": "|Action|Drama|Adventure|", "keywords": "rome, gladiator, arena, senate, roman empire, emperor, slavery, battlefield, blood, ancient world, father daughter relationship, combat, mother son relationship, dream sequence, chariot", "tags_pipe": "|rome|gladiator|arena|senate|roman empire|emperor|slavery|battlefield|blood|ancient world|father daughter relationship|combat|mother son relationship|dream sequence|chariot|", "overview": "In the year 180, the death of emperor Marcus Aurelius throws the Roman Empire into chaos. Maximus is one of the Roman army's most capable and trusted generals and a key advisor to the emperor. As Marcus' devious son Commodus ascends to the throne, Maximus is set to be executed. He escapes, but is captured by slave traders. Renamed Spaniard and forced to become a gladiator, Maximus must battle to the death with other men for the amusement of paying audiences. His battle skills serve him well, and he becomes one of the most famous and admired men to fight in the Colosseum. Determined to avenge himself against the man who took away his freedom and laid waste to his family, Maximus believes that he can use his fame and skill in the ring to avenge the loss of his family and former glory. As the gladiator begins to challenge his rule, Commodus decides to put his own fighting mettle to the test by squaring off with Maximus in a battle to the death.", "text_for_embedding": "Gladiator (2000). Genres: Action, Drama, Adventure. In the year 180, the death of emperor Marcus Aurelius throws the Roman Empire into chaos. Maximus is one of the Roman army's most capable and trusted generals and a key advisor to the emperor. As Marcus' devious son Commodus ascends to the throne, Maximus is set to be executed. He escapes, but is captured by slave traders. Renamed Spaniard and forced to become a gladiator, Maximus must battle to the death with other men for the amusement of paying audiences. His battle skills serve him well, and he becomes one of the most famous and admired men to fight in the Colosseum. Determined to avenge himself against the man who took away his freedom and laid waste to his family, Maximus believes that he can use his fame and skill in the ring to avenge the loss of his family and former glory. As the gladiator begins to challenge his rule, Commodus decides to put his own fighting mettle to the test by squaring off with Maximus in a battle to the death.. Tags: rome, gladiator, arena, senate, roman empire, emperor, slavery, battlefield, blood, ancient world, father daughter relationship, combat, mother son relationship, dream sequence, chariot"} +{"id": "180", "title": "Minority Report", "year": 2002, "duration_min": 145, "rating": 7.1, "genres": "Action, Thriller, Science Fiction, Mystery", "genres_pipe": "|Action|Thriller|Science Fiction|Mystery|", "keywords": "self-fulfilling prophecy, washington d.c., evidence, future, hologram, dystopia, murder, neo-noir, future noir", "tags_pipe": "|self-fulfilling prophecy|washington d.c.|evidence|future|hologram|dystopia|murder|neo-noir|future noir|", "overview": "John Anderton is a top 'Precrime' cop in the late-21st century, when technology can predict crimes before they're committed. But Anderton becomes the quarry when another investigator targets him for a murder charge.", "text_for_embedding": "Minority Report (2002). Genres: Action, Thriller, Science Fiction, Mystery. John Anderton is a top 'Precrime' cop in the late-21st century, when technology can predict crimes before they're committed. But Anderton becomes the quarry when another investigator targets him for a murder charge.. Tags: self-fulfilling prophecy, washington d.c., evidence, future, hologram, dystopia, murder, neo-noir, future noir"} +{"id": "672", "title": "Harry Potter and the Chamber of Secrets", "year": 2002, "duration_min": 161, "rating": 7.4, "genres": "Adventure, Fantasy, Family", "genres_pipe": "|Adventure|Fantasy|Family|", "keywords": "flying car, witch, magic, cutting the cord, child hero, broom, sorcerer's apprentice, school of witchcraft, giant snake, black magic, aftercreditsstinger", "tags_pipe": "|flying car|witch|magic|cutting the cord|child hero|broom|sorcerer's apprentice|school of witchcraft|giant snake|black magic|aftercreditsstinger|", "overview": "Ignoring threats to his life, Harry returns to Hogwarts to investigate – aided by Ron and Hermione – a mysterious series of attacks.", "text_for_embedding": "Harry Potter and the Chamber of Secrets (2002). Genres: Adventure, Fantasy, Family. Ignoring threats to his life, Harry returns to Hogwarts to investigate – aided by Ron and Hermione – a mysterious series of attacks.. Tags: flying car, witch, magic, cutting the cord, child hero, broom, sorcerer's apprentice, school of witchcraft, giant snake, black magic, aftercreditsstinger"} +{"id": "36557", "title": "Casino Royale", "year": 2006, "duration_min": 144, "rating": 7.3, "genres": "Adventure, Action, Thriller", "genres_pipe": "|Adventure|Action|Thriller|", "keywords": "italy, poker, casino, terrorist, banker, money, free running, torture, british secret service, montenegro", "tags_pipe": "|italy|poker|casino|terrorist|banker|money|free running|torture|british secret service|montenegro|", "overview": "Le Chiffre, a banker to the world's terrorists, is scheduled to participate in a high-stakes poker game in Montenegro, where he intends to use his winnings to establish his financial grip on the terrorist market. M sends Bond – on his maiden mission as a 00 Agent – to attend this game and prevent Le Chiffre from winning. With the help of Vesper Lynd and Felix Leiter, Bond enters the most important poker game in his already dangerous career.", "text_for_embedding": "Casino Royale (2006). Genres: Adventure, Action, Thriller. Le Chiffre, a banker to the world's terrorists, is scheduled to participate in a high-stakes poker game in Montenegro, where he intends to use his winnings to establish his financial grip on the terrorist market. M sends Bond – on his maiden mission as a 00 Agent – to attend this game and prevent Le Chiffre from winning. With the help of Vesper Lynd and Felix Leiter, Bond enters the most important poker game in his already dangerous career.. Tags: italy, poker, casino, terrorist, banker, money, free running, torture, british secret service, montenegro"} +{"id": "869", "title": "Planet of the Apes", "year": 2001, "duration_min": 119, "rating": 5.6, "genres": "Thriller, Science Fiction, Action, Adventure", "genres_pipe": "|Thriller|Science Fiction|Action|Adventure|", "keywords": "gorilla, space marine, space suit, revolution, chimp, slavery, space travel, time travel, dystopia, alien planet, ape, human subjugation", "tags_pipe": "|gorilla|space marine|space suit|revolution|chimp|slavery|space travel|time travel|dystopia|alien planet|ape|human subjugation|", "overview": "After a spectacular crash-landing on an uncharted planet, brash astronaut Leo Davidson finds himself trapped in a savage world where talking apes dominate the human race. Desperate to find a way home, Leo must evade the invincible gorilla army led by Ruthless General Thade.", "text_for_embedding": "Planet of the Apes (2001). Genres: Thriller, Science Fiction, Action, Adventure. After a spectacular crash-landing on an uncharted planet, brash astronaut Leo Davidson finds himself trapped in a savage world where talking apes dominate the human race. Desperate to find a way home, Leo must evade the invincible gorilla army led by Ruthless General Thade.. Tags: gorilla, space marine, space suit, revolution, chimp, slavery, space travel, time travel, dystopia, alien planet, ape, human subjugation"} +{"id": "280", "title": "Terminator 2: Judgment Day", "year": 1991, "duration_min": 137, "rating": 7.7, "genres": "Action, Thriller, Science Fiction", "genres_pipe": "|Action|Thriller|Science Fiction|", "keywords": "cyborg, shotgun, post-apocalyptic, dystopia, moral ambiguity, mental institution, violence, fictional war, morphing, nuclear weapons, shape shifter, savior, catch phrase", "tags_pipe": "|cyborg|shotgun|post-apocalyptic|dystopia|moral ambiguity|mental institution|violence|fictional war|morphing|nuclear weapons|shape shifter|savior|catch phrase|", "overview": "Nearly 10 years have passed since Sarah Connor was targeted for termination by a cyborg from the future. Now her son, John, the future leader of the resistance, is the target for a newer, more deadly terminator. Once again, the resistance has managed to send a protector back to attempt to save John and his mother Sarah.", "text_for_embedding": "Terminator 2: Judgment Day (1991). Genres: Action, Thriller, Science Fiction. Nearly 10 years have passed since Sarah Connor was targeted for termination by a cyborg from the future. Now her son, John, the future leader of the resistance, is the target for a newer, more deadly terminator. Once again, the resistance has managed to send a protector back to attempt to save John and his mother Sarah.. Tags: cyborg, shotgun, post-apocalyptic, dystopia, moral ambiguity, mental institution, violence, fictional war, morphing, nuclear weapons, shape shifter, savior, catch phrase"} +{"id": "11322", "title": "Public Enemies", "year": 2009, "duration_min": 140, "rating": 6.5, "genres": "History, Crime, Drama", "genres_pipe": "|History|Crime|Drama|", "keywords": "cinema, hiding place, machinegun, prison guard, escape from prison, dillinger", "tags_pipe": "|cinema|hiding place|machinegun|prison guard|escape from prison|dillinger|", "overview": "Depression-era bank robber John Dillinger's charm and audacity endear him to much of America's downtrodden public, but he's also a thorn in the side of J. Edgar Hoover and the fledgling FBI. Desperate to capture the elusive outlaw, Hoover makes Dillinger his first Public Enemy Number One and assigns his top agent, Melvin Purvis, the task of bringing him in dead or alive.", "text_for_embedding": "Public Enemies (2009). Genres: History, Crime, Drama. Depression-era bank robber John Dillinger's charm and audacity endear him to much of America's downtrodden public, but he's also a thorn in the side of J. Edgar Hoover and the fledgling FBI. Desperate to capture the elusive outlaw, Hoover makes Dillinger his first Public Enemy Number One and assigns his top agent, Melvin Purvis, the task of bringing him in dead or alive.. Tags: cinema, hiding place, machinegun, prison guard, escape from prison, dillinger"} +{"id": "4982", "title": "American Gangster", "year": 2007, "duration_min": 157, "rating": 7.4, "genres": "Drama, Crime", "genres_pipe": "|Drama|Crime|", "keywords": "underdog, black people, drug traffic, drug smuggle, society, ambition, rise and fall, cop, drug dealing, police corruption, gangster, crime, police detective, family, law enforcement", "tags_pipe": "|underdog|black people|drug traffic|drug smuggle|society|ambition|rise and fall|cop|drug dealing|police corruption|gangster|crime|police detective|family|law enforcement|", "overview": "Following the death of his employer and mentor, Bumpy Johnson, Frank Lucas establishes himself as the number one importer of heroin in the Harlem district of Manhattan. He does so by buying heroin directly from the source in South East Asia and he comes up with a unique way of importing the drugs into the United States. Based on a true story.", "text_for_embedding": "American Gangster (2007). Genres: Drama, Crime. Following the death of his employer and mentor, Bumpy Johnson, Frank Lucas establishes himself as the number one importer of heroin in the Harlem district of Manhattan. He does so by buying heroin directly from the source in South East Asia and he comes up with a unique way of importing the drugs into the United States. Based on a true story.. Tags: underdog, black people, drug traffic, drug smuggle, society, ambition, rise and fall, cop, drug dealing, police corruption, gangster, crime, police detective, family, law enforcement"} +{"id": "36955", "title": "True Lies", "year": 1994, "duration_min": 141, "rating": 6.8, "genres": "Action, Thriller", "genres_pipe": "|Action|Thriller|", "keywords": "spy, terrorist, florida, gun, kidnapping, horseback riding, florida keys, secret agent, terrorist plot, top secret, woman with glasses, hit with a telephone, truth serum, mushroom cloud, jackhammer", "tags_pipe": "|spy|terrorist|florida|gun|kidnapping|horseback riding|florida keys|secret agent|terrorist plot|top secret|woman with glasses|hit with a telephone|truth serum|mushroom cloud|jackhammer|", "overview": "Harry Tasker is a secret agent for the United States Government. For years, he has kept his job from his wife, but is forced to reveal his identity and try to stop nuclear terrorists when he and his wife are kidnapped by them.", "text_for_embedding": "True Lies (1994). Genres: Action, Thriller. Harry Tasker is a secret agent for the United States Government. For years, he has kept his job from his wife, but is forced to reveal his identity and try to stop nuclear terrorists when he and his wife are kidnapped by them.. Tags: spy, terrorist, florida, gun, kidnapping, horseback riding, florida keys, secret agent, terrorist plot, top secret, woman with glasses, hit with a telephone, truth serum, mushroom cloud, jackhammer"} +{"id": "18487", "title": "The Taking of Pelham 1 2 3", "year": 2009, "duration_min": 106, "rating": 6.2, "genres": "Thriller, Drama, Crime", "genres_pipe": "|Thriller|Drama|Crime|", "keywords": "hostage, new york city, new york subway, subway train, stock market, motorcycle crash, subway tunnel, aftercreditsstinger", "tags_pipe": "|hostage|new york city|new york subway|subway train|stock market|motorcycle crash|subway tunnel|aftercreditsstinger|", "overview": "Armed men hijack a New York City subway train, holding the passengers hostage in return for a ransom, and turning an ordinary day's work for dispatcher Walter Garber into a face-off with the mastermind behind the crime.", "text_for_embedding": "The Taking of Pelham 1 2 3 (2009). Genres: Thriller, Drama, Crime. Armed men hijack a New York City subway train, holding the passengers hostage in return for a ransom, and turning an ordinary day's work for dispatcher Walter Garber into a face-off with the mastermind behind the crime.. Tags: hostage, new york city, new york subway, subway train, stock market, motorcycle crash, subway tunnel, aftercreditsstinger"} +{"id": "39451", "title": "Little Fockers", "year": 2010, "duration_min": 98, "rating": 5.4, "genres": "Comedy, Romance", "genres_pipe": "|Comedy|Romance|", "keywords": "nurse, cat, father-in-law, vomit, kids and family, viagra, duringcreditsstinger", "tags_pipe": "|nurse|cat|father-in-law|vomit|kids and family|viagra|duringcreditsstinger|", "overview": "It has taken 10 years, two little Fockers with wife Pam and countless hurdles for Greg to finally get in with his tightly wound father-in-law, Jack. After the cash-strapped dad takes a job moonlighting for a drug company, Jack's suspicions about his favorite male nurse come roaring back. When Greg and Pam's entire clan descends for the twins' birthday party, Greg must prove to the skeptical Jack that he's fully capable as the man of the house.", "text_for_embedding": "Little Fockers (2010). Genres: Comedy, Romance. It has taken 10 years, two little Fockers with wife Pam and countless hurdles for Greg to finally get in with his tightly wound father-in-law, Jack. After the cash-strapped dad takes a job moonlighting for a drug company, Jack's suspicions about his favorite male nurse come roaring back. When Greg and Pam's entire clan descends for the twins' birthday party, Greg must prove to the skeptical Jack that he's fully capable as the man of the house.. Tags: nurse, cat, father-in-law, vomit, kids and family, viagra, duringcreditsstinger"} +{"id": "27581", "title": "The Other Guys", "year": 2010, "duration_min": 107, "rating": 6.1, "genres": "Action, Comedy, Crime", "genres_pipe": "|Action|Comedy|Crime|", "keywords": "narration, ceo, fire truck, shot in the shoulder, zip line, buddy comedy, carjacking, aftercreditsstinger, duringcreditsstinger", "tags_pipe": "|narration|ceo|fire truck|shot in the shoulder|zip line|buddy comedy|carjacking|aftercreditsstinger|duringcreditsstinger|", "overview": "NYPD detectives Christopher Danson (Johnson) and P.K. Highsmith (Jackson) are the baddest and most beloved cops in New York City. They don't get tattoos, other men get tattoos of them. Two desks over and one back, sit detectives Allen Gamble (Ferrell) and Terry Hoitz (Wahlberg). You've seen them in the background of photos of Danson and Highsmith, out of focus and eyes closed. They're not heroes, they're \"the other guys.\" But every cop has his or her day and soon Gamble and Hoitz stumble into a seemingly innocuous case no other detective wants to touch that could turn into NYC's biggest crime. It's the opportunity of their lives, but do these guys have the right stuff?", "text_for_embedding": "The Other Guys (2010). Genres: Action, Comedy, Crime. NYPD detectives Christopher Danson (Johnson) and P.K. Highsmith (Jackson) are the baddest and most beloved cops in New York City. They don't get tattoos, other men get tattoos of them. Two desks over and one back, sit detectives Allen Gamble (Ferrell) and Terry Hoitz (Wahlberg). You've seen them in the background of photos of Danson and Highsmith, out of focus and eyes closed. They're not heroes, they're \"the other guys.\" But every cop has his or her day and soon Gamble and Hoitz stumble into a seemingly innocuous case no other detective wants to touch that could turn into NYC's biggest crime. It's the opportunity of their lives, but do these guys have the right stuff?. Tags: narration, ceo, fire truck, shot in the shoulder, zip line, buddy comedy, carjacking, aftercreditsstinger, duringcreditsstinger"} +{"id": "9268", "title": "Eraser", "year": 1996, "duration_min": 115, "rating": 5.6, "genres": "Action, Drama, Mystery, Thriller", "genres_pipe": "|Action|Drama|Mystery|Thriller|", "keywords": "suicide, ambush, showdown, hostage, traitor, new identity, hitman, witness, witness protection, arms dealer, deception, betrayal, treason, conspiracy, u.s. marshal", "tags_pipe": "|suicide|ambush|showdown|hostage|traitor|new identity|hitman|witness|witness protection|arms dealer|deception|betrayal|treason|conspiracy|u.s. marshal|", "overview": "U.S. Marshall John Kruger erases the identities of people enrolled in the Witness Protection Program. His current assignment is to protect Lee Cullen, who's uncovered evidence that the weapons manufacturer she works for has been selling to terrorist groups. When Kruger discovers that there's a corrupt agent within the program, he must guard his own life while trying to protect Lee's.", "text_for_embedding": "Eraser (1996). Genres: Action, Drama, Mystery, Thriller. U.S. Marshall John Kruger erases the identities of people enrolled in the Witness Protection Program. His current assignment is to protect Lee Cullen, who's uncovered evidence that the weapons manufacturer she works for has been selling to terrorist groups. When Kruger discovers that there's a corrupt agent within the program, he must guard his own life while trying to protect Lee's.. Tags: suicide, ambush, showdown, hostage, traitor, new identity, hitman, witness, witness protection, arms dealer, deception, betrayal, treason, conspiracy, u.s. marshal"} +{"id": "68718", "title": "Django Unchained", "year": 2012, "duration_min": 165, "rating": 7.8, "genres": "Drama, Western", "genres_pipe": "|Drama|Western|", "keywords": "bounty hunter, hero, plantation, society, friendship, friends, revenge, rivalry, rescue, shootout, racism, danger, dentist, django, dual role", "tags_pipe": "|bounty hunter|hero|plantation|society|friendship|friends|revenge|rivalry|rescue|shootout|racism|danger|dentist|django|dual role|", "overview": "With the help of a German bounty hunter, a freed slave sets out to rescue his wife from a brutal Mississippi plantation owner.", "text_for_embedding": "Django Unchained (2012). Genres: Drama, Western. With the help of a German bounty hunter, a freed slave sets out to rescue his wife from a brutal Mississippi plantation owner.. Tags: bounty hunter, hero, plantation, society, friendship, friends, revenge, rivalry, rescue, shootout, racism, danger, dentist, django, dual role"} +{"id": "10545", "title": "The Hunchback of Notre Dame", "year": 1996, "duration_min": 91, "rating": 6.8, "genres": "Drama, Animation, Family", "genres_pipe": "|Drama|Animation|Family|", "keywords": "paris, based on novel, judge, obsession, dance, sword, mockery, ugliness, cathedral, musical, fool, bell, religion, orphan, army captain", "tags_pipe": "|paris|based on novel|judge|obsession|dance|sword|mockery|ugliness|cathedral|musical|fool|bell|religion|orphan|army captain|", "overview": "When Quasi defies the evil Frollo and ventures out to the Festival of Fools, the cruel crowd jeers him. Rescued by fellow outcast the gypsy Esmeralda, Quasi soon finds himself battling to save the people and the city he loves.", "text_for_embedding": "The Hunchback of Notre Dame (1996). Genres: Drama, Animation, Family. When Quasi defies the evil Frollo and ventures out to the Festival of Fools, the cruel crowd jeers him. Rescued by fellow outcast the gypsy Esmeralda, Quasi soon finds himself battling to save the people and the city he loves.. Tags: paris, based on novel, judge, obsession, dance, sword, mockery, ugliness, cathedral, musical, fool, bell, religion, orphan, army captain"} +{"id": "11688", "title": "The Emperor's New Groove", "year": 2000, "duration_min": 78, "rating": 7.2, "genres": "Adventure, Animation, Comedy, Family, Fantasy", "genres_pipe": "|Adventure|Animation|Comedy|Family|Fantasy|", "keywords": "central and south america, birthday, emperor, palace, kingdom, berater, llama", "tags_pipe": "|central and south america|birthday|emperor|palace|kingdom|berater|llama|", "overview": "Kuzco is a self-centered emperor who summons Pacha from a village and to tell him that his home will be destroyed to make room for Kuzco's new summer home. Kuzco's advisor, Yzma, tries to poison Kuzco and accidentally turns him into a llama, who accidentally ends up in Pacha's village. Pacha offers to help Kuzco if he doesn't destroy his house, and so they form an unlikely partnership.", "text_for_embedding": "The Emperor's New Groove (2000). Genres: Adventure, Animation, Comedy, Family, Fantasy. Kuzco is a self-centered emperor who summons Pacha from a village and to tell him that his home will be destroyed to make room for Kuzco's new summer home. Kuzco's advisor, Yzma, tries to poison Kuzco and accidentally turns him into a llama, who accidentally ends up in Pacha's village. Pacha offers to help Kuzco if he doesn't destroy his house, and so they form an unlikely partnership.. Tags: central and south america, birthday, emperor, palace, kingdom, berater, llama"} +{"id": "76163", "title": "The Expendables 2", "year": 2012, "duration_min": 103, "rating": 6.1, "genres": "Action, Adventure, Thriller", "genres_pipe": "|Action|Adventure|Thriller|", "keywords": "airplane, number in title, airplane crash, violence, beard, ensemble cast, loss of friend, wisecrack humor, airport lounge, asian woman", "tags_pipe": "|airplane|number in title|airplane crash|violence|beard|ensemble cast|loss of friend|wisecrack humor|airport lounge|asian woman|", "overview": "Mr. Church reunites the Expendables for what should be an easy paycheck, but when one of their men is murdered on the job, their quest for revenge puts them deep in enemy territory and up against an unexpected threat.", "text_for_embedding": "The Expendables 2 (2012). Genres: Action, Adventure, Thriller. Mr. Church reunites the Expendables for what should be an easy paycheck, but when one of their men is murdered on the job, their quest for revenge puts them deep in enemy territory and up against an unexpected threat.. Tags: airplane, number in title, airplane crash, violence, beard, ensemble cast, loss of friend, wisecrack humor, airport lounge, asian woman"} +{"id": "2059", "title": "National Treasure", "year": 2004, "duration_min": 131, "rating": 6.4, "genres": "Adventure, Action, Thriller, Mystery", "genres_pipe": "|Adventure|Action|Thriller|Mystery|", "keywords": "riddle, treasure, treasure hunt, archaeologist, archeology ", "tags_pipe": "|riddle|treasure|treasure hunt|archaeologist|archeology |", "overview": "Modern treasure hunters, led by archaeologist Ben Gates, search for a chest of riches rumored to have been stashed away by George Washington, Thomas Jefferson and Benjamin Franklin during the Revolutionary War. The chest's whereabouts may lie in secret clues embedded in the Constitution and the Declaration of Independence, and Gates is in a race to find the gold before his enemies do.", "text_for_embedding": "National Treasure (2004). Genres: Adventure, Action, Thriller, Mystery. Modern treasure hunters, led by archaeologist Ben Gates, search for a chest of riches rumored to have been stashed away by George Washington, Thomas Jefferson and Benjamin Franklin during the Revolutionary War. The chest's whereabouts may lie in secret clues embedded in the Constitution and the Declaration of Independence, and Gates is in a race to find the gold before his enemies do.. Tags: riddle, treasure, treasure hunt, archaeologist, archeology "} +{"id": "2486", "title": "Eragon", "year": 2006, "duration_min": 104, "rating": 4.9, "genres": "Fantasy, Action, Adventure, Family", "genres_pipe": "|Fantasy|Action|Adventure|Family|", "keywords": "based on novel, mythical creature, dragon, fantasy world, teenage hero, based on young adult novel", "tags_pipe": "|based on novel|mythical creature|dragon|fantasy world|teenage hero|based on young adult novel|", "overview": "In his homeland of Alagaesia, a farm boy happens upon a dragon's egg -- a discovery that leads him on a predestined journey where he realized he's the one person who can defend his home against an evil king.", "text_for_embedding": "Eragon (2006). Genres: Fantasy, Action, Adventure, Family. In his homeland of Alagaesia, a farm boy happens upon a dragon's egg -- a discovery that leads him on a predestined journey where he realized he's the one person who can defend his home against an evil king.. Tags: based on novel, mythical creature, dragon, fantasy world, teenage hero, based on young adult novel"} +{"id": "16523", "title": "Where the Wild Things Are", "year": 2009, "duration_min": 101, "rating": 6.4, "genres": "Family, Fantasy", "genres_pipe": "|Family|Fantasy|", "keywords": "children's book, igloo, wolf costume, swallowed whole, hit with a rock, lying, falling down a hill, snowball fight, children's perspectives", "tags_pipe": "|children's book|igloo|wolf costume|swallowed whole|hit with a rock|lying|falling down a hill|snowball fight|children's perspectives|", "overview": "Max imagines running away from his mom and sailing to a far-off land where large talking beasts -- Ira, Carol, Douglas, the Bull, Judith and Alexander -- crown him as their king, play rumpus, build forts and discover secret hideaways.", "text_for_embedding": "Where the Wild Things Are (2009). Genres: Family, Fantasy. Max imagines running away from his mom and sailing to a far-off land where large talking beasts -- Ira, Carol, Douglas, the Bull, Judith and Alexander -- crown him as their king, play rumpus, build forts and discover secret hideaways.. Tags: children's book, igloo, wolf costume, swallowed whole, hit with a rock, lying, falling down a hill, snowball fight, children's perspectives"} +{"id": "116711", "title": "Epic", "year": 2013, "duration_min": 102, "rating": 6.4, "genres": "Animation, Adventure, Family, Fantasy", "genres_pipe": "|Animation|Adventure|Family|Fantasy|", "keywords": "fantasy, miniature people", "tags_pipe": "|fantasy|miniature people|", "overview": "A teenager finds herself transported to a deep forest setting where a battle between the forces of good and the forces of evil is taking place. She bands together with a rag-tag group characters in order to save their world -- and ours.", "text_for_embedding": "Epic (2013). Genres: Animation, Adventure, Family, Fantasy. A teenager finds herself transported to a deep forest setting where a battle between the forces of good and the forces of evil is taking place. She bands together with a rag-tag group characters in order to save their world -- and ours.. Tags: fantasy, miniature people"} +{"id": "37710", "title": "The Tourist", "year": 2010, "duration_min": 103, "rating": 6.0, "genres": "Action, Thriller, Romance", "genres_pipe": "|Action|Thriller|Romance|", "keywords": "paris, hotel, false identity, undercover agent, romance", "tags_pipe": "|paris|hotel|false identity|undercover agent|romance|", "overview": "American tourist Frank (Johnny Depp) meets mysterious British woman Elsie (Angelina Jolie) on the train to Venice. Romance seems to bud, but there's more to her than meets the eye. Remake of the 2005 French film \"Anthony Zimmer\", written and directed by Jérôme Salle.", "text_for_embedding": "The Tourist (2010). Genres: Action, Thriller, Romance. American tourist Frank (Johnny Depp) meets mysterious British woman Elsie (Angelina Jolie) on the train to Venice. Romance seems to bud, but there's more to her than meets the eye. Remake of the 2005 French film \"Anthony Zimmer\", written and directed by Jérôme Salle.. Tags: paris, hotel, false identity, undercover agent, romance"} +{"id": "9946", "title": "End of Days", "year": 1999, "duration_min": 121, "rating": 5.5, "genres": "Action, Fantasy, Horror, Mystery", "genres_pipe": "|Action|Fantasy|Horror|Mystery|", "keywords": "christianity, sex, new year's eve, pastor, nudity, mephisto, nightmare, bible, satanist, faith, ex-cop, anti-christ, millenium, atheist, suspense", "tags_pipe": "|christianity|sex|new year's eve|pastor|nudity|mephisto|nightmare|bible|satanist|faith|ex-cop|anti-christ|millenium|atheist|suspense|", "overview": "On December 28th, 1999, the citizens of New York City are getting ready for the turn of the millennium. However, the Devil decides to crash the party by coming to the city, inhabiting a man's body, and searching for his chosen bride, a 20-year-old woman named Christine York. The world will end, and the only hope lies within an atheist called Jericho Cane.", "text_for_embedding": "End of Days (1999). Genres: Action, Fantasy, Horror, Mystery. On December 28th, 1999, the citizens of New York City are getting ready for the turn of the millennium. However, the Devil decides to crash the party by coming to the city, inhabiting a man's body, and searching for his chosen bride, a 20-year-old woman named Christine York. The world will end, and the only hope lies within an atheist called Jericho Cane.. Tags: christianity, sex, new year's eve, pastor, nudity, mephisto, nightmare, bible, satanist, faith, ex-cop, anti-christ, millenium, atheist, suspense"} +{"id": "1372", "title": "Blood Diamond", "year": 2006, "duration_min": 143, "rating": 7.3, "genres": "Drama, Thriller, Action", "genres_pipe": "|Drama|Thriller|Action|", "keywords": "rebel, journalist, journalism, loss of family, slavery, mercenary, diamond mine, sierra leone, bootlegger, fisherman, special unit, smuggling, genocide in rwanda, oppression", "tags_pipe": "|rebel|journalist|journalism|loss of family|slavery|mercenary|diamond mine|sierra leone|bootlegger|fisherman|special unit|smuggling|genocide in rwanda|oppression|", "overview": "An ex-mercenary turned smuggler. A Mende fisherman. Amid the explosive civil war overtaking 1999 Sierra Leone, these men join for two desperate missions: recovering a rare pink diamond of immense value and rescuing the fisherman's son conscripted as a child soldier into the brutal rebel forces ripping a swath of torture and bloodshed countrywide.", "text_for_embedding": "Blood Diamond (2006). Genres: Drama, Thriller, Action. An ex-mercenary turned smuggler. A Mende fisherman. Amid the explosive civil war overtaking 1999 Sierra Leone, these men join for two desperate missions: recovering a rare pink diamond of immense value and rescuing the fisherman's son conscripted as a child soldier into the brutal rebel forces ripping a swath of torture and bloodshed countrywide.. Tags: rebel, journalist, journalism, loss of family, slavery, mercenary, diamond mine, sierra leone, bootlegger, fisherman, special unit, smuggling, genocide in rwanda, oppression"} +{"id": "106646", "title": "The Wolf of Wall Street", "year": 2013, "duration_min": 180, "rating": 7.9, "genres": "Crime, Drama, Comedy", "genres_pipe": "|Crime|Drama|Comedy|", "keywords": "corruption, sex, sexuality, bank, humor, biography, wall street, marriage crisis, rise and fall, stockbroker, drug, stock broker", "tags_pipe": "|corruption|sex|sexuality|bank|humor|biography|wall street|marriage crisis|rise and fall|stockbroker|drug|stock broker|", "overview": "A New York stockbroker refuses to cooperate in a large securities fraud case involving corruption on Wall Street, corporate banking world and mob infiltration. Based on Jordan Belfort's autobiography.", "text_for_embedding": "The Wolf of Wall Street (2013). Genres: Crime, Drama, Comedy. A New York stockbroker refuses to cooperate in a large securities fraud case involving corruption on Wall Street, corporate banking world and mob infiltration. Based on Jordan Belfort's autobiography.. Tags: corruption, sex, sexuality, bank, humor, biography, wall street, marriage crisis, rise and fall, stockbroker, drug, stock broker"} +{"id": "414", "title": "Batman Forever", "year": 1995, "duration_min": 121, "rating": 5.2, "genres": "Action, Crime, Fantasy", "genres_pipe": "|Action|Crime|Fantasy|", "keywords": "riddle, dc comics, rose, gotham city, partner, superhero, robin, broken neck, psychologist, violence, criminal, district attorney, millionaire, falling down stairs, tied up", "tags_pipe": "|riddle|dc comics|rose|gotham city|partner|superhero|robin|broken neck|psychologist|violence|criminal|district attorney|millionaire|falling down stairs|tied up|", "overview": "The Dark Knight of Gotham City confronts a dastardly duo: Two-Face and the Riddler. Formerly District Attorney Harvey Dent, Two-Face believes Batman caused the courtroom accident which left him disfigured on one side. And Edward Nygma, computer-genius and former employee of millionaire Bruce Wayne, is out to get the philanthropist; as The Riddler. Former circus acrobat Dick Grayson, his family killed by Two-Face, becomes Wayne's ward and Batman's new partner Robin.", "text_for_embedding": "Batman Forever (1995). Genres: Action, Crime, Fantasy. The Dark Knight of Gotham City confronts a dastardly duo: Two-Face and the Riddler. Formerly District Attorney Harvey Dent, Two-Face believes Batman caused the courtroom accident which left him disfigured on one side. And Edward Nygma, computer-genius and former employee of millionaire Bruce Wayne, is out to get the philanthropist; as The Riddler. Former circus acrobat Dick Grayson, his family killed by Two-Face, becomes Wayne's ward and Batman's new partner Robin.. Tags: riddle, dc comics, rose, gotham city, partner, superhero, robin, broken neck, psychologist, violence, criminal, district attorney, millionaire, falling down stairs, tied up"} +{"id": "563", "title": "Starship Troopers", "year": 1997, "duration_min": 129, "rating": 6.7, "genres": "Adventure, Action, Thriller, Science Fiction", "genres_pipe": "|Adventure|Action|Thriller|Science Fiction|", "keywords": "moon, asteroid, space marine, intelligence, buenos aires, space battle, dystopia, army, satire, spaceship, soldier, drill instructor, military", "tags_pipe": "|moon|asteroid|space marine|intelligence|buenos aires|space battle|dystopia|army|satire|spaceship|soldier|drill instructor|military|", "overview": "Set in the future, the story follows a young soldier named Johnny Rico and his exploits in the Mobile Infantry. Rico's military career progresses from recruit to non-commissioned officer and finally to officer against the backdrop of an interstellar war between mankind and an arachnoid species known as \"the Bugs\".", "text_for_embedding": "Starship Troopers (1997). Genres: Adventure, Action, Thriller, Science Fiction. Set in the future, the story follows a young soldier named Johnny Rico and his exploits in the Mobile Infantry. Rico's military career progresses from recruit to non-commissioned officer and finally to officer against the backdrop of an interstellar war between mankind and an arachnoid species known as \"the Bugs\".. Tags: moon, asteroid, space marine, intelligence, buenos aires, space battle, dystopia, army, satire, spaceship, soldier, drill instructor, military"} +{"id": "83542", "title": "Cloud Atlas", "year": 2012, "duration_min": 172, "rating": 6.6, "genres": "Drama, Science Fiction", "genres_pipe": "|Drama|Science Fiction|", "keywords": "clone, future, dystopia, ensemble cast, duringcreditsstinger, century, woman director, 1930s", "tags_pipe": "|clone|future|dystopia|ensemble cast|duringcreditsstinger|century|woman director|1930s|", "overview": "A set of six nested stories spanning time between the 19th century and a distant post-apocalyptic future. Cloud Atlas explores how the actions and consequences of individual lives impact one another throughout the past, the present and the future. Action, mystery and romance weave through the story as one soul is shaped from a killer into a hero and a single act of kindness ripples across centuries to inspire a revolution in the distant future. Based on the award winning novel by David Mitchell. Directed by Tom Tykwer and the Wachowskis.", "text_for_embedding": "Cloud Atlas (2012). Genres: Drama, Science Fiction. A set of six nested stories spanning time between the 19th century and a distant post-apocalyptic future. Cloud Atlas explores how the actions and consequences of individual lives impact one another throughout the past, the present and the future. Action, mystery and romance weave through the story as one soul is shaped from a killer into a hero and a single act of kindness ripples across centuries to inspire a revolution in the distant future. Based on the award winning novel by David Mitchell. Directed by Tom Tykwer and the Wachowskis.. Tags: clone, future, dystopia, ensemble cast, duringcreditsstinger, century, woman director, 1930s"} +{"id": "41216", "title": "Legend of the Guardians: The Owls of Ga'Hoole", "year": 2010, "duration_min": 97, "rating": 6.5, "genres": "Animation, Adventure, Family, Fantasy", "genres_pipe": "|Animation|Adventure|Family|Fantasy|", "keywords": "owl", "tags_pipe": "|owl|", "overview": "Soren, a young barn owl, is kidnapped by owls of St. Aggie's, ostensibly an orphanage, where owlets are brainwashed into becoming soldiers. He and his new friends escape to the island of Ga'Hoole, to assist its noble, wise owls who fight the army being created by the wicked rulers of St. Aggie's. The film is based on the first three books in the series.", "text_for_embedding": "Legend of the Guardians: The Owls of Ga'Hoole (2010). Genres: Animation, Adventure, Family, Fantasy. Soren, a young barn owl, is kidnapped by owls of St. Aggie's, ostensibly an orphanage, where owlets are brainwashed into becoming soldiers. He and his new friends escape to the island of Ga'Hoole, to assist its noble, wise owls who fight the army being created by the wicked rulers of St. Aggie's. The film is based on the first three books in the series.. Tags: owl"} +{"id": "314", "title": "Catwoman", "year": 2004, "duration_min": 104, "rating": 4.2, "genres": "Action, Crime", "genres_pipe": "|Action|Crime|", "keywords": "white russian, sex, dc comics, beauty, sexism, basketball, superheroine, female protagonist, evil corporation, catwoman, masked superhero, cat lady", "tags_pipe": "|white russian|sex|dc comics|beauty|sexism|basketball|superheroine|female protagonist|evil corporation|catwoman|masked superhero|cat lady|", "overview": "Liquidated after discovering a corporate conspiracy, mild-mannered graphic artist Patience Phillips washes up on an island, where she's resurrected and endowed with the prowess of a cat -- and she's eager to use her new skills ... as a vigilante. Before you can say \"cat and mouse,\" handsome gumshoe Tom Lone is on her tail.", "text_for_embedding": "Catwoman (2004). Genres: Action, Crime. Liquidated after discovering a corporate conspiracy, mild-mannered graphic artist Patience Phillips washes up on an island, where she's resurrected and endowed with the prowess of a cat -- and she's eager to use her new skills ... as a vigilante. Before you can say \"cat and mouse,\" handsome gumshoe Tom Lone is on her tail.. Tags: white russian, sex, dc comics, beauty, sexism, basketball, superheroine, female protagonist, evil corporation, catwoman, masked superhero, cat lady"} +{"id": "184315", "title": "Hercules", "year": 2014, "duration_min": 99, "rating": 5.6, "genres": "Action, Adventure", "genres_pipe": "|Action|Adventure|", "keywords": "mercenary, battle, ancient greece, hercules, warrior, sagen", "tags_pipe": "|mercenary|battle|ancient greece|hercules|warrior|sagen|", "overview": "Fourteen hundred years ago, a tormented soul walked the earth that was neither man nor god. Hercules was the powerful son of the god king Zeus, for this he received nothing but suffering his entire life. After twelve arduous labors and the loss of his family, this dark, world-weary soul turned his back on the gods finding his only solace in bloody battle. Over the years he warmed to the company of six similar souls, their only bond being their love of fighting and presence of death. These men and woman never question where they go to fight or why or whom, just how much they will be paid. Now the King of Thrace has hired these mercenaries to train his men to become the greatest army of all time. It is time for this bunch of lost souls to finally have their eyes opened to how far they have fallen when they must train an army to become as ruthless and blood thirsty as their reputation has become.", "text_for_embedding": "Hercules (2014). Genres: Action, Adventure. Fourteen hundred years ago, a tormented soul walked the earth that was neither man nor god. Hercules was the powerful son of the god king Zeus, for this he received nothing but suffering his entire life. After twelve arduous labors and the loss of his family, this dark, world-weary soul turned his back on the gods finding his only solace in bloody battle. Over the years he warmed to the company of six similar souls, their only bond being their love of fighting and presence of death. These men and woman never question where they go to fight or why or whom, just how much they will be paid. Now the King of Thrace has hired these mercenaries to train his men to become the greatest army of all time. It is time for this bunch of lost souls to finally have their eyes opened to how far they have fallen when they must train an army to become as ruthless and blood thirsty as their reputation has become.. Tags: mercenary, battle, ancient greece, hercules, warrior, sagen"} +{"id": "9016", "title": "Treasure Planet", "year": 2002, "duration_min": 95, "rating": 7.2, "genres": "Adventure, Animation, Family, Fantasy, Science Fiction", "genres_pipe": "|Adventure|Animation|Family|Fantasy|Science Fiction|", "keywords": "cyborg, based on novel, space marine, mutiny, loss of father, map, pirate gang, treasure hunt, little boy, space, alien, animation, money, treasure map, planet", "tags_pipe": "|cyborg|based on novel|space marine|mutiny|loss of father|map|pirate gang|treasure hunt|little boy|space|alien|animation|money|treasure map|planet|", "overview": "When space galleon cabin boy Jim Hawkins discovers a map to an intergalactic \"loot of a thousand worlds,\" a cyborg cook named John Silver teaches him to battle supernovas and space storms. But, soon, Jim realizes Silver is a pirate intent on mutiny!", "text_for_embedding": "Treasure Planet (2002). Genres: Adventure, Animation, Family, Fantasy, Science Fiction. When space galleon cabin boy Jim Hawkins discovers a map to an intergalactic \"loot of a thousand worlds,\" a cyborg cook named John Silver teaches him to battle supernovas and space storms. But, soon, Jim realizes Silver is a pirate intent on mutiny!. Tags: cyborg, based on novel, space marine, mutiny, loss of father, map, pirate gang, treasure hunt, little boy, space, alien, animation, money, treasure map, planet"} +{"id": "18162", "title": "Land of the Lost", "year": 2009, "duration_min": 102, "rating": 5.3, "genres": "Adventure, Comedy, Science Fiction", "genres_pipe": "|Adventure|Comedy|Science Fiction|", "keywords": "alien life-form, dinosaur, primate, duringcreditsstinger", "tags_pipe": "|alien life-form|dinosaur|primate|duringcreditsstinger|", "overview": "On his latest expedition, Dr. Rick Marshall is sucked into a space-time vortex alongside his research assistant and a redneck survivalist. In this alternate universe, the trio make friends with a primate named Chaka, their only ally in a world full of dinosaurs and other fantastic creatures.", "text_for_embedding": "Land of the Lost (2009). Genres: Adventure, Comedy, Science Fiction. On his latest expedition, Dr. Rick Marshall is sucked into a space-time vortex alongside his research assistant and a redneck survivalist. In this alternate universe, the trio make friends with a primate named Chaka, their only ally in a world full of dinosaurs and other fantastic creatures.. Tags: alien life-form, dinosaur, primate, duringcreditsstinger"} +{"id": "138103", "title": "The Expendables 3", "year": 2014, "duration_min": 127, "rating": 6.1, "genres": "Action, Adventure, Thriller", "genres_pipe": "|Action|Adventure|Thriller|", "keywords": "cia, arms dealer, sequel, rescue mission, hospital, battle, sledgehammer, revolver", "tags_pipe": "|cia|arms dealer|sequel|rescue mission|hospital|battle|sledgehammer|revolver|", "overview": "Barney, Christmas and the rest of the team comes face-to-face with Conrad Stonebanks, who years ago co-founded The Expendables with Barney. Stonebanks subsequently became a ruthless arms trader and someone who Barney was forced to kill… or so he thought. Stonebanks, who eluded death once before, now is making it his mission to end The Expendables -- but Barney has other plans. Barney decides that he has to fight old blood with new blood, and brings in a new era of Expendables team members, recruiting individuals who are younger, faster and more tech-savvy. The latest mission becomes a clash of classic old-school style versus high-tech expertise in the Expendables’ most personal battle yet.", "text_for_embedding": "The Expendables 3 (2014). Genres: Action, Adventure, Thriller. Barney, Christmas and the rest of the team comes face-to-face with Conrad Stonebanks, who years ago co-founded The Expendables with Barney. Stonebanks subsequently became a ruthless arms trader and someone who Barney was forced to kill… or so he thought. Stonebanks, who eluded death once before, now is making it his mission to end The Expendables -- but Barney has other plans. Barney decides that he has to fight old blood with new blood, and brings in a new era of Expendables team members, recruiting individuals who are younger, faster and more tech-savvy. The latest mission becomes a clash of classic old-school style versus high-tech expertise in the Expendables’ most personal battle yet.. Tags: cia, arms dealer, sequel, rescue mission, hospital, battle, sledgehammer, revolver"} +{"id": "257088", "title": "Point Break", "year": 2015, "duration_min": 114, "rating": 5.5, "genres": "Action, Crime, Thriller", "genres_pipe": "|Action|Crime|Thriller|", "keywords": "undercover, undercover agent, extreme sports, fbi agent, 3d", "tags_pipe": "|undercover|undercover agent|extreme sports|fbi agent|3d|", "overview": "A young undercover FBI agent infiltrates a gang of thieves who share a common interest in extreme sports. A remake of the 1991 film, \"Point Break\".", "text_for_embedding": "Point Break (2015). Genres: Action, Crime, Thriller. A young undercover FBI agent infiltrates a gang of thieves who share a common interest in extreme sports. A remake of the 1991 film, \"Point Break\".. Tags: undercover, undercover agent, extreme sports, fbi agent, 3d"} +{"id": "10214", "title": "Son of the Mask", "year": 2005, "duration_min": 94, "rating": 3.6, "genres": "Fantasy, Comedy, Family, Adventure", "genres_pipe": "|Fantasy|Comedy|Family|Adventure|", "keywords": "baby, mask, viking", "tags_pipe": "|baby|mask|viking|", "overview": "Tim Avery, an aspiring cartoonist, finds himself in a predicament when his dog stumbles upon the mask of Loki. Then after conceiving an infant son \"born of the mask\", he discovers just how looney child raising can be.", "text_for_embedding": "Son of the Mask (2005). Genres: Fantasy, Comedy, Family, Adventure. Tim Avery, an aspiring cartoonist, finds himself in a predicament when his dog stumbles upon the mask of Loki. Then after conceiving an infant son \"born of the mask\", he discovers just how looney child raising can be.. Tags: baby, mask, viking"} +{"id": "205775", "title": "In the Heart of the Sea", "year": 2015, "duration_min": 122, "rating": 6.5, "genres": "Thriller, Drama, Adventure, Action, History", "genres_pipe": "|Thriller|Drama|Adventure|Action|History|", "keywords": "suicide, ocean, sea, hunger, shipwreck, ship, whale, based on true story, stranded, survival, whaling, death, new england, lost at sea, based on true events", "tags_pipe": "|suicide|ocean|sea|hunger|shipwreck|ship|whale|based on true story|stranded|survival|whaling|death|new england|lost at sea|based on true events|", "overview": "In the winter of 1820, the New England whaling ship Essex was assaulted by something no one could believe: a whale of mammoth size and will, and an almost human sense of vengeance. The real-life maritime disaster would inspire Herman Melville’s Moby Dick.  But that told only half the story.  “Heart of the Sea” reveals the encounter’s harrowing aftermath, as the ship’s surviving crew is pushed to their limits and forced to do the unthinkable to stay alive.  Braving storms, starvation, panic and despair, the men will call into question their deepest beliefs, from the value of their lives to the morality of their trade, as their captain searches for direction on the open sea and his first mate still seeks to bring the great whale down.", "text_for_embedding": "In the Heart of the Sea (2015). Genres: Thriller, Drama, Adventure, Action, History. In the winter of 1820, the New England whaling ship Essex was assaulted by something no one could believe: a whale of mammoth size and will, and an almost human sense of vengeance. The real-life maritime disaster would inspire Herman Melville’s Moby Dick.  But that told only half the story.  “Heart of the Sea” reveals the encounter’s harrowing aftermath, as the ship’s surviving crew is pushed to their limits and forced to do the unthinkable to stay alive.  Braving storms, starvation, panic and despair, the men will call into question their deepest beliefs, from the value of their lives to the morality of their trade, as their captain searches for direction on the open sea and his first mate still seeks to bring the great whale down.. Tags: suicide, ocean, sea, hunger, shipwreck, ship, whale, based on true story, stranded, survival, whaling, death, new england, lost at sea, based on true events"} +{"id": "11692", "title": "The Adventures of Pluto Nash", "year": 2002, "duration_min": 95, "rating": 4.4, "genres": "Action, Comedy, Science Fiction", "genres_pipe": "|Action|Comedy|Science Fiction|", "keywords": "moon, casino, bar, nightclub, future, mafia boss, laser gun", "tags_pipe": "|moon|casino|bar|nightclub|future|mafia boss|laser gun|", "overview": "The year is 2087, the setting is the moon. Pluto Nash, the high-flying successful owner of the hottest nightclub in the universe, finds himself in trouble when he refuses to sell his club to lunar gangster Mogan, who just happens to be helping the mysterious Rex Crater mastermind a plan to take over the entire moon.", "text_for_embedding": "The Adventures of Pluto Nash (2002). Genres: Action, Comedy, Science Fiction. The year is 2087, the setting is the moon. Pluto Nash, the high-flying successful owner of the hottest nightclub in the universe, finds himself in trouble when he refuses to sell his club to lunar gangster Mogan, who just happens to be helping the mysterious Rex Crater mastermind a plan to take over the entire moon.. Tags: moon, casino, bar, nightclub, future, mafia boss, laser gun"} +{"id": "22972", "title": "Green Zone", "year": 2010, "duration_min": 115, "rating": 6.4, "genres": "War, Action, Adventure, Drama, Thriller", "genres_pipe": "|War|Action|Adventure|Drama|Thriller|", "keywords": "weapon of mass destruction, baghdad, iraqi ", "tags_pipe": "|weapon of mass destruction|baghdad|iraqi |", "overview": "During the U.S.-led occupation of Baghdad in 2003, Chief Warrant Officer Roy Miller and his team of Army inspectors were dispatched to find weapons of mass destruction believed to be stockpiled in the Iraqi desert. Rocketing from one booby-trapped and treacherous site to the next, the men search for deadly chemical agents but stumble instead upon an elaborate cover-up that threatens to invert the purpose of their mission.", "text_for_embedding": "Green Zone (2010). Genres: War, Action, Adventure, Drama, Thriller. During the U.S.-led occupation of Baghdad in 2003, Chief Warrant Officer Roy Miller and his team of Army inspectors were dispatched to find weapons of mass destruction believed to be stockpiled in the Iraqi desert. Rocketing from one booby-trapped and treacherous site to the next, the men search for deadly chemical agents but stumble instead upon an elaborate cover-up that threatens to invert the purpose of their mission.. Tags: weapon of mass destruction, baghdad, iraqi "} +{"id": "227973", "title": "The Peanuts Movie", "year": 2015, "duration_min": 88, "rating": 6.5, "genres": "Animation", "genres_pipe": "|Animation|", "keywords": "based on comic strip, family, 3d, charlie brown, snoopy", "tags_pipe": "|based on comic strip|family|3d|charlie brown|snoopy|", "overview": "Snoopy embarks upon his greatest mission as he and his team take to the skies to pursue their arch-nemesis, while his best pal Charlie Brown begins his own epic quest back home.", "text_for_embedding": "The Peanuts Movie (2015). Genres: Animation. Snoopy embarks upon his greatest mission as he and his team take to the skies to pursue their arch-nemesis, while his best pal Charlie Brown begins his own epic quest back home.. Tags: based on comic strip, family, 3d, charlie brown, snoopy"} +{"id": "29193", "title": "The Spanish Prisoner", "year": 1997, "duration_min": 110, "rating": 7.1, "genres": "Crime, Drama, Mystery, Thriller", "genres_pipe": "|Crime|Drama|Mystery|Thriller|", "keywords": "dialogue, confidence, invention, independent film", "tags_pipe": "|dialogue|confidence|invention|independent film|", "overview": "An employee of a corporation with a lucrative secret process is tempted to betray it. But there's more to it than that.", "text_for_embedding": "The Spanish Prisoner (1997). Genres: Crime, Drama, Mystery, Thriller. An employee of a corporation with a lucrative secret process is tempted to betray it. But there's more to it than that.. Tags: dialogue, confidence, invention, independent film"} +{"id": "1734", "title": "The Mummy Returns", "year": 2001, "duration_min": 130, "rating": 6.0, "genres": "Adventure, Action, Fantasy", "genres_pipe": "|Adventure|Action|Fantasy|", "keywords": "son, ancient egypt, bracelet", "tags_pipe": "|son|ancient egypt|bracelet|", "overview": "Rick and Evelyn O'Connell, along with their 8 year old son Alex, discover the key to the legendary Scorpion King's might, the fabled Bracelet of Anubis. Unfortunately, a newly resurrected Imhotep has designs on the bracelet as well, and isn't above kidnapping its new bearer, Alex, to gain control of Anubis' otherworldly army.", "text_for_embedding": "The Mummy Returns (2001). Genres: Adventure, Action, Fantasy. Rick and Evelyn O'Connell, along with their 8 year old son Alex, discover the key to the legendary Scorpion King's might, the fabled Bracelet of Anubis. Unfortunately, a newly resurrected Imhotep has designs on the bracelet as well, and isn't above kidnapping its new bearer, Alex, to gain control of Anubis' otherworldly army.. Tags: son, ancient egypt, bracelet"} +{"id": "3131", "title": "Gangs of New York", "year": 2002, "duration_min": 167, "rating": 7.1, "genres": "Drama, History, Crime", "genres_pipe": "|Drama|History|Crime|", "keywords": "fire, irish-american, immigrant, gang war, pickpocket, ship, gang of thieves, butcher, pig, army, rescue, gang", "tags_pipe": "|fire|irish-american|immigrant|gang war|pickpocket|ship|gang of thieves|butcher|pig|army|rescue|gang|", "overview": "It's 1863. America was born in the streets. Amsterdam Vallon returns to the Five Points of America to seek vengeance against the psychotic gangland kingpin, Bill the Butcher, who murdered his father years earlier. With an eager pickpocket by his side and a whole new army, Vallon fights his way to seek vengeance on the Butcher and restore peace in the area.", "text_for_embedding": "Gangs of New York (2002). Genres: Drama, History, Crime. It's 1863. America was born in the streets. Amsterdam Vallon returns to the Five Points of America to seek vengeance against the psychotic gangland kingpin, Bill the Butcher, who murdered his father years earlier. With an eager pickpocket by his side and a whole new army, Vallon fights his way to seek vengeance on the Butcher and restore peace in the area.. Tags: fire, irish-american, immigrant, gang war, pickpocket, ship, gang of thieves, butcher, pig, army, rescue, gang"} +{"id": "76758", "title": "The Flowers of War", "year": 2011, "duration_min": 145, "rating": 7.1, "genres": "Drama, History, War", "genres_pipe": "|Drama|History|War|", "keywords": "forced prostitution, child rape", "tags_pipe": "|forced prostitution|child rape|", "overview": "A Westerner finds refuge with a group of women in a church during Japan's rape of Nanking in 1937. Posing as a priest, he attempts to lead the women to safety.", "text_for_embedding": "The Flowers of War (2011). Genres: Drama, History, War. A Westerner finds refuge with a group of women in a church during Japan's rape of Nanking in 1937. Posing as a priest, he attempts to lead the women to safety.. Tags: forced prostitution, child rape"} +{"id": "9408", "title": "Surf's Up", "year": 2007, "duration_min": 85, "rating": 5.9, "genres": "Animation, Comedy, Family", "genres_pipe": "|Animation|Comedy|Family|", "keywords": "sea, world cup, surfer, wave, surfboard, giant wave, world champion, idol, mockumentary", "tags_pipe": "|sea|world cup|surfer|wave|surfboard|giant wave|world champion|idol|mockumentary|", "overview": "Cody is a surfing penguin from Shiverpool who dreams of making it big and being like his idol Big Z. On his journey he discovers his talents are not all he thinks they are and he must learn to accept that their is more to surfing than fame and fortune. Surf's Up is a 2007 American computer-animated mockumentary film produced by Sony Pictures Animation and distributed by Columbia Pictures and ImageWorks Studios. It stars the voices of Shia LaBeouf, Jeff Bridges, Zooey Deschanel, Jon Heder among others.", "text_for_embedding": "Surf's Up (2007). Genres: Animation, Comedy, Family. Cody is a surfing penguin from Shiverpool who dreams of making it big and being like his idol Big Z. On his journey he discovers his talents are not all he thinks they are and he must learn to accept that their is more to surfing than fame and fortune. Surf's Up is a 2007 American computer-animated mockumentary film produced by Sony Pictures Animation and distributed by Columbia Pictures and ImageWorks Studios. It stars the voices of Shia LaBeouf, Jeff Bridges, Zooey Deschanel, Jon Heder among others.. Tags: sea, world cup, surfer, wave, surfboard, giant wave, world champion, idol, mockumentary"} +{"id": "9890", "title": "The Stepford Wives", "year": 2004, "duration_min": 93, "rating": 5.4, "genres": "Action, Comedy, Science Fiction", "genres_pipe": "|Action|Comedy|Science Fiction|", "keywords": "android, housewife, transformation", "tags_pipe": "|android|housewife|transformation|", "overview": "What does it take to become a Stepford wife, a woman perfect beyond belief? Ask the Stepford husbands, who've created this high-tech, terrifying little town.", "text_for_embedding": "The Stepford Wives (2004). Genres: Action, Comedy, Science Fiction. What does it take to become a Stepford wife, a woman perfect beyond belief? Ask the Stepford husbands, who've created this high-tech, terrifying little town.. Tags: android, housewife, transformation"} +{"id": "855", "title": "Black Hawk Down", "year": 2001, "duration_min": 144, "rating": 7.2, "genres": "Action, History, War", "genres_pipe": "|Action|History|War|", "keywords": "prisoners of war, wound, somalia, warlord, famine, delta force, rescue operation", "tags_pipe": "|prisoners of war|wound|somalia|warlord|famine|delta force|rescue operation|", "overview": "When U.S. Rangers and an elite Delta Force team attempt to kidnap two underlings of a Somali warlord, their Black Hawk helicopters are shot down, and the Americans suffer heavy casualties, facing intense fighting from the militia on the ground.", "text_for_embedding": "Black Hawk Down (2001). Genres: Action, History, War. When U.S. Rangers and an elite Delta Force team attempt to kidnap two underlings of a Somali warlord, their Black Hawk helicopters are shot down, and the Americans suffer heavy casualties, facing intense fighting from the militia on the ground.. Tags: prisoners of war, wound, somalia, warlord, famine, delta force, rescue operation"} +{"id": "77953", "title": "The Campaign", "year": 2012, "duration_min": 85, "rating": 5.6, "genres": "Comedy", "genres_pipe": "|Comedy|", "keywords": "politics, politician, election campaign,  north carolinam, congressman, political candidate, moustache, political corruption, campaign manager, campaign finance", "tags_pipe": "|politics|politician|election campaign| north carolinam|congressman|political candidate|moustache|political corruption|campaign manager|campaign finance|", "overview": "Two rival politicians compete to win an election to represent their small North Carolina congressional district in the United States House of Representatives.", "text_for_embedding": "The Campaign (2012). Genres: Comedy. Two rival politicians compete to win an election to represent their small North Carolina congressional district in the United States House of Representatives.. Tags: politics, politician, election campaign,  north carolinam, congressman, political candidate, moustache, political corruption, campaign manager, campaign finance"} +{"id": "18", "title": "The Fifth Element", "year": 1997, "duration_min": 126, "rating": 7.3, "genres": "Adventure, Fantasy, Action, Thriller, Science Fiction", "genres_pipe": "|Adventure|Fantasy|Action|Thriller|Science Fiction|", "keywords": "clone, taxi, cyborg, egypt, future, stowaway, space travel, race against time, arms dealer, love, alien, priest, end of the world, good vs evil, shootout", "tags_pipe": "|clone|taxi|cyborg|egypt|future|stowaway|space travel|race against time|arms dealer|love|alien|priest|end of the world|good vs evil|shootout|", "overview": "In 2257, a taxi driver is unintentionally given the task of saving a young girl who is part of the key that will ensure the survival of humanity.", "text_for_embedding": "The Fifth Element (1997). Genres: Adventure, Fantasy, Action, Thriller, Science Fiction. In 2257, a taxi driver is unintentionally given the task of saving a young girl who is part of the key that will ensure the survival of humanity.. Tags: clone, taxi, cyborg, egypt, future, stowaway, space travel, race against time, arms dealer, love, alien, priest, end of the world, good vs evil, shootout"} +{"id": "37786", "title": "Sex and the City 2", "year": 2010, "duration_min": 146, "rating": 5.4, "genres": "Comedy, Drama, Romance", "genres_pipe": "|Comedy|Drama|Romance|", "keywords": "", "tags_pipe": "", "overview": "Carrie, Charlotte, and Miranda are all married now, but they're still up for a little fun in the sun. When Samantha gets the chance to visit one of the most extravagant vacation destinations on the planet and offers to bring them all along, they surmise that a women-only retreat may be the perfect excuse to eschew their responsibilities and remember what life was like before they decided to settle down.", "text_for_embedding": "Sex and the City 2 (2010). Genres: Comedy, Drama, Romance. Carrie, Charlotte, and Miranda are all married now, but they're still up for a little fun in the sun. When Samantha gets the chance to visit one of the most extravagant vacation destinations on the planet and offers to bring them all along, they surmise that a women-only retreat may be the perfect excuse to eschew their responsibilities and remember what life was like before they decided to settle down.. Tags: "} +{"id": "10501", "title": "The Road to El Dorado", "year": 2000, "duration_min": 89, "rating": 7.0, "genres": "Adventure, Animation, Comedy, Family", "genres_pipe": "|Adventure|Animation|Comedy|Family|", "keywords": "gold, horse, sword fight", "tags_pipe": "|gold|horse|sword fight|", "overview": "After a failed swindle, two con-men end up with a map to El Dorado, the fabled \"city of gold,\" and an unintended trip to the New World. Much to their surprise, the map does lead the pair to the mythical city, where the startled inhabitants promptly begin to worship them as gods. The only question is, do they take the worshipful natives for all they're worth, or is there a bit more to El Dorado than riches?", "text_for_embedding": "The Road to El Dorado (2000). Genres: Adventure, Animation, Comedy, Family. After a failed swindle, two con-men end up with a map to El Dorado, the fabled \"city of gold,\" and an unintended trip to the New World. Much to their surprise, the map does lead the pair to the mythical city, where the startled inhabitants promptly begin to worship them as gods. The only question is, do they take the worshipful natives for all they're worth, or is there a bit more to El Dorado than riches?. Tags: gold, horse, sword fight"} +{"id": "57800", "title": "Ice Age: Continental Drift", "year": 2012, "duration_min": 88, "rating": 6.2, "genres": "Animation, Comedy, Adventure, Family", "genres_pipe": "|Animation|Comedy|Adventure|Family|", "keywords": "blue footed booby, prehistoric times, melting ice, badger, elephant seal, floating ice, land bridge, era, glaciale, deriva", "tags_pipe": "|blue footed booby|prehistoric times|melting ice|badger|elephant seal|floating ice|land bridge|era|glaciale|deriva|", "overview": "Manny, Diego, and Sid embark upon another adventure after their continent is set adrift. Using an iceberg as a ship, they encounter sea creatures and battle pirates as they explore a new world.", "text_for_embedding": "Ice Age: Continental Drift (2012). Genres: Animation, Comedy, Adventure, Family. Manny, Diego, and Sid embark upon another adventure after their continent is set adrift. Using an iceberg as a ship, they encounter sea creatures and battle pirates as they explore a new world.. Tags: blue footed booby, prehistoric times, melting ice, badger, elephant seal, floating ice, land bridge, era, glaciale, deriva"} +{"id": "150689", "title": "Cinderella", "year": 2015, "duration_min": 105, "rating": 6.7, "genres": "Romance, Fantasy, Family, Drama", "genres_pipe": "|Romance|Fantasy|Family|Drama|", "keywords": "cinderella, magic, prince, fairy tale, kingdom, royalty, orphan, lost shoe, evil stepmother, retelling", "tags_pipe": "|cinderella|magic|prince|fairy tale|kingdom|royalty|orphan|lost shoe|evil stepmother|retelling|", "overview": "When her father unexpectedly passes away, young Ella finds herself at the mercy of her cruel stepmother and her daughters. Never one to give up hope, Ella's fortunes begin to change after meeting a dashing stranger in the woods.", "text_for_embedding": "Cinderella (2015). Genres: Romance, Fantasy, Family, Drama. When her father unexpectedly passes away, young Ella finds herself at the mercy of her cruel stepmother and her daughters. Never one to give up hope, Ella's fortunes begin to change after meeting a dashing stranger in the woods.. Tags: cinderella, magic, prince, fairy tale, kingdom, royalty, orphan, lost shoe, evil stepmother, retelling"} +{"id": "7980", "title": "The Lovely Bones", "year": 2009, "duration_min": 136, "rating": 6.6, "genres": "Fantasy, Drama", "genres_pipe": "|Fantasy|Drama|", "keywords": "rape, 1970s, evidence, tree, afterlife, loss of daughter, serial killer, corpse, pedophile, teenage love, grieving, childhood sexual abuse, based on young adult novel", "tags_pipe": "|rape|1970s|evidence|tree|afterlife|loss of daughter|serial killer|corpse|pedophile|teenage love|grieving|childhood sexual abuse|based on young adult novel|", "overview": "After being brutally murdered, 14-year-old Susie Salmon watches from heaven over her grief-stricken family -- and her killer. As she observes their daily lives, she must balance her thirst for revenge with her desire for her family to heal.", "text_for_embedding": "The Lovely Bones (2009). Genres: Fantasy, Drama. After being brutally murdered, 14-year-old Susie Salmon watches from heaven over her grief-stricken family -- and her killer. As she observes their daily lives, she must balance her thirst for revenge with her desire for her family to heal.. Tags: rape, 1970s, evidence, tree, afterlife, loss of daughter, serial killer, corpse, pedophile, teenage love, grieving, childhood sexual abuse, based on young adult novel"} +{"id": "12", "title": "Finding Nemo", "year": 2003, "duration_min": 100, "rating": 7.6, "genres": "Animation, Family", "genres_pipe": "|Animation|Family|", "keywords": "father son relationship, harbor, underwater, fish tank, great barrier reef, missing child, aftercreditsstinger, duringcreditsstinger, short term memory loss, clownfish, father son reunion, protective father", "tags_pipe": "|father son relationship|harbor|underwater|fish tank|great barrier reef|missing child|aftercreditsstinger|duringcreditsstinger|short term memory loss|clownfish|father son reunion|protective father|", "overview": "Nemo, an adventurous young clownfish, is unexpectedly taken from his Great Barrier Reef home to a dentist's office aquarium. It's up to his worrisome father Marlin and a friendly but forgetful fish Dory to bring Nemo home -- meeting vegetarian sharks, surfer dude turtles, hypnotic jellyfish, hungry seagulls, and more along the way.", "text_for_embedding": "Finding Nemo (2003). Genres: Animation, Family. Nemo, an adventurous young clownfish, is unexpectedly taken from his Great Barrier Reef home to a dentist's office aquarium. It's up to his worrisome father Marlin and a friendly but forgetful fish Dory to bring Nemo home -- meeting vegetarian sharks, surfer dude turtles, hypnotic jellyfish, hungry seagulls, and more along the way.. Tags: father son relationship, harbor, underwater, fish tank, great barrier reef, missing child, aftercreditsstinger, duringcreditsstinger, short term memory loss, clownfish, father son reunion, protective father"} +{"id": "122", "title": "The Lord of the Rings: The Return of the King", "year": 2003, "duration_min": 201, "rating": 8.1, "genres": "Adventure, Fantasy, Action", "genres_pipe": "|Adventure|Fantasy|Action|", "keywords": "elves, orcs, middle-earth (tolkien), based on novel, suspicion, bravery, war, honor, troll, brutality, violence, ghost, end of trilogy, quest, sword and sorcery", "tags_pipe": "|elves|orcs|middle-earth (tolkien)|based on novel|suspicion|bravery|war|honor|troll|brutality|violence|ghost|end of trilogy|quest|sword and sorcery|", "overview": "Aragorn is revealed as the heir to the ancient kings as he, Gandalf and the other members of the broken fellowship struggle to save Gondor from Sauron's forces. Meanwhile, Frodo and Sam bring the ring closer to the heart of Mordor, the dark lord's realm.", "text_for_embedding": "The Lord of the Rings: The Return of the King (2003). Genres: Adventure, Fantasy, Action. Aragorn is revealed as the heir to the ancient kings as he, Gandalf and the other members of the broken fellowship struggle to save Gondor from Sauron's forces. Meanwhile, Frodo and Sam bring the ring closer to the heart of Mordor, the dark lord's realm.. Tags: elves, orcs, middle-earth (tolkien), based on novel, suspicion, bravery, war, honor, troll, brutality, violence, ghost, end of trilogy, quest, sword and sorcery"} +{"id": "121", "title": "The Lord of the Rings: The Two Towers", "year": 2002, "duration_min": 179, "rating": 8.0, "genres": "Adventure, Fantasy, Action", "genres_pipe": "|Adventure|Fantasy|Action|", "keywords": "elves, orcs, middle-earth (tolkien), hobbit, based on novel, explosive, cave, fort, army, mission, attack, guide, wizard, ring, sword and sorcery", "tags_pipe": "|elves|orcs|middle-earth (tolkien)|hobbit|based on novel|explosive|cave|fort|army|mission|attack|guide|wizard|ring|sword and sorcery|", "overview": "Frodo and Sam are trekking to Mordor to destroy the One Ring of Power while Gimli, Legolas and Aragorn search for the orc-captured Merry and Pippin. All along, nefarious wizard Saruman awaits the Fellowship members at the Orthanc Tower in Isengard.", "text_for_embedding": "The Lord of the Rings: The Two Towers (2002). Genres: Adventure, Fantasy, Action. Frodo and Sam are trekking to Mordor to destroy the One Ring of Power while Gimli, Legolas and Aragorn search for the orc-captured Merry and Pippin. All along, nefarious wizard Saruman awaits the Fellowship members at the Orthanc Tower in Isengard.. Tags: elves, orcs, middle-earth (tolkien), hobbit, based on novel, explosive, cave, fort, army, mission, attack, guide, wizard, ring, sword and sorcery"} +{"id": "68737", "title": "Seventh Son", "year": 2014, "duration_min": 102, "rating": 5.2, "genres": "Adventure, Fantasy", "genres_pipe": "|Adventure|Fantasy|", "keywords": "magic, chosen one, dark fantasy, witch hunter, evil witch, based on young adult novel, sword and sorcery", "tags_pipe": "|magic|chosen one|dark fantasy|witch hunter|evil witch|based on young adult novel|sword and sorcery|", "overview": "John Gregory, who is a seventh son of a seventh son and also the local spook, has protected the country from witches, boggarts, ghouls and all manner of things that go bump in the night. However John is not young anymore, and has been seeking an apprentice to carry on his trade. Most have failed to survive. The last hope is a young farmer's son named Thomas Ward. Will he survive the training to become the spook that so many others couldn't?", "text_for_embedding": "Seventh Son (2014). Genres: Adventure, Fantasy. John Gregory, who is a seventh son of a seventh son and also the local spook, has protected the country from witches, boggarts, ghouls and all manner of things that go bump in the night. However John is not young anymore, and has been seeking an apprentice to carry on his trade. Most have failed to survive. The last hope is a young farmer's son named Thomas Ward. Will he survive the training to become the spook that so many others couldn't?. Tags: magic, chosen one, dark fantasy, witch hunter, evil witch, based on young adult novel, sword and sorcery"} +{"id": "1995", "title": "Lara Croft: Tomb Raider", "year": 2001, "duration_min": 100, "rating": 5.7, "genres": "Adventure, Fantasy, Action, Thriller", "genres_pipe": "|Adventure|Fantasy|Action|Thriller|", "keywords": "treasure, buddhist monk, planetary configuration, angkor wat, illuminati, william blake, treasure hunt, archaeologist, based on video game, archeology ", "tags_pipe": "|treasure|buddhist monk|planetary configuration|angkor wat|illuminati|william blake|treasure hunt|archaeologist|based on video game|archeology |", "overview": "English aristocrat Lara Croft is skilled in hand-to-hand combat and in the middle of a battle with a secret society. The shapely archaeologist moonlights as a tomb raider to recover lost antiquities and meets her match in the evil Powell, who's in search of a powerful relic.", "text_for_embedding": "Lara Croft: Tomb Raider (2001). Genres: Adventure, Fantasy, Action, Thriller. English aristocrat Lara Croft is skilled in hand-to-hand combat and in the middle of a battle with a secret society. The shapely archaeologist moonlights as a tomb raider to recover lost antiquities and meets her match in the evil Powell, who's in search of a powerful relic.. Tags: treasure, buddhist monk, planetary configuration, angkor wat, illuminati, william blake, treasure hunt, archaeologist, based on video game, archeology "} +{"id": "157353", "title": "Transcendence", "year": 2014, "duration_min": 119, "rating": 5.9, "genres": "Thriller, Science Fiction, Drama, Mystery", "genres_pipe": "|Thriller|Science Fiction|Drama|Mystery|", "keywords": "artificial intelligence, technology, nanotechnology, computer virus, super computer, resurrection, love, mind control, terrorism, scientist, extremist, moral dilemma, computer scientist, mind transfer, quantum computer", "tags_pipe": "|artificial intelligence|technology|nanotechnology|computer virus|super computer|resurrection|love|mind control|terrorism|scientist|extremist|moral dilemma|computer scientist|mind transfer|quantum computer|", "overview": "Two leading computer scientists work toward their goal of Technological Singularity, as a radical anti-technology organization fights to prevent them from creating a world where computers can transcend the abilities of the human brain.", "text_for_embedding": "Transcendence (2014). Genres: Thriller, Science Fiction, Drama, Mystery. Two leading computer scientists work toward their goal of Technological Singularity, as a radical anti-technology organization fights to prevent them from creating a world where computers can transcend the abilities of the human brain.. Tags: artificial intelligence, technology, nanotechnology, computer virus, super computer, resurrection, love, mind control, terrorism, scientist, extremist, moral dilemma, computer scientist, mind transfer, quantum computer"} +{"id": "331", "title": "Jurassic Park III", "year": 2001, "duration_min": 92, "rating": 5.7, "genres": "Adventure, Action, Thriller, Science Fiction", "genres_pipe": "|Adventure|Action|Thriller|Science Fiction|", "keywords": "exotic island, dna, paleontology, tyrannosaurus rex, velociraptor, spinosaurus, airplane, rescue, mission, dinosaur, jurassic park", "tags_pipe": "|exotic island|dna|paleontology|tyrannosaurus rex|velociraptor|spinosaurus|airplane|rescue|mission|dinosaur|jurassic park|", "overview": "In need of funds for research, Dr. Alan Grant accepts a large sum of money to accompany Paul and Amanda Kirby on an aerial tour of the infamous Isla Sorna. It isn't long before all hell breaks loose and the stranded wayfarers must fight for survival as a host of new -- and even more deadly -- dinosaurs try to make snacks of them.", "text_for_embedding": "Jurassic Park III (2001). Genres: Adventure, Action, Thriller, Science Fiction. In need of funds for research, Dr. Alan Grant accepts a large sum of money to accompany Paul and Amanda Kirby on an aerial tour of the infamous Isla Sorna. It isn't long before all hell breaks loose and the stranded wayfarers must fight for survival as a host of new -- and even more deadly -- dinosaurs try to make snacks of them.. Tags: exotic island, dna, paleontology, tyrannosaurus rex, velociraptor, spinosaurus, airplane, rescue, mission, dinosaur, jurassic park"} +{"id": "61791", "title": "Rise of the Planet of the Apes", "year": 2011, "duration_min": 105, "rating": 7.0, "genres": "Thriller, Action, Drama, Science Fiction", "genres_pipe": "|Thriller|Action|Drama|Science Fiction|", "keywords": "intelligence, zoo, cage, dystopia, golden gate bridge, ape, monkey, medical research, alzheimer's disease", "tags_pipe": "|intelligence|zoo|cage|dystopia|golden gate bridge|ape|monkey|medical research|alzheimer's disease|", "overview": "Scientist Will Rodman is determined to find a cure for Alzheimer's, the disease which has slowly consumed his father. Will feels certain he is close to a breakthrough and tests his latest serum on apes, noticing dramatic increases in intelligence and brain activity in the primate subjects – especially Caesar, his pet chimpanzee.", "text_for_embedding": "Rise of the Planet of the Apes (2011). Genres: Thriller, Action, Drama, Science Fiction. Scientist Will Rodman is determined to find a cure for Alzheimer's, the disease which has slowly consumed his father. Will feels certain he is close to a breakthrough and tests his latest serum on apes, noticing dramatic increases in intelligence and brain activity in the primate subjects – especially Caesar, his pet chimpanzee.. Tags: intelligence, zoo, cage, dystopia, golden gate bridge, ape, monkey, medical research, alzheimer's disease"} +{"id": "8204", "title": "The Spiderwick Chronicles", "year": 2008, "duration_min": 95, "rating": 6.3, "genres": "Adventure, Family, Fantasy", "genres_pipe": "|Adventure|Family|Fantasy|", "keywords": "brother sister relationship, family relationships, single mother, alternate reality, mother child relationship, hidden truth, goblin, magical creature, fairies", "tags_pipe": "|brother sister relationship|family relationships|single mother|alternate reality|mother child relationship|hidden truth|goblin|magical creature|fairies|", "overview": "Upon moving into the run-down Spiderwick Estate with their mother, twin brothers Jared and Simon Grace, along with their sister Mallory, find themselves pulled into an alternate world full of faeries and other creatures.", "text_for_embedding": "The Spiderwick Chronicles (2008). Genres: Adventure, Family, Fantasy. Upon moving into the run-down Spiderwick Estate with their mother, twin brothers Jared and Simon Grace, along with their sister Mallory, find themselves pulled into an alternate world full of faeries and other creatures.. Tags: brother sister relationship, family relationships, single mother, alternate reality, mother child relationship, hidden truth, goblin, magical creature, fairies"} +{"id": "47964", "title": "A Good Day to Die Hard", "year": 2013, "duration_min": 98, "rating": 5.2, "genres": "Action, Thriller", "genres_pipe": "|Action|Thriller|", "keywords": "bomb, cia, russia, escape, courthouse, rogue, moscow", "tags_pipe": "|bomb|cia|russia|escape|courthouse|rogue|moscow|", "overview": "Iconoclastic, take-no-prisoners cop John McClane, finds himself for the first time on foreign soil after traveling to Moscow to help his wayward son Jack - unaware that Jack is really a highly-trained CIA operative out to stop a nuclear weapons heist. With the Russian underworld in pursuit, and battling a countdown to war, the two McClanes discover that their opposing methods make them unstoppable heroes.", "text_for_embedding": "A Good Day to Die Hard (2013). Genres: Action, Thriller. Iconoclastic, take-no-prisoners cop John McClane, finds himself for the first time on foreign soil after traveling to Moscow to help his wayward son Jack - unaware that Jack is really a highly-trained CIA operative out to stop a nuclear weapons heist. With the Russian underworld in pursuit, and battling a countdown to war, the two McClanes discover that their opposing methods make them unstoppable heroes.. Tags: bomb, cia, russia, escape, courthouse, rogue, moscow"} +{"id": "10733", "title": "The Alamo", "year": 2004, "duration_min": 137, "rating": 5.8, "genres": "Western, History, War", "genres_pipe": "|Western|History|War|", "keywords": "texas, officer, uprising, alamo, mexican", "tags_pipe": "|texas|officer|uprising|alamo|mexican|", "overview": "Based on the 1836 standoff between a group of Texan and Tejano men, led by Davy Crockett and Jim Bowie, and Mexican dictator Santa Anna's forces at the Alamo in San Antonio, Texas.", "text_for_embedding": "The Alamo (2004). Genres: Western, History, War. Based on the 1836 standoff between a group of Texan and Tejano men, led by Davy Crockett and Jim Bowie, and Mexican dictator Santa Anna's forces at the Alamo in San Antonio, Texas.. Tags: texas, officer, uprising, alamo, mexican"} +{"id": "9806", "title": "The Incredibles", "year": 2004, "duration_min": 115, "rating": 7.4, "genres": "Action, Adventure, Animation, Family", "genres_pipe": "|Action|Adventure|Animation|Family|", "keywords": "secret identity, secret, hero, island, wretch, supernatural powers, weapon, lawsuit, superhero", "tags_pipe": "|secret identity|secret|hero|island|wretch|supernatural powers|weapon|lawsuit|superhero|", "overview": "Bob Parr has given up his superhero days to log in time as an insurance adjuster and raise his three children with his formerly heroic wife in suburbia. But when he receives a mysterious assignment, it's time to get back into costume.", "text_for_embedding": "The Incredibles (2004). Genres: Action, Adventure, Animation, Family. Bob Parr has given up his superhero days to log in time as an insurance adjuster and raise his three children with his formerly heroic wife in suburbia. But when he receives a mysterious assignment, it's time to get back into costume.. Tags: secret identity, secret, hero, island, wretch, supernatural powers, weapon, lawsuit, superhero"} +{"id": "1408", "title": "Cutthroat Island", "year": 1995, "duration_min": 119, "rating": 5.7, "genres": "Action, Adventure", "genres_pipe": "|Action|Adventure|", "keywords": "exotic island, treasure, map, ship, scalp, pirate", "tags_pipe": "|exotic island|treasure|map|ship|scalp|pirate|", "overview": "Morgan Adams and her slave, William Shaw, are on a quest to recover the three portions of a treasure map. Unfortunately, the final portion is held by her murderous uncle, Dawg. Her crew is skeptical of her leadership abilities, so she must complete her quest before they mutiny against her. This is made yet more difficult by the efforts of the British crown to end her pirate raids.", "text_for_embedding": "Cutthroat Island (1995). Genres: Action, Adventure. Morgan Adams and her slave, William Shaw, are on a quest to recover the three portions of a treasure map. Unfortunately, the final portion is held by her murderous uncle, Dawg. Her crew is skeptical of her leadership abilities, so she must complete her quest before they mutiny against her. This is made yet more difficult by the efforts of the British crown to end her pirate raids.. Tags: exotic island, treasure, map, ship, scalp, pirate"} +{"id": "32657", "title": "Percy Jackson & the Olympians: The Lightning Thief", "year": 2010, "duration_min": 118, "rating": 6.0, "genres": "Adventure, Fantasy, Family", "genres_pipe": "|Adventure|Fantasy|Family|", "keywords": "monster, greek mythology, god, poseidon  , lightning bolt, based on young adult novel", "tags_pipe": "|monster|greek mythology|god|poseidon  |lightning bolt|based on young adult novel|", "overview": "Accident prone teenager, Percy discovers he's actually a demi-God, the son of Poseidon, and he is needed when Zeus' lightning is stolen. Percy must master his new found skills in order to prevent a war between the Gods that could devastate the entire world.", "text_for_embedding": "Percy Jackson & the Olympians: The Lightning Thief (2010). Genres: Adventure, Fantasy, Family. Accident prone teenager, Percy discovers he's actually a demi-God, the son of Poseidon, and he is needed when Zeus' lightning is stolen. Percy must master his new found skills in order to prevent a war between the Gods that could devastate the entire world.. Tags: monster, greek mythology, god, poseidon  , lightning bolt, based on young adult novel"} +{"id": "607", "title": "Men in Black", "year": 1997, "duration_min": 98, "rating": 6.9, "genres": "Action, Adventure, Comedy, Science Fiction", "genres_pipe": "|Action|Adventure|Comedy|Science Fiction|", "keywords": "secret identity, sun glasses, undercover, space marine, illegal immigration, deportation, new identity, giant cockroach, cannon, flying saucer, stay permit, alien, fictional government agency", "tags_pipe": "|secret identity|sun glasses|undercover|space marine|illegal immigration|deportation|new identity|giant cockroach|cannon|flying saucer|stay permit|alien|fictional government agency|", "overview": "Men in Black follows the exploits of agents Kay and Jay, members of a top-secret organization established to monitor and police alien activity on Earth. The two Men in Black find themselves in the middle of the deadly plot by an intergalactic terrorist who has arrived on Earth to assassinate two ambassadors from opposing galaxies. In order to prevent worlds from colliding, the MiB must track down the terrorist and prevent the destruction of Earth. It's just another typical day for the Men in Black.", "text_for_embedding": "Men in Black (1997). Genres: Action, Adventure, Comedy, Science Fiction. Men in Black follows the exploits of agents Kay and Jay, members of a top-secret organization established to monitor and police alien activity on Earth. The two Men in Black find themselves in the middle of the deadly plot by an intergalactic terrorist who has arrived on Earth to assassinate two ambassadors from opposing galaxies. In order to prevent worlds from colliding, the MiB must track down the terrorist and prevent the destruction of Earth. It's just another typical day for the Men in Black.. Tags: secret identity, sun glasses, undercover, space marine, illegal immigration, deportation, new identity, giant cockroach, cannon, flying saucer, stay permit, alien, fictional government agency"} +{"id": "863", "title": "Toy Story 2", "year": 1999, "duration_min": 92, "rating": 7.3, "genres": "Animation, Comedy, Family", "genres_pipe": "|Animation|Comedy|Family|", "keywords": "museum, prosecution, identity crisis, airplane, flea market, collector, teamwork, friendship, rescue team, garage sale, duringcreditsstinger, toy comes to life, personification, inanimate objects coming to life", "tags_pipe": "|museum|prosecution|identity crisis|airplane|flea market|collector|teamwork|friendship|rescue team|garage sale|duringcreditsstinger|toy comes to life|personification|inanimate objects coming to life|", "overview": "Andy heads off to Cowboy Camp, leaving his toys to their own devices. Things shift into high gear when an obsessive toy collector named Al McWhiggen, owner of Al's Toy Barn kidnaps Woody. Andy's toys mount a daring rescue mission, Buzz Lightyear meets his match and Woody has to decide where he and his heart truly belong.", "text_for_embedding": "Toy Story 2 (1999). Genres: Animation, Comedy, Family. Andy heads off to Cowboy Camp, leaving his toys to their own devices. Things shift into high gear when an obsessive toy collector named Al McWhiggen, owner of Al's Toy Barn kidnaps Woody. Andy's toys mount a daring rescue mission, Buzz Lightyear meets his match and Woody has to decide where he and his heart truly belong.. Tags: museum, prosecution, identity crisis, airplane, flea market, collector, teamwork, friendship, rescue team, garage sale, duringcreditsstinger, toy comes to life, personification, inanimate objects coming to life"} +{"id": "44048", "title": "Unstoppable", "year": 2010, "duration_min": 98, "rating": 6.3, "genres": "Action, Thriller", "genres_pipe": "|Action|Thriller|", "keywords": "runaway train", "tags_pipe": "|runaway train|", "overview": "A runaway train, transporting deadly, toxic chemicals, is barreling down on Stanton, Pennsylvania, and only two men can stop it: a veteran engineer and a young conductor. Thousands of lives hang in the balance as these ordinary heroes attempt to chase down one million tons of hurtling steel and prevent an epic disaster.", "text_for_embedding": "Unstoppable (2010). Genres: Action, Thriller. A runaway train, transporting deadly, toxic chemicals, is barreling down on Stanton, Pennsylvania, and only two men can stop it: a veteran engineer and a young conductor. Thousands of lives hang in the balance as these ordinary heroes attempt to chase down one million tons of hurtling steel and prevent an epic disaster.. Tags: runaway train"} +{"id": "5175", "title": "Rush Hour 2", "year": 2001, "duration_min": 90, "rating": 6.4, "genres": "Action, Comedy, Crime, Thriller", "genres_pipe": "|Action|Comedy|Crime|Thriller|", "keywords": "duringcreditsstinger", "tags_pipe": "|duringcreditsstinger|", "overview": "It's vacation time for Carter as he finds himself alongside Lee in Hong Kong wishing for more excitement. While Carter wants to party and meet the ladies, Lee is out to track down a Triad gang lord who may be responsible for killing two men at the American Embassy. Things get complicated as the pair stumble onto a counterfeiting plot. The boys are soon up to their necks in fist fights and life-threatening situations. A trip back to the U.S. may provide the answers about the bombing, the counterfeiting, and the true allegiance of sexy customs agent Isabella.", "text_for_embedding": "Rush Hour 2 (2001). Genres: Action, Comedy, Crime, Thriller. It's vacation time for Carter as he finds himself alongside Lee in Hong Kong wishing for more excitement. While Carter wants to party and meet the ladies, Lee is out to track down a Triad gang lord who may be responsible for killing two men at the American Embassy. Things get complicated as the pair stumble onto a counterfeiting plot. The boys are soon up to their necks in fist fights and life-threatening situations. A trip back to the U.S. may provide the answers about the bombing, the counterfeiting, and the true allegiance of sexy customs agent Isabella.. Tags: duringcreditsstinger"} +{"id": "2655", "title": "What Lies Beneath", "year": 2000, "duration_min": 130, "rating": 6.3, "genres": "Drama, Horror, Mystery, Thriller", "genres_pipe": "|Drama|Horror|Mystery|Thriller|", "keywords": "secret, haunted house, ouija board, haunting, missing girl, ghost", "tags_pipe": "|secret|haunted house|ouija board|haunting|missing girl|ghost|", "overview": "When Claire Spencer starts hearing ghostly voices and seeing spooky images, she wonders if an otherworldly spirit is trying to contact her. All the while, her husband tries to reassure her by telling her it's all in her head. But as Claire investigates, she discovers that the man she loves might know more than he's letting on.", "text_for_embedding": "What Lies Beneath (2000). Genres: Drama, Horror, Mystery, Thriller. When Claire Spencer starts hearing ghostly voices and seeing spooky images, she wonders if an otherworldly spirit is trying to contact her. All the while, her husband tries to reassure her by telling her it's all in her head. But as Claire investigates, she discovers that the man she loves might know more than he's letting on.. Tags: secret, haunted house, ouija board, haunting, missing girl, ghost"} +{"id": "22794", "title": "Cloudy with a Chance of Meatballs", "year": 2009, "duration_min": 90, "rating": 6.5, "genres": "Animation, Comedy, Family", "genres_pipe": "|Animation|Comedy|Family|", "keywords": "weather, food, science", "tags_pipe": "|weather|food|science|", "overview": "Inventor Flint Lockwood creates a machine that makes clouds rain food, enabling the down-and-out citizens of Chewandswallow to feed themselves. But when the falling food reaches gargantuan proportions, Flint must scramble to avert disaster. Can he regain control of the machine and put an end to the wild weather before the town is destroyed?", "text_for_embedding": "Cloudy with a Chance of Meatballs (2009). Genres: Animation, Comedy, Family. Inventor Flint Lockwood creates a machine that makes clouds rain food, enabling the down-and-out citizens of Chewandswallow to feed themselves. But when the falling food reaches gargantuan proportions, Flint must scramble to avert disaster. Can he regain control of the machine and put an end to the wild weather before the town is destroyed?. Tags: weather, food, science"} +{"id": "8355", "title": "Ice Age: Dawn of the Dinosaurs", "year": 2009, "duration_min": 94, "rating": 6.5, "genres": "Animation, Comedy, Family, Adventure", "genres_pipe": "|Animation|Comedy|Family|Adventure|", "keywords": "ice age, bridge, insanity, jungle, dinosaur, birth, duringcreditsstinger, 3d", "tags_pipe": "|ice age|bridge|insanity|jungle|dinosaur|birth|duringcreditsstinger|3d|", "overview": "Times are changing for Manny the moody mammoth, Sid the motor mouthed sloth and Diego the crafty saber-toothed tiger. Life heats up for our heroes when they meet some new and none-too-friendly neighbors – the mighty dinosaurs.", "text_for_embedding": "Ice Age: Dawn of the Dinosaurs (2009). Genres: Animation, Comedy, Family, Adventure. Times are changing for Manny the moody mammoth, Sid the motor mouthed sloth and Diego the crafty saber-toothed tiger. Life heats up for our heroes when they meet some new and none-too-friendly neighbors – the mighty dinosaurs.. Tags: ice age, bridge, insanity, jungle, dinosaur, birth, duringcreditsstinger, 3d"} +{"id": "116745", "title": "The Secret Life of Walter Mitty", "year": 2013, "duration_min": 114, "rating": 7.0, "genres": "Adventure, Comedy, Drama, Fantasy", "genres_pipe": "|Adventure|Comedy|Drama|Fantasy|", "keywords": "himalaya, photographer, magazine, iceland, daydream, photograph, shark, fired from the job, skateboard, dreamer, online dating, daydreaming", "tags_pipe": "|himalaya|photographer|magazine|iceland|daydream|photograph|shark|fired from the job|skateboard|dreamer|online dating|daydreaming|", "overview": "A timid magazine photo manager who lives life vicariously through daydreams embarks on a true-life adventure when a negative goes missing.", "text_for_embedding": "The Secret Life of Walter Mitty (2013). Genres: Adventure, Comedy, Drama, Fantasy. A timid magazine photo manager who lives life vicariously through daydreams embarks on a true-life adventure when a negative goes missing.. Tags: himalaya, photographer, magazine, iceland, daydream, photograph, shark, fired from the job, skateboard, dreamer, online dating, daydreaming"} +{"id": "4327", "title": "Charlie's Angels", "year": 2000, "duration_min": 98, "rating": 5.6, "genres": "Action, Adventure, Comedy, Crime, Thriller", "genres_pipe": "|Action|Adventure|Comedy|Crime|Thriller|", "keywords": "martial arts, female friendship, millionaire, agent", "tags_pipe": "|martial arts|female friendship|millionaire|agent|", "overview": "Aspects of this take on the 1970s hit TV series are similar to the original show :Angels Dylan, Natalie and Alex still work for Charlie and interface with Bosley. They still flip their hair, stop traffic with a smile and kick butt. The differences are the unsubtle humor, the martial arts training and the high-tech premise: This time, they're hot on the trail of stolen software.", "text_for_embedding": "Charlie's Angels (2000). Genres: Action, Adventure, Comedy, Crime, Thriller. Aspects of this take on the 1970s hit TV series are similar to the original show :Angels Dylan, Natalie and Alex still work for Charlie and interface with Bosley. They still flip their hair, stop traffic with a smile and kick butt. The differences are the unsubtle humor, the martial arts training and the high-tech premise: This time, they're hot on the trail of stolen software.. Tags: martial arts, female friendship, millionaire, agent"} +{"id": "1422", "title": "The Departed", "year": 2006, "duration_min": 151, "rating": 7.9, "genres": "Drama, Thriller, Crime", "genres_pipe": "|Drama|Thriller|Crime|", "keywords": "undercover, boston, police, friends, mafia, undercover cop, mobster, mole, state police, police training, realtor", "tags_pipe": "|undercover|boston|police|friends|mafia|undercover cop|mobster|mole|state police|police training|realtor|", "overview": "To take down South Boston's Irish Mafia, the police send in one of their own to infiltrate the underworld, not realizing the syndicate has done likewise. While an undercover cop curries favor with the mob kingpin, a career criminal rises through the police ranks. But both sides soon discover there's a mole among them.", "text_for_embedding": "The Departed (2006). Genres: Drama, Thriller, Crime. To take down South Boston's Irish Mafia, the police send in one of their own to infiltrate the underworld, not realizing the syndicate has done likewise. While an undercover cop curries favor with the mob kingpin, a career criminal rises through the police ranks. But both sides soon discover there's a mole among them.. Tags: undercover, boston, police, friends, mafia, undercover cop, mobster, mole, state police, police training, realtor"} +{"id": "10674", "title": "Mulan", "year": 1998, "duration_min": 88, "rating": 7.6, "genres": "Animation, Family, Adventure", "genres_pipe": "|Animation|Family|Adventure|", "keywords": "homeland, musical, training, daughter, cricket, princess, dragon, luck", "tags_pipe": "|homeland|musical|training|daughter|cricket|princess|dragon|luck|", "overview": "A tomboyish girl disguises herself as a young man so she can fight with the Imperial Chinese Army against the invading Huns. With help from wise-cracking dragon Mushu, Mulan just might save her country -- and win the heart of handsome Captain Li Shang.", "text_for_embedding": "Mulan (1998). Genres: Animation, Family, Adventure. A tomboyish girl disguises herself as a young man so she can fight with the Imperial Chinese Army against the invading Huns. With help from wise-cracking dragon Mushu, Mulan just might save her country -- and win the heart of handsome Captain Li Shang.. Tags: homeland, musical, training, daughter, cricket, princess, dragon, luck"} +{"id": "7446", "title": "Tropic Thunder", "year": 2008, "duration_min": 107, "rating": 6.5, "genres": "Action, Comedy", "genres_pipe": "|Action|Comedy|", "keywords": "film making, satire, jungle, movie star, southeast asia, land mine, shackles, war filmmaking, duringcreditsstinger, blackface, method acting", "tags_pipe": "|film making|satire|jungle|movie star|southeast asia|land mine|shackles|war filmmaking|duringcreditsstinger|blackface|method acting|", "overview": "Vietnam veteran 'Four Leaf' Tayback's memoir, Tropic Thunder, is being made into a film, but Director Damien Cockburn can’t control the cast of prima donnas. Behind schedule and over budget, Cockburn is ordered by a studio executive to get filming back on track, or risk its cancellation. On Tayback's advice, Cockburn drops the actors into the middle of the jungle to film the remaining scenes but, unbeknownst to the actors and production, the group have been dropped in the middle of the Golden Triangle, the home of heroin-producing gangs.", "text_for_embedding": "Tropic Thunder (2008). Genres: Action, Comedy. Vietnam veteran 'Four Leaf' Tayback's memoir, Tropic Thunder, is being made into a film, but Director Damien Cockburn can’t control the cast of prima donnas. Behind schedule and over budget, Cockburn is ordered by a studio executive to get filming back on track, or risk its cancellation. On Tayback's advice, Cockburn drops the actors into the middle of the jungle to film the remaining scenes but, unbeknownst to the actors and production, the group have been dropped in the middle of the Golden Triangle, the home of heroin-producing gangs.. Tags: film making, satire, jungle, movie star, southeast asia, land mine, shackles, war filmmaking, duringcreditsstinger, blackface, method acting"} +{"id": "65754", "title": "The Girl with the Dragon Tattoo", "year": 2011, "duration_min": 158, "rating": 7.2, "genres": "Thriller, Crime, Mystery, Drama", "genres_pipe": "|Thriller|Crime|Mystery|Drama|", "keywords": "rape, journalist, based on novel, journalism, hacker, nazis, punk, investigation, remake, antisocial personality disorder, serial killer, disappearance, hacking, computer hacker, bible quote", "tags_pipe": "|rape|journalist|based on novel|journalism|hacker|nazis|punk|investigation|remake|antisocial personality disorder|serial killer|disappearance|hacking|computer hacker|bible quote|", "overview": "This English-language adaptation of the Swedish novel by Stieg Larsson follows a disgraced journalist, Mikael Blomkvist, as he investigates the disappearance of a weary patriarch's niece from 40 years ago. He is aided by the pierced, tattooed, punk computer hacker named Lisbeth Salander. As they work together in the investigation, Blomkvist and Salander uncover immense corruption beyond anything they have ever imagined.", "text_for_embedding": "The Girl with the Dragon Tattoo (2011). Genres: Thriller, Crime, Mystery, Drama. This English-language adaptation of the Swedish novel by Stieg Larsson follows a disgraced journalist, Mikael Blomkvist, as he investigates the disappearance of a weary patriarch's niece from 40 years ago. He is aided by the pierced, tattooed, punk computer hacker named Lisbeth Salander. As they work together in the investigation, Blomkvist and Salander uncover immense corruption beyond anything they have ever imagined.. Tags: rape, journalist, based on novel, journalism, hacker, nazis, punk, investigation, remake, antisocial personality disorder, serial killer, disappearance, hacking, computer hacker, bible quote"} +{"id": "1572", "title": "Die Hard: With a Vengeance", "year": 1995, "duration_min": 128, "rating": 6.9, "genres": "Action, Thriller", "genres_pipe": "|Action|Thriller|", "keywords": "bomb, taxi, riddle, robbery, detective, helicopter, gold, subway, ship, fistfight, police, sequel, deception, shootout, new york city", "tags_pipe": "|bomb|taxi|riddle|robbery|detective|helicopter|gold|subway|ship|fistfight|police|sequel|deception|shootout|new york city|", "overview": "New York detective John McClane is back and kicking bad-guy butt in the third installment of this action-packed series, which finds him teaming with civilian Zeus Carver to prevent the loss of innocent lives. McClane thought he'd seen it all, until a genius named Simon engages McClane, his new \"partner\" -- and his beloved city -- in a deadly game that demands their concentration.", "text_for_embedding": "Die Hard: With a Vengeance (1995). Genres: Action, Thriller. New York detective John McClane is back and kicking bad-guy butt in the third installment of this action-packed series, which finds him teaming with civilian Zeus Carver to prevent the loss of innocent lives. McClane thought he'd seen it all, until a genius named Simon engages McClane, his new \"partner\" -- and his beloved city -- in a deadly game that demands their concentration.. Tags: bomb, taxi, riddle, robbery, detective, helicopter, gold, subway, ship, fistfight, police, sequel, deception, shootout, new york city"} +{"id": "10528", "title": "Sherlock Holmes", "year": 2009, "duration_min": 128, "rating": 7.0, "genres": "Action, Adventure, Crime, Mystery", "genres_pipe": "|Action|Adventure|Crime|Mystery|", "keywords": "detective, scotland yard, coffin, black magic, arrest, partner, sherlock holmes, murder, steampunk, pentagram, clue", "tags_pipe": "|detective|scotland yard|coffin|black magic|arrest|partner|sherlock holmes|murder|steampunk|pentagram|clue|", "overview": "Eccentric consulting detective, Sherlock Holmes and Doctor John Watson battle to bring down a new nemesis and unravel a deadly plot that could destroy England.", "text_for_embedding": "Sherlock Holmes (2009). Genres: Action, Adventure, Crime, Mystery. Eccentric consulting detective, Sherlock Holmes and Doctor John Watson battle to bring down a new nemesis and unravel a deadly plot that could destroy England.. Tags: detective, scotland yard, coffin, black magic, arrest, partner, sherlock holmes, murder, steampunk, pentagram, clue"} +{"id": "271969", "title": "Ben-Hur", "year": 2016, "duration_min": 125, "rating": 5.3, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "betrayal, vengeance", "tags_pipe": "|betrayal|vengeance|", "overview": "A falsely accused nobleman survives years of slavery to take vengeance on his best friend who betrayed him.", "text_for_embedding": "Ben-Hur (2016). Genres: Drama. A falsely accused nobleman survives years of slavery to take vengeance on his best friend who betrayed him.. Tags: betrayal, vengeance"} +{"id": "10865", "title": "Atlantis: The Lost Empire", "year": 2001, "duration_min": 95, "rating": 6.7, "genres": "Animation, Family, Adventure, Science Fiction", "genres_pipe": "|Animation|Family|Adventure|Science Fiction|", "keywords": "sea, atlantis, animation, underwater, sea monster", "tags_pipe": "|sea|atlantis|animation|underwater|sea monster|", "overview": "The world's most highly qualified crew of archaeologists and explorers is led by historian Milo Thatch as they board the incredible 1,000-foot submarine Ulysses and head deep into the mysteries of the sea.", "text_for_embedding": "Atlantis: The Lost Empire (2001). Genres: Animation, Family, Adventure, Science Fiction. The world's most highly qualified crew of archaeologists and explorers is led by historian Milo Thatch as they board the incredible 1,000-foot submarine Ulysses and head deep into the mysteries of the sea.. Tags: sea, atlantis, animation, underwater, sea monster"} +{"id": "258509", "title": "Alvin and the Chipmunks: The Road Chip", "year": 2015, "duration_min": 92, "rating": 5.8, "genres": "Adventure, Animation, Comedy, Family", "genres_pipe": "|Adventure|Animation|Comedy|Family|", "keywords": "chipmunk, cgi, talking animal, aftercreditsstinger, duringcreditsstinger", "tags_pipe": "|chipmunk|cgi|talking animal|aftercreditsstinger|duringcreditsstinger|", "overview": "Through a series of misunderstandings, Alvin, Simon and Theodore come to believe that Dave is going to propose to his new girlfriend in New York City - and dump them. They have three days to get to him and stop the proposal.", "text_for_embedding": "Alvin and the Chipmunks: The Road Chip (2015). Genres: Adventure, Animation, Comedy, Family. Through a series of misunderstandings, Alvin, Simon and Theodore come to believe that Dave is going to propose to his new girlfriend in New York City - and dump them. They have three days to get to him and stop the proposal.. Tags: chipmunk, cgi, talking animal, aftercreditsstinger, duringcreditsstinger"} +{"id": "2253", "title": "Valkyrie", "year": 2008, "duration_min": 121, "rating": 6.7, "genres": "Drama, Thriller, History, War", "genres_pipe": "|Drama|Thriller|History|War|", "keywords": "berlin, suicide, bomb, assassination, resistance, wife husband relationship, world war ii, adolf hitler, plan, friendship, deception, treason, colonel, military officer, plot", "tags_pipe": "|berlin|suicide|bomb|assassination|resistance|wife husband relationship|world war ii|adolf hitler|plan|friendship|deception|treason|colonel|military officer|plot|", "overview": "Wounded in Africa during World War II, Nazi Col. Claus von Stauffenberg returns to his native Germany and joins the Resistance in a daring plan to create a shadow government and assassinate Adolf Hitler. When events unfold so that he becomes a central player, he finds himself tasked with both leading the coup and personally killing the Führer.", "text_for_embedding": "Valkyrie (2008). Genres: Drama, Thriller, History, War. Wounded in Africa during World War II, Nazi Col. Claus von Stauffenberg returns to his native Germany and joins the Resistance in a daring plan to create a shadow government and assassinate Adolf Hitler. When events unfold so that he becomes a central player, he finds himself tasked with both leading the coup and personally killing the Führer.. Tags: berlin, suicide, bomb, assassination, resistance, wife husband relationship, world war ii, adolf hitler, plan, friendship, deception, treason, colonel, military officer, plot"} +{"id": "10661", "title": "You Don't Mess with the Zohan", "year": 2008, "duration_min": 113, "rating": 5.5, "genres": "Comedy, Action", "genres_pipe": "|Comedy|Action|", "keywords": "new york, israel, middle east, hairdresser, ladykiller, mossad, israeli, palestinian, heart-throb, middle east conflict, hairstyle, hacky sack", "tags_pipe": "|new york|israel|middle east|hairdresser|ladykiller|mossad|israeli|palestinian|heart-throb|middle east conflict|hairstyle|hacky sack|", "overview": "An Israeli counterterrorism soldier with a secretly fabulous ambition to become a Manhattan hairstylist. Zohan's desire runs so deep that he'll do anything -- including faking his own death and going head-to-head with an Arab cab driver -- to make his dreams come true.", "text_for_embedding": "You Don't Mess with the Zohan (2008). Genres: Comedy, Action. An Israeli counterterrorism soldier with a secretly fabulous ambition to become a Manhattan hairstylist. Zohan's desire runs so deep that he'll do anything -- including faking his own death and going head-to-head with an Arab cab driver -- to make his dreams come true.. Tags: new york, israel, middle east, hairdresser, ladykiller, mossad, israeli, palestinian, heart-throb, middle east conflict, hairstyle, hacky sack"} +{"id": "257344", "title": "Pixels", "year": 2015, "duration_min": 105, "rating": 5.6, "genres": "Action, Comedy, Science Fiction", "genres_pipe": "|Action|Comedy|Science Fiction|", "keywords": "video game, nerd, alien attack, 3d, pixels", "tags_pipe": "|video game|nerd|alien attack|3d|pixels|", "overview": "Video game experts are recruited by the military to fight 1980s-era video game characters who've attacked New York.", "text_for_embedding": "Pixels (2015). Genres: Action, Comedy, Science Fiction. Video game experts are recruited by the military to fight 1980s-era video game characters who've attacked New York.. Tags: video game, nerd, alien attack, 3d, pixels"} +{"id": "644", "title": "A.I. Artificial Intelligence", "year": 2001, "duration_min": 146, "rating": 6.8, "genres": "Drama, Science Fiction, Adventure", "genres_pipe": "|Drama|Science Fiction|Adventure|", "keywords": "artificial intelligence, prophecy, prostitute, android, loss of mother, extraterrestrial technology, ice age, adoption, fairy tale, pinocchio, prosecution, gigolo, hologram, dystopia, alien", "tags_pipe": "|artificial intelligence|prophecy|prostitute|android|loss of mother|extraterrestrial technology|ice age|adoption|fairy tale|pinocchio|prosecution|gigolo|hologram|dystopia|alien|", "overview": "A robotic boy, the first programmed to love, David is adopted as a test case by a Cybertronics employee and his wife. Though he gradually becomes their child, a series of unexpected circumstances make this life impossible for David. Without final acceptance by humans or machines, David embarks on a journey to discover where he truly belongs, uncovering a world in which the line between robot and machine is both vast and profoundly thin.", "text_for_embedding": "A.I. Artificial Intelligence (2001). Genres: Drama, Science Fiction, Adventure. A robotic boy, the first programmed to love, David is adopted as a test case by a Cybertronics employee and his wife. Though he gradually becomes their child, a series of unexpected circumstances make this life impossible for David. Without final acceptance by humans or machines, David embarks on a journey to discover where he truly belongs, uncovering a world in which the line between robot and machine is both vast and profoundly thin.. Tags: artificial intelligence, prophecy, prostitute, android, loss of mother, extraterrestrial technology, ice age, adoption, fairy tale, pinocchio, prosecution, gigolo, hologram, dystopia, alien"} +{"id": "10756", "title": "The Haunted Mansion", "year": 2003, "duration_min": 99, "rating": 5.2, "genres": "Thriller, Fantasy, Comedy, Family, Mystery", "genres_pipe": "|Thriller|Fantasy|Comedy|Family|Mystery|", "keywords": "secret passage, magic, estate agent, haunted house, family vacation, ghost, aftercreditsstinger", "tags_pipe": "|secret passage|magic|estate agent|haunted house|family vacation|ghost|aftercreditsstinger|", "overview": "Workaholic Jim Evers and his wife/business partner, Sara get a call one night from mansion owner, Edward Gracey wants to sell his house. Once the Evers family arrive at the mansion a butler takes them to dine with Gracey. Gracey takes one look at Sara and he thinks she's his lost lover.", "text_for_embedding": "The Haunted Mansion (2003). Genres: Thriller, Fantasy, Comedy, Family, Mystery. Workaholic Jim Evers and his wife/business partner, Sara get a call one night from mansion owner, Edward Gracey wants to sell his house. Once the Evers family arrive at the mansion a butler takes them to dine with Gracey. Gracey takes one look at Sara and he thinks she's his lost lover.. Tags: secret passage, magic, estate agent, haunted house, family vacation, ghost, aftercreditsstinger"} +{"id": "686", "title": "Contact", "year": 1997, "duration_min": 150, "rating": 7.2, "genres": "Drama, Science Fiction, Mystery", "genres_pipe": "|Drama|Science Fiction|Mystery|", "keywords": "based on novel, nasa, new mexico, extraterrestrial technology, prime number, star, radio wave, wormhole, fanatic, spirituality, religion, scientist, sabotage, ham radio, alien contact", "tags_pipe": "|based on novel|nasa|new mexico|extraterrestrial technology|prime number|star|radio wave|wormhole|fanatic|spirituality|religion|scientist|sabotage|ham radio|alien contact|", "overview": "Contact is a science fiction film about an encounter with alien intelligence. Based on the novel by Carl Sagan the film starred Jodie Foster as the one chosen scientist who must make some difficult decisions between her beliefs, the truth, and reality.", "text_for_embedding": "Contact (1997). Genres: Drama, Science Fiction, Mystery. Contact is a science fiction film about an encounter with alien intelligence. Based on the novel by Carl Sagan the film starred Jodie Foster as the one chosen scientist who must make some difficult decisions between her beliefs, the truth, and reality.. Tags: based on novel, nasa, new mexico, extraterrestrial technology, prime number, star, radio wave, wormhole, fanatic, spirituality, religion, scientist, sabotage, ham radio, alien contact"} +{"id": "9383", "title": "Hollow Man", "year": 2000, "duration_min": 112, "rating": 5.6, "genres": "Action, Science Fiction, Thriller", "genres_pipe": "|Action|Science Fiction|Thriller|", "keywords": "killing, human experimentation, scientist, invisible man, science experiment", "tags_pipe": "|killing|human experimentation|scientist|invisible man|science experiment|", "overview": "Cocky researcher, Sebastian Caine is working on a project to make living creatures invisible and he's so confident he's found the right formula that he tests it on himself and soon begins to vanish. The only problem is – no-one can determine how to make him visible again. Caine's predicament eventually drives him mad, with terrifying results.", "text_for_embedding": "Hollow Man (2000). Genres: Action, Science Fiction, Thriller. Cocky researcher, Sebastian Caine is working on a project to make living creatures invisible and he's so confident he's found the right formula that he tests it on himself and soon begins to vanish. The only problem is – no-one can determine how to make him visible again. Caine's predicament eventually drives him mad, with terrifying results.. Tags: killing, human experimentation, scientist, invisible man, science experiment"} +{"id": "179", "title": "The Interpreter", "year": 2005, "duration_min": 128, "rating": 6.2, "genres": "Crime, Thriller", "genres_pipe": "|Crime|Thriller|", "keywords": "new york, dictator, africa, destruction of a civilization, assassination, resistance, revenge, murder, united nations, witness to murder, fbi agent, resistance fighter", "tags_pipe": "|new york|dictator|africa|destruction of a civilization|assassination|resistance|revenge|murder|united nations|witness to murder|fbi agent|resistance fighter|", "overview": "After Silvia Broome, an interpreter at United Nations headquarters, overhears plans of an assassination, an American Secret Service agent is sent to investigate.", "text_for_embedding": "The Interpreter (2005). Genres: Crime, Thriller. After Silvia Broome, an interpreter at United Nations headquarters, overhears plans of an assassination, an American Secret Service agent is sent to investigate.. Tags: new york, dictator, africa, destruction of a civilization, assassination, resistance, revenge, murder, united nations, witness to murder, fbi agent, resistance fighter"} +{"id": "76285", "title": "Percy Jackson: Sea of Monsters", "year": 2013, "duration_min": 106, "rating": 5.9, "genres": "Adventure, Family, Fantasy", "genres_pipe": "|Adventure|Family|Fantasy|", "keywords": "poison, hermes, poseidon, demigod, golden fleece, olympus, 3d, kronos, overthrow olympus, based on young adult novel", "tags_pipe": "|poison|hermes|poseidon|demigod|golden fleece|olympus|3d|kronos|overthrow olympus|based on young adult novel|", "overview": "In their quest to confront the ultimate evil, Percy and his friends battle swarms of mythical creatures to find the mythical Golden Fleece and to stop an ancient evil from rising.", "text_for_embedding": "Percy Jackson: Sea of Monsters (2013). Genres: Adventure, Family, Fantasy. In their quest to confront the ultimate evil, Percy and his friends battle swarms of mythical creatures to find the mythical Golden Fleece and to stop an ancient evil from rising.. Tags: poison, hermes, poseidon, demigod, golden fleece, olympus, 3d, kronos, overthrow olympus, based on young adult novel"} +{"id": "1996", "title": "Lara Croft Tomb Raider: The Cradle of Life", "year": 2003, "duration_min": 117, "rating": 5.5, "genres": "Action, Adventure, Fantasy, Thriller", "genres_pipe": "|Action|Adventure|Fantasy|Thriller|", "keywords": "riddle, treasure, medallion, kenia, alexander the great, pandora's box, chinese mafia, treasure hunt, hong kong, archaeologist, based on video game, archeology ", "tags_pipe": "|riddle|treasure|medallion|kenia|alexander the great|pandora's box|chinese mafia|treasure hunt|hong kong|archaeologist|based on video game|archeology |", "overview": "Lara Croft ventures to an underwater temple in search of the mythological Pandora's Box but, after securing it, it is promptly stolen by the villainous leader of a Chinese crime syndicate. Lara must recover the box before the syndicate's evil mastermind uses it to construct a weapon of catastrophic capabilities.", "text_for_embedding": "Lara Croft Tomb Raider: The Cradle of Life (2003). Genres: Action, Adventure, Fantasy, Thriller. Lara Croft ventures to an underwater temple in search of the mythological Pandora's Box but, after securing it, it is promptly stolen by the villainous leader of a Chinese crime syndicate. Lara must recover the box before the syndicate's evil mastermind uses it to construct a weapon of catastrophic capabilities.. Tags: riddle, treasure, medallion, kenia, alexander the great, pandora's box, chinese mafia, treasure hunt, hong kong, archaeologist, based on video game, archeology "} +{"id": "291805", "title": "Now You See Me 2", "year": 2016, "duration_min": 129, "rating": 6.7, "genres": "Action, Adventure, Comedy, Crime, Mystery, Thriller", "genres_pipe": "|Action|Adventure|Comedy|Crime|Mystery|Thriller|", "keywords": "london england, china, magic, secret society, vigilante, sequel, revenge, heist, on the run, macau china, magician", "tags_pipe": "|london england|china|magic|secret society|vigilante|sequel|revenge|heist|on the run|macau china|magician|", "overview": "One year after outwitting the FBI and winning the public’s adulation with their mind-bending spectacles, the Four Horsemen resurface only to find themselves face to face with a new enemy who enlists them to pull off their most dangerous heist yet.", "text_for_embedding": "Now You See Me 2 (2016). Genres: Action, Adventure, Comedy, Crime, Mystery, Thriller. One year after outwitting the FBI and winning the public’s adulation with their mind-bending spectacles, the Four Horsemen resurface only to find themselves face to face with a new enemy who enlists them to pull off their most dangerous heist yet.. Tags: london england, china, magic, secret society, vigilante, sequel, revenge, heist, on the run, macau china, magician"} +{"id": "10003", "title": "The Saint", "year": 1997, "duration_min": 116, "rating": 5.9, "genres": "Thriller, Action, Romance, Science Fiction, Adventure", "genres_pipe": "|Thriller|Action|Romance|Science Fiction|Adventure|", "keywords": "berlin, russia, gas, master thief, the saint", "tags_pipe": "|berlin|russia|gas|master thief|the saint|", "overview": "Ivan Tretiak, Russian Mafia boss who wants to create an oil crisis in Moscow and seize power as a result sends Simon Templar, great international criminal, to England to get a secret formula for cold fusion from U.S. scientist Emma Russell. Templar falls in love with Emma and they try to outwit Tretiak and his guerrillas, hiding from them in Moscow", "text_for_embedding": "The Saint (1997). Genres: Thriller, Action, Romance, Science Fiction, Adventure. Ivan Tretiak, Russian Mafia boss who wants to create an oil crisis in Moscow and seize power as a result sends Simon Templar, great international criminal, to England to get a secret formula for cold fusion from U.S. scientist Emma Russell. Templar falls in love with Emma and they try to outwit Tretiak and his guerrillas, hiding from them in Moscow. Tags: berlin, russia, gas, master thief, the saint"} +{"id": "1535", "title": "Spy Game", "year": 2001, "duration_min": 126, "rating": 6.8, "genres": "Action, Crime, Thriller", "genres_pipe": "|Action|Crime|Thriller|", "keywords": "spy, china, cia, cold war", "tags_pipe": "|spy|china|cia|cold war|", "overview": "Veteran spy Nathan Muir is on the verge of retiring from the CIA when he learns that his one-time protégé and close friend, Tom Bishop, is a political prisoner sentenced to die in Beijing. Although their friendship has been marred by bad blood and resentment, Muir agrees to take on the most dangerous mission of his career and rescue Bishop.", "text_for_embedding": "Spy Game (2001). Genres: Action, Crime, Thriller. Veteran spy Nathan Muir is on the verge of retiring from the CIA when he learns that his one-time protégé and close friend, Tom Bishop, is a political prisoner sentenced to die in Beijing. Although their friendship has been marred by bad blood and resentment, Muir agrees to take on the most dangerous mission of his career and rescue Bishop.. Tags: spy, china, cia, cold war"} +{"id": "2067", "title": "Mission to Mars", "year": 2000, "duration_min": 114, "rating": 5.7, "genres": "Science Fiction", "genres_pipe": "|Science Fiction|", "keywords": "mars, spacecraft, space travel, alien, long take, outer space, astronaut, dismemberment, alien contact, trapped in space", "tags_pipe": "|mars|spacecraft|space travel|alien|long take|outer space|astronaut|dismemberment|alien contact|trapped in space|", "overview": "When contact is lost with the crew of the first Mars expedition, a rescue mission is launched to discover their fate.", "text_for_embedding": "Mission to Mars (2000). Genres: Science Fiction. When contact is lost with the crew of the first Mars expedition, a rescue mission is launched to discover their fate.. Tags: mars, spacecraft, space travel, alien, long take, outer space, astronaut, dismemberment, alien contact, trapped in space"} +{"id": "46195", "title": "Rio", "year": 2011, "duration_min": 96, "rating": 6.5, "genres": "Animation, Adventure, Comedy, Family", "genres_pipe": "|Animation|Adventure|Comedy|Family|", "keywords": "brazil, pet, bird, musical, canary, samba, animal, duringcreditsstinger, rio 1, río 1", "tags_pipe": "|brazil|pet|bird|musical|canary|samba|animal|duringcreditsstinger|rio 1|río 1|", "overview": "Captured by smugglers when he was just a hatchling, a macaw named Blu never learned to fly and lives a happily domesticated life in Minnesota with his human friend, Linda. Blu is thought to be the last of his kind, but when word comes that Jewel, a lone female, lives in Rio de Janeiro, Blu and Linda go to meet her. Animal smugglers kidnap Blu and Jewel, but the pair soon escape and begin a perilous adventure back to freedom -- and Linda.", "text_for_embedding": "Rio (2011). Genres: Animation, Adventure, Comedy, Family. Captured by smugglers when he was just a hatchling, a macaw named Blu never learned to fly and lives a happily domesticated life in Minnesota with his human friend, Linda. Blu is thought to be the last of his kind, but when word comes that Jewel, a lone female, lives in Rio de Janeiro, Blu and Linda go to meet her. Animal smugglers kidnap Blu and Jewel, but the pair soon escape and begin a perilous adventure back to freedom -- and Linda.. Tags: brazil, pet, bird, musical, canary, samba, animal, duringcreditsstinger, rio 1, río 1"} +{"id": "2277", "title": "Bicentennial Man", "year": 1999, "duration_min": 131, "rating": 6.9, "genres": "Comedy, Science Fiction", "genres_pipe": "|Comedy|Science Fiction|", "keywords": "android, hologram, freedom, futuristic, robot", "tags_pipe": "|android|hologram|freedom|futuristic|robot|", "overview": "Richard Martin buys a gift, a new NDR-114 robot. The product is named Andrew by the youngest of the family's children. \"Bicentennial Man\" follows the life and times of Andrew, a robot purchased as a household appliance programmed to perform menial tasks. As Andrew begins to experience emotions and creative thought, the Martin family soon discovers they don't have an ordinary robot.", "text_for_embedding": "Bicentennial Man (1999). Genres: Comedy, Science Fiction. Richard Martin buys a gift, a new NDR-114 robot. The product is named Andrew by the youngest of the family's children. \"Bicentennial Man\" follows the life and times of Andrew, a robot purchased as a household appliance programmed to perform menial tasks. As Andrew begins to experience emotions and creative thought, the Martin family soon discovers they don't have an ordinary robot.. Tags: android, hologram, freedom, futuristic, robot"} +{"id": "10357", "title": "Volcano", "year": 1997, "duration_min": 104, "rating": 5.2, "genres": "Science Fiction, Action, Drama, Thriller", "genres_pipe": "|Science Fiction|Action|Drama|Thriller|", "keywords": "subway, lava, volcano, volcanologist, los angeles", "tags_pipe": "|subway|lava|volcano|volcanologist|los angeles|", "overview": "An earthquake shatters a peaceful Los Angeles morning and opens a fissure deep into the earth, causing lava to start bubbling up. As a volcano begins forming in the La Brea Tar Pits, the director of the city's emergency management service, Mike Roark, working with geologist Amy Barnes, must then use every resource in the city to try and stop the volcano from consuming Los Angeles.", "text_for_embedding": "Volcano (1997). Genres: Science Fiction, Action, Drama, Thriller. An earthquake shatters a peaceful Los Angeles morning and opens a fissure deep into the earth, causing lava to start bubbling up. As a volcano begins forming in the La Brea Tar Pits, the director of the city's emergency management service, Mike Roark, working with geologist Amy Barnes, must then use every resource in the city to try and stop the volcano from consuming Los Angeles.. Tags: subway, lava, volcano, volcanologist, los angeles"} +{"id": "4477", "title": "The Devil's Own", "year": 1997, "duration_min": 107, "rating": 5.9, "genres": "Crime, Thriller, Drama", "genres_pipe": "|Crime|Thriller|Drama|", "keywords": "new york, terrorist, anonymity, northern ireland", "tags_pipe": "|new york|terrorist|anonymity|northern ireland|", "overview": "Frankie McGuire, one of the IRA's deadliest assassins, draws an American family into the crossfire of terrorism. But when he is sent to the U.S. to buy weapons, Frankie is housed with the family of Tom O'Meara, a New York cop who knows nothing about Frankie's real identity. Their surprising friendship, and Tom's growing suspicions, forces Frankie to choose between the promise of peace or a lifetime of murder.", "text_for_embedding": "The Devil's Own (1997). Genres: Crime, Thriller, Drama. Frankie McGuire, one of the IRA's deadliest assassins, draws an American family into the crossfire of terrorism. But when he is sent to the U.S. to buy weapons, Frankie is housed with the family of Tom O'Meara, a New York cop who knows nothing about Frankie's real identity. Their surprising friendship, and Tom's growing suspicions, forces Frankie to choose between the promise of peace or a lifetime of murder.. Tags: new york, terrorist, anonymity, northern ireland"} +{"id": "8665", "title": "K-19: The Widowmaker", "year": 2002, "duration_min": 138, "rating": 6.1, "genres": "Drama, History, Thriller", "genres_pipe": "|Drama|History|Thriller|", "keywords": "submarine, soviet union, core melt, north atlantic, nuclear, woman director", "tags_pipe": "|submarine|soviet union|core melt|north atlantic|nuclear|woman director|", "overview": "When Russia's first nuclear submarine malfunctions on its maiden voyage, the crew must race to save the ship and prevent a nuclear disaster.", "text_for_embedding": "K-19: The Widowmaker (2002). Genres: Drama, History, Thriller. When Russia's first nuclear submarine malfunctions on its maiden voyage, the crew must race to save the ship and prevent a nuclear disaster.. Tags: submarine, soviet union, core melt, north atlantic, nuclear, woman director"} +{"id": "9387", "title": "Conan the Barbarian", "year": 1982, "duration_min": 129, "rating": 6.6, "genres": "Adventure, Fantasy, Action", "genres_pipe": "|Adventure|Fantasy|Action|", "keywords": "gladiator, repayment, despot, barbarian, sword and sorcery", "tags_pipe": "|gladiator|repayment|despot|barbarian|sword and sorcery|", "overview": "A film adaptation of the classic sword and sorcery hero, Conan the Barbarian. A horde of rampaging warriors massacre the parents of young Conan and enslave the young child for years on The Wheel of Pain. As the sole survivor of the childhood massacre, Conan is released from slavery and taught the ancient arts of fighting. Transforming himself into a killing machine, Conan travels into the wilderness to seek vengeance on Thulsa Doom, the man responsible for killing his family. In the wilderness, Conan takes up with the thieves Valeria and Subotai. The group comes upon King Osric, who wants the trio of warriors to help rescue his daughter who has joined Doom in the hills.", "text_for_embedding": "Conan the Barbarian (1982). Genres: Adventure, Fantasy, Action. A film adaptation of the classic sword and sorcery hero, Conan the Barbarian. A horde of rampaging warriors massacre the parents of young Conan and enslave the young child for years on The Wheel of Pain. As the sole survivor of the childhood massacre, Conan is released from slavery and taught the ancient arts of fighting. Transforming himself into a killing machine, Conan travels into the wilderness to seek vengeance on Thulsa Doom, the man responsible for killing his family. In the wilderness, Conan takes up with the thieves Valeria and Subotai. The group comes upon King Osric, who wants the trio of warriors to help rescue his daughter who has joined Doom in the hills.. Tags: gladiator, repayment, despot, barbarian, sword and sorcery"} +{"id": "921", "title": "Cinderella Man", "year": 2005, "duration_min": 144, "rating": 7.3, "genres": "Romance, Drama, History", "genres_pipe": "|Romance|Drama|History|", "keywords": "transporter, netherlands, world cup, socially deprived family, family's daily life, boxer, boxing match, comeback, training, heavy weight, folk hero, biography, daughter, defeat, sport", "tags_pipe": "|transporter|netherlands|world cup|socially deprived family|family's daily life|boxer|boxing match|comeback|training|heavy weight|folk hero|biography|daughter|defeat|sport|", "overview": "The true story of boxer, Jim Braddock who, in the 1920’s after his retirement, has a surprise comeback in order to get him and his family out of a socially poor state.", "text_for_embedding": "Cinderella Man (2005). Genres: Romance, Drama, History. The true story of boxer, Jim Braddock who, in the 1920’s after his retirement, has a surprise comeback in order to get him and his family out of a socially poor state.. Tags: transporter, netherlands, world cup, socially deprived family, family's daily life, boxer, boxing match, comeback, training, heavy weight, folk hero, biography, daughter, defeat, sport"} +{"id": "49852", "title": "The Nutcracker: The Untold Story", "year": 2010, "duration_min": 110, "rating": 5.4, "genres": "Fantasy, Action, Family", "genres_pipe": "|Fantasy|Action|Family|", "keywords": "", "tags_pipe": "", "overview": "Set in 1920's Vienna, this a tale of a little girl, whose godfather gives her a special doll one Christmas Eve.", "text_for_embedding": "The Nutcracker: The Untold Story (2010). Genres: Fantasy, Action, Family. Set in 1920's Vienna, this a tale of a little girl, whose godfather gives her a special doll one Christmas Eve.. Tags: "} +{"id": "4464", "title": "Seabiscuit", "year": 2003, "duration_min": 141, "rating": 6.7, "genres": "Drama, History", "genres_pipe": "|Drama|History|", "keywords": "horse race, american dream, racehorse, great depression", "tags_pipe": "|horse race|american dream|racehorse|great depression|", "overview": "True story of the undersized Depression-era racehorse whose victories lifted not only the spirits of the team behind it but also those of their nation.", "text_for_embedding": "Seabiscuit (2003). Genres: Drama, History. True story of the undersized Depression-era racehorse whose victories lifted not only the spirits of the team behind it but also those of their nation.. Tags: horse race, american dream, racehorse, great depression"} +{"id": "664", "title": "Twister", "year": 1996, "duration_min": 113, "rating": 6.1, "genres": "Action, Adventure, Drama", "genres_pipe": "|Action|Adventure|Drama|", "keywords": "wife husband relationship, tornado, twister, oklahoma, metereologist, invention, climate, barn, natural disaster, cow, truck, disaster, aunt niece relationship, storm chaser, divorce", "tags_pipe": "|wife husband relationship|tornado|twister|oklahoma|metereologist|invention|climate|barn|natural disaster|cow|truck|disaster|aunt niece relationship|storm chaser|divorce|", "overview": "TV weatherman Bill Harding is trying to get his tornado-hunter wife, Jo, to sign divorce papers so he can marry his girlfriend Melissa. But Mother Nature, in the form of a series of intense storms sweeping across Oklahoma, has other plans. Soon the three have joined the team of stormchasers as they attempt to insert a revolutionary measuring device into the very heart of several extremely violent tornados.", "text_for_embedding": "Twister (1996). Genres: Action, Adventure, Drama. TV weatherman Bill Harding is trying to get his tornado-hunter wife, Jo, to sign divorce papers so he can marry his girlfriend Melissa. But Mother Nature, in the form of a series of intense storms sweeping across Oklahoma, has other plans. Soon the three have joined the team of stormchasers as they attempt to insert a revolutionary measuring device into the very heart of several extremely violent tornados.. Tags: wife husband relationship, tornado, twister, oklahoma, metereologist, invention, climate, barn, natural disaster, cow, truck, disaster, aunt niece relationship, storm chaser, divorce"} +{"id": "8358", "title": "Cast Away", "year": 2000, "duration_min": 143, "rating": 7.5, "genres": "Adventure, Drama", "genres_pipe": "|Adventure|Drama|", "keywords": "exotic island, suicide attempt, volleyball, loneliness, airplane crash, deserted island, tropical island, survival skills", "tags_pipe": "|exotic island|suicide attempt|volleyball|loneliness|airplane crash|deserted island|tropical island|survival skills|", "overview": "Chuck, a top international manager for FedEx, and Kelly, a Ph.D. student, are in love and heading towards marriage. Then Chuck's plane to Malaysia ditches at sea during a terrible storm. He's the only survivor, and he washes up on a tiny island with nothing but some flotsam and jetsam from the aircraft's cargo.", "text_for_embedding": "Cast Away (2000). Genres: Adventure, Drama. Chuck, a top international manager for FedEx, and Kelly, a Ph.D. student, are in love and heading towards marriage. Then Chuck's plane to Malaysia ditches at sea during a terrible storm. He's the only survivor, and he washes up on a tiny island with nothing but some flotsam and jetsam from the aircraft's cargo.. Tags: exotic island, suicide attempt, volleyball, loneliness, airplane crash, deserted island, tropical island, survival skills"} +{"id": "9836", "title": "Happy Feet", "year": 2006, "duration_min": 108, "rating": 5.9, "genres": "Animation, Comedy", "genres_pipe": "|Animation|Comedy|", "keywords": "ocean, fish, zoo, penguin, tap dancing, love, crush, snow, anthropomorphism, singing, antarctica, family, duringcreditsstinger", "tags_pipe": "|ocean|fish|zoo|penguin|tap dancing|love|crush|snow|anthropomorphism|singing|antarctica|family|duringcreditsstinger|", "overview": "Into the world of the Emperor Penguins, who find their soul mates through song, a penguin is born who cannot sing. But he can tap dance something fierce!", "text_for_embedding": "Happy Feet (2006). Genres: Animation, Comedy. Into the world of the Emperor Penguins, who find their soul mates through song, a penguin is born who cannot sing. But he can tap dance something fierce!. Tags: ocean, fish, zoo, penguin, tap dancing, love, crush, snow, anthropomorphism, singing, antarctica, family, duringcreditsstinger"} +{"id": "2502", "title": "The Bourne Supremacy", "year": 2004, "duration_min": 108, "rating": 7.2, "genres": "Action, Drama, Thriller", "genres_pipe": "|Action|Drama|Thriller|", "keywords": "berlin, assassin, based on novel, amnesia, sniper, lie, sequel, suspense, on the run, shootout, espionage, violence, foot chase, car chase, exploding house", "tags_pipe": "|berlin|assassin|based on novel|amnesia|sniper|lie|sequel|suspense|on the run|shootout|espionage|violence|foot chase|car chase|exploding house|", "overview": "When a CIA operation to purchase classified Russian documents is blown by a rival agent, who then shows up in the sleepy seaside village where Bourne and Marie have been living. The pair run for their lives and Bourne, who promised retaliation should anyone from his former life attempt contact, is forced to once again take up his life as a trained assassin to survive.", "text_for_embedding": "The Bourne Supremacy (2004). Genres: Action, Drama, Thriller. When a CIA operation to purchase classified Russian documents is blown by a rival agent, who then shows up in the sleepy seaside village where Bourne and Marie have been living. The pair run for their lives and Bourne, who promised retaliation should anyone from his former life attempt contact, is forced to once again take up his life as a trained assassin to survive.. Tags: berlin, assassin, based on novel, amnesia, sniper, lie, sequel, suspense, on the run, shootout, espionage, violence, foot chase, car chase, exploding house"} +{"id": "9772", "title": "Air Force One", "year": 1997, "duration_min": 124, "rating": 6.2, "genres": "Action, Thriller", "genres_pipe": "|Action|Thriller|", "keywords": "prison, corruption, journalist, white house, hostage, ultimatum, hostage-taking, air force one, aerial combat, conspiracy, gunfight, fighter plane, secret service, american president, hand to hand combat", "tags_pipe": "|prison|corruption|journalist|white house|hostage|ultimatum|hostage-taking|air force one|aerial combat|conspiracy|gunfight|fighter plane|secret service|american president|hand to hand combat|", "overview": "Russian terrorists conspire to hijack the aircraft with the president and his family on board. The commander in chief finds himself facing an impossible predicament: give in to the terrorists and sacrifice his family, or risk everything to uphold his principles - and the integrity of the nation.", "text_for_embedding": "Air Force One (1997). Genres: Action, Thriller. Russian terrorists conspire to hijack the aircraft with the president and his family on board. The commander in chief finds himself facing an impossible predicament: give in to the terrorists and sacrifice his family, or risk everything to uphold his principles - and the integrity of the nation.. Tags: prison, corruption, journalist, white house, hostage, ultimatum, hostage-taking, air force one, aerial combat, conspiracy, gunfight, fighter plane, secret service, american president, hand to hand combat"} +{"id": "161", "title": "Ocean's Eleven", "year": 2001, "duration_min": 116, "rating": 7.2, "genres": "Thriller, Crime", "genres_pipe": "|Thriller|Crime|", "keywords": "prison, pickpocket, strip club, con artist, atlantic city, cockney accent, las vegas, card dealer, explosives expert, black and white scene, male, salt lake city utah", "tags_pipe": "|prison|pickpocket|strip club|con artist|atlantic city|cockney accent|las vegas|card dealer|explosives expert|black and white scene|male|salt lake city utah|", "overview": "Less than 24 hours into his parole, charismatic thief Danny Ocean is already rolling out his next plan: In one night, Danny's hand-picked crew of specialists will attempt to steal more than $150 million from three Las Vegas casinos. But to score the cash, Danny risks his chances of reconciling with ex-wife, Tess.", "text_for_embedding": "Ocean's Eleven (2001). Genres: Thriller, Crime. Less than 24 hours into his parole, charismatic thief Danny Ocean is already rolling out his next plan: In one night, Danny's hand-picked crew of specialists will attempt to steal more than $150 million from three Las Vegas casinos. But to score the cash, Danny risks his chances of reconciling with ex-wife, Tess.. Tags: prison, pickpocket, strip club, con artist, atlantic city, cockney accent, las vegas, card dealer, explosives expert, black and white scene, male, salt lake city utah"} +{"id": "52451", "title": "The Three Musketeers", "year": 2011, "duration_min": 110, "rating": 5.6, "genres": "Adventure, Action, Thriller", "genres_pipe": "|Adventure|Action|Thriller|", "keywords": "number in title, historical fiction, musketeer, 17th century, 3d", "tags_pipe": "|number in title|historical fiction|musketeer|17th century|3d|", "overview": "The hot-headed young D'Artagnan along with three former legendary but now down on their luck Musketeers must unite and defeat a beautiful double agent and her villainous employer from seizing the French throne and engulfing Europe in war.", "text_for_embedding": "The Three Musketeers (2011). Genres: Adventure, Action, Thriller. The hot-headed young D'Artagnan along with three former legendary but now down on their luck Musketeers must unite and defeat a beautiful double agent and her villainous employer from seizing the French throne and engulfing Europe in war.. Tags: number in title, historical fiction, musketeer, 17th century, 3d"} +{"id": "76492", "title": "Hotel Transylvania", "year": 2012, "duration_min": 91, "rating": 6.8, "genres": "Animation, Comedy, Family, Fantasy", "genres_pipe": "|Animation|Comedy|Family|Fantasy|", "keywords": "witch, magic, mummy, vampire, dracula, skeleton, backpacker, frankenstein, wolfman, zombie, invisible man, duringcreditsstinger,  nosferatu, protective father, fang vamp", "tags_pipe": "|witch|magic|mummy|vampire|dracula|skeleton|backpacker|frankenstein|wolfman|zombie|invisible man|duringcreditsstinger| nosferatu|protective father|fang vamp|", "overview": "Dracula, who operates a high-end resort away from the human world, goes into overprotective mode when a boy discovers the resort and falls for the count's teen-aged daughter.", "text_for_embedding": "Hotel Transylvania (2012). Genres: Animation, Comedy, Family, Fantasy. Dracula, who operates a high-end resort away from the human world, goes into overprotective mode when a boy discovers the resort and falls for the count's teen-aged daughter.. Tags: witch, magic, mummy, vampire, dracula, skeleton, backpacker, frankenstein, wolfman, zombie, invisible man, duringcreditsstinger,  nosferatu, protective father, fang vamp"} +{"id": "4523", "title": "Enchanted", "year": 2007, "duration_min": 107, "rating": 6.6, "genres": "Comedy, Family, Fantasy, Romance", "genres_pipe": "|Comedy|Family|Fantasy|Romance|", "keywords": "poison, queen, fairy tale, musical, princess, portal, animation, fantasy world, evil witch, part animation", "tags_pipe": "|poison|queen|fairy tale|musical|princess|portal|animation|fantasy world|evil witch|part animation|", "overview": "The beautiful princess Giselle is banished by an evil queen from her magical, musical animated land and finds herself in the gritty reality of the streets of modern-day Manhattan. Shocked by this strange new environment that doesn't operate on a \"happily ever after\" basis, Giselle is now adrift in a chaotic world badly in need of enchantment. But when Giselle begins to fall in love with a charmingly flawed divorce lawyer who has come to her aid - even though she is already promised to a perfect fairy tale prince back home - she has to wonder: Can a storybook view of romance survive in the real world?", "text_for_embedding": "Enchanted (2007). Genres: Comedy, Family, Fantasy, Romance. The beautiful princess Giselle is banished by an evil queen from her magical, musical animated land and finds herself in the gritty reality of the streets of modern-day Manhattan. Shocked by this strange new environment that doesn't operate on a \"happily ever after\" basis, Giselle is now adrift in a chaotic world badly in need of enchantment. But when Giselle begins to fall in love with a charmingly flawed divorce lawyer who has come to her aid - even though she is already promised to a perfect fairy tale prince back home - she has to wonder: Can a storybook view of romance survive in the real world?. Tags: poison, queen, fairy tale, musical, princess, portal, animation, fantasy world, evil witch, part animation"} +{"id": "59961", "title": "Safe House", "year": 2012, "duration_min": 115, "rating": 6.3, "genres": "Action, Thriller", "genres_pipe": "|Action|Thriller|", "keywords": "cia, violence, safe house, rogue agent, cape town south africa, soccer stadium", "tags_pipe": "|cia|violence|safe house|rogue agent|cape town south africa|soccer stadium|", "overview": "A dangerous CIA renegade resurfaces after a decade on the run. When the safe house he's remanded to is attacked by mercenaries, a rookie operative escapes with him. Now, the unlikely allies must stay alive long enough to uncover who wants them dead.", "text_for_embedding": "Safe House (2012). Genres: Action, Thriller. A dangerous CIA renegade resurfaces after a decade on the run. When the safe house he's remanded to is attacked by mercenaries, a rookie operative escapes with him. Now, the unlikely allies must stay alive long enough to uncover who wants them dead.. Tags: cia, violence, safe house, rogue agent, cape town south africa, soccer stadium"} +{"id": "10481", "title": "102 Dalmatians", "year": 2000, "duration_min": 100, "rating": 5.1, "genres": "Comedy, Family", "genres_pipe": "|Comedy|Family|", "keywords": "london england, prison, release from prison, women's prison, society for the prevention of cruelty to animals, puppy, pelz, dog, dalmatian", "tags_pipe": "|london england|prison|release from prison|women's prison|society for the prevention of cruelty to animals|puppy|pelz|dog|dalmatian|", "overview": "Get ready for a howling good time as an all new assortment of irresistible animal heroes are unleashed in this great family tail! In an unlikely alliance, the outrageous Waddlesworth... a parrot who thinks he's a Rottweiler... teams up with Oddball... an un-marked Dalmation puppy eager to earn her spots! Together they embark on a laugh-packed quest to outwit the ever-scheming Cruella De Vil", "text_for_embedding": "102 Dalmatians (2000). Genres: Comedy, Family. Get ready for a howling good time as an all new assortment of irresistible animal heroes are unleashed in this great family tail! In an unlikely alliance, the outrageous Waddlesworth... a parrot who thinks he's a Rottweiler... teams up with Oddball... an un-marked Dalmation puppy eager to earn her spots! Together they embark on a laugh-packed quest to outwit the ever-scheming Cruella De Vil. Tags: london england, prison, release from prison, women's prison, society for the prevention of cruelty to animals, puppy, pelz, dog, dalmatian"} +{"id": "59108", "title": "Tower Heist", "year": 2011, "duration_min": 104, "rating": 5.8, "genres": "Action, Comedy", "genres_pipe": "|Action|Comedy|", "keywords": "skyscraper, thanksgiving, billionaire, parade, fbi agent, apartment, high rise, female agent, ponzi scheme, empty safe, caper comedy, planning, safecracker, recruiting, heist movie", "tags_pipe": "|skyscraper|thanksgiving|billionaire|parade|fbi agent|apartment|high rise|female agent|ponzi scheme|empty safe|caper comedy|planning|safecracker|recruiting|heist movie|", "overview": "A luxury condo manager leads a staff of workers to seek payback on the Wall Street swindler who defrauded them. With only days until the billionaire gets away with the perfect crime, the unlikely crew of amateur thieves enlists the help of petty crook Slide to steal the $20 million they’re sure is hidden in the penthouse.", "text_for_embedding": "Tower Heist (2011). Genres: Action, Comedy. A luxury condo manager leads a staff of workers to seek payback on the Wall Street swindler who defrauded them. With only days until the billionaire gets away with the perfect crime, the unlikely crew of amateur thieves enlists the help of petty crook Slide to steal the $20 million they’re sure is hidden in the penthouse.. Tags: skyscraper, thanksgiving, billionaire, parade, fbi agent, apartment, high rise, female agent, ponzi scheme, empty safe, caper comedy, planning, safecracker, recruiting, heist movie"} +{"id": "1581", "title": "The Holiday", "year": 2006, "duration_min": 136, "rating": 6.7, "genres": "Comedy, Romance", "genres_pipe": "|Comedy|Romance|", "keywords": "holiday, london england, film making, christmas party, country house, room exchange, surrey, romantic comedy, los angeles, multiple storylines, woman director, christmas", "tags_pipe": "|holiday|london england|film making|christmas party|country house|room exchange|surrey|romantic comedy|los angeles|multiple storylines|woman director|christmas|", "overview": "Two women, one (Cameron Diaz) from America and one (Kate Winslet) from Britain, swap homes at Christmastime after bad breakups with their boyfriends. Each woman finds romance with a local man (Jude Law, Jack Black) but realizes that the imminent return home may end the relationship.", "text_for_embedding": "The Holiday (2006). Genres: Comedy, Romance. Two women, one (Cameron Diaz) from America and one (Kate Winslet) from Britain, swap homes at Christmastime after bad breakups with their boyfriends. Each woman finds romance with a local man (Jude Law, Jack Black) but realizes that the imminent return home may end the relationship.. Tags: holiday, london england, film making, christmas party, country house, room exchange, surrey, romantic comedy, los angeles, multiple storylines, woman director, christmas"} +{"id": "9798", "title": "Enemy of the State", "year": 1998, "duration_min": 132, "rating": 6.7, "genres": "Action, Drama, Thriller", "genres_pipe": "|Action|Drama|Thriller|", "keywords": "corruption, washington d.c., helicopter, falsely accused, identity, mexican standoff, blackmail, intelligence, wiretap, satellite, national security agency (nsa), politics, exploding building, suspense, mystery", "tags_pipe": "|corruption|washington d.c.|helicopter|falsely accused|identity|mexican standoff|blackmail|intelligence|wiretap|satellite|national security agency (nsa)|politics|exploding building|suspense|mystery|", "overview": "Hotshot Washington lawyer, Robert Dean becomes a victim of high-tech identity theft when a hacker slips an incriminating video into his pocket. Soon, a rogue National Security agent sets out to recover the tape – and destroy Dean.", "text_for_embedding": "Enemy of the State (1998). Genres: Action, Drama, Thriller. Hotshot Washington lawyer, Robert Dean becomes a victim of high-tech identity theft when a hacker slips an incriminating video into his pocket. Soon, a rogue National Security agent sets out to recover the tape – and destroy Dean.. Tags: corruption, washington d.c., helicopter, falsely accused, identity, mexican standoff, blackmail, intelligence, wiretap, satellite, national security agency (nsa), politics, exploding building, suspense, mystery"} +{"id": "22897", "title": "It's Complicated", "year": 2009, "duration_min": 121, "rating": 6.2, "genres": "Comedy, Romance", "genres_pipe": "|Comedy|Romance|", "keywords": "graduation, ex husband, woman director", "tags_pipe": "|graduation|ex husband|woman director|", "overview": "Ten years after their divorce, Jane and Jake Adler unite for their son's college graduation and unexpectedly end up sleeping together. But Jake is married, and Jane is embarking on a new romance with her architect. Now, she has to sort out her life – just when she thought she had it all figured out.", "text_for_embedding": "It's Complicated (2009). Genres: Comedy, Romance. Ten years after their divorce, Jane and Jake Adler unite for their son's college graduation and unexpectedly end up sleeping together. But Jake is married, and Jane is embarking on a new romance with her architect. Now, she has to sort out her life – just when she thought she had it all figured out.. Tags: graduation, ex husband, woman director"} +{"id": "298", "title": "Ocean's Thirteen", "year": 2007, "duration_min": 122, "rating": 6.5, "genres": "Crime, Thriller", "genres_pipe": "|Crime|Thriller|", "keywords": "casino, thief, revenge, heist, las vegas, pretending to be rich, labor strike", "tags_pipe": "|casino|thief|revenge|heist|las vegas|pretending to be rich|labor strike|", "overview": "Danny Ocean's team of criminals are back and composing a plan more personal than ever. When ruthless casino owner Willy Bank doublecrosses Reuben Tishkoff, causing a heart attack, Danny Ocean vows that he and his team will do anything to bring down Willy Bank along with everything he's got. Even if it means asking for help from an enemy.", "text_for_embedding": "Ocean's Thirteen (2007). Genres: Crime, Thriller. Danny Ocean's team of criminals are back and composing a plan more personal than ever. When ruthless casino owner Willy Bank doublecrosses Reuben Tishkoff, causing a heart attack, Danny Ocean vows that he and his team will do anything to bring down Willy Bank along with everything he's got. Even if it means asking for help from an enemy.. Tags: casino, thief, revenge, heist, las vegas, pretending to be rich, labor strike"} +{"id": "7484", "title": "Open Season", "year": 2006, "duration_min": 83, "rating": 6.1, "genres": "Adventure, Animation, Family", "genres_pipe": "|Adventure|Animation|Family|", "keywords": "hunter, mountains, garage, grizzly bear, bunny, chase, forest, deer, bear, hunt", "tags_pipe": "|hunter|mountains|garage|grizzly bear|bunny|chase|forest|deer|bear|hunt|", "overview": "Boog, a domesticated 900lb. Grizzly bear finds himself stranded in the woods 3 days before Open Season. Forced to rely on Elliot, a fast-talking mule deer, the two form an unlikely friendship and must quickly rally other forest animals if they are to form a rag-tag army against the hunters.", "text_for_embedding": "Open Season (2006). Genres: Adventure, Animation, Family. Boog, a domesticated 900lb. Grizzly bear finds himself stranded in the woods 3 days before Open Season. Forced to rely on Elliot, a fast-talking mule deer, the two form an unlikely friendship and must quickly rally other forest animals if they are to form a rag-tag army against the hunters.. Tags: hunter, mountains, garage, grizzly bear, bunny, chase, forest, deer, bear, hunt"} +{"id": "157350", "title": "Divergent", "year": 2014, "duration_min": 139, "rating": 6.9, "genres": "Adventure, Action, Science Fiction", "genres_pipe": "|Adventure|Action|Science Fiction|", "keywords": "based on novel, dystopia, youth, dystopic future, caste system, divergent, based on young adult novel", "tags_pipe": "|based on novel|dystopia|youth|dystopic future|caste system|divergent|based on young adult novel|", "overview": "In a world divided into factions based on personality types, Tris learns that she's been classified as Divergent and won't fit in. When she discovers a plot to destroy Divergents, Tris and the mysterious Four must find out what makes Divergents dangerous before it's too late.", "text_for_embedding": "Divergent (2014). Genres: Adventure, Action, Science Fiction. In a world divided into factions based on personality types, Tris learns that she's been classified as Divergent and won't fit in. When she discovers a plot to destroy Divergents, Tris and the mysterious Four must find out what makes Divergents dangerous before it's too late.. Tags: based on novel, dystopia, youth, dystopic future, caste system, divergent, based on young adult novel"} +{"id": "853", "title": "Enemy at the Gates", "year": 2001, "duration_min": 131, "rating": 7.2, "genres": "War", "genres_pipe": "|War|", "keywords": "winter, sniper, world war ii, stalingrad", "tags_pipe": "|winter|sniper|world war ii|stalingrad|", "overview": "Enemy at the Gates is a war film from Jean-Jacques Annaud from 2001 that takes place during the battle of Stalingard in World War II between the Russians and the Germans.", "text_for_embedding": "Enemy at the Gates (2001). Genres: War. Enemy at the Gates is a war film from Jean-Jacques Annaud from 2001 that takes place during the battle of Stalingard in World War II between the Russians and the Germans.. Tags: winter, sniper, world war ii, stalingrad"} +{"id": "10159", "title": "The Rundown", "year": 2003, "duration_min": 104, "rating": 6.4, "genres": "Adventure, Action, Comedy, Thriller", "genres_pipe": "|Adventure|Action|Comedy|Thriller|", "keywords": "hunter, bounty, bounty hunter, fight, amazon, treasure hunt, jungle", "tags_pipe": "|hunter|bounty|bounty hunter|fight|amazon|treasure hunt|jungle|", "overview": "When Travis, the mouthy son of a criminal, disappears in the Amazon in search of a treasured artifact, his father sends in Beck, who becomes Travis's rival for the affections of Mariana, a mysterious Brazilian woman. With his steely disposition, Beck is a man of few words -- but it takes him all the discipline he can muster to work with Travis to nab a tyrant who's after the same treasure.", "text_for_embedding": "The Rundown (2003). Genres: Adventure, Action, Comedy, Thriller. When Travis, the mouthy son of a criminal, disappears in the Amazon in search of a treasured artifact, his father sends in Beck, who becomes Travis's rival for the affections of Mariana, a mysterious Brazilian woman. With his steely disposition, Beck is a man of few words -- but it takes him all the discipline he can muster to work with Travis to nab a tyrant who's after the same treasure.. Tags: hunter, bounty, bounty hunter, fight, amazon, treasure hunt, jungle"} +{"id": "9593", "title": "Last Action Hero", "year": 1993, "duration_min": 130, "rating": 6.1, "genres": "Adventure, Fantasy, Action, Comedy, Family", "genres_pipe": "|Adventure|Fantasy|Action|Comedy|Family|", "keywords": "magic, movie in movie, spoof, magical object, cartoon cat, ticket, self-referential, projectionist, child's point of view", "tags_pipe": "|magic|movie in movie|spoof|magical object|cartoon cat|ticket|self-referential|projectionist|child's point of view|", "overview": "Danny is obsessed with a fictional movie character action hero Jack Slater. When a magical ticket transports him into Jack's latest adventure, Danny finds himself in a world where movie magic and reality collide. Now it's up to Danny to save the life of his hero and new friend.", "text_for_embedding": "Last Action Hero (1993). Genres: Adventure, Fantasy, Action, Comedy, Family. Danny is obsessed with a fictional movie character action hero Jack Slater. When a magical ticket transports him into Jack's latest adventure, Danny finds himself in a world where movie magic and reality collide. Now it's up to Danny to save the life of his hero and new friend.. Tags: magic, movie in movie, spoof, magical object, cartoon cat, ticket, self-referential, projectionist, child's point of view"} +{"id": "1904", "title": "Memoirs of a Geisha", "year": 2005, "duration_min": 145, "rating": 7.3, "genres": "Drama, History, Romance", "genres_pipe": "|Drama|History|Romance|", "keywords": "japan, prostitute, sister sister relationship, brothel, world war ii, geisha", "tags_pipe": "|japan|prostitute|sister sister relationship|brothel|world war ii|geisha|", "overview": "A sweeping romantic epic set in Japan in the years before World War II, a penniless Japanese child is torn from her family to work as a maid in a geisha house.", "text_for_embedding": "Memoirs of a Geisha (2005). Genres: Drama, History, Romance. A sweeping romantic epic set in Japan in the years before World War II, a penniless Japanese child is torn from her family to work as a maid in a geisha house.. Tags: japan, prostitute, sister sister relationship, brothel, world war ii, geisha"} +{"id": "9615", "title": "The Fast and the Furious: Tokyo Drift", "year": 2006, "duration_min": 104, "rating": 6.1, "genres": "Action, Crime, Drama, Thriller", "genres_pipe": "|Action|Crime|Drama|Thriller|", "keywords": "car race, car journey, car mechanic, auto, car garage, auto-tuning, drifting, car, automobile racing", "tags_pipe": "|car race|car journey|car mechanic|auto|car garage|auto-tuning|drifting|car|automobile racing|", "overview": "In order to avoid a jail sentence, Sean Boswell heads to Tokyo to live with his military father. In a low-rent section of the city, Shaun gets caught up in the underground world of drift racing", "text_for_embedding": "The Fast and the Furious: Tokyo Drift (2006). Genres: Action, Crime, Drama, Thriller. In order to avoid a jail sentence, Sean Boswell heads to Tokyo to live with his military father. In a low-rent section of the city, Shaun gets caught up in the underground world of drift racing. Tags: car race, car journey, car mechanic, auto, car garage, auto-tuning, drifting, car, automobile racing"} +{"id": "51052", "title": "Arthur Christmas", "year": 2011, "duration_min": 97, "rating": 6.7, "genres": "Drama, Animation, Family, Comedy", "genres_pipe": "|Drama|Animation|Family|Comedy|", "keywords": "holiday, santa claus, duringcreditsstinger, woman director, christmas", "tags_pipe": "|holiday|santa claus|duringcreditsstinger|woman director|christmas|", "overview": "Each Christmas, Santa and his vast army of highly trained elves produce gifts and distribute them around the world in one night. However, when one of 600 million children to receive a gift from Santa on Christmas Eve is missed, it is deemed ‘acceptable’ to all but one – Arthur. Arthur Claus is Santa’s misfit son who executes an unauthorized rookie mission to get the last present half way around the globe before dawn on Christmas morning.", "text_for_embedding": "Arthur Christmas (2011). Genres: Drama, Animation, Family, Comedy. Each Christmas, Santa and his vast army of highly trained elves produce gifts and distribute them around the world in one night. However, when one of 600 million children to receive a gift from Santa on Christmas Eve is missed, it is deemed ‘acceptable’ to all but one – Arthur. Arthur Claus is Santa’s misfit son who executes an unauthorized rookie mission to get the last present half way around the globe before dawn on Christmas morning.. Tags: holiday, santa claus, duringcreditsstinger, woman director, christmas"} +{"id": "297", "title": "Meet Joe Black", "year": 1998, "duration_min": 178, "rating": 6.9, "genres": "Fantasy, Drama, Mystery", "genres_pipe": "|Fantasy|Drama|Mystery|", "keywords": "life and death, love at first sight, broken engagement, fireworks, religion and supernatural, teenage crush, fate, doctor, millionaire", "tags_pipe": "|life and death|love at first sight|broken engagement|fireworks|religion and supernatural|teenage crush|fate|doctor|millionaire|", "overview": "When the grim reaper comes to collect the soul of megamogul Bill Parrish, he arrives with a proposition: Host him for a \"vacation\" among the living in trade for a few more days of existence. Parrish agrees, and using the pseudonym Joe Black, Death begins taking part in Parrish's daily agenda and falls in love with the man's daughter. Yet when Black's holiday is over, so is Parrish's life.", "text_for_embedding": "Meet Joe Black (1998). Genres: Fantasy, Drama, Mystery. When the grim reaper comes to collect the soul of megamogul Bill Parrish, he arrives with a proposition: Host him for a \"vacation\" among the living in trade for a few more days of existence. Parrish agrees, and using the pseudonym Joe Black, Death begins taking part in Parrish's daily agenda and falls in love with the man's daughter. Yet when Black's holiday is over, so is Parrish's life.. Tags: life and death, love at first sight, broken engagement, fireworks, religion and supernatural, teenage crush, fate, doctor, millionaire"} +{"id": "9884", "title": "Collateral Damage", "year": 2002, "duration_min": 108, "rating": 5.5, "genres": "Action, Thriller, Drama", "genres_pipe": "|Action|Thriller|Drama|", "keywords": "terrorist, fbi, colombia, firemen, revenge, explosion, car explosion, bomb attack", "tags_pipe": "|terrorist|fbi|colombia|firemen|revenge|explosion|car explosion|bomb attack|", "overview": "Firefighter Gordon Brewer is plunged into the complex and dangerous world of international terrorism after he loses his wife and child in a bombing credited to Claudio 'The Wolf' Perrini.", "text_for_embedding": "Collateral Damage (2002). Genres: Action, Thriller, Drama. Firefighter Gordon Brewer is plunged into the complex and dangerous world of international terrorism after he loses his wife and child in a bombing credited to Claudio 'The Wolf' Perrini.. Tags: terrorist, fbi, colombia, firemen, revenge, explosion, car explosion, bomb attack"} +{"id": "16858", "title": "All That Jazz", "year": 1979, "duration_min": 123, "rating": 7.3, "genres": "Drama, Music", "genres_pipe": "|Drama|Music|", "keywords": "show business, film making, tap dancing, movie in movie, divorce, tv show in film, stand-up comedian, broadway, rainstorm, surgery, dream sequence, editing, semi autobiographical, restroom, screening room", "tags_pipe": "|show business|film making|tap dancing|movie in movie|divorce|tv show in film|stand-up comedian|broadway|rainstorm|surgery|dream sequence|editing|semi autobiographical|restroom|screening room|", "overview": "Bob Fosse's semi-autobiographical film celebrates show business stripped of glitz or giddy illusions. Joe Gideon (Roy Scheider) is at the top of the heap, one of the most successful directors and choreographers in musical theatre. But he can feel his world slowly collapsing around him--his obsession with work has almost destroyed his personal life, and only his bottles of pills keep him going.", "text_for_embedding": "All That Jazz (1979). Genres: Drama, Music. Bob Fosse's semi-autobiographical film celebrates show business stripped of glitz or giddy illusions. Joe Gideon (Roy Scheider) is at the top of the heap, one of the most successful directors and choreographers in musical theatre. But he can feel his world slowly collapsing around him--his obsession with work has almost destroyed his personal life, and only his bottles of pills keep him going.. Tags: show business, film making, tap dancing, movie in movie, divorce, tv show in film, stand-up comedian, broadway, rainstorm, surgery, dream sequence, editing, semi autobiographical, restroom, screening room"} +{"id": "62764", "title": "Mirror Mirror", "year": 2012, "duration_min": 106, "rating": 5.5, "genres": "Adventure, Fantasy, Drama, Comedy, Science Fiction, Family", "genres_pipe": "|Adventure|Fantasy|Drama|Comedy|Science Fiction|Family|", "keywords": "attempted murder, fairy tale, black magic, cockroach, villainess, good vs evil, woman fights man, insecurity, mirror, snow kingdom, snow white, evil queen, enchantress, gala, financial problem", "tags_pipe": "|attempted murder|fairy tale|black magic|cockroach|villainess|good vs evil|woman fights man|insecurity|mirror|snow kingdom|snow white|evil queen|enchantress|gala|financial problem|", "overview": "After she spends all her money, an evil enchantress queen schemes to marry a handsome, wealthy prince. There's just one problem - he's in love with a beautiful princess, Snow White. Now, joined by seven rebellious dwarves, Snow White launches an epic battle of good vs. evil...", "text_for_embedding": "Mirror Mirror (2012). Genres: Adventure, Fantasy, Drama, Comedy, Science Fiction, Family. After she spends all her money, an evil enchantress queen schemes to marry a handsome, wealthy prince. There's just one problem - he's in love with a beautiful princess, Snow White. Now, joined by seven rebellious dwarves, Snow White launches an epic battle of good vs. evil.... Tags: attempted murder, fairy tale, black magic, cockroach, villainess, good vs evil, woman fights man, insecurity, mirror, snow kingdom, snow white, evil queen, enchantress, gala, financial problem"} +{"id": "22538", "title": "Scott Pilgrim vs. the World", "year": 2010, "duration_min": 112, "rating": 7.2, "genres": "Action, Adventure, Comedy", "genres_pipe": "|Action|Adventure|Comedy|", "keywords": "whipping, hipster, underage girlfriend, animated flashback, character's point of view camera shot, unconsciousness, girl fight, vegan, aftercreditsstinger", "tags_pipe": "|whipping|hipster|underage girlfriend|animated flashback|character's point of view camera shot|unconsciousness|girl fight|vegan|aftercreditsstinger|", "overview": "Scott Pilgrim is a film adaptation of the critically acclaimed, award-winning series of graphic novels of the same name by Canadian cartoonist Bryan Lee O’Malley. Scott Pilgrim is a 23 year old Canadian slacker and wannabe rockstar who falls in love with an American delivery girl, Ramona V. Flowers, and must defeat her seven \"evil exes\" to be able to date her.", "text_for_embedding": "Scott Pilgrim vs. the World (2010). Genres: Action, Adventure, Comedy. Scott Pilgrim is a film adaptation of the critically acclaimed, award-winning series of graphic novels of the same name by Canadian cartoonist Bryan Lee O’Malley. Scott Pilgrim is a 23 year old Canadian slacker and wannabe rockstar who falls in love with an American delivery girl, Ramona V. Flowers, and must defeat her seven \"evil exes\" to be able to date her.. Tags: whipping, hipster, underage girlfriend, animated flashback, character's point of view camera shot, unconsciousness, girl fight, vegan, aftercreditsstinger"} +{"id": "9341", "title": "The Core", "year": 2003, "duration_min": 136, "rating": 5.4, "genres": "Action, Thriller, Adventure, Science Fiction", "genres_pipe": "|Action|Thriller|Adventure|Science Fiction|", "keywords": "magnetic field, center of the earth, disaster film", "tags_pipe": "|magnetic field|center of the earth|disaster film|", "overview": "Geophysicist Dr. Josh Keyes discovers that an unknown force has caused the earth's inner core to stop rotating. With the planet's magnetic field rapidly deteriorating, our atmosphere literally starts to come apart at the seams with catastrophic consequences. To resolve the crisis, Keyes, along with a team of the world's most gifted scientists, travel into the earth's core. Their mission: detonate a device that will reactivate the core.", "text_for_embedding": "The Core (2003). Genres: Action, Thriller, Adventure, Science Fiction. Geophysicist Dr. Josh Keyes discovers that an unknown force has caused the earth's inner core to stop rotating. With the planet's magnetic field rapidly deteriorating, our atmosphere literally starts to come apart at the seams with catastrophic consequences. To resolve the crisis, Keyes, along with a team of the world's most gifted scientists, travel into the earth's core. Their mission: detonate a device that will reactivate the core.. Tags: magnetic field, center of the earth, disaster film"} +{"id": "12107", "title": "Nutty Professor II: The Klumps", "year": 2000, "duration_min": 106, "rating": 4.7, "genres": "Fantasy, Comedy, Romance, Science Fiction", "genres_pipe": "|Fantasy|Comedy|Romance|Science Fiction|", "keywords": "alter ego, mad scientist, family, dean, duringcreditsstinger, research laboratory", "tags_pipe": "|alter ego|mad scientist|family|dean|duringcreditsstinger|research laboratory|", "overview": "The hilarity begins when professor Sherman Klump finds romance with fellow DNA specialist, Denise Gaines, and discovers a brilliant formula that reverses aging. But Sherman's thin and obnoxious alter ego, Buddy Love, wants out...and a big piece of the action. And when Buddy gets loose, things get seriously nutty.", "text_for_embedding": "Nutty Professor II: The Klumps (2000). Genres: Fantasy, Comedy, Romance, Science Fiction. The hilarity begins when professor Sherman Klump finds romance with fellow DNA specialist, Denise Gaines, and discovers a brilliant formula that reverses aging. But Sherman's thin and obnoxious alter ego, Buddy Love, wants out...and a big piece of the action. And when Buddy gets loose, things get seriously nutty.. Tags: alter ego, mad scientist, family, dean, duringcreditsstinger, research laboratory"} +{"id": "9637", "title": "Scooby-Doo", "year": 2002, "duration_min": 88, "rating": 5.4, "genres": "Mystery, Adventure, Comedy", "genres_pipe": "|Mystery|Adventure|Comedy|", "keywords": "amateur detective, voodoo, resort, crime solving", "tags_pipe": "|amateur detective|voodoo|resort|crime solving|", "overview": "The Mystery Inc. gang have gone their separate ways and have been apart for two years, until they each receive an invitation to Spooky Island. Not knowing that the others have also been invited, they show up and discover an amusement park that affects young visitors in very strange ways.", "text_for_embedding": "Scooby-Doo (2002). Genres: Mystery, Adventure, Comedy. The Mystery Inc. gang have gone their separate ways and have been apart for two years, until they each receive an invitation to Spooky Island. Not knowing that the others have also been invited, they show up and discover an amusement park that affects young visitors in very strange ways.. Tags: amateur detective, voodoo, resort, crime solving"} +{"id": "49049", "title": "Dredd", "year": 2012, "duration_min": 95, "rating": 6.6, "genres": "Action, Science Fiction", "genres_pipe": "|Action|Science Fiction|", "keywords": "usa, corruption, crime fighter, judge, metropolis, law, post-apocalyptic, dystopia, executive case, police, futuristic, based on comic book, gore, survival, gunfight", "tags_pipe": "|usa|corruption|crime fighter|judge|metropolis|law|post-apocalyptic|dystopia|executive case|police|futuristic|based on comic book|gore|survival|gunfight|", "overview": "In the future, America is a dystopian wasteland. The latest scourge is Ma-Ma, a prostitute-turned-drug pusher with a dangerous new drug and aims to take over the city. The only possibility of stopping her is an elite group of urban police called Judges, who combine the duties of judge, jury and executioner to deliver a brutal brand of swift justice. But even the top-ranking Judge, Dredd, discovers that taking down Ma-Ma isn’t as easy as it seems in this explosive adaptation of the hugely popular comic series.", "text_for_embedding": "Dredd (2012). Genres: Action, Science Fiction. In the future, America is a dystopian wasteland. The latest scourge is Ma-Ma, a prostitute-turned-drug pusher with a dangerous new drug and aims to take over the city. The only possibility of stopping her is an elite group of urban police called Judges, who combine the duties of judge, jury and executioner to deliver a brutal brand of swift justice. But even the top-ranking Judge, Dredd, discovers that taking down Ma-Ma isn’t as easy as it seems in this explosive adaptation of the hugely popular comic series.. Tags: usa, corruption, crime fighter, judge, metropolis, law, post-apocalyptic, dystopia, executive case, police, futuristic, based on comic book, gore, survival, gunfight"} +{"id": "9339", "title": "Click", "year": 2006, "duration_min": 107, "rating": 6.0, "genres": "Comedy, Drama, Fantasy, Romance", "genres_pipe": "|Comedy|Drama|Fantasy|Romance|", "keywords": "regret, workaholic, heart attack, architect, dying and death, time travel, remote control, children, liposuction, hospital, wedding, dog, second chance, alternate reality, fatherhood", "tags_pipe": "|regret|workaholic|heart attack|architect|dying and death|time travel|remote control|children|liposuction|hospital|wedding|dog|second chance|alternate reality|fatherhood|", "overview": "A workaholic architect finds a universal remote that allows him to fast-forward and rewind to different parts of his life. Complications arise when the remote starts to overrule his choices.", "text_for_embedding": "Click (2006). Genres: Comedy, Drama, Fantasy, Romance. A workaholic architect finds a universal remote that allows him to fast-forward and rewind to different parts of his life. Complications arise when the remote starts to overrule his choices.. Tags: regret, workaholic, heart attack, architect, dying and death, time travel, remote control, children, liposuction, hospital, wedding, dog, second chance, alternate reality, fatherhood"} +{"id": "16281", "title": "Creepshow", "year": 1982, "duration_min": 120, "rating": 6.7, "genres": "Horror, Comedy, Fantasy", "genres_pipe": "|Horror|Comedy|Fantasy|", "keywords": "monster, halloween, meteor, buried alive, cockroach, anthology, based on comic book, gore, animated sequence, zombie, living dead", "tags_pipe": "|monster|halloween|meteor|buried alive|cockroach|anthology|based on comic book|gore|animated sequence|zombie|living dead|", "overview": "Inspired by the E.C. comics of the 1950s, George A.Romero and Stephen King bring five tales of terror to the screen.", "text_for_embedding": "Creepshow (1982). Genres: Horror, Comedy, Fantasy. Inspired by the E.C. comics of the 1950s, George A.Romero and Stephen King bring five tales of terror to the screen.. Tags: monster, halloween, meteor, buried alive, cockroach, anthology, based on comic book, gore, animated sequence, zombie, living dead"} +{"id": "39691", "title": "Cats & Dogs 2 : The Revenge of Kitty Galore", "year": 2010, "duration_min": 82, "rating": 4.9, "genres": "Comedy, Family", "genres_pipe": "|Comedy|Family|", "keywords": "torture, aftercreditsstinger, duringcreditsstinger, 3d", "tags_pipe": "|torture|aftercreditsstinger|duringcreditsstinger|3d|", "overview": "The ongoing war between the canine and feline species is put on hold when they join forces to thwart a rogue cat spy with her own sinister plans for conquest.", "text_for_embedding": "Cats & Dogs 2 : The Revenge of Kitty Galore (2010). Genres: Comedy, Family. The ongoing war between the canine and feline species is put on hold when they join forces to thwart a rogue cat spy with her own sinister plans for conquest.. Tags: torture, aftercreditsstinger, duringcreditsstinger, 3d"} +{"id": "8247", "title": "Jumper", "year": 2008, "duration_min": 88, "rating": 5.9, "genres": "Adventure, Fantasy, Science Fiction", "genres_pipe": "|Adventure|Fantasy|Science Fiction|", "keywords": "adolescence, based on novel, loss of child, fight, chase, teleportation, supernatural powers, leap in time, enemy, motherly love", "tags_pipe": "|adolescence|based on novel|loss of child|fight|chase|teleportation|supernatural powers|leap in time|enemy|motherly love|", "overview": "David Rice is a man who knows no boundaries, a Jumper, born with the uncanny ability to teleport instantly to anywhere on Earth. When he discovers others like himself, David is thrust into a dangerous and bloodthirsty war while being hunted by a sinister and determined group of zealots who have sworn to destroy all Jumpers. Now, David’s extraordinary gift may be his only hope for survival!", "text_for_embedding": "Jumper (2008). Genres: Adventure, Fantasy, Science Fiction. David Rice is a man who knows no boundaries, a Jumper, born with the uncanny ability to teleport instantly to anywhere on Earth. When he discovers others like himself, David is thrust into a dangerous and bloodthirsty war while being hunted by a sinister and determined group of zealots who have sworn to destroy all Jumpers. Now, David’s extraordinary gift may be his only hope for survival!. Tags: adolescence, based on novel, loss of child, fight, chase, teleportation, supernatural powers, leap in time, enemy, motherly love"} +{"id": "11253", "title": "Hellboy II: The Golden Army", "year": 2008, "duration_min": 120, "rating": 6.5, "genres": "Adventure, Fantasy, Science Fiction", "genres_pipe": "|Adventure|Fantasy|Science Fiction|", "keywords": "auction, northern ireland, resignation, superhero, rebellion, violence, spear, cut arm, split screen, superhero team, arm ripped off, super villain, remorse, self exile, vanishing figure", "tags_pipe": "|auction|northern ireland|resignation|superhero|rebellion|violence|spear|cut arm|split screen|superhero team|arm ripped off|super villain|remorse|self exile|vanishing figure|", "overview": "In this continuation to the adventure of the demon superhero, an evil elf breaks an ancient pact between humans and creatures, as he declares war against humanity. He is on a mission to release The Golden Army, a deadly group of fighting machines that can destroy the human race. As Hell on Earth is ready to erupt, Hellboy and his crew set out to defeat the evil prince.", "text_for_embedding": "Hellboy II: The Golden Army (2008). Genres: Adventure, Fantasy, Science Fiction. In this continuation to the adventure of the demon superhero, an evil elf breaks an ancient pact between humans and creatures, as he declares war against humanity. He is on a mission to release The Golden Army, a deadly group of fighting machines that can destroy the human race. As Hell on Earth is ready to erupt, Hellboy and his crew set out to defeat the evil prince.. Tags: auction, northern ireland, resignation, superhero, rebellion, violence, spear, cut arm, split screen, superhero team, arm ripped off, super villain, remorse, self exile, vanishing figure"} +{"id": "1949", "title": "Zodiac", "year": 2007, "duration_min": 157, "rating": 7.3, "genres": "Crime, Drama, Mystery, Thriller", "genres_pipe": "|Crime|Drama|Mystery|Thriller|", "keywords": "california, san francisco, killing, journalist, newspaper, mass murder, planned murder, embassy, victim, threat to death, victim of murder, code, police, murder, serial killer", "tags_pipe": "|california|san francisco|killing|journalist|newspaper|mass murder|planned murder|embassy|victim|threat to death|victim of murder|code|police|murder|serial killer|", "overview": "The true story of the investigation of 'The Zodiac Killer', a serial killer who terrified the San Francisco Bay Area, taunting police with his ciphers and letters. The case becomes an obsession for four men as their lives and careers are built and destroyed by the endless trail of clues.", "text_for_embedding": "Zodiac (2007). Genres: Crime, Drama, Mystery, Thriller. The true story of the investigation of 'The Zodiac Killer', a serial killer who terrified the San Francisco Bay Area, taunting police with his ciphers and letters. The case becomes an obsession for four men as their lives and careers are built and destroyed by the endless trail of clues.. Tags: california, san francisco, killing, journalist, newspaper, mass murder, planned murder, embassy, victim, threat to death, victim of murder, code, police, murder, serial killer"} +{"id": "8452", "title": "The 6th Day", "year": 2000, "duration_min": 123, "rating": 5.7, "genres": "Science Fiction", "genres_pipe": "|Science Fiction|", "keywords": "clone, future, murder, cloning, laser gun, dystopic future, implanted memory, sci-fi thriller", "tags_pipe": "|clone|future|murder|cloning|laser gun|dystopic future|implanted memory|sci-fi thriller|", "overview": "Futuristic action about a man who meets a clone of himself and stumbles into a grand conspiracy about clones taking over the world.", "text_for_embedding": "The 6th Day (2000). Genres: Science Fiction. Futuristic action about a man who meets a clone of himself and stumbles into a grand conspiracy about clones taking over the world.. Tags: clone, future, murder, cloning, laser gun, dystopic future, implanted memory, sci-fi thriller"} +{"id": "310", "title": "Bruce Almighty", "year": 2003, "duration_min": 101, "rating": 6.4, "genres": "Fantasy, Comedy", "genres_pipe": "|Fantasy|Comedy|", "keywords": "christianity, moon, responsability, moses, street gang, lovesickness, journalism, new love, faith, prayer, god, car crash", "tags_pipe": "|christianity|moon|responsability|moses|street gang|lovesickness|journalism|new love|faith|prayer|god|car crash|", "overview": "Bruce Nolan toils as a \"human interest\" television reporter in Buffalo, N.Y. Despite his high ratings and the love of his beautiful girlfriend, Grace, Bruce remains unfulfilled. At the end of the worst day in his life, he angrily ridicules God -- and the Almighty responds, endowing Bruce with all of His divine powers.", "text_for_embedding": "Bruce Almighty (2003). Genres: Fantasy, Comedy. Bruce Nolan toils as a \"human interest\" television reporter in Buffalo, N.Y. Despite his high ratings and the love of his beautiful girlfriend, Grace, Bruce remains unfulfilled. At the end of the worst day in his life, he angrily ridicules God -- and the Almighty responds, endowing Bruce with all of His divine powers.. Tags: christianity, moon, responsability, moses, street gang, lovesickness, journalism, new love, faith, prayer, god, car crash"} +{"id": "27578", "title": "The Expendables", "year": 2010, "duration_min": 103, "rating": 6.0, "genres": "Thriller, Adventure, Action", "genres_pipe": "|Thriller|Adventure|Action|", "keywords": "tattoo, martial arts, sniper, island, mercenary, bridge, rescue, escape, church, drug, blade, ensemble cast, duringcreditsstinger", "tags_pipe": "|tattoo|martial arts|sniper|island|mercenary|bridge|rescue|escape|church|drug|blade|ensemble cast|duringcreditsstinger|", "overview": "Barney Ross leads a band of highly skilled mercenaries including knife enthusiast Lee Christmas, a martial arts expert, heavy weapons specialist, demolitionist, and a loose-cannon sniper. When the group is commissioned by the mysterious Mr. Church to assassinate the dictator of a small South American island, Barney and Lee visit the remote locale to scout out their opposition and discover the true nature of the conflict engulfing the city.", "text_for_embedding": "The Expendables (2010). Genres: Thriller, Adventure, Action. Barney Ross leads a band of highly skilled mercenaries including knife enthusiast Lee Christmas, a martial arts expert, heavy weapons specialist, demolitionist, and a loose-cannon sniper. When the group is commissioned by the mysterious Mr. Church to assassinate the dictator of a small South American island, Barney and Lee visit the remote locale to scout out their opposition and discover the true nature of the conflict engulfing the city.. Tags: tattoo, martial arts, sniper, island, mercenary, bridge, rescue, escape, church, drug, blade, ensemble cast, duringcreditsstinger"} +{"id": "954", "title": "Mission: Impossible", "year": 1996, "duration_min": 110, "rating": 6.7, "genres": "Adventure, Action, Thriller", "genres_pipe": "|Adventure|Action|Thriller|", "keywords": "paris, london england, spy, cia, terrorist, secret identity, undercover, arms deal, headquarter, secret base, secret mission, prague, embassy, secret agent, tgv", "tags_pipe": "|paris|london england|spy|cia|terrorist|secret identity|undercover|arms deal|headquarter|secret base|secret mission|prague|embassy|secret agent|tgv|", "overview": "When Ethan Hunt, the leader of a crack espionage team whose perilous operation has gone awry with no explanation, discovers that a mole has penetrated the CIA, he's surprised to learn that he's the No. 1 suspect. To clear his name, Hunt now must ferret out the real double agent and, in the process, even the score.", "text_for_embedding": "Mission: Impossible (1996). Genres: Adventure, Action, Thriller. When Ethan Hunt, the leader of a crack espionage team whose perilous operation has gone awry with no explanation, discovers that a mole has penetrated the CIA, he's surprised to learn that he's the No. 1 suspect. To clear his name, Hunt now must ferret out the real double agent and, in the process, even the score.. Tags: paris, london england, spy, cia, terrorist, secret identity, undercover, arms deal, headquarter, secret base, secret mission, prague, embassy, secret agent, tgv"} +{"id": "70160", "title": "The Hunger Games", "year": 2012, "duration_min": 142, "rating": 6.9, "genres": "Science Fiction, Adventure, Fantasy", "genres_pipe": "|Science Fiction|Adventure|Fantasy|", "keywords": "hallucination, dystopia, female protagonist, bow and arrow, knife throwing, knife fight, game, archery, blindness, glamour, roasted pig, sponsor, chariot, fictional tv show, mine explosion", "tags_pipe": "|hallucination|dystopia|female protagonist|bow and arrow|knife throwing|knife fight|game|archery|blindness|glamour|roasted pig|sponsor|chariot|fictional tv show|mine explosion|", "overview": "Every year in the ruins of what was once North America, the nation of Panem forces each of its twelve districts to send a teenage boy and girl to compete in the Hunger Games. Part twisted entertainment, part government intimidation tactic, the Hunger Games are a nationally televised event in which “Tributes” must fight with one another until one survivor remains. Pitted against highly-trained Tributes who have prepared for these Games their entire lives, Katniss is forced to rely upon her sharp instincts as well as the mentorship of drunken former victor Haymitch Abernathy. If she’s ever to return home to District 12, Katniss must make impossible choices in the arena that weigh survival against humanity and life against love. The world will be watching.", "text_for_embedding": "The Hunger Games (2012). Genres: Science Fiction, Adventure, Fantasy. Every year in the ruins of what was once North America, the nation of Panem forces each of its twelve districts to send a teenage boy and girl to compete in the Hunger Games. Part twisted entertainment, part government intimidation tactic, the Hunger Games are a nationally televised event in which “Tributes” must fight with one another until one survivor remains. Pitted against highly-trained Tributes who have prepared for these Games their entire lives, Katniss is forced to rely upon her sharp instincts as well as the mentorship of drunken former victor Haymitch Abernathy. If she’s ever to return home to District 12, Katniss must make impossible choices in the arena that weigh survival against humanity and life against love. The world will be watching.. Tags: hallucination, dystopia, female protagonist, bow and arrow, knife throwing, knife fight, game, archery, blindness, glamour, roasted pig, sponsor, chariot, fictional tv show, mine explosion"} +{"id": "45243", "title": "The Hangover Part II", "year": 2011, "duration_min": 102, "rating": 6.2, "genres": "Comedy", "genres_pipe": "|Comedy|", "keywords": "sun glasses, interpol, undercover cop, hangover, duringcreditsstinger", "tags_pipe": "|sun glasses|interpol|undercover cop|hangover|duringcreditsstinger|", "overview": "The Hangover crew heads to Thailand for Stu's wedding. After the disaster of a bachelor party in Las Vegas last year, Stu is playing it safe with a mellow pre-wedding brunch. However, nothing goes as planned and Bangkok is the perfect setting for another adventure with the rowdy group.", "text_for_embedding": "The Hangover Part II (2011). Genres: Comedy. The Hangover crew heads to Thailand for Stu's wedding. After the disaster of a bachelor party in Las Vegas last year, Stu is playing it safe with a mellow pre-wedding brunch. However, nothing goes as planned and Bangkok is the perfect setting for another adventure with the rowdy group.. Tags: sun glasses, interpol, undercover cop, hangover, duringcreditsstinger"} +{"id": "364", "title": "Batman Returns", "year": 1992, "duration_min": 126, "rating": 6.6, "genres": "Action, Fantasy", "genres_pipe": "|Action|Fantasy|", "keywords": "holiday, corruption, double life, dc comics, crime fighter, hallucination, christmas tree, gotham city, vigilante, superhero, violence, dark hero, fictional city, super villain, super powers", "tags_pipe": "|holiday|corruption|double life|dc comics|crime fighter|hallucination|christmas tree|gotham city|vigilante|superhero|violence|dark hero|fictional city|super villain|super powers|", "overview": "Having defeated the Joker, Batman now faces the Penguin - a warped and deformed individual who is intent on being accepted into Gotham society. Crooked businessman Max Schreck is coerced into helping him become Mayor of Gotham and they both attempt to expose Batman in a different light. Selina Kyle, Max's secretary, is thrown from the top of a building and is transformed into Catwoman - a mysterious figure who has the same personality disorder as Batman. Batman must attempt to clear his name, all the time deciding just what must be done with the Catwoman.", "text_for_embedding": "Batman Returns (1992). Genres: Action, Fantasy. Having defeated the Joker, Batman now faces the Penguin - a warped and deformed individual who is intent on being accepted into Gotham society. Crooked businessman Max Schreck is coerced into helping him become Mayor of Gotham and they both attempt to expose Batman in a different light. Selina Kyle, Max's secretary, is thrown from the top of a building and is transformed into Catwoman - a mysterious figure who has the same personality disorder as Batman. Batman must attempt to clear his name, all the time deciding just what must be done with the Catwoman.. Tags: holiday, corruption, double life, dc comics, crime fighter, hallucination, christmas tree, gotham city, vigilante, superhero, violence, dark hero, fictional city, super villain, super powers"} +{"id": "7518", "title": "Over the Hedge", "year": 2006, "duration_min": 83, "rating": 6.3, "genres": "Comedy, Animation, Family", "genres_pipe": "|Comedy|Animation|Family|", "keywords": "squirrel, eating and drinking, vororte, garden, grizzly bear, entrapment, suburbian idyll, garbage, forest, turtle, hiding in a garbage container, skunk, racoon, animal", "tags_pipe": "|squirrel|eating and drinking|vororte|garden|grizzly bear|entrapment|suburbian idyll|garbage|forest|turtle|hiding in a garbage container|skunk|racoon|animal|", "overview": "A scheming raccoon fools a mismatched family of forest creatures into helping him repay a debt of food, by invading the new suburban sprawl that popped up while they were hibernating – and learns a lesson about family himself.", "text_for_embedding": "Over the Hedge (2006). Genres: Comedy, Animation, Family. A scheming raccoon fools a mismatched family of forest creatures into helping him repay a debt of food, by invading the new suburban sprawl that popped up while they were hibernating – and learns a lesson about family himself.. Tags: squirrel, eating and drinking, vororte, garden, grizzly bear, entrapment, suburbian idyll, garbage, forest, turtle, hiding in a garbage container, skunk, racoon, animal"} +{"id": "11544", "title": "Lilo & Stitch", "year": 2002, "duration_min": 85, "rating": 7.1, "genres": "Animation, Family", "genres_pipe": "|Animation|Family|", "keywords": "sister sister relationship, extraterrestrial technology, hawaii, adoption, mutation, alien life-form, alien phenomenons, animation, dog, dead parents", "tags_pipe": "|sister sister relationship|extraterrestrial technology|hawaii|adoption|mutation|alien life-form|alien phenomenons|animation|dog|dead parents|", "overview": "A lonely Hawaiian girl named Lilo is being raised by her older sister, Nani, after their parents die -- under the watch of social worker Cobra Bubbles. When Lilo adopts a funny-looking dog and names him \"Stitch,\" she doesn't realize her new best friend is a wacky alien created by mad scientist Dr. Jumba.", "text_for_embedding": "Lilo & Stitch (2002). Genres: Animation, Family. A lonely Hawaiian girl named Lilo is being raised by her older sister, Nani, after their parents die -- under the watch of social worker Cobra Bubbles. When Lilo adopts a funny-looking dog and names him \"Stitch,\" she doesn't realize her new best friend is a wacky alien created by mad scientist Dr. Jumba.. Tags: sister sister relationship, extraterrestrial technology, hawaii, adoption, mutation, alien life-form, alien phenomenons, animation, dog, dead parents"} +{"id": "9986", "title": "Charlotte's Web", "year": 2006, "duration_min": 97, "rating": 5.8, "genres": "Comedy, Family, Fantasy", "genres_pipe": "|Comedy|Family|Fantasy|", "keywords": "hero, barn, spider, pig, egg, friendship, spring, uncle, friends, rescue, survival, talking animal, grass, family, desk", "tags_pipe": "|hero|barn|spider|pig|egg|friendship|spring|uncle|friends|rescue|survival|talking animal|grass|family|desk|", "overview": "Wilbur the pig is scared of the end of the season, because he knows that come that time, he will end up on the dinner table. He hatches a plan with Charlotte, a spider that lives in his pen, to ensure that this will never happen.", "text_for_embedding": "Charlotte's Web (2006). Genres: Comedy, Family, Fantasy. Wilbur the pig is scared of the end of the season, because he knows that come that time, he will end up on the dinner table. He hatches a plan with Charlotte, a spider that lives in his pen, to ensure that this will never happen.. Tags: hero, barn, spider, pig, egg, friendship, spring, uncle, friends, rescue, survival, talking animal, grass, family, desk"} +{"id": "8656", "title": "Deep Impact", "year": 1998, "duration_min": 120, "rating": 5.9, "genres": "Action, Drama, Romance", "genres_pipe": "|Action|Drama|Romance|", "keywords": "usa president, nasa, metereologist, space mission, comet, natural disaster, tsunami, astronomer, astronaut, woman director, disaster movie", "tags_pipe": "|usa president|nasa|metereologist|space mission|comet|natural disaster|tsunami|astronomer|astronaut|woman director|disaster movie|", "overview": "A seven-mile-wide space rock is hurtling toward Earth, threatening to obliterate the planet. Now, it's up to the president of the United States to save the world. He appoints a tough-as-nails veteran astronaut to lead a joint American-Russian crew into space to destroy the comet before impact. Meanwhile, an enterprising reporter uses her smarts to uncover the scoop of the century.", "text_for_embedding": "Deep Impact (1998). Genres: Action, Drama, Romance. A seven-mile-wide space rock is hurtling toward Earth, threatening to obliterate the planet. Now, it's up to the president of the United States to save the world. He appoints a tough-as-nails veteran astronaut to lead a joint American-Russian crew into space to destroy the comet before impact. Meanwhile, an enterprising reporter uses her smarts to uncover the scoop of the century.. Tags: usa president, nasa, metereologist, space mission, comet, natural disaster, tsunami, astronomer, astronaut, woman director, disaster movie"} +{"id": "146216", "title": "RED 2", "year": 2013, "duration_min": 116, "rating": 6.4, "genres": "Action, Comedy, Crime, Thriller", "genres_pipe": "|Action|Comedy|Crime|Thriller|", "keywords": "paris, london england, cia, russia, mi6, hired killer, exploding airplane", "tags_pipe": "|paris|london england|cia|russia|mi6|hired killer|exploding airplane|", "overview": "Retired C.I.A. agent Frank Moses reunites his unlikely team of elite operatives for a global quest to track down a missing portable nuclear device.", "text_for_embedding": "RED 2 (2013). Genres: Action, Comedy, Crime, Thriller. Retired C.I.A. agent Frank Moses reunites his unlikely team of elite operatives for a global quest to track down a missing portable nuclear device.. Tags: paris, london england, cia, russia, mi6, hired killer, exploding airplane"} +{"id": "9291", "title": "The Longest Yard", "year": 2005, "duration_min": 113, "rating": 6.2, "genres": "Comedy, Drama", "genres_pipe": "|Comedy|Drama|", "keywords": "prison, american football, prisoner, blackmail, supervisor, sport", "tags_pipe": "|prison|american football|prisoner|blackmail|supervisor|sport|", "overview": "Pro quarter-back, Paul Crewe and former college champion and coach, Nate Scarboro are doing time in the same prison. Asked to put together a team of inmates to take on the guards, Crewe enlists the help of Scarboro to coach the inmates to victory in a football game 'fixed' to turn out quite another way.", "text_for_embedding": "The Longest Yard (2005). Genres: Comedy, Drama. Pro quarter-back, Paul Crewe and former college champion and coach, Nate Scarboro are doing time in the same prison. Asked to put together a team of inmates to take on the guards, Crewe enlists the help of Scarboro to coach the inmates to victory in a football game 'fixed' to turn out quite another way.. Tags: prison, american football, prisoner, blackmail, supervisor, sport"} +{"id": "55301", "title": "Alvin and the Chipmunks: Chipwrecked", "year": 2011, "duration_min": 87, "rating": 5.4, "genres": "Comedy, Fantasy, Family, Music, Animation", "genres_pipe": "|Comedy|Fantasy|Family|Music|Animation|", "keywords": "sequel, chipmunk, cruise ship, overboard", "tags_pipe": "|sequel|chipmunk|cruise ship|overboard|", "overview": "Playing around while aboard a cruise ship, the Chipmunks and Chipettes accidentally go overboard and end up marooned in a tropical paradise. They discover their new turf is not as deserted as it seems.", "text_for_embedding": "Alvin and the Chipmunks: Chipwrecked (2011). Genres: Comedy, Fantasy, Family, Music, Animation. Playing around while aboard a cruise ship, the Chipmunks and Chipettes accidentally go overboard and end up marooned in a tropical paradise. They discover their new turf is not as deserted as it seems.. Tags: sequel, chipmunk, cruise ship, overboard"} +{"id": "109418", "title": "Grown Ups 2", "year": 2013, "duration_min": 100, "rating": 5.8, "genres": "Comedy", "genres_pipe": "|Comedy|", "keywords": "", "tags_pipe": "", "overview": "The all-star comedy cast from Grown Ups returns (with some exciting new additions) for more summertime laughs. Lenny (Adam Sandler) has relocated his family back to the small town where he and his friends grew up. This time around, the grown ups are the ones learning lessons from their kids on a day notoriously full of surprises: the last day of school.", "text_for_embedding": "Grown Ups 2 (2013). Genres: Comedy. The all-star comedy cast from Grown Ups returns (with some exciting new additions) for more summertime laughs. Lenny (Adam Sandler) has relocated his family back to the small town where he and his friends grew up. This time around, the grown ups are the ones learning lessons from their kids on a day notoriously full of surprises: the last day of school.. Tags: "} +{"id": "11665", "title": "Get Smart", "year": 2008, "duration_min": 110, "rating": 6.0, "genres": "Action, Comedy, Thriller", "genres_pipe": "|Action|Comedy|Thriller|", "keywords": "dancing, spy, terrorist, traitor, airplane, violin, based on tv series, legs", "tags_pipe": "|dancing|spy|terrorist|traitor|airplane|violin|based on tv series|legs|", "overview": "When the identities of secret agents from Control are compromised, the Chief promotes hapless but eager analyst Maxwell Smart and teams him with stylish, capable Agent 99, the only spy whose cover remains intact. Can they work together to thwart the evil plans of KAOS and its crafty operative?", "text_for_embedding": "Get Smart (2008). Genres: Action, Comedy, Thriller. When the identities of secret agents from Control are compromised, the Chief promotes hapless but eager analyst Maxwell Smart and teams him with stylish, capable Agent 99, the only spy whose cover remains intact. Can they work together to thwart the evil plans of KAOS and its crafty operative?. Tags: dancing, spy, terrorist, traitor, airplane, violin, based on tv series, legs"} +{"id": "6964", "title": "Something's Gotta Give", "year": 2003, "duration_min": 128, "rating": 6.3, "genres": "Drama, Comedy, Romance", "genres_pipe": "|Drama|Comedy|Romance|", "keywords": "age difference, ladykiller, woman director", "tags_pipe": "|age difference|ladykiller|woman director|", "overview": "Harry Sanborn is an aged music industry exec with a fondness for younger women like Marin, his latest trophy girlfriend. Things get a little awkward when Harry suffers a heart attack at the home of Marin's mother, Erica. Left in the care of Erica and his doctor, a love triangle starts to take shape.", "text_for_embedding": "Something's Gotta Give (2003). Genres: Drama, Comedy, Romance. Harry Sanborn is an aged music industry exec with a fondness for younger women like Marin, his latest trophy girlfriend. Things get a little awkward when Harry suffers a heart attack at the home of Marin's mother, Erica. Left in the care of Erica and his doctor, a love triangle starts to take shape.. Tags: age difference, ladykiller, woman director"} +{"id": "11324", "title": "Shutter Island", "year": 2010, "duration_min": 138, "rating": 7.8, "genres": "Drama, Thriller, Mystery", "genres_pipe": "|Drama|Thriller|Mystery|", "keywords": "based on novel, island, hurricane, investigation, psychiatric hospital, u.s. marshal, conspiracy theory, 1950s", "tags_pipe": "|based on novel|island|hurricane|investigation|psychiatric hospital|u.s. marshal|conspiracy theory|1950s|", "overview": "World War II soldier-turned-U.S. Marshal Teddy Daniels investigates the disappearance of a patient from a hospital for the criminally insane, but his efforts are compromised by his troubling visions and also by a mysterious doctor.", "text_for_embedding": "Shutter Island (2010). Genres: Drama, Thriller, Mystery. World War II soldier-turned-U.S. Marshal Teddy Daniels investigates the disappearance of a patient from a hospital for the criminally insane, but his efforts are compromised by his troubling visions and also by a mysterious doctor.. Tags: based on novel, island, hurricane, investigation, psychiatric hospital, u.s. marshal, conspiracy theory, 1950s"} +{"id": "12193", "title": "Four Christmases", "year": 2008, "duration_min": 88, "rating": 5.3, "genres": "Comedy, Romance, Drama", "genres_pipe": "|Comedy|Romance|Drama|", "keywords": "holiday, romantic comedy, dysfunctional family, christmas", "tags_pipe": "|holiday|romantic comedy|dysfunctional family|christmas|", "overview": "Brad and Kate have made something of an art form out of avoiding their families during the holidays, but this year their foolproof plan is about go bust -- big time. Stuck at the city airport after all departing flights are canceled, the couple is embarrassed to see their ruse exposed to the world by an overzealous television reporter. Now, Brad and Kate are left with precious little choice other than to swallow their pride and suffer the rounds.", "text_for_embedding": "Four Christmases (2008). Genres: Comedy, Romance, Drama. Brad and Kate have made something of an art form out of avoiding their families during the holidays, but this year their foolproof plan is about go bust -- big time. Stuck at the city airport after all departing flights are canceled, the couple is embarrassed to see their ruse exposed to the world by an overzealous television reporter. Now, Brad and Kate are left with precious little choice other than to swallow their pride and suffer the rounds.. Tags: holiday, romantic comedy, dysfunctional family, christmas"} +{"id": "9928", "title": "Robots", "year": 2005, "duration_min": 91, "rating": 6.0, "genres": "Animation, Comedy, Family, Science Fiction", "genres_pipe": "|Animation|Comedy|Family|Science Fiction|", "keywords": "inventor, business man, robot, dishonesty", "tags_pipe": "|inventor|business man|robot|dishonesty|", "overview": "Rodney Copperbottom is a young robot inventor who dreams of making the world a better place, until the evil Ratchet takes over Big Weld Industries. Now, Rodney's dreams – and those of his friends – are in danger of becoming obsolete.", "text_for_embedding": "Robots (2005). Genres: Animation, Comedy, Family, Science Fiction. Rodney Copperbottom is a young robot inventor who dreams of making the world a better place, until the evil Ratchet takes over Big Weld Industries. Now, Rodney's dreams – and those of his friends – are in danger of becoming obsolete.. Tags: inventor, business man, robot, dishonesty"} +{"id": "754", "title": "Face/Off", "year": 1997, "duration_min": 138, "rating": 6.8, "genres": "Action, Crime, Science Fiction, Thriller", "genres_pipe": "|Action|Crime|Science Fiction|Thriller|", "keywords": "undercover, mexican standoff, biological weapon, face transplant, rage and hate, fistfight, hostility, revenge, deception, tragedy, shootout, hospital, boat chase, los angeles, explosion", "tags_pipe": "|undercover|mexican standoff|biological weapon|face transplant|rage and hate|fistfight|hostility|revenge|deception|tragedy|shootout|hospital|boat chase|los angeles|explosion|", "overview": "An antiterrorism agent goes under the knife to acquire the likeness of a terrorist and gather details about a bombing plot. When the terrorist escapes custody, he undergoes surgery to look like the agent so he can get close to the agent's family.", "text_for_embedding": "Face/Off (1997). Genres: Action, Crime, Science Fiction, Thriller. An antiterrorism agent goes under the knife to acquire the likeness of a terrorist and gather details about a bombing plot. When the terrorist escapes custody, he undergoes surgery to look like the agent so he can get close to the agent's family.. Tags: undercover, mexican standoff, biological weapon, face transplant, rage and hate, fistfight, hostility, revenge, deception, tragedy, shootout, hospital, boat chase, los angeles, explosion"} +{"id": "10202", "title": "Bedtime Stories", "year": 2008, "duration_min": 99, "rating": 5.9, "genres": "Fantasy, Comedy, Family, Romance", "genres_pipe": "|Fantasy|Comedy|Family|Romance|", "keywords": "wishes come true, escapade, disorder, imaginary, miraculous event, imaginary kingdom, life turned upside down, nothing goes right", "tags_pipe": "|wishes come true|escapade|disorder|imaginary|miraculous event|imaginary kingdom|life turned upside down|nothing goes right|", "overview": "Skeeter Bronson is a down-on-his-luck guy who's always telling bedtime stories to his niece and nephew. But his life is turned upside down when the fantastical stories he makes up for entertainment inexplicably turn into reality. Can a bewildered Skeeter manage his own unruly fantasies now that the outrageous characters and situations from his mind have morphed into actual people and events?", "text_for_embedding": "Bedtime Stories (2008). Genres: Fantasy, Comedy, Family, Romance. Skeeter Bronson is a down-on-his-luck guy who's always telling bedtime stories to his niece and nephew. But his life is turned upside down when the fantastical stories he makes up for entertainment inexplicably turn into reality. Can a bewildered Skeeter manage his own unruly fantasies now that the outrageous characters and situations from his mind have morphed into actual people and events?. Tags: wishes come true, escapade, disorder, imaginary, miraculous event, imaginary kingdom, life turned upside down, nothing goes right"} +{"id": "4147", "title": "Road to Perdition", "year": 2002, "duration_min": 117, "rating": 7.3, "genres": "Thriller, Crime, Drama", "genres_pipe": "|Thriller|Crime|Drama|", "keywords": "based on graphic novel, homework, shot in the chin, soft boiled egg, learning to drive, spoiled son, scarred face, thompson sub machine gun, frost on a window, cauterizing a wound, liberty half dollar", "tags_pipe": "|based on graphic novel|homework|shot in the chin|soft boiled egg|learning to drive|spoiled son|scarred face|thompson sub machine gun|frost on a window|cauterizing a wound|liberty half dollar|", "overview": "Mike Sullivan works as a hit man for crime boss John Rooney. Sullivan views Rooney as a father figure, however after his son is witness to a killing, Mike Sullivan finds himself on the run in attempt to save the life of his son and at the same time looking for revenge on those who wronged him.", "text_for_embedding": "Road to Perdition (2002). Genres: Thriller, Crime, Drama. Mike Sullivan works as a hit man for crime boss John Rooney. Sullivan views Rooney as a father figure, however after his son is witness to a killing, Mike Sullivan finds himself on the run in attempt to save the life of his son and at the same time looking for revenge on those who wronged him.. Tags: based on graphic novel, homework, shot in the chin, soft boiled egg, learning to drive, spoiled son, scarred face, thompson sub machine gun, frost on a window, cauterizing a wound, liberty half dollar"} +{"id": "50546", "title": "Just Go with It", "year": 2011, "duration_min": 117, "rating": 6.3, "genres": "Romance, Comedy", "genres_pipe": "|Romance|Comedy|", "keywords": "beach, fictitious marriage, blackmail, plastic surgery, marriage, love, beautiful woman, kids and family", "tags_pipe": "|beach|fictitious marriage|blackmail|plastic surgery|marriage|love|beautiful woman|kids and family|", "overview": "A plastic surgeon, romancing a much younger schoolteacher, enlists his loyal assistant to pretend to be his soon to be ex-wife, in order to cover up a careless lie. When more lies backfire, the assistant's kids become involved, and everyone heads off for a weekend in Hawaii that will change all their lives.", "text_for_embedding": "Just Go with It (2011). Genres: Romance, Comedy. A plastic surgeon, romancing a much younger schoolteacher, enlists his loyal assistant to pretend to be his soon to be ex-wife, in order to cover up a careless lie. When more lies backfire, the assistant's kids become involved, and everyone heads off for a weekend in Hawaii that will change all their lives.. Tags: beach, fictitious marriage, blackmail, plastic surgery, marriage, love, beautiful woman, kids and family"} +{"id": "1701", "title": "Con Air", "year": 1997, "duration_min": 115, "rating": 6.5, "genres": "Action, Thriller, Crime", "genres_pipe": "|Action|Thriller|Crime|", "keywords": "prison, ambush, helicopter, airport, gas station, undercover, mexican standoff, bravery, hijacking, escape, shootout, u.s. marshal, las vegas, explosion, brutality", "tags_pipe": "|prison|ambush|helicopter|airport|gas station|undercover|mexican standoff|bravery|hijacking|escape|shootout|u.s. marshal|las vegas|explosion|brutality|", "overview": "When the government puts all its rotten criminal eggs in one airborne basket, it's asking for trouble. Before you can say, \"Pass the barf bag,\" the crooks control the plane, led by creepy Cyrus \"The Virus\" Grissom. Watching his every move is the just-released Cameron Poe, who'd rather reunite with his family.", "text_for_embedding": "Con Air (1997). Genres: Action, Thriller, Crime. When the government puts all its rotten criminal eggs in one airborne basket, it's asking for trouble. Before you can say, \"Pass the barf bag,\" the crooks control the plane, led by creepy Cyrus \"The Virus\" Grissom. Watching his every move is the just-released Cameron Poe, who'd rather reunite with his family.. Tags: prison, ambush, helicopter, airport, gas station, undercover, mexican standoff, bravery, hijacking, escape, shootout, u.s. marshal, las vegas, explosion, brutality"} +{"id": "13027", "title": "Eagle Eye", "year": 2008, "duration_min": 118, "rating": 6.3, "genres": "Mystery, Thriller, Action", "genres_pipe": "|Mystery|Thriller|Action|", "keywords": "artificial intelligence, washington d.c., secret identity, hostage, technology, fbi, pentagon, twin brother, fbi agent", "tags_pipe": "|artificial intelligence|washington d.c.|secret identity|hostage|technology|fbi|pentagon|twin brother|fbi agent|", "overview": "Jerry Shaw and Rachel Holloman are two strangers whose lives are suddenly thrown into turmoil by a mysterious woman they have never met. Threatening their lives and family, the unseen caller uses everyday technology to control their actions and push them into increasing danger. As events escalate, Jerry and Rachel become the country's most-wanted fugitives and must figure out what is happening to them.", "text_for_embedding": "Eagle Eye (2008). Genres: Mystery, Thriller, Action. Jerry Shaw and Rachel Holloman are two strangers whose lives are suddenly thrown into turmoil by a mysterious woman they have never met. Threatening their lives and family, the unseen caller uses everyday technology to control their actions and push them into increasing danger. As events escalate, Jerry and Rachel become the country's most-wanted fugitives and must figure out what is happening to them.. Tags: artificial intelligence, washington d.c., secret identity, hostage, technology, fbi, pentagon, twin brother, fbi agent"} +{"id": "2289", "title": "Cold Mountain", "year": 2003, "duration_min": 154, "rating": 6.7, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "loss of lover, loss of family, deserter, loss of father, love of one's life", "tags_pipe": "|loss of lover|loss of family|deserter|loss of father|love of one's life|", "overview": "In this classic story of love and devotion set against the backdrop of the American Civil War, a wounded Confederate soldier named W.P. Inman deserts his unit and travels across the South, aiming to return to his young wife, Ada, who he left behind to tend their farm. As Inman makes his perilous journey home, Ada struggles to keep their home intact with the assistance of Ruby, a mysterious drifter sent to help her by a kindly neighbor.", "text_for_embedding": "Cold Mountain (2003). Genres: Drama. In this classic story of love and devotion set against the backdrop of the American Civil War, a wounded Confederate soldier named W.P. Inman deserts his unit and travels across the South, aiming to return to his young wife, Ada, who he left behind to tend their farm. As Inman makes his perilous journey home, Ada struggles to keep their home intact with the assistance of Ruby, a mysterious drifter sent to help her by a kindly neighbor.. Tags: loss of lover, loss of family, deserter, loss of father, love of one's life"} +{"id": "20504", "title": "The Book of Eli", "year": 2010, "duration_min": 118, "rating": 6.6, "genres": "Action, Thriller, Science Fiction", "genres_pipe": "|Action|Thriller|Science Fiction|", "keywords": "book, post-apocalyptic, dystopia, faith, blind", "tags_pipe": "|book|post-apocalyptic|dystopia|faith|blind|", "overview": "A post-apocalyptic tale, in which a lone man fights his way across America in order to protect a sacred book that holds the secrets to saving humankind.", "text_for_embedding": "The Book of Eli (2010). Genres: Action, Thriller, Science Fiction. A post-apocalyptic tale, in which a lone man fights his way across America in order to protect a sacred book that holds the secrets to saving humankind.. Tags: book, post-apocalyptic, dystopia, faith, blind"} +{"id": "9574", "title": "Flubber", "year": 1997, "duration_min": 93, "rating": 5.3, "genres": "Comedy, Family, Science Fiction", "genres_pipe": "|Comedy|Family|Science Fiction|", "keywords": "wedding vows, inventor, slime, green, flight, mad scientist, wedding", "tags_pipe": "|wedding vows|inventor|slime|green|flight|mad scientist|wedding|", "overview": "Professor Phillip Brainard, an absent minded professor, works with his assistant Weebo, trying to create a substance that's a new source of energy and that will save Medfield College where his sweetheart Sara is the president. He has missed his wedding twice, and on the afternoon of his third wedding, Professor Brainard creates flubber, which allows objects to fly through the air.", "text_for_embedding": "Flubber (1997). Genres: Comedy, Family, Science Fiction. Professor Phillip Brainard, an absent minded professor, works with his assistant Weebo, trying to create a substance that's a new source of energy and that will save Medfield College where his sweetheart Sara is the president. He has missed his wedding twice, and on the afternoon of his third wedding, Professor Brainard creates flubber, which allows objects to fly through the air.. Tags: wedding vows, inventor, slime, green, flight, mad scientist, wedding"} +{"id": "11618", "title": "The Haunting", "year": 1999, "duration_min": 113, "rating": 5.2, "genres": "Horror, Thriller, Fantasy, Mystery", "genres_pipe": "|Horror|Thriller|Fantasy|Mystery|", "keywords": "based on novel, trauma, castle, haunted house, insomnia, bone, poster, painting, remake, haunting, child labor, audio recording, spiral staircase, evil, loner", "tags_pipe": "|based on novel|trauma|castle|haunted house|insomnia|bone|poster|painting|remake|haunting|child labor|audio recording|spiral staircase|evil|loner|", "overview": "Dr. David Marrow invites Nell Vance, and Theo and Luke Sanderson to the eerie and isolated Hill House to be subjects for a sleep disorder study. The unfortunate guests discover that Marrow is far more interested in the sinister mansion itself – and they soon see the true nature of its horror.", "text_for_embedding": "The Haunting (1999). Genres: Horror, Thriller, Fantasy, Mystery. Dr. David Marrow invites Nell Vance, and Theo and Luke Sanderson to the eerie and isolated Hill House to be subjects for a sleep disorder study. The unfortunate guests discover that Marrow is far more interested in the sinister mansion itself – and they soon see the true nature of its horror.. Tags: based on novel, trauma, castle, haunted house, insomnia, bone, poster, painting, remake, haunting, child labor, audio recording, spiral staircase, evil, loner"} +{"id": "2300", "title": "Space Jam", "year": 1996, "duration_min": 88, "rating": 6.5, "genres": "Animation, Comedy, Drama, Family, Fantasy", "genres_pipe": "|Animation|Comedy|Drama|Family|Fantasy|", "keywords": "sport, basketball, doctor, basketball team, basketball game, referee, basketball court, tweety bird, speedy gonzales, cartoon chicken, sylvester the cat, cartoon reality crossover, basketball hoop, cartoon skunk", "tags_pipe": "|sport|basketball|doctor|basketball team|basketball game|referee|basketball court|tweety bird|speedy gonzales|cartoon chicken|sylvester the cat|cartoon reality crossover|basketball hoop|cartoon skunk|", "overview": "In a desperate attempt to win a basketball match and earn their freedom, the Looney Tunes seek the aid of retired basketball champion, Michael Jordan.", "text_for_embedding": "Space Jam (1996). Genres: Animation, Comedy, Drama, Family, Fantasy. In a desperate attempt to win a basketball match and earn their freedom, the Looney Tunes seek the aid of retired basketball champion, Michael Jordan.. Tags: sport, basketball, doctor, basketball team, basketball game, referee, basketball court, tweety bird, speedy gonzales, cartoon chicken, sylvester the cat, cartoon reality crossover, basketball hoop, cartoon skunk"} +{"id": "12096", "title": "The Pink Panther", "year": 2006, "duration_min": 93, "rating": 5.6, "genres": "Action, Comedy, Crime, Mystery, Family", "genres_pipe": "|Action|Comedy|Crime|Mystery|Family|", "keywords": "robbery, investigation, inspector, killer, clouseau, pink panther, murder hunt", "tags_pipe": "|robbery|investigation|inspector|killer|clouseau|pink panther|murder hunt|", "overview": "When the coach of the France soccer team is killed by a poisoned dart in the stadium in the end of a game, and his expensive and huge ring with the diamond Pink Panther disappears, the ambitious Chief Inspector Dreyfus assigns the worst police inspector Jacques Clouseau to the case.", "text_for_embedding": "The Pink Panther (2006). Genres: Action, Comedy, Crime, Mystery, Family. When the coach of the France soccer team is killed by a poisoned dart in the stadium in the end of a game, and his expensive and huge ring with the diamond Pink Panther disappears, the ambitious Chief Inspector Dreyfus assigns the worst police inspector Jacques Clouseau to the case.. Tags: robbery, investigation, inspector, killer, clouseau, pink panther, murder hunt"} +{"id": "10200", "title": "The Day the Earth Stood Still", "year": 2008, "duration_min": 104, "rating": 5.2, "genres": "Drama, Science Fiction, Thriller", "genres_pipe": "|Drama|Science Fiction|Thriller|", "keywords": "extraterrestrial technology, spacecraft, ultimatum, evacuation, panic, government, remake, ufo, alien, end of the world, giant robot, tank, social commentary, power outage, interrogation", "tags_pipe": "|extraterrestrial technology|spacecraft|ultimatum|evacuation|panic|government|remake|ufo|alien|end of the world|giant robot|tank|social commentary|power outage|interrogation|", "overview": "A representative of an alien race that went through drastic evolution to survive its own climate change, Klaatu comes to Earth to assess whether humanity can prevent the environmental damage they have inflicted on their own planet. When barred from speaking to the United Nations, he decides humankind shall be exterminated so the planet can survive.", "text_for_embedding": "The Day the Earth Stood Still (2008). Genres: Drama, Science Fiction, Thriller. A representative of an alien race that went through drastic evolution to survive its own climate change, Klaatu comes to Earth to assess whether humanity can prevent the environmental damage they have inflicted on their own planet. When barred from speaking to the United Nations, he decides humankind shall be exterminated so the planet can survive.. Tags: extraterrestrial technology, spacecraft, ultimatum, evacuation, panic, government, remake, ufo, alien, end of the world, giant robot, tank, social commentary, power outage, interrogation"} +{"id": "8834", "title": "Conspiracy Theory", "year": 1997, "duration_min": 135, "rating": 6.5, "genres": "Action, Drama, Mystery, Thriller", "genres_pipe": "|Action|Drama|Mystery|Thriller|", "keywords": "new york, cia, helicopter, assassin, secret, obsession, taxi driver, fbi, paranoia, wheelchair, chase, theory, politics, government, control", "tags_pipe": "|new york|cia|helicopter|assassin|secret|obsession|taxi driver|fbi|paranoia|wheelchair|chase|theory|politics|government|control|", "overview": "A man obsessed with conspiracy theories becomes a target after one of his theories turns out to be true. Unfortunately, in order to save himself, he has to figure out which theory it is.", "text_for_embedding": "Conspiracy Theory (1997). Genres: Action, Drama, Mystery, Thriller. A man obsessed with conspiracy theories becomes a target after one of his theories turns out to be true. Unfortunately, in order to save himself, he has to figure out which theory it is.. Tags: new york, cia, helicopter, assassin, secret, obsession, taxi driver, fbi, paranoia, wheelchair, chase, theory, politics, government, control"} +{"id": "228150", "title": "Fury", "year": 2014, "duration_min": 135, "rating": 7.4, "genres": "War, Drama, Action", "genres_pipe": "|War|Drama|Action|", "keywords": "world war ii, nazis, war, nazi germany, panzer, tank", "tags_pipe": "|world war ii|nazis|war|nazi germany|panzer|tank|", "overview": "Last months of World War II in April 1945. As the Allies make their final push in the European Theater, a battle-hardened U.S. Army sergeant in the 2nd Armored Division named Wardaddy commands a Sherman tank called \"Fury\" and its five-man crew on a deadly mission behind enemy lines. Outnumbered and outgunned, Wardaddy and his men face overwhelming odds in their heroic attempts to strike at the heart of Nazi Germany.", "text_for_embedding": "Fury (2014). Genres: War, Drama, Action. Last months of World War II in April 1945. As the Allies make their final push in the European Theater, a battle-hardened U.S. Army sergeant in the 2nd Armored Division named Wardaddy commands a Sherman tank called \"Fury\" and its five-man crew on a deadly mission behind enemy lines. Outnumbered and outgunned, Wardaddy and his men face overwhelming odds in their heroic attempts to strike at the heart of Nazi Germany.. Tags: world war ii, nazis, war, nazi germany, panzer, tank"} +{"id": "6068", "title": "Six Days Seven Nights", "year": 1998, "duration_min": 98, "rating": 5.6, "genres": "Action, Adventure, Comedy, Romance", "genres_pipe": "|Action|Adventure|Comedy|Romance|", "keywords": "overleven, family guy", "tags_pipe": "|overleven|family guy|", "overview": "When Quinn, a grouchy pilot living the good life in the South Pacific, agrees to transfer a savvy fashion editor, Robin, to Tahiti, he ends up stranded on a deserted island with her after their plane crashes. The pair avoid each other at first, until they're forced to team up to escape from the island -- and some pirates who want their heads.", "text_for_embedding": "Six Days Seven Nights (1998). Genres: Action, Adventure, Comedy, Romance. When Quinn, a grouchy pilot living the good life in the South Pacific, agrees to transfer a savvy fashion editor, Robin, to Tahiti, he ends up stranded on a deserted island with her after their plane crashes. The pair avoid each other at first, until they're forced to team up to escape from the island -- and some pirates who want their heads.. Tags: overleven, family guy"} +{"id": "41515", "title": "Yogi Bear", "year": 2010, "duration_min": 80, "rating": 5.2, "genres": "Comedy, Family, Animation, Adventure", "genres_pipe": "|Comedy|Family|Animation|Adventure|", "keywords": "picnic, sandwich, bear, 3d, yogi", "tags_pipe": "|picnic|sandwich|bear|3d|yogi|", "overview": "Jellystone Park has been losing business, so greedy Mayor Brown decides to shut it down and sell the land. That means families will no longer be able to experience the natural beauty of the outdoors -- and, even worse, Yogi and Boo Boo will be tossed out of the only home they've ever known. Faced with his biggest challenge ever, Yogi must prove that he really is \"smarter than the average bear\" as he and Boo Boo join forces with their old nemesis Ranger Smith to find a way to save Jellystone Park from closing forever.", "text_for_embedding": "Yogi Bear (2010). Genres: Comedy, Family, Animation, Adventure. Jellystone Park has been losing business, so greedy Mayor Brown decides to shut it down and sell the land. That means families will no longer be able to experience the natural beauty of the outdoors -- and, even worse, Yogi and Boo Boo will be tossed out of the only home they've ever known. Faced with his biggest challenge ever, Yogi must prove that he really is \"smarter than the average bear\" as he and Boo Boo join forces with their old nemesis Ranger Smith to find a way to save Jellystone Park from closing forever.. Tags: picnic, sandwich, bear, 3d, yogi"} +{"id": "9023", "title": "Spirit: Stallion of the Cimarron", "year": 2002, "duration_min": 83, "rating": 7.4, "genres": "Western, Animation, Adventure, Comedy, Family", "genres_pipe": "|Western|Animation|Adventure|Comedy|Family|", "keywords": "human being, freedom, mustang, rivalry, wildlife, animation, cavalry, indian war, eyebrow, wild horse", "tags_pipe": "|human being|freedom|mustang|rivalry|wildlife|animation|cavalry|indian war|eyebrow|wild horse|", "overview": "As a wild stallion travels across the frontiers of the Old West, he befriends a young human and finds true love with a mare.", "text_for_embedding": "Spirit: Stallion of the Cimarron (2002). Genres: Western, Animation, Adventure, Comedy, Family. As a wild stallion travels across the frontiers of the Old West, he befriends a young human and finds true love with a mare.. Tags: human being, freedom, mustang, rivalry, wildlife, animation, cavalry, indian war, eyebrow, wild horse"} +{"id": "38317", "title": "Zookeeper", "year": 2011, "duration_min": 102, "rating": 5.3, "genres": "Comedy, Romance, Family", "genres_pipe": "|Comedy|Romance|Family|", "keywords": "talking animal, scientist, german accent, ostrich, monkey, bullfrog, car dealership, duringcreditsstinger", "tags_pipe": "|talking animal|scientist|german accent|ostrich|monkey|bullfrog|car dealership|duringcreditsstinger|", "overview": "A comedy about a zookeeper who might be great with animals, but he doesn't know anything about the birds and the bees. The man can't find love, so he decides to quit his job at the zoo, but his animal friends try to stop him and teach him that Mother Nature knows best when it comes to love.", "text_for_embedding": "Zookeeper (2011). Genres: Comedy, Romance, Family. A comedy about a zookeeper who might be great with animals, but he doesn't know anything about the birds and the bees. The man can't find love, so he decides to quit his job at the zoo, but his animal friends try to stop him and teach him that Mother Nature knows best when it comes to love.. Tags: talking animal, scientist, german accent, ostrich, monkey, bullfrog, car dealership, duringcreditsstinger"} +{"id": "2157", "title": "Lost in Space", "year": 1998, "duration_min": 130, "rating": 5.0, "genres": "Adventure, Family, Science Fiction", "genres_pipe": "|Adventure|Family|Science Fiction|", "keywords": "time travel, sabotage, deep space explorer", "tags_pipe": "|time travel|sabotage|deep space explorer|", "overview": "The prospects for continuing life on Earth in the year 2058 are grim. So the Robinsons are launched into space to colonize Alpha Prime, the only other inhabitable planet in the galaxy. But when a stowaway sabotages the mission, the Robinsons find themselves hurtling through uncharted space.", "text_for_embedding": "Lost in Space (1998). Genres: Adventure, Family, Science Fiction. The prospects for continuing life on Earth in the year 2058 are grim. So the Robinsons are launched into space to colonize Alpha Prime, the only other inhabitable planet in the galaxy. But when a stowaway sabotages the mission, the Robinsons find themselves hurtling through uncharted space.. Tags: time travel, sabotage, deep space explorer"} +{"id": "14462", "title": "The Manchurian Candidate", "year": 2004, "duration_min": 129, "rating": 6.2, "genres": "Drama, Thriller, Mystery", "genres_pipe": "|Drama|Thriller|Mystery|", "keywords": "senator, gulf war, canoe, kuwait, conspiracy, war hero, u.s. congress, implant", "tags_pipe": "|senator|gulf war|canoe|kuwait|conspiracy|war hero|u.s. congress|implant|", "overview": "When his army unit was ambushed during the first Gulf War, Sergeant Raymond Shaw saved his fellow soldiers just as his commanding officer, then-Captain Ben Marco, was knocked unconscious. Brokering the incident for political capital, Shaw eventually becomes a vice-presidential nominee, while Marco is haunted by dreams of what happened -- or didn't happen -- in Kuwait. As Marco (now a Major) investigates, the story begins to unravel, to the point where he questions if it happened at all. Is it possible the entire unit was kidnapped and brainwashed to believe Shaw is a war hero as part of a plot to seize the White House? Some very powerful people at Manchurian Global corporation appear desperate to stop him from finding out.", "text_for_embedding": "The Manchurian Candidate (2004). Genres: Drama, Thriller, Mystery. When his army unit was ambushed during the first Gulf War, Sergeant Raymond Shaw saved his fellow soldiers just as his commanding officer, then-Captain Ben Marco, was knocked unconscious. Brokering the incident for political capital, Shaw eventually becomes a vice-presidential nominee, while Marco is haunted by dreams of what happened -- or didn't happen -- in Kuwait. As Marco (now a Major) investigates, the story begins to unravel, to the point where he questions if it happened at all. Is it possible the entire unit was kidnapped and brainwashed to believe Shaw is a war hero as part of a plot to seize the White House? Some very powerful people at Manchurian Global corporation appear desperate to stop him from finding out.. Tags: senator, gulf war, canoe, kuwait, conspiracy, war hero, u.s. congress, implant"} +{"id": "161795", "title": "Déjà Vu", "year": 1998, "duration_min": 117, "rating": 8.0, "genres": "Romance, Drama", "genres_pipe": "|Romance|Drama|", "keywords": "love, american, pin, stranger, ruby", "tags_pipe": "|love|american|pin|stranger|ruby|", "overview": "L.A. shop owner Dana and Englishman Sean meet and fall in love at first sight, but Sean is married and Dana is to marry her business partner Alex.", "text_for_embedding": "Déjà Vu (1998). Genres: Romance, Drama. L.A. shop owner Dana and Englishman Sean meet and fall in love at first sight, but Sean is married and Dana is to marry her business partner Alex.. Tags: love, american, pin, stranger, ruby"} +{"id": "159824", "title": "Hotel Transylvania 2", "year": 2015, "duration_min": 89, "rating": 6.7, "genres": "Animation, Comedy, Family", "genres_pipe": "|Animation|Comedy|Family|", "keywords": "transylvania, hotel, witch, technology, magic, mummy, dracula, skeleton, only child, backpacker, marriage, frankenstein, wolfman, zombie, moving out", "tags_pipe": "|transylvania|hotel|witch|technology|magic|mummy|dracula|skeleton|only child|backpacker|marriage|frankenstein|wolfman|zombie|moving out|", "overview": "When the old-old-old-fashioned vampire Vlad arrives at the hotel for an impromptu family get-together, Hotel Transylvania is in for a collision of supernatural old-school and modern day cool.", "text_for_embedding": "Hotel Transylvania 2 (2015). Genres: Animation, Comedy, Family. When the old-old-old-fashioned vampire Vlad arrives at the hotel for an impromptu family get-together, Hotel Transylvania is in for a collision of supernatural old-school and modern day cool.. Tags: transylvania, hotel, witch, technology, magic, mummy, dracula, skeleton, only child, backpacker, marriage, frankenstein, wolfman, zombie, moving out"} +{"id": "49948", "title": "Fantasia 2000", "year": 1999, "duration_min": 74, "rating": 7.0, "genres": "Animation, Family, Music", "genres_pipe": "|Animation|Family|Music|", "keywords": "orchestra, musical segments", "tags_pipe": "|orchestra|musical segments|", "overview": "Blending lively music and brilliant animation, this sequel to the original 'Fantasia' restores 'The Sorcerer's Apprentice' and adds seven new shorts.", "text_for_embedding": "Fantasia 2000 (1999). Genres: Animation, Family, Music. Blending lively music and brilliant animation, this sequel to the original 'Fantasia' restores 'The Sorcerer's Apprentice' and adds seven new shorts.. Tags: orchestra, musical segments"} +{"id": "2135", "title": "The Time Machine", "year": 2002, "duration_min": 96, "rating": 5.8, "genres": "Science Fiction, Adventure, Action", "genres_pipe": "|Science Fiction|Adventure|Action|", "keywords": "future, time machine", "tags_pipe": "|future|time machine|", "overview": "Hoping to alter the events of the past, a 19th century inventor instead travels 800,000 years into the future, where he finds humankind divided into two warring races.", "text_for_embedding": "The Time Machine (2002). Genres: Science Fiction, Adventure, Action. Hoping to alter the events of the past, a 19th century inventor instead travels 800,000 years into the future, where he finds humankind divided into two warring races.. Tags: future, time machine"} +{"id": "9822", "title": "Mighty Joe Young", "year": 1998, "duration_min": 114, "rating": 5.9, "genres": "Action, Adventure, Family, Fantasy", "genres_pipe": "|Action|Adventure|Family|Fantasy|", "keywords": "gorilla, dying and death", "tags_pipe": "|gorilla|dying and death|", "overview": "As a child living in Africa, Jill Young saw her mother killed while protecting wild gorillas from poachers led by Andrei Strasser. Now an adult, Jill cares for an orphaned gorilla named Joe -- who, due to a genetic anomaly, is 15 feet tall. When Gregg O'Hara arrives from California and sees the animal, he convinces Jill that Joe would be safest at his wildlife refuge. But Strasser follows them to the U.S., intent on capturing Joe for himself.", "text_for_embedding": "Mighty Joe Young (1998). Genres: Action, Adventure, Family, Fantasy. As a child living in Africa, Jill Young saw her mother killed while protecting wild gorillas from poachers led by Andrei Strasser. Now an adult, Jill cares for an orphaned gorilla named Joe -- who, due to a genetic anomaly, is 15 feet tall. When Gregg O'Hara arrives from California and sees the animal, he convinces Jill that Joe would be safest at his wildlife refuge. But Strasser follows them to the U.S., intent on capturing Joe for himself.. Tags: gorilla, dying and death"} +{"id": "9705", "title": "Swordfish", "year": 2001, "duration_min": 99, "rating": 6.1, "genres": "Action, Crime, Thriller", "genres_pipe": "|Action|Crime|Thriller|", "keywords": "female nudity, hacker, terrorism, violence, ex-con, wire, los angeles international airport (lax), misdirection, aftercreditsstinger", "tags_pipe": "|female nudity|hacker|terrorism|violence|ex-con|wire|los angeles international airport (lax)|misdirection|aftercreditsstinger|", "overview": "Rogue agent Gabriel Shear is determined to get his mitts on $9 billion stashed in a secret Drug Enforcement Administration account. He wants the cash to fight terrorism, but lacks the computer skills necessary to hack into the government mainframe. Enter Stanley Jobson, a n'er-do-well encryption expert who can log into anything.", "text_for_embedding": "Swordfish (2001). Genres: Action, Crime, Thriller. Rogue agent Gabriel Shear is determined to get his mitts on $9 billion stashed in a secret Drug Enforcement Administration account. He wants the cash to fight terrorism, but lacks the computer skills necessary to hack into the government mainframe. Enter Stanley Jobson, a n'er-do-well encryption expert who can log into anything.. Tags: female nudity, hacker, terrorism, violence, ex-con, wire, los angeles international airport (lax), misdirection, aftercreditsstinger"} +{"id": "1656", "title": "The Legend of Zorro", "year": 2005, "duration_min": 129, "rating": 5.9, "genres": "Action, Adventure", "genres_pipe": "|Action|Adventure|", "keywords": "california, spy, father son relationship, mexico, hero, marriage crisis, sword fight, divorce, american civil war", "tags_pipe": "|california|spy|father son relationship|mexico|hero|marriage crisis|sword fight|divorce|american civil war|", "overview": "Having spent the last 10 years fighting injustice and cruelty, Alejandro de la Vega is now facing his greatest challenge: his loving wife Elena has thrown him out of the house! Elena has filed for divorce and found comfort in the arms of Count Armand, a dashing French aristocrat. But Alejandro knows something she doesn't: Armand is the evil mastermind behind a terrorist plot to destroy the United States. And so, with his marriage and the county's future at stake, it's up to Zorro to save two unions before it's too late.", "text_for_embedding": "The Legend of Zorro (2005). Genres: Action, Adventure. Having spent the last 10 years fighting injustice and cruelty, Alejandro de la Vega is now facing his greatest challenge: his loving wife Elena has thrown him out of the house! Elena has filed for divorce and found comfort in the arms of Count Armand, a dashing French aristocrat. But Alejandro knows something she doesn't: Armand is the evil mastermind behind a terrorist plot to destroy the United States. And so, with his marriage and the county's future at stake, it's up to Zorro to save two unions before it's too late.. Tags: california, spy, father son relationship, mexico, hero, marriage crisis, sword fight, divorce, american civil war"} +{"id": "12159", "title": "What Dreams May Come", "year": 1998, "duration_min": 113, "rating": 6.8, "genres": "Drama, Fantasy, Romance", "genres_pipe": "|Drama|Fantasy|Romance|", "keywords": "paradise, soul, underworld, heaven, painting, hell, afterlife, spiritism", "tags_pipe": "|paradise|soul|underworld|heaven|painting|hell|afterlife|spiritism|", "overview": "Chris Neilson dies to find himself in a heaven more amazing than he could have ever dreamed of. There is one thing missing: his wife. After he dies, his wife, Annie killed herself and went to hell. Chris decides to risk eternity in hades for the small chance that he will be able to bring her back to heaven.", "text_for_embedding": "What Dreams May Come (1998). Genres: Drama, Fantasy, Romance. Chris Neilson dies to find himself in a heaven more amazing than he could have ever dreamed of. There is one thing missing: his wife. After he dies, his wife, Annie killed herself and went to hell. Chris decides to risk eternity in hades for the small chance that he will be able to bring her back to heaven.. Tags: paradise, soul, underworld, heaven, painting, hell, afterlife, spiritism"} +{"id": "9678", "title": "Little Nicky", "year": 2000, "duration_min": 90, "rating": 5.2, "genres": "Comedy, Fantasy, Romance", "genres_pipe": "|Comedy|Fantasy|Romance|", "keywords": "father son relationship, brother sister relationship, mephisto, bulldogg", "tags_pipe": "|father son relationship|brother sister relationship|mephisto|bulldogg|", "overview": "After the lord of darkness decides he will not cede his thrown to any of his three sons, the two most powerful of them escape to Earth to create a kingdom for themselves. This action closes the portal filtering sinful souls to Hell and causes Satan to wither away. He must send his most weak but beloved son, Little Nicky, to Earth to return his brothers to Hell.", "text_for_embedding": "Little Nicky (2000). Genres: Comedy, Fantasy, Romance. After the lord of darkness decides he will not cede his thrown to any of his three sons, the two most powerful of them escape to Earth to create a kingdom for themselves. This action closes the portal filtering sinful souls to Hell and causes Satan to wither away. He must send his most weak but beloved son, Little Nicky, to Earth to return his brothers to Hell.. Tags: father son relationship, brother sister relationship, mephisto, bulldogg"} +{"id": "4442", "title": "The Brothers Grimm", "year": 2005, "duration_min": 118, "rating": 5.6, "genres": "Adventure, Fantasy, Action, Comedy, Thriller", "genres_pipe": "|Adventure|Fantasy|Action|Comedy|Thriller|", "keywords": "brother brother relationship, literature, aftercreditsstinger", "tags_pipe": "|brother brother relationship|literature|aftercreditsstinger|", "overview": "Folklore collectors and con artists, Jake and Will Grimm, travel from village to village pretending to protect townsfolk from enchanted creatures and performing exorcisms. However, they are put to the test when they encounter a real magical curse in a haunted forest with real magical beings, requiring genuine courage.", "text_for_embedding": "The Brothers Grimm (2005). Genres: Adventure, Fantasy, Action, Comedy, Thriller. Folklore collectors and con artists, Jake and Will Grimm, travel from village to village pretending to protect townsfolk from enchanted creatures and performing exorcisms. However, they are put to the test when they encounter a real magical curse in a haunted forest with real magical beings, requiring genuine courage.. Tags: brother brother relationship, literature, aftercreditsstinger"} +{"id": "75", "title": "Mars Attacks!", "year": 1996, "duration_min": 106, "rating": 6.1, "genres": "Comedy, Fantasy, Science Fiction", "genres_pipe": "|Comedy|Fantasy|Science Fiction|", "keywords": "saving the world, total destruction, white house, mars, usa president, cataclysm, lasergun, ambassador, congress, pest, flying saucer", "tags_pipe": "|saving the world|total destruction|white house|mars|usa president|cataclysm|lasergun|ambassador|congress|pest|flying saucer|", "overview": "'We come in peace' is not what those green men from Mars mean when they invade our planet, armed with irresistible weapons and a cruel sense of humor. This star studded cast must play victim to the alien’s fun and games in this comedy homage to science fiction films of the '50s and '60s.", "text_for_embedding": "Mars Attacks! (1996). Genres: Comedy, Fantasy, Science Fiction. 'We come in peace' is not what those green men from Mars mean when they invade our planet, armed with irresistible weapons and a cruel sense of humor. This star studded cast must play victim to the alien’s fun and games in this comedy homage to science fiction films of the '50s and '60s.. Tags: saving the world, total destruction, white house, mars, usa president, cataclysm, lasergun, ambassador, congress, pest, flying saucer"} +{"id": "330770", "title": "Evolution", "year": 2015, "duration_min": 81, "rating": 6.4, "genres": "Mystery, Drama, Horror", "genres_pipe": "|Mystery|Drama|Horror|", "keywords": "nurse, sea, beach, boy, pregnant, blood, woman director", "tags_pipe": "|nurse|sea|beach|boy|pregnant|blood|woman director|", "overview": "11-year-old Nicolas lives with his mother in a seaside housing estate. The only place that ever sees any activity is the hospital. It is there that all the boys from the village are forced to undergo strange medical trials that attempt to disrupt the phases of evolution.", "text_for_embedding": "Evolution (2015). Genres: Mystery, Drama, Horror. 11-year-old Nicolas lives with his mother in a seaside housing estate. The only place that ever sees any activity is the hospital. It is there that all the boys from the village are forced to undergo strange medical trials that attempt to disrupt the phases of evolution.. Tags: nurse, sea, beach, boy, pregnant, blood, woman director"} +{"id": "9433", "title": "The Edge", "year": 1997, "duration_min": 117, "rating": 6.7, "genres": "Action, Adventure, Drama", "genres_pipe": "|Action|Adventure|Drama|", "keywords": "photographer, grizzly bear, wilderness, airplane, supermodel, emergency landing, suspense, survival, bear, animal horror", "tags_pipe": "|photographer|grizzly bear|wilderness|airplane|supermodel|emergency landing|suspense|survival|bear|animal horror|", "overview": "The plane carrying wealthy Charles Morse crashes down in the Alaskan wilderness. Together with the two other passengers, photographer Robert and assistant Stephen, Charles devises a plan to help them reach civilization. However, his biggest obstacle might not be the elements, or even the Kodiak bear stalking them -- it could be Robert, whom Charles suspects is having an affair with his wife and would not mind seeing him dead.", "text_for_embedding": "The Edge (1997). Genres: Action, Adventure, Drama. The plane carrying wealthy Charles Morse crashes down in the Alaskan wilderness. Together with the two other passengers, photographer Robert and assistant Stephen, Charles devises a plan to help them reach civilization. However, his biggest obstacle might not be the elements, or even the Kodiak bear stalking them -- it could be Robert, whom Charles suspects is having an affair with his wife and would not mind seeing him dead.. Tags: photographer, grizzly bear, wilderness, airplane, supermodel, emergency landing, suspense, survival, bear, animal horror"} +{"id": "19959", "title": "Surrogates", "year": 2009, "duration_min": 89, "rating": 5.9, "genres": "Action, Science Fiction, Thriller", "genres_pipe": "|Action|Science Fiction|Thriller|", "keywords": "clone, dystopia", "tags_pipe": "|clone|dystopia|", "overview": "Set in a futuristic world where humans live in isolation and interact through surrogate robots, a cop is forced to leave his home for the first time in years in order to investigate the murders of others' surrogates.", "text_for_embedding": "Surrogates (2009). Genres: Action, Science Fiction, Thriller. Set in a futuristic world where humans live in isolation and interact through surrogate robots, a cop is forced to leave his home for the first time in years in order to investigate the murders of others' surrogates.. Tags: clone, dystopia"} +{"id": "11973", "title": "Thirteen Days", "year": 2000, "duration_min": 145, "rating": 6.9, "genres": "Drama, Thriller", "genres_pipe": "|Drama|Thriller|", "keywords": "usa president, atomic bomb, john f. kennedy, kubakrise, threat", "tags_pipe": "|usa president|atomic bomb|john f. kennedy|kubakrise|threat|", "overview": "Dramatisation of the Cuban Missile Crisis, the nuclear standoff with the USSR sparked by the discovery by the Americans of missle bases established on the Soviet allied island of Cuba. Shown from the perspective of the US President, John F Kennedy, his staff and advisors.", "text_for_embedding": "Thirteen Days (2000). Genres: Drama, Thriller. Dramatisation of the Cuban Missile Crisis, the nuclear standoff with the USSR sparked by the discovery by the Americans of missle bases established on the Soviet allied island of Cuba. Shown from the perspective of the US President, John F Kennedy, his staff and advisors.. Tags: usa president, atomic bomb, john f. kennedy, kubakrise, threat"} +{"id": "11228", "title": "Daylight", "year": 1996, "duration_min": 115, "rating": 5.8, "genres": "Action, Adventure, Thriller", "genres_pipe": "|Action|Adventure|Thriller|", "keywords": "taxi, new jersey, helicopter, river, hero, taxi driver, race against time, guard, survival, disaster, new york city, explosion, power outage, dog, trapped", "tags_pipe": "|taxi|new jersey|helicopter|river|hero|taxi driver|race against time|guard|survival|disaster|new york city|explosion|power outage|dog|trapped|", "overview": "A group of armed robbers fleeing the police head for the New Jersey Tunnel and run right into trucks transporting toxic waste. The spectacular explosion that follows results in both ends of the tunnel collapsing and the handful of people who survived the explosion are now in peril. Kit Latura is the only man with the skill and knowledge to lead the band of survivors out of the tunnel before the structure collapses.", "text_for_embedding": "Daylight (1996). Genres: Action, Adventure, Thriller. A group of armed robbers fleeing the police head for the New Jersey Tunnel and run right into trucks transporting toxic waste. The spectacular explosion that follows results in both ends of the tunnel collapsing and the handful of people who survived the explosion are now in peril. Kit Latura is the only man with the skill and knowledge to lead the band of survivors out of the tunnel before the structure collapses.. Tags: taxi, new jersey, helicopter, river, hero, taxi driver, race against time, guard, survival, disaster, new york city, explosion, power outage, dog, trapped"} +{"id": "77951", "title": "Walking With Dinosaurs", "year": 2013, "duration_min": 87, "rating": 5.2, "genres": "Animation, Family, Adventure", "genres_pipe": "|Animation|Family|Adventure|", "keywords": "dinosaur, 3d", "tags_pipe": "|dinosaur|3d|", "overview": "Walking with Dinosaurs 3D is a film depicting life-like 3D dinosaur characters set in photo-real landscapes that transports audiences to the prehistoric world as it existed 70 million years ago. The film is based on the 1999 documentary television miniseries Walking with Dinosaurs, produced by the BBC. Walking with Dinosaurs 3D is being produced by Evergreen Studios, the company that produced Happy Feet, and it is was released on October 11, 2013.", "text_for_embedding": "Walking With Dinosaurs (2013). Genres: Animation, Family, Adventure. Walking with Dinosaurs 3D is a film depicting life-like 3D dinosaur characters set in photo-real landscapes that transports audiences to the prehistoric world as it existed 70 million years ago. The film is based on the 1999 documentary television miniseries Walking with Dinosaurs, produced by the BBC. Walking with Dinosaurs 3D is being produced by Evergreen Studios, the company that produced Happy Feet, and it is was released on October 11, 2013.. Tags: dinosaur, 3d"} +{"id": "5491", "title": "Battlefield Earth", "year": 2000, "duration_min": 118, "rating": 3.0, "genres": "Action, Science Fiction, War", "genres_pipe": "|Action|Science Fiction|War|", "keywords": "based on novel, post-apocalyptic, dystopia, mining, fighter jet, alien invasion, scientology, cavemen, bureaucrat, city ruin", "tags_pipe": "|based on novel|post-apocalyptic|dystopia|mining|fighter jet|alien invasion|scientology|cavemen|bureaucrat|city ruin|", "overview": "In the year 3000, man is no match for the Psychlos, a greedy, manipulative race of aliens on a quest for ultimate profit. Led by the powerful Terl, the Psychlos are stripping Earth clean of its natural resources, using the broken remnants of humanity as slaves. What is left of the human race has descended into a near primitive state. After being captured, it is up to Tyler to save mankind.", "text_for_embedding": "Battlefield Earth (2000). Genres: Action, Science Fiction, War. In the year 3000, man is no match for the Psychlos, a greedy, manipulative race of aliens on a quest for ultimate profit. Led by the powerful Terl, the Psychlos are stripping Earth clean of its natural resources, using the broken remnants of humanity as slaves. What is left of the human race has descended into a near primitive state. After being captured, it is up to Tyler to save mankind.. Tags: based on novel, post-apocalyptic, dystopia, mining, fighter jet, alien invasion, scientology, cavemen, bureaucrat, city ruin"} +{"id": "10715", "title": "Looney Tunes: Back in Action", "year": 2003, "duration_min": 90, "rating": 5.6, "genres": "Animation, Comedy, Family", "genres_pipe": "|Animation|Comedy|Family|", "keywords": "spy, duck, bunny, wretch, film industry, live action and animation", "tags_pipe": "|spy|duck|bunny|wretch|film industry|live action and animation|", "overview": "Bugs Bunny and Daffy Duck are up to their feuding ways again. Tired of playing second fiddle to Bugs, Daffy has decided to leave the Studio for good. He is aided by Warner Bros.' humor impaired Vice President of Comedy, Kate Houghton, who releases him from his contract and instructs WB security guard/aspiring stunt man DJ Drake to capture and \"escort\" Daffy off the studio lot.", "text_for_embedding": "Looney Tunes: Back in Action (2003). Genres: Animation, Comedy, Family. Bugs Bunny and Daffy Duck are up to their feuding ways again. Tired of playing second fiddle to Bugs, Daffy has decided to leave the Studio for good. He is aided by Warner Bros.' humor impaired Vice President of Comedy, Kate Houghton, who releases him from his contract and instructs WB security guard/aspiring stunt man DJ Drake to capture and \"escort\" Daffy off the studio lot.. Tags: spy, duck, bunny, wretch, film industry, live action and animation"} +{"id": "10197", "title": "Nine", "year": 2009, "duration_min": 112, "rating": 5.1, "genres": "Drama, Music, Romance", "genres_pipe": "|Drama|Music|Romance|", "keywords": "memory, sidewalk cafe, room key, driving a car, coastline, stairway, search for meaning, sequins, singing photograph, sliding down a pole, costume designer, duringcreditsstinger, 1960s", "tags_pipe": "|memory|sidewalk cafe|room key|driving a car|coastline|stairway|search for meaning|sequins|singing photograph|sliding down a pole|costume designer|duringcreditsstinger|1960s|", "overview": "Arrogant, self-centered movie director Guido Contini finds himself struggling to find meaning, purpose, and a script for his latest film endeavor. With only a week left before shooting begins, he desperately searches for answers and inspiration from his wife, his mistress, his muse, and his mother.", "text_for_embedding": "Nine (2009). Genres: Drama, Music, Romance. Arrogant, self-centered movie director Guido Contini finds himself struggling to find meaning, purpose, and a script for his latest film endeavor. With only a week left before shooting begins, he desperately searches for answers and inspiration from his wife, his mistress, his muse, and his mother.. Tags: memory, sidewalk cafe, room key, driving a car, coastline, stairway, search for meaning, sequins, singing photograph, sliding down a pole, costume designer, duringcreditsstinger, 1960s"} +{"id": "9562", "title": "Timeline", "year": 2003, "duration_min": 116, "rating": 5.4, "genres": "Action, Adventure, Science Fiction", "genres_pipe": "|Action|Adventure|Science Fiction|", "keywords": "professor, time travel, quantum mechanics, hundred years' war, excavation, la roque, knight, medieval times", "tags_pipe": "|professor|time travel|quantum mechanics|hundred years' war|excavation|la roque|knight|medieval times|", "overview": "A group of archaeological students become trapped in the past when they go there to retrieve their professor. The group must survive in 14th century France long enough to be rescued.", "text_for_embedding": "Timeline (2003). Genres: Action, Adventure, Science Fiction. A group of archaeological students become trapped in the past when they go there to retrieve their professor. The group must survive in 14th century France long enough to be rescued.. Tags: professor, time travel, quantum mechanics, hundred years' war, excavation, la roque, knight, medieval times"} +{"id": "9922", "title": "The Postman", "year": 1997, "duration_min": 177, "rating": 6.1, "genres": "Drama, Adventure", "genres_pipe": "|Drama|Adventure|", "keywords": "usa, post, postman, army, apocalypse", "tags_pipe": "|usa|post|postman|army|apocalypse|", "overview": "In 2013 there are no highways, no I-ways, no dreams of a better tomorrow, only scattered survivors across what was once the Unites States. Into this apocalyptic wasteland comes an enigmatic drifter with a mule, a knack for Shakespeare and something yet undiscovered: the power to inspire hope.", "text_for_embedding": "The Postman (1997). Genres: Drama, Adventure. In 2013 there are no highways, no I-ways, no dreams of a better tomorrow, only scattered survivors across what was once the Unites States. Into this apocalyptic wasteland comes an enigmatic drifter with a mule, a knack for Shakespeare and something yet undiscovered: the power to inspire hope.. Tags: usa, post, postman, army, apocalypse"} +{"id": "9447", "title": "Babe: Pig in the City", "year": 1998, "duration_min": 92, "rating": 5.2, "genres": "Adventure, Comedy, Drama, Family, Fantasy", "genres_pipe": "|Adventure|Comedy|Drama|Family|Fantasy|", "keywords": "piggy bank, shortage of money, pig, farm, piglet, talking animal, talking dog, dog, chimpanzee, talking pig", "tags_pipe": "|piggy bank|shortage of money|pig|farm|piglet|talking animal|talking dog|dog|chimpanzee|talking pig|", "overview": "Babe, fresh from his victory in the sheepherding contest, returns to Farmer Hoggett's farm, but after Farmer Hoggett is injured and unable to work, Babe has to go to the big city to save the farm.", "text_for_embedding": "Babe: Pig in the City (1998). Genres: Adventure, Comedy, Drama, Family, Fantasy. Babe, fresh from his victory in the sheepherding contest, returns to Farmer Hoggett's farm, but after Farmer Hoggett is injured and unable to work, Babe has to go to the big city to save the farm.. Tags: piggy bank, shortage of money, pig, farm, piglet, talking animal, talking dog, dog, chimpanzee, talking pig"} +{"id": "274854", "title": "The Last Witch Hunter", "year": 2015, "duration_min": 106, "rating": 5.7, "genres": "Fantasy, Action, Adventure", "genres_pipe": "|Fantasy|Action|Adventure|", "keywords": "new york, witch, uprising, witch hunter", "tags_pipe": "|new york|witch|uprising|witch hunter|", "overview": "The modern world holds many secrets, but by far the most astounding is that witches still live among us; vicious supernatural creatures intent on unleashing the Black Death upon the world and putting an end to the human race once and for all. Armies of witch hunters have battled this unnatural enemy for centuries, including Kaulder, a valiant warrior who many years ago slayed the all-powerful Witch Queen, decimating her followers in the process. In the moments right before her death, the Queen cursed Kaulder with immortality, forever separating him from his beloved wife and daughter. Today, Kaulder is the last living hunter who has spent his immortal life tracking down rogue witches, all the while yearning for his long-lost family.", "text_for_embedding": "The Last Witch Hunter (2015). Genres: Fantasy, Action, Adventure. The modern world holds many secrets, but by far the most astounding is that witches still live among us; vicious supernatural creatures intent on unleashing the Black Death upon the world and putting an end to the human race once and for all. Armies of witch hunters have battled this unnatural enemy for centuries, including Kaulder, a valiant warrior who many years ago slayed the all-powerful Witch Queen, decimating her followers in the process. In the moments right before her death, the Queen cursed Kaulder with immortality, forever separating him from his beloved wife and daughter. Today, Kaulder is the last living hunter who has spent his immortal life tracking down rogue witches, all the while yearning for his long-lost family.. Tags: new york, witch, uprising, witch hunter"} +{"id": "8870", "title": "Red Planet", "year": 2000, "duration_min": 106, "rating": 5.4, "genres": "Thriller, Action, Science Fiction", "genres_pipe": "|Thriller|Action|Science Fiction|", "keywords": "mars, future, astronaut, science, catastrophe", "tags_pipe": "|mars|future|astronaut|science|catastrophe|", "overview": "Astronauts search for solutions to save a dying Earth by searching on Mars, only to have the mission go terribly awry.", "text_for_embedding": "Red Planet (2000). Genres: Thriller, Action, Science Fiction. Astronauts search for solutions to save a dying Earth by searching on Mars, only to have the mission go terribly awry.. Tags: mars, future, astronaut, science, catastrophe"} +{"id": "9992", "title": "Arthur and the Invisibles", "year": 2006, "duration_min": 94, "rating": 6.0, "genres": "Adventure, Fantasy, Animation, Family", "genres_pipe": "|Adventure|Fantasy|Animation|Family|", "keywords": "grandfather grandson relationship, wretch, treasure hunt, disappearance, family, fantasy world", "tags_pipe": "|grandfather grandson relationship|wretch|treasure hunt|disappearance|family|fantasy world|", "overview": "Arthur is a spirited ten-year old whose parents are away looking for work, whose eccentric grandfather has been missing for several years, and who lives with his grandmother in a country house that, in two days, will be repossessed, torn down, and turned into a block of flats unless Arthur's grandfather returns to sign some papers and pay off the family debt. Arthur discovers that the key to success lies in his own descent into the land of the Minimoys, creatures no larger than a tooth, whom his grandfather helped relocate to their garden. Somewhere among them is hidden a pile of rubies, too. Can Arthur be of stout heart and save the day? Romance beckons as well, and a villain lurks.", "text_for_embedding": "Arthur and the Invisibles (2006). Genres: Adventure, Fantasy, Animation, Family. Arthur is a spirited ten-year old whose parents are away looking for work, whose eccentric grandfather has been missing for several years, and who lives with his grandmother in a country house that, in two days, will be repossessed, torn down, and turned into a block of flats unless Arthur's grandfather returns to sign some papers and pay off the family debt. Arthur discovers that the key to success lies in his own descent into the land of the Minimoys, creatures no larger than a tooth, whom his grandfather helped relocate to their garden. Somewhere among them is hidden a pile of rubies, too. Can Arthur be of stout heart and save the day? Romance beckons as well, and a villain lurks.. Tags: grandfather grandson relationship, wretch, treasure hunt, disappearance, family, fantasy world"} +{"id": "36970", "title": "Oceans", "year": 2009, "duration_min": 84, "rating": 7.3, "genres": "Documentary, Family", "genres_pipe": "|Documentary|Family|", "keywords": "ocean, sea, fish, whale, duringcreditsstinger", "tags_pipe": "|ocean|sea|fish|whale|duringcreditsstinger|", "overview": "An ecological drama/documentary, filmed throughout the globe. Part thriller, part meditation on the vanishing wonders of the sub-aquatic world.", "text_for_embedding": "Oceans (2009). Genres: Documentary, Family. An ecological drama/documentary, filmed throughout the globe. Part thriller, part meditation on the vanishing wonders of the sub-aquatic world.. Tags: ocean, sea, fish, whale, duringcreditsstinger"} +{"id": "10077", "title": "A Sound of Thunder", "year": 2005, "duration_min": 110, "rating": 4.8, "genres": "Thriller, Science Fiction, Adventure, Action", "genres_pipe": "|Thriller|Science Fiction|Adventure|Action|", "keywords": "dying and death, time travel, romance, dinosaur", "tags_pipe": "|dying and death|time travel|romance|dinosaur|", "overview": "When a hunter sent back to the prehistoric era runs off the path he must not leave, he causes a chain reaction that alters history in disastrous ways.", "text_for_embedding": "A Sound of Thunder (2005). Genres: Thriller, Science Fiction, Adventure, Action. When a hunter sent back to the prehistoric era runs off the path he must not leave, he causes a chain reaction that alters history in disastrous ways.. Tags: dying and death, time travel, romance, dinosaur"} +{"id": "76649", "title": "Pompeii", "year": 2014, "duration_min": 105, "rating": 5.2, "genres": "Action, Adventure, History, Romance, Drama", "genres_pipe": "|Action|Adventure|History|Romance|Drama|", "keywords": "gladiator, arena, gladiator fight, lava, roman, forbidden love, natural disaster, epic, disaster, slave, town in panic, vulcan, volcanic eruption, pompeii, 3d", "tags_pipe": "|gladiator|arena|gladiator fight|lava|roman|forbidden love|natural disaster|epic|disaster|slave|town in panic|vulcan|volcanic eruption|pompeii|3d|", "overview": "Set in 79 A.D., POMPEII tells the epic story of Milo, a slave turned invincible gladiator who finds himself in a race against time to save his true love Cassia, the beautiful daughter of a wealthy merchant who has been unwillingly betrothed to a corrupt Roman Senator. As Mount Vesuvius erupts in a torrent of blazing lava, Milo must fight his way out of the arena in order to save his beloved as the once magnificent Pompeii crumbles around him.", "text_for_embedding": "Pompeii (2014). Genres: Action, Adventure, History, Romance, Drama. Set in 79 A.D., POMPEII tells the epic story of Milo, a slave turned invincible gladiator who finds himself in a race against time to save his true love Cassia, the beautiful daughter of a wealthy merchant who has been unwillingly betrothed to a corrupt Roman Senator. As Mount Vesuvius erupts in a torrent of blazing lava, Milo must fight his way out of the arena in order to save his beloved as the once magnificent Pompeii crumbles around him.. Tags: gladiator, arena, gladiator fight, lava, roman, forbidden love, natural disaster, epic, disaster, slave, town in panic, vulcan, volcanic eruption, pompeii, 3d"} +{"id": "293644", "title": "Top Cat Begins", "year": 2015, "duration_min": 89, "rating": 5.3, "genres": "Comedy, Animation", "genres_pipe": "|Comedy|Animation|", "keywords": "3d", "tags_pipe": "|3d|", "overview": "Top Cat has arrived to charm his way into your hearts! Ever wonder how this scheming feline got his start? Well Top Cat Begins reveals the origins of everything you know and love about this classic comedy hero. What follows is an adventure so crazy that it has to be seen to be believed!", "text_for_embedding": "Top Cat Begins (2015). Genres: Comedy, Animation. Top Cat has arrived to charm his way into your hearts! Ever wonder how this scheming feline got his start? Well Top Cat Begins reveals the origins of everything you know and love about this classic comedy hero. What follows is an adventure so crazy that it has to be seen to be believed!. Tags: 3d"} +{"id": "453", "title": "A Beautiful Mind", "year": 2001, "duration_min": 135, "rating": 7.7, "genres": "Drama, Romance", "genres_pipe": "|Drama|Romance|", "keywords": "individual, schizophrenia, massachusetts, love of one's life, intelligence, mathematician, market economy, economic theory, princeton university, nobel prize, mathematical theorem, m.i.t., mathematics, delusion", "tags_pipe": "|individual|schizophrenia|massachusetts|love of one's life|intelligence|mathematician|market economy|economic theory|princeton university|nobel prize|mathematical theorem|m.i.t.|mathematics|delusion|", "overview": "At Princeton University, John Nash struggles to make a worthwhile contribution to serve as his legacy to the world of mathematics. He finally makes a revolutionary breakthrough that will eventually earn him the Nobel Prize. After graduate school he turns to teaching, becoming romantically involved with his student Alicia. Meanwhile the government asks his help with breaking Soviet codes, which soon gets him involved in a terrifying conspiracy plot. Nash grows more and more paranoid until a discovery that turns his entire world upside down. Now it is only with Alicia's help that he will be able to recover his mental strength and regain his status as the great mathematician we know him as today..", "text_for_embedding": "A Beautiful Mind (2001). Genres: Drama, Romance. At Princeton University, John Nash struggles to make a worthwhile contribution to serve as his legacy to the world of mathematics. He finally makes a revolutionary breakthrough that will eventually earn him the Nobel Prize. After graduate school he turns to teaching, becoming romantically involved with his student Alicia. Meanwhile the government asks his help with breaking Soviet codes, which soon gets him involved in a terrifying conspiracy plot. Nash grows more and more paranoid until a discovery that turns his entire world upside down. Now it is only with Alicia's help that he will be able to recover his mental strength and regain his status as the great mathematician we know him as today... Tags: individual, schizophrenia, massachusetts, love of one's life, intelligence, mathematician, market economy, economic theory, princeton university, nobel prize, mathematical theorem, m.i.t., mathematics, delusion"} +{"id": "8587", "title": "The Lion King", "year": 1994, "duration_min": 89, "rating": 8.0, "genres": "Family, Animation, Drama", "genres_pipe": "|Family|Animation|Drama|", "keywords": "loss of parents, wild boar, uncle, shaman, redemption, king, scar, hyena, meerkat", "tags_pipe": "|loss of parents|wild boar|uncle|shaman|redemption|king|scar|hyena|meerkat|", "overview": "A young lion cub named Simba can't wait to be king. But his uncle craves the title for himself and will stop at nothing to get it.", "text_for_embedding": "The Lion King (1994). Genres: Family, Animation, Drama. A young lion cub named Simba can't wait to be king. But his uncle craves the title for himself and will stop at nothing to get it.. Tags: loss of parents, wild boar, uncle, shaman, redemption, king, scar, hyena, meerkat"} +{"id": "72545", "title": "Journey 2: The Mysterious Island", "year": 2012, "duration_min": 94, "rating": 5.8, "genres": "Adventure, Action, Science Fiction", "genres_pipe": "|Adventure|Action|Science Fiction|", "keywords": "mission, mysterious island, missing person, duringcreditsstinger, 3d", "tags_pipe": "|mission|mysterious island|missing person|duringcreditsstinger|3d|", "overview": "Sean Anderson partners with his mom's boyfriend on a mission to find his grandfather, who is thought to be missing on a mythical island.", "text_for_embedding": "Journey 2: The Mysterious Island (2012). Genres: Adventure, Action, Science Fiction. Sean Anderson partners with his mom's boyfriend on a mission to find his grandfather, who is thought to be missing on a mythical island.. Tags: mission, mysterious island, missing person, duringcreditsstinger, 3d"} +{"id": "109451", "title": "Cloudy with a Chance of Meatballs 2", "year": 2013, "duration_min": 95, "rating": 6.4, "genres": "Animation, Family, Comedy", "genres_pipe": "|Animation|Family|Comedy|", "keywords": "inventor, food, scientist", "tags_pipe": "|inventor|food|scientist|", "overview": "After the disastrous food storm in the first film, Flint and his friends are forced to leave the town. Flint accepts the invitation from his idol Chester V to join The Live Corp Company, which has been tasked to clean the island, and where the best inventors in the world create technologies for the betterment of mankind. When Flint discovers that his machine still operates and now creates mutant food beasts like living pickles, hungry tacodiles, shrimpanzees and apple pie-thons, he and his friends must return to save the world.", "text_for_embedding": "Cloudy with a Chance of Meatballs 2 (2013). Genres: Animation, Family, Comedy. After the disastrous food storm in the first film, Flint and his friends are forced to leave the town. Flint accepts the invitation from his idol Chester V to join The Live Corp Company, which has been tasked to clean the island, and where the best inventors in the world create technologies for the betterment of mankind. When Flint discovers that his machine still operates and now creates mutant food beasts like living pickles, hungry tacodiles, shrimpanzees and apple pie-thons, he and his friends must return to save the world.. Tags: inventor, food, scientist"} +{"id": "9533", "title": "Red Dragon", "year": 2002, "duration_min": 124, "rating": 6.7, "genres": "Crime, Thriller, Horror", "genres_pipe": "|Crime|Thriller|Horror|", "keywords": "psychopath, serial killer, fbi agent", "tags_pipe": "|psychopath|serial killer|fbi agent|", "overview": "Former FBI Agent Will Graham, who was once almost killed by the savage Hannibal 'The Cannibal' Lecter, now has no choice but to face him again, as it seems Lecter is the only one who can help Graham track down a new serial killer.", "text_for_embedding": "Red Dragon (2002). Genres: Crime, Thriller, Horror. Former FBI Agent Will Graham, who was once almost killed by the savage Hannibal 'The Cannibal' Lecter, now has no choice but to face him again, as it seems Lecter is the only one who can help Graham track down a new serial killer.. Tags: psychopath, serial killer, fbi agent"} +{"id": "2023", "title": "Hidalgo", "year": 2004, "duration_min": 136, "rating": 6.5, "genres": "Western, Adventure", "genres_pipe": "|Western|Adventure|", "keywords": "horse race, horse, racehorse", "tags_pipe": "|horse race|horse|racehorse|", "overview": "Set in 1890, this is the story of a Pony Express courier who travels to Arabia to compete with his horse, Hidalgo, in a dangerous race for a massive contest prize, in an adventure that sends the pair around the world...", "text_for_embedding": "Hidalgo (2004). Genres: Western, Adventure. Set in 1890, this is the story of a Pony Express courier who travels to Arabia to compete with his horse, Hidalgo, in a dangerous race for a massive contest prize, in an adventure that sends the pair around the world.... Tags: horse race, horse, racehorse"} +{"id": "71880", "title": "Jack and Jill", "year": 2011, "duration_min": 91, "rating": 4.1, "genres": "Comedy", "genres_pipe": "|Comedy|", "keywords": "duringcreditsstinger", "tags_pipe": "|duringcreditsstinger|", "overview": "Jack Sadelstein, a successful advertising executive in Los Angeles with a beautiful wife and kids, dreads one event each year: the Thanksgiving visit of his twin sister Jill. Jill's neediness and passive-aggressiveness is maddening to Jack, turning his normally tranquil life upside down.", "text_for_embedding": "Jack and Jill (2011). Genres: Comedy. Jack Sadelstein, a successful advertising executive in Los Angeles with a beautiful wife and kids, dreads one event each year: the Thanksgiving visit of his twin sister Jill. Jill's neediness and passive-aggressiveness is maddening to Jack, turning his normally tranquil life upside down.. Tags: duringcreditsstinger"} +{"id": "584", "title": "2 Fast 2 Furious", "year": 2003, "duration_min": 107, "rating": 6.2, "genres": "Action, Crime, Thriller", "genres_pipe": "|Action|Crime|Thriller|", "keywords": "miami, car race, sports car, los angeles, car, automobile racing", "tags_pipe": "|miami|car race|sports car|los angeles|car|automobile racing|", "overview": "It's a major double-cross when former police officer Brian O'Conner teams up with his ex-con buddy Roman Pearce to transport a shipment of \"dirty\" money for shady Miami-based import-export dealer Carter Verone. But the guys are actually working with undercover agent Monica Fuentes to bring Verone down.", "text_for_embedding": "2 Fast 2 Furious (2003). Genres: Action, Crime, Thriller. It's a major double-cross when former police officer Brian O'Conner teams up with his ex-con buddy Roman Pearce to transport a shipment of \"dirty\" money for shady Miami-based import-export dealer Carter Verone. But the guys are actually working with undercover agent Monica Fuentes to bring Verone down.. Tags: miami, car race, sports car, los angeles, car, automobile racing"} +{"id": "309809", "title": "The Little Prince", "year": 2015, "duration_min": 92, "rating": 7.6, "genres": "Adventure, Animation, Fantasy", "genres_pipe": "|Adventure|Animation|Fantasy|", "keywords": "philosophy, utopia, airplane, adventure, dystopia, little boy, growing up, neighbor, mother daughter relationship, school, old man, little girl, crazy, based on children's book, story", "tags_pipe": "|philosophy|utopia|airplane|adventure|dystopia|little boy|growing up|neighbor|mother daughter relationship|school|old man|little girl|crazy|based on children's book|story|", "overview": "Based on the best-seller book 'The Little Prince', the movie tells the story of a little girl that lives with resignation in a world where efficiency and work are the only dogmas. Everything will change when accidentally she discovers her neighbor that will tell her about the story of the Little Prince that he once met.", "text_for_embedding": "The Little Prince (2015). Genres: Adventure, Animation, Fantasy. Based on the best-seller book 'The Little Prince', the movie tells the story of a little girl that lives with resignation in a world where efficiency and work are the only dogmas. Everything will change when accidentally she discovers her neighbor that will tell her about the story of the Little Prince that he once met.. Tags: philosophy, utopia, airplane, adventure, dystopia, little boy, growing up, neighbor, mother daughter relationship, school, old man, little girl, crazy, based on children's book, story"} +{"id": "4858", "title": "The Invasion", "year": 2007, "duration_min": 99, "rating": 5.7, "genres": "Science Fiction, Thriller", "genres_pipe": "|Science Fiction|Thriller|", "keywords": "remake, alien, escape, alien invasion, alien infection, sleeping, doppelganger, news report, text messaging, siren, contamination", "tags_pipe": "|remake|alien|escape|alien invasion|alien infection|sleeping|doppelganger|news report|text messaging|siren|contamination|", "overview": "Washington, D.C. psychologist Carol Bennell and her colleague Dr. Ben Driscoll are the only two people on Earth who are aware of an epidemic running rampant through the city. They discover an alien virus aboard a crashed space shuttle that transforms anyone who comes into contact with it into unfeeling drones while they sleep. Carol realizes her son holds the key to stopping the spread of the plague and she races to find him before it is too late.", "text_for_embedding": "The Invasion (2007). Genres: Science Fiction, Thriller. Washington, D.C. psychologist Carol Bennell and her colleague Dr. Ben Driscoll are the only two people on Earth who are aware of an epidemic running rampant through the city. They discover an alien virus aboard a crashed space shuttle that transforms anyone who comes into contact with it into unfeeling drones while they sleep. Carol realizes her son holds the key to stopping the spread of the plague and she races to find him before it is too late.. Tags: remake, alien, escape, alien invasion, alien infection, sleeping, doppelganger, news report, text messaging, siren, contamination"} +{"id": "17711", "title": "The Adventures of Rocky & Bullwinkle", "year": 2000, "duration_min": 88, "rating": 3.9, "genres": "Action, Adventure, Animation, Comedy, Family", "genres_pipe": "|Action|Adventure|Animation|Comedy|Family|", "keywords": "adventure, cartoon, comedy, breaking the fourth wall, talking to the camera, road movie, celebrity cameo", "tags_pipe": "|adventure|cartoon|comedy|breaking the fourth wall|talking to the camera|road movie|celebrity cameo|", "overview": "Rocky and Bullwinkle have been living off the finances made from the reruns of their cartoon show. Boris and Natasha somehow manage to crossover into reality and team up with Fearless Leader, an evil criminal turned media mogul with some evil plans up his sleeve. Rocky and Bullwinkle must stop the three of them before they wreak havoc.", "text_for_embedding": "The Adventures of Rocky & Bullwinkle (2000). Genres: Action, Adventure, Animation, Comedy, Family. Rocky and Bullwinkle have been living off the finances made from the reruns of their cartoon show. Boris and Natasha somehow manage to crossover into reality and team up with Fearless Leader, an evil criminal turned media mogul with some evil plans up his sleeve. Rocky and Bullwinkle must stop the three of them before they wreak havoc.. Tags: adventure, cartoon, comedy, breaking the fourth wall, talking to the camera, road movie, celebrity cameo"} +{"id": "328111", "title": "The Secret Life of Pets", "year": 2016, "duration_min": 87, "rating": 5.9, "genres": "Animation, Family", "genres_pipe": "|Animation|Family|", "keywords": "pet, bunny, anthropomorphism, dog, animal, apartment building, sewer, terrier, manhattan, new york city, rodent, mongrel", "tags_pipe": "|pet|bunny|anthropomorphism|dog|animal|apartment building|sewer|terrier|manhattan, new york city|rodent|mongrel|", "overview": "The quiet life of a terrier named Max is upended when his owner takes in Duke, a stray whom Max instantly dislikes.", "text_for_embedding": "The Secret Life of Pets (2016). Genres: Animation, Family. The quiet life of a terrier named Max is upended when his owner takes in Duke, a stray whom Max instantly dislikes.. Tags: pet, bunny, anthropomorphism, dog, animal, apartment building, sewer, terrier, manhattan, new york city, rodent, mongrel"} +{"id": "8698", "title": "The League of Extraordinary Gentlemen", "year": 2003, "duration_min": 110, "rating": 5.7, "genres": "Fantasy, Action, Thriller, Science Fiction", "genres_pipe": "|Fantasy|Action|Thriller|Science Fiction|", "keywords": "saving the world, vampire, bite, men, invisible man, captain nemo, allan quatermain, venezia, immortal", "tags_pipe": "|saving the world|vampire|bite|men|invisible man|captain nemo|allan quatermain|venezia|immortal|", "overview": "To prevent a world war from breaking out, famous characters from Victorian literature band together to do battle against a cunning villain.", "text_for_embedding": "The League of Extraordinary Gentlemen (2003). Genres: Fantasy, Action, Thriller, Science Fiction. To prevent a world war from breaking out, famous characters from Victorian literature band together to do battle against a cunning villain.. Tags: saving the world, vampire, bite, men, invisible man, captain nemo, allan quatermain, venezia, immortal"} +{"id": "93456", "title": "Despicable Me 2", "year": 2013, "duration_min": 98, "rating": 7.0, "genres": "Animation, Comedy, Family", "genres_pipe": "|Animation|Comedy|Family|", "keywords": "secret agent, bakery, falling in love, father daughter relationship, duringcreditsstinger, first date, minions, 3d", "tags_pipe": "|secret agent|bakery|falling in love|father daughter relationship|duringcreditsstinger|first date|minions|3d|", "overview": "Gru is recruited by the Anti-Villain League to help deal with a powerful new super criminal.", "text_for_embedding": "Despicable Me 2 (2013). Genres: Animation, Comedy, Family. Gru is recruited by the Anti-Villain League to help deal with a powerful new super criminal.. Tags: secret agent, bakery, falling in love, father daughter relationship, duringcreditsstinger, first date, minions, 3d"} +{"id": "602", "title": "Independence Day", "year": 1996, "duration_min": 145, "rating": 6.7, "genres": "Action, Adventure, Science Fiction", "genres_pipe": "|Action|Adventure|Science Fiction|", "keywords": "spacecraft, patriotism, countdown, independence, invasion, war, ufo, extraterrestrial, spaceship, alien, battle", "tags_pipe": "|spacecraft|patriotism|countdown|independence|invasion|war|ufo|extraterrestrial|spaceship|alien|battle|", "overview": "On July 2, a giant alien mothership enters orbit around Earth and deploys several dozen saucer-shaped 'destroyer' spacecraft that quickly lay waste to major cities around the planet. On July 3, the United States conducts a coordinated counterattack that fails. On July 4, a plan is devised to gain access to the interior of the alien mothership in space, in order to plant a nuclear missile.", "text_for_embedding": "Independence Day (1996). Genres: Action, Adventure, Science Fiction. On July 2, a giant alien mothership enters orbit around Earth and deploys several dozen saucer-shaped 'destroyer' spacecraft that quickly lay waste to major cities around the planet. On July 3, the United States conducts a coordinated counterattack that fails. On July 4, a plan is devised to gain access to the interior of the alien mothership in space, in order to plant a nuclear missile.. Tags: spacecraft, patriotism, countdown, independence, invasion, war, ufo, extraterrestrial, spaceship, alien, battle"} +{"id": "330", "title": "The Lost World: Jurassic Park", "year": 1997, "duration_min": 129, "rating": 6.2, "genres": "Adventure, Action, Science Fiction", "genres_pipe": "|Adventure|Action|Science Fiction|", "keywords": "exotic island, dna, paleontology, tyrannosaurus rex, velociraptor, san diego, dinosaur, jurassic park, animal horror", "tags_pipe": "|exotic island|dna|paleontology|tyrannosaurus rex|velociraptor|san diego|dinosaur|jurassic park|animal horror|", "overview": "Four years after Jurassic Park's genetically bred dinosaurs ran amok, multimillionaire John Hammond shocks chaos theorist Ian Malcolm by revealing that Hammond has been breeding more beasties at a secret location. Malcolm, his paleontologist ladylove and a wildlife videographer join an expedition to document the lethal lizards' natural behavior in this action-packed thriller.", "text_for_embedding": "The Lost World: Jurassic Park (1997). Genres: Adventure, Action, Science Fiction. Four years after Jurassic Park's genetically bred dinosaurs ran amok, multimillionaire John Hammond shocks chaos theorist Ian Malcolm by revealing that Hammond has been breeding more beasties at a secret location. Malcolm, his paleontologist ladylove and a wildlife videographer join an expedition to document the lethal lizards' natural behavior in this action-packed thriller.. Tags: exotic island, dna, paleontology, tyrannosaurus rex, velociraptor, san diego, dinosaur, jurassic park, animal horror"} +{"id": "953", "title": "Madagascar", "year": 2005, "duration_min": 86, "rating": 6.6, "genres": "Family, Animation", "genres_pipe": "|Family|Animation|", "keywords": "lion, hippopotamus, giraffe, penguin, zebra", "tags_pipe": "|lion|hippopotamus|giraffe|penguin|zebra|", "overview": "Zoo animals leave the comforts of man-made habitats for exotic adventure in this animated family film. After escaping from the zoo, four friends -- a lion, a hippo, a zebra and a giraffe -- are sent back to Africa. When their ship capsizes, stranding them on Madagascar, an island populated by crazy critters, the pals must adapt to jungle life and their new roles as wild animals.", "text_for_embedding": "Madagascar (2005). Genres: Family, Animation. Zoo animals leave the comforts of man-made habitats for exotic adventure in this animated family film. After escaping from the zoo, four friends -- a lion, a hippo, a zebra and a giraffe -- are sent back to Africa. When their ship capsizes, stranding them on Madagascar, an island populated by crazy critters, the pals must adapt to jungle life and their new roles as wild animals.. Tags: lion, hippopotamus, giraffe, penguin, zebra"} +{"id": "9693", "title": "Children of Men", "year": 2006, "duration_min": 109, "rating": 7.4, "genres": "Drama, Action, Thriller, Science Fiction", "genres_pipe": "|Drama|Action|Thriller|Science Fiction|", "keywords": "police state, hippie, rebel, miracle, future, dystopia, chaos, aging, childlessness, faith, survival, birth, dying", "tags_pipe": "|police state|hippie|rebel|miracle|future|dystopia|chaos|aging|childlessness|faith|survival|birth|dying|", "overview": "In 2027, in a chaotic world in which humans can no longer procreate, a former activist agrees to help transport a miraculously pregnant woman to a sanctuary at sea, where her child's birth may help scientists save the future of humankind.", "text_for_embedding": "Children of Men (2006). Genres: Drama, Action, Thriller, Science Fiction. In 2027, in a chaotic world in which humans can no longer procreate, a former activist agrees to help transport a miraculously pregnant woman to a sanctuary at sea, where her child's birth may help scientists save the future of humankind.. Tags: police state, hippie, rebel, miracle, future, dystopia, chaos, aging, childlessness, faith, survival, birth, dying"} +{"id": "36657", "title": "X-Men", "year": 2000, "duration_min": 104, "rating": 6.8, "genres": "Adventure, Action, Science Fiction", "genres_pipe": "|Adventure|Action|Science Fiction|", "keywords": "mutant, marvel comic, superhero, based on comic book, superhuman", "tags_pipe": "|mutant|marvel comic|superhero|based on comic book|superhuman|", "overview": "Two mutants, Rogue and Wolverine, come to a private academy for their kind whose resident superhero team, the X-Men, must oppose a terrorist organization with similar powers.", "text_for_embedding": "X-Men (2000). Genres: Adventure, Action, Science Fiction. Two mutants, Rogue and Wolverine, come to a private academy for their kind whose resident superhero team, the X-Men, must oppose a terrorist organization with similar powers.. Tags: mutant, marvel comic, superhero, based on comic book, superhuman"} +{"id": "8909", "title": "Wanted", "year": 2008, "duration_min": 110, "rating": 6.4, "genres": "Action, Thriller, Crime", "genres_pipe": "|Action|Thriller|Crime|", "keywords": "assassin, loss of father, secret society, mission of murder, revenge", "tags_pipe": "|assassin|loss of father|secret society|mission of murder|revenge|", "overview": "Doormat Wesley Gibson discovers that his recently murdered father – who Wesley never knew – belonged to a secret guild of assassins. After a leather-clad sexpot drafts Wesley into the society, he hones his innate killing skills and turns avenger.", "text_for_embedding": "Wanted (2008). Genres: Action, Thriller, Crime. Doormat Wesley Gibson discovers that his recently murdered father – who Wesley never knew – belonged to a secret guild of assassins. After a leather-clad sexpot drafts Wesley into the society, he hones his innate killing skills and turns avenger.. Tags: assassin, loss of father, secret society, mission of murder, revenge"} +{"id": "9802", "title": "The Rock", "year": 1996, "duration_min": 136, "rating": 6.9, "genres": "Action, Adventure, Thriller", "genres_pipe": "|Action|Adventure|Thriller|", "keywords": "san francisco, fbi, gas attack, alcatraz, hostage situation, fbi agent", "tags_pipe": "|san francisco|fbi|gas attack|alcatraz|hostage situation|fbi agent|", "overview": "A group of renegade marine commandos seizes a stockpile of chemical weapons and takes over Alcatraz, with 81 tourists as hostages. Their leader demands $100 million to be paid, as restitution to families of Marines who died in covert ops – or he will launch 15 rockets carrying deadly VX gas into the San Francisco Bay area.", "text_for_embedding": "The Rock (1996). Genres: Action, Adventure, Thriller. A group of renegade marine commandos seizes a stockpile of chemical weapons and takes over Alcatraz, with 81 tourists as hostages. Their leader demands $100 million to be paid, as restitution to families of Marines who died in covert ops – or he will launch 15 rockets carrying deadly VX gas into the San Francisco Bay area.. Tags: san francisco, fbi, gas attack, alcatraz, hostage situation, fbi agent"} +{"id": "950", "title": "Ice Age: The Meltdown", "year": 2006, "duration_min": 91, "rating": 6.5, "genres": "Animation, Family, Comedy, Adventure", "genres_pipe": "|Animation|Family|Comedy|Adventure|", "keywords": "mammoth, sloth, ice age, barrier ice, ice melting, iceberg, flooding, adventure, lovers, deluge, saber-toothed tiger", "tags_pipe": "|mammoth|sloth|ice age|barrier ice|ice melting|iceberg|flooding|adventure|lovers|deluge|saber-toothed tiger|", "overview": "Diego, Manny and Sid return in this sequel to the hit animated movie Ice Age. This time around, the deep freeze is over, and the ice-covered earth is starting to melt, which will destroy the trio's cherished valley. The impending disaster prompts them to reunite and warn all the other beasts about the desperate situation.", "text_for_embedding": "Ice Age: The Meltdown (2006). Genres: Animation, Family, Comedy, Adventure. Diego, Manny and Sid return in this sequel to the hit animated movie Ice Age. This time around, the deep freeze is over, and the ice-covered earth is starting to melt, which will destroy the trio's cherished valley. The impending disaster prompts them to reunite and warn all the other beasts about the desperate situation.. Tags: mammoth, sloth, ice age, barrier ice, ice melting, iceberg, flooding, adventure, lovers, deluge, saber-toothed tiger"} +{"id": "1824", "title": "50 First Dates", "year": 2004, "duration_min": 99, "rating": 6.6, "genres": "Comedy, Romance", "genres_pipe": "|Comedy|Romance|", "keywords": "deja vu, amnesia, hawaii, ladykiller, romantic comedy", "tags_pipe": "|deja vu|amnesia|hawaii|ladykiller|romantic comedy|", "overview": "Henry is a player skilled at seducing women. But when this veterinarian meets Lucy, a girl with a quirky problem when it comes to total recall, he realizes it's possible to fall in love all over again…and again, and again. That's because the delightful Lucy has no short-term memory, so Henry must woo her day after day until he finally sweeps her off her feet.", "text_for_embedding": "50 First Dates (2004). Genres: Comedy, Romance. Henry is a player skilled at seducing women. But when this veterinarian meets Lucy, a girl with a quirky problem when it comes to total recall, he realizes it's possible to fall in love all over again…and again, and again. That's because the delightful Lucy has no short-term memory, so Henry must woo her day after day until he finally sweeps her off her feet.. Tags: deja vu, amnesia, hawaii, ladykiller, romantic comedy"} +{"id": "2976", "title": "Hairspray", "year": 2007, "duration_min": 117, "rating": 6.5, "genres": "Family, Comedy, Music, Romance", "genres_pipe": "|Family|Comedy|Music|Romance|", "keywords": "races, dream, dance, television, tv show, race politics, coloured, music, equality, school party, performance, integration, overweight woman, duel, based on stage musical", "tags_pipe": "|races|dream|dance|television|tv show|race politics|coloured|music|equality|school party|performance|integration|overweight woman|duel|based on stage musical|", "overview": "Pleasantly plump teenager, Tracy Turnblad and her best friend, Penny Pingleton audition to be on The Corny Collins Show – and Tracy wins. But when scheming Amber Von Tussle and her mother plot to destroy Tracy, it turns to chaos.", "text_for_embedding": "Hairspray (2007). Genres: Family, Comedy, Music, Romance. Pleasantly plump teenager, Tracy Turnblad and her best friend, Penny Pingleton audition to be on The Corny Collins Show – and Tracy wins. But when scheming Amber Von Tussle and her mother plot to destroy Tracy, it turns to chaos.. Tags: races, dream, dance, television, tv show, race politics, coloured, music, equality, school party, performance, integration, overweight woman, duel, based on stage musical"} +{"id": "11026", "title": "Exorcist: The Beginning", "year": 2004, "duration_min": 114, "rating": 4.7, "genres": "Horror, Mystery, Thriller", "genres_pipe": "|Horror|Mystery|Thriller|", "keywords": "secret, obsession, exorcism, remake, priest, good vs evil, paganism, devil, archaeologist, demonic possession, relic, crisis of faith, archaeological dig", "tags_pipe": "|secret|obsession|exorcism|remake|priest|good vs evil|paganism|devil|archaeologist|demonic possession|relic|crisis of faith|archaeological dig|", "overview": "Having lived through traumatizing events during WWII, Father Lankester Merrin takes a sabbatical from the Church to conduct archaeological excavations in British-administered East Africa. Merrin unearths an ancient Byzantine church believed have been built and then immediately buried to keep down evil from the crypt below. The natives are convinced that uncovering the church has unleashed a demon, and begin to violently clash with the British military troops. As the village rapidly disintegrates into chaos and war, Merrin must face-off with the demon which has taken possession of somebody close to him.", "text_for_embedding": "Exorcist: The Beginning (2004). Genres: Horror, Mystery, Thriller. Having lived through traumatizing events during WWII, Father Lankester Merrin takes a sabbatical from the Church to conduct archaeological excavations in British-administered East Africa. Merrin unearths an ancient Byzantine church believed have been built and then immediately buried to keep down evil from the crypt below. The natives are convinced that uncovering the church has unleashed a demon, and begin to violently clash with the British military troops. As the village rapidly disintegrates into chaos and war, Merrin must face-off with the demon which has taken possession of somebody close to him.. Tags: secret, obsession, exorcism, remake, priest, good vs evil, paganism, devil, archaeologist, demonic possession, relic, crisis of faith, archaeological dig"} +{"id": "332", "title": "Inspector Gadget", "year": 1999, "duration_min": 78, "rating": 4.3, "genres": "Action, Adventure, Comedy, Family", "genres_pipe": "|Action|Adventure|Comedy|Family|", "keywords": "gadget", "tags_pipe": "|gadget|", "overview": "John Brown is a bumbling but well-intentioned security guard who is badly injured in an explosion planned by an evil mastermind. He is taken to a laboratory, where Brenda, a leading robotics surgeon, replaces his damaged limbs with state-of-the-art gadgets and tools. Named \"Inspector Gadget\" by the press, John -- along with his niece, Penny, and her trusty dog, Brain -- uses his new powers to discover who was behind the explosion.", "text_for_embedding": "Inspector Gadget (1999). Genres: Action, Adventure, Comedy, Family. John Brown is a bumbling but well-intentioned security guard who is badly injured in an explosion planned by an evil mastermind. He is taken to a laboratory, where Brenda, a leading robotics surgeon, replaces his damaged limbs with state-of-the-art gadgets and tools. Named \"Inspector Gadget\" by the press, John -- along with his niece, Penny, and her trusty dog, Brain -- uses his new powers to discover who was behind the explosion.. Tags: gadget"} +{"id": "75656", "title": "Now You See Me", "year": 2013, "duration_min": 115, "rating": 7.3, "genres": "Thriller, Crime", "genres_pipe": "|Thriller|Crime|", "keywords": "paris, bank, secret, fbi, vault, magic, new orleans, investigation, heist, conspiracy, money, escape, new york city, las vegas, explosion", "tags_pipe": "|paris|bank|secret|fbi|vault|magic|new orleans|investigation|heist|conspiracy|money|escape|new york city|las vegas|explosion|", "overview": "An FBI agent and an Interpol detective track a team of illusionists who pull off bank heists during their performances and reward their audiences with the money.", "text_for_embedding": "Now You See Me (2013). Genres: Thriller, Crime. An FBI agent and an Interpol detective track a team of illusionists who pull off bank heists during their performances and reward their audiences with the money.. Tags: paris, bank, secret, fbi, vault, magic, new orleans, investigation, heist, conspiracy, money, escape, new york city, las vegas, explosion"} +{"id": "38365", "title": "Grown Ups", "year": 2010, "duration_min": 102, "rating": 6.0, "genres": "Comedy", "genres_pipe": "|Comedy|", "keywords": "overweight, swing, foot, convertible, arrow", "tags_pipe": "|overweight|swing|foot|convertible|arrow|", "overview": "After their high school basketball coach passes away, five good friends and former teammates reunite for a Fourth of July holiday weekend.", "text_for_embedding": "Grown Ups (2010). Genres: Comedy. After their high school basketball coach passes away, five good friends and former teammates reunite for a Fourth of July holiday weekend.. Tags: overweight, swing, foot, convertible, arrow"} +{"id": "594", "title": "The Terminal", "year": 2004, "duration_min": 128, "rating": 7.0, "genres": "Comedy, Drama", "genres_pipe": "|Comedy|Drama|", "keywords": "new york, airport, marriage proposal, translation, craftsman, stewardess, illegal immigration, language barrier, jfk international airport, immigration law, fast food restaurant, security camera, jazz musician, saxophonist, autograph", "tags_pipe": "|new york|airport|marriage proposal|translation|craftsman|stewardess|illegal immigration|language barrier|jfk international airport|immigration law|fast food restaurant|security camera|jazz musician|saxophonist|autograph|", "overview": "Viktor Navorski is a man without a country; his plane took off just as a coup d'etat exploded in his homeland, leaving it in shambles, and now he's stranded at Kennedy Airport, where he's holding a passport that nobody recognizes. While quarantined in the transit lounge until authorities can figure out what to do with him, Viktor simply goes on living – and courts romance with a beautiful flight attendant.", "text_for_embedding": "The Terminal (2004). Genres: Comedy, Drama. Viktor Navorski is a man without a country; his plane took off just as a coup d'etat exploded in his homeland, leaving it in shambles, and now he's stranded at Kennedy Airport, where he's holding a passport that nobody recognizes. While quarantined in the transit lounge until authorities can figure out what to do with him, Viktor simply goes on living – and courts romance with a beautiful flight attendant.. Tags: new york, airport, marriage proposal, translation, craftsman, stewardess, illegal immigration, language barrier, jfk international airport, immigration law, fast food restaurant, security camera, jazz musician, saxophonist, autograph"} +{"id": "15189", "title": "Hotel for Dogs", "year": 2009, "duration_min": 100, "rating": 5.7, "genres": "Comedy, Family", "genres_pipe": "|Comedy|Family|", "keywords": "adoption, puppy, pitbull, orphan, foster home, animal lover, beagle, duringcreditsstinger", "tags_pipe": "|adoption|puppy|pitbull|orphan|foster home|animal lover|beagle|duringcreditsstinger|", "overview": "Placed in a foster home that doesn't allow pets, 16-year-old Andi and her younger brother, Bruce, turn an abandoned hotel into a home for their dog. Soon other strays arrive, and the hotel becomes a haven for every orphaned canine in town. But the kids have to do some quick thinking to keep the cops off their tails.", "text_for_embedding": "Hotel for Dogs (2009). Genres: Comedy, Family. Placed in a foster home that doesn't allow pets, 16-year-old Andi and her younger brother, Bruce, turn an abandoned hotel into a home for their dog. Soon other strays arrive, and the hotel becomes a haven for every orphaned canine in town. But the kids have to do some quick thinking to keep the cops off their tails.. Tags: adoption, puppy, pitbull, orphan, foster home, animal lover, beagle, duringcreditsstinger"} +{"id": "11678", "title": "Vertical Limit", "year": 2000, "duration_min": 124, "rating": 5.9, "genres": "Action, Adventure, Thriller", "genres_pipe": "|Action|Adventure|Thriller|", "keywords": "himalaya, pakistan, climbing, k2, mountaineering, karakoram", "tags_pipe": "|himalaya|pakistan|climbing|k2|mountaineering|karakoram|", "overview": "Trapped near the summit of K2, the world's second-highest mountain, Annie Garrett radios to base camp for help. Brother Peter hears Annie's message and assembles a team to save her and her group before they succumb to K2's unforgiving elements. But, as Annie lays injured in an icy cavern, the rescuers face several terrifying events that could end the rescue attempt -- and their lives.", "text_for_embedding": "Vertical Limit (2000). Genres: Action, Adventure, Thriller. Trapped near the summit of K2, the world's second-highest mountain, Annie Garrett radios to base camp for help. Brother Peter hears Annie's message and assembles a team to save her and her group before they succumb to K2's unforgiving elements. But, as Annie lays injured in an icy cavern, the rescuers face several terrifying events that could end the rescue attempt -- and their lives.. Tags: himalaya, pakistan, climbing, k2, mountaineering, karakoram"} +{"id": "6538", "title": "Charlie Wilson's War", "year": 2007, "duration_min": 102, "rating": 6.5, "genres": "Comedy, Drama, History", "genres_pipe": "|Comedy|Drama|History|", "keywords": "washington d.c., alcohol, cia, helicopter, refugee camp, congress, cold war, ladykiller, rocket launcher, russian, munition, war in afghanistan, dollar", "tags_pipe": "|washington d.c.|alcohol|cia|helicopter|refugee camp|congress|cold war|ladykiller|rocket launcher|russian|munition|war in afghanistan|dollar|", "overview": "The true story of Texas congressman Charlie Wilson's covert dealings in Afghanistan, where his efforts to assist rebels in their war with the Soviets had some unforeseen and long-reaching effects.", "text_for_embedding": "Charlie Wilson's War (2007). Genres: Comedy, Drama, History. The true story of Texas congressman Charlie Wilson's covert dealings in Afghanistan, where his efforts to assist rebels in their war with the Soviets had some unforeseen and long-reaching effects.. Tags: washington d.c., alcohol, cia, helicopter, refugee camp, congress, cold war, ladykiller, rocket launcher, russian, munition, war in afghanistan, dollar"} +{"id": "10555", "title": "Shark Tale", "year": 2004, "duration_min": 90, "rating": 5.8, "genres": "Animation, Action, Comedy, Family", "genres_pipe": "|Animation|Action|Comedy|Family|", "keywords": "fish, hero, mission of murder, threat to death, secret love, animation, shark, woman director", "tags_pipe": "|fish|hero|mission of murder|threat to death|secret love|animation|shark|woman director|", "overview": "Oscar is a small fish whose big aspirations often get him into trouble. Meanwhile, Lenny is a great white shark with a surprising secret that no sea creature would guess: He's a vegetarian. When a lie turns Oscar into an improbable hero and Lenny becomes an outcast, the two form an unlikely friendship.", "text_for_embedding": "Shark Tale (2004). Genres: Animation, Action, Comedy, Family. Oscar is a small fish whose big aspirations often get him into trouble. Meanwhile, Lenny is a great white shark with a surprising secret that no sea creature would guess: He's a vegetarian. When a lie turns Oscar into an improbable hero and Lenny becomes an outcast, the two form an unlikely friendship.. Tags: fish, hero, mission of murder, threat to death, secret love, animation, shark, woman director"} +{"id": "1125", "title": "Dreamgirls", "year": 2006, "duration_min": 134, "rating": 6.6, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "music record, manager, black people, adultery, soul, show business, drug addiction, oscar award, musical, deceived wife, recording contract, background singer, motown, the supremes, record producer", "tags_pipe": "|music record|manager|black people|adultery|soul|show business|drug addiction|oscar award|musical|deceived wife|recording contract|background singer|motown|the supremes|record producer|", "overview": "Three young women – Deena Jones, Effie White and Lorrell Robinson – dream of becoming pop stars and they get their wish when they're chosen to be backup singers for the legendary James 'Thunder' Early.", "text_for_embedding": "Dreamgirls (2006). Genres: Drama. Three young women – Deena Jones, Effie White and Lorrell Robinson – dream of becoming pop stars and they get their wish when they're chosen to be backup singers for the legendary James 'Thunder' Early.. Tags: music record, manager, black people, adultery, soul, show business, drug addiction, oscar award, musical, deceived wife, recording contract, background singer, motown, the supremes, record producer"} +{"id": "4551", "title": "Be Cool", "year": 2005, "duration_min": 118, "rating": 5.4, "genres": "Comedy, Crime", "genres_pipe": "|Comedy|Crime|", "keywords": "baseball bat, widow, recording contract, recording studio, russian mafia, music business, night club, pawnshop", "tags_pipe": "|baseball bat|widow|recording contract|recording studio|russian mafia|music business|night club|pawnshop|", "overview": "Disenchanted with the movie industry, Chili Palmer tries the music industry, meeting and romancing a widow of a music exec on the way.", "text_for_embedding": "Be Cool (2005). Genres: Comedy, Crime. Disenchanted with the movie industry, Chili Palmer tries the music industry, meeting and romancing a widow of a music exec on the way.. Tags: baseball bat, widow, recording contract, recording studio, russian mafia, music business, night club, pawnshop"} +{"id": "612", "title": "Munich", "year": 2005, "duration_min": 164, "rating": 6.9, "genres": "Drama, Action, History, Thriller", "genres_pipe": "|Drama|Action|History|Thriller|", "keywords": "paris, assassination, israel, hotel room, 1970s, hostage, intelligence, olympic games, munich, mossad, israeli, palestinian, beirut, ailul al aswad, plo", "tags_pipe": "|paris|assassination|israel|hotel room|1970s|hostage|intelligence|olympic games|munich|mossad|israeli|palestinian|beirut|ailul al aswad|plo|", "overview": "During the 1972 Olympic Games in Munich, eleven Israeli athletes are taken hostage and murdered by a Palestinian terrorist group known as Black September. In retaliation, the Israeli government recruits a group of Mossad agents to track down and execute those responsible for the attack.", "text_for_embedding": "Munich (2005). Genres: Drama, Action, History, Thriller. During the 1972 Olympic Games in Munich, eleven Israeli athletes are taken hostage and murdered by a Palestinian terrorist group known as Black September. In retaliation, the Israeli government recruits a group of Mossad agents to track down and execute those responsible for the attack.. Tags: paris, assassination, israel, hotel room, 1970s, hostage, intelligence, olympic games, munich, mossad, israeli, palestinian, beirut, ailul al aswad, plo"} +{"id": "9567", "title": "Tears of the Sun", "year": 2003, "duration_min": 121, "rating": 6.4, "genres": "Action, Drama, War", "genres_pipe": "|Action|Drama|War|", "keywords": "u.s. army, nigeria, president", "tags_pipe": "|u.s. army|nigeria|president|", "overview": "Navy SEAL Lieutenant A.K. Waters and his elite squadron of tactical specialists are forced to choose between their duty and their humanity, between following orders by ignoring the conflict that surrounds them, or finding the courage to follow their conscience and protect a group of innocent refugees. When the democratic government of Nigeria collapses and the country is taken over by a ruthless military dictator, Waters, a fiercely loyal and hardened veteran is dispatched on a routine mission to retrieve a Doctors Without Borders physician.", "text_for_embedding": "Tears of the Sun (2003). Genres: Action, Drama, War. Navy SEAL Lieutenant A.K. Waters and his elite squadron of tactical specialists are forced to choose between their duty and their humanity, between following orders by ignoring the conflict that surrounds them, or finding the courage to follow their conscience and protect a group of innocent refugees. When the democratic government of Nigeria collapses and the country is taken over by a ruthless military dictator, Waters, a fiercely loyal and hardened veteran is dispatched on a routine mission to retrieve a Doctors Without Borders physician.. Tags: u.s. army, nigeria, president"} +{"id": "37821", "title": "Killers", "year": 2010, "duration_min": 100, "rating": 5.7, "genres": "Action, Comedy, Thriller, Romance", "genres_pipe": "|Action|Comedy|Thriller|Romance|", "keywords": "assassin", "tags_pipe": "|assassin|", "overview": "When an elite assassin marries a beautiful computer whiz after a whirlwind romance, he gives up the gun and settles down with his new bride. That is, until he learns that someone from his past has put a contract out on his life.", "text_for_embedding": "Killers (2010). Genres: Action, Comedy, Thriller, Romance. When an elite assassin marries a beautiful computer whiz after a whirlwind romance, he gives up the gun and settles down with his new bride. That is, until he learns that someone from his past has put a contract out on his life.. Tags: assassin"} +{"id": "203801", "title": "The Man from U.N.C.L.E.", "year": 2015, "duration_min": 116, "rating": 7.1, "genres": "Comedy, Action, Adventure", "genres_pipe": "|Comedy|Action|Adventure|", "keywords": "spy, cold war, remake, based on tv series, buddy cop, russian spy, american spy", "tags_pipe": "|spy|cold war|remake|based on tv series|buddy cop|russian spy|american spy|", "overview": "At the height of the Cold War, a mysterious criminal organization plans to use nuclear weapons and technology to upset the fragile balance of power between the United States and Soviet Union. CIA agent Napoleon Solo and KGB agent Illya Kuryakin are forced to put aside their hostilities and work together to stop the evildoers in their tracks. The duo's only lead is the daughter of a missing German scientist, whom they must find soon to prevent a global catastrophe.", "text_for_embedding": "The Man from U.N.C.L.E. (2015). Genres: Comedy, Action, Adventure. At the height of the Cold War, a mysterious criminal organization plans to use nuclear weapons and technology to upset the fragile balance of power between the United States and Soviet Union. CIA agent Napoleon Solo and KGB agent Illya Kuryakin are forced to put aside their hostilities and work together to stop the evildoers in their tracks. The duo's only lead is the daughter of a missing German scientist, whom they must find soon to prevent a global catastrophe.. Tags: spy, cold war, remake, based on tv series, buddy cop, russian spy, american spy"} +{"id": "2539", "title": "Spanglish", "year": 2004, "duration_min": 130, "rating": 5.8, "genres": "Comedy", "genres_pipe": "|Comedy|", "keywords": "upper class, mother, single parent, parents kids relationship, wife husband relationship, cook, milieu, illegal immigration, immigrant, language barrier, family's daily life, platonic love, deceived husband, class society, hysteria", "tags_pipe": "|upper class|mother|single parent|parents kids relationship|wife husband relationship|cook|milieu|illegal immigration|immigrant|language barrier|family's daily life|platonic love|deceived husband|class society|hysteria|", "overview": "Mexican immigrant and single mother Flor Moreno finds housekeeping work with Deborah and John Clasky, a well-off couple with two children of their own. When Flor admits she can't handle the schedule because of her daughter, Cristina, Deborah decides they should move into the Clasky home. Cultures clash and tensions run high as Flor and the Claskys struggle to share space while raising their children on their own, and very different, terms.", "text_for_embedding": "Spanglish (2004). Genres: Comedy. Mexican immigrant and single mother Flor Moreno finds housekeeping work with Deborah and John Clasky, a well-off couple with two children of their own. When Flor admits she can't handle the schedule because of her daughter, Cristina, Deborah decides they should move into the Clasky home. Cultures clash and tensions run high as Flor and the Claskys struggle to share space while raising their children on their own, and very different, terms.. Tags: upper class, mother, single parent, parents kids relationship, wife husband relationship, cook, milieu, illegal immigration, immigrant, language barrier, family's daily life, platonic love, deceived husband, class society, hysteria"} +{"id": "9297", "title": "Monster House", "year": 2006, "duration_min": 91, "rating": 6.3, "genres": "Animation, Comedy, Family, Fantasy", "genres_pipe": "|Animation|Comedy|Family|Fantasy|", "keywords": "monster, secret, toy, children, neighbor, mission, child", "tags_pipe": "|monster|secret|toy|children|neighbor|mission|child|", "overview": "Monsters under the bed are scary enough, but what happens when an entire house is out to get you? Three teens aim to find out when they go up against a decrepit neighboring home and unlock its frightening secrets.", "text_for_embedding": "Monster House (2006). Genres: Animation, Comedy, Family, Fantasy. Monsters under the bed are scary enough, but what happens when an entire house is out to get you? Three teens aim to find out when they go up against a decrepit neighboring home and unlock its frightening secrets.. Tags: monster, secret, toy, children, neighbor, mission, child"} +{"id": "3172", "title": "Bandits", "year": 2001, "duration_min": 123, "rating": 6.2, "genres": "Action, Comedy, Crime, Romance", "genres_pipe": "|Action|Comedy|Crime|Romance|", "keywords": "prison", "tags_pipe": "|prison|", "overview": "Two bank robbers fall in love with the girl they've kidnapped.", "text_for_embedding": "Bandits (2001). Genres: Action, Comedy, Crime, Romance. Two bank robbers fall in love with the girl they've kidnapped.. Tags: prison"} +{"id": "6520", "title": "First Knight", "year": 1995, "duration_min": 134, "rating": 5.9, "genres": "Action, Adventure, Drama, Romance", "genres_pipe": "|Action|Adventure|Drama|Romance|", "keywords": "camelot, knight, king arthur, excalibur, knights of the round table", "tags_pipe": "|camelot|knight|king arthur|excalibur|knights of the round table|", "overview": "The timeless tale of King Arthur and the legend of Camelot are retold in this passionate period drama. Arthur is reluctant to hand the crown to Lancelot, and Guinevere is torn between her loyalty to her husband and her growing love for his rival. But Lancelot must balance his loyalty to the throne with the rewards of true love.", "text_for_embedding": "First Knight (1995). Genres: Action, Adventure, Drama, Romance. The timeless tale of King Arthur and the legend of Camelot are retold in this passionate period drama. Arthur is reluctant to hand the crown to Lancelot, and Guinevere is torn between her loyalty to her husband and her growing love for his rival. But Lancelot must balance his loyalty to the throne with the rewards of true love.. Tags: camelot, knight, king arthur, excalibur, knights of the round table"} +{"id": "1439", "title": "Anna and the King", "year": 1999, "duration_min": 148, "rating": 6.4, "genres": "Drama, History, Romance", "genres_pipe": "|Drama|History|Romance|", "keywords": "civil war, father son relationship, east india trading company, traitor, death penalty, thailand, palace, burma, daughter, royalty, teacher, battle, denunciation", "tags_pipe": "|civil war|father son relationship|east india trading company|traitor|death penalty|thailand|palace|burma|daughter|royalty|teacher|battle|denunciation|", "overview": "The story of the romance between the King of Siam (now Thailand) and the widowed British school teacher Anna Leonowens during the 1860's. Anna teaches the children and becomes romanced by the King. She convinces him that a man can be loved by just one woman.", "text_for_embedding": "Anna and the King (1999). Genres: Drama, History, Romance. The story of the romance between the King of Siam (now Thailand) and the widowed British school teacher Anna Leonowens during the 1860's. Anna teaches the children and becomes romanced by the King. She convinces him that a man can be loved by just one woman.. Tags: civil war, father son relationship, east india trading company, traitor, death penalty, thailand, palace, burma, daughter, royalty, teacher, battle, denunciation"} +{"id": "37958", "title": "Immortals", "year": 2011, "duration_min": 110, "rating": 5.7, "genres": "Fantasy, Action, Drama", "genres_pipe": "|Fantasy|Action|Drama|", "keywords": "poison, army, zeus, poseidon, spear", "tags_pipe": "|poison|army|zeus|poseidon|spear|", "overview": "Theseus is a mortal man chosen by Zeus to lead the fight against the ruthless King Hyperion, who is on a rampage across Greece to obtain a weapon that can destroy humanity.", "text_for_embedding": "Immortals (2011). Genres: Fantasy, Action, Drama. Theseus is a mortal man chosen by Zeus to lead the fight against the ruthless King Hyperion, who is on a rampage across Greece to obtain a weapon that can destroy humanity.. Tags: poison, army, zeus, poseidon, spear"} +{"id": "2026", "title": "Hostage", "year": 2005, "duration_min": 113, "rating": 6.2, "genres": "Mystery, Drama, Thriller, Crime", "genres_pipe": "|Mystery|Drama|Thriller|Crime|", "keywords": "fbi, kidnapping, police operation, home invasion, hostage situation, hostage negotiator", "tags_pipe": "|fbi|kidnapping|police operation|home invasion|hostage situation|hostage negotiator|", "overview": "When a mafia accountant is taken hostage on his beat, a police officer – wracked by guilt from a prior stint as a negotiator – must negotiate the standoff, even as his own family is held captive by the mob.", "text_for_embedding": "Hostage (2005). Genres: Mystery, Drama, Thriller, Crime. When a mafia accountant is taken hostage on his beat, a police officer – wracked by guilt from a prior stint as a negotiator – must negotiate the standoff, even as his own family is held captive by the mob.. Tags: fbi, kidnapping, police operation, home invasion, hostage situation, hostage negotiator"} +{"id": "7450", "title": "Titan A.E.", "year": 2000, "duration_min": 94, "rating": 6.3, "genres": "Animation, Action, Science Fiction, Family, Adventure", "genres_pipe": "|Animation|Action|Science Fiction|Family|Adventure|", "keywords": "monster, galaxy, dystopia, space, alien, animation, mission", "tags_pipe": "|monster|galaxy|dystopia|space|alien|animation|mission|", "overview": "A young man finds out that he holds the key to restoring hope and ensuring survival for the human race, while an alien species called the Dredge are bent on mankind's destruction.", "text_for_embedding": "Titan A.E. (2000). Genres: Animation, Action, Science Fiction, Family, Adventure. A young man finds out that he holds the key to restoring hope and ensuring survival for the human race, while an alien species called the Dredge are bent on mankind's destruction.. Tags: monster, galaxy, dystopia, space, alien, animation, mission"} +{"id": "11375", "title": "Hollywood Homicide", "year": 2003, "duration_min": 116, "rating": 5.0, "genres": "Action, Adventure, Comedy, Thriller", "genres_pipe": "|Action|Adventure|Comedy|Thriller|", "keywords": "rap music, hitman", "tags_pipe": "|rap music|hitman|", "overview": "Joe Gavilan (Harrison Ford) and his new partner K. C. Calden (Josh Hartnett), are detectives on the beat in Tinseltown. Neither one of them really wants to be a cop, Gavilan moonlights as a real estate broker, and Calden is an aspiring actor moonlighting as a yoga instructor. When the two are assigned a big case they must work out whether they want to solve the case or follow their hearts.", "text_for_embedding": "Hollywood Homicide (2003). Genres: Action, Adventure, Comedy, Thriller. Joe Gavilan (Harrison Ford) and his new partner K. C. Calden (Josh Hartnett), are detectives on the beat in Tinseltown. Neither one of them really wants to be a cop, Gavilan moonlights as a real estate broker, and Calden is an aspiring actor moonlighting as a yoga instructor. When the two are assigned a big case they must work out whether they want to solve the case or follow their hearts.. Tags: rap music, hitman"} +{"id": "9425", "title": "Soldier", "year": 1998, "duration_min": 99, "rating": 6.1, "genres": "Action, War, Science Fiction", "genres_pipe": "|Action|War|Science Fiction|", "keywords": "space marine, dystopia, alien planet, genetic engineering", "tags_pipe": "|space marine|dystopia|alien planet|genetic engineering|", "overview": "Sergeant Todd is a veteran soldier for an elite group of the armed forces. After being defeated by a new breed of genetically engineered soldiers, he is dumped on a waste planet and left for dead. He soon interacts with a group of crash survivors who lead out a peaceful existence. The peace is broken as the new soldiers land on the planet to eliminate the colony, which Sergeant Todd must defend.", "text_for_embedding": "Soldier (1998). Genres: Action, War, Science Fiction. Sergeant Todd is a veteran soldier for an elite group of the armed forces. After being defeated by a new breed of genetically engineered soldiers, he is dumped on a waste planet and left for dead. He soon interacts with a group of crash survivors who lead out a peaceful existence. The peace is broken as the new soldiers land on the planet to eliminate the colony, which Sergeant Todd must defend.. Tags: space marine, dystopia, alien planet, genetic engineering"} +{"id": "25769", "title": "Carriers", "year": 2009, "duration_min": 84, "rating": 5.8, "genres": "Action, Drama, Horror, Science Fiction, Thriller", "genres_pipe": "|Action|Drama|Horror|Science Fiction|Thriller|", "keywords": "beach, desperation, infection, survival, biohazard, disease, trust, virus, pandemic", "tags_pipe": "|beach|desperation|infection|survival|biohazard|disease|trust|virus|pandemic|", "overview": "Four friends fleeing a viral pandemic soon learn they are more dangerous than any virus.A deadly virus has spread across the globe. Contagion is everywhere, no one is safe and no one can be trusted. Four young attractive people race through the back roads of the American West to the pounding beat of a vacation soundtrack. Their aim is to retreat to secluded utopian beach in the Gulf of Mexico, where they could peacefully wait out the pandemic and survive the apocalyptic disease. Their plans take a grim turn when their car breaks down on an isolated road starting a chain of events that will seal the fate of each of them in an inexorable and horrifying voyage of hell through a western landscape populated by only the hideous dead or the twisted living.", "text_for_embedding": "Carriers (2009). Genres: Action, Drama, Horror, Science Fiction, Thriller. Four friends fleeing a viral pandemic soon learn they are more dangerous than any virus.A deadly virus has spread across the globe. Contagion is everywhere, no one is safe and no one can be trusted. Four young attractive people race through the back roads of the American West to the pounding beat of a vacation soundtrack. Their aim is to retreat to secluded utopian beach in the Gulf of Mexico, where they could peacefully wait out the pandemic and survive the apocalyptic disease. Their plans take a grim turn when their car breaks down on an isolated road starting a chain of events that will seal the fate of each of them in an inexorable and horrifying voyage of hell through a western landscape populated by only the hideous dead or the twisted living.. Tags: beach, desperation, infection, survival, biohazard, disease, trust, virus, pandemic"} +{"id": "23685", "title": "Monkeybone", "year": 2001, "duration_min": 93, "rating": 4.3, "genres": "Adventure, Fantasy, Animation, Action, Comedy", "genres_pipe": "|Adventure|Fantasy|Animation|Action|Comedy|", "keywords": "parallel world, organ donation, horniness agent, aftercreditsstinger", "tags_pipe": "|parallel world|organ donation|horniness agent|aftercreditsstinger|", "overview": "After a car crash sends repressed cartoonist Stu Miley (Fraser) into a coma, he and the mischievous Monkeybone, his hilariously horny alter-ego, wake up in a wacked-out waystation for lost souls. When Monkeybone takes over Stu's body and escapes to wreak havoc on the real world, Stu has to find a way to stop him before his sister pulls the plug on reality forever!", "text_for_embedding": "Monkeybone (2001). Genres: Adventure, Fantasy, Animation, Action, Comedy. After a car crash sends repressed cartoonist Stu Miley (Fraser) into a coma, he and the mischievous Monkeybone, his hilariously horny alter-ego, wake up in a wacked-out waystation for lost souls. When Monkeybone takes over Stu's body and escapes to wreak havoc on the real world, Stu has to find a way to stop him before his sister pulls the plug on reality forever!. Tags: parallel world, organ donation, horniness agent, aftercreditsstinger"} +{"id": "11866", "title": "Flight of the Phoenix", "year": 2004, "duration_min": 113, "rating": 5.7, "genres": "Action, Adventure, Drama, Thriller", "genres_pipe": "|Action|Adventure|Drama|Thriller|", "keywords": "robbery, water, gobi desert, disaster, airplane crash, struggle for survival, desert", "tags_pipe": "|robbery|water|gobi desert|disaster|airplane crash|struggle for survival|desert|", "overview": "When an Amacor oil rig in the Gobi Desert of Mongolia proves unproductive, Captain Frank Towns and copilot \"A.J.\" are sent to shut the operation down. However, on their way to Beijing, a major dust storm forces them to ditch their C-119 Flying Boxcar in an uncharted area of the desert.", "text_for_embedding": "Flight of the Phoenix (2004). Genres: Action, Adventure, Drama, Thriller. When an Amacor oil rig in the Gobi Desert of Mongolia proves unproductive, Captain Frank Towns and copilot \"A.J.\" are sent to shut the operation down. However, on their way to Beijing, a major dust storm forces them to ditch their C-119 Flying Boxcar in an uncharted area of the desert.. Tags: robbery, water, gobi desert, disaster, airplane crash, struggle for survival, desert"} +{"id": "9741", "title": "Unbreakable", "year": 2000, "duration_min": 106, "rating": 6.9, "genres": "Science Fiction, Thriller, Drama", "genres_pipe": "|Science Fiction|Thriller|Drama|", "keywords": "father son relationship, train accident, comic book, marriage crisis, invulnerability, superhero, suspense, super powers", "tags_pipe": "|father son relationship|train accident|comic book|marriage crisis|invulnerability|superhero|suspense|super powers|", "overview": "An ordinary man makes an extraordinary discovery when a train accident leaves his fellow passengers dead – and him unscathed. The answer to this mystery could lie with the mysterious Elijah Price, a man who suffers from a disease that renders his bones as fragile as glass.", "text_for_embedding": "Unbreakable (2000). Genres: Science Fiction, Thriller, Drama. An ordinary man makes an extraordinary discovery when a train accident leaves his fellow passengers dead – and him unscathed. The answer to this mystery could lie with the mysterious Elijah Price, a man who suffers from a disease that renders his bones as fragile as glass.. Tags: father son relationship, train accident, comic book, marriage crisis, invulnerability, superhero, suspense, super powers"} +{"id": "211672", "title": "Minions", "year": 2015, "duration_min": 91, "rating": 6.4, "genres": "Family, Animation, Adventure, Comedy", "genres_pipe": "|Family|Animation|Adventure|Comedy|", "keywords": "assistant, aftercreditsstinger, duringcreditsstinger, evil mastermind, minions, 3d", "tags_pipe": "|assistant|aftercreditsstinger|duringcreditsstinger|evil mastermind|minions|3d|", "overview": "Minions Stuart, Kevin and Bob are recruited by Scarlet Overkill, a super-villain who, alongside her inventor husband Herb, hatches a plot to take over the world.", "text_for_embedding": "Minions (2015). Genres: Family, Animation, Adventure, Comedy. Minions Stuart, Kevin and Bob are recruited by Scarlet Overkill, a super-villain who, alongside her inventor husband Herb, hatches a plot to take over the world.. Tags: assistant, aftercreditsstinger, duringcreditsstinger, evil mastermind, minions, 3d"} +{"id": "23629", "title": "Sucker Punch", "year": 2011, "duration_min": 110, "rating": 5.9, "genres": "Action, Fantasy, Thriller", "genres_pipe": "|Action|Fantasy|Thriller|", "keywords": "brothel, fantasy, asylum, reality, escape, robot, violence, inmate, alternative, imagination, lobotomy", "tags_pipe": "|brothel|fantasy|asylum|reality|escape|robot|violence|inmate|alternative|imagination|lobotomy|", "overview": "A young girl is institutionalized by her abusive stepfather. Retreating to an alternative reality as a coping strategy, she envisions a plan which will help her escape from the mental facility.", "text_for_embedding": "Sucker Punch (2011). Genres: Action, Fantasy, Thriller. A young girl is institutionalized by her abusive stepfather. Retreating to an alternative reality as a coping strategy, she envisions a plan which will help her escape from the mental facility.. Tags: brothel, fantasy, asylum, reality, escape, robot, violence, inmate, alternative, imagination, lobotomy"} +{"id": "8688", "title": "Snake Eyes", "year": 1998, "duration_min": 98, "rating": 5.8, "genres": "Crime, Mystery", "genres_pipe": "|Crime|Mystery|", "keywords": "casino, political activism, boxer, mission of murder, boxing match, suspense, police officer, witness to murder", "tags_pipe": "|casino|political activism|boxer|mission of murder|boxing match|suspense|police officer|witness to murder|", "overview": "All bets are off when corrupt homicide cop Rick Santoro witnesses a murder during a boxing match. It's up to him and lifelong friend and naval intelligence agent Kevin Dunne to uncover the conspiracy behind the killing. At every turn, Santoro makes increasingly shocking discoveries that even he can't turn a blind eye to.", "text_for_embedding": "Snake Eyes (1998). Genres: Crime, Mystery. All bets are off when corrupt homicide cop Rick Santoro witnesses a murder during a boxing match. It's up to him and lifelong friend and naval intelligence agent Kevin Dunne to uncover the conspiracy behind the killing. At every turn, Santoro makes increasingly shocking discoveries that even he can't turn a blind eye to.. Tags: casino, political activism, boxer, mission of murder, boxing match, suspense, police officer, witness to murder"} +{"id": "10153", "title": "Sphere", "year": 1998, "duration_min": 134, "rating": 5.8, "genres": "Science Fiction", "genres_pipe": "|Science Fiction|", "keywords": "ocean, extraterrestrial technology, space marine, paranoia, raumschiffabsturz, alien, psychologist, ocean floor, deepsea", "tags_pipe": "|ocean|extraterrestrial technology|space marine|paranoia|raumschiffabsturz|alien|psychologist|ocean floor|deepsea|", "overview": "The OSSA discovers a spacecraft thought to be at least 300 years old at the bottom of the ocean. Immediately following the discovery, they decide to send a team down to the depths of the ocean to study the space craft.They are the best of best, smart and logical, and the perfect choice to learn more about the spacecraft.", "text_for_embedding": "Sphere (1998). Genres: Science Fiction. The OSSA discovers a spacecraft thought to be at least 300 years old at the bottom of the ocean. Immediately following the discovery, they decide to send a team down to the depths of the ocean to study the space craft.They are the best of best, smart and logical, and the perfect choice to learn more about the spacecraft.. Tags: ocean, extraterrestrial technology, space marine, paranoia, raumschiffabsturz, alien, psychologist, ocean floor, deepsea"} +{"id": "153518", "title": "The Angry Birds Movie", "year": 2016, "duration_min": 97, "rating": 5.9, "genres": "Family, Animation", "genres_pipe": "|Family|Animation|", "keywords": "island, bird, pig, talking animal, based on video game, anger management, 3d", "tags_pipe": "|island|bird|pig|talking animal|based on video game|anger management|3d|", "overview": "An island populated entirely by happy, flightless birds or almost entirely. In this paradise, Red, a bird with a temper problem, speedy Chuck, and the volatile Bomb have always been outsiders. But when the island is visited by mysterious green piggies, it’s up to these unlikely outcasts to figure out what the pigs are up to.", "text_for_embedding": "The Angry Birds Movie (2016). Genres: Family, Animation. An island populated entirely by happy, flightless birds or almost entirely. In this paradise, Red, a bird with a temper problem, speedy Chuck, and the volatile Bomb have always been outsiders. But when the island is visited by mysterious green piggies, it’s up to these unlikely outcasts to figure out what the pigs are up to.. Tags: island, bird, pig, talking animal, based on video game, anger management, 3d"} +{"id": "8676", "title": "Fool's Gold", "year": 2008, "duration_min": 112, "rating": 5.4, "genres": "Romance, Comedy, Adventure", "genres_pipe": "|Romance|Comedy|Adventure|", "keywords": "helicopter, cemetery, boat, mexican standoff, sword, cave, shipwreck, yacht, bahamas, jet ski, treasure hunt, rivalry, scuba diving, gangster, underwater", "tags_pipe": "|helicopter|cemetery|boat|mexican standoff|sword|cave|shipwreck|yacht|bahamas|jet ski|treasure hunt|rivalry|scuba diving|gangster|underwater|", "overview": "Treasure hunter Ben \"Finn\" Finnegan has sunk his marriage to Tess and his trusty boat in his obsessive quest to find the legendary Queen's Dowry. When he finds a vital clue that may finally pinpoint the treasure's whereabouts, he drags Tess and her boss, billionaire Nigel Honeycutt, along on the hunt. But Finn is not the only one interested in the gold; his former mentor-turned-enemy Moe Fitch will stop at nothing to beat him to it.", "text_for_embedding": "Fool's Gold (2008). Genres: Romance, Comedy, Adventure. Treasure hunter Ben \"Finn\" Finnegan has sunk his marriage to Tess and his trusty boat in his obsessive quest to find the legendary Queen's Dowry. When he finds a vital clue that may finally pinpoint the treasure's whereabouts, he drags Tess and her boss, billionaire Nigel Honeycutt, along on the hunt. But Finn is not the only one interested in the gold; his former mentor-turned-enemy Moe Fitch will stop at nothing to beat him to it.. Tags: helicopter, cemetery, boat, mexican standoff, sword, cave, shipwreck, yacht, bahamas, jet ski, treasure hunt, rivalry, scuba diving, gangster, underwater"} +{"id": "20829", "title": "Funny People", "year": 2009, "duration_min": 146, "rating": 5.7, "genres": "Comedy, Drama", "genres_pipe": "|Comedy|Drama|", "keywords": "comedian, cancer, bromance, stand-up comedian", "tags_pipe": "|comedian|cancer|bromance|stand-up comedian|", "overview": "Famous and wealthy funnyman George Simmons doesn't give much thought to how he treats people until a doctor delivers stunning health news, forcing George to reevaluate his priorities with a little help from aspiring stand-up comic Ira.", "text_for_embedding": "Funny People (2009). Genres: Comedy, Drama. Famous and wealthy funnyman George Simmons doesn't give much thought to how he treats people until a doctor delivers stunning health news, forcing George to reevaluate his priorities with a little help from aspiring stand-up comic Ira.. Tags: comedian, cancer, bromance, stand-up comedian"} +{"id": "4349", "title": "The Kingdom", "year": 2007, "duration_min": 110, "rating": 6.5, "genres": "Thriller, Action, Drama", "genres_pipe": "|Thriller|Action|Drama|", "keywords": "assassination, assassin, terrorist, explosive, fbi, chase, saudi arabia, investigation, police, medical examiner, terrorism, fbi agent, arab, bomb attack", "tags_pipe": "|assassination|assassin|terrorist|explosive|fbi|chase|saudi arabia|investigation|police|medical examiner|terrorism|fbi agent|arab|bomb attack|", "overview": "A team of U.S. government agents is sent to investigate the bombing of an American facility in the Middle East.", "text_for_embedding": "The Kingdom (2007). Genres: Thriller, Action, Drama. A team of U.S. government agents is sent to investigate the bombing of an American facility in the Middle East.. Tags: assassination, assassin, terrorist, explosive, fbi, chase, saudi arabia, investigation, police, medical examiner, terrorism, fbi agent, arab, bomb attack"} +{"id": "9718", "title": "Talladega Nights: The Ballad of Ricky Bobby", "year": 2006, "duration_min": 116, "rating": 6.2, "genres": "Comedy", "genres_pipe": "|Comedy|", "keywords": "north carolina, prayer, family dinner, advertising, divorce, motor, automobile racing, nascar, dog trainer, car movie, sport competition, psychosomatic illness, french stereotype, aftercreditsstinger, duringcreditsstinger", "tags_pipe": "|north carolina|prayer|family dinner|advertising|divorce|motor|automobile racing|nascar|dog trainer|car movie|sport competition|psychosomatic illness|french stereotype|aftercreditsstinger|duringcreditsstinger|", "overview": "Lifelong friends and national idols Ricky Bobby and Cal Naughton Jr. have earned their NASCAR stripes with their uncanny knack of finishing races in the first and second slots, respectively, and slinging catchphrases like \"Shake and bake!\" But when a rival French driver coasts onto the track to challenge their records, they'll have to floor it to retain their top-dog status.", "text_for_embedding": "Talladega Nights: The Ballad of Ricky Bobby (2006). Genres: Comedy. Lifelong friends and national idols Ricky Bobby and Cal Naughton Jr. have earned their NASCAR stripes with their uncanny knack of finishing races in the first and second slots, respectively, and slinging catchphrases like \"Shake and bake!\" But when a rival French driver coasts onto the track to challenge their records, they'll have to floor it to retain their top-dog status.. Tags: north carolina, prayer, family dinner, advertising, divorce, motor, automobile racing, nascar, dog trainer, car movie, sport competition, psychosomatic illness, french stereotype, aftercreditsstinger, duringcreditsstinger"} +{"id": "10808", "title": "Dr. Dolittle 2", "year": 2001, "duration_min": 87, "rating": 4.9, "genres": "Comedy, Family, Romance, Fantasy", "genres_pipe": "|Comedy|Family|Romance|Fantasy|", "keywords": "veterinarian, forest, bear, animal, animal protection", "tags_pipe": "|veterinarian|forest|bear|animal|animal protection|", "overview": "Dr. John Dolittle the beloved doctor is back, but this time around he plays cupid to bumbling circus bear Archie as he's so smitten by a Pacific Western bear female, Ava. Dr. Dolittle must help a group of forest creatures to save their forest. But with the aid of his mangy, madcap animal friends, Dr. Dolittle must teach Archie the ways of true romance in time to save his species and his home before their habit is gone. So John held a meeting for every animal in the forest to not give up without a fight no matter what kind of animal expression they have and everyone agrees to do it and save their home.", "text_for_embedding": "Dr. Dolittle 2 (2001). Genres: Comedy, Family, Romance, Fantasy. Dr. John Dolittle the beloved doctor is back, but this time around he plays cupid to bumbling circus bear Archie as he's so smitten by a Pacific Western bear female, Ava. Dr. Dolittle must help a group of forest creatures to save their forest. But with the aid of his mangy, madcap animal friends, Dr. Dolittle must teach Archie the ways of true romance in time to save his species and his home before their habit is gone. So John held a meeting for every animal in the forest to not give up without a fight no matter what kind of animal expression they have and everyone agrees to do it and save their home.. Tags: veterinarian, forest, bear, animal, animal protection"} +{"id": "197", "title": "Braveheart", "year": 1995, "duration_min": 177, "rating": 7.7, "genres": "Action, Drama, History, War", "genres_pipe": "|Action|Drama|History|War|", "keywords": "individual, scotland, in love with enemy, legend, independence, idealism, revolt, tyranny", "tags_pipe": "|individual|scotland|in love with enemy|legend|independence|idealism|revolt|tyranny|", "overview": "Enraged at the slaughter of Murron, his new bride and childhood love, Scottish warrior William Wallace slays a platoon of the local English lord's soldiers. This leads the village to revolt and, eventually, the entire country to rise up against English rule.", "text_for_embedding": "Braveheart (1995). Genres: Action, Drama, History, War. Enraged at the slaughter of Murron, his new bride and childhood love, Scottish warrior William Wallace slays a platoon of the local English lord's soldiers. This leads the village to revolt and, eventually, the entire country to rise up against English rule.. Tags: individual, scotland, in love with enemy, legend, independence, idealism, revolt, tyranny"} +{"id": "25", "title": "Jarhead", "year": 2005, "duration_min": 125, "rating": 6.6, "genres": "Drama, War", "genres_pipe": "|Drama|War|", "keywords": "sniper, marine corps, saudi arabia, petrol, golf war, u.s. marine", "tags_pipe": "|sniper|marine corps|saudi arabia|petrol|golf war|u.s. marine|", "overview": "Jarhead is a film about a US Marine Anthony Swofford’s experience in the Gulf War. After putting up with an arduous boot camp, Swafford and his unit are sent to the Persian Gulf where they are earger to fight but are forced to stay back from the action. Meanwhile Swofford gets news of his girlfriend is cheating on him. Desperately he wants to kill someone and finally put his training to use.", "text_for_embedding": "Jarhead (2005). Genres: Drama, War. Jarhead is a film about a US Marine Anthony Swofford’s experience in the Gulf War. After putting up with an arduous boot camp, Swafford and his unit are sent to the Persian Gulf where they are earger to fight but are forced to stay back from the action. Meanwhile Swofford gets news of his girlfriend is cheating on him. Desperately he wants to kill someone and finally put his training to use.. Tags: sniper, marine corps, saudi arabia, petrol, golf war, u.s. marine"} +{"id": "35", "title": "The Simpsons Movie", "year": 2007, "duration_min": 87, "rating": 6.9, "genres": "Animation, Comedy, Family", "genres_pipe": "|Animation|Comedy|Family|", "keywords": "father son relationship, lake, springfield, the simpsons, duff beer, garbage, pig, pollution, environmental protection agency, quarantine, alcoholism, love, alaska, dysfunctional family, dysfunctional marriage", "tags_pipe": "|father son relationship|lake|springfield|the simpsons|duff beer|garbage|pig|pollution|environmental protection agency|quarantine|alcoholism|love|alaska|dysfunctional family|dysfunctional marriage|", "overview": "After Homer accidentally pollutes the town's water supply, Springfield is encased in a gigantic dome by the EPA and the Simpsons are declared fugitives.", "text_for_embedding": "The Simpsons Movie (2007). Genres: Animation, Comedy, Family. After Homer accidentally pollutes the town's water supply, Springfield is encased in a gigantic dome by the EPA and the Simpsons are declared fugitives.. Tags: father son relationship, lake, springfield, the simpsons, duff beer, garbage, pig, pollution, environmental protection agency, quarantine, alcoholism, love, alaska, dysfunctional family, dysfunctional marriage"} +{"id": "11086", "title": "The Majestic", "year": 2001, "duration_min": 152, "rating": 6.6, "genres": "Drama, Romance", "genres_pipe": "|Drama|Romance|", "keywords": "california, falsely accused, prosecution, anti-communism, hollywood, writer", "tags_pipe": "|california|falsely accused|prosecution|anti-communism|hollywood|writer|", "overview": "Set in 1951, a blacklisted Hollywood writer gets into a car accident, loses his memory and settles down in a small town where he is mistaken for a long-lost son.", "text_for_embedding": "The Majestic (2001). Genres: Drama, Romance. Set in 1951, a blacklisted Hollywood writer gets into a car accident, loses his memory and settles down in a small town where he is mistaken for a long-lost son.. Tags: california, falsely accused, prosecution, anti-communism, hollywood, writer"} +{"id": "10477", "title": "Driven", "year": 2001, "duration_min": 116, "rating": 4.5, "genres": "Action", "genres_pipe": "|Action|", "keywords": "competition, running, career, idol, racing car", "tags_pipe": "|competition|running|career|idol|racing car|", "overview": "Talented rookie race-car driver Jimmy Bly has started losing his focus and begins to slip in the race rankings. It's no wonder, with the immense pressure being shoveled on him by his overly ambitious promoter brother as well as Bly's romance with his arch rival's girlfriend Sophia. With much riding on Bly, car owner Carl Henry brings former racing star Joe Tanto on board to help Bly. To drive Bly back to the top of the rankings, Tanto must first deal with the emotional scars left over from a tragic racing accident which nearly took his life.", "text_for_embedding": "Driven (2001). Genres: Action. Talented rookie race-car driver Jimmy Bly has started losing his focus and begins to slip in the race rankings. It's no wonder, with the immense pressure being shoveled on him by his overly ambitious promoter brother as well as Bly's romance with his arch rival's girlfriend Sophia. With much riding on Bly, car owner Carl Henry brings former racing star Joe Tanto on board to help Bly. To drive Bly back to the top of the rankings, Tanto must first deal with the emotional scars left over from a tragic racing accident which nearly took his life.. Tags: competition, running, career, idol, racing car"} +{"id": "1997", "title": "Two Brothers", "year": 2004, "duration_min": 109, "rating": 6.9, "genres": "Adventure, Drama, Family", "genres_pipe": "|Adventure|Drama|Family|", "keywords": "brother brother relationship, loss of brother, cambodia, chase, tiger, governor, royalty, travelling circus, archaeologist", "tags_pipe": "|brother brother relationship|loss of brother|cambodia|chase|tiger|governor|royalty|travelling circus|archaeologist|", "overview": "Two tigers are separated as cubs and taken into captivity, only to be reunited years later as enemies by an explorer (Pearce) who inadvertently forces them to fight each other.", "text_for_embedding": "Two Brothers (2004). Genres: Adventure, Drama, Family. Two tigers are separated as cubs and taken into captivity, only to be reunited years later as enemies by an explorer (Pearce) who inadvertently forces them to fight each other.. Tags: brother brother relationship, loss of brother, cambodia, chase, tiger, governor, royalty, travelling circus, archaeologist"} +{"id": "6947", "title": "The Village", "year": 2004, "duration_min": 108, "rating": 6.2, "genres": "Drama, Mystery, Thriller", "genres_pipe": "|Drama|Mystery|Thriller|", "keywords": "secret, forest, rural setting, blindness, courtship, mentally handicapped man, human nature, aura, romantic, village council", "tags_pipe": "|secret|forest|rural setting|blindness|courtship|mentally handicapped man|human nature|aura|romantic|village council|", "overview": "When a willful young man tries to venture beyond his sequestered Pennsylvania hamlet, his actions set off a chain of chilling incidents that will alter the community forever.", "text_for_embedding": "The Village (2004). Genres: Drama, Mystery, Thriller. When a willful young man tries to venture beyond his sequestered Pennsylvania hamlet, his actions set off a chain of chilling incidents that will alter the community forever.. Tags: secret, forest, rural setting, blindness, courtship, mentally handicapped man, human nature, aura, romantic, village council"} +{"id": "3050", "title": "Doctor Dolittle", "year": 1998, "duration_min": 85, "rating": 5.4, "genres": "Comedy, Family, Fantasy", "genres_pipe": "|Comedy|Family|Fantasy|", "keywords": "talking to animals, woman director", "tags_pipe": "|talking to animals|woman director|", "overview": "A successful physician and devoted family man, John Dolittle (Eddie Murphy) seems to have the world by the tail, until a long suppressed talent he possessed as a child, the ability to communicate with animals is suddenly reawakened with a vengeance! Now every creature within squawking distance wants the good doctor's advice, unleashing an outrageous chain of events that turns his world upside down!", "text_for_embedding": "Doctor Dolittle (1998). Genres: Comedy, Family, Fantasy. A successful physician and devoted family man, John Dolittle (Eddie Murphy) seems to have the world by the tail, until a long suppressed talent he possessed as a child, the ability to communicate with animals is suddenly reawakened with a vengeance! Now every creature within squawking distance wants the good doctor's advice, unleashing an outrageous chain of events that turns his world upside down!. Tags: talking to animals, woman director"} +{"id": "2675", "title": "Signs", "year": 2002, "duration_min": 106, "rating": 6.4, "genres": "Drama, Thriller, Science Fiction, Mystery", "genres_pipe": "|Drama|Thriller|Science Fiction|Mystery|", "keywords": "symbolism, water, farm, faith, alien, family relationships, rural setting, alien invasion, rural, crop circle, alien attack, rural pennsylvania, rural america, rural farm, loss of faith", "tags_pipe": "|symbolism|water|farm|faith|alien|family relationships|rural setting|alien invasion|rural|crop circle|alien attack|rural pennsylvania|rural america|rural farm|loss of faith|", "overview": "A family living on a farm finds mysterious crop circles in their fields which suggests something more frightening to come.", "text_for_embedding": "Signs (2002). Genres: Drama, Thriller, Science Fiction, Mystery. A family living on a farm finds mysterious crop circles in their fields which suggests something more frightening to come.. Tags: symbolism, water, farm, faith, alien, family relationships, rural setting, alien invasion, rural, crop circle, alien attack, rural pennsylvania, rural america, rural farm, loss of faith"} +{"id": "809", "title": "Shrek 2", "year": 2004, "duration_min": 93, "rating": 6.7, "genres": "Adventure, Animation, Comedy, Family, Fantasy", "genres_pipe": "|Adventure|Animation|Comedy|Family|Fantasy|", "keywords": "prison, magic, liberation, honeymoon, parents-in-law, kingdom, enchantment, dancing scene, transformation, fairy-tale figure", "tags_pipe": "|prison|magic|liberation|honeymoon|parents-in-law|kingdom|enchantment|dancing scene|transformation|fairy-tale figure|", "overview": "Shrek, Fiona and Donkey set off to Far, Far Away to meet Fiona's mother and father. But not everyone is happy. Shrek and the King find it hard to get along, and there's tension in the marriage. The fairy godmother discovers that Shrek has married Fiona instead of her Son Prince Charming and sets about destroying their marriage.", "text_for_embedding": "Shrek 2 (2004). Genres: Adventure, Animation, Comedy, Family, Fantasy. Shrek, Fiona and Donkey set off to Far, Far Away to meet Fiona's mother and father. But not everyone is happy. Shrek and the King find it hard to get along, and there's tension in the marriage. The fairy godmother discovers that Shrek has married Fiona instead of her Son Prince Charming and sets about destroying their marriage.. Tags: prison, magic, liberation, honeymoon, parents-in-law, kingdom, enchantment, dancing scene, transformation, fairy-tale figure"} +{"id": "920", "title": "Cars", "year": 2006, "duration_min": 117, "rating": 6.6, "genres": "Animation, Adventure, Comedy, Family", "genres_pipe": "|Animation|Adventure|Comedy|Family|", "keywords": "car race, car journey, village and town, auto, route 66, wrecker, porsche, retirement, media, friendship, sport, anthropomorphism, los angeles, road movie, aftercreditsstinger", "tags_pipe": "|car race|car journey|village and town|auto|route 66|wrecker|porsche|retirement|media|friendship|sport|anthropomorphism|los angeles|road movie|aftercreditsstinger|", "overview": "Lightning McQueen, a hotshot rookie race car driven to succeed, discovers that life is about the journey, not the finish line, when he finds himself unexpectedly detoured in the sleepy Route 66 town of Radiator Springs. On route across the country to the big Piston Cup Championship in California to compete against two seasoned pros, McQueen gets to know the town's offbeat characters.", "text_for_embedding": "Cars (2006). Genres: Animation, Adventure, Comedy, Family. Lightning McQueen, a hotshot rookie race car driven to succeed, discovers that life is about the journey, not the finish line, when he finds himself unexpectedly detoured in the sleepy Route 66 town of Radiator Springs. On route across the country to the big Piston Cup Championship in California to compete against two seasoned pros, McQueen gets to know the town's offbeat characters.. Tags: car race, car journey, village and town, auto, route 66, wrecker, porsche, retirement, media, friendship, sport, anthropomorphism, los angeles, road movie, aftercreditsstinger"} +{"id": "4806", "title": "Runaway Bride", "year": 1999, "duration_min": 116, "rating": 5.7, "genres": "Comedy, Romance", "genres_pipe": "|Comedy|Romance|", "keywords": "small town, self-discovery, just married, reporter, wedding, relationship", "tags_pipe": "|small town|self-discovery|just married|reporter|wedding|relationship|", "overview": "Ike Graham, New York columnist, writes his text always at the last minute. This time, a drunken man in his favourite bar tells Ike about Maggie Carpenter, a woman who always flees from her grooms in the last possible moment. Ike, who does not have the best opinion about females anyway, writes an offensive column without researching the subject thoroughly.", "text_for_embedding": "Runaway Bride (1999). Genres: Comedy, Romance. Ike Graham, New York columnist, writes his text always at the last minute. This time, a drunken man in his favourite bar tells Ike about Maggie Carpenter, a woman who always flees from her grooms in the last possible moment. Ike, who does not have the best opinion about females anyway, writes an offensive column without researching the subject thoroughly.. Tags: small town, self-discovery, just married, reporter, wedding, relationship"} +{"id": "7451", "title": "xXx", "year": 2002, "duration_min": 124, "rating": 5.8, "genres": "Action, Adventure, Thriller", "genres_pipe": "|Action|Adventure|Thriller|", "keywords": "sports car, biological weapon, cold war, russian, prague, mission, athlete, nsa agent, adrenaline junkie, thrill seeker", "tags_pipe": "|sports car|biological weapon|cold war|russian|prague|mission|athlete|nsa agent|adrenaline junkie|thrill seeker|", "overview": "Xander Cage is your standard adrenaline junkie with no fear and a lousy attitude. When the US Government \"recruits\" him to go on a mission, he's not exactly thrilled. His mission: to gather information on an organization that may just be planning the destruction of the world, led by the nihilistic Yorgi.", "text_for_embedding": "xXx (2002). Genres: Action, Adventure, Thriller. Xander Cage is your standard adrenaline junkie with no fear and a lousy attitude. When the US Government \"recruits\" him to go on a mission, he's not exactly thrilled. His mission: to gather information on an organization that may just be planning the destruction of the world, led by the nihilistic Yorgi.. Tags: sports car, biological weapon, cold war, russian, prague, mission, athlete, nsa agent, adrenaline junkie, thrill seeker"} +{"id": "228165", "title": "The SpongeBob Movie: Sponge Out of Water", "year": 2015, "duration_min": 93, "rating": 5.8, "genres": "Animation, Adventure, Comedy, Family", "genres_pipe": "|Animation|Adventure|Comedy|Family|", "keywords": "ocean, sea, star, water, comedy, sponge, spongebob, live action and animation", "tags_pipe": "|ocean|sea|star|water|comedy|sponge|spongebob|live action and animation|", "overview": "Burger Beard is a pirate who is in search of the final page of a magical book that makes any evil plan he writes in it come true, which happens to be the Krabby Patty secret formula. When the entire city of Bikini Bottom is put in danger, SpongeBob, Patrick, Mr. Krabs, Squidward, Sandy, and Plankton need to go on a quest that takes them to the surface. In order to get back the recipe and save their city, the gang must retrieve the book and transform themselves into superheroes.", "text_for_embedding": "The SpongeBob Movie: Sponge Out of Water (2015). Genres: Animation, Adventure, Comedy, Family. Burger Beard is a pirate who is in search of the final page of a magical book that makes any evil plan he writes in it come true, which happens to be the Krabby Patty secret formula. When the entire city of Bikini Bottom is put in danger, SpongeBob, Patrick, Mr. Krabs, Squidward, Sandy, and Plankton need to go on a quest that takes them to the surface. In order to get back the recipe and save their city, the gang must retrieve the book and transform themselves into superheroes.. Tags: ocean, sea, star, water, comedy, sponge, spongebob, live action and animation"} +{"id": "3595", "title": "Ransom", "year": 1996, "duration_min": 117, "rating": 6.4, "genres": "Action, Thriller", "genres_pipe": "|Action|Thriller|", "keywords": "bounty, loss of child, yellow press, fbi, baby-snatching, suspense, fbi agent, millionaire", "tags_pipe": "|bounty|loss of child|yellow press|fbi|baby-snatching|suspense|fbi agent|millionaire|", "overview": "When a rich man's son is kidnapped, he cooperates with the police at first but then tries a unique tactic against the criminals.", "text_for_embedding": "Ransom (1996). Genres: Action, Thriller. When a rich man's son is kidnapped, he cooperates with the police at first but then tries a unique tactic against the criminals.. Tags: bounty, loss of child, yellow press, fbi, baby-snatching, suspense, fbi agent, millionaire"} +{"id": "16869", "title": "Inglourious Basterds", "year": 2009, "duration_min": 153, "rating": 7.9, "genres": "Drama, Action, Thriller, War", "genres_pipe": "|Drama|Action|Thriller|War|", "keywords": "paris, guerrilla, cinema, self sacrifice, dynamite, mexican standoff, world war ii, jew persecution, jew, nazis, masochism, sadism, scalp, winston churchill, knife in hand", "tags_pipe": "|paris|guerrilla|cinema|self sacrifice|dynamite|mexican standoff|world war ii|jew persecution|jew|nazis|masochism|sadism|scalp|winston churchill|knife in hand|", "overview": "In Nazi-occupied France during World War II, a group of Jewish-American soldiers known as \"The Basterds\" are chosen specifically to spread fear throughout the Third Reich by scalping and brutally killing Nazis. The Basterds, lead by Lt. Aldo Raine soon cross paths with a French-Jewish teenage girl who runs a movie theater in Paris which is targeted by the soldiers.", "text_for_embedding": "Inglourious Basterds (2009). Genres: Drama, Action, Thriller, War. In Nazi-occupied France during World War II, a group of Jewish-American soldiers known as \"The Basterds\" are chosen specifically to spread fear throughout the Third Reich by scalping and brutally killing Nazis. The Basterds, lead by Lt. Aldo Raine soon cross paths with a French-Jewish teenage girl who runs a movie theater in Paris which is targeted by the soldiers.. Tags: paris, guerrilla, cinema, self sacrifice, dynamite, mexican standoff, world war ii, jew persecution, jew, nazis, masochism, sadism, scalp, winston churchill, knife in hand"} +{"id": "879", "title": "Hook", "year": 1991, "duration_min": 144, "rating": 6.6, "genres": "Adventure, Fantasy, Comedy, Family", "genres_pipe": "|Adventure|Fantasy|Comedy|Family|", "keywords": "flying, swordplay, sword, fantasy, peter pan, daughter, fairy-tale figure, rescue", "tags_pipe": "|flying|swordplay|sword|fantasy|peter pan|daughter|fairy-tale figure|rescue|", "overview": "The boy who wasn't supposed to grow up—Peter Pan—did just that, becoming a soulless corporate lawyer whose workaholism could cost him his wife and kids. But a trip to see Granny Wendy in London, where the vengeful Capt. Hook kidnaps Peter's kids and forces Peter to return to Neverland, could lead to a chance at redemption, in this family-oriented fantasy from director Steven Spielberg.", "text_for_embedding": "Hook (1991). Genres: Adventure, Fantasy, Comedy, Family. The boy who wasn't supposed to grow up—Peter Pan—did just that, becoming a soulless corporate lawyer whose workaholism could cost him his wife and kids. But a trip to see Granny Wendy in London, where the vengeful Capt. Hook kidnaps Peter's kids and forces Peter to return to Neverland, could lead to a chance at redemption, in this family-oriented fantasy from director Steven Spielberg.. Tags: flying, swordplay, sword, fantasy, peter pan, daughter, fairy-tale figure, rescue"} +{"id": "1573", "title": "Die Hard 2", "year": 1990, "duration_min": 124, "rating": 6.6, "genres": "Action, Thriller", "genres_pipe": "|Action|Thriller|", "keywords": "ambush, helicopter, journalist, based on novel, airport, hand grenade, fistfight, cop, sequel, snow, dulles international airport, shootout, officer involved shooting, terrorism, explosion", "tags_pipe": "|ambush|helicopter|journalist|based on novel|airport|hand grenade|fistfight|cop|sequel|snow|dulles international airport|shootout|officer involved shooting|terrorism|explosion|", "overview": "John McClane is an off-duty cop gripped with a feeling of déjà vu when on a snowy Christmas Eve in the nation's capital, terrorists seize a major international airport, holding thousands of holiday travelers hostage. Renegade military commandos led by a murderous rogue officer plot to rescue a drug lord from justice and are prepared for every contingency except one: McClane's smart-mouthed heroics.", "text_for_embedding": "Die Hard 2 (1990). Genres: Action, Thriller. John McClane is an off-duty cop gripped with a feeling of déjà vu when on a snowy Christmas Eve in the nation's capital, terrorists seize a major international airport, holding thousands of holiday travelers hostage. Renegade military commandos led by a murderous rogue officer plot to rescue a drug lord from justice and are prepared for every contingency except one: McClane's smart-mouthed heroics.. Tags: ambush, helicopter, journalist, based on novel, airport, hand grenade, fistfight, cop, sequel, snow, dulles international airport, shootout, officer involved shooting, terrorism, explosion"} +{"id": "9257", "title": "S.W.A.T.", "year": 2003, "duration_min": 117, "rating": 5.8, "genres": "Action, Thriller, Crime", "genres_pipe": "|Action|Thriller|Crime|", "keywords": "liberation, transport of prisoners, special unit, weapon, los angeles", "tags_pipe": "|liberation|transport of prisoners|special unit|weapon|los angeles|", "overview": "Hondo Harrelson recruits Jim Street to join an elite unit of the Los Angeles Police Department. Together they seek out more members, including tough Deke Kay and single mom Chris Sanchez. The team's first big assignment is to escort crime boss Alex Montel to prison. It seems routine, but when Montel offers a huge reward to anyone who can break him free, criminals of various stripes step up for the prize.", "text_for_embedding": "S.W.A.T. (2003). Genres: Action, Thriller, Crime. Hondo Harrelson recruits Jim Street to join an elite unit of the Los Angeles Police Department. Together they seek out more members, including tough Deke Kay and single mom Chris Sanchez. The team's first big assignment is to escort crime boss Alex Montel to prison. It seems routine, but when Montel offers a huge reward to anyone who can break him free, criminals of various stripes step up for the prize.. Tags: liberation, transport of prisoners, special unit, weapon, los angeles"} +{"id": "1903", "title": "Vanilla Sky", "year": 2001, "duration_min": 136, "rating": 6.5, "genres": "Drama, Mystery, Romance, Science Fiction, Thriller", "genres_pipe": "|Drama|Mystery|Romance|Science Fiction|Thriller|", "keywords": "amnesia, ex-girlfriend, virtual reality", "tags_pipe": "|amnesia|ex-girlfriend|virtual reality|", "overview": "David Aames (Tom Cruise) has it all: wealth, good looks and gorgeous women on his arm. But just as he begins falling for the warmhearted Sofia (Penelope Cruz), his face is horribly disfigured in a car accident. That's just the beginning of his troubles as the lines between illusion and reality, between life and death, are blurred.", "text_for_embedding": "Vanilla Sky (2001). Genres: Drama, Mystery, Romance, Science Fiction, Thriller. David Aames (Tom Cruise) has it all: wealth, good looks and gorgeous women on his arm. But just as he begins falling for the warmhearted Sofia (Penelope Cruz), his face is horribly disfigured in a car accident. That's just the beginning of his troubles as the lines between illusion and reality, between life and death, are blurred.. Tags: amnesia, ex-girlfriend, virtual reality"} +{"id": "9697", "title": "Lady in the Water", "year": 2006, "duration_min": 110, "rating": 5.3, "genres": "Drama, Thriller, Fantasy, Mystery", "genres_pipe": "|Drama|Thriller|Fantasy|Mystery|", "keywords": "fortune teller, religion and supernatural, supernatural powers, mythical creature, hell, swimming pool, nixe, aftercreditsstinger", "tags_pipe": "|fortune teller|religion and supernatural|supernatural powers|mythical creature|hell|swimming pool|nixe|aftercreditsstinger|", "overview": "Apartment building superintendent Cleveland Heep rescues what he thinks is a young woman from the pool he maintains. When he discovers that she is actually a character from a bedtime story who is trying to make the journey back to her home, he works with his tenants to protect his new friend from the creatures that are determined to keep her in our world.", "text_for_embedding": "Lady in the Water (2006). Genres: Drama, Thriller, Fantasy, Mystery. Apartment building superintendent Cleveland Heep rescues what he thinks is a young woman from the pool he maintains. When he discovers that she is actually a character from a bedtime story who is trying to make the journey back to her home, he works with his tenants to protect his new friend from the creatures that are determined to keep her in our world.. Tags: fortune teller, religion and supernatural, supernatural powers, mythical creature, hell, swimming pool, nixe, aftercreditsstinger"} +{"id": "395", "title": "AVP: Alien vs. Predator", "year": 2004, "duration_min": 101, "rating": 5.5, "genres": "Adventure, Science Fiction, Action", "genres_pipe": "|Adventure|Science Fiction|Action|", "keywords": "saving the world, predator, laserpointer, space marine, pyramid, praise, alien, xenomorph", "tags_pipe": "|saving the world|predator|laserpointer|space marine|pyramid|praise|alien|xenomorph|", "overview": "When scientists discover something in the Arctic that appears to be a buried Pyramid, they send a research team out to investigate. Little do they know that they are about to step into a hunting ground where Aliens are grown as sport for the Predator race.", "text_for_embedding": "AVP: Alien vs. Predator (2004). Genres: Adventure, Science Fiction, Action. When scientists discover something in the Arctic that appears to be a buried Pyramid, they send a research team out to investigate. Little do they know that they are about to step into a hunting ground where Aliens are grown as sport for the Predator race.. Tags: saving the world, predator, laserpointer, space marine, pyramid, praise, alien, xenomorph"} +{"id": "23398", "title": "Alvin and the Chipmunks: The Squeakquel", "year": 2009, "duration_min": 88, "rating": 5.4, "genres": "Comedy, Family, Animation, Fantasy, Music", "genres_pipe": "|Comedy|Family|Animation|Fantasy|Music|", "keywords": "chipmunk, cgi, based on tv series, aftercreditsstinger, duringcreditsstinger, woman director", "tags_pipe": "|chipmunk|cgi|based on tv series|aftercreditsstinger|duringcreditsstinger|woman director|", "overview": "Pop sensations Alvin, Simon and Theodore end up in the care of Dave Seville's twenty-something nephew Toby. The boys must put aside music super stardom to return to school, and are tasked with saving the school's music program by winning the $25,000 prize in a battle of the bands. But the Chipmunks unexpectedly meet their match in three singing chipmunks known as The Chipettes - Brittany, Eleanor and Jeanette. Romantic and musical sparks are ignited when the Chipmunks and Chipettes square off.", "text_for_embedding": "Alvin and the Chipmunks: The Squeakquel (2009). Genres: Comedy, Family, Animation, Fantasy, Music. Pop sensations Alvin, Simon and Theodore end up in the care of Dave Seville's twenty-something nephew Toby. The boys must put aside music super stardom to return to school, and are tasked with saving the school's music program by winning the $25,000 prize in a battle of the bands. But the Chipmunks unexpectedly meet their match in three singing chipmunks known as The Chipettes - Brittany, Eleanor and Jeanette. Romantic and musical sparks are ignited when the Chipmunks and Chipettes square off.. Tags: chipmunk, cgi, based on tv series, aftercreditsstinger, duringcreditsstinger, woman director"} +{"id": "10590", "title": "We Were Soldiers", "year": 2002, "duration_min": 138, "rating": 6.7, "genres": "Action, History, War", "genres_pipe": "|Action|History|War|", "keywords": "vietnam veteran, missile, vietnam war, army, major, based on true story, steel helmet, soldier, explosion, battle, bayonet, death, vietnamese", "tags_pipe": "|vietnam veteran|missile|vietnam war|army|major|based on true story|steel helmet|soldier|explosion|battle|bayonet|death|vietnamese|", "overview": "The story of the first major battle of the American phase of the Vietnam War and the soldiers on both sides that fought it.", "text_for_embedding": "We Were Soldiers (2002). Genres: Action, History, War. The story of the first major battle of the American phase of the Vietnam War and the soldiers on both sides that fought it.. Tags: vietnam veteran, missile, vietnam war, army, major, based on true story, steel helmet, soldier, explosion, battle, bayonet, death, vietnamese"} +{"id": "117263", "title": "Olympus Has Fallen", "year": 2013, "duration_min": 120, "rating": 6.2, "genres": "Action, Thriller", "genres_pipe": "|Action|Thriller|", "keywords": "white house, secret service, terrorist attack", "tags_pipe": "|white house|secret service|terrorist attack|", "overview": "When the White House (Secret Service Code: \"Olympus\") is captured by a terrorist mastermind and the President is kidnapped, disgraced former Presidential guard Mike Banning finds himself trapped within the building. As the national security team scrambles to respond, they are forced to rely on Banning's inside knowledge to help retake the White House, save the President and avert an even bigger disaster.", "text_for_embedding": "Olympus Has Fallen (2013). Genres: Action, Thriller. When the White House (Secret Service Code: \"Olympus\") is captured by a terrorist mastermind and the President is kidnapped, disgraced former Presidential guard Mike Banning finds himself trapped within the building. As the national security team scrambles to respond, they are forced to rely on Banning's inside knowledge to help retake the White House, save the President and avert an even bigger disaster.. Tags: white house, secret service, terrorist attack"} +{"id": "200", "title": "Star Trek: Insurrection", "year": 1998, "duration_min": 103, "rating": 6.3, "genres": "Science Fiction, Action, Adventure, Thriller", "genres_pipe": "|Science Fiction|Action|Adventure|Thriller|", "keywords": "space opera, retribution, spacecraft officer, exploding ship", "tags_pipe": "|space opera|retribution|spacecraft officer|exploding ship|", "overview": "When an alien race and factions within Starfleet attempt to take over a planet that has \"regenerative\" properties, it falls upon Captain Picard and the crew of the Enterprise to defend the planet's people as well as the very ideals upon which the Federation itself was founded.", "text_for_embedding": "Star Trek: Insurrection (1998). Genres: Science Fiction, Action, Adventure, Thriller. When an alien race and factions within Starfleet attempt to take over a planet that has \"regenerative\" properties, it falls upon Captain Picard and the crew of the Enterprise to defend the planet's people as well as the very ideals upon which the Federation itself was founded.. Tags: space opera, retribution, spacecraft officer, exploding ship"} +{"id": "44943", "title": "Battle: Los Angeles", "year": 2011, "duration_min": 116, "rating": 5.5, "genres": "Action, Science Fiction", "genres_pipe": "|Action|Science Fiction|", "keywords": "saving the world, hero, marine corps, chaos, retirement, survivor, meteor, space invasion, alien, battlefield, survival, sergeant, los angeles, battle, danger", "tags_pipe": "|saving the world|hero|marine corps|chaos|retirement|survivor|meteor|space invasion|alien|battlefield|survival|sergeant|los angeles|battle|danger|", "overview": "The Earth is attacked by unknown forces. As people everywhere watch the world's great cities fall, Los Angeles becomes the last stand for mankind in a battle no one expected. It's up to a Marine staff sergeant and his new platoon to draw a line in the sand as they take on an enemy unlike any they've ever encountered before.", "text_for_embedding": "Battle: Los Angeles (2011). Genres: Action, Science Fiction. The Earth is attacked by unknown forces. As people everywhere watch the world's great cities fall, Los Angeles becomes the last stand for mankind in a battle no one expected. It's up to a Marine staff sergeant and his new platoon to draw a line in the sand as they take on an enemy unlike any they've ever encountered before.. Tags: saving the world, hero, marine corps, chaos, retirement, survivor, meteor, space invasion, alien, battlefield, survival, sergeant, los angeles, battle, danger"} +{"id": "587", "title": "Big Fish", "year": 2003, "duration_min": 125, "rating": 7.6, "genres": "Adventure, Fantasy, Drama", "genres_pipe": "|Adventure|Fantasy|Drama|", "keywords": "circus, father son relationship, witch, fish, fishing, love of one's life, leech, story teller, apoplectic stroke, fair, mermaid, cancer, relationship, youth, gentle giant", "tags_pipe": "|circus|father son relationship|witch|fish|fishing|love of one's life|leech|story teller|apoplectic stroke|fair|mermaid|cancer|relationship|youth|gentle giant|", "overview": "Throughout his life Edward Bloom has always been a man of big appetites, enormous passions and tall tales. In his later years, he remains a huge mystery to his son, William. Now, to get to know the real man, Will begins piecing together a true picture of his father from flashbacks of his amazing adventures.", "text_for_embedding": "Big Fish (2003). Genres: Adventure, Fantasy, Drama. Throughout his life Edward Bloom has always been a man of big appetites, enormous passions and tall tales. In his later years, he remains a huge mystery to his son, William. Now, to get to know the real man, Will begins piecing together a true picture of his father from flashbacks of his amazing adventures.. Tags: circus, father son relationship, witch, fish, fishing, love of one's life, leech, story teller, apoplectic stroke, fair, mermaid, cancer, relationship, youth, gentle giant"} +{"id": "10395", "title": "Wolf", "year": 1994, "duration_min": 125, "rating": 6.0, "genres": "Fantasy", "genres_pipe": "|Fantasy|", "keywords": "adultery, heal, bite, werewolf", "tags_pipe": "|adultery|heal|bite|werewolf|", "overview": "Publisher Will Randall becomes a werewolf and has to fight to keep his job.", "text_for_embedding": "Wolf (1994). Genres: Fantasy. Publisher Will Randall becomes a werewolf and has to fight to keep his job.. Tags: adultery, heal, bite, werewolf"} +{"id": "57212", "title": "War Horse", "year": 2011, "duration_min": 146, "rating": 7.0, "genres": "Drama, War", "genres_pipe": "|Drama|War|", "keywords": "world war i, horse, farm life, execution, trapped, alcoholic, cavalry, plowing, artillery", "tags_pipe": "|world war i|horse|farm life|execution|trapped|alcoholic|cavalry|plowing|artillery|", "overview": "Follows a young man named Albert and his horse, Joey, and how their bond is broken when Joey is sold to the cavalry and sent to the trenches of World War One. Despite being too young to enlist, Albert heads to France to save his friend.", "text_for_embedding": "War Horse (2011). Genres: Drama, War. Follows a young man named Albert and his horse, Joey, and how their bond is broken when Joey is sold to the cavalry and sent to the trenches of World War One. Despite being too young to enlist, Albert heads to France to save his friend.. Tags: world war i, horse, farm life, execution, trapped, alcoholic, cavalry, plowing, artillery"} +{"id": "152760", "title": "The Monuments Men", "year": 2014, "duration_min": 118, "rating": 5.8, "genres": "War, Drama, History, Action", "genres_pipe": "|War|Drama|History|Action|", "keywords": "world war ii, nazis, art theft, post world war ii", "tags_pipe": "|world war ii|nazis|art theft|post world war ii|", "overview": "Based on the true story of the greatest treasure hunt in history, The Monuments Men is an action drama focusing on seven over-the-hill, out-of-shape museum directors, artists, architects, curators, and art historians who went to the front lines of WWII to rescue the world’s artistic masterpieces from Nazi thieves and return them to their rightful owners. With the art hidden behind enemy lines, how could these guys hope to succeed?", "text_for_embedding": "The Monuments Men (2014). Genres: War, Drama, History, Action. Based on the true story of the greatest treasure hunt in history, The Monuments Men is an action drama focusing on seven over-the-hill, out-of-shape museum directors, artists, architects, curators, and art historians who went to the front lines of WWII to rescue the world’s artistic masterpieces from Nazi thieves and return them to their rightful owners. With the art hidden behind enemy lines, how could these guys hope to succeed?. Tags: world war ii, nazis, art theft, post world war ii"} +{"id": "2756", "title": "The Abyss", "year": 1989, "duration_min": 139, "rating": 7.1, "genres": "Adventure, Action, Thriller, Science Fiction", "genres_pipe": "|Adventure|Action|Thriller|Science Fiction|", "keywords": "ocean, sea, diving suit, flying saucer, nuclear missile, alien life-form, insanity, scuba diving, underwater, scuba, deepsea, trapped underwater , thalassophobia", "tags_pipe": "|ocean|sea|diving suit|flying saucer|nuclear missile|alien life-form|insanity|scuba diving|underwater|scuba|deepsea|trapped underwater |thalassophobia|", "overview": "A civilian oil rig crew is recruited to conduct a search and rescue effort when a nuclear submarine mysteriously sinks. One diver soon finds himself on a spectacular odyssey 25,000 feet below the ocean's surface where he confronts a mysterious force that has the power to change the world or destroy it.", "text_for_embedding": "The Abyss (1989). Genres: Adventure, Action, Thriller, Science Fiction. A civilian oil rig crew is recruited to conduct a search and rescue effort when a nuclear submarine mysteriously sinks. One diver soon finds himself on a spectacular odyssey 25,000 feet below the ocean's surface where he confronts a mysterious force that has the power to change the world or destroy it.. Tags: ocean, sea, diving suit, flying saucer, nuclear missile, alien life-form, insanity, scuba diving, underwater, scuba, deepsea, trapped underwater , thalassophobia"} +{"id": "33909", "title": "Wall Street: Money Never Sleeps", "year": 2010, "duration_min": 133, "rating": 5.8, "genres": "Drama, Crime", "genres_pipe": "|Drama|Crime|", "keywords": "duringcreditsstinger", "tags_pipe": "|duringcreditsstinger|", "overview": "As the global economy teeters on the brink of disaster, a young Wall Street trader partners with disgraced former Wall Street corporate raider Gordon Gekko on a two tiered mission: To alert the financial community to the coming doom, and to find out who was responsible for the death of the young trader's mentor.", "text_for_embedding": "Wall Street: Money Never Sleeps (2010). Genres: Drama, Crime. As the global economy teeters on the brink of disaster, a young Wall Street trader partners with disgraced former Wall Street corporate raider Gordon Gekko on a two tiered mission: To alert the financial community to the coming doom, and to find out who was responsible for the death of the young trader's mentor.. Tags: duringcreditsstinger"} +{"id": "49017", "title": "Dracula Untold", "year": 2014, "duration_min": 92, "rating": 6.2, "genres": "Horror, Action, Drama, Fantasy, War", "genres_pipe": "|Horror|Action|Drama|Fantasy|War|", "keywords": "vampire, dracula, bite, battle, 15th century, ottoman empire, vlad, fang vamp, tepes", "tags_pipe": "|vampire|dracula|bite|battle|15th century|ottoman empire|vlad|fang vamp|tepes|", "overview": "Vlad Tepes is a great hero, but when he learns the Sultan is preparing for battle and needs to form an army of 1,000 boys, including Vlad's son, he vows to find a way to protect his family. Vlad turns to dark forces in order to get the power to destroy his enemies and agrees to go from hero to monster as he's turned into the mythological vampire Dracula.", "text_for_embedding": "Dracula Untold (2014). Genres: Horror, Action, Drama, Fantasy, War. Vlad Tepes is a great hero, but when he learns the Sultan is preparing for battle and needs to form an army of 1,000 boys, including Vlad's son, he vows to find a way to protect his family. Vlad turns to dark forces in order to get the power to destroy his enemies and agrees to go from hero to monster as he's turned into the mythological vampire Dracula.. Tags: vampire, dracula, bite, battle, 15th century, ottoman empire, vlad, fang vamp, tepes"} +{"id": "9882", "title": "The Siege", "year": 1998, "duration_min": 116, "rating": 6.0, "genres": "Drama, Action, Thriller, Crime", "genres_pipe": "|Drama|Action|Thriller|Crime|", "keywords": "islam, muslim, car bomb, fbi agent", "tags_pipe": "|islam|muslim|car bomb|fbi agent|", "overview": "The secret US abduction of a suspected terrorist leads to a wave of terrorist attacks in New York that lead to the declaration of martial law.", "text_for_embedding": "The Siege (1998). Genres: Drama, Action, Thriller, Crime. The secret US abduction of a suspected terrorist leads to a wave of terrorist attacks in New York that lead to the declaration of martial law.. Tags: islam, muslim, car bomb, fbi agent"} +{"id": "2270", "title": "Stardust", "year": 2007, "duration_min": 127, "rating": 7.1, "genres": "Adventure, Fantasy, Romance, Family", "genres_pipe": "|Adventure|Fantasy|Romance|Family|", "keywords": "witch, based on novel, new love, prince, beauty, star, kingdom, wall, falling star, royalty, unrequited love, good vs evil, fratricide", "tags_pipe": "|witch|based on novel|new love|prince|beauty|star|kingdom|wall|falling star|royalty|unrequited love|good vs evil|fratricide|", "overview": "In a countryside town bordering on a magical land, a young man makes a promise to his beloved that he'll retrieve a fallen star by venturing into the magical realm. His journey takes him into a world beyond his wildest dreams and reveals his true identity.", "text_for_embedding": "Stardust (2007). Genres: Adventure, Fantasy, Romance, Family. In a countryside town bordering on a magical land, a young man makes a promise to his beloved that he'll retrieve a fallen star by venturing into the magical realm. His journey takes him into a world beyond his wildest dreams and reveals his true identity.. Tags: witch, based on novel, new love, prince, beauty, star, kingdom, wall, falling star, royalty, unrequited love, good vs evil, fratricide"} +{"id": "978", "title": "Seven Years in Tibet", "year": 1997, "duration_min": 136, "rating": 7.0, "genres": "Adventure, Drama, History", "genres_pipe": "|Adventure|Drama|History|", "keywords": "buddhism, himalaya, austria, mountains, buddhist monk, world war ii, prisoners of war, monsoon, tibet, dalai lama, mountaineer, lhasa, wedding", "tags_pipe": "|buddhism|himalaya|austria|mountains|buddhist monk|world war ii|prisoners of war|monsoon|tibet|dalai lama|mountaineer|lhasa|wedding|", "overview": "Austrian mountaineer, Heinrich Harrer journeys to the Himalayas without his family to head an expedition in 1939. But when World War II breaks out, the arrogant Harrer falls into Allied forces' hands as a prisoner of war. He escapes with a fellow detainee and makes his way to Llaso, Tibet, where he meets the 14-year-old Dalai Lama, whose friendship ultimately transforms his outlook on life.", "text_for_embedding": "Seven Years in Tibet (1997). Genres: Adventure, Drama, History. Austrian mountaineer, Heinrich Harrer journeys to the Himalayas without his family to head an expedition in 1939. But when World War II breaks out, the arrogant Harrer falls into Allied forces' hands as a prisoner of war. He escapes with a fellow detainee and makes his way to Llaso, Tibet, where he meets the 14-year-old Dalai Lama, whose friendship ultimately transforms his outlook on life.. Tags: buddhism, himalaya, austria, mountains, buddhist monk, world war ii, prisoners of war, monsoon, tibet, dalai lama, mountaineer, lhasa, wedding"} +{"id": "44564", "title": "The Dilemma", "year": 2011, "duration_min": 111, "rating": 5.2, "genres": "Comedy, Drama", "genres_pipe": "|Comedy|Drama|", "keywords": "adultery, infidelity, secret, investigation, friendship, partner, love, friends, dilemma, cheating on partner, best friend", "tags_pipe": "|adultery|infidelity|secret|investigation|friendship|partner|love|friends|dilemma|cheating on partner|best friend|", "overview": "Longtime friends Ronny and Nick are partners in an auto-design firm. They are hard at work on a presentation for a dream project that would really launch their company. Then Ronny spots Nick's wife out with another man, and in the process of investigating the possible affair, he learns that Nick has a few secrets of his own. As the presentation nears, Ronny agonizes over what might happen if the truth gets out.", "text_for_embedding": "The Dilemma (2011). Genres: Comedy, Drama. Longtime friends Ronny and Nick are partners in an auto-design firm. They are hard at work on a presentation for a dream project that would really launch their company. Then Ronny spots Nick's wife out with another man, and in the process of investigating the possible affair, he learns that Nick has a few secrets of his own. As the presentation nears, Ronny agonizes over what might happen if the truth gets out.. Tags: adultery, infidelity, secret, investigation, friendship, partner, love, friends, dilemma, cheating on partner, best friend"} +{"id": "3132", "title": "Bad Company", "year": 2002, "duration_min": 116, "rating": 5.4, "genres": "Action, Adventure, Comedy, Thriller", "genres_pipe": "|Action|Adventure|Comedy|Thriller|", "keywords": "ambush, cia, assassin, nightclub, hustler, hidden camera, decoy, undercover agent, twin brother, deception, betrayal, mistaken identity, shootout, espionage, foot chase", "tags_pipe": "|ambush|cia|assassin|nightclub|hustler|hidden camera|decoy|undercover agent|twin brother|deception|betrayal|mistaken identity|shootout|espionage|foot chase|", "overview": "When a Harvard-educated CIA agent is killed during an operation, the secret agency recruits his twin brother.", "text_for_embedding": "Bad Company (2002). Genres: Action, Adventure, Comedy, Thriller. When a Harvard-educated CIA agent is killed during an operation, the secret agency recruits his twin brother.. Tags: ambush, cia, assassin, nightclub, hustler, hidden camera, decoy, undercover agent, twin brother, deception, betrayal, mistaken identity, shootout, espionage, foot chase"} +{"id": "8814", "title": "Doom", "year": 2005, "duration_min": 105, "rating": 5.0, "genres": "Adventure, Action, Horror", "genres_pipe": "|Adventure|Action|Horror|", "keywords": "teleportation, based on video game, severed ear, future war, wisecrack humor, commando mission", "tags_pipe": "|teleportation|based on video game|severed ear|future war|wisecrack humor|commando mission|", "overview": "A team of space marines known as the Rapid Response Tactical Squad, led by Sarge, is sent to a science facility on Mars after somebody reports a security breach. There, they learn that the alert came after a test subject, a mass murderer purposefully injected with alien DNA, broke free and began killing people. Dr. Grimm, who is related to team member Reaper, informs them all that the chromosome can mutate humans into monsters -- and is highly infectious.", "text_for_embedding": "Doom (2005). Genres: Adventure, Action, Horror. A team of space marines known as the Rapid Response Tactical Squad, led by Sarge, is sent to a science facility on Mars after somebody reports a security breach. There, they learn that the alert came after a test subject, a mass murderer purposefully injected with alien DNA, broke free and began killing people. Dr. Grimm, who is related to team member Reaper, informs them all that the chromosome can mutate humans into monsters -- and is highly infectious.. Tags: teleportation, based on video game, severed ear, future war, wisecrack humor, commando mission"} +{"id": "8427", "title": "I Spy", "year": 2002, "duration_min": 97, "rating": 5.2, "genres": "Action, Adventure, Comedy, Thriller", "genres_pipe": "|Action|Adventure|Comedy|Thriller|", "keywords": "budapest, kidnapping, boxer, secret agent, liberation of hostage, hostage-taking, woman director", "tags_pipe": "|budapest|kidnapping|boxer|secret agent|liberation of hostage|hostage-taking|woman director|", "overview": "When the Switchblade, the most sophisticated prototype stealth fighter created yet, is stolen from the U.S. government, one of the United States' top spies, Alex Scott, is called to action. What he doesn't expect is to get teamed up with a cocky civilian, World Class Boxing Champion Kelly Robinson, on a dangerous top secret espionage mission. Their assignment: using equal parts skill and humor, catch Arnold Gundars, one of the world's most successful arms dealers.", "text_for_embedding": "I Spy (2002). Genres: Action, Adventure, Comedy, Thriller. When the Switchblade, the most sophisticated prototype stealth fighter created yet, is stolen from the U.S. government, one of the United States' top spies, Alex Scott, is called to action. What he doesn't expect is to get teamed up with a cocky civilian, World Class Boxing Champion Kelly Robinson, on a dangerous top secret espionage mission. Their assignment: using equal parts skill and humor, catch Arnold Gundars, one of the world's most successful arms dealers.. Tags: budapest, kidnapping, boxer, secret agent, liberation of hostage, hostage-taking, woman director"} +{"id": "52520", "title": "Underworld: Awakening", "year": 2012, "duration_min": 88, "rating": 6.1, "genres": "Fantasy, Action, Horror", "genres_pipe": "|Fantasy|Action|Horror|", "keywords": "vampire, daughter, hybrid, child vampire, werewolf, imax, lab experiment, werewolf child, fang vamp", "tags_pipe": "|vampire|daughter|hybrid|child vampire|werewolf|imax|lab experiment|werewolf child|fang vamp|", "overview": "After being held in a coma-like state for fifteen years, vampire Selene learns that she has a fourteen-year-old vampire/Lycan hybrid daughter named Nissa, and when she finds her, they must stop BioCom from creating super Lycans that will kill them all.", "text_for_embedding": "Underworld: Awakening (2012). Genres: Fantasy, Action, Horror. After being held in a coma-like state for fifteen years, vampire Selene learns that she has a fourteen-year-old vampire/Lycan hybrid daughter named Nissa, and when she finds her, they must stop BioCom from creating super Lycans that will kill them all.. Tags: vampire, daughter, hybrid, child vampire, werewolf, imax, lab experiment, werewolf child, fang vamp"} +{"id": "80585", "title": "Rock of Ages", "year": 2012, "duration_min": 123, "rating": 6.0, "genres": "Comedy, Drama, Music, Romance", "genres_pipe": "|Comedy|Drama|Music|Romance|", "keywords": "musical, rocker, teenager, young love, rock sta", "tags_pipe": "|musical|rocker|teenager|young love|rock sta|", "overview": "A small town girl and a city boy meet on the Sunset Strip, while pursuing their Hollywood dreams.", "text_for_embedding": "Rock of Ages (2012). Genres: Comedy, Drama, Music, Romance. A small town girl and a city boy meet on the Sunset Strip, while pursuing their Hollywood dreams.. Tags: musical, rocker, teenager, young love, rock sta"} +{"id": "10592", "title": "Hart's War", "year": 2002, "duration_min": 125, "rating": 5.9, "genres": "Drama, War", "genres_pipe": "|Drama|War|", "keywords": "black people, world war ii, prisoners of war, u.s. army, war, escape, tribunal, trial, soldier, military tribunal, xenophobia", "tags_pipe": "|black people|world war ii|prisoners of war|u.s. army|war|escape|tribunal|trial|soldier|military tribunal|xenophobia|", "overview": "Fourth-generation Army Col. William McNamara is imprisoned in a brutal German POW camp. Still, as the senior-ranking American officer, he commands his fellow inmates, keeping a sense of honor alive in a place where honor is easy to destroy, all under the dangerous eye of the Luftwafe vetran Col. Wilhelm Visser. Never giving up the fight to win the war, McNamara is silently planning, waiting for his moment to strike back at the enemy. A murder in the camp gives him the chance to set a risky plan in motion. With a court martial to keep Visser and the Germans distracted, McNamara orchestrates a cunning scheme to escape and destroy a nearby munitions plant, enlisting the unwitting help of young Lt. Tommy Hart. Together with his men, McNamara uses a hero's resolve to carry out his mission, ultimately forced to weigh the value of his life against the good of his country.", "text_for_embedding": "Hart's War (2002). Genres: Drama, War. Fourth-generation Army Col. William McNamara is imprisoned in a brutal German POW camp. Still, as the senior-ranking American officer, he commands his fellow inmates, keeping a sense of honor alive in a place where honor is easy to destroy, all under the dangerous eye of the Luftwafe vetran Col. Wilhelm Visser. Never giving up the fight to win the war, McNamara is silently planning, waiting for his moment to strike back at the enemy. A murder in the camp gives him the chance to set a risky plan in motion. With a court martial to keep Visser and the Germans distracted, McNamara orchestrates a cunning scheme to escape and destroy a nearby munitions plant, enlisting the unwitting help of young Lt. Tommy Hart. Together with his men, McNamara uses a hero's resolve to carry out his mission, ultimately forced to weigh the value of his life against the good of his country.. Tags: black people, world war ii, prisoners of war, u.s. army, war, escape, tribunal, trial, soldier, military tribunal, xenophobia"} +{"id": "49021", "title": "Killer Elite", "year": 2011, "duration_min": 116, "rating": 6.1, "genres": "Action, Adventure, Thriller", "genres_pipe": "|Action|Adventure|Thriller|", "keywords": "rescue", "tags_pipe": "|rescue|", "overview": "Based on a shocking true story, Killer Elite pits two of the world’s most elite operatives—Danny, an ex-special ops agent and Hunter, his longtime mentor—against the cunning leader of a secret military society. Covering the globe from Australia to Paris, London and the Middle East, Danny and Hunter are plunged into a highly dangerous game of cat and mouse—where the predators become the prey.", "text_for_embedding": "Killer Elite (2011). Genres: Action, Adventure, Thriller. Based on a shocking true story, Killer Elite pits two of the world’s most elite operatives—Danny, an ex-special ops agent and Hunter, his longtime mentor—against the cunning leader of a secret military society. Covering the globe from Australia to Paris, London and the Middle East, Danny and Hunter are plunged into a highly dangerous game of cat and mouse—where the predators become the prey.. Tags: rescue"} +{"id": "11535", "title": "Rollerball", "year": 2002, "duration_min": 98, "rating": 3.4, "genres": "Action, Science Fiction, Thriller", "genres_pipe": "|Action|Science Fiction|Thriller|", "keywords": "manager, arena, dystopia, wrestling, sport, roller-skating, motorcycle racing, rollerskating, future sport", "tags_pipe": "|manager|arena|dystopia|wrestling|sport|roller-skating|motorcycle racing|rollerskating|future sport|", "overview": "From the director of Die Hard comes this high-octane thriller that roars along at a breakneck pace (Los Angeles Times)! Starring Chris Klein (American Pie), Jean Reno (Ronin), LL Cool J (Charlie's Angels) and Rebecca Romijn-Stamos (X-Men), Rollerball goes full-throttle with excitement from its death-defying opening until its explosive end! Jonathan Cross (Klein) is the newest recruit in the most extreme sport of all time where his fast moves and killer looks make him an instant superstar. But Cross life in the fast lane collides with reality when he learns that the league's owner (Reno) is orchestrating serious on-court accidents to boost ratings. Now Cross plans to take down the owner and his ruthless sport before the game puts an end to him!", "text_for_embedding": "Rollerball (2002). Genres: Action, Science Fiction, Thriller. From the director of Die Hard comes this high-octane thriller that roars along at a breakneck pace (Los Angeles Times)! Starring Chris Klein (American Pie), Jean Reno (Ronin), LL Cool J (Charlie's Angels) and Rebecca Romijn-Stamos (X-Men), Rollerball goes full-throttle with excitement from its death-defying opening until its explosive end! Jonathan Cross (Klein) is the newest recruit in the most extreme sport of all time where his fast moves and killer looks make him an instant superstar. But Cross life in the fast lane collides with reality when he learns that the league's owner (Reno) is orchestrating serious on-court accidents to boost ratings. Now Cross plans to take down the owner and his ruthless sport before the game puts an end to him!. Tags: manager, arena, dystopia, wrestling, sport, roller-skating, motorcycle racing, rollerskating, future sport"} +{"id": "10550", "title": "Ballistic: Ecks vs. Sever", "year": 2002, "duration_min": 91, "rating": 4.3, "genres": "Action, Adventure, Thriller", "genres_pipe": "|Action|Adventure|Thriller|", "keywords": "loss of family, enemy, adversary, agent", "tags_pipe": "|loss of family|enemy|adversary|agent|", "overview": "Jonathan Ecks, an FBI agent, realizes that he must join with his lifelong enemy, Agent Sever, a rogue DIA agent with whom he is in mortal combat, in order to defeat a common enemy. That enemy has developed a \"micro-device\" that can be injected into victims in order to kill them at will.", "text_for_embedding": "Ballistic: Ecks vs. Sever (2002). Genres: Action, Adventure, Thriller. Jonathan Ecks, an FBI agent, realizes that he must join with his lifelong enemy, Agent Sever, a rogue DIA agent with whom he is in mortal combat, in order to defeat a common enemy. That enemy has developed a \"micro-device\" that can be injected into victims in order to kill them at will.. Tags: loss of family, enemy, adversary, agent"} +{"id": "11258", "title": "Hard Rain", "year": 1998, "duration_min": 97, "rating": 5.5, "genres": "Thriller", "genres_pipe": "|Thriller|", "keywords": "sheriff, rain, evacuation, armored car, crook, hoodlum", "tags_pipe": "|sheriff|rain|evacuation|armored car|crook|hoodlum|", "overview": "Get swept up in the action as an armored car driver (Christian Slater) tries to elude a gang of thieves (led by Morgan Freeman) while a flood ravages the countryside. Hard Rain is \"a wild, thrilling, chilling action ride\" filled with close calls, uncertain loyalties and heart-stopping heroics.", "text_for_embedding": "Hard Rain (1998). Genres: Thriller. Get swept up in the action as an armored car driver (Christian Slater) tries to elude a gang of thieves (led by Morgan Freeman) while a flood ravages the countryside. Hard Rain is \"a wild, thrilling, chilling action ride\" filled with close calls, uncertain loyalties and heart-stopping heroics.. Tags: sheriff, rain, evacuation, armored car, crook, hoodlum"} +{"id": "12610", "title": "Osmosis Jones", "year": 2001, "duration_min": 95, "rating": 5.9, "genres": "Adventure, Animation, Action, Comedy, Family", "genres_pipe": "|Adventure|Animation|Action|Comedy|Family|", "keywords": "cold, flu, lethal virus, construction worker", "tags_pipe": "|cold|flu|lethal virus|construction worker|", "overview": "A policeman white blood cell, with the help of a cold pill, must stop a deadly virus from destroying the human they live in, Frank.", "text_for_embedding": "Osmosis Jones (2001). Genres: Adventure, Animation, Action, Comedy, Family. A policeman white blood cell, with the help of a cold pill, must stop a deadly virus from destroying the human they live in, Frank.. Tags: cold, flu, lethal virus, construction worker"} +{"id": "59981", "title": "Legends of Oz: Dorothy's Return", "year": 2013, "duration_min": 88, "rating": 5.9, "genres": "Animation, Music, Family", "genres_pipe": "|Animation|Music|Family|", "keywords": "", "tags_pipe": "", "overview": "Dorothy wakes up in post-tornado Kansas, only to be whisked back to Oz to try to save her old friends the Scarecrow, the Lion, the Tin Man and Glinda from a devious new villain, the Jester. Wiser the owl, Marshal Mallow, China Princess and Tugg the tugboat join Dorothy on her latest magical journey through the colorful landscape of Oz to restore order and happiness to Emerald City.", "text_for_embedding": "Legends of Oz: Dorothy's Return (2013). Genres: Animation, Music, Family. Dorothy wakes up in post-tornado Kansas, only to be whisked back to Oz to try to save her old friends the Scarecrow, the Lion, the Tin Man and Glinda from a devious new villain, the Jester. Wiser the owl, Marshal Mallow, China Princess and Tugg the tugboat join Dorothy on her latest magical journey through the colorful landscape of Oz to restore order and happiness to Emerald City.. Tags: "} +{"id": "201088", "title": "Blackhat", "year": 2015, "duration_min": 133, "rating": 5.1, "genres": "Crime, Drama, Mystery", "genres_pipe": "|Crime|Drama|Mystery|", "keywords": "terrorist, technology, anti hero, hacker, computer virus, national security agency (nsa), race against time, computer, malaysia, nuclear power plant, suspense, betrayal, conspiracy, on the run, fugitive", "tags_pipe": "|terrorist|technology|anti hero|hacker|computer virus|national security agency (nsa)|race against time|computer|malaysia|nuclear power plant|suspense|betrayal|conspiracy|on the run|fugitive|", "overview": "A man is released from prison to help American and Chinese authorities pursue a mysterious cyber criminal. The dangerous search leads them from Chicago to Hong Kong.", "text_for_embedding": "Blackhat (2015). Genres: Crime, Drama, Mystery. A man is released from prison to help American and Chinese authorities pursue a mysterious cyber criminal. The dangerous search leads them from Chicago to Hong Kong.. Tags: terrorist, technology, anti hero, hacker, computer virus, national security agency (nsa), race against time, computer, malaysia, nuclear power plant, suspense, betrayal, conspiracy, on the run, fugitive"} +{"id": "5137", "title": "Sky Captain and the World of Tomorrow", "year": 2004, "duration_min": 107, "rating": 5.7, "genres": "Mystery, Action, Thriller, Science Fiction, Adventure", "genres_pipe": "|Mystery|Action|Thriller|Science Fiction|Adventure|", "keywords": "london england, himalaya, journalist, killer robot, computer war, robot", "tags_pipe": "|london england|himalaya|journalist|killer robot|computer war|robot|", "overview": "When gigantic robots attack New York City, \"Sky Captain\" uses his private air force to fight them off. His ex-girlfriend, reporter Polly Perkins, has been investigating the recent disappearance of prominent scientists. Suspecting a link between the global robot attacks and missing men, Sky Captain and Polly decide to work together. They fly to the Himalayas in pursuit of the mysterious Dr. Totenkopf, the mastermind behind the robots.", "text_for_embedding": "Sky Captain and the World of Tomorrow (2004). Genres: Mystery, Action, Thriller, Science Fiction, Adventure. When gigantic robots attack New York City, \"Sky Captain\" uses his private air force to fight them off. His ex-girlfriend, reporter Polly Perkins, has been investigating the recent disappearance of prominent scientists. Suspecting a link between the global robot attacks and missing men, Sky Captain and Polly decide to work together. They fly to the Himalayas in pursuit of the mysterious Dr. Totenkopf, the mastermind behind the robots.. Tags: london england, himalaya, journalist, killer robot, computer war, robot"} +{"id": "3093", "title": "Basic Instinct 2", "year": 2006, "duration_min": 114, "rating": 4.6, "genres": "Crime, Mystery, Thriller", "genres_pipe": "|Crime|Mystery|Thriller|", "keywords": "male nudity, sex, legs, soho london, playing god, jacuzzi", "tags_pipe": "|male nudity|sex|legs|soho london|playing god|jacuzzi|", "overview": "Novelist Catherine Tramell is once again in trouble with the law, and Scotland Yard appoints psychiatrist Dr. Michael Glass to evaluate her. Though, like Detective Nick Curran before him, Glass is entranced by Tramell and lured into a seductive game.", "text_for_embedding": "Basic Instinct 2 (2006). Genres: Crime, Mystery, Thriller. Novelist Catherine Tramell is once again in trouble with the law, and Scotland Yard appoints psychiatrist Dr. Michael Glass to evaluate her. Though, like Detective Nick Curran before him, Glass is entranced by Tramell and lured into a seductive game.. Tags: male nudity, sex, legs, soho london, playing god, jacuzzi"} +{"id": "107846", "title": "Escape Plan", "year": 2013, "duration_min": 115, "rating": 6.7, "genres": "Action, Thriller", "genres_pipe": "|Action|Thriller|", "keywords": "prison, muslim, ship, mystery, science fiction, escape, crime, prison escape, cia agent", "tags_pipe": "|prison|muslim|ship|mystery|science fiction|escape|crime|prison escape|cia agent|", "overview": "Ray Breslin is the world's foremost authority on structural security. After analyzing every high security prison and learning a vast array of survival skills so he can design escape-proof prisons, his skills are put to the test. He's framed and incarcerated in a master prison he designed himself. He needs to escape and find the person who put him behind bars.", "text_for_embedding": "Escape Plan (2013). Genres: Action, Thriller. Ray Breslin is the world's foremost authority on structural security. After analyzing every high security prison and learning a vast array of survival skills so he can design escape-proof prisons, his skills are put to the test. He's framed and incarcerated in a master prison he designed himself. He needs to escape and find the person who put him behind bars.. Tags: prison, muslim, ship, mystery, science fiction, escape, crime, prison escape, cia agent"} +{"id": "188207", "title": "The Legend of Hercules", "year": 2014, "duration_min": 99, "rating": 4.4, "genres": "Action, Adventure", "genres_pipe": "|Action|Adventure|", "keywords": "mythology, zeus, ancient greece, demigod, city of argos, mistaken parentage", "tags_pipe": "|mythology|zeus|ancient greece|demigod|city of argos|mistaken parentage|", "overview": "In Ancient Greece 1200 B.C., a queen succumbs to the lust of Zeus to bear a son promised to overthrow the tyrannical rule of the king and restore peace to a land in hardship. But this prince, Hercules, knows nothing of his real identity or his destiny. He desires only one thing: the love of Hebe, Princess of Crete, who has been promised to his own brother. When Hercules learns of his greater purpose, he must choose: to flee with his true love or to fulfill his destiny and become the true hero of his time. The story behind one of the greatest myths is revealed in this action-packed epic - a tale of love, sacrifice and the strength of the human spirit.", "text_for_embedding": "The Legend of Hercules (2014). Genres: Action, Adventure. In Ancient Greece 1200 B.C., a queen succumbs to the lust of Zeus to bear a son promised to overthrow the tyrannical rule of the king and restore peace to a land in hardship. But this prince, Hercules, knows nothing of his real identity or his destiny. He desires only one thing: the love of Hebe, Princess of Crete, who has been promised to his own brother. When Hercules learns of his greater purpose, he must choose: to flee with his true love or to fulfill his destiny and become the true hero of his time. The story behind one of the greatest myths is revealed in this action-packed epic - a tale of love, sacrifice and the strength of the human spirit.. Tags: mythology, zeus, ancient greece, demigod, city of argos, mistaken parentage"} +{"id": "4614", "title": "The Sum of All Fears", "year": 2002, "duration_min": 124, "rating": 5.9, "genres": "Thriller, Action, Drama", "genres_pipe": "|Thriller|Action|Drama|", "keywords": "cia, terrorist, atomic bomb, cold war, nuclear explosion, jack ryan", "tags_pipe": "|cia|terrorist|atomic bomb|cold war|nuclear explosion|jack ryan|", "overview": "When the president of Russia suddenly dies, a man whose politics are virtually unknown succeeds him. The change in political leaders sparks paranoia among American CIA officials, so CIA director Bill Cabot recruits a young analyst to supply insight and advice on the situation. Then the unthinkable happens: a nuclear bomb explodes in a U.S. city, and America is quick to blame the Russians.", "text_for_embedding": "The Sum of All Fears (2002). Genres: Thriller, Action, Drama. When the president of Russia suddenly dies, a man whose politics are virtually unknown succeeds him. The change in political leaders sparks paranoia among American CIA officials, so CIA director Bill Cabot recruits a young analyst to supply insight and advice on the situation. Then the unthinkable happens: a nuclear bomb explodes in a U.S. city, and America is quick to blame the Russians.. Tags: cia, terrorist, atomic bomb, cold war, nuclear explosion, jack ryan"} +{"id": "24021", "title": "The Twilight Saga: Eclipse", "year": 2010, "duration_min": 124, "rating": 5.8, "genres": "Adventure, Fantasy, Drama, Romance", "genres_pipe": "|Adventure|Fantasy|Drama|Romance|", "keywords": "vampire, graduation, bite, immortality, werewolf, fang vamp", "tags_pipe": "|vampire|graduation|bite|immortality|werewolf|fang vamp|", "overview": "Bella once again finds herself surrounded by danger as Seattle is ravaged by a string of mysterious killings and a malicious vampire continues her quest for revenge. In the midst of it all, she is forced to choose between her love for Edward and her friendship with Jacob, knowing that her decision has the potential to ignite the ageless struggle between vampire and werewolf. With her graduation quickly approaching, Bella is confronted with the most important decision of her life.", "text_for_embedding": "The Twilight Saga: Eclipse (2010). Genres: Adventure, Fantasy, Drama, Romance. Bella once again finds herself surrounded by danger as Seattle is ravaged by a string of mysterious killings and a malicious vampire continues her quest for revenge. In the midst of it all, she is forced to choose between her love for Edward and her friendship with Jacob, knowing that her decision has the potential to ignite the ageless struggle between vampire and werewolf. With her graduation quickly approaching, Bella is confronted with the most important decision of her life.. Tags: vampire, graduation, bite, immortality, werewolf, fang vamp"} +{"id": "11371", "title": "The Score", "year": 2001, "duration_min": 124, "rating": 6.7, "genres": "Action, Crime, Thriller", "genres_pipe": "|Action|Crime|Thriller|", "keywords": "quebec, jewel, scepter, customs house, jewelry heist, blueprint, assumed identity, schematic, voice over, surveillance camera, one last job", "tags_pipe": "|quebec|jewel|scepter|customs house|jewelry heist|blueprint|assumed identity|schematic|voice over|surveillance camera|one last job|", "overview": "An aging thief hopes to retire and live off his ill-gotten wealth when a young kid convinces him into doing one last heist.", "text_for_embedding": "The Score (2001). Genres: Action, Crime, Thriller. An aging thief hopes to retire and live off his ill-gotten wealth when a young kid convinces him into doing one last heist.. Tags: quebec, jewel, scepter, customs house, jewelry heist, blueprint, assumed identity, schematic, voice over, surveillance camera, one last job"} +{"id": "20352", "title": "Despicable Me", "year": 2010, "duration_min": 95, "rating": 7.1, "genres": "Animation, Family", "genres_pipe": "|Animation|Family|", "keywords": "adoptive father, orphanage, life's dream, rivalry, stealing, ballet, little girl, orphan, father daughter relationship, tomboy, mother son relationship, intelligent, kids, evil doctor, duringcreditsstinger", "tags_pipe": "|adoptive father|orphanage|life's dream|rivalry|stealing|ballet|little girl|orphan|father daughter relationship|tomboy|mother son relationship|intelligent|kids|evil doctor|duringcreditsstinger|", "overview": "Villainous Gru lives up to his reputation as a despicable, deplorable and downright unlikable guy when he hatches a plan to steal the moon from the sky. But he has a tough time staying on task after three orphans land in his care.", "text_for_embedding": "Despicable Me (2010). Genres: Animation, Family. Villainous Gru lives up to his reputation as a despicable, deplorable and downright unlikable guy when he hatches a plan to steal the moon from the sky. But he has a tough time staying on task after three orphans land in his care.. Tags: adoptive father, orphanage, life's dream, rivalry, stealing, ballet, little girl, orphan, father daughter relationship, tomboy, mother son relationship, intelligent, kids, evil doctor, duringcreditsstinger"} +{"id": "11517", "title": "Money Train", "year": 1995, "duration_min": 103, "rating": 5.4, "genres": "Action, Comedy, Crime", "genres_pipe": "|Action|Comedy|Crime|", "keywords": "brother brother relationship, subway, new york city, new york subway, train robbery", "tags_pipe": "|brother brother relationship|subway|new york city|new york subway|train robbery|", "overview": "A vengeful New York transit cop decides to steal a trainload of subway fares; his foster brother, a fellow cop, tries to protect him.", "text_for_embedding": "Money Train (1995). Genres: Action, Comedy, Crime. A vengeful New York transit cop decides to steal a trainload of subway fares; his foster brother, a fellow cop, tries to protect him.. Tags: brother brother relationship, subway, new york city, new york subway, train robbery"} +{"id": "214756", "title": "Ted 2", "year": 2015, "duration_min": 115, "rating": 6.2, "genres": "Comedy", "genres_pipe": "|Comedy|", "keywords": "sperm bank, sequel, buddy, courthouse, teddy bear, aftercreditsstinger, toy comes to life, married", "tags_pipe": "|sperm bank|sequel|buddy|courthouse|teddy bear|aftercreditsstinger|toy comes to life|married|", "overview": "Newlywed couple Ted and Tami-Lynn want to have a baby, but in order to qualify to be a parent, Ted will have to prove he's a person in a court of law.", "text_for_embedding": "Ted 2 (2015). Genres: Comedy. Newlywed couple Ted and Tami-Lynn want to have a baby, but in order to qualify to be a parent, Ted will have to prove he's a person in a court of law.. Tags: sperm bank, sequel, buddy, courthouse, teddy bear, aftercreditsstinger, toy comes to life, married"} +{"id": "26428", "title": "Agora", "year": 2009, "duration_min": 127, "rating": 6.9, "genres": "Adventure, Drama, History", "genres_pipe": "|Adventure|Drama|History|", "keywords": "christianity, philosophy, egypt, new love, war, cult, historical figure, history, sword fight, ancient world, destiny, fall in love, hypatia, misogyny, persecution", "tags_pipe": "|christianity|philosophy|egypt|new love|war|cult|historical figure|history|sword fight|ancient world|destiny|fall in love|hypatia|misogyny|persecution|", "overview": "A historical drama set in Roman Egypt, concerning philosopher Hypatia of Alexandria and her relationship with her slave Davus, who is torn between his love for her and the possibility of gaining his freedom by joining the rising tide of Christianity.", "text_for_embedding": "Agora (2009). Genres: Adventure, Drama, History. A historical drama set in Roman Egypt, concerning philosopher Hypatia of Alexandria and her relationship with her slave Davus, who is torn between his love for her and the possibility of gaining his freedom by joining the rising tide of Christianity.. Tags: christianity, philosophy, egypt, new love, war, cult, historical figure, history, sword fight, ancient world, destiny, fall in love, hypatia, misogyny, persecution"} +{"id": "9824", "title": "Mystery Men", "year": 1999, "duration_min": 121, "rating": 5.7, "genres": "Adventure, Fantasy, Action, Comedy, Science Fiction", "genres_pipe": "|Adventure|Fantasy|Action|Comedy|Science Fiction|", "keywords": "bowling, hostage, sphinx, training, insane asylum, tools, frankenstein, casanova, superhero, based on comic book, independent film, comedy, spoof, skull, shovel", "tags_pipe": "|bowling|hostage|sphinx|training|insane asylum|tools|frankenstein|casanova|superhero|based on comic book|independent film|comedy|spoof|skull|shovel|", "overview": "When Captain Amazing (Kinnear) is kidnapped by Casanova Frankenstein (Rush) a group of superheroes combine together to create a plan. But these aren't normal superheroes. Now, the group who include such heroes as Mr. Furious (Stiller), The Shoveller (Macy) and The Blue Raja (Azaria) must put all the powers together to save everyone they know and love.", "text_for_embedding": "Mystery Men (1999). Genres: Adventure, Fantasy, Action, Comedy, Science Fiction. When Captain Amazing (Kinnear) is kidnapped by Casanova Frankenstein (Rush) a group of superheroes combine together to create a plan. But these aren't normal superheroes. Now, the group who include such heroes as Mr. Furious (Stiller), The Shoveller (Macy) and The Blue Raja (Azaria) must put all the powers together to save everyone they know and love.. Tags: bowling, hostage, sphinx, training, insane asylum, tools, frankenstein, casanova, superhero, based on comic book, independent film, comedy, spoof, skull, shovel"} +{"id": "48988", "title": "Hall Pass", "year": 2011, "duration_min": 105, "rating": 5.4, "genres": "Comedy", "genres_pipe": "|Comedy|", "keywords": "wife husband relationship, daydream, marriage, freedom, friends", "tags_pipe": "|wife husband relationship|daydream|marriage|freedom|friends|", "overview": "When best buds Rick and Fred begin to show signs of restlessness at home, their wives take a bold approach to revitalize their marriages: they grant the guys a \"hall pass\", one week of freedom to do whatever they want. At first, it seems like a dream come true, but they quickly discover that their expectations of the single life - and themselves - are completely and hilariously out of sync with reality.", "text_for_embedding": "Hall Pass (2011). Genres: Comedy. When best buds Rick and Fred begin to show signs of restlessness at home, their wives take a bold approach to revitalize their marriages: they grant the guys a \"hall pass\", one week of freedom to do whatever they want. At first, it seems like a dream come true, but they quickly discover that their expectations of the single life - and themselves - are completely and hilariously out of sync with reality.. Tags: wife husband relationship, daydream, marriage, freedom, friends"} +{"id": "9008", "title": "The Insider", "year": 1999, "duration_min": 157, "rating": 7.3, "genres": "Drama, Thriller", "genres_pipe": "|Drama|Thriller|", "keywords": "spy, newspaper, research, interview, tobacco, insider, conspiracy theory, reporter, whistleblower, columbia broadcasting system (cbs), tobacco industry", "tags_pipe": "|spy|newspaper|research|interview|tobacco|insider|conspiracy theory|reporter|whistleblower|columbia broadcasting system (cbs)|tobacco industry|", "overview": "Tells the true story of a 60 Minutes television series exposé of the tobacco industry, as seen through the eyes of a real tobacco executive, Jeffrey Wigand", "text_for_embedding": "The Insider (1999). Genres: Drama, Thriller. Tells the true story of a 60 Minutes television series exposé of the tobacco industry, as seen through the eyes of a real tobacco executive, Jeffrey Wigand. Tags: spy, newspaper, research, interview, tobacco, insider, conspiracy theory, reporter, whistleblower, columbia broadcasting system (cbs), tobacco industry"} +{"id": "300673", "title": "The Finest Hours", "year": 2016, "duration_min": 114, "rating": 6.3, "genres": "Action, Drama, History, Thriller", "genres_pipe": "|Action|Drama|History|Thriller|", "keywords": "coast guard, based on true story, survival, rescue mission, storm at sea, sinking ship, 1950s, 3d", "tags_pipe": "|coast guard|based on true story|survival|rescue mission|storm at sea|sinking ship|1950s|3d|", "overview": "The Coast Guard makes a daring rescue attempt off the coast of Cape Cod after a pair of oil tankers are destroyed during a blizzard in 1952.", "text_for_embedding": "The Finest Hours (2016). Genres: Action, Drama, History, Thriller. The Coast Guard makes a daring rescue attempt off the coast of Cape Cod after a pair of oil tankers are destroyed during a blizzard in 1952.. Tags: coast guard, based on true story, survival, rescue mission, storm at sea, sinking ship, 1950s, 3d"} +{"id": "12113", "title": "Body of Lies", "year": 2008, "duration_min": 128, "rating": 6.5, "genres": "Action, Drama, Thriller", "genres_pipe": "|Action|Drama|Thriller|", "keywords": "terror, falsely accused, based on novel, dying and death, jordan, dubai, intelligence agency, beating", "tags_pipe": "|terror|falsely accused|based on novel|dying and death|jordan|dubai|intelligence agency|beating|", "overview": "The CIA’s hunt is on for the mastermind of a wave of terrorist attacks. Roger Ferris is the agency’s man on the ground, moving from place to place, scrambling to stay ahead of ever-shifting events. An eye in the sky – a satellite link – watches Ferris. At the other end of that real-time link is the CIA’s Ed Hoffman, strategizing events from thousands of miles away. And as Ferris nears the target, he discovers trust can be just as dangerous as it is necessary for survival.", "text_for_embedding": "Body of Lies (2008). Genres: Action, Drama, Thriller. The CIA’s hunt is on for the mastermind of a wave of terrorist attacks. Roger Ferris is the agency’s man on the ground, moving from place to place, scrambling to stay ahead of ever-shifting events. An eye in the sky – a satellite link – watches Ferris. At the other end of that real-time link is the CIA’s Ed Hoffman, strategizing events from thousands of miles away. And as Ferris nears the target, he discovers trust can be just as dangerous as it is necessary for survival.. Tags: terror, falsely accused, based on novel, dying and death, jordan, dubai, intelligence agency, beating"} +{"id": "38778", "title": "Dinner for Schmucks", "year": 2010, "duration_min": 114, "rating": 5.5, "genres": "Comedy", "genres_pipe": "|Comedy|", "keywords": "mouse, idiot, mind control, taxidermy, aftercreditsstinger, duringcreditsstinger", "tags_pipe": "|mouse|idiot|mind control|taxidermy|aftercreditsstinger|duringcreditsstinger|", "overview": "Rising executive Tim Wagner works for a boss who hosts a monthly dinner in which the guest who brings the biggest buffoon gets a career-boost. Tim plans on not attending until he meets Barry, a man who builds dioramas using stuffed mice. Barry's blundering but good intentions send Tim's life into a downward spiral, threatening a major business deal and possibly scuttling Tim's engagement to his fiancee.", "text_for_embedding": "Dinner for Schmucks (2010). Genres: Comedy. Rising executive Tim Wagner works for a boss who hosts a monthly dinner in which the guest who brings the biggest buffoon gets a career-boost. Tim plans on not attending until he meets Barry, a man who builds dioramas using stuffed mice. Barry's blundering but good intentions send Tim's life into a downward spiral, threatening a major business deal and possibly scuttling Tim's engagement to his fiancee.. Tags: mouse, idiot, mind control, taxidermy, aftercreditsstinger, duringcreditsstinger"} +{"id": "72331", "title": "Abraham Lincoln: Vampire Hunter", "year": 2012, "duration_min": 94, "rating": 5.5, "genres": "Action, Fantasy, Horror", "genres_pipe": "|Action|Fantasy|Horror|", "keywords": "usa president, vampire, steam locomotive, american civil war, 19th century, abraham lincoln, 3d", "tags_pipe": "|usa president|vampire|steam locomotive|american civil war|19th century|abraham lincoln|3d|", "overview": "President Lincoln's mother is killed by a supernatural creature, which fuels his passion to crush vampires and their slave-owning helpers.", "text_for_embedding": "Abraham Lincoln: Vampire Hunter (2012). Genres: Action, Fantasy, Horror. President Lincoln's mother is killed by a supernatural creature, which fuels his passion to crush vampires and their slave-owning helpers.. Tags: usa president, vampire, steam locomotive, american civil war, 19th century, abraham lincoln, 3d"} +{"id": "1844", "title": "Entrapment", "year": 1999, "duration_min": 112, "rating": 6.0, "genres": "Romance, Drama, Mystery", "genres_pipe": "|Romance|Drama|Mystery|", "keywords": "london england, new year's eve, skyscraper, burglar, distrust, undercover, blackmail, nudity, thief, heist, older man younger woman relationship, art thief, criminal, art theft, millennium", "tags_pipe": "|london england|new year's eve|skyscraper|burglar|distrust|undercover|blackmail|nudity|thief|heist|older man younger woman relationship|art thief|criminal|art theft|millennium|", "overview": "Two thieves, who travel in elegant circles, try to outsmart each other and, in the process, end up falling in love.", "text_for_embedding": "Entrapment (1999). Genres: Romance, Drama, Mystery. Two thieves, who travel in elegant circles, try to outsmart each other and, in the process, end up falling in love.. Tags: london england, new year's eve, skyscraper, burglar, distrust, undercover, blackmail, nudity, thief, heist, older man younger woman relationship, art thief, criminal, art theft, millennium"} +{"id": "846", "title": "The X Files", "year": 1998, "duration_min": 121, "rating": 6.6, "genres": "Mystery, Science Fiction, Thriller", "genres_pipe": "|Mystery|Science Fiction|Thriller|", "keywords": "bomb, helicopter, secret, obsession, extraterrestrial technology, fbi, space marine, mutation, secret society, secret organization, secret lab, x-files, government", "tags_pipe": "|bomb|helicopter|secret|obsession|extraterrestrial technology|fbi|space marine|mutation|secret society|secret organization|secret lab|x-files|government|", "overview": "Mulder and Scully, now taken off the FBI's X Files cases, must find a way to fight the shadowy elements of the government to find out the truth about a conspiracy that might mean the alien colonization of Earth.", "text_for_embedding": "The X Files (1998). Genres: Mystery, Science Fiction, Thriller. Mulder and Scully, now taken off the FBI's X Files cases, must find a way to fight the shadowy elements of the government to find out the truth about a conspiracy that might mean the alien colonization of Earth.. Tags: bomb, helicopter, secret, obsession, extraterrestrial technology, fbi, space marine, mutation, secret society, secret organization, secret lab, x-files, government"} +{"id": "9703", "title": "The Last Legion", "year": 2007, "duration_min": 102, "rating": 5.0, "genres": "Action, Adventure, Fantasy, War", "genres_pipe": "|Action|Adventure|Fantasy|War|", "keywords": "roman empire, emperor, ancient rome, western roman empire, ancient world, julius caesar", "tags_pipe": "|roman empire|emperor|ancient rome|western roman empire|ancient world|julius caesar|", "overview": "As the Roman empire crumbles, young Romulus Augustus flees the city and embarks on a perilous voyage to Britain to track down a legion of supporters.", "text_for_embedding": "The Last Legion (2007). Genres: Action, Adventure, Fantasy, War. As the Roman empire crumbles, young Romulus Augustus flees the city and embarks on a perilous voyage to Britain to track down a legion of supporters.. Tags: roman empire, emperor, ancient rome, western roman empire, ancient world, julius caesar"} +{"id": "857", "title": "Saving Private Ryan", "year": 1998, "duration_min": 169, "rating": 7.9, "genres": "Drama, History, War", "genres_pipe": "|Drama|History|War|", "keywords": "war crimes, self sacrifice, war veteran, world war ii, war ship, airplane, bravery, normandy, parachute, troops, waffen ss, omaha beach, army, cowardice, american flag", "tags_pipe": "|war crimes|self sacrifice|war veteran|world war ii|war ship|airplane|bravery|normandy|parachute|troops|waffen ss|omaha beach|army|cowardice|american flag|", "overview": "As U.S. troops storm the beaches of Normandy, three brothers lie dead on the battlefield, with a fourth trapped behind enemy lines. Ranger captain John Miller and seven men are tasked with penetrating German-held territory and bringing the boy home.", "text_for_embedding": "Saving Private Ryan (1998). Genres: Drama, History, War. As U.S. troops storm the beaches of Normandy, three brothers lie dead on the battlefield, with a fourth trapped behind enemy lines. Ranger captain John Miller and seven men are tasked with penetrating German-held territory and bringing the boy home.. Tags: war crimes, self sacrifice, war veteran, world war ii, war ship, airplane, bravery, normandy, parachute, troops, waffen ss, omaha beach, army, cowardice, american flag"} +{"id": "136797", "title": "Need for Speed", "year": 2014, "duration_min": 130, "rating": 6.1, "genres": "Action, Crime, Drama, Thriller", "genres_pipe": "|Action|Crime|Drama|Thriller|", "keywords": "street race, super cars, super speed, car, based on video game, duringcreditsstinger, 3d", "tags_pipe": "|street race|super cars|super speed|car|based on video game|duringcreditsstinger|3d|", "overview": "The film revolves around a local street-racer who partners with a rich and arrogant business associate, only to find himself framed by his colleague and sent to prison. After he gets out, he joins a New York-to-Los Angeles race to get revenge. But when the ex-partner learns of the scheme, he puts a massive bounty on the racer's head, forcing him to run a cross-country gauntlet of illegal racers in all manner of supercharged vehicles.", "text_for_embedding": "Need for Speed (2014). Genres: Action, Crime, Drama, Thriller. The film revolves around a local street-racer who partners with a rich and arrogant business associate, only to find himself framed by his colleague and sent to prison. After he gets out, he joins a New York-to-Los Angeles race to get revenge. But when the ex-partner learns of the scheme, he puts a massive bounty on the racer's head, forcing him to run a cross-country gauntlet of illegal racers in all manner of supercharged vehicles.. Tags: street race, super cars, super speed, car, based on video game, duringcreditsstinger, 3d"} +{"id": "3981", "title": "What Women Want", "year": 2000, "duration_min": 127, "rating": 6.1, "genres": "Comedy, Romance", "genres_pipe": "|Comedy|Romance|", "keywords": "women, telepathy, supernatural powers, advertising executive, woman director", "tags_pipe": "|women|telepathy|supernatural powers|advertising executive|woman director|", "overview": "Advertising executive Nick Marshall is as cocky as they come, but what happens to a chauvinistic guy when he can suddenly hear what women are thinking? Nick gets passed over for a promotion, but after an accident enables him to hear women's thoughts, he puts his newfound talent to work against Darcy, his new boss, who seems to be infatuated with him.", "text_for_embedding": "What Women Want (2000). Genres: Comedy, Romance. Advertising executive Nick Marshall is as cocky as they come, but what happens to a chauvinistic guy when he can suddenly hear what women are thinking? Nick gets passed over for a promotion, but after an accident enables him to hear women's thoughts, he puts his newfound talent to work against Darcy, his new boss, who seems to be infatuated with him.. Tags: women, telepathy, supernatural powers, advertising executive, woman director"} +{"id": "425", "title": "Ice Age", "year": 2002, "duration_min": 81, "rating": 7.1, "genres": "Animation, Comedy, Family, Adventure", "genres_pipe": "|Animation|Comedy|Family|Adventure|", "keywords": "human evolution, parents kids relationship, squirrel, ice, loss of child, mammoth, sloth, dying and death, stone age, prehistoric, saber-toothed tiger, cavemen, prehistoric creature, prehistoric adventure, prehistoric times", "tags_pipe": "|human evolution|parents kids relationship|squirrel|ice|loss of child|mammoth|sloth|dying and death|stone age|prehistoric|saber-toothed tiger|cavemen|prehistoric creature|prehistoric adventure|prehistoric times|", "overview": "With the impending ice age almost upon them, a mismatched trio of prehistoric critters – Manny the woolly mammoth, Diego the saber-toothed tiger and Sid the giant sloth – find an orphaned infant and decide to return it to its human parents. Along the way, the unlikely allies become friends but, when enemies attack, their quest takes on far nobler aims.", "text_for_embedding": "Ice Age (2002). Genres: Animation, Comedy, Family, Adventure. With the impending ice age almost upon them, a mismatched trio of prehistoric critters – Manny the woolly mammoth, Diego the saber-toothed tiger and Sid the giant sloth – find an orphaned infant and decide to return it to its human parents. Along the way, the unlikely allies become friends but, when enemies attack, their quest takes on far nobler aims.. Tags: human evolution, parents kids relationship, squirrel, ice, loss of child, mammoth, sloth, dying and death, stone age, prehistoric, saber-toothed tiger, cavemen, prehistoric creature, prehistoric adventure, prehistoric times"} +{"id": "6171", "title": "Dreamcatcher", "year": 2003, "duration_min": 136, "rating": 5.3, "genres": "Drama, Horror, Science Fiction, Thriller", "genres_pipe": "|Drama|Horror|Science Fiction|Thriller|", "keywords": "religion and supernatural", "tags_pipe": "|religion and supernatural|", "overview": "Four boyhood pals perform a heroic act and are changed by the powers they gain in return. Years later, on a hunting trip in the Maine woods, they're overtaken by a vicious blizzard that harbors an ominous presence. Challenged to stop an alien force, the friends must first prevent the slaughter of innocent civilians by a military vigilante ... and then overcome a threat to the bond that unites the four of them.", "text_for_embedding": "Dreamcatcher (2003). Genres: Drama, Horror, Science Fiction, Thriller. Four boyhood pals perform a heroic act and are changed by the powers they gain in return. Years later, on a hunting trip in the Maine woods, they're overtaken by a vicious blizzard that harbors an ominous presence. Challenged to stop an alien force, the friends must first prevent the slaughter of innocent civilians by a military vigilante ... and then overcome a threat to the bond that unites the four of them.. Tags: religion and supernatural"} +{"id": "72976", "title": "Lincoln", "year": 2012, "duration_min": 149, "rating": 6.7, "genres": "History, Drama", "genres_pipe": "|History|Drama|", "keywords": "usa president, speech, battlefield, family conflict, mourning, american civil war, cultural conflict, based on true events, battle of gettysburg, secession, presidential cabinet, gettysburg address, conflagration, ethical dilemma, emancipation", "tags_pipe": "|usa president|speech|battlefield|family conflict|mourning|american civil war|cultural conflict|based on true events|battle of gettysburg|secession|presidential cabinet|gettysburg address|conflagration|ethical dilemma|emancipation|", "overview": "A revealing drama that focuses on the 16th President's tumultuous final months in office. In a nation divided by war and the strong winds of change, Lincoln pursues a course of action designed to end the war, unite the country and abolish slavery. With the moral courage and fierce determination to succeed, his choices during this critical moment will change the fate of generations to come.", "text_for_embedding": "Lincoln (2012). Genres: History, Drama. A revealing drama that focuses on the 16th President's tumultuous final months in office. In a nation divided by war and the strong winds of change, Lincoln pursues a course of action designed to end the war, unite the country and abolish slavery. With the moral courage and fierce determination to succeed, his choices during this critical moment will change the fate of generations to come.. Tags: usa president, speech, battlefield, family conflict, mourning, american civil war, cultural conflict, based on true events, battle of gettysburg, secession, presidential cabinet, gettysburg address, conflagration, ethical dilemma, emancipation"} +{"id": "603", "title": "The Matrix", "year": 1999, "duration_min": 136, "rating": 7.9, "genres": "Action, Science Fiction", "genres_pipe": "|Action|Science Fiction|", "keywords": "saving the world, artificial intelligence, man vs machine, philosophy, prophecy, martial arts, self sacrifice, fight, insurgence, virtual reality, dystopia, truth, cyberpunk, woman director, messiah", "tags_pipe": "|saving the world|artificial intelligence|man vs machine|philosophy|prophecy|martial arts|self sacrifice|fight|insurgence|virtual reality|dystopia|truth|cyberpunk|woman director|messiah|", "overview": "Set in the 22nd century, The Matrix tells the story of a computer hacker who joins a group of underground insurgents fighting the vast and powerful computers who now rule the earth.", "text_for_embedding": "The Matrix (1999). Genres: Action, Science Fiction. Set in the 22nd century, The Matrix tells the story of a computer hacker who joins a group of underground insurgents fighting the vast and powerful computers who now rule the earth.. Tags: saving the world, artificial intelligence, man vs machine, philosophy, prophecy, martial arts, self sacrifice, fight, insurgence, virtual reality, dystopia, truth, cyberpunk, woman director, messiah"} +{"id": "568", "title": "Apollo 13", "year": 1995, "duration_min": 140, "rating": 7.3, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "moon, florida, nasa, spaceman, race against time, houston, based on true story, space, rescue, survival, disaster, explosion, astronaut, imax, saturn v rocket", "tags_pipe": "|moon|florida|nasa|spaceman|race against time|houston|based on true story|space|rescue|survival|disaster|explosion|astronaut|imax|saturn v rocket|", "overview": "The true story of technical troubles that scuttle the Apollo 13 lunar mission in 1971, risking the lives of astronaut Jim Lovell and his crew, with the failed journey turning into a thrilling saga of heroism. Drifting more than 200,000 miles from Earth, the astronauts work furiously with the ground crew to avert tragedy.", "text_for_embedding": "Apollo 13 (1995). Genres: Drama. The true story of technical troubles that scuttle the Apollo 13 lunar mission in 1971, risking the lives of astronaut Jim Lovell and his crew, with the failed journey turning into a thrilling saga of heroism. Drifting more than 200,000 miles from Earth, the astronauts work furiously with the ground crew to avert tragedy.. Tags: moon, florida, nasa, spaceman, race against time, houston, based on true story, space, rescue, survival, disaster, explosion, astronaut, imax, saturn v rocket"} +{"id": "9021", "title": "The Santa Clause 2", "year": 2002, "duration_min": 104, "rating": 5.5, "genres": "Fantasy, Comedy, Family", "genres_pipe": "|Fantasy|Comedy|Family|", "keywords": "holiday, christmas party, home, santa claus, magic, toy, wish, son, sequel, saving christmas, christmas", "tags_pipe": "|holiday|christmas party|home|santa claus|magic|toy|wish|son|sequel|saving christmas|christmas|", "overview": "Better watch out! The big guy in red is coming to town once again. This time, Scott Calvin -- also known as Santa Claus -- finds out there's an obscure clause in his contract requiring him to take on a wife. He has to leave the North Pole to fulfill his obligations, or else he'll be forced to give up his Yuletide gig.", "text_for_embedding": "The Santa Clause 2 (2002). Genres: Fantasy, Comedy, Family. Better watch out! The big guy in red is coming to town once again. This time, Scott Calvin -- also known as Santa Claus -- finds out there's an obscure clause in his contract requiring him to take on a wife. He has to leave the North Pole to fulfill his obligations, or else he'll be forced to give up his Yuletide gig.. Tags: holiday, christmas party, home, santa claus, magic, toy, wish, son, sequel, saving christmas, christmas"} +{"id": "82695", "title": "Les Misérables", "year": 2012, "duration_min": 157, "rating": 7.1, "genres": "Drama, Music, Romance", "genres_pipe": "|Drama|Music|Romance|", "keywords": "france, robbery, brothel, mayor, star, musical, arrest, army, rebellion, wedding, falling in love, corpse, parole, convict, girl disguised as boy", "tags_pipe": "|france|robbery|brothel|mayor|star|musical|arrest|army|rebellion|wedding|falling in love|corpse|parole|convict|girl disguised as boy|", "overview": "An adaptation of the successful stage musical based on Victor Hugo's classic novel set in 19th-century France, in which a paroled prisoner named Jean Valjean seeks redemption.", "text_for_embedding": "Les Misérables (2012). Genres: Drama, Music, Romance. An adaptation of the successful stage musical based on Victor Hugo's classic novel set in 19th-century France, in which a paroled prisoner named Jean Valjean seeks redemption.. Tags: france, robbery, brothel, mayor, star, musical, arrest, army, rebellion, wedding, falling in love, corpse, parole, convict, girl disguised as boy"} +{"id": "9489", "title": "You've Got Mail", "year": 1998, "duration_min": 119, "rating": 6.3, "genres": "Comedy, Romance", "genres_pipe": "|Comedy|Romance|", "keywords": "romantic comedy, online dating, woman director", "tags_pipe": "|romantic comedy|online dating|woman director|", "overview": "Book superstore magnate, Joe Fox and independent book shop owner, Kathleen Kelly fall in love in the anonymity of the Internet – both blissfully unaware that he's putting her out of business.", "text_for_embedding": "You've Got Mail (1998). Genres: Comedy, Romance. Book superstore magnate, Joe Fox and independent book shop owner, Kathleen Kelly fall in love in the anonymity of the Internet – both blissfully unaware that he's putting her out of business.. Tags: romantic comedy, online dating, woman director"} +{"id": "12133", "title": "Step Brothers", "year": 2008, "duration_min": 98, "rating": 6.5, "genres": "Comedy", "genres_pipe": "|Comedy|", "keywords": "becoming an adult, autonomy, childhood trauma, hostility, step brother, slacker, man child, aftercreditsstinger, duringcreditsstinger", "tags_pipe": "|becoming an adult|autonomy|childhood trauma|hostility|step brother|slacker|man child|aftercreditsstinger|duringcreditsstinger|", "overview": "Brennan Huff and Dale Doback might be grown men. But that doesn't stop them from living at home and turning into jealous, competitive stepbrothers when their single parents marry. Brennan's constant competition with Dale strains his mom's marriage to Dale's dad, leaving everyone to wonder whether they'll ever see eye to eye.", "text_for_embedding": "Step Brothers (2008). Genres: Comedy. Brennan Huff and Dale Doback might be grown men. But that doesn't stop them from living at home and turning into jealous, competitive stepbrothers when their single parents marry. Brennan's constant competition with Dale strains his mom's marriage to Dale's dad, leaving everyone to wonder whether they'll ever see eye to eye.. Tags: becoming an adult, autonomy, childhood trauma, hostility, step brother, slacker, man child, aftercreditsstinger, duringcreditsstinger"} +{"id": "9342", "title": "The Mask of Zorro", "year": 1998, "duration_min": 136, "rating": 6.3, "genres": "Action, Adventure", "genres_pipe": "|Action|Adventure|", "keywords": "california, spy, hero, horseback riding, sword fight, revenge", "tags_pipe": "|california|spy|hero|horseback riding|sword fight|revenge|", "overview": "It has been twenty years since Don Diego de la Vega fought Spanish oppression in Alta California as the legendary romantic hero, Zorro. Having escaped from prison he transforms troubled bandit Alejandro into his successor, in order to foil the plans of the tyrannical Don Rafael Montero who robbed him of his freedom, his wife and his precious daughter.", "text_for_embedding": "The Mask of Zorro (1998). Genres: Action, Adventure. It has been twenty years since Don Diego de la Vega fought Spanish oppression in Alta California as the legendary romantic hero, Zorro. Having escaped from prison he transforms troubled bandit Alejandro into his successor, in order to foil the plans of the tyrannical Don Rafael Montero who robbed him of his freedom, his wife and his precious daughter.. Tags: california, spy, hero, horseback riding, sword fight, revenge"} +{"id": "41733", "title": "Due Date", "year": 2010, "duration_min": 95, "rating": 6.2, "genres": "Comedy, Drama", "genres_pipe": "|Comedy|Drama|", "keywords": "highway, slacker, hitchhiker, wallet, sunglasses, rest stop, vicodin, waffle", "tags_pipe": "|highway|slacker|hitchhiker|wallet|sunglasses|rest stop|vicodin|waffle|", "overview": "Peter Highman must scramble across the US in five days to be present for the birth of his first child. He gets off to a bad start when his wallet and luggage are stolen, and put on the 'no-fly' list. Peter embarks on a terrifying journey when he accepts a ride from an actor.", "text_for_embedding": "Due Date (2010). Genres: Comedy, Drama. Peter Highman must scramble across the US in five days to be present for the birth of his first child. He gets off to a bad start when his wallet and luggage are stolen, and put on the 'no-fly' list. Peter embarks on a terrifying journey when he accepts a ride from an actor.. Tags: highway, slacker, hitchhiker, wallet, sunglasses, rest stop, vicodin, waffle"} +{"id": "227306", "title": "Unbroken", "year": 2014, "duration_min": 137, "rating": 7.3, "genres": "Drama, War", "genres_pipe": "|Drama|War|", "keywords": "world war ii, prisoners of war, biography, sport, war, athlete, woman director, olympic athlete", "tags_pipe": "|world war ii|prisoners of war|biography|sport|war|athlete|woman director|olympic athlete|", "overview": "A chronicle of the life of Louis Zamperini, an Olympic runner who was taken prisoner by Japanese forces during World War II.", "text_for_embedding": "Unbroken (2014). Genres: Drama, War. A chronicle of the life of Louis Zamperini, an Olympic runner who was taken prisoner by Japanese forces during World War II.. Tags: world war ii, prisoners of war, biography, sport, war, athlete, woman director, olympic athlete"} +{"id": "5551", "title": "Space Cowboys", "year": 2000, "duration_min": 130, "rating": 6.3, "genres": "Action, Adventure, Thriller", "genres_pipe": "|Action|Adventure|Thriller|", "keywords": "nasa, space travel, astronaut, elderly", "tags_pipe": "|nasa|space travel|astronaut|elderly|", "overview": "Frank Corvin, ‘Hawk’ Hawkins, Jerry O'Neill and ‘Tank’ Sullivan were hotdog members of Project Daedalus, the Air Force's test program for space travel, but their hopes were dashed in 1958 with the formation of NASA and the use of trained chimps. They blackmail their way into orbit when Russia's mysterious ‘Ikon’ communications satellite's orbit begins to degrade and threatens to crash to Earth.", "text_for_embedding": "Space Cowboys (2000). Genres: Action, Adventure, Thriller. Frank Corvin, ‘Hawk’ Hawkins, Jerry O'Neill and ‘Tank’ Sullivan were hotdog members of Project Daedalus, the Air Force's test program for space travel, but their hopes were dashed in 1958 with the formation of NASA and the use of trained chimps. They blackmail their way into orbit when Russia's mysterious ‘Ikon’ communications satellite's orbit begins to degrade and threatens to crash to Earth.. Tags: nasa, space travel, astronaut, elderly"} +{"id": "9350", "title": "Cliffhanger", "year": 1993, "duration_min": 112, "rating": 6.1, "genres": "Action, Adventure, Thriller", "genres_pipe": "|Action|Adventure|Thriller|", "keywords": "rocky mountains, airplane, hijacking, suitcase, climbing, heist, money, snow, mountain climbing, mountain", "tags_pipe": "|rocky mountains|airplane|hijacking|suitcase|climbing|heist|money|snow|mountain climbing|mountain|", "overview": "A year after losing his friend in a tragic 4,000-foot fall, former ranger Gabe Walker and his partner, Hal, are called to return to the same peak to rescue a group of stranded climbers, only to learn the climbers are actually thieving hijackers who are looking for boxes full of money.", "text_for_embedding": "Cliffhanger (1993). Genres: Action, Adventure, Thriller. A year after losing his friend in a tragic 4,000-foot fall, former ranger Gabe Walker and his partner, Hal, are called to return to the same peak to rescue a group of stranded climbers, only to learn the climbers are actually thieving hijackers who are looking for boxes full of money.. Tags: rocky mountains, airplane, hijacking, suitcase, climbing, heist, money, snow, mountain climbing, mountain"} +{"id": "9208", "title": "Broken Arrow", "year": 1996, "duration_min": 108, "rating": 5.7, "genres": "Action, Adventure, Drama, Thriller", "genres_pipe": "|Action|Adventure|Drama|Thriller|", "keywords": "helicopter, river, captain, underground, mexican standoff, countdown, pilot, fistfight, canyon, major, betrayal, gunfight, train, explosion, park ranger", "tags_pipe": "|helicopter|river|captain|underground|mexican standoff|countdown|pilot|fistfight|canyon|major|betrayal|gunfight|train|explosion|park ranger|", "overview": "When rogue stealth-fighter pilot Vic Deakins deliberately drops off the radar while on maneuvers, the Air Force ends up with two stolen nuclear warheads -- and Deakins's co-pilot, Riley Hale, is the military's only hope for getting them back. Traversing the deserted canyons of Utah, Hale teams with park ranger Terry Carmichael to put Deakins back in his box.", "text_for_embedding": "Broken Arrow (1996). Genres: Action, Adventure, Drama, Thriller. When rogue stealth-fighter pilot Vic Deakins deliberately drops off the radar while on maneuvers, the Air Force ends up with two stolen nuclear warheads -- and Deakins's co-pilot, Riley Hale, is the military's only hope for getting them back. Traversing the deserted canyons of Utah, Hale teams with park ranger Terry Carmichael to put Deakins back in his box.. Tags: helicopter, river, captain, underground, mexican standoff, countdown, pilot, fistfight, canyon, major, betrayal, gunfight, train, explosion, park ranger"} +{"id": "4244", "title": "The Kid", "year": 2000, "duration_min": 104, "rating": 6.0, "genres": "Fantasy, Comedy, Family", "genres_pipe": "|Fantasy|Comedy|Family|", "keywords": "age difference, midlife crisis, suppressed past, self-awareness, childhood memory, humor, changing the past or future", "tags_pipe": "|age difference|midlife crisis|suppressed past|self-awareness|childhood memory|humor|changing the past or future|", "overview": "Powerful businessman Russ Duritz is self-absorbed and immersed in his work. But by the magic of the moon, he meets Rusty, a chubby, charming 8-year-old version of himself who can't believe he could turn out so badly -- with no life and no dog. With Rusty's help, Russ is able to reconcile the person he used to dream of being with the man he's actually become.", "text_for_embedding": "The Kid (2000). Genres: Fantasy, Comedy, Family. Powerful businessman Russ Duritz is self-absorbed and immersed in his work. But by the magic of the moon, he meets Rusty, a chubby, charming 8-year-old version of himself who can't believe he could turn out so badly -- with no life and no dog. With Rusty's help, Russ is able to reconcile the person he used to dream of being with the man he's actually become.. Tags: age difference, midlife crisis, suppressed past, self-awareness, childhood memory, humor, changing the past or future"} +{"id": "1852", "title": "World Trade Center", "year": 2006, "duration_min": 128, "rating": 5.9, "genres": "Drama, History, Thriller", "genres_pipe": "|Drama|History|Thriller|", "keywords": "terror, runaway, alarm clock, hero, firemen, fire engine, war on terror, rescue, marine, hospital, trapped, rubble, rescue team", "tags_pipe": "|terror|runaway|alarm clock|hero|firemen|fire engine|war on terror|rescue|marine|hospital|trapped|rubble|rescue team|", "overview": "On September, 11th 2001, after the terrorist attack to the World Trade Center, the building collapses over the rescue team from the Port Authority Police Department. Will Jimeno and his sergeant John McLoughlin are found alive trapped under the wreckage while the rescue teams fight to save them.", "text_for_embedding": "World Trade Center (2006). Genres: Drama, History, Thriller. On September, 11th 2001, after the terrorist attack to the World Trade Center, the building collapses over the rescue team from the Port Authority Police Department. Will Jimeno and his sergeant John McLoughlin are found alive trapped under the wreckage while the rescue teams fight to save them.. Tags: terror, runaway, alarm clock, hero, firemen, fire engine, war on terror, rescue, marine, hospital, trapped, rubble, rescue team"} +{"id": "11820", "title": "Mona Lisa Smile", "year": 2003, "duration_min": 117, "rating": 6.5, "genres": "Drama, Romance", "genres_pipe": "|Drama|Romance|", "keywords": "faculty, art history, rowing, school nurse, femininity, teacher hero, womens issues", "tags_pipe": "|faculty|art history|rowing|school nurse|femininity|teacher hero|womens issues|", "overview": "The story of Katherine Ann Watson, a feminist teacher who studied at UCLA graduate school and in 1953 left her boyfriend behind in Los Angeles, California to teach at Wellesley College, a conservative women's private liberal arts college in Massachusetts, United States.", "text_for_embedding": "Mona Lisa Smile (2003). Genres: Drama, Romance. The story of Katherine Ann Watson, a feminist teacher who studied at UCLA graduate school and in 1953 left her boyfriend behind in Los Angeles, California to teach at Wellesley College, a conservative women's private liberal arts college in Massachusetts, United States.. Tags: faculty, art history, rowing, school nurse, femininity, teacher hero, womens issues"} +{"id": "76493", "title": "The Dictator", "year": 2012, "duration_min": 83, "rating": 5.9, "genres": "Comedy", "genres_pipe": "|Comedy|", "keywords": "kurdish", "tags_pipe": "|kurdish|", "overview": "The heroic story of a dictator who risks his life to ensure that democracy would never come to the country he so lovingly oppressed.", "text_for_embedding": "The Dictator (2012). Genres: Comedy. The heroic story of a dictator who risks his life to ensure that democracy would never come to the country he so lovingly oppressed.. Tags: kurdish"} +{"id": "345", "title": "Eyes Wide Shut", "year": 1999, "duration_min": 159, "rating": 7.1, "genres": "Mystery, Drama", "genres_pipe": "|Mystery|Drama|", "keywords": "life and death, sexual obsession, free love, heterosexual, christmas party, eroticism, orgy, masked ball, marijuana, illegal prostitution", "tags_pipe": "|life and death|sexual obsession|free love|heterosexual|christmas party|eroticism|orgy|masked ball|marijuana|illegal prostitution|", "overview": "After Dr. Bill Hartford's wife, Alice, admits to having sexual fantasies about a man she met, Bill becomes obsessed with having a sexual encounter. He discovers an underground sexual group and attends one of their meetings -- and quickly discovers that he is in over his head.", "text_for_embedding": "Eyes Wide Shut (1999). Genres: Mystery, Drama. After Dr. Bill Hartford's wife, Alice, admits to having sexual fantasies about a man she met, Bill becomes obsessed with having a sexual encounter. He discovers an underground sexual group and attends one of their meetings -- and quickly discovers that he is in over his head.. Tags: life and death, sexual obsession, free love, heterosexual, christmas party, eroticism, orgy, masked ball, marijuana, illegal prostitution"} +{"id": "196867", "title": "Annie", "year": 2014, "duration_min": 119, "rating": 6.0, "genres": "Comedy, Drama, Family", "genres_pipe": "|Comedy|Drama|Family|", "keywords": "musical, orphan, foster child", "tags_pipe": "|musical|orphan|foster child|", "overview": "Ever since her parents left her as a baby, little Annie has led a hard-knock life with her calculating foster mother, Miss Hannigan. However, all that changes when hard-nosed billionaire and mayoral candidate Will Stacks takes her in on the recommendation of his advisers. Stacks believes that he's Annie's guardian angel, but the plucky youngster's confidence and sunny outlook may mean that Annie will save Will instead.", "text_for_embedding": "Annie (2014). Genres: Comedy, Drama, Family. Ever since her parents left her as a baby, little Annie has led a hard-knock life with her calculating foster mother, Miss Hannigan. However, all that changes when hard-nosed billionaire and mayoral candidate Will Stacks takes her in on the recommendation of his advisers. Stacks believes that he's Annie's guardian angel, but the plucky youngster's confidence and sunny outlook may mean that Annie will save Will instead.. Tags: musical, orphan, foster child"} +{"id": "256591", "title": "Focus", "year": 2015, "duration_min": 105, "rating": 6.7, "genres": "Romance, Comedy, Crime, Drama", "genres_pipe": "|Romance|Comedy|Crime|Drama|", "keywords": "seduction, con man, femme fatale, deception, rivalry, con artist", "tags_pipe": "|seduction|con man|femme fatale|deception|rivalry|con artist|", "overview": "Nicky, a veteran con artist, takes a novice named Jess under his wing. While Nicky teaches Jess the tricks of the trade, the pair become romantically involved; but, when Jess gets uncomfortably close, Nicky ends their relationship. Three years later, Nicky is in Buenos Aires working a very dangerous scheme when Jess -- now an accomplished femme fatale -- unexpectedly shows up. Her appearance throws Nicky for a loop at a time when he cannot afford to be off his game.", "text_for_embedding": "Focus (2015). Genres: Romance, Comedy, Crime, Drama. Nicky, a veteran con artist, takes a novice named Jess under his wing. While Nicky teaches Jess the tricks of the trade, the pair become romantically involved; but, when Jess gets uncomfortably close, Nicky ends their relationship. Three years later, Nicky is in Buenos Aires working a very dangerous scheme when Jess -- now an accomplished femme fatale -- unexpectedly shows up. Her appearance throws Nicky for a loop at a time when he cannot afford to be off his game.. Tags: seduction, con man, femme fatale, deception, rivalry, con artist"} +{"id": "59962", "title": "This Means War", "year": 2012, "duration_min": 103, "rating": 5.9, "genres": "Action, Comedy, Romance", "genres_pipe": "|Action|Comedy|Romance|", "keywords": "love triangle, friendship, dating, sushi bar, exploding airplane, online dating, stable, karate class, dog shelter", "tags_pipe": "|love triangle|friendship|dating|sushi bar|exploding airplane|online dating|stable|karate class|dog shelter|", "overview": "Two top CIA operatives wage an epic battle against one another after they discover they are dating the same woman.", "text_for_embedding": "This Means War (2012). Genres: Action, Comedy, Romance. Two top CIA operatives wage an epic battle against one another after they discover they are dating the same woman.. Tags: love triangle, friendship, dating, sushi bar, exploding airplane, online dating, stable, karate class, dog shelter"} +{"id": "36648", "title": "Blade: Trinity", "year": 2004, "duration_min": 123, "rating": 5.7, "genres": "Science Fiction, Action, Horror, Thriller, Adventure, Fantasy", "genres_pipe": "|Science Fiction|Action|Horror|Thriller|Adventure|Fantasy|", "keywords": "fbi, dracula, fistfight, vampire hunter, superhero, based on comic book, martial arts master, motorcycle, katana sword, blade, loss of friend, super villain, vampire slayer, fast motion scene, female vampire", "tags_pipe": "|fbi|dracula|fistfight|vampire hunter|superhero|based on comic book|martial arts master|motorcycle|katana sword|blade|loss of friend|super villain|vampire slayer|fast motion scene|female vampire|", "overview": "For years, Blade has fought against the vampires in the cover of the night. But now, after falling into the crosshairs of the FBI, he is forced out into the daylight, where he is driven to join forces with a clan of human vampire hunters he never knew existed - The Nightstalkers. Together with Abigail and Hannibal, two deftly trained Nightstalkers, Blade follows a trail of blood to the ancient creature that is also hunting him, the original vampire, Dracula.", "text_for_embedding": "Blade: Trinity (2004). Genres: Science Fiction, Action, Horror, Thriller, Adventure, Fantasy. For years, Blade has fought against the vampires in the cover of the night. But now, after falling into the crosshairs of the FBI, he is forced out into the daylight, where he is driven to join forces with a clan of human vampire hunters he never knew existed - The Nightstalkers. Together with Abigail and Hannibal, two deftly trained Nightstalkers, Blade follows a trail of blood to the ancient creature that is also hunting him, the original vampire, Dracula.. Tags: fbi, dracula, fistfight, vampire hunter, superhero, based on comic book, martial arts master, motorcycle, katana sword, blade, loss of friend, super villain, vampire slayer, fast motion scene, female vampire"} +{"id": "1880", "title": "Red Dawn", "year": 1984, "duration_min": 114, "rating": 6.4, "genres": "Action, Thriller", "genres_pipe": "|Action|Thriller|", "keywords": "guerrilla, colorado, invasion, anti-communism, near future, red army", "tags_pipe": "|guerrilla|colorado|invasion|anti-communism|near future|red army|", "overview": "It is the mid-1980s. From out of the sky, Soviet and Cuban troops begin landing on the football field of a Colorado high school. In seconds, the paratroops have attacked the school and sent a group of teenagers fleeing into the mountains. Armed only with hunting rifles, pistols and bows and arrows, the teens struggles to survive the bitter winter and Soviet KGB patrols hunting for them.", "text_for_embedding": "Red Dawn (1984). Genres: Action, Thriller. It is the mid-1980s. From out of the sky, Soviet and Cuban troops begin landing on the football field of a Colorado high school. In seconds, the paratroops have attacked the school and sent a group of teenagers fleeing into the mountains. Armed only with hunting rifles, pistols and bows and arrows, the teens struggles to survive the bitter winter and Soviet KGB patrols hunting for them.. Tags: guerrilla, colorado, invasion, anti-communism, near future, red army"} +{"id": "9440", "title": "Primary Colors", "year": 1998, "duration_min": 143, "rating": 6.1, "genres": "Comedy, Drama", "genres_pipe": "|Comedy|Drama|", "keywords": "white house, usa president, presidential election, scandal, george w. bush, extramarital affair", "tags_pipe": "|white house|usa president|presidential election|scandal|george w. bush|extramarital affair|", "overview": "In this adaptation of the best-selling roman à clef about Bill Clinton's 1992 run for the White House, the young and gifted Henry Burton is tapped to oversee the presidential campaign of Governor Jack Stanton. Burton is pulled into the politician's colorful world and looks on as Stanton -- who has a wandering eye that could be his downfall -- contends with his ambitious wife, Susan, and an outspoken adviser, Richard Jemmons.", "text_for_embedding": "Primary Colors (1998). Genres: Comedy, Drama. In this adaptation of the best-selling roman à clef about Bill Clinton's 1992 run for the White House, the young and gifted Henry Burton is tapped to oversee the presidential campaign of Governor Jack Stanton. Burton is pulled into the politician's colorful world and looks on as Stanton -- who has a wandering eye that could be his downfall -- contends with his ambitious wife, Susan, and an outspoken adviser, Richard Jemmons.. Tags: white house, usa president, presidential election, scandal, george w. bush, extramarital affair"} +{"id": "71679", "title": "Resident Evil: Retribution", "year": 2012, "duration_min": 95, "rating": 5.6, "genres": "Action, Horror, Science Fiction", "genres_pipe": "|Action|Horror|Science Fiction|", "keywords": "mutant, dystopia, sequel, conspiracy, tokyo japan, zombie, based on video game, moscow, hand to hand combat, virus, plague, pandemic, mega corporation", "tags_pipe": "|mutant|dystopia|sequel|conspiracy|tokyo japan|zombie|based on video game|moscow|hand to hand combat|virus|plague|pandemic|mega corporation|", "overview": "The Umbrella Corporation’s deadly T-virus continues to ravage the Earth, transforming the global population into legions of the flesh eating Undead. The human race’s last and only hope, Alice, awakens in the heart of Umbrella’s most clandestine operations facility and unveils more of her mysterious past as she delves further into the complex. Without a safe haven, Alice continues to hunt those responsible for the outbreak; a chase that takes her from Tokyo to New York, Washington, D.C. and Moscow, culminating in a mind-blowing revelation that will force her to rethink everything that she once thought to be true. Aided by new found allies and familiar friends, Alice must fight to survive long enough to escape a hostile world on the brink of oblivion. The countdown has begun.", "text_for_embedding": "Resident Evil: Retribution (2012). Genres: Action, Horror, Science Fiction. The Umbrella Corporation’s deadly T-virus continues to ravage the Earth, transforming the global population into legions of the flesh eating Undead. The human race’s last and only hope, Alice, awakens in the heart of Umbrella’s most clandestine operations facility and unveils more of her mysterious past as she delves further into the complex. Without a safe haven, Alice continues to hunt those responsible for the outbreak; a chase that takes her from Tokyo to New York, Washington, D.C. and Moscow, culminating in a mind-blowing revelation that will force her to rethink everything that she once thought to be true. Aided by new found allies and familiar friends, Alice must fight to survive long enough to escape a hostile world on the brink of oblivion. The countdown has begun.. Tags: mutant, dystopia, sequel, conspiracy, tokyo japan, zombie, based on video game, moscow, hand to hand combat, virus, plague, pandemic, mega corporation"} +{"id": "10483", "title": "Death Race", "year": 2008, "duration_min": 105, "rating": 6.0, "genres": "Action, Thriller, Science Fiction", "genres_pipe": "|Action|Thriller|Science Fiction|", "keywords": "car race, dystopia, matter of life and death, prison guard, car set on fire, escape from prison, exploding building, vehicle combat, car crash, violence", "tags_pipe": "|car race|dystopia|matter of life and death|prison guard|car set on fire|escape from prison|exploding building|vehicle combat|car crash|violence|", "overview": "Terminal Island, New York: 2020. Overcrowding in the US penal system has reached a breaking point. Prisons have been turned over to a monolithic Weyland Corporation, which sees jails full of thugs as an opportunity for televised sport. Adrenalized inmates, a global audience hungry for violence and a spectacular, enclosed arena come together to form the 'Death Race', the biggest, most brutal event.", "text_for_embedding": "Death Race (2008). Genres: Action, Thriller, Science Fiction. Terminal Island, New York: 2020. Overcrowding in the US penal system has reached a breaking point. Prisons have been turned over to a monolithic Weyland Corporation, which sees jails full of thugs as an opportunity for televised sport. Adrenalized inmates, a global audience hungry for violence and a spectacular, enclosed arena come together to form the 'Death Race', the biggest, most brutal event.. Tags: car race, dystopia, matter of life and death, prison guard, car set on fire, escape from prison, exploding building, vehicle combat, car crash, violence"} +{"id": "11412", "title": "The Long Kiss Goodnight", "year": 1996, "duration_min": 120, "rating": 6.5, "genres": "Crime, Action, Mystery, Thriller", "genres_pipe": "|Crime|Action|Mystery|Thriller|", "keywords": "assassination, amnesia, hostage, chase, dark comedy, teacher, escape, single mother, timebomb, candlelight vigil, rogue agent, street shootout, ex cia agent, christmas parade", "tags_pipe": "|assassination|amnesia|hostage|chase|dark comedy|teacher|escape|single mother|timebomb|candlelight vigil|rogue agent|street shootout|ex cia agent|christmas parade|", "overview": "Samantha Caine, suburban homemaker, is the ideal mom to her 8 year old daughter Caitlin. She lives in Honesdale, PA, has a job teaching school and makes the best Rice Krispie treats in town. But when she receives a bump on her head, she begins to remember small parts of her previous life as a lethal, top-secret agent", "text_for_embedding": "The Long Kiss Goodnight (1996). Genres: Crime, Action, Mystery, Thriller. Samantha Caine, suburban homemaker, is the ideal mom to her 8 year old daughter Caitlin. She lives in Honesdale, PA, has a job teaching school and makes the best Rice Krispie treats in town. But when she receives a bump on her head, she begins to remember small parts of her previous life as a lethal, top-secret agent. Tags: assassination, amnesia, hostage, chase, dark comedy, teacher, escape, single mother, timebomb, candlelight vigil, rogue agent, street shootout, ex cia agent, christmas parade"} +{"id": "11983", "title": "Proof of Life", "year": 2000, "duration_min": 135, "rating": 6.0, "genres": "Action, Adventure, Drama, Romance, Thriller", "genres_pipe": "|Action|Adventure|Drama|Romance|Thriller|", "keywords": "hostage, new love, suspense, agent", "tags_pipe": "|hostage|new love|suspense|agent|", "overview": "Alice hires a professional negotiator to obtain the release of her engineer husband, who has been kidnapped by anti-government guerrillas in South America.", "text_for_embedding": "Proof of Life (2000). Genres: Action, Adventure, Drama, Romance, Thriller. Alice hires a professional negotiator to obtain the release of her engineer husband, who has been kidnapped by anti-government guerrillas in South America.. Tags: hostage, new love, suspense, agent"} +{"id": "6795", "title": "Zathura: A Space Adventure", "year": 2005, "duration_min": 101, "rating": 6.1, "genres": "Family, Fantasy, Science Fiction, Adventure", "genres_pipe": "|Family|Fantasy|Science Fiction|Adventure|", "keywords": "adventure, house, alien, giant robot, outer space, astronaut", "tags_pipe": "|adventure|house|alien|giant robot|outer space|astronaut|", "overview": "After their father is called into work, two young boys, Walter and Danny, are left in the care of their teenage sister, Lisa, and told they must stay inside. Walter and Danny, who anticipate a boring day, are shocked when they begin playing Zathura, a space-themed board game, which they realize has mystical powers when their house is shot into space. With the help of an astronaut, the boys attempt to return home.", "text_for_embedding": "Zathura: A Space Adventure (2005). Genres: Family, Fantasy, Science Fiction, Adventure. After their father is called into work, two young boys, Walter and Danny, are left in the care of their teenage sister, Lisa, and told they must stay inside. Walter and Danny, who anticipate a boring day, are shocked when they begin playing Zathura, a space-themed board game, which they realize has mystical powers when their house is shot into space. With the help of an astronaut, the boys attempt to return home.. Tags: adventure, house, alien, giant robot, outer space, astronaut"} +{"id": "550", "title": "Fight Club", "year": 1999, "duration_min": 139, "rating": 8.3, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "support group, dual identity, nihilism, rage and hate, insomnia, dystopia, violence", "tags_pipe": "|support group|dual identity|nihilism|rage and hate|insomnia|dystopia|violence|", "overview": "A ticking-time-bomb insomniac and a slippery soap salesman channel primal male aggression into a shocking new form of therapy. Their concept catches on, with underground \"fight clubs\" forming in every town, until an eccentric gets in the way and ignites an out-of-control spiral toward oblivion.", "text_for_embedding": "Fight Club (1999). Genres: Drama. A ticking-time-bomb insomniac and a slippery soap salesman channel primal male aggression into a shocking new form of therapy. Their concept catches on, with underground \"fight clubs\" forming in every town, until an eccentric gets in the way and ignites an out-of-control spiral toward oblivion.. Tags: support group, dual identity, nihilism, rage and hate, insomnia, dystopia, violence"} +{"id": "11170", "title": "We Are Marshall", "year": 2006, "duration_min": 124, "rating": 6.7, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "american football, 1970s, trainer, college, sport", "tags_pipe": "|american football|1970s|trainer|college|sport|", "overview": "When a plane crash claims the lives of members of the Marshall University football team and some of its fans, the team's new coach and his surviving players try to keep the football program alive.", "text_for_embedding": "We Are Marshall (2006). Genres: Drama. When a plane crash claims the lives of members of the Marshall University football team and some of its fans, the team's new coach and his surviving players try to keep the football program alive.. Tags: american football, 1970s, trainer, college, sport"} +{"id": "9292", "title": "Hudson Hawk", "year": 1991, "duration_min": 100, "rating": 5.4, "genres": "Action, Adventure, Comedy", "genres_pipe": "|Action|Adventure|Comedy|", "keywords": "vatican, leonardo da vinci, painting, master thief", "tags_pipe": "|vatican|leonardo da vinci|painting|master thief|", "overview": "Eddie Hawkins, called Hudson Hawk has just been released from ten years of prison and is planning to spend the rest of his life honestly. But then the crazy Mayflower couple blackmail him to steal some of the works of Leonardo da Vinci. If he refuses, they threaten to kill his friend Tommy.", "text_for_embedding": "Hudson Hawk (1991). Genres: Action, Adventure, Comedy. Eddie Hawkins, called Hudson Hawk has just been released from ten years of prison and is planning to spend the rest of his life honestly. But then the crazy Mayflower couple blackmail him to steal some of the works of Leonardo da Vinci. If he refuses, they threaten to kill his friend Tommy.. Tags: vatican, leonardo da vinci, painting, master thief"} +{"id": "10783", "title": "Lucky Numbers", "year": 2000, "duration_min": 105, "rating": 4.9, "genres": "Action, Adventure, Comedy, Crime, Romance, Thriller", "genres_pipe": "|Action|Adventure|Comedy|Crime|Romance|Thriller|", "keywords": "weather forecast, tv station, weather, lottery, wettermann, debt, woman director", "tags_pipe": "|weather forecast|tv station|weather|lottery|wettermann|debt|woman director|", "overview": "Russ Richards is a TV weatherman and local celebrity on the verge of losing his shirt. Desperate to escape financial ruin, he schemes with Crystal the TV station's lotto ball girl to rig the state lottery drawing. The numbers come up right, but everything else goes wrong as the plan starts to unravel and the game turns rough.", "text_for_embedding": "Lucky Numbers (2000). Genres: Action, Adventure, Comedy, Crime, Romance, Thriller. Russ Richards is a TV weatherman and local celebrity on the verge of losing his shirt. Desperate to escape financial ruin, he schemes with Crystal the TV station's lotto ball girl to rig the state lottery drawing. The numbers come up right, but everything else goes wrong as the plan starts to unravel and the game turns rough.. Tags: weather forecast, tv station, weather, lottery, wettermann, debt, woman director"} +{"id": "100241", "title": "I, Frankenstein", "year": 2014, "duration_min": 92, "rating": 5.0, "genres": "Horror, Thriller", "genres_pipe": "|Horror|Thriller|", "keywords": "soul, queen, anti hero, fantasy, prince, supernatural, frankenstein, good vs evil, gargoyles, fighting, demon, dark, imax, 3d", "tags_pipe": "|soul|queen|anti hero|fantasy|prince|supernatural|frankenstein|good vs evil|gargoyles|fighting|demon|dark|imax|3d|", "overview": "200 years after his shocking creation, Dr. Frankenstein's creature, Adam, still walks the earth. But when he finds himself in the middle of a war over the fate of humanity, Adam discovers he holds the key that could destroy humankind.", "text_for_embedding": "I, Frankenstein (2014). Genres: Horror, Thriller. 200 years after his shocking creation, Dr. Frankenstein's creature, Adam, still walks the earth. But when he finds himself in the middle of a war over the fate of humanity, Adam discovers he holds the key that could destroy humankind.. Tags: soul, queen, anti hero, fantasy, prince, supernatural, frankenstein, good vs evil, gargoyles, fighting, demon, dark, imax, 3d"} +{"id": "257", "title": "Oliver Twist", "year": 2005, "duration_min": 130, "rating": 6.7, "genres": "Crime, Drama, Family", "genres_pipe": "|Crime|Drama|Family|", "keywords": "london england, child abuse, street gang, runaway, child labour, children's home, orphanage, thief, violence, good and bad, child", "tags_pipe": "|london england|child abuse|street gang|runaway|child labour|children's home|orphanage|thief|violence|good and bad|child|", "overview": "Oliver Twist the modern filmed version of Charles Dickens bestseller, a Roman Polanski adaptation. The classic Dickens tale, where an orphan meets a pickpocket on the streets of London. From there, he joins a household of boys who are trained to steal for their master.", "text_for_embedding": "Oliver Twist (2005). Genres: Crime, Drama, Family. Oliver Twist the modern filmed version of Charles Dickens bestseller, a Roman Polanski adaptation. The classic Dickens tale, where an orphan meets a pickpocket on the streets of London. From there, he joins a household of boys who are trained to steal for their master.. Tags: london england, child abuse, street gang, runaway, child labour, children's home, orphanage, thief, violence, good and bad, child"} +{"id": "9947", "title": "Elektra", "year": 2005, "duration_min": 97, "rating": 4.8, "genres": "Action, Fantasy", "genres_pipe": "|Action|Fantasy|", "keywords": "martial arts, based on comic book, female assassin, spin off", "tags_pipe": "|martial arts|based on comic book|female assassin|spin off|", "overview": "Elektra the warrior survives a near-death experience, becomes an assassin-for-hire, and tries to protect her two latest targets, a single father and his young daughter, from a group of supernatural assassins.", "text_for_embedding": "Elektra (2005). Genres: Action, Fantasy. Elektra the warrior survives a near-death experience, becomes an assassin-for-hire, and tries to protect her two latest targets, a single father and his young daughter, from a group of supernatural assassins.. Tags: martial arts, based on comic book, female assassin, spin off"} +{"id": "189", "title": "Sin City: A Dame to Kill For", "year": 2014, "duration_min": 102, "rating": 6.3, "genres": "Crime, Thriller", "genres_pipe": "|Crime|Thriller|", "keywords": "detective, dystopia, dominatrix, murder, suspense, twins, based on graphic novel, dark horse comics, neo-noir, 3d", "tags_pipe": "|detective|dystopia|dominatrix|murder|suspense|twins|based on graphic novel|dark horse comics|neo-noir|3d|", "overview": "Some of Sin City's most hard-boiled citizens cross paths with a few of its more reviled inhabitants.", "text_for_embedding": "Sin City: A Dame to Kill For (2014). Genres: Crime, Thriller. Some of Sin City's most hard-boiled citizens cross paths with a few of its more reviled inhabitants.. Tags: detective, dystopia, dominatrix, murder, suspense, twins, based on graphic novel, dark horse comics, neo-noir, 3d"} +{"id": "12618", "title": "Random Hearts", "year": 1999, "duration_min": 133, "rating": 5.3, "genres": "Drama, Romance", "genres_pipe": "|Drama|Romance|", "keywords": "infidelity, politician, airplane crash, death, death of husband, police sergeant, death of wife", "tags_pipe": "|infidelity|politician|airplane crash|death|death of husband|police sergeant|death of wife|", "overview": "After the death of their loved ones in a tragic plane crash 'Harrison Ford' and Kristin Scott Thomas find each others keys in each others loved ones posessions and realize that they were having an affair and must figure out all the details. Written by Andy HeitzThe wife of Police Sergeant Dutch Van Den Broek and the husband of politician Kay Chandler are killed in a plane crash. Now Dutch discovers some anomalies in what he told her before she left and discovers that she and Chandler's husband were travelling together. Dutch then goes to Chandler and tells her that he suspects that they were having an affair. He tells her that he wants to know the truth; she tells him that she doesn't but she later joins him and they grow close.", "text_for_embedding": "Random Hearts (1999). Genres: Drama, Romance. After the death of their loved ones in a tragic plane crash 'Harrison Ford' and Kristin Scott Thomas find each others keys in each others loved ones posessions and realize that they were having an affair and must figure out all the details. Written by Andy HeitzThe wife of Police Sergeant Dutch Van Den Broek and the husband of politician Kay Chandler are killed in a plane crash. Now Dutch discovers some anomalies in what he told her before she left and discovers that she and Chandler's husband were travelling together. Dutch then goes to Chandler and tells her that he suspects that they were having an affair. He tells her that he wants to know the truth; she tells him that she doesn't but she later joins him and they grow close.. Tags: infidelity, politician, airplane crash, death, death of husband, police sergeant, death of wife"} +{"id": "253412", "title": "Everest", "year": 2015, "duration_min": 121, "rating": 6.7, "genres": "Adventure, Drama", "genres_pipe": "|Adventure|Drama|", "keywords": "mountains, snow storm, hiking, climbing, snow, death, blizzard, mountain climbing, based on true events, mount everest, 3d", "tags_pipe": "|mountains|snow storm|hiking|climbing|snow|death|blizzard|mountain climbing|based on true events|mount everest|3d|", "overview": "Inspired by the incredible events surrounding a treacherous attempt to reach the summit of the world's highest mountain, \"Everest\" documents the awe-inspiring journey of two different expeditions challenged beyond their limits by one of the fiercest snowstorms ever encountered by mankind. Their mettle tested by the harshest of elements found on the planet, the climbers will face nearly impossible obstacles as a lifelong obsession becomes a breathtaking struggle for survival.", "text_for_embedding": "Everest (2015). Genres: Adventure, Drama. Inspired by the incredible events surrounding a treacherous attempt to reach the summit of the world's highest mountain, \"Everest\" documents the awe-inspiring journey of two different expeditions challenged beyond their limits by one of the fiercest snowstorms ever encountered by mankind. Their mettle tested by the harshest of elements found on the planet, the climbers will face nearly impossible obstacles as a lifelong obsession becomes a breathtaking struggle for survival.. Tags: mountains, snow storm, hiking, climbing, snow, death, blizzard, mountain climbing, based on true events, mount everest, 3d"} +{"id": "1427", "title": "Perfume: The Story of a Murderer", "year": 2006, "duration_min": 147, "rating": 7.1, "genres": "Crime, Fantasy, Drama", "genres_pipe": "|Crime|Fantasy|Drama|", "keywords": "paris, female nudity, prostitute, small town, obsession, orgy, bad smell, nudity, lone wolf, lavender, nose, child prodigy, fish market, daughter, supernatural", "tags_pipe": "|paris|female nudity|prostitute|small town|obsession|orgy|bad smell|nudity|lone wolf|lavender|nose|child prodigy|fish market|daughter|supernatural|", "overview": "Jean-Baptiste Grenouille, born in the stench of 18th century Paris, develops a superior olfactory sense, which he uses to create the world's finest perfumes. However, his work takes a dark turn as he tries to preserve scents in the search for the ultimate perfume.", "text_for_embedding": "Perfume: The Story of a Murderer (2006). Genres: Crime, Fantasy, Drama. Jean-Baptiste Grenouille, born in the stench of 18th century Paris, develops a superior olfactory sense, which he uses to create the world's finest perfumes. However, his work takes a dark turn as he tries to preserve scents in the search for the ultimate perfume.. Tags: paris, female nudity, prostitute, small town, obsession, orgy, bad smell, nudity, lone wolf, lavender, nose, child prodigy, fish market, daughter, supernatural"} +{"id": "818", "title": "Austin Powers in Goldmember", "year": 2002, "duration_min": 94, "rating": 5.9, "genres": "Comedy, Crime, Science Fiction", "genres_pipe": "|Comedy|Crime|Science Fiction|", "keywords": "saving the world, submarine, brother brother relationship, clone, spy, helicopter, gold, submachine gun, asteroid, undercover, belgium, dutch, car journey, nightclub, laser", "tags_pipe": "|saving the world|submarine|brother brother relationship|clone|spy|helicopter|gold|submachine gun|asteroid|undercover|belgium|dutch|car journey|nightclub|laser|", "overview": "The world's most shagadelic spy continues his fight against Dr. Evil. This time, the diabolical doctor and his clone, Mini-Me, team up with a new foe -- '70s kingpin Goldmember. While pursuing the team of villains to stop them from world domination, Austin gets help from his dad and an old girlfriend.", "text_for_embedding": "Austin Powers in Goldmember (2002). Genres: Comedy, Crime, Science Fiction. The world's most shagadelic spy continues his fight against Dr. Evil. This time, the diabolical doctor and his clone, Mini-Me, team up with a new foe -- '70s kingpin Goldmember. While pursuing the team of villains to stop them from world domination, Austin gets help from his dad and an old girlfriend.. Tags: saving the world, submarine, brother brother relationship, clone, spy, helicopter, gold, submachine gun, asteroid, undercover, belgium, dutch, car journey, nightclub, laser"} +{"id": "16577", "title": "Astro Boy", "year": 2009, "duration_min": 94, "rating": 6.1, "genres": "Animation, Action, Family, Science Fiction", "genres_pipe": "|Animation|Action|Family|Science Fiction|", "keywords": "superhero", "tags_pipe": "|superhero|", "overview": "Set in futuristic Metro City, Astro Boy is about a young robot with incredible powers created by a brilliant scientist in the image of the son he has lost. Unable to fulfill the grieving man's expectations, our hero embarks on a journey in search of acceptance, experiencing betrayal and a netherworld of robot gladiators, before he returns to save Metro City and reconcile with the father who had rejected him.", "text_for_embedding": "Astro Boy (2009). Genres: Animation, Action, Family, Science Fiction. Set in futuristic Metro City, Astro Boy is about a young robot with incredible powers created by a brilliant scientist in the image of the son he has lost. Unable to fulfill the grieving man's expectations, our hero embarks on a journey in search of acceptance, experiencing betrayal and a netherworld of robot gladiators, before he returns to save Metro City and reconcile with the father who had rejected him.. Tags: superhero"} +{"id": "329", "title": "Jurassic Park", "year": 1993, "duration_min": 127, "rating": 7.6, "genres": "Adventure, Science Fiction", "genres_pipe": "|Adventure|Science Fiction|", "keywords": "exotic island, dna, paleontology, tyrannosaurus rex, triceratops, brontosaurus, electric fence, island, dinosaur, amusement park, theme park, jurassic park", "tags_pipe": "|exotic island|dna|paleontology|tyrannosaurus rex|triceratops|brontosaurus|electric fence|island|dinosaur|amusement park|theme park|jurassic park|", "overview": "A wealthy entrepreneur secretly creates a theme park featuring living dinosaurs drawn from prehistoric DNA. Before opening day, he invites a team of experts and his two eager grandchildren to experience the park and help calm anxious investors. However, the park is anything but amusing as the security systems go off-line and the dinosaurs escape.", "text_for_embedding": "Jurassic Park (1993). Genres: Adventure, Science Fiction. A wealthy entrepreneur secretly creates a theme park featuring living dinosaurs drawn from prehistoric DNA. Before opening day, he invites a team of experts and his two eager grandchildren to experience the park and help calm anxious investors. However, the park is anything but amusing as the security systems go off-line and the dinosaurs escape.. Tags: exotic island, dna, paleontology, tyrannosaurus rex, triceratops, brontosaurus, electric fence, island, dinosaur, amusement park, theme park, jurassic park"} +{"id": "12160", "title": "Wyatt Earp", "year": 1994, "duration_min": 191, "rating": 6.5, "genres": "Drama, Action, Western", "genres_pipe": "|Drama|Action|Western|", "keywords": "gunslinger, gambling, sheriff, deputy sheriff, wretch, wyatt earp, historical figure, doc holliday", "tags_pipe": "|gunslinger|gambling|sheriff|deputy sheriff|wretch|wyatt earp|historical figure|doc holliday|", "overview": "Covering the life and times of one of the West's most iconic heroes Wyatt Earp weaves an intricate tale of Earp and his friends and family. With a star studded cast, sweeping cinematography and authentic costumes Wyatt Earp led the way during the Western revival in the 90's.", "text_for_embedding": "Wyatt Earp (1994). Genres: Drama, Action, Western. Covering the life and times of one of the West's most iconic heroes Wyatt Earp weaves an intricate tale of Earp and his friends and family. With a star studded cast, sweeping cinematography and authentic costumes Wyatt Earp led the way during the Western revival in the 90's.. Tags: gunslinger, gambling, sheriff, deputy sheriff, wretch, wyatt earp, historical figure, doc holliday"} +{"id": "9331", "title": "Clear and Present Danger", "year": 1994, "duration_min": 141, "rating": 6.4, "genres": "Action, Drama, Thriller", "genres_pipe": "|Action|Drama|Thriller|", "keywords": "assassination, spy, ambush, cia, helicopter, based on novel, usa president, sniper, fbi, colombia, drug traffic, bomber, mission of murder, mercenary, insurgence", "tags_pipe": "|assassination|spy|ambush|cia|helicopter|based on novel|usa president|sniper|fbi|colombia|drug traffic|bomber|mission of murder|mercenary|insurgence|", "overview": "CIA Analyst Jack Ryan is drawn into an illegal war fought by the US government against a Colombian drug cartel.", "text_for_embedding": "Clear and Present Danger (1994). Genres: Action, Drama, Thriller. CIA Analyst Jack Ryan is drawn into an illegal war fought by the US government against a Colombian drug cartel.. Tags: assassination, spy, ambush, cia, helicopter, based on novel, usa president, sniper, fbi, colombia, drug traffic, bomber, mission of murder, mercenary, insurgence"} +{"id": "300168", "title": "Dragon Blade", "year": 2015, "duration_min": 127, "rating": 5.9, "genres": "Action, Drama, Adventure", "genres_pipe": "|Action|Drama|Adventure|", "keywords": "", "tags_pipe": "", "overview": "Huo An, the commander of the Protection Squad of the Western Regions, was framed by evil forces and becomes enslaved. On the other hand, a Roman general escapes to China after rescuing the Prince. The heroic duo meet in the Western Desert and a thrilling story unfolds.", "text_for_embedding": "Dragon Blade (2015). Genres: Action, Drama, Adventure. Huo An, the commander of the Protection Squad of the Western Regions, was framed by evil forces and becomes enslaved. On the other hand, a Roman general escapes to China after rescuing the Prince. The heroic duo meet in the Western Desert and a thrilling story unfolds.. Tags: "} +{"id": "9072", "title": "Little Man", "year": 2006, "duration_min": 98, "rating": 5.3, "genres": "Comedy, Crime", "genres_pipe": "|Comedy|Crime|", "keywords": "baby, adoption, married couple, small person, criminal", "tags_pipe": "|baby|adoption|married couple|small person|criminal|", "overview": "After leaving the prison, the dwarf criminal Calvin Sims joins to his moron brother Percy to steal an expensive huge diamond in a jewelry for the mobster Walken. They are chased by the police, and Calvin hides the stone in the purse of the executive Vanessa Edwards, whose husband Darryl Edwards wants to have a baby. Percy convinces Calvin to dress like a baby and be left in front of the Edwards's house to get inside the house and retrieve the diamond. Darryl and Vanessa keep Calvin for the weekend and decide to adopt him, while Walken threatens Darryl to get the stone back.", "text_for_embedding": "Little Man (2006). Genres: Comedy, Crime. After leaving the prison, the dwarf criminal Calvin Sims joins to his moron brother Percy to steal an expensive huge diamond in a jewelry for the mobster Walken. They are chased by the police, and Calvin hides the stone in the purse of the executive Vanessa Edwards, whose husband Darryl Edwards wants to have a baby. Percy convinces Calvin to dress like a baby and be left in front of the Edwards's house to get inside the house and retrieve the diamond. Darryl and Vanessa keep Calvin for the weekend and decide to adopt him, while Walken threatens Darryl to get the stone back.. Tags: baby, adoption, married couple, small person, criminal"} +{"id": "3536", "title": "U-571", "year": 2000, "duration_min": 116, "rating": 6.1, "genres": "Action, Drama, Thriller, War", "genres_pipe": "|Action|Drama|Thriller|War|", "keywords": "submarine, world war ii, north atlantic, mission", "tags_pipe": "|submarine|world war ii|north atlantic|mission|", "overview": "In the midst of World War II, the battle under the sea rages and the Nazis have the upper hand as the Allies are unable to crack their war codes. However, after a wrecked U-boat sends out an SOS signal, the Allies realise this is their chance to seize the 'enigma coding machine'.", "text_for_embedding": "U-571 (2000). Genres: Action, Drama, Thriller, War. In the midst of World War II, the battle under the sea rages and the Nazis have the upper hand as the Allies are unable to crack their war codes. However, after a wrecked U-boat sends out an SOS signal, the Allies realise this is their chance to seize the 'enigma coding machine'.. Tags: submarine, world war ii, north atlantic, mission"} +{"id": "9087", "title": "The American President", "year": 1995, "duration_min": 106, "rating": 6.5, "genres": "Comedy, Drama, Romance", "genres_pipe": "|Comedy|Drama|Romance|", "keywords": "white house, usa president, new love, widower, wildlife conservation", "tags_pipe": "|white house|usa president|new love|widower|wildlife conservation|", "overview": "Widowed U.S. president Andrew Shepherd, one of the world's most powerful men, can have anything he wants -- and what he covets most is Sydney Ellen Wade, a Washington lobbyist. But Shepherd's attempts at courting her spark wild rumors and decimate his approval ratings.", "text_for_embedding": "The American President (1995). Genres: Comedy, Drama, Romance. Widowed U.S. president Andrew Shepherd, one of the world's most powerful men, can have anything he wants -- and what he covets most is Sydney Ellen Wade, a Washington lobbyist. But Shepherd's attempts at courting her spark wild rumors and decimate his approval ratings.. Tags: white house, usa president, new love, widower, wildlife conservation"} +{"id": "12177", "title": "The Love Guru", "year": 2008, "duration_min": 87, "rating": 4.3, "genres": "Comedy, Romance", "genres_pipe": "|Comedy|Romance|", "keywords": "sport, ice hockey, guru, comedy, bollywood, india, spiritualist, broken heart, self-help, stanley cup, chastity, ashram, expert", "tags_pipe": "|sport|ice hockey|guru|comedy|bollywood|india|spiritualist|broken heart|self-help|stanley cup|chastity|ashram|expert|", "overview": "Born in America and raised in an Indian ashram, Pitka returns to his native land to seek his fortune as a spiritualist and self-help expert. His skills are put to the test when he must get a brokenhearted hockey player's marriage back on track in time for the man to help his team win the Stanley Cup.", "text_for_embedding": "The Love Guru (2008). Genres: Comedy, Romance. Born in America and raised in an Indian ashram, Pitka returns to his native land to seek his fortune as a spiritualist and self-help expert. His skills are put to the test when he must get a brokenhearted hockey player's marriage back on track in time for the man to help his team win the Stanley Cup.. Tags: sport, ice hockey, guru, comedy, bollywood, india, spiritualist, broken heart, self-help, stanley cup, chastity, ashram, expert"} +{"id": "12138", "title": "3000 Miles to Graceland", "year": 2001, "duration_min": 125, "rating": 5.8, "genres": "Action, Adventure, Comedy, Thriller, Crime", "genres_pipe": "|Action|Adventure|Comedy|Thriller|Crime|", "keywords": "casino, submachine gun, hold-up robbery, elvis, reference to elvis presley, duringcreditsstinger", "tags_pipe": "|casino|submachine gun|hold-up robbery|elvis|reference to elvis presley|duringcreditsstinger|", "overview": "It was an ingenious enough plan: rob the Riviera Casino's count room during an Elvis impersonator convention. But Thomas Murphy decided to keep all the money for himself and shot all his partners, including recently-freed ex-con Michael Zane. With $3.2 million at stake, the Marshals Service closing in, Michael must track down Murphy.", "text_for_embedding": "3000 Miles to Graceland (2001). Genres: Action, Adventure, Comedy, Thriller, Crime. It was an ingenious enough plan: rob the Riviera Casino's count room during an Elvis impersonator convention. But Thomas Murphy decided to keep all the money for himself and shot all his partners, including recently-freed ex-con Michael Zane. With $3.2 million at stake, the Marshals Service closing in, Michael must track down Murphy.. Tags: casino, submachine gun, hold-up robbery, elvis, reference to elvis presley, duringcreditsstinger"} +{"id": "273248", "title": "The Hateful Eight", "year": 2015, "duration_min": 167, "rating": 7.6, "genres": "Crime, Drama, Mystery, Western", "genres_pipe": "|Crime|Drama|Mystery|Western|", "keywords": "bounty hunter, wyoming, mountains, narration, hangman, stagecoach, blizzard, post civil war", "tags_pipe": "|bounty hunter|wyoming|mountains|narration|hangman|stagecoach|blizzard|post civil war|", "overview": "Bounty hunters seek shelter from a raging blizzard and get caught up in a plot of betrayal and deception.", "text_for_embedding": "The Hateful Eight (2015). Genres: Crime, Drama, Mystery, Western. Bounty hunters seek shelter from a raging blizzard and get caught up in a plot of betrayal and deception.. Tags: bounty hunter, wyoming, mountains, narration, hangman, stagecoach, blizzard, post civil war"} +{"id": "9955", "title": "Blades of Glory", "year": 2007, "duration_min": 93, "rating": 5.9, "genres": "Action, Comedy, Drama", "genres_pipe": "|Action|Comedy|Drama|", "keywords": "competition, olympic games, sport, rivalry, ice skating", "tags_pipe": "|competition|olympic games|sport|rivalry|ice skating|", "overview": "When a much-publicized ice-skating scandal strips them of their gold medals, two world-class athletes skirt their way back onto the ice via a loophole that allows them to compete together as a pairs team.", "text_for_embedding": "Blades of Glory (2007). Genres: Action, Comedy, Drama. When a much-publicized ice-skating scandal strips them of their gold medals, two world-class athletes skirt their way back onto the ice via a loophole that allows them to compete together as a pairs team.. Tags: competition, olympic games, sport, rivalry, ice skating"} +{"id": "50359", "title": "Hop", "year": 2011, "duration_min": 95, "rating": 5.5, "genres": "Animation, Comedy, Family", "genres_pipe": "|Animation|Comedy|Family|", "keywords": "coup d'etat, slacker, easter, easter bunny, aftercreditsstinger, live action and animation", "tags_pipe": "|coup d'etat|slacker|easter|easter bunny|aftercreditsstinger|live action and animation|", "overview": "E.B., the Easter Bunny's teenage son, heads to Hollywood, determined to become a drummer in a rock 'n' roll band. In LA, he's taken in by Fred after the out-of-work slacker hits E.B. with his car.", "text_for_embedding": "Hop (2011). Genres: Animation, Comedy, Family. E.B., the Easter Bunny's teenage son, heads to Hollywood, determined to become a drummer in a rock 'n' roll band. In LA, he's taken in by Fred after the out-of-work slacker hits E.B. with his car.. Tags: coup d'etat, slacker, easter, easter bunny, aftercreditsstinger, live action and animation"} +{"id": "1271", "title": "300", "year": 2006, "duration_min": 117, "rating": 7.0, "genres": "Action, Adventure, War", "genres_pipe": "|Action|Adventure|War|", "keywords": "evisceration, javelin, shield, army, fall from height, ancient world, s.a.t., minions", "tags_pipe": "|evisceration|javelin|shield|army|fall from height|ancient world|s.a.t.|minions|", "overview": "Based on Frank Miller's graphic novel, \"300\" is very loosely based the 480 B.C. Battle of Thermopylae, where the King of Sparta led his army against the advancing Persians; the battle is said to have inspired all of Greece to band together against the Persians, and helped usher in the world's first democracy.", "text_for_embedding": "300 (2006). Genres: Action, Adventure, War. Based on Frank Miller's graphic novel, \"300\" is very loosely based the 480 B.C. Battle of Thermopylae, where the King of Sparta led his army against the advancing Persians; the battle is said to have inspired all of Greece to band together against the Persians, and helped usher in the world's first democracy.. Tags: evisceration, javelin, shield, army, fall from height, ancient world, s.a.t., minions"} +{"id": "693", "title": "Meet the Fockers", "year": 2004, "duration_min": 115, "rating": 6.1, "genres": "Comedy, Romance", "genres_pipe": "|Comedy|Romance|", "keywords": "cia, parents kids relationship, florida, anti-authoritarian upbringing, jew, parents-in-law, orderly, just married, sex therapy, bad father-in-law, family, illegitimate son", "tags_pipe": "|cia|parents kids relationship|florida|anti-authoritarian upbringing|jew|parents-in-law|orderly|just married|sex therapy|bad father-in-law|family|illegitimate son|", "overview": "Hard-to-crack ex-CIA man, Jack Byrnes and his wife, Dina head for the warmer climes of Florida to meet son-in-law-to-be, Greg Focker's parents. Unlike their happily matched offspring, the future in-laws find themselves in a situation of opposites that definitely do not attract.", "text_for_embedding": "Meet the Fockers (2004). Genres: Comedy, Romance. Hard-to-crack ex-CIA man, Jack Byrnes and his wife, Dina head for the warmer climes of Florida to meet son-in-law-to-be, Greg Focker's parents. Unlike their happily matched offspring, the future in-laws find themselves in a situation of opposites that definitely do not attract.. Tags: cia, parents kids relationship, florida, anti-authoritarian upbringing, jew, parents-in-law, orderly, just married, sex therapy, bad father-in-law, family, illegitimate son"} +{"id": "14306", "title": "Marley & Me", "year": 2008, "duration_min": 115, "rating": 6.9, "genres": "Comedy, Family", "genres_pipe": "|Comedy|Family|", "keywords": "journalist, based on novel, puppy, dog, duringcreditsstinger, columnist, animal lead", "tags_pipe": "|journalist|based on novel|puppy|dog|duringcreditsstinger|columnist|animal lead|", "overview": "A newly married couple who, in the process of starting a family, learn many of life's important lessons from their trouble-loving retriever, Marley. Packed with plenty of laughs to lighten the load, the film explores the highs and lows of marriage, maturity and confronting one's own mortality, as seen through the lens of family life with a dog.", "text_for_embedding": "Marley & Me (2008). Genres: Comedy, Family. A newly married couple who, in the process of starting a family, learn many of life's important lessons from their trouble-loving retriever, Marley. Packed with plenty of laughs to lighten the load, the film explores the highs and lows of marriage, maturity and confronting one's own mortality, as seen through the lens of family life with a dog.. Tags: journalist, based on novel, puppy, dog, duringcreditsstinger, columnist, animal lead"} +{"id": "497", "title": "The Green Mile", "year": 1999, "duration_min": 189, "rating": 8.2, "genres": "Fantasy, Drama, Crime", "genres_pipe": "|Fantasy|Drama|Crime|", "keywords": "southern usa, black people, mentally disabled, based on novel, heal, death row, jail guard, great depression, prison guard, electric chair, magic realism, healing, death row inmate, 1930s", "tags_pipe": "|southern usa|black people|mentally disabled|based on novel|heal|death row|jail guard|great depression|prison guard|electric chair|magic realism|healing|death row inmate|1930s|", "overview": "A supernatural tale set on death row in a Southern prison, where gentle giant John Coffey possesses the mysterious power to heal people's ailments. When the cellblock's head guard, Paul Edgecomb, recognizes Coffey's miraculous gift, he tries desperately to help stave off the condemned man's execution.", "text_for_embedding": "The Green Mile (1999). Genres: Fantasy, Drama, Crime. A supernatural tale set on death row in a Southern prison, where gentle giant John Coffey possesses the mysterious power to heal people's ailments. When the cellblock's head guard, Paul Edgecomb, recognizes Coffey's miraculous gift, he tries desperately to help stave off the condemned man's execution.. Tags: southern usa, black people, mentally disabled, based on novel, heal, death row, jail guard, great depression, prison guard, electric chair, magic realism, healing, death row inmate, 1930s"} +{"id": "11199", "title": "Wild Hogs", "year": 2007, "duration_min": 100, "rating": 5.6, "genres": "Action, Adventure, Comedy", "genres_pipe": "|Action|Adventure|Comedy|", "keywords": "midlife crisis, road trip, politically incorrect, motorcycle gang, biker film, awkwardness, travel writer, middle age, middle aged man", "tags_pipe": "|midlife crisis|road trip|politically incorrect|motorcycle gang|biker film|awkwardness|travel writer|middle age|middle aged man|", "overview": "Restless and ready for adventure, four suburban bikers leave the safety of their subdivision and head out on the open road. But complications ensue when they cross paths with an intimidating band of New Mexico bikers known as the Del Fuegos.", "text_for_embedding": "Wild Hogs (2007). Genres: Action, Adventure, Comedy. Restless and ready for adventure, four suburban bikers leave the safety of their subdivision and head out on the open road. But complications ensue when they cross paths with an intimidating band of New Mexico bikers known as the Del Fuegos.. Tags: midlife crisis, road trip, politically incorrect, motorcycle gang, biker film, awkwardness, travel writer, middle age, middle aged man"} +{"id": "9982", "title": "Chicken Little", "year": 2005, "duration_min": 81, "rating": 5.6, "genres": "Animation, Family, Comedy", "genres_pipe": "|Animation|Family|Comedy|", "keywords": "fish, small town, space marine, chicken, alien, best friend, alien invasion, animal, duringcreditsstinger, 3d", "tags_pipe": "|fish|small town|space marine|chicken|alien|best friend|alien invasion|animal|duringcreditsstinger|3d|", "overview": "When the sky really is falling and sanity has flown the coop, who will rise to save the day? Together with his hysterical band of misfit friends, Chicken Little must hatch a plan to save the planet from alien invasion and prove that the world's biggest hero is a little chicken.", "text_for_embedding": "Chicken Little (2005). Genres: Animation, Family, Comedy. When the sky really is falling and sanity has flown the coop, who will rise to save the day? Together with his hysterical band of misfit friends, Chicken Little must hatch a plan to save the planet from alien invasion and prove that the world's biggest hero is a little chicken.. Tags: fish, small town, space marine, chicken, alien, best friend, alien invasion, animal, duringcreditsstinger, 3d"} +{"id": "210577", "title": "Gone Girl", "year": 2014, "duration_min": 145, "rating": 7.9, "genres": "Mystery, Thriller, Drama", "genres_pipe": "|Mystery|Thriller|Drama|", "keywords": "based on novel, marriage crisis, disappearance, cheating husband, missing person, search party, criminal lawyer, wife murder, murder suspect, missing wife", "tags_pipe": "|based on novel|marriage crisis|disappearance|cheating husband|missing person|search party|criminal lawyer|wife murder|murder suspect|missing wife|", "overview": "With his wife's disappearance having become the focus of an intense media circus, a man sees the spotlight turned on him when it's suspected that he may not be innocent.", "text_for_embedding": "Gone Girl (2014). Genres: Mystery, Thriller, Drama. With his wife's disappearance having become the focus of an intense media circus, a man sees the spotlight turned on him when it's suspected that he may not be innocent.. Tags: based on novel, marriage crisis, disappearance, cheating husband, missing person, search party, criminal lawyer, wife murder, murder suspect, missing wife"} +{"id": "2501", "title": "The Bourne Identity", "year": 2002, "duration_min": 119, "rating": 7.3, "genres": "Action, Drama, Mystery, Thriller", "genres_pipe": "|Action|Drama|Mystery|Thriller|", "keywords": "paris, barcelona spain, assassin, based on novel, secret identity, amnesia, sniper, passport, mission of murder, lovers, escape, shootout, foot chase, cell phone, car chase", "tags_pipe": "|paris|barcelona spain|assassin|based on novel|secret identity|amnesia|sniper|passport|mission of murder|lovers|escape|shootout|foot chase|cell phone|car chase|", "overview": "Wounded to the brink of death and suffering from amnesia, Jason Bourne is rescued at sea by a fisherman. With nothing to go on but a Swiss bank account number, he starts to reconstruct his life, but finds that many people he encounters want him dead. However, Bourne realizes that he has the combat and mental skills of a world-class spy – but who does he work for?", "text_for_embedding": "The Bourne Identity (2002). Genres: Action, Drama, Mystery, Thriller. Wounded to the brink of death and suffering from amnesia, Jason Bourne is rescued at sea by a fisherman. With nothing to go on but a Swiss bank account number, he starts to reconstruct his life, but finds that many people he encounters want him dead. However, Bourne realizes that he has the combat and mental skills of a world-class spy – but who does he work for?. Tags: paris, barcelona spain, assassin, based on novel, secret identity, amnesia, sniper, passport, mission of murder, lovers, escape, shootout, foot chase, cell phone, car chase"} +{"id": "710", "title": "GoldenEye", "year": 1995, "duration_min": 130, "rating": 6.6, "genres": "Adventure, Action, Thriller", "genres_pipe": "|Adventure|Action|Thriller|", "keywords": "cuba, falsely accused, secret identity, computer virus, secret base, secret intelligence service, kgb, satellite, special car, cossack, electromagnetic pulse, time bomb, st. petersburg russia, ejection seat, red army", "tags_pipe": "|cuba|falsely accused|secret identity|computer virus|secret base|secret intelligence service|kgb|satellite|special car|cossack|electromagnetic pulse|time bomb|st. petersburg russia|ejection seat|red army|", "overview": "James Bond must unmask the mysterious head of the Janus Syndicate and prevent the leader from utilizing the GoldenEye weapons system to inflict devastating revenge on Britain.", "text_for_embedding": "GoldenEye (1995). Genres: Adventure, Action, Thriller. James Bond must unmask the mysterious head of the Janus Syndicate and prevent the leader from utilizing the GoldenEye weapons system to inflict devastating revenge on Britain.. Tags: cuba, falsely accused, secret identity, computer virus, secret base, secret intelligence service, kgb, satellite, special car, cossack, electromagnetic pulse, time bomb, st. petersburg russia, ejection seat, red army"} +{"id": "2275", "title": "The General's Daughter", "year": 1999, "duration_min": 116, "rating": 6.1, "genres": "Crime, Drama, Mystery, Thriller", "genres_pipe": "|Crime|Drama|Mystery|Thriller|", "keywords": "suicide, detective, based on novel, bondage, general, paranoia, nudity, u.s. army, investigation, politics, cover-up, murder, betrayal, conspiracy, gang rape", "tags_pipe": "|suicide|detective|based on novel|bondage|general|paranoia|nudity|u.s. army|investigation|politics|cover-up|murder|betrayal|conspiracy|gang rape|", "overview": "When the body of Army Capt. Elizabeth Campbell is found on a Georgia military base, two investigators, Warrant Officers Paul Brenner and Sara Sunhill, are ordered to solve her murder. What they uncover is anything but clear-cut. Unseemly details emerge about Campbell's life, leading to allegations of a possible military coverup of her death and the involvement of her father, Lt. Gen. Joseph Campbell.", "text_for_embedding": "The General's Daughter (1999). Genres: Crime, Drama, Mystery, Thriller. When the body of Army Capt. Elizabeth Campbell is found on a Georgia military base, two investigators, Warrant Officers Paul Brenner and Sara Sunhill, are ordered to solve her murder. What they uncover is anything but clear-cut. Unseemly details emerge about Campbell's life, leading to allegations of a possible military coverup of her death and the involvement of her father, Lt. Gen. Joseph Campbell.. Tags: suicide, detective, based on novel, bondage, general, paranoia, nudity, u.s. army, investigation, politics, cover-up, murder, betrayal, conspiracy, gang rape"} +{"id": "37165", "title": "The Truman Show", "year": 1998, "duration_min": 103, "rating": 7.8, "genres": "Comedy, Drama", "genres_pipe": "|Comedy|Drama|", "keywords": "claustrophobia, hidden camera, dystopia, reality show, make believe, pretend", "tags_pipe": "|claustrophobia|hidden camera|dystopia|reality show|make believe|pretend|", "overview": "Truman Burbank is the star of \"The Truman Show\", a 24-hour-a-day \"reality\" TV show that broadcasts every aspect of his life -- live and in color -- without his knowledge. His entire life has been an unending soap opera for consumption by the rest of the world. And everyone he knows -- including his wife and his best friend -- is really an actor, paid to be part of his life.", "text_for_embedding": "The Truman Show (1998). Genres: Comedy, Drama. Truman Burbank is the star of \"The Truman Show\", a 24-hour-a-day \"reality\" TV show that broadcasts every aspect of his life -- live and in color -- without his knowledge. His entire life has been an unending soap opera for consumption by the rest of the world. And everyone he knows -- including his wife and his best friend -- is really an actor, paid to be part of his life.. Tags: claustrophobia, hidden camera, dystopia, reality show, make believe, pretend"} +{"id": "9837", "title": "The Prince of Egypt", "year": 1998, "duration_min": 99, "rating": 6.8, "genres": "Adventure, Animation, Drama, Family, Music", "genres_pipe": "|Adventure|Animation|Drama|Family|Music|", "keywords": "moses, egypt, pyramid, exodus, kingdom, governance, ancient egypt, hebrew, pharaoh, woman director", "tags_pipe": "|moses|egypt|pyramid|exodus|kingdom|governance|ancient egypt|hebrew|pharaoh|woman director|", "overview": "This is the extraordinary tale of two brothers named Moses and Ramses, one born of royal blood, and one an orphan with a secret past. Growing up the best of friends, they share a strong bond of free-spirited youth and good-natured rivalry. But the truth will ultimately set them at odds, as one becomes the ruler of the most powerful empire on earth, and the other the chosen leader of his people! Their final confrontation will forever change their lives and the world.", "text_for_embedding": "The Prince of Egypt (1998). Genres: Adventure, Animation, Drama, Family, Music. This is the extraordinary tale of two brothers named Moses and Ramses, one born of royal blood, and one an orphan with a secret past. Growing up the best of friends, they share a strong bond of free-spirited youth and good-natured rivalry. But the truth will ultimately set them at odds, as one becomes the ruler of the most powerful empire on earth, and the other the chosen leader of his people! Their final confrontation will forever change their lives and the world.. Tags: moses, egypt, pyramid, exodus, kingdom, governance, ancient egypt, hebrew, pharaoh, woman director"} +{"id": "10708", "title": "Daddy Day Care", "year": 2003, "duration_min": 92, "rating": 5.6, "genres": "Comedy, Family", "genres_pipe": "|Comedy|Family|", "keywords": "competition, success, kindergarten, children, unemployment", "tags_pipe": "|competition|success|kindergarten|children|unemployment|", "overview": "Two men get laid off and have to become stay-at-home dads when they can't find jobs, which inspires them to open their own day-care center.", "text_for_embedding": "Daddy Day Care (2003). Genres: Comedy, Family. Two men get laid off and have to become stay-at-home dads when they can't find jobs, which inspires them to open their own day-care center.. Tags: competition, success, kindergarten, children, unemployment"} +{"id": "136400", "title": "2 Guns", "year": 2013, "duration_min": 109, "rating": 6.6, "genres": "Action, Comedy, Crime", "genres_pipe": "|Action|Comedy|Crime|", "keywords": "undercover, undercover agent, based on comic book, money, fugitive, bank robbery, dea agent", "tags_pipe": "|undercover|undercover agent|based on comic book|money|fugitive|bank robbery|dea agent|", "overview": "A DEA agent and an undercover Naval Intelligence officer who have been tasked with investigating one another find they have been set up by the mob -- the very organization the two men believe they have been stealing money from.", "text_for_embedding": "2 Guns (2013). Genres: Action, Comedy, Crime. A DEA agent and an undercover Naval Intelligence officer who have been tasked with investigating one another find they have been set up by the mob -- the very organization the two men believe they have been stealing money from.. Tags: undercover, undercover agent, based on comic book, money, fugitive, bank robbery, dea agent"} +{"id": "10992", "title": "Cats & Dogs", "year": 2001, "duration_min": 87, "rating": 5.0, "genres": "Comedy, Family", "genres_pipe": "|Comedy|Family|", "keywords": "fight, governance, puppy, allergy, 3d", "tags_pipe": "|fight|governance|puppy|allergy|3d|", "overview": "When a professor develops a vaccine that eliminates human allergies to dogs, he unwittingly upsets the fragile balance of power between cats and dogs and touches off an epic battle for pet supremacy. The fur flies as the feline faction, led by Mr. Tinkles, squares off against wide-eyed puppy Lou and his canine cohorts.", "text_for_embedding": "Cats & Dogs (2001). Genres: Comedy, Family. When a professor develops a vaccine that eliminates human allergies to dogs, he unwittingly upsets the fragile balance of power between cats and dogs and touches off an epic battle for pet supremacy. The fur flies as the feline faction, led by Mr. Tinkles, squares off against wide-eyed puppy Lou and his canine cohorts.. Tags: fight, governance, puppy, allergy, 3d"} +{"id": "9654", "title": "The Italian Job", "year": 2003, "duration_min": 110, "rating": 6.6, "genres": "Action, Crime", "genres_pipe": "|Action|Crime|", "keywords": "venice, california, train station, helicopter, austria, mountains, gold, subway, hacker, chase, safe, remake, caper, revenge, murder", "tags_pipe": "|venice|california|train station|helicopter|austria|mountains|gold|subway|hacker|chase|safe|remake|caper|revenge|murder|", "overview": "Charlie Croker pulled off the crime of a lifetime. The one thing that he didn't plan on was being double-crossed. Along with a drop-dead gorgeous safecracker, Croker and his team take off to re-steal the loot and end up in a pulse-pounding, pedal-to-the-metal chase that careens up, down, above and below the streets of Los Angeles.", "text_for_embedding": "The Italian Job (2003). Genres: Action, Crime. Charlie Croker pulled off the crime of a lifetime. The one thing that he didn't plan on was being double-crossed. Along with a drop-dead gorgeous safecracker, Croker and his team take off to re-steal the loot and end up in a pulse-pounding, pedal-to-the-metal chase that careens up, down, above and below the streets of Los Angeles.. Tags: venice, california, train station, helicopter, austria, mountains, gold, subway, hacker, chase, safe, remake, caper, revenge, murder"} +{"id": "2642", "title": "Two Weeks Notice", "year": 2002, "duration_min": 101, "rating": 5.9, "genres": "Romance, Comedy", "genres_pipe": "|Romance|Comedy|", "keywords": "new york, parish hall, romantic comedy, lawyer, billionaire, environmental law", "tags_pipe": "|new york|parish hall|romantic comedy|lawyer|billionaire|environmental law|", "overview": "Dedicated environmental lawyer Lucy Kelson goes to work for billionaire George Wade as part of a deal to preserve a community center. Indecisive and weak-willed George grows dependent on Lucy's guidance on everything from legal matters to clothing. Exasperated, Lucy gives notice and picks Harvard graduate June Carter as her replacement. As Lucy's time at the firm nears an end, she grows jealous of June and has second thoughts about leaving George.", "text_for_embedding": "Two Weeks Notice (2002). Genres: Romance, Comedy. Dedicated environmental lawyer Lucy Kelson goes to work for billionaire George Wade as part of a deal to preserve a community center. Indecisive and weak-willed George grows dependent on Lucy's guidance on everything from legal matters to clothing. Exasperated, Lucy gives notice and picks Harvard graduate June Carter as her replacement. As Lucy's time at the firm nears an end, she grows jealous of June and has second thoughts about leaving George.. Tags: new york, parish hall, romantic comedy, lawyer, billionaire, environmental law"} +{"id": "8916", "title": "Antz", "year": 1998, "duration_min": 83, "rating": 6.0, "genres": "Adventure, Animation, Comedy, Family", "genres_pipe": "|Adventure|Animation|Comedy|Family|", "keywords": "general, hero, worker, ant, work, assignment, war, princess, soldier, individuality, friend", "tags_pipe": "|general|hero|worker|ant|work|assignment|war|princess|soldier|individuality|friend|", "overview": "In this animated hit, a neurotic worker ant in love with a rebellious princess rises to unlikely stardom when he switches places with a soldier. Signing up to march in a parade, he ends up under the command of a bloodthirsty general. But he's actually been enlisted to fight against a termite army.", "text_for_embedding": "Antz (1998). Genres: Adventure, Animation, Comedy, Family. In this animated hit, a neurotic worker ant in love with a rebellious princess rises to unlikely stardom when he switches places with a soldier. Signing up to march in a parade, he ends up under the command of a bloodthirsty general. But he's actually been enlisted to fight against a termite army.. Tags: general, hero, worker, ant, work, assignment, war, princess, soldier, individuality, friend"} +{"id": "19899", "title": "Couples Retreat", "year": 2009, "duration_min": 113, "rating": 5.3, "genres": "Comedy, Romance", "genres_pipe": "|Comedy|Romance|", "keywords": "island, married couple, yoga, tahiti, couples therapy, beautiful woman, tropical, aftercreditsstinger, duringcreditsstinger, french polynesia, polynésie française", "tags_pipe": "|island|married couple|yoga|tahiti|couples therapy|beautiful woman|tropical|aftercreditsstinger|duringcreditsstinger|french polynesia|polynésie française|", "overview": "Four couples, all friends, descend on a tropical island resort. Though one husband and wife are there to work on their marriage, the others just want to enjoy some fun in the sun. They soon find, however, that paradise comes at a price: Participation in couples therapy sessions is mandatory. What started out as a cut-rate vacation turns into an examination of the common problems many face.", "text_for_embedding": "Couples Retreat (2009). Genres: Comedy, Romance. Four couples, all friends, descend on a tropical island resort. Though one husband and wife are there to work on their marriage, the others just want to enjoy some fun in the sun. They soon find, however, that paradise comes at a price: Participation in couples therapy sessions is mandatory. What started out as a cut-rate vacation turns into an examination of the common problems many face.. Tags: island, married couple, yoga, tahiti, couples therapy, beautiful woman, tropical, aftercreditsstinger, duringcreditsstinger, french polynesia, polynésie française"} +{"id": "2119", "title": "Days of Thunder", "year": 1990, "duration_min": 107, "rating": 5.9, "genres": "Adventure", "genres_pipe": "|Adventure|", "keywords": "stock-car-race, daytona, car crash", "tags_pipe": "|stock-car-race|daytona|car crash|", "overview": "Talented but unproven stock car driver Cole Trickle gets a break and with the guidance of veteran Harry Hogge turns heads on the track. The young hotshot develops a rivalry with a fellow racer that threatens his career when the two smash their cars. But with the help of his doctor, Cole just might overcome his injuries-- and his fear.", "text_for_embedding": "Days of Thunder (1990). Genres: Adventure. Talented but unproven stock car driver Cole Trickle gets a break and with the guidance of veteran Harry Hogge turns heads on the track. The young hotshot develops a rivalry with a fellow racer that threatens his career when the two smash their cars. But with the help of his doctor, Cole just might overcome his injuries-- and his fear.. Tags: stock-car-race, daytona, car crash"} +{"id": "9641", "title": "Cheaper by the Dozen 2", "year": 2005, "duration_min": 94, "rating": 5.7, "genres": "Comedy", "genres_pipe": "|Comedy|", "keywords": "holiday, lake, big family, father, labor pain, rivalry, family holiday", "tags_pipe": "|holiday|lake|big family|father|labor pain|rivalry|family holiday|", "overview": "Steve Martin and Bonnie Hunt return as heads of the Baker family who, while on vacation, find themselves in competition with a rival family of eight children, headed by Eugene Levy,", "text_for_embedding": "Cheaper by the Dozen 2 (2005). Genres: Comedy. Steve Martin and Bonnie Hunt return as heads of the Baker family who, while on vacation, find themselves in competition with a rival family of eight children, headed by Eugene Levy,. Tags: holiday, lake, big family, father, labor pain, rivalry, family holiday"} +{"id": "294254", "title": "Maze Runner: The Scorch Trials", "year": 2015, "duration_min": 132, "rating": 6.4, "genres": "Action", "genres_pipe": "|Action|", "keywords": "based on novel, resistance, maze, post-apocalyptic, dystopia, infection, on the run, escape, zombie, storm, disease, desert, sewer, antidote, corporation", "tags_pipe": "|based on novel|resistance|maze|post-apocalyptic|dystopia|infection|on the run|escape|zombie|storm|disease|desert|sewer|antidote|corporation|", "overview": "Thomas and his fellow Gladers face their greatest challenge yet: searching for clues about the mysterious and powerful organization known as WCKD. Their journey takes them to the Scorch, a desolate landscape filled with unimaginable obstacles. Teaming up with resistance fighters, the Gladers take on WCKD’s vastly superior forces and uncover its shocking plans for them all.", "text_for_embedding": "Maze Runner: The Scorch Trials (2015). Genres: Action. Thomas and his fellow Gladers face their greatest challenge yet: searching for clues about the mysterious and powerful organization known as WCKD. Their journey takes them to the Scorch, a desolate landscape filled with unimaginable obstacles. Teaming up with resistance fighters, the Gladers take on WCKD’s vastly superior forces and uncover its shocking plans for them all.. Tags: based on novel, resistance, maze, post-apocalyptic, dystopia, infection, on the run, escape, zombie, storm, disease, desert, sewer, antidote, corporation"} +{"id": "38167", "title": "Eat Pray Love", "year": 2010, "duration_min": 133, "rating": 5.8, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "indonesia, female protagonist, india, divorce, bali", "tags_pipe": "|indonesia|female protagonist|india|divorce|bali|", "overview": "Liz Gilbert had everything a modern woman is supposed to dream of having – a husband, a house and a successful career – yet like so many others, she found herself lost, confused and searching for what she really wanted in life. Newly divorced and at a crossroads, Gilbert steps out of her comfort zone, risking everything to change her life, embarking on a journey around the world that becomes a quest for self-discovery. In her travels, she discovers the true pleasure of nourishment by eating in Italy, the power of prayer in India and, finally and unexpectedly, the inner peace and balance of true love in Bali.", "text_for_embedding": "Eat Pray Love (2010). Genres: Drama. Liz Gilbert had everything a modern woman is supposed to dream of having – a husband, a house and a successful career – yet like so many others, she found herself lost, confused and searching for what she really wanted in life. Newly divorced and at a crossroads, Gilbert steps out of her comfort zone, risking everything to change her life, embarking on a journey around the world that becomes a quest for self-discovery. In her travels, she discovers the true pleasure of nourishment by eating in Italy, the power of prayer in India and, finally and unexpectedly, the inner peace and balance of true love in Bali.. Tags: indonesia, female protagonist, india, divorce, bali"} +{"id": "5994", "title": "The Family Man", "year": 2000, "duration_min": 125, "rating": 6.5, "genres": "Comedy, Drama, Romance, Fantasy", "genres_pipe": "|Comedy|Drama|Romance|Fantasy|", "keywords": "workaholic, second chance, guardian angel, christmas, career vs family, life reprioritizing", "tags_pipe": "|workaholic|second chance|guardian angel|christmas|career vs family|life reprioritizing|", "overview": "Jack's lavish, fast-paced lifestyle changes one Christmas night when he stumbles into a grocery store holdup and disarms the gunman. The next morning he wakes up in bed lying next to Kate, his college sweetheart he left in order to pursue his career, and to the horrifying discovery that his former life no longer exists. As he stumbles through this alternate suburban universe, Jack finds himself at a crossroad where he must choose between his high-power career and the woman he loves.", "text_for_embedding": "The Family Man (2000). Genres: Comedy, Drama, Romance, Fantasy. Jack's lavish, fast-paced lifestyle changes one Christmas night when he stumbles into a grocery store holdup and disarms the gunman. The next morning he wakes up in bed lying next to Kate, his college sweetheart he left in order to pursue his career, and to the horrifying discovery that his former life no longer exists. As he stumbles through this alternate suburban universe, Jack finds himself at a crossroad where he must choose between his high-power career and the woman he loves.. Tags: workaholic, second chance, guardian angel, christmas, career vs family, life reprioritizing"} +{"id": "39514", "title": "RED", "year": 2010, "duration_min": 111, "rating": 6.6, "genres": "Action, Adventure, Comedy, Crime, Thriller", "genres_pipe": "|Action|Adventure|Comedy|Crime|Thriller|", "keywords": "cia, retirement, shot to death, sniper rifle, retired, female spy, alarm", "tags_pipe": "|cia|retirement|shot to death|sniper rifle|retired|female spy|alarm|", "overview": "When his peaceful life is threatened by a high-tech assassin, former black-ops agent, Frank Moses reassembles his old team in a last ditch effort to survive and uncover his assailants.", "text_for_embedding": "RED (2010). Genres: Action, Adventure, Comedy, Crime, Thriller. When his peaceful life is threatened by a high-tech assassin, former black-ops agent, Frank Moses reassembles his old team in a last ditch effort to survive and uncover his assailants.. Tags: cia, retirement, shot to death, sniper rifle, retired, female spy, alarm"} +{"id": "9563", "title": "Any Given Sunday", "year": 1999, "duration_min": 163, "rating": 6.8, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "american football, trainer, training, american football coach, sport, american football stadium", "tags_pipe": "|american football|trainer|training|american football coach|sport|american football stadium|", "overview": "A star quarterback gets knocked out of the game and an unknown third stringer is called in to replace him. The unknown gives a stunning performance and forces the aging coach to reevaluate his game plans and life. A new co-owner/president adds to the pressure of winning. The new owner must prove her self in a male dominated world.", "text_for_embedding": "Any Given Sunday (1999). Genres: Drama. A star quarterback gets knocked out of the game and an unknown third stringer is called in to replace him. The unknown gives a stunning performance and forces the aging coach to reevaluate his game plans and life. A new co-owner/president adds to the pressure of winning. The new owner must prove her self in a male dominated world.. Tags: american football, trainer, training, american football coach, sport, american football stadium"} +{"id": "547", "title": "The Horse Whisperer", "year": 1998, "duration_min": 170, "rating": 6.7, "genres": "Drama, Romance", "genres_pipe": "|Drama|Romance|", "keywords": "love triangle, new york, montana, attachment to nature, confidence, horseback riding, horse, riding accident, career woman, ranch, horse whisperer, trauma, country life, marriage crisis, crisis", "tags_pipe": "|love triangle|new york|montana|attachment to nature|confidence|horseback riding|horse|riding accident|career woman|ranch|horse whisperer|trauma|country life|marriage crisis|crisis|", "overview": "Based on the novel by the same name from Nicholas Evans, the talented Robert Redford presents this meditative family drama set in the country side. Redford not only directs but also stars in the roll of a cowboy with a magical talent for healing.", "text_for_embedding": "The Horse Whisperer (1998). Genres: Drama, Romance. Based on the novel by the same name from Nicholas Evans, the talented Robert Redford presents this meditative family drama set in the country side. Redford not only directs but also stars in the roll of a cowboy with a magical talent for healing.. Tags: love triangle, new york, montana, attachment to nature, confidence, horseback riding, horse, riding accident, career woman, ranch, horse whisperer, trauma, country life, marriage crisis, crisis"} +{"id": "1538", "title": "Collateral", "year": 2004, "duration_min": 120, "rating": 7.0, "genres": "Drama, Crime, Thriller", "genres_pipe": "|Drama|Crime|Thriller|", "keywords": "california, taxi, assassin, hostage, taxi driver, fbi, hitman, police, los angeles, murderer, crime, criminal, gun violence", "tags_pipe": "|california|taxi|assassin|hostage|taxi driver|fbi|hitman|police|los angeles|murderer|crime|criminal|gun violence|", "overview": "Cab driver Max picks up a man who offers him $600 to drive him around. But the promise of easy money sours when Max realizes his fare is an assassin.", "text_for_embedding": "Collateral (2004). Genres: Drama, Crime, Thriller. Cab driver Max picks up a man who offers him $600 to drive him around. But the promise of easy money sours when Max realizes his fare is an assassin.. Tags: california, taxi, assassin, hostage, taxi driver, fbi, hitman, police, los angeles, murderer, crime, criminal, gun violence"} +{"id": "9334", "title": "The Scorpion King", "year": 2002, "duration_min": 92, "rating": 5.3, "genres": "Action, Fantasy, Adventure", "genres_pipe": "|Action|Fantasy|Adventure|", "keywords": "egypt, temple", "tags_pipe": "|egypt|temple|", "overview": "In ancient Egypt, peasant Mathayus is hired to exact revenge on the powerful Memnon and the sorceress Cassandra, who are ready to overtake Balthazar's village. Amid betrayals, thieves, abductions and more, Mathayus strives to bring justice to his complicated world.", "text_for_embedding": "The Scorpion King (2002). Genres: Action, Fantasy, Adventure. In ancient Egypt, peasant Mathayus is hired to exact revenge on the powerful Memnon and the sorceress Cassandra, who are ready to overtake Balthazar's village. Amid betrayals, thieves, abductions and more, Mathayus strives to bring justice to his complicated world.. Tags: egypt, temple"} +{"id": "11128", "title": "Ladder 49", "year": 2004, "duration_min": 115, "rating": 6.2, "genres": "Drama, Action, Thriller", "genres_pipe": "|Drama|Action|Thriller|", "keywords": "ledge, practical joke", "tags_pipe": "|ledge|practical joke|", "overview": "Under the watchful eye of his mentor, Captain Mike Kennedy, probationary firefighter Jack Morrison matures into a seasoned veteran at a Baltimore fire station. However, Jack has reached a crossroads as the sacrifices he's made have put him in harm's way innumerable times and significantly impacted his relationship with his wife and kids.", "text_for_embedding": "Ladder 49 (2004). Genres: Drama, Action, Thriller. Under the watchful eye of his mentor, Captain Mike Kennedy, probationary firefighter Jack Morrison matures into a seasoned veteran at a Baltimore fire station. However, Jack has reached a crossroads as the sacrifices he's made have put him in harm's way innumerable times and significantly impacted his relationship with his wife and kids.. Tags: ledge, practical joke"} +{"id": "75780", "title": "Jack Reacher", "year": 2012, "duration_min": 130, "rating": 6.3, "genres": "Crime, Drama, Thriller", "genres_pipe": "|Crime|Drama|Thriller|", "keywords": "based on novel, sniper, investigation, police, quarry", "tags_pipe": "|based on novel|sniper|investigation|police|quarry|", "overview": "In an innocent heartland city, five are shot dead by an expert sniper. The police quickly identify and arrest the culprit, and build a slam-dunk case. But the accused man claims he's innocent and says \"Get Jack Reacher.\" Reacher himself sees the news report and turns up in the city. The defense is immensely relieved, but Reacher has come to bury the guy. Shocked at the accused's request, Reacher sets out to confirm for himself the absolute certainty of the man's guilt, but comes up with more than he bargained for.", "text_for_embedding": "Jack Reacher (2012). Genres: Crime, Drama, Thriller. In an innocent heartland city, five are shot dead by an expert sniper. The police quickly identify and arrest the culprit, and build a slam-dunk case. But the accused man claims he's innocent and says \"Get Jack Reacher.\" Reacher himself sees the news report and turns up in the city. The defense is immensely relieved, but Reacher has come to bury the guy. Shocked at the accused's request, Reacher sets out to confirm for himself the absolute certainty of the man's guilt, but comes up with more than he bargained for.. Tags: based on novel, sniper, investigation, police, quarry"} +{"id": "8914", "title": "Deep Blue Sea", "year": 1999, "duration_min": 105, "rating": 5.6, "genres": "Action, Science Fiction, Thriller", "genres_pipe": "|Action|Science Fiction|Thriller|", "keywords": "shark attack, shark, alzheimer's disease, killer shark, no opening credits", "tags_pipe": "|shark attack|shark|alzheimer's disease|killer shark|no opening credits|", "overview": "On a remote former submarine refueling facility called Aquatica, a team of scientists are searching for a cure for Alzheimer's disease. Dr. Susan McAlester genetically engineers three Mako sharks, intending to increase their brain capacity so that they can harvest the tissue as a cure for Alzheimer's. Unfortunately, the increased brain capacity also makes the sharks smarter, faster, and more dangerous. Aquatica's financial backers are skeptical and nervous about the tests, and send a corporate executive to visit the facility.", "text_for_embedding": "Deep Blue Sea (1999). Genres: Action, Science Fiction, Thriller. On a remote former submarine refueling facility called Aquatica, a team of scientists are searching for a cure for Alzheimer's disease. Dr. Susan McAlester genetically engineers three Mako sharks, intending to increase their brain capacity so that they can harvest the tissue as a cure for Alzheimer's. Unfortunately, the increased brain capacity also makes the sharks smarter, faster, and more dangerous. Aquatica's financial backers are skeptical and nervous about the tests, and send a corporate executive to visit the facility.. Tags: shark attack, shark, alzheimer's disease, killer shark, no opening credits"} +{"id": "13576", "title": "This Is It", "year": 2009, "duration_min": 111, "rating": 6.7, "genres": "Music, Documentary", "genres_pipe": "|Music|Documentary|", "keywords": "pop star, music, concert, aftercreditsstinger, duringcreditsstinger", "tags_pipe": "|pop star|music|concert|aftercreditsstinger|duringcreditsstinger|", "overview": "A compilation of interviews, rehearsals and backstage footage of Michael Jackson as he prepared for his series of sold-out shows in London.", "text_for_embedding": "This Is It (2009). Genres: Music, Documentary. A compilation of interviews, rehearsals and backstage footage of Michael Jackson as he prepared for his series of sold-out shows in London.. Tags: pop star, music, concert, aftercreditsstinger, duringcreditsstinger"} +{"id": "39538", "title": "Contagion", "year": 2011, "duration_min": 106, "rating": 6.2, "genres": "Drama, Thriller, Science Fiction", "genres_pipe": "|Drama|Thriller|Science Fiction|", "keywords": "saving the world, mutation, infection, terminal illness, quarantine, outbreak, medical, vaccine, lethal virus, scientist, epidemic", "tags_pipe": "|saving the world|mutation|infection|terminal illness|quarantine|outbreak|medical|vaccine|lethal virus|scientist|epidemic|", "overview": "As an epidemic of a lethal airborne virus - that kills within days - rapidly grows, the worldwide medical community races to find a cure and control the panic that spreads faster than the virus itself.", "text_for_embedding": "Contagion (2011). Genres: Drama, Thriller, Science Fiction. As an epidemic of a lethal airborne virus - that kills within days - rapidly grows, the worldwide medical community races to find a cure and control the panic that spreads faster than the virus itself.. Tags: saving the world, mutation, infection, terminal illness, quarantine, outbreak, medical, vaccine, lethal virus, scientist, epidemic"} +{"id": "10628", "title": "Kangaroo Jack", "year": 2003, "duration_min": 89, "rating": 4.3, "genres": "Comedy, Adventure, Crime", "genres_pipe": "|Comedy|Adventure|Crime|", "keywords": "money delivery, fool, australia, hoodlum, kangaroo", "tags_pipe": "|money delivery|fool|australia|hoodlum|kangaroo|", "overview": "Two childhood friends, a New York hairstylist and a wanna-be musician, get mixed-up with the mob and are forced to deliver $50,000 to Australia, but things go all wrong when the money is lost to a wild kangaroo.", "text_for_embedding": "Kangaroo Jack (2003). Genres: Comedy, Adventure, Crime. Two childhood friends, a New York hairstylist and a wanna-be musician, get mixed-up with the mob and are forced to deliver $50,000 to Australia, but things go all wrong when the money is lost to a wild kangaroo.. Tags: money delivery, fool, australia, hoodlum, kangaroo"} +{"id": "14836", "title": "Coraline", "year": 2009, "duration_min": 100, "rating": 7.3, "genres": "Animation, Family", "genres_pipe": "|Animation|Family|", "keywords": "dream, eye, stuffed animal, parallel world, button, new home, secret door, aftercreditsstinger, duringcreditsstinger", "tags_pipe": "|dream|eye|stuffed animal|parallel world|button|new home|secret door|aftercreditsstinger|duringcreditsstinger|", "overview": "When Coraline moves to an old house, she feels bored and neglected by her parents. She finds a hidden door with a bricked up passage. During the night, she crosses the passage and finds a parallel world where everybody has buttons instead of eyes, with caring parents and all her dreams coming true. When the Other Mother invites Coraline to stay in her world forever, the girl refuses and finds that the alternate reality where she is trapped is only a trick to lure her.", "text_for_embedding": "Coraline (2009). Genres: Animation, Family. When Coraline moves to an old house, she feels bored and neglected by her parents. She finds a hidden door with a bricked up passage. During the night, she crosses the passage and finds a parallel world where everybody has buttons instead of eyes, with caring parents and all her dreams coming true. When the Other Mother invites Coraline to stay in her world forever, the girl refuses and finds that the alternate reality where she is trapped is only a trick to lure her.. Tags: dream, eye, stuffed animal, parallel world, button, new home, secret door, aftercreditsstinger, duringcreditsstinger"} +{"id": "8645", "title": "The Happening", "year": 2008, "duration_min": 91, "rating": 4.9, "genres": "Thriller, Science Fiction", "genres_pipe": "|Thriller|Science Fiction|", "keywords": "tree, natural disaster, crisis, park, strange behavior", "tags_pipe": "|tree|natural disaster|crisis|park|strange behavior|", "overview": "When a deadly airborne virus threatens to wipe out the northeastern United States, teacher Elliott Moore (Mark Wahlberg) and his wife (Zooey Deschanel) flee from contaminated cities into the countryside in a fight to discover the truth. Is it terrorism, the accidental release of some toxic military bio weapon -- or something even more sinister? John Leguizamo and Betty Buckley co-star in this thriller from writer-director M. Night Shyamalan.", "text_for_embedding": "The Happening (2008). Genres: Thriller, Science Fiction. When a deadly airborne virus threatens to wipe out the northeastern United States, teacher Elliott Moore (Mark Wahlberg) and his wife (Zooey Deschanel) flee from contaminated cities into the countryside in a fight to discover the truth. Is it terrorism, the accidental release of some toxic military bio weapon -- or something even more sinister? John Leguizamo and Betty Buckley co-star in this thriller from writer-director M. Night Shyamalan.. Tags: tree, natural disaster, crisis, park, strange behavior"} +{"id": "9509", "title": "Man on Fire", "year": 2004, "duration_min": 146, "rating": 7.3, "genres": "Action, Drama, Thriller, Crime", "genres_pipe": "|Action|Drama|Thriller|Crime|", "keywords": "mexico, cia, kidnapping, diary, bible, bodyguard, stuffed animal, cell phone, alcoholic, grenade launcher, bloodshed, swim meet", "tags_pipe": "|mexico|cia|kidnapping|diary|bible|bodyguard|stuffed animal|cell phone|alcoholic|grenade launcher|bloodshed|swim meet|", "overview": "Jaded ex-CIA operative John Creasy reluctantly accepts a job as the bodyguard for a 10-year-old girl in Mexico City. They clash at first, but eventually bond, and when she's kidnapped he's consumed by fury and will stop at nothing to save her life.", "text_for_embedding": "Man on Fire (2004). Genres: Action, Drama, Thriller, Crime. Jaded ex-CIA operative John Creasy reluctantly accepts a job as the bodyguard for a 10-year-old girl in Mexico City. They clash at first, but eventually bond, and when she's kidnapped he's consumed by fury and will stop at nothing to save her life.. Tags: mexico, cia, kidnapping, diary, bible, bodyguard, stuffed animal, cell phone, alcoholic, grenade launcher, bloodshed, swim meet"} +{"id": "10067", "title": "The Shaggy Dog", "year": 2006, "duration_min": 98, "rating": 4.5, "genres": "Comedy, Family", "genres_pipe": "|Comedy|Family|", "keywords": "father son relationship, parents kids relationship, workaholic, wife husband relationship, transformation, body exchange, daughter, lawyer, dog, family, turns into animal", "tags_pipe": "|father son relationship|parents kids relationship|workaholic|wife husband relationship|transformation|body exchange|daughter|lawyer|dog|family|turns into animal|", "overview": "The tale of a workaholic dad-turned-dog who finds that being man's best friend shows him the most important job - being a great dad.", "text_for_embedding": "The Shaggy Dog (2006). Genres: Comedy, Family. The tale of a workaholic dad-turned-dog who finds that being man's best friend shows him the most important job - being a great dad.. Tags: father son relationship, parents kids relationship, workaholic, wife husband relationship, transformation, body exchange, daughter, lawyer, dog, family, turns into animal"} +{"id": "9384", "title": "Starsky & Hutch", "year": 2004, "duration_min": 101, "rating": 5.6, "genres": "Comedy, Crime", "genres_pipe": "|Comedy|Crime|", "keywords": "informant, jumping from a rooftop, surveillance footage", "tags_pipe": "|informant|jumping from a rooftop|surveillance footage|", "overview": "Join uptight David Starsky and laid-back Ken \"Hutch\" Hutchinson as they're paired for the first time as undercover cops. The new partners must overcome their differences to solve an important case with help from street informant Huggy Bear and persuasive criminal Reese Feldman.", "text_for_embedding": "Starsky & Hutch (2004). Genres: Comedy, Crime. Join uptight David Starsky and laid-back Ken \"Hutch\" Hutchinson as they're paired for the first time as undercover cops. The new partners must overcome their differences to solve an important case with help from street informant Huggy Bear and persuasive criminal Reese Feldman.. Tags: informant, jumping from a rooftop, surveillance footage"} +{"id": "9279", "title": "Jingle All the Way", "year": 1996, "duration_min": 89, "rating": 5.5, "genres": "Family, Comedy", "genres_pipe": "|Family|Comedy|", "keywords": "holiday, christmas party, santa claus, toy, puppet, christmas, turboman, navidad", "tags_pipe": "|holiday|christmas party|santa claus|toy|puppet|christmas|turboman|navidad|", "overview": "Meet Howard Langston, a salesman for a mattress company is constantly busy at his job, and he also constantly disappoints his son, after he misses his son's karate exposition, his son tells Howard that he wants for Christmas is an action figure of his son's television hero, he tries hard to to make it up to him. Unfortunately for Howard, it is Christmas Eve, and every store is sold out of Turbo Man, now Howard must travel all over town and compete with everybody else to find a Turbo Man action figure.", "text_for_embedding": "Jingle All the Way (1996). Genres: Family, Comedy. Meet Howard Langston, a salesman for a mattress company is constantly busy at his job, and he also constantly disappoints his son, after he misses his son's karate exposition, his son tells Howard that he wants for Christmas is an action figure of his son's television hero, he tries hard to to make it up to him. Unfortunately for Howard, it is Christmas Eve, and every store is sold out of Turbo Man, now Howard must travel all over town and compete with everybody else to find a Turbo Man action figure.. Tags: holiday, christmas party, santa claus, toy, puppet, christmas, turboman, navidad"} +{"id": "1487", "title": "Hellboy", "year": 2004, "duration_min": 122, "rating": 6.5, "genres": "Fantasy, Action, Science Fiction", "genres_pipe": "|Fantasy|Action|Science Fiction|", "keywords": "black magic, fistfight, cover-up, superhero, paranormal phenomena, narration from grave, demon, occult, combat photography, reanimated corpse, duringcreditsstinger", "tags_pipe": "|black magic|fistfight|cover-up|superhero|paranormal phenomena|narration from grave|demon|occult|combat photography|reanimated corpse|duringcreditsstinger|", "overview": "In the final days of World War II, the Nazis attempt to use black magic to aid their dying cause. The Allies raid the camp where the ceremony is taking place, but not before a demon - Hellboy - has already been conjured. Joining the Allied forces, Hellboy eventually grows to adulthood, serving the cause of good rather than evil.", "text_for_embedding": "Hellboy (2004). Genres: Fantasy, Action, Science Fiction. In the final days of World War II, the Nazis attempt to use black magic to aid their dying cause. The Allies raid the camp where the ceremony is taking place, but not before a demon - Hellboy - has already been conjured. Joining the Allied forces, Hellboy eventually grows to adulthood, serving the cause of good rather than evil.. Tags: black magic, fistfight, cover-up, superhero, paranormal phenomena, narration from grave, demon, occult, combat photography, reanimated corpse, duringcreditsstinger"} +{"id": "9422", "title": "A Civil Action", "year": 1998, "duration_min": 115, "rating": 6.1, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "success, advancement, right and justice, leukemia, lawyer, business start-up", "tags_pipe": "|success|advancement|right and justice|leukemia|lawyer|business start-up|", "overview": "Jan Schlickmann is a cynical lawyer who goes out to \"get rid of\" a case, only to find out it is potentially worth millions. The case becomes his obsession, to the extent that he is willing to give up everything - including his career and his clients' goals, in order to continue the case against all odds.", "text_for_embedding": "A Civil Action (1998). Genres: Drama. Jan Schlickmann is a cynical lawyer who goes out to \"get rid of\" a case, only to find out it is potentially worth millions. The case becomes his obsession, to the extent that he is willing to give up everything - including his career and his clients' goals, in order to continue the case against all odds.. Tags: success, advancement, right and justice, leukemia, lawyer, business start-up"} +{"id": "77174", "title": "ParaNorman", "year": 2012, "duration_min": 90, "rating": 6.7, "genres": "Family, Animation, Adventure, Comedy", "genres_pipe": "|Family|Animation|Adventure|Comedy|", "keywords": "medium, stop motion, curse, jock, ghost, communicating with the dead, aftercreditsstinger, dealing with the past, witch trial, child witch, empathy, strange", "tags_pipe": "|medium|stop motion|curse|jock|ghost|communicating with the dead|aftercreditsstinger|dealing with the past|witch trial|child witch|empathy|strange|", "overview": "In the town of Blithe Hollow, Norman Babcock is a boy who can speak to the dead, but no one besides his eccentric new friend, Neil, believes his ability is real. One day, Norman's estranged eccentric uncle tells him of an important annual ritual he must take up to protect the town from an curse cast by a witch it condemned centuries ago. Eventually, Norman decides to cooperate, but things don't go according to plan. Now, a magic storm of the witch threatens Blithe Hollow as the accursed dead rise. Together with unexpected new companions, Norman struggles to save his town, only to discover the horrific truth of the curse. With that insight, Norman must resolve the crisis for good as only he can.", "text_for_embedding": "ParaNorman (2012). Genres: Family, Animation, Adventure, Comedy. In the town of Blithe Hollow, Norman Babcock is a boy who can speak to the dead, but no one besides his eccentric new friend, Neil, believes his ability is real. One day, Norman's estranged eccentric uncle tells him of an important annual ritual he must take up to protect the town from an curse cast by a witch it condemned centuries ago. Eventually, Norman decides to cooperate, but things don't go according to plan. Now, a magic storm of the witch threatens Blithe Hollow as the accursed dead rise. Together with unexpected new companions, Norman struggles to save his town, only to discover the horrific truth of the curse. With that insight, Norman must resolve the crisis for good as only he can.. Tags: medium, stop motion, curse, jock, ghost, communicating with the dead, aftercreditsstinger, dealing with the past, witch trial, child witch, empathy, strange"} +{"id": "4824", "title": "The Jackal", "year": 1997, "duration_min": 124, "rating": 6.1, "genres": "Action, Thriller, Adventure, Crime", "genres_pipe": "|Action|Thriller|Adventure|Crime|", "keywords": "fbi, cold war, hitman", "tags_pipe": "|fbi|cold war|hitman|", "overview": "Hired by a powerful member of the Russian mafia to avenge an FBI sting that left his brother dead, the perfectionist Jackal proves an elusive target for the men charged with the task of bringing him down: a deputy FBI boss and a former IRA terrorist.", "text_for_embedding": "The Jackal (1997). Genres: Action, Thriller, Adventure, Crime. Hired by a powerful member of the Russian mafia to avenge an FBI sting that left his brother dead, the perfectionist Jackal proves an elusive target for the men charged with the task of bringing him down: a deputy FBI boss and a former IRA terrorist.. Tags: fbi, cold war, hitman"} +{"id": "9620", "title": "Paycheck", "year": 2003, "duration_min": 119, "rating": 5.9, "genres": "Action, Adventure, Mystery, Science Fiction, Thriller", "genres_pipe": "|Action|Adventure|Mystery|Science Fiction|Thriller|", "keywords": "prophecy, engineer, scientist, millionaire", "tags_pipe": "|prophecy|engineer|scientist|millionaire|", "overview": "Michael Jennings is a genius who's hired – and paid handsomely – by high-tech firms to work on highly sensitive projects, after which his short-term memory is erased so he's incapable of breaching security. But at the end of a three-year job, he's told he isn't getting a paycheck and instead receives a mysterious envelope. In it are clues he must piece together to find out why he wasn't paid – and why he's now in hot water.", "text_for_embedding": "Paycheck (2003). Genres: Action, Adventure, Mystery, Science Fiction, Thriller. Michael Jennings is a genius who's hired – and paid handsomely – by high-tech firms to work on highly sensitive projects, after which his short-term memory is erased so he's incapable of breaching security. But at the end of a three-year job, he's told he isn't getting a paycheck and instead receives a mysterious envelope. In it are clues he must piece together to find out why he wasn't paid – and why he's now in hot water.. Tags: prophecy, engineer, scientist, millionaire"} +{"id": "9302", "title": "Up Close & Personal", "year": 1996, "duration_min": 119, "rating": 5.9, "genres": "Drama, Romance", "genres_pipe": "|Drama|Romance|", "keywords": "miami, television, career, vitamin b, reporter", "tags_pipe": "|miami|television|career|vitamin b|reporter|", "overview": "Tally Atwater has a dream: to be a prime-time network newscaster. She pursues this dream with nothing but ambition, raw talent and a homemade demo tape. Warren Justice is a brilliant, hard edged, veteran newsman. He sees Tally has talent and becomes her mentor. Tally’s career takes a meteoric rise and she and Warren fall in love. The romance that results is as intense and revealing as television news itself. Yet, each breaking story, every videotaped crisis that brings them together, also threatens to drive them apart...", "text_for_embedding": "Up Close & Personal (1996). Genres: Drama, Romance. Tally Atwater has a dream: to be a prime-time network newscaster. She pursues this dream with nothing but ambition, raw talent and a homemade demo tape. Warren Justice is a brilliant, hard edged, veteran newsman. He sees Tally has talent and becomes her mentor. Tally’s career takes a meteoric rise and she and Warren fall in love. The romance that results is as intense and revealing as television news itself. Yet, each breaking story, every videotaped crisis that brings them together, also threatens to drive them apart.... Tags: miami, television, career, vitamin b, reporter"} +{"id": "10199", "title": "The Tale of Despereaux", "year": 2008, "duration_min": 93, "rating": 5.8, "genres": "Adventure, Animation, Family", "genres_pipe": "|Adventure|Animation|Family|", "keywords": "loyalty, totalitarian regime, mouse, forgiveness, honor, unlikely friendship, courage, chivalry, animal lead", "tags_pipe": "|loyalty|totalitarian regime|mouse|forgiveness|honor|unlikely friendship|courage|chivalry|animal lead|", "overview": "Once upon a time... in the far away kingdom of Dor... lived a brave and virtuous mouse with comically oversized ears who dreamt of becoming a knight. Banished from his home for having such lofty ambitions, Despereaux sets off on an amazing adventure with his good-hearted rat friend Roscuro, who leads him, at long last, on a very noble quest to rescue an endangered princess and save an entire kingdom from darkness.", "text_for_embedding": "The Tale of Despereaux (2008). Genres: Adventure, Animation, Family. Once upon a time... in the far away kingdom of Dor... lived a brave and virtuous mouse with comically oversized ears who dreamt of becoming a knight. Banished from his home for having such lofty ambitions, Despereaux sets off on an amazing adventure with his good-hearted rat friend Roscuro, who leads him, at long last, on a very noble quest to rescue an endangered princess and save an entire kingdom from darkness.. Tags: loyalty, totalitarian regime, mouse, forgiveness, honor, unlikely friendship, courage, chivalry, animal lead"} +{"id": "10771", "title": "The Tuxedo", "year": 2002, "duration_min": 98, "rating": 5.3, "genres": "Thriller, Action, Comedy, Science Fiction", "genres_pipe": "|Thriller|Action|Comedy|Science Fiction|", "keywords": "bomb, intelligence, chauffeur, wound, secret agent, head injury", "tags_pipe": "|bomb|intelligence|chauffeur|wound|secret agent|head injury|", "overview": "Cabbie-turned-chauffeur Jimmy Tong learns there is really only one rule when you work for playboy millionaire Clark Devlin : Never touch Devlin's prized tuxedo. But when Devlin is temporarily put out of commission in an explosive accident, Jimmy puts on the tux and soon discovers that this extraordinary suit may be more black belt than black tie. Paired with a partner as inexperienced as he is, Jimmy becomes an unwitting secret agent.", "text_for_embedding": "The Tuxedo (2002). Genres: Thriller, Action, Comedy, Science Fiction. Cabbie-turned-chauffeur Jimmy Tong learns there is really only one rule when you work for playboy millionaire Clark Devlin : Never touch Devlin's prized tuxedo. But when Devlin is temporarily put out of commission in an explosive accident, Jimmy puts on the tux and soon discovers that this extraordinary suit may be more black belt than black tie. Paired with a partner as inexperienced as he is, Jimmy becomes an unwitting secret agent.. Tags: bomb, intelligence, chauffeur, wound, secret agent, head injury"} +{"id": "3512", "title": "Under Siege 2: Dark Territory", "year": 1995, "duration_min": 100, "rating": 5.6, "genres": "Action, Thriller", "genres_pipe": "|Action|Thriller|", "keywords": "terrorist, pentagon, satellite, navy seal, train", "tags_pipe": "|terrorist|pentagon|satellite|navy seal|train|", "overview": "A passenger train has been hijacked by an electronics expert and turned into an untraceable command center for a weapons satellite. He has planned to blow up Washington DC and only one man can stop him, former Navy SEAL Casey Ryback.", "text_for_embedding": "Under Siege 2: Dark Territory (1995). Genres: Action, Thriller. A passenger train has been hijacked by an electronics expert and turned into an untraceable command center for a weapons satellite. He has planned to blow up Washington DC and only one man can stop him, former Navy SEAL Casey Ryback.. Tags: terrorist, pentagon, satellite, navy seal, train"} +{"id": "137094", "title": "Jack Ryan: Shadow Recruit", "year": 2014, "duration_min": 105, "rating": 5.9, "genres": "Action, Drama, Thriller", "genres_pipe": "|Action|Drama|Thriller|", "keywords": "london england, corruption, cia, terrorist, sniper, explosive, intelligence, russia, murder, conspiracy, surveillance, agent, jack ryan, u.s. marine, rehab", "tags_pipe": "|london england|corruption|cia|terrorist|sniper|explosive|intelligence|russia|murder|conspiracy|surveillance|agent|jack ryan|u.s. marine|rehab|", "overview": "Jack Ryan, as a young covert CIA analyst, uncovers a Russian plot to crash the U.S. economy with a terrorist attack.", "text_for_embedding": "Jack Ryan: Shadow Recruit (2014). Genres: Action, Drama, Thriller. Jack Ryan, as a young covert CIA analyst, uncovers a Russian plot to crash the U.S. economy with a terrorist attack.. Tags: london england, corruption, cia, terrorist, sniper, explosive, intelligence, russia, murder, conspiracy, surveillance, agent, jack ryan, u.s. marine, rehab"} +{"id": "274479", "title": "Joy", "year": 2015, "duration_min": 124, "rating": 6.4, "genres": "Drama, Comedy", "genres_pipe": "|Drama|Comedy|", "keywords": "factory, inventor, strong woman, biography, based on true story, stolen patent", "tags_pipe": "|factory|inventor|strong woman|biography|based on true story|stolen patent|", "overview": "A story based on the life of a struggling Long Island single mom who became one of the country's most successful entrepreneurs.", "text_for_embedding": "Joy (2015). Genres: Drama, Comedy. A story based on the life of a struggling Long Island single mom who became one of the country's most successful entrepreneurs.. Tags: factory, inventor, strong woman, biography, based on true story, stolen patent"} +{"id": "267860", "title": "London Has Fallen", "year": 2016, "duration_min": 99, "rating": 5.8, "genres": "Action, Crime, Thriller", "genres_pipe": "|Action|Crime|Thriller|", "keywords": "london england, terrorist, terrorist attack", "tags_pipe": "|london england|terrorist|terrorist attack|", "overview": "In London for the Prime Minister's funeral, Mike Banning discovers a plot to assassinate all the attending world leaders.", "text_for_embedding": "London Has Fallen (2016). Genres: Action, Crime, Thriller. In London for the Prime Minister's funeral, Mike Banning discovers a plot to assassinate all the attending world leaders.. Tags: london england, terrorist, terrorist attack"} +{"id": "8078", "title": "Alien: Resurrection", "year": 1997, "duration_min": 109, "rating": 5.9, "genres": "Science Fiction, Horror, Action", "genres_pipe": "|Science Fiction|Horror|Action|", "keywords": "android, mercenary, dystopia, sequel, alien, betrayal, impalement, cloning, scientist, flamethrower, disembowelment, smuggler, gene manipulation, man in wheelchair, breeding", "tags_pipe": "|android|mercenary|dystopia|sequel|alien|betrayal|impalement|cloning|scientist|flamethrower|disembowelment|smuggler|gene manipulation|man in wheelchair|breeding|", "overview": "Two hundred years after Lt. Ripley died, a group of scientists clone her, hoping to breed the ultimate weapon. But the new Ripley is full of surprises … as are the new aliens. Ripley must team with a band of smugglers to keep the creatures from reaching Earth.", "text_for_embedding": "Alien: Resurrection (1997). Genres: Science Fiction, Horror, Action. Two hundred years after Lt. Ripley died, a group of scientists clone her, hoping to breed the ultimate weapon. But the new Ripley is full of surprises … as are the new aliens. Ripley must team with a band of smugglers to keep the creatures from reaching Earth.. Tags: android, mercenary, dystopia, sequel, alien, betrayal, impalement, cloning, scientist, flamethrower, disembowelment, smuggler, gene manipulation, man in wheelchair, breeding"} +{"id": "7485", "title": "Shooter", "year": 2007, "duration_min": 124, "rating": 6.9, "genres": "Action, Drama, Mystery, Thriller, Crime", "genres_pipe": "|Action|Drama|Mystery|Thriller|Crime|", "keywords": "corruption, sniper, senator, conspiracy of murder, childlessness, rifle, sniper rifle, fbi agent", "tags_pipe": "|corruption|sniper|senator|conspiracy of murder|childlessness|rifle|sniper rifle|fbi agent|", "overview": "A marksman living in exile is coaxed back into action after learning of a plot to kill the president. Ultimately double-crossed and framed for the attempt, he goes on the run to track the real killer and find out who exactly set him up, and why.", "text_for_embedding": "Shooter (2007). Genres: Action, Drama, Mystery, Thriller, Crime. A marksman living in exile is coaxed back into action after learning of a plot to kill the president. Ultimately double-crossed and framed for the attempt, he goes on the run to track the real killer and find out who exactly set him up, and why.. Tags: corruption, sniper, senator, conspiracy of murder, childlessness, rifle, sniper rifle, fbi agent"} +{"id": "170687", "title": "The Boxtrolls", "year": 2014, "duration_min": 97, "rating": 6.6, "genres": "Animation, Comedy, Family, Fantasy", "genres_pipe": "|Animation|Comedy|Family|Fantasy|", "keywords": "based on novel, stop motion, father daughter relationship, unlikely friendship, duringcreditsstinger", "tags_pipe": "|based on novel|stop motion|father daughter relationship|unlikely friendship|duringcreditsstinger|", "overview": "An orphaned boy raised by underground creatures called Boxtrolls comes up from the sewers and out of his box to save his family and the town from the evil exterminator, Archibald Snatcher.", "text_for_embedding": "The Boxtrolls (2014). Genres: Animation, Comedy, Family, Fantasy. An orphaned boy raised by underground creatures called Boxtrolls comes up from the sewers and out of his box to save his family and the town from the evil exterminator, Archibald Snatcher.. Tags: based on novel, stop motion, father daughter relationship, unlikely friendship, duringcreditsstinger"} +{"id": "6435", "title": "Practical Magic", "year": 1998, "duration_min": 104, "rating": 6.3, "genres": "Drama, Fantasy, Comedy", "genres_pipe": "|Drama|Fantasy|Comedy|", "keywords": "witch, magic, sorcery, love, curse, family curse", "tags_pipe": "|witch|magic|sorcery|love|curse|family curse|", "overview": "Sally and Gillian Owens, born into a magical family, have mostly avoided witchcraft themselves. But when Gillian's vicious boyfriend, Jimmy Angelov, dies unexpectedly, the Owens sisters give themselves a crash course in hard magic. With policeman Gary Hallet growing suspicious, the girls struggle to resurrect Angelov -- and unwittingly inject his corpse with an evil spirit that threatens to end their family line.", "text_for_embedding": "Practical Magic (1998). Genres: Drama, Fantasy, Comedy. Sally and Gillian Owens, born into a magical family, have mostly avoided witchcraft themselves. But when Gillian's vicious boyfriend, Jimmy Angelov, dies unexpectedly, the Owens sisters give themselves a crash course in hard magic. With policeman Gary Hallet growing suspicious, the girls struggle to resurrect Angelov -- and unwittingly inject his corpse with an evil spirit that threatens to end their family line.. Tags: witch, magic, sorcery, love, curse, family curse"} +{"id": "137106", "title": "The Lego Movie", "year": 2014, "duration_min": 100, "rating": 7.5, "genres": "Adventure, Animation, Comedy, Family, Fantasy", "genres_pipe": "|Adventure|Animation|Comedy|Family|Fantasy|", "keywords": "father son relationship, creativity, friendship, part live action, toys, based on toy, falling in love, super powers, duringcreditsstinger, different worlds, lego, batman", "tags_pipe": "|father son relationship|creativity|friendship|part live action|toys|based on toy|falling in love|super powers|duringcreditsstinger|different worlds|lego|batman|", "overview": "An ordinary Lego mini-figure, mistakenly thought to be the extraordinary MasterBuilder, is recruited to join a quest to stop an evil Lego tyrant from gluing the universe together.", "text_for_embedding": "The Lego Movie (2014). Genres: Adventure, Animation, Comedy, Family, Fantasy. An ordinary Lego mini-figure, mistakenly thought to be the extraordinary MasterBuilder, is recruited to join a quest to stop an evil Lego tyrant from gluing the universe together.. Tags: father son relationship, creativity, friendship, part live action, toys, based on toy, falling in love, super powers, duringcreditsstinger, different worlds, lego, batman"} +{"id": "10040", "title": "Miss Congeniality 2: Armed and Fabulous", "year": 2005, "duration_min": 115, "rating": 5.3, "genres": "Action, Comedy", "genres_pipe": "|Action|Comedy|", "keywords": "ransom, press conference, ship, miss america, fbi agent", "tags_pipe": "|ransom|press conference|ship|miss america|fbi agent|", "overview": "After her triumph at the Miss United States pageant, FBI agent Gracie Hart becomes an overnight sensation -- and the new \"face of the FBI.\" But it's time to spring into action again when the pageant's winner, Cheryl, and emcee, Stan, are abducted.", "text_for_embedding": "Miss Congeniality 2: Armed and Fabulous (2005). Genres: Action, Comedy. After her triumph at the Miss United States pageant, FBI agent Gracie Hart becomes an overnight sensation -- and the new \"face of the FBI.\" But it's time to spring into action again when the pageant's winner, Cheryl, and emcee, Stan, are abducted.. Tags: ransom, press conference, ship, miss america, fbi agent"} +{"id": "6278", "title": "Reign of Fire", "year": 2002, "duration_min": 101, "rating": 6.0, "genres": "Adventure, Action, Fantasy", "genres_pipe": "|Adventure|Action|Fantasy|", "keywords": "dragon, evolution, fire chief, animated map, theatre audience, dragonslayer, tunnel construction, fire repellent, drilling, iodine", "tags_pipe": "|dragon|evolution|fire chief|animated map|theatre audience|dragonslayer|tunnel construction|fire repellent|drilling|iodine|", "overview": "In post-apocalyptic England, an American volunteer and a British survivor team up to fight off a brood of fire-breathing dragons seeking to return to global dominance after centuries of rest underground. The Brit -- leading a clan of survivors to hunt down the King of the Dragons -- has much at stake: His mother was killed by a dragon, but his love is still alive.", "text_for_embedding": "Reign of Fire (2002). Genres: Adventure, Action, Fantasy. In post-apocalyptic England, an American volunteer and a British survivor team up to fight off a brood of fire-breathing dragons seeking to return to global dominance after centuries of rest underground. The Brit -- leading a clan of survivors to hunt down the King of the Dragons -- has much at stake: His mother was killed by a dragon, but his love is still alive.. Tags: dragon, evolution, fire chief, animated map, theatre audience, dragonslayer, tunnel construction, fire repellent, drilling, iodine"} +{"id": "82682", "title": "Gangster Squad", "year": 2013, "duration_min": 113, "rating": 6.2, "genres": "Crime, Drama, Action, Thriller", "genres_pipe": "|Crime|Drama|Action|Thriller|", "keywords": "los angeles, gangster", "tags_pipe": "|los angeles|gangster|", "overview": "Los Angeles, 1949. Ruthless, Brooklyn-born mob king Mickey Cohen runs the show in this town, reaping the ill-gotten gains from the drugs, the guns, the prostitutes and — if he has his way — every wire bet placed west of Chicago. And he does it all with the protection of not only his own paid goons, but also the police and the politicians who are under his control. It’s enough to intimidate even the bravest, street-hardened cop… except, perhaps, for the small, secret crew of LAPD outsiders led by Sgt. John O’Mara and Jerry Wooters who come together to try to tear Cohen’s world apart.", "text_for_embedding": "Gangster Squad (2013). Genres: Crime, Drama, Action, Thriller. Los Angeles, 1949. Ruthless, Brooklyn-born mob king Mickey Cohen runs the show in this town, reaping the ill-gotten gains from the drugs, the guns, the prostitutes and — if he has his way — every wire bet placed west of Chicago. And he does it all with the protection of not only his own paid goons, but also the police and the politicians who are under his control. It’s enough to intimidate even the bravest, street-hardened cop… except, perhaps, for the small, secret crew of LAPD outsiders led by Sgt. John O’Mara and Jerry Wooters who come together to try to tear Cohen’s world apart.. Tags: los angeles, gangster"} +{"id": "17610", "title": "Year One", "year": 2009, "duration_min": 97, "rating": 4.6, "genres": "Comedy, Adventure", "genres_pipe": "|Comedy|Adventure|", "keywords": "temple, slavery, stone age, circumcision, hebrews, cavemen, prehistoric adventure, duringcreditsstinger, prehistoric times, prehistoric man", "tags_pipe": "|temple|slavery|stone age|circumcision|hebrews|cavemen|prehistoric adventure|duringcreditsstinger|prehistoric times|prehistoric man|", "overview": "When a couple of lazy hunter-gatherers are banished from their primitive village, they set off on an epic journey through the ancient world.", "text_for_embedding": "Year One (2009). Genres: Comedy, Adventure. When a couple of lazy hunter-gatherers are banished from their primitive village, they set off on an epic journey through the ancient world.. Tags: temple, slavery, stone age, circumcision, hebrews, cavemen, prehistoric adventure, duringcreditsstinger, prehistoric times, prehistoric man"} +{"id": "22954", "title": "Invictus", "year": 2009, "duration_min": 134, "rating": 7.0, "genres": "Drama, History", "genres_pipe": "|Drama|History|", "keywords": "stadium, south africa, apartheid, nelson mandela, sport, nation, rugby, president, racism, poverty, celebration, duringcreditsstinger", "tags_pipe": "|stadium|south africa|apartheid|nelson mandela|sport|nation|rugby|president|racism|poverty|celebration|duringcreditsstinger|", "overview": "Newly elected President Nelson Mandela knows his nation remains racially and economically divided in the wake of apartheid. Believing he can bring his people together through the universal language of sport, Mandela rallies South Africa's rugby team as they make their historic run to the 1995 Rugby World Cup Championship match.", "text_for_embedding": "Invictus (2009). Genres: Drama, History. Newly elected President Nelson Mandela knows his nation remains racially and economically divided in the wake of apartheid. Believing he can bring his people together through the universal language of sport, Mandela rallies South Africa's rugby team as they make their historic run to the 1995 Rugby World Cup Championship match.. Tags: stadium, south africa, apartheid, nelson mandela, sport, nation, rugby, president, racism, poverty, celebration, duringcreditsstinger"} +{"id": "16995", "title": "State of Play", "year": 2009, "duration_min": 127, "rating": 6.7, "genres": "Action", "genres_pipe": "|Action|", "keywords": "corruption, assassination, detective, journalist, assassin, newspaper, congress, editor-in-chief, conspiracy of murder, politics, election campaign, government, murder, thriller, blog", "tags_pipe": "|corruption|assassination|detective|journalist|assassin|newspaper|congress|editor-in-chief|conspiracy of murder|politics|election campaign|government|murder|thriller|blog|", "overview": "Handsome, unflappable U.S. Congressman Stephen Collins is the future of his political party: an honorable appointee who serves as the chairman of a committee overseeing defense spending. All eyes are upon the rising star to be his party's contender for the upcoming presidential race. Until his research assistant/mistress is brutally murdered and buried secrets come tumbling out.", "text_for_embedding": "State of Play (2009). Genres: Action. Handsome, unflappable U.S. Congressman Stephen Collins is the future of his political party: an honorable appointee who serves as the chairman of a committee overseeing defense spending. All eyes are upon the rising star to be his party's contender for the upcoming presidential race. Until his research assistant/mistress is brutally murdered and buried secrets come tumbling out.. Tags: corruption, assassination, detective, journalist, assassin, newspaper, congress, editor-in-chief, conspiracy of murder, politics, election campaign, government, murder, thriller, blog"} +{"id": "16558", "title": "Duplicity", "year": 2009, "duration_min": 125, "rating": 5.7, "genres": "Romance, Comedy, Crime", "genres_pipe": "|Romance|Comedy|Crime|", "keywords": "spy", "tags_pipe": "|spy|", "overview": "Two romantically-engaged corporate spies team up to manipulate a corporate race to corner the market on a medical innovation that will reap huge profits and enable them to lead an extravagant lifestyle together.", "text_for_embedding": "Duplicity (2009). Genres: Romance, Comedy, Crime. Two romantically-engaged corporate spies team up to manipulate a corporate race to corner the market on a medical innovation that will reap huge profits and enable them to lead an extravagant lifestyle together.. Tags: spy"} +{"id": "9849", "title": "My Favorite Martian", "year": 1999, "duration_min": 94, "rating": 5.1, "genres": "Comedy, Drama, Family, Science Fiction", "genres_pipe": "|Comedy|Drama|Family|Science Fiction|", "keywords": "alien, martian, based on tv series, fish out of water", "tags_pipe": "|alien|martian|based on tv series|fish out of water|", "overview": "News producer, Tim O'Hara gets himself fired for unwillingly compromising his bosses' daughter during a live transmission. A little later, he witnesses the crashing of a small Martian spacecraft, realizing his one-time chance of delivering a story that will rock the earth. Since Tim took the original but scaled-down spaceship with him, the Martian follows him to retrieve it.", "text_for_embedding": "My Favorite Martian (1999). Genres: Comedy, Drama, Family, Science Fiction. News producer, Tim O'Hara gets himself fired for unwillingly compromising his bosses' daughter during a live transmission. A little later, he witnesses the crashing of a small Martian spacecraft, realizing his one-time chance of delivering a story that will rock the earth. Since Tim took the original but scaled-down spaceship with him, the Martian follows him to retrieve it.. Tags: alien, martian, based on tv series, fish out of water"} +{"id": "5820", "title": "The Sentinel", "year": 2006, "duration_min": 108, "rating": 5.8, "genres": "Action, Thriller, Crime", "genres_pipe": "|Action|Thriller|Crime|", "keywords": "usa president, agent", "tags_pipe": "|usa president|agent|", "overview": "A secret service agent is framed as the mole in an assassination attempt on the president. He must clear his name and foil another assassination attempt while on the run from a relentless FBI agent.", "text_for_embedding": "The Sentinel (2006). Genres: Action, Thriller, Crime. A secret service agent is framed as the mole in an assassination attempt on the president. He must clear his name and foil another assassination attempt while on the run from a relentless FBI agent.. Tags: usa president, agent"} +{"id": "16866", "title": "Planet 51", "year": 2009, "duration_min": 91, "rating": 5.6, "genres": "Science Fiction, Animation, Family, Comedy, Adventure", "genres_pipe": "|Science Fiction|Animation|Family|Comedy|Adventure|", "keywords": "flying saucer, alien life-form, spaceship, alien, alien planet, planet, duringcreditsstinger", "tags_pipe": "|flying saucer|alien life-form|spaceship|alien|alien planet|planet|duringcreditsstinger|", "overview": "When Earth astronaut Capt. Chuck Baker arrives on Planet 51 -- a world reminiscent of American suburbia circa 1950 -- he tries to avoid capture, recover his spaceship and make it home safely, all with the help of an empathetic little green being.", "text_for_embedding": "Planet 51 (2009). Genres: Science Fiction, Animation, Family, Comedy, Adventure. When Earth astronaut Capt. Chuck Baker arrives on Planet 51 -- a world reminiscent of American suburbia circa 1950 -- he tries to avoid capture, recover his spaceship and make it home safely, all with the help of an empathetic little green being.. Tags: flying saucer, alien life-form, spaceship, alien, alien planet, planet, duringcreditsstinger"} +{"id": "201", "title": "Star Trek: Nemesis", "year": 2002, "duration_min": 117, "rating": 6.1, "genres": "Science Fiction, Action, Adventure, Thriller", "genres_pipe": "|Science Fiction|Action|Adventure|Thriller|", "keywords": "clone, assassination, ambush, federation, starfleet, enterprise-e, romulus, android, senate, self sacrifice, telepathy, weapon, romulans, space opera", "tags_pipe": "|clone|assassination|ambush|federation|starfleet|enterprise-e|romulus|android|senate|self sacrifice|telepathy|weapon|romulans|space opera|", "overview": "En route to the honeymoon of William Riker to Deanna Troi on her home planet of Betazed, Captain Jean-Luc Picard and the crew of the U.S.S. Enterprise receives word from Starfleet that a coup has resulted in the installation of a new Romulan political leader, Shinzon, who claims to seek peace with the human-backed United Federation of Planets. Once in enemy territory, the captain and his crew make a startling discovery: Shinzon is human, a slave from the Romulan sister planet of Remus, and has a secret, shocking relationship to Picard himself.", "text_for_embedding": "Star Trek: Nemesis (2002). Genres: Science Fiction, Action, Adventure, Thriller. En route to the honeymoon of William Riker to Deanna Troi on her home planet of Betazed, Captain Jean-Luc Picard and the crew of the U.S.S. Enterprise receives word from Starfleet that a coup has resulted in the installation of a new Romulan political leader, Shinzon, who claims to seek peace with the human-backed United Federation of Planets. Once in enemy territory, the captain and his crew make a startling discovery: Shinzon is human, a slave from the Romulan sister planet of Remus, and has a secret, shocking relationship to Picard himself.. Tags: clone, assassination, ambush, federation, starfleet, enterprise-e, romulus, android, senate, self sacrifice, telepathy, weapon, romulans, space opera"} +{"id": "11775", "title": "Intolerable Cruelty", "year": 2003, "duration_min": 100, "rating": 5.8, "genres": "Crime, Comedy, Romance", "genres_pipe": "|Crime|Comedy|Romance|", "keywords": "california, assassin, infidelity, fetish, hitman, tycoon, court, satire, lawyer, inheritance, divorce", "tags_pipe": "|california|assassin|infidelity|fetish|hitman|tycoon|court|satire|lawyer|inheritance|divorce|", "overview": "A revenge-seeking gold digger marries a womanizing Beverly Hills lawyer with the intention of making a killing in the divorce.", "text_for_embedding": "Intolerable Cruelty (2003). Genres: Crime, Comedy, Romance. A revenge-seeking gold digger marries a womanizing Beverly Hills lawyer with the intention of making a killing in the divorce.. Tags: california, assassin, infidelity, fetish, hitman, tycoon, court, satire, lawyer, inheritance, divorce"} +{"id": "87825", "title": "Trouble with the Curve", "year": 2012, "duration_min": 111, "rating": 6.6, "genres": "Drama, Romance", "genres_pipe": "|Drama|Romance|", "keywords": "women, baseball, pitcher, home run, aging, sport, talent-scout, cigar smoking, poor eyesight, boston red sox, draft, motel room, baseball scout, failing eyesight, blurry vision", "tags_pipe": "|women|baseball|pitcher|home run|aging|sport|talent-scout|cigar smoking|poor eyesight|boston red sox|draft|motel room|baseball scout|failing eyesight|blurry vision|", "overview": "Slowed by age and failing eyesight, crack baseball scout Gus Lobel takes his grown daughter along as he checks out the final prospect of his career. Along the way, the two renew their bond, and she catches the eye of a young player-turned-scout.", "text_for_embedding": "Trouble with the Curve (2012). Genres: Drama, Romance. Slowed by age and failing eyesight, crack baseball scout Gus Lobel takes his grown daughter along as he checks out the final prospect of his career. Along the way, the two renew their bond, and she catches the eye of a young player-turned-scout.. Tags: women, baseball, pitcher, home run, aging, sport, talent-scout, cigar smoking, poor eyesight, boston red sox, draft, motel room, baseball scout, failing eyesight, blurry vision"} +{"id": "12201", "title": "Edge of Darkness", "year": 2010, "duration_min": 117, "rating": 6.2, "genres": "Crime, Drama, Mystery, Thriller", "genres_pipe": "|Crime|Drama|Mystery|Thriller|", "keywords": "murder, violence, death of daughter, homicide detective", "tags_pipe": "|murder|violence|death of daughter|homicide detective|", "overview": "As a seasoned homicide detective, Thomas Craven has seen the bleakest side of humanity. But nothing prepares him for the toughest investigation of his life: the search for his only daughter Emma's killer. Now, he is on a personal mission to uncover the disturbing secrets surrounding her murder, including corporate corruption, government collusion and Emma's own mysterious life.", "text_for_embedding": "Edge of Darkness (2010). Genres: Crime, Drama, Mystery, Thriller. As a seasoned homicide detective, Thomas Craven has seen the bleakest side of humanity. But nothing prepares him for the toughest investigation of his life: the search for his only daughter Emma's killer. Now, he is on a personal mission to uncover the disturbing secrets surrounding her murder, including corporate corruption, government collusion and Emma's own mysterious life.. Tags: murder, violence, death of daughter, homicide detective"} +{"id": "11015", "title": "The Relic", "year": 1997, "duration_min": 110, "rating": 5.8, "genres": "Horror, Mystery, Thriller", "genres_pipe": "|Horror|Mystery|Thriller|", "keywords": "chicago, based on novel, monster, museum, pile of dead bodies, god, dead body, anthropologist, indian tribe, amazon jungle", "tags_pipe": "|chicago|based on novel|monster|museum|pile of dead bodies|god|dead body|anthropologist|indian tribe|amazon jungle|", "overview": "A researcher at Chicago's Natural History Museum returns from South America with some crates containing his findings. When the crates arrive at the museum without the owner there appears to be very little inside. However, police discover gruesome murders on the cargo ship that brought the crates to the US and then another murder in the museum itself.", "text_for_embedding": "The Relic (1997). Genres: Horror, Mystery, Thriller. A researcher at Chicago's Natural History Museum returns from South America with some crates containing his findings. When the crates arrive at the museum without the owner there appears to be very little inside. However, police discover gruesome murders on the cargo ship that brought the crates to the US and then another murder in the museum itself.. Tags: chicago, based on novel, monster, museum, pile of dead bodies, god, dead body, anthropologist, indian tribe, amazon jungle"} +{"id": "9932", "title": "Analyze That", "year": 2002, "duration_min": 96, "rating": 5.7, "genres": "Comedy, Crime", "genres_pipe": "|Comedy|Crime|", "keywords": "prison, gold, therapist, gangster", "tags_pipe": "|prison|gold|therapist|gangster|", "overview": "The mafia's Paul Vitti is back in prison and will need some serious counseling when he gets out. Naturally, he returns to his analyst Dr. Ben Sobel for help and finds that Sobel needs some serious help himself as he has inherited the family practice, as well as an excess stock of stress.", "text_for_embedding": "Analyze That (2002). Genres: Comedy, Crime. The mafia's Paul Vitti is back in prison and will need some serious counseling when he gets out. Naturally, he returns to his analyst Dr. Ben Sobel for help and finds that Sobel needs some serious help himself as he has inherited the family practice, as well as an excess stock of stress.. Tags: prison, gold, therapist, gangster"} +{"id": "13389", "title": "Righteous Kill", "year": 2008, "duration_min": 101, "rating": 5.9, "genres": "Action, Crime, Drama, Thriller", "genres_pipe": "|Action|Crime|Drama|Thriller|", "keywords": "revenge, murder, plot twist, dirty cop", "tags_pipe": "|revenge|murder|plot twist|dirty cop|", "overview": "Two veteran New York City detectives work to identify the possible connection between a recent murder and a case they believe they solved years ago; is there a serial killer on the loose, and did they perhaps put the wrong person behind bars?", "text_for_embedding": "Righteous Kill (2008). Genres: Action, Crime, Drama, Thriller. Two veteran New York City detectives work to identify the possible connection between a recent murder and a case they believe they solved years ago; is there a serial killer on the loose, and did they perhaps put the wrong person behind bars?. Tags: revenge, murder, plot twist, dirty cop"} +{"id": "8838", "title": "Mercury Rising", "year": 1998, "duration_min": 111, "rating": 6.0, "genres": "Action, Crime, Drama, Thriller", "genres_pipe": "|Action|Crime|Drama|Thriller|", "keywords": "assassin, loss of family, autism, fbi, bangkok, national security agency (nsa), boy, child in peril, fbi agent, autistic savant", "tags_pipe": "|assassin|loss of family|autism|fbi|bangkok|national security agency (nsa)|boy|child in peril|fbi agent|autistic savant|", "overview": "Renegade FBI agent Art Jeffries protects a nine-year-old autistic boy who has cracked the government's new \"unbreakable\" code.", "text_for_embedding": "Mercury Rising (1998). Genres: Action, Crime, Drama, Thriller. Renegade FBI agent Art Jeffries protects a nine-year-old autistic boy who has cracked the government's new \"unbreakable\" code.. Tags: assassin, loss of family, autism, fbi, bangkok, national security agency (nsa), boy, child in peril, fbi agent, autistic savant"} +{"id": "17332", "title": "The Soloist", "year": 2009, "duration_min": 109, "rating": 6.6, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "newspaper, cello, musical, violin, los angeles", "tags_pipe": "|newspaper|cello|musical|violin|los angeles|", "overview": "A Los Angeles journalist befriends a homeless Juilliard-trained musician, while looking for a new article for the paper.", "text_for_embedding": "The Soloist (2009). Genres: Drama. A Los Angeles journalist befriends a homeless Juilliard-trained musician, while looking for a new article for the paper.. Tags: newspaper, cello, musical, violin, los angeles"} +{"id": "4958", "title": "The Legend of Bagger Vance", "year": 2000, "duration_min": 126, "rating": 6.3, "genres": "Fantasy, Drama", "genres_pipe": "|Fantasy|Drama|", "keywords": "competition, world war i, great depression, caddy, savannah", "tags_pipe": "|competition|world war i|great depression|caddy|savannah|", "overview": "World War I has left golfer Rannulph Junuh a poker-playing alcoholic, his perfect swing gone. Now, however, he needs to get it back to play in a tournament to save the financially ravaged golf course of a long-ago sweetheart. Help arrives in the form of mysterious caddy Bagger Vance.", "text_for_embedding": "The Legend of Bagger Vance (2000). Genres: Fantasy, Drama. World War I has left golfer Rannulph Junuh a poker-playing alcoholic, his perfect swing gone. Now, however, he needs to get it back to play in a tournament to save the financially ravaged golf course of a long-ago sweetheart. Help arrives in the form of mysterious caddy Bagger Vance.. Tags: competition, world war i, great depression, caddy, savannah"} +{"id": "786", "title": "Almost Famous", "year": 2000, "duration_min": 122, "rating": 7.4, "genres": "Drama, Music", "genres_pipe": "|Drama|Music|", "keywords": "hotel room, san diego, drug addiction, stewardess, overdose, groupie, music journalist, black sabbath, rock, concert, swimming pool, based on true story, promiscuity, coming of age, on the road", "tags_pipe": "|hotel room|san diego|drug addiction|stewardess|overdose|groupie|music journalist|black sabbath|rock|concert|swimming pool|based on true story|promiscuity|coming of age|on the road|", "overview": "Almost Famous is an autobiographical inspired film about a 15-year-old who is hired by Rolling Stone magazine to follow and interview a rock band during their tour. A film about growing up, first love, disappointment, and the life of a rock star.", "text_for_embedding": "Almost Famous (2000). Genres: Drama, Music. Almost Famous is an autobiographical inspired film about a 15-year-old who is hired by Rolling Stone magazine to follow and interview a rock band during their tour. A film about growing up, first love, disappointment, and the life of a rock star.. Tags: hotel room, san diego, drug addiction, stewardess, overdose, groupie, music journalist, black sabbath, rock, concert, swimming pool, based on true story, promiscuity, coming of age, on the road"} +{"id": "9513", "title": "Garfield: A Tail of Two Kitties", "year": 2006, "duration_min": 78, "rating": 5.1, "genres": "Animation, Comedy, Family", "genres_pipe": "|Animation|Comedy|Family|", "keywords": "london england, cat, mistake in person, luxury, wretch, nobility, garfield", "tags_pipe": "|london england|cat|mistake in person|luxury|wretch|nobility|garfield|", "overview": "Garfield is back and this time Garfield and his canine sidekick Odie follows their owner, Jon Arbuckle, to England, the U.K. may never recover, as Garfield is mistaken for a look-alike, regal cat who has inherited a castle.", "text_for_embedding": "Garfield: A Tail of Two Kitties (2006). Genres: Animation, Comedy, Family. Garfield is back and this time Garfield and his canine sidekick Odie follows their owner, Jon Arbuckle, to England, the U.K. may never recover, as Garfield is mistaken for a look-alike, regal cat who has inherited a castle.. Tags: london england, cat, mistake in person, luxury, wretch, nobility, garfield"} +{"id": "11679", "title": "xXx: State of the Union", "year": 2005, "duration_min": 101, "rating": 4.7, "genres": "Action, Adventure, Crime, Drama, Mystery, Thriller", "genres_pipe": "|Action|Adventure|Crime|Drama|Mystery|Thriller|", "keywords": "washington d.c., helicopter, usa president, general, coup d'etat, military prison, coup, agent, insurgent, secretary of defense, potus", "tags_pipe": "|washington d.c.|helicopter|usa president|general|coup d'etat|military prison|coup|agent|insurgent|secretary of defense|potus|", "overview": "Ice Cube stars as Darius Stone, a thrill-seeking troublemaker whose criminal record and extreme sports obsession make him the perfect candidate to be the newest XXX agent. He must save the U.S. government from a deadly conspiracy led by five-star general and Secretary of Defense George Deckert (played by Willem Dafoe).", "text_for_embedding": "xXx: State of the Union (2005). Genres: Action, Adventure, Crime, Drama, Mystery, Thriller. Ice Cube stars as Darius Stone, a thrill-seeking troublemaker whose criminal record and extreme sports obsession make him the perfect candidate to be the newest XXX agent. He must save the U.S. government from a deadly conspiracy led by five-star general and Secretary of Defense George Deckert (played by Willem Dafoe).. Tags: washington d.c., helicopter, usa president, general, coup d'etat, military prison, coup, agent, insurgent, secretary of defense, potus"} +{"id": "38321", "title": "Priest", "year": 2011, "duration_min": 87, "rating": 5.4, "genres": "Action, Science Fiction, Fantasy, Thriller, Horror", "genres_pipe": "|Action|Science Fiction|Fantasy|Thriller|Horror|", "keywords": "vampire, crucifixion, post-apocalyptic, dystopia, vampire hunter, disobey, niece, dark hero", "tags_pipe": "|vampire|crucifixion|post-apocalyptic|dystopia|vampire hunter|disobey|niece|dark hero|", "overview": "In an alternate world, humanity and vampires have warred for centuries. After the last Vampire War, the veteran Warrior Priest lives in obscurity with other humans inside one of the Church's walled cities. When the Priest's niece is kidnapped by vampires, the Priest breaks his vows to hunt them down. He is accompanied by the niece's boyfriend, who is a wasteland sheriff, and a former Warrior Priestess.", "text_for_embedding": "Priest (2011). Genres: Action, Science Fiction, Fantasy, Thriller, Horror. In an alternate world, humanity and vampires have warred for centuries. After the last Vampire War, the veteran Warrior Priest lives in obscurity with other humans inside one of the Church's walled cities. When the Priest's niece is kidnapped by vampires, the Priest breaks his vows to hunt them down. He is accompanied by the niece's boyfriend, who is a wasteland sheriff, and a former Warrior Priestess.. Tags: vampire, crucifixion, post-apocalyptic, dystopia, vampire hunter, disobey, niece, dark hero"} +{"id": "14411", "title": "Sinbad: Legend of the Seven Seas", "year": 2003, "duration_min": 86, "rating": 6.6, "genres": "Family, Animation, Adventure", "genres_pipe": "|Family|Animation|Adventure|", "keywords": "prince, water monster", "tags_pipe": "|prince|water monster|", "overview": "The sailor of legend is framed by the goddess Eris for the theft of the Book of Peace, and must travel to her realm at the end of the world to retrieve it and save the life of his childhood friend Prince Proteus.", "text_for_embedding": "Sinbad: Legend of the Seven Seas (2003). Genres: Family, Animation, Adventure. The sailor of legend is framed by the goddess Eris for the theft of the Book of Peace, and must travel to her realm at the end of the world to retrieve it and save the life of his childhood friend Prince Proteus.. Tags: prince, water monster"} +{"id": "8413", "title": "Event Horizon", "year": 1997, "duration_min": 96, "rating": 6.5, "genres": "Horror, Science Fiction, Mystery", "genres_pipe": "|Horror|Science Fiction|Mystery|", "keywords": "space marine, nudity, nightmare, hallucination, cryogenics, space travel, black hole, insanity, delusion, crew, alternate dimension, evil spirit, hellgate, religion, explosion", "tags_pipe": "|space marine|nudity|nightmare|hallucination|cryogenics|space travel|black hole|insanity|delusion|crew|alternate dimension|evil spirit|hellgate|religion|explosion|", "overview": "In the year 2047 a group of astronauts are sent to investigate and salvage the long lost starship \"Event Horizon\". The ship disappeared mysteriously 7 years before on its maiden voyage and with its return comes even more mystery as the crew of the \"Lewis and Clark\" discover the real truth behind its disappearance and something even more terrifying.", "text_for_embedding": "Event Horizon (1997). Genres: Horror, Science Fiction, Mystery. In the year 2047 a group of astronauts are sent to investigate and salvage the long lost starship \"Event Horizon\". The ship disappeared mysteriously 7 years before on its maiden voyage and with its return comes even more mystery as the crew of the \"Lewis and Clark\" discover the real truth behind its disappearance and something even more terrifying.. Tags: space marine, nudity, nightmare, hallucination, cryogenics, space travel, black hole, insanity, delusion, crew, alternate dimension, evil spirit, hellgate, religion, explosion"} +{"id": "10052", "title": "Dragonfly", "year": 2002, "duration_min": 104, "rating": 6.1, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "pregnancy and birth, voice, dragonfly, car crash, jungle, hospital, doctor, humanitarian, spiritism", "tags_pipe": "|pregnancy and birth|voice|dragonfly|car crash|jungle|hospital|doctor|humanitarian|spiritism|", "overview": "A grieving doctor is being contacted by his late wife through his patients near death experiences.", "text_for_embedding": "Dragonfly (2002). Genres: Drama. A grieving doctor is being contacted by his late wife through his patients near death experiences.. Tags: pregnancy and birth, voice, dragonfly, car crash, jungle, hospital, doctor, humanitarian, spiritism"} +{"id": "9676", "title": "The Black Dahlia", "year": 2006, "duration_min": 121, "rating": 5.7, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "pornography, observer, los angeles, murder hunt", "tags_pipe": "|pornography|observer|los angeles|murder hunt|", "overview": "Lee Blanchard and Bucky Bleichert are former boxers-turned-cops in 1940s Los Angeles and, when an aspiring young actress turns up dead, Blanchard and Bleichert must grapple with corruption, narcissism, stag films and family madness as they pursue the killer.", "text_for_embedding": "The Black Dahlia (2006). Genres: Drama. Lee Blanchard and Bucky Bleichert are former boxers-turned-cops in 1940s Los Angeles and, when an aspiring young actress turns up dead, Blanchard and Bleichert must grapple with corruption, narcissism, stag films and family madness as they pursue the killer.. Tags: pornography, observer, los angeles, murder hunt"} +{"id": "9664", "title": "Flyboys", "year": 2006, "duration_min": 140, "rating": 6.3, "genres": "Action, Adventure, Drama, History, Romance, War", "genres_pipe": "|Action|Adventure|Drama|History|Romance|War|", "keywords": "world war i, biplane", "tags_pipe": "|world war i|biplane|", "overview": "The adventures of the Lafayette Escadrille, young Americans who volunteered for the French military before the U.S. entered World War I, and became the country's first fighter pilots.", "text_for_embedding": "Flyboys (2006). Genres: Action, Adventure, Drama, History, Romance, War. The adventures of the Lafayette Escadrille, young Americans who volunteered for the French military before the U.S. entered World War I, and became the country's first fighter pilots.. Tags: world war i, biplane"} +{"id": "2100", "title": "The Last Castle", "year": 2001, "duration_min": 131, "rating": 7.0, "genres": "Action, Drama, Thriller", "genres_pipe": "|Action|Drama|Thriller|", "keywords": "prison, general", "tags_pipe": "|prison|general|", "overview": "A Court Martialed general rallies together 1200 inmates to rise against the system that put him away.", "text_for_embedding": "The Last Castle (2001). Genres: Action, Drama, Thriller. A Court Martialed general rallies together 1200 inmates to rise against the system that put him away.. Tags: prison, general"} +{"id": "10384", "title": "Supernova", "year": 2000, "duration_min": 91, "rating": 4.9, "genres": "Horror, Science Fiction, Thriller", "genres_pipe": "|Horror|Science Fiction|Thriller|", "keywords": "black people, starships, future, star, supernova, blast", "tags_pipe": "|black people|starships|future|star|supernova|blast|", "overview": "Set in the 22nd century, when a battered salvage ship sends out a distress signal, the seasoned crew of the rescue hospital ship Nova-17 responds. What they find is a black hole--that threatens to destroy both ships--and a mysterious survivor whose body quickly mutates into a monstrous and deadly form.", "text_for_embedding": "Supernova (2000). Genres: Horror, Science Fiction, Thriller. Set in the 22nd century, when a battered salvage ship sends out a distress signal, the seasoned crew of the rescue hospital ship Nova-17 responds. What they find is a black hole--that threatens to destroy both ships--and a mysterious survivor whose body quickly mutates into a monstrous and deadly form.. Tags: black people, starships, future, star, supernova, blast"} +{"id": "137321", "title": "Winter's Tale", "year": 2014, "duration_min": 118, "rating": 6.0, "genres": "Drama, Fantasy, Mystery, Romance", "genres_pipe": "|Drama|Fantasy|Mystery|Romance|", "keywords": "based on novel", "tags_pipe": "|based on novel|", "overview": "A burglar falls for an heiress as she dies in his arms. When he learns that he has the gift of reincarnation, he sets out to save her.", "text_for_embedding": "Winter's Tale (2014). Genres: Drama, Fantasy, Mystery, Romance. A burglar falls for an heiress as she dies in his arms. When he learns that he has the gift of reincarnation, he sets out to save her.. Tags: based on novel"} +{"id": "123553", "title": "The Mortal Instruments: City of Bones", "year": 2013, "duration_min": 130, "rating": 6.2, "genres": "Action, Adventure, Drama, Mystery, Romance, Fantasy", "genres_pipe": "|Action|Adventure|Drama|Mystery|Romance|Fantasy|", "keywords": "angel, vampire, werewolf, warlock, downworlder, shadowhunter, demon hunter, based on young adult novel", "tags_pipe": "|angel|vampire|werewolf|warlock|downworlder|shadowhunter|demon hunter|based on young adult novel|", "overview": "In New York City, Clary Fray, a seemingly ordinary teenager, learns that she is descended from a line of Shadowhunters — half-angel warriors who protect humanity from evil forces. After her mother disappears, Clary joins forces with a group of Shadowhunters and enters Downworld, an alternate realm filled with demons, vampires, and a host of other creatures. Clary and her companions must find and protect an ancient cup that holds the key to her mother's future.", "text_for_embedding": "The Mortal Instruments: City of Bones (2013). Genres: Action, Adventure, Drama, Mystery, Romance, Fantasy. In New York City, Clary Fray, a seemingly ordinary teenager, learns that she is descended from a line of Shadowhunters — half-angel warriors who protect humanity from evil forces. After her mother disappears, Clary joins forces with a group of Shadowhunters and enters Downworld, an alternate realm filled with demons, vampires, and a host of other creatures. Clary and her companions must find and protect an ancient cup that holds the key to her mother's future.. Tags: angel, vampire, werewolf, warlock, downworlder, shadowhunter, demon hunter, based on young adult novel"} +{"id": "11260", "title": "Meet Dave", "year": 2008, "duration_min": 90, "rating": 5.0, "genres": "Comedy, Science Fiction, Adventure, Family", "genres_pipe": "|Comedy|Science Fiction|Adventure|Family|", "keywords": "new york, captain, starships, new love, earth, friendship, crew, car crash, space, alien, survival, planet, duringcreditsstinger", "tags_pipe": "|new york|captain|starships|new love|earth|friendship|crew|car crash|space|alien|survival|planet|duringcreditsstinger|", "overview": "A crew of miniature aliens operate a spaceship that has a human form. While trying to save their planet, the aliens encounter a new problem, as their ship becomes smitten with an Earth woman.", "text_for_embedding": "Meet Dave (2008). Genres: Comedy, Science Fiction, Adventure, Family. A crew of miniature aliens operate a spaceship that has a human form. While trying to save their planet, the aliens encounter a new problem, as their ship becomes smitten with an Earth woman.. Tags: new york, captain, starships, new love, earth, friendship, crew, car crash, space, alien, survival, planet, duringcreditsstinger"} +{"id": "9009", "title": "Dark Water", "year": 2005, "duration_min": 105, "rating": 5.3, "genres": "Drama, Horror, Thriller", "genres_pipe": "|Drama|Horror|Thriller|", "keywords": "based on novel, water, remake, teacher, divorce, apartment, ghost, manhattan, new york city", "tags_pipe": "|based on novel|water|remake|teacher|divorce|apartment|ghost|manhattan, new york city|", "overview": "Dahlia Williams and her daughter Cecelia move into a rundown apartment on New York's Roosevelt Island. She is currently in midst of divorce proceedings and the apartment, though near an excellent school for her daughter, is all she can afford. From the time she arrives, there are mysterious occurrences and there is a constant drip from the ceiling in her daughter's bedroom.", "text_for_embedding": "Dark Water (2005). Genres: Drama, Horror, Thriller. Dahlia Williams and her daughter Cecelia move into a rundown apartment on New York's Roosevelt Island. She is currently in midst of divorce proceedings and the apartment, though near an excellent school for her daughter, is all she can afford. From the time she arrives, there are mysterious occurrences and there is a constant drip from the ceiling in her daughter's bedroom.. Tags: based on novel, water, remake, teacher, divorce, apartment, ghost, manhattan, new york city"} +{"id": "11374", "title": "Edtv", "year": 1999, "duration_min": 122, "rating": 5.7, "genres": "Comedy", "genres_pipe": "|Comedy|", "keywords": "tv show, tv station, simulated reality , reality tv, tv star, tv ratings", "tags_pipe": "|tv show|tv station|simulated reality |reality tv|tv star|tv ratings|", "overview": "Video store clerk Ed agrees to have his life filmed by a camera crew for a tv network.", "text_for_embedding": "Edtv (1999). Genres: Comedy. Video store clerk Ed agrees to have his life filmed by a camera crew for a tv network.. Tags: tv show, tv station, simulated reality , reality tv, tv star, tv ratings"} +{"id": "2309", "title": "Inkheart", "year": 2008, "duration_min": 106, "rating": 6.0, "genres": "Adventure, Family, Fantasy", "genres_pipe": "|Adventure|Family|Fantasy|", "keywords": "book, fairy tale, eavesdropping, adventure, writer's block", "tags_pipe": "|book|fairy tale|eavesdropping|adventure|writer's block|", "overview": "The adventures of a father and his young daughter, in their search for a long lost book that will help reunite a missing, close relative.", "text_for_embedding": "Inkheart (2008). Genres: Adventure, Family, Fantasy. The adventures of a father and his young daughter, in their search for a long lost book that will help reunite a missing, close relative.. Tags: book, fairy tale, eavesdropping, adventure, writer's block"} +{"id": "8285", "title": "The Spirit", "year": 2008, "duration_min": 103, "rating": 4.7, "genres": "Action, Comedy, Thriller, Crime, Science Fiction", "genres_pipe": "|Action|Comedy|Thriller|Crime|Science Fiction|", "keywords": "secret identity, robber, mask, frog, based on comic strip, back from the dead", "tags_pipe": "|secret identity|robber|mask|frog|based on comic strip|back from the dead|", "overview": "Down these mean streets a man must come. A hero born, murdered, and born again. When a Rookie cop named Denny Colt returns from the beyond as The Spirit, a hero whose mission is to fight against the bad forces from the shadows of Central City, the Octopus who kills anyone unfortunate enough to see his face who has other plans. He's going to wipe out the entire city.", "text_for_embedding": "The Spirit (2008). Genres: Action, Comedy, Thriller, Crime, Science Fiction. Down these mean streets a man must come. A hero born, murdered, and born again. When a Rookie cop named Denny Colt returns from the beyond as The Spirit, a hero whose mission is to fight against the bad forces from the shadows of Central City, the Octopus who kills anyone unfortunate enough to see his face who has other plans. He's going to wipe out the entire city.. Tags: secret identity, robber, mask, frog, based on comic strip, back from the dead"} +{"id": "210860", "title": "Mortdecai", "year": 2015, "duration_min": 106, "rating": 5.4, "genres": "Comedy, Adventure", "genres_pipe": "|Comedy|Adventure|", "keywords": "based on novel, painting, debt, art dealer, stolen painting", "tags_pipe": "|based on novel|painting|debt|art dealer|stolen painting|", "overview": "Art dealer, Charles Mortdecai, searches for a stolen painting rumored to contain a secret code that gains access to hidden Nazi gold.", "text_for_embedding": "Mortdecai (2015). Genres: Comedy, Adventure. Art dealer, Charles Mortdecai, searches for a stolen painting rumored to contain a secret code that gains access to hidden Nazi gold.. Tags: based on novel, painting, debt, art dealer, stolen painting"} +{"id": "2312", "title": "In the Name of the King: A Dungeon Siege Tale", "year": 2007, "duration_min": 127, "rating": 4.1, "genres": "Adventure, Fantasy, Action, Drama", "genres_pipe": "|Adventure|Fantasy|Action|Drama|", "keywords": "fictional place, monster, loss of family, new love, hero, love of one's life, magic, fairy tale, villain, kingdom, enchantment, bad power, son, heir to the throne, motherly love", "tags_pipe": "|fictional place|monster|loss of family|new love|hero|love of one's life|magic|fairy tale|villain|kingdom|enchantment|bad power|son|heir to the throne|motherly love|", "overview": "A man named Farmer sets out to rescue his kidnapped wife and avenge the death of his son -- two acts committed by the Krugs, a race of animal-warriors who are controlled by the evil Gallian.", "text_for_embedding": "In the Name of the King: A Dungeon Siege Tale (2007). Genres: Adventure, Fantasy, Action, Drama. A man named Farmer sets out to rescue his kidnapped wife and avenge the death of his son -- two acts committed by the Krugs, a race of animal-warriors who are controlled by the evil Gallian.. Tags: fictional place, monster, loss of family, new love, hero, love of one's life, magic, fairy tale, villain, kingdom, enchantment, bad power, son, heir to the throne, motherly love"} +{"id": "9839", "title": "Beyond Borders", "year": 2003, "duration_min": 127, "rating": 6.7, "genres": "Drama, Romance, Adventure, War", "genres_pipe": "|Drama|Romance|Adventure|War|", "keywords": "london england, cia, landmine, love of one's life, cambodia, ethiopia, chechnya, foreign aid", "tags_pipe": "|london england|cia|landmine|love of one's life|cambodia|ethiopia|chechnya|foreign aid|", "overview": "Beyond Borders is an epic tale of the turbulent romance between two star-crossed lovers set against the backdrop of the world's most dangerous hot spots. Academy Award winner Angelina Jolie stars as Sarah Jordan, an American living in London in 1984. She is married to Henry Bauford son of a wealthy British industrialist, when she encounters Nick Callahan a renegade doctor, whose impassioned plea for help to support his relief efforts in war-torn Africa moves her deeply. As a result, Sarah embarks upon a journey of discovery that leads to danger, heartbreak and romance in the far corners of the world.", "text_for_embedding": "Beyond Borders (2003). Genres: Drama, Romance, Adventure, War. Beyond Borders is an epic tale of the turbulent romance between two star-crossed lovers set against the backdrop of the world's most dangerous hot spots. Academy Award winner Angelina Jolie stars as Sarah Jordan, an American living in London in 1984. She is married to Henry Bauford son of a wealthy British industrialist, when she encounters Nick Callahan a renegade doctor, whose impassioned plea for help to support his relief efforts in war-torn Africa moves her deeply. As a result, Sarah embarks upon a journey of discovery that leads to danger, heartbreak and romance in the far corners of the world.. Tags: london england, cia, landmine, love of one's life, cambodia, ethiopia, chechnya, foreign aid"} +{"id": "381902", "title": "The Monkey King 2", "year": 2016, "duration_min": 120, "rating": 6.0, "genres": "Action, Adventure, Fantasy", "genres_pipe": "|Action|Adventure|Fantasy|", "keywords": "monkey king", "tags_pipe": "|monkey king|", "overview": "Taking place 500 years after the Havoc in Heaven, the Tang Priest is appointed by Buddha to go to the West to fetch the sacred scriptures, only to accidentally free the Monkey King. With Lady White (Gong Li) aiming to break up the team assembled to defeat her, the Monkey King must fight in order to save his world!", "text_for_embedding": "The Monkey King 2 (2016). Genres: Action, Adventure, Fantasy. Taking place 500 years after the Havoc in Heaven, the Tang Priest is appointed by Buddha to go to the West to fetch the sacred scriptures, only to accidentally free the Monkey King. With Lady White (Gong Li) aiming to break up the team assembled to defeat her, the Monkey King must fight in order to save his world!. Tags: monkey king"} +{"id": "13922", "title": "The Great Raid", "year": 2005, "duration_min": 132, "rating": 6.8, "genres": "Action, History, War", "genres_pipe": "|Action|History|War|", "keywords": "based on novel, world war ii, prisoners of war, narration, archive footage, rescue mission, soldier, 1940s, inspired by true events, fictionalized history", "tags_pipe": "|based on novel|world war ii|prisoners of war|narration|archive footage|rescue mission|soldier|1940s|inspired by true events|fictionalized history|", "overview": "As World War II rages, the elite Sixth Ranger Battalion is given a mission of heroic proportions: push 30 miles behind enemy lines and liberate over 500 American prisoners of war.", "text_for_embedding": "The Great Raid (2005). Genres: Action, History, War. As World War II rages, the elite Sixth Ranger Battalion is given a mission of heroic proportions: push 30 miles behind enemy lines and liberate over 500 American prisoners of war.. Tags: based on novel, world war ii, prisoners of war, narration, archive footage, rescue mission, soldier, 1940s, inspired by true events, fictionalized history"} +{"id": "293660", "title": "Deadpool", "year": 2016, "duration_min": 108, "rating": 7.4, "genres": "Action, Adventure, Comedy", "genres_pipe": "|Action|Adventure|Comedy|", "keywords": "anti hero, mercenary, marvel comic, superhero, based on comic book, breaking the fourth wall, aftercreditsstinger, duringcreditsstinger, self healing", "tags_pipe": "|anti hero|mercenary|marvel comic|superhero|based on comic book|breaking the fourth wall|aftercreditsstinger|duringcreditsstinger|self healing|", "overview": "Deadpool tells the origin story of former Special Forces operative turned mercenary Wade Wilson, who after being subjected to a rogue experiment that leaves him with accelerated healing powers, adopts the alter ego Deadpool. Armed with his new abilities and a dark, twisted sense of humor, Deadpool hunts down the man who nearly destroyed his life.", "text_for_embedding": "Deadpool (2016). Genres: Action, Adventure, Comedy. Deadpool tells the origin story of former Special Forces operative turned mercenary Wade Wilson, who after being subjected to a rogue experiment that leaves him with accelerated healing powers, adopts the alter ego Deadpool. Armed with his new abilities and a dark, twisted sense of humor, Deadpool hunts down the man who nearly destroyed his life.. Tags: anti hero, mercenary, marvel comic, superhero, based on comic book, breaking the fourth wall, aftercreditsstinger, duringcreditsstinger, self healing"} +{"id": "9713", "title": "Holy Man", "year": 1998, "duration_min": 114, "rating": 4.9, "genres": "Drama, Comedy", "genres_pipe": "|Drama|Comedy|", "keywords": "salesclerk, television, tv ratings, guru, television producer", "tags_pipe": "|salesclerk|television|tv ratings|guru|television producer|", "overview": "Eddie Murphy stars as an over-the-top television evangelist who finds a way to turn television home shopping into a religious experience, and takes America by storm.", "text_for_embedding": "Holy Man (1998). Genres: Drama, Comedy. Eddie Murphy stars as an over-the-top television evangelist who finds a way to turn television home shopping into a religious experience, and takes America by storm.. Tags: salesclerk, television, tv ratings, guru, television producer"} +{"id": "190859", "title": "American Sniper", "year": 2014, "duration_min": 133, "rating": 7.4, "genres": "War, Action", "genres_pipe": "|War|Action|", "keywords": "sniper, biography, iraq, navy seal, u.s. soldier", "tags_pipe": "|sniper|biography|iraq|navy seal|u.s. soldier|", "overview": "U.S. Navy SEAL Chris Kyle takes his sole mission—protect his comrades—to heart and becomes one of the most lethal snipers in American history. His pinpoint accuracy not only saves countless lives but also makes him a prime target of insurgents. Despite grave danger and his struggle to be a good husband and father to his family back in the States, Kyle serves four tours of duty in Iraq. However, when he finally returns home, he finds that he cannot leave the war behind.", "text_for_embedding": "American Sniper (2014). Genres: War, Action. U.S. Navy SEAL Chris Kyle takes his sole mission—protect his comrades—to heart and becomes one of the most lethal snipers in American history. His pinpoint accuracy not only saves countless lives but also makes him a prime target of insurgents. Despite grave danger and his struggle to be a good husband and father to his family back in the States, Kyle serves four tours of duty in Iraq. However, when he finally returns home, he finds that he cannot leave the war behind.. Tags: sniper, biography, iraq, navy seal, u.s. soldier"} +{"id": "257445", "title": "Goosebumps", "year": 2015, "duration_min": 103, "rating": 6.2, "genres": "Adventure, Horror, Comedy", "genres_pipe": "|Adventure|Horror|Comedy|", "keywords": "based on novel, magic, fantasy, werewolf, family, ventriloquist dummy, book comes to life, 3d", "tags_pipe": "|based on novel|magic|fantasy|werewolf|family|ventriloquist dummy|book comes to life|3d|", "overview": "A teenager teams up with the daughter of young adult horror author R.L. Stine after the writer's imaginary demons are set free on the town of Madison, Delaware.", "text_for_embedding": "Goosebumps (2015). Genres: Adventure, Horror, Comedy. A teenager teams up with the daughter of young adult horror author R.L. Stine after the writer's imaginary demons are set free on the town of Madison, Delaware.. Tags: based on novel, magic, fantasy, werewolf, family, ventriloquist dummy, book comes to life, 3d"} +{"id": "9007", "title": "Just Like Heaven", "year": 2005, "duration_min": 95, "rating": 6.5, "genres": "Comedy, Fantasy, Romance", "genres_pipe": "|Comedy|Fantasy|Romance|", "keywords": "coma, based on novel, workaholic, flirt, architect, romantic comedy, ghost, landscape architect", "tags_pipe": "|coma|based on novel|workaholic|flirt|architect|romantic comedy|ghost|landscape architect|", "overview": "Shortly after David Abbott moves into his new San Francisco digs, he has an unwelcome visitor on his hands: winsome Elizabeth Martinson, who asserts that the apartment is hers -- and promptly vanishes. When she starts appearing and disappearing at will, David thinks she's a ghost, while Elizabeth is convinced she's alive.", "text_for_embedding": "Just Like Heaven (2005). Genres: Comedy, Fantasy, Romance. Shortly after David Abbott moves into his new San Francisco digs, he has an unwelcome visitor on his hands: winsome Elizabeth Martinson, who asserts that the apartment is hers -- and promptly vanishes. When she starts appearing and disappearing at will, David thinks she's a ghost, while Elizabeth is convinced she's alive.. Tags: coma, based on novel, workaholic, flirt, architect, romantic comedy, ghost, landscape architect"} +{"id": "889", "title": "The Flintstones in Viva Rock Vegas", "year": 2000, "duration_min": 90, "rating": 4.4, "genres": "Science Fiction, Comedy, Family, Romance", "genres_pipe": "|Science Fiction|Comedy|Family|Romance|", "keywords": "waitress, marriage proposal, flirt, stone age, best friend, dinosaur", "tags_pipe": "|waitress|marriage proposal|flirt|stone age|best friend|dinosaur|", "overview": "The Flintstones are at it again. The Flintstones and the Rubbles head for Rock Vegas with Fred hoping to court the lovely Wilma. Nothing will stand in the way of love, except for the conniving Chip Rockefeller who is the playboy born in Baysville but who has made it in the cutthroat town of Rock Vegas. Will Fred win Wilma's love?", "text_for_embedding": "The Flintstones in Viva Rock Vegas (2000). Genres: Science Fiction, Comedy, Family, Romance. The Flintstones are at it again. The Flintstones and the Rubbles head for Rock Vegas with Fred hoping to court the lovely Wilma. Nothing will stand in the way of love, except for the conniving Chip Rockefeller who is the playboy born in Baysville but who has made it in the cutthroat town of Rock Vegas. Will Fred win Wilma's love?. Tags: waitress, marriage proposal, flirt, stone age, best friend, dinosaur"} +{"id": "1370", "title": "Rambo III", "year": 1988, "duration_min": 102, "rating": 5.7, "genres": "Action, Adventure, Thriller, War", "genres_pipe": "|Action|Adventure|Thriller|War|", "keywords": "competition, submachine gun, soviet union, liberation, russian, soviet troops, thailand, freedom fighter, afghanistan, war on freedom, machinegun, mujahid, reality show, western, japanese food", "tags_pipe": "|competition|submachine gun|soviet union|liberation|russian|soviet troops|thailand|freedom fighter|afghanistan|war on freedom|machinegun|mujahid|reality show|western|japanese food|", "overview": "Combat has taken its toll on Rambo, but he's finally begun to find inner peace in a monastery. When Rambo's friend and mentor Col. Trautman asks for his help on a top secret mission to Afghanistan, Rambo declines but must reconsider when Trautman is captured.", "text_for_embedding": "Rambo III (1988). Genres: Action, Adventure, Thriller, War. Combat has taken its toll on Rambo, but he's finally begun to find inner peace in a monastery. When Rambo's friend and mentor Col. Trautman asks for his help on a top secret mission to Afghanistan, Rambo declines but must reconsider when Trautman is captured.. Tags: competition, submachine gun, soviet union, liberation, russian, soviet troops, thailand, freedom fighter, afghanistan, war on freedom, machinegun, mujahid, reality show, western, japanese food"} +{"id": "4942", "title": "Leatherheads", "year": 2008, "duration_min": 114, "rating": 5.7, "genres": "Comedy, Romance, Drama", "genres_pipe": "|Comedy|Romance|Drama|", "keywords": "american football, sports team, stadium, hero, success, sponsorship, police, games, coach, woman reporter, the big game", "tags_pipe": "|american football|sports team|stadium|hero|success|sponsorship|police|games|coach|woman reporter|the big game|", "overview": "A light hearted comedy about the beginnings of Professional American Football. When a decorated war hero and college all star is tempted into playing professional football. Everyone see the chance to make some big money, but when a reporter digs up some dirt on the war hero... everyone could lose out.", "text_for_embedding": "Leatherheads (2008). Genres: Comedy, Romance, Drama. A light hearted comedy about the beginnings of Professional American Football. When a decorated war hero and college all star is tempted into playing professional football. Everyone see the chance to make some big money, but when a reporter digs up some dirt on the war hero... everyone could lose out.. Tags: american football, sports team, stadium, hero, success, sponsorship, police, games, coach, woman reporter, the big game"} +{"id": "347969", "title": "The Ridiculous 6", "year": 2015, "duration_min": 119, "rating": 4.9, "genres": "Comedy, Western", "genres_pipe": "|Comedy|Western|", "keywords": "wild west", "tags_pipe": "|wild west|", "overview": "When his long-lost outlaw father returns, Tommy \"White Knife\" Stockburn goes on an adventure-filled journey across the Old West with his five brothers.", "text_for_embedding": "The Ridiculous 6 (2015). Genres: Comedy, Western. When his long-lost outlaw father returns, Tommy \"White Knife\" Stockburn goes on an adventure-filled journey across the Old West with his five brothers.. Tags: wild west"} +{"id": "24438", "title": "Did You Hear About the Morgans?", "year": 2009, "duration_min": 103, "rating": 5.1, "genres": "Comedy", "genres_pipe": "|Comedy|", "keywords": "witness protection, comedy, duringcreditsstinger", "tags_pipe": "|witness protection|comedy|duringcreditsstinger|", "overview": "In New York City, an estranged couple who witness a murder are relocated to small-town Wyoming as part of a witness-protection program.", "text_for_embedding": "Did You Hear About the Morgans? (2009). Genres: Comedy. In New York City, an estranged couple who witness a murder are relocated to small-town Wyoming as part of a witness-protection program.. Tags: witness protection, comedy, duringcreditsstinger"} +{"id": "116741", "title": "The Internship", "year": 2013, "duration_min": 119, "rating": 6.1, "genres": "Comedy", "genres_pipe": "|Comedy|", "keywords": "job interview, loss of job, intern, reference to google, new job, laid off, transamerica pyramid", "tags_pipe": "|job interview|loss of job|intern|reference to google|new job|laid off|transamerica pyramid|", "overview": "Two recently laid-off men in their 40s try to make it as interns at a successful Internet company where their managers are in their 20s.", "text_for_embedding": "The Internship (2013). Genres: Comedy. Two recently laid-off men in their 40s try to make it as interns at a successful Internet company where their managers are in their 20s.. Tags: job interview, loss of job, intern, reference to google, new job, laid off, transamerica pyramid"} +{"id": "35791", "title": "Resident Evil: Afterlife", "year": 2010, "duration_min": 97, "rating": 5.8, "genres": "Action, Adventure, Horror, Science Fiction", "genres_pipe": "|Action|Adventure|Horror|Science Fiction|", "keywords": "post-apocalyptic, dystopia, undead, biohazard, evil corporation, resident evil, zombie, based on video game, duringcreditsstinger, 3d", "tags_pipe": "|post-apocalyptic|dystopia|undead|biohazard|evil corporation|resident evil|zombie|based on video game|duringcreditsstinger|3d|", "overview": "In a world ravaged by a virus infection, turning its victims into the Undead, Alice continues on her journey to find survivors and lead them to safety. Her deadly battle with the Umbrella Corporation reaches new heights, but Alice gets some unexpected help from an old friend. A new lead that promises a safe haven from the Undead takes them to Los Angeles, but when they arrive the city is overrun by thousands of Undead - and Alice and her comrades are about to step into a deadly trap.", "text_for_embedding": "Resident Evil: Afterlife (2010). Genres: Action, Adventure, Horror, Science Fiction. In a world ravaged by a virus infection, turning its victims into the Undead, Alice continues on her journey to find survivors and lead them to safety. Her deadly battle with the Umbrella Corporation reaches new heights, but Alice gets some unexpected help from an old friend. A new lead that promises a safe haven from the Undead takes them to Los Angeles, but when they arrive the city is overrun by thousands of Undead - and Alice and her comrades are about to step into a deadly trap.. Tags: post-apocalyptic, dystopia, undead, biohazard, evil corporation, resident evil, zombie, based on video game, duringcreditsstinger, 3d"} +{"id": "72431", "title": "Red Tails", "year": 2012, "duration_min": 125, "rating": 5.9, "genres": "Drama, Action, Adventure, History, War", "genres_pipe": "|Drama|Action|Adventure|History|War|", "keywords": "world war ii, fighter pilot, fighter plane", "tags_pipe": "|world war ii|fighter pilot|fighter plane|", "overview": "The story of the Tuskegee Airmen, the first African-American pilots to fly in a combat squadron during World War II.", "text_for_embedding": "Red Tails (2012). Genres: Drama, Action, Adventure, History, War. The story of the Tuskegee Airmen, the first African-American pilots to fly in a combat squadron during World War II.. Tags: world war ii, fighter pilot, fighter plane"} +{"id": "1813", "title": "The Devil's Advocate", "year": 1997, "duration_min": 144, "rating": 7.2, "genres": "Drama, Horror, Mystery, Thriller", "genres_pipe": "|Drama|Horror|Mystery|Thriller|", "keywords": "child abuse, southern usa, obsession, subway, nudity, bible, seduction, hallucination, ambition, devil's son, marriage crisis, pact with the devil, crooked lawyer, evil spirit, satan", "tags_pipe": "|child abuse|southern usa|obsession|subway|nudity|bible|seduction|hallucination|ambition|devil's son|marriage crisis|pact with the devil|crooked lawyer|evil spirit|satan|", "overview": "A hotshot lawyer gets more than he bargained for when he learns his new boss is Lucifer himself.", "text_for_embedding": "The Devil's Advocate (1997). Genres: Drama, Horror, Mystery, Thriller. A hotshot lawyer gets more than he bargained for when he learns his new boss is Lucifer himself.. Tags: child abuse, southern usa, obsession, subway, nudity, bible, seduction, hallucination, ambition, devil's son, marriage crisis, pact with the devil, crooked lawyer, evil spirit, satan"} +{"id": "87428", "title": "That's My Boy", "year": 2012, "duration_min": 116, "rating": 5.5, "genres": "Comedy", "genres_pipe": "|Comedy|", "keywords": "deadbeat dad, cheating fiancée, teacher student sex, brother sister incest", "tags_pipe": "|deadbeat dad|cheating fiancée|teacher student sex|brother sister incest|", "overview": "While in his teens, Donny fathered a son, Todd, and raised him as a single parent up until Todd's 18th birthday. Now, after not seeing each other for years, Todd's world comes crashing down when Donny resurfaces just before Todd's wedding.", "text_for_embedding": "That's My Boy (2012). Genres: Comedy. While in his teens, Donny fathered a son, Todd, and raised him as a single parent up until Todd's 18th birthday. Now, after not seeing each other for years, Todd's world comes crashing down when Donny resurfaces just before Todd's wedding.. Tags: deadbeat dad, cheating fiancée, teacher student sex, brother sister incest"} +{"id": "8840", "title": "DragonHeart", "year": 1996, "duration_min": 103, "rating": 6.4, "genres": "Fantasy", "genres_pipe": "|Fantasy|", "keywords": "magic, kingdom, despot, immortality, village, forest, army, horror, partner, revenge, knight, battle, medieval, dragonheart", "tags_pipe": "|magic|kingdom|despot|immortality|village|forest|army|horror|partner|revenge|knight|battle|medieval|dragonheart|", "overview": "In an ancient time when majestic fire-breathers soared through the skies, a knight named Bowen comes face to face and heart to heart with the last dragon on Earth, Draco. Taking up arms to suppress a tyrant king, Bowen soon realizes his task will be harder than he'd imagined: If he kills the king, Draco will die as well.", "text_for_embedding": "DragonHeart (1996). Genres: Fantasy. In an ancient time when majestic fire-breathers soared through the skies, a knight named Bowen comes face to face and heart to heart with the last dragon on Earth, Draco. Taking up arms to suppress a tyrant king, Bowen soon realizes his task will be harder than he'd imagined: If he kills the king, Draco will die as well.. Tags: magic, kingdom, despot, immortality, village, forest, army, horror, partner, revenge, knight, battle, medieval, dragonheart"} +{"id": "10589", "title": "After the Sunset", "year": 2004, "duration_min": 97, "rating": 6.0, "genres": "Action, Comedy, Crime, Drama", "genres_pipe": "|Action|Comedy|Crime|Drama|", "keywords": "bahamas, master thief, crook couple", "tags_pipe": "|bahamas|master thief|crook couple|", "overview": "Two master thieves (Brosnan and Hayek) are finally retiring after one last succesful mission. Residing in their own tropical paradise, their old nemesis, FBI Agent Stan P. Lloyd shows up to make sure they really are retired. Docked in the port is an ocean liner called the \"Diamond Cruise\" and Stan is convinced that they're not really retired at all, and that this is the next set up.", "text_for_embedding": "After the Sunset (2004). Genres: Action, Comedy, Crime, Drama. Two master thieves (Brosnan and Hayek) are finally retiring after one last succesful mission. Residing in their own tropical paradise, their old nemesis, FBI Agent Stan P. Lloyd shows up to make sure they really are retired. Docked in the port is an ocean liner called the \"Diamond Cruise\" and Stan is convinced that they're not really retired at all, and that this is the next set up.. Tags: bahamas, master thief, crook couple"} +{"id": "71676", "title": "Ghost Rider: Spirit of Vengeance", "year": 2011, "duration_min": 95, "rating": 4.7, "genres": "Action, Fantasy, Thriller", "genres_pipe": "|Action|Fantasy|Thriller|", "keywords": "monk, eastern europe, skeleton, biker, marvel comic, superhero, motorcycle, devil, dark hero, ghost rider", "tags_pipe": "|monk|eastern europe|skeleton|biker|marvel comic|superhero|motorcycle|devil|dark hero|ghost rider|", "overview": "When the devil resurfaces with aims to take over the world in human form, Johnny Blaze reluctantly comes out of hiding to transform into the flame-spewing supernatural hero Ghost Rider -- and rescue a 10-year-old boy from an unsavory end.", "text_for_embedding": "Ghost Rider: Spirit of Vengeance (2011). Genres: Action, Fantasy, Thriller. When the devil resurfaces with aims to take over the world in human form, Johnny Blaze reluctantly comes out of hiding to transform into the flame-spewing supernatural hero Ghost Rider -- and rescue a 10-year-old boy from an unsavory end.. Tags: monk, eastern europe, skeleton, biker, marvel comic, superhero, motorcycle, devil, dark hero, ghost rider"} +{"id": "1722", "title": "Captain Corelli's Mandolin", "year": 2001, "duration_min": 131, "rating": 5.5, "genres": "Drama, History, Romance", "genres_pipe": "|Drama|History|Romance|", "keywords": "officer, greek island, mandolin, italian soldier, resistance fighter, greek history, italian army, allied forces", "tags_pipe": "|officer|greek island|mandolin|italian soldier|resistance fighter|greek history|italian army|allied forces|", "overview": "When a Greek fisherman leaves to fight with the Greek army during WWII, his fiancee falls in love with the local Italian commander. The film is based on a novel about an Italian soldier's experiences during the Italian occupation of the Greek island of Cephalonia (Kefalonia), but Hollywood made it into a pure love story by removing much of the \"unpleasant\" stuff.", "text_for_embedding": "Captain Corelli's Mandolin (2001). Genres: Drama, History, Romance. When a Greek fisherman leaves to fight with the Greek army during WWII, his fiancee falls in love with the local Italian commander. The film is based on a novel about an Italian soldier's experiences during the Italian occupation of the Greek island of Cephalonia (Kefalonia), but Hollywood made it into a pure love story by removing much of the \"unpleasant\" stuff.. Tags: officer, greek island, mandolin, italian soldier, resistance fighter, greek history, italian army, allied forces"} +{"id": "10022", "title": "The Pacifier", "year": 2005, "duration_min": 95, "rating": 5.8, "genres": "Action, Comedy, Drama, Family, Thriller", "genres_pipe": "|Action|Comedy|Drama|Family|Thriller|", "keywords": "bodybuilder, children, body guard, scientist, family, u.s. soldier, death of husband, male nanny", "tags_pipe": "|bodybuilder|children|body guard|scientist|family|u.s. soldier|death of husband|male nanny|", "overview": "Disgraced Navy SEAL Shane Wolfe is handed a new assignment: Protect the five Plummer kids from enemies of their recently deceased father -- a government scientist whose top-secret experiment remains hidden in the kids' house.", "text_for_embedding": "The Pacifier (2005). Genres: Action, Comedy, Drama, Family, Thriller. Disgraced Navy SEAL Shane Wolfe is handed a new assignment: Protect the five Plummer kids from enemies of their recently deceased father -- a government scientist whose top-secret experiment remains hidden in the kids' house.. Tags: bodybuilder, children, body guard, scientist, family, u.s. soldier, death of husband, male nanny"} +{"id": "11358", "title": "Walking Tall", "year": 2004, "duration_min": 86, "rating": 6.0, "genres": "Adventure, Drama, Action, Thriller", "genres_pipe": "|Adventure|Drama|Action|Thriller|", "keywords": "casino, sheriff, home, violence, special forces, ex soldier", "tags_pipe": "|casino|sheriff|home|violence|special forces|ex soldier|", "overview": "A former U.S. soldier returns to his hometown to find it overrun by crime and corruption, which prompts him to clean house.", "text_for_embedding": "Walking Tall (2004). Genres: Adventure, Drama, Action, Thriller. A former U.S. soldier returns to his hometown to find it overrun by crime and corruption, which prompts him to clean house.. Tags: casino, sheriff, home, violence, special forces, ex soldier"} +{"id": "13", "title": "Forrest Gump", "year": 1994, "duration_min": 142, "rating": 8.2, "genres": "Comedy, Drama, Romance", "genres_pipe": "|Comedy|Drama|Romance|", "keywords": "vietnam veteran, hippie, mentally disabled, running, based on novel, vietnam, vietnam war, friendship, love, family relationships, bully, mother son relationship, military, hugging, shrimping", "tags_pipe": "|vietnam veteran|hippie|mentally disabled|running|based on novel|vietnam|vietnam war|friendship|love|family relationships|bully|mother son relationship|military|hugging|shrimping|", "overview": "A man with a low IQ has accomplished great things in his life and been present during significant historic events - in each case, far exceeding what anyone imagined he could do. Yet, despite all the things he has attained, his one true love eludes him. 'Forrest Gump' is the story of a man who rose above his challenges, and who proved that determination, courage, and love are more important than ability.", "text_for_embedding": "Forrest Gump (1994). Genres: Comedy, Drama, Romance. A man with a low IQ has accomplished great things in his life and been present during significant historic events - in each case, far exceeding what anyone imagined he could do. Yet, despite all the things he has attained, his one true love eludes him. 'Forrest Gump' is the story of a man who rose above his challenges, and who proved that determination, courage, and love are more important than ability.. Tags: vietnam veteran, hippie, mentally disabled, running, based on novel, vietnam, vietnam war, friendship, love, family relationships, bully, mother son relationship, military, hugging, shrimping"} +{"id": "6477", "title": "Alvin and the Chipmunks", "year": 2007, "duration_min": 92, "rating": 5.5, "genres": "Comedy, Music, Family, Fantasy, Animation", "genres_pipe": "|Comedy|Music|Family|Fantasy|Animation|", "keywords": "pop, pop star, record producer, surprise, approach, forest, music, concert, friendship, performance, chipmunk, talking animal, songwriter, talking to animals, duringcreditsstinger", "tags_pipe": "|pop|pop star|record producer|surprise|approach|forest|music|concert|friendship|performance|chipmunk|talking animal|songwriter|talking to animals|duringcreditsstinger|", "overview": "A struggling songwriter named Dave Seville finds success when he comes across a trio of singing chipmunks: mischievous leader Alvin, brainy Simon, and chubby, impressionable Theodore.", "text_for_embedding": "Alvin and the Chipmunks (2007). Genres: Comedy, Music, Family, Fantasy, Animation. A struggling songwriter named Dave Seville finds success when he comes across a trio of singing chipmunks: mischievous leader Alvin, brainy Simon, and chubby, impressionable Theodore.. Tags: pop, pop star, record producer, surprise, approach, forest, music, concert, friendship, performance, chipmunk, talking animal, songwriter, talking to animals, duringcreditsstinger"} +{"id": "1597", "title": "Meet the Parents", "year": 2000, "duration_min": 108, "rating": 6.6, "genres": "Comedy, Romance", "genres_pipe": "|Comedy|Romance|", "keywords": "cia, airport, cat, jew, orderly, airplane, father-in-law, epistaxis, daughter, lost baggage, urn, pavilion, volleyball, hospital, wedding", "tags_pipe": "|cia|airport|cat|jew|orderly|airplane|father-in-law|epistaxis|daughter|lost baggage|urn|pavilion|volleyball|hospital|wedding|", "overview": "Greg Focker is ready to marry his girlfriend, Pam, but before he pops the question, he must win over her formidable father, humorless former CIA agent Jack Byrnes, at the wedding of Pam's sister. As Greg bends over backward to make a good impression, his visit to the Byrnes home turns into a hilarious series of disasters, and everything that can go wrong does, all under Jack's critical, hawklike gaze.", "text_for_embedding": "Meet the Parents (2000). Genres: Comedy, Romance. Greg Focker is ready to marry his girlfriend, Pam, but before he pops the question, he must win over her formidable father, humorless former CIA agent Jack Byrnes, at the wedding of Pam's sister. As Greg bends over backward to make a good impression, his visit to the Byrnes home turns into a hilarious series of disasters, and everything that can go wrong does, all under Jack's critical, hawklike gaze.. Tags: cia, airport, cat, jew, orderly, airplane, father-in-law, epistaxis, daughter, lost baggage, urn, pavilion, volleyball, hospital, wedding"} +{"id": "10530", "title": "Pocahontas", "year": 1995, "duration_min": 81, "rating": 6.7, "genres": "Adventure, Animation, Drama, Family", "genres_pipe": "|Adventure|Animation|Drama|Family|", "keywords": "culture clash, settler, forbidden love, colony, musical, gold rush, princess, romance, native american, animation, virginia, star crossed lovers, reference to pizarro, jamestown virginia, pug dog", "tags_pipe": "|culture clash|settler|forbidden love|colony|musical|gold rush|princess|romance|native american|animation|virginia|star crossed lovers|reference to pizarro|jamestown virginia|pug dog|", "overview": "History comes gloriously to life in Disney's epic animated tale about love and adventure in the New World. Pocahontas is a Native American woman whose father has arranged for her to marry her village's best warrior. But a vision tells her change is coming, and soon she comes face to face with it in the form of Capt. John Smith.", "text_for_embedding": "Pocahontas (1995). Genres: Adventure, Animation, Drama, Family. History comes gloriously to life in Disney's epic animated tale about love and adventure in the New World. Pocahontas is a Native American woman whose father has arranged for her to marry her village's best warrior. But a vision tells her change is coming, and soon she comes face to face with it in the form of Capt. John Smith.. Tags: culture clash, settler, forbidden love, colony, musical, gold rush, princess, romance, native american, animation, virginia, star crossed lovers, reference to pizarro, jamestown virginia, pug dog"} +{"id": "1924", "title": "Superman", "year": 1978, "duration_min": 143, "rating": 6.9, "genres": "Action, Adventure, Fantasy, Science Fiction", "genres_pipe": "|Action|Adventure|Fantasy|Science Fiction|", "keywords": "saving the world, journalist, dc comics, crime fighter, nuclear missile, galaxy, superhero, based on comic book, criminal, sabotage, north pole, midwest, kryptonite, super powers, superhuman strength", "tags_pipe": "|saving the world|journalist|dc comics|crime fighter|nuclear missile|galaxy|superhero|based on comic book|criminal|sabotage|north pole|midwest|kryptonite|super powers|superhuman strength|", "overview": "Mild-mannered Clark Kent works as a reporter at the Daily Planet alongside his crush, Lois Lane − who's in love with Superman. Clark must summon his superhero alter ego when the nefarious Lex Luthor launches a plan to take over the world.", "text_for_embedding": "Superman (1978). Genres: Action, Adventure, Fantasy, Science Fiction. Mild-mannered Clark Kent works as a reporter at the Daily Planet alongside his crush, Lois Lane − who's in love with Superman. Clark must summon his superhero alter ego when the nefarious Lex Luthor launches a plan to take over the world.. Tags: saving the world, journalist, dc comics, crime fighter, nuclear missile, galaxy, superhero, based on comic book, criminal, sabotage, north pole, midwest, kryptonite, super powers, superhuman strength"} +{"id": "9327", "title": "The Nutty Professor", "year": 1996, "duration_min": 95, "rating": 5.4, "genres": "Fantasy, Comedy, Romance, Science Fiction", "genres_pipe": "|Fantasy|Comedy|Romance|Science Fiction|", "keywords": "overweight, overweight man, duringcreditsstinger", "tags_pipe": "|overweight|overweight man|duringcreditsstinger|", "overview": "Eddie Murphy stars as shy Dr. Sherman Klump, a kind, brilliant, 'calorifically challenged' genetic professor. When beautiful Carla Purty joins the university faculty, Sherman grows desperate to whittle his 400-pound frame down to size and win her heart. So, with one swig of his experimental fat-reducing serum, Sherman becomes 'Buddy Love', a fast-talking, pumped-up , plumped down Don Juan.", "text_for_embedding": "The Nutty Professor (1996). Genres: Fantasy, Comedy, Romance, Science Fiction. Eddie Murphy stars as shy Dr. Sherman Klump, a kind, brilliant, 'calorifically challenged' genetic professor. When beautiful Carla Purty joins the university faculty, Sherman grows desperate to whittle his 400-pound frame down to size and win her heart. So, with one swig of his experimental fat-reducing serum, Sherman becomes 'Buddy Love', a fast-talking, pumped-up , plumped down Don Juan.. Tags: overweight, overweight man, duringcreditsstinger"} +{"id": "8488", "title": "Hitch", "year": 2005, "duration_min": 118, "rating": 6.4, "genres": "Comedy, Drama, Romance", "genres_pipe": "|Comedy|Drama|Romance|", "keywords": "speed date, romantic comedy, dating", "tags_pipe": "|speed date|romantic comedy|dating|", "overview": "Dating coach Alex 'Hitch' Hitchens mentors a bumbling client, Albert, who hopes to win the heart of the glamorous Allegra Cole. While Albert makes progress, Hitch faces his own romantic setbacks when proven techniques fail to work on Sara Melas, a tabloid reporter digging for dirt on Allegra Cole's love life. When Sara discovers Hitch's connection to Albert – now Allegra's boyfriend – it threatens to destroy both relationships.", "text_for_embedding": "Hitch (2005). Genres: Comedy, Drama, Romance. Dating coach Alex 'Hitch' Hitchens mentors a bumbling client, Albert, who hopes to win the heart of the glamorous Allegra Cole. While Albert makes progress, Hitch faces his own romantic setbacks when proven techniques fail to work on Sara Melas, a tabloid reporter digging for dirt on Allegra Cole's love life. When Sara discovers Hitch's connection to Albert – now Allegra's boyfriend – it threatens to destroy both relationships.. Tags: speed date, romantic comedy, dating"} +{"id": "10603", "title": "George of the Jungle", "year": 1997, "duration_min": 92, "rating": 5.4, "genres": "Adventure, Comedy, Family, Romance", "genres_pipe": "|Adventure|Comedy|Family|Romance|", "keywords": "africa, san francisco, gorilla, lion, feral child, jungle", "tags_pipe": "|africa|san francisco|gorilla|lion|feral child|jungle|", "overview": "Baby George got into a plane crash in a jungle, stayed alive and was adopted by a wise ape. Ursula Stanhope, US noble woman is saved from death on safari by grown-up George, and he takes her to jungle to live with him. He slowly learns a rules of human relationships, while Ursula's lover Lyle is looking for her and the one who took her. After they are found, Ursula takes George to the USA.", "text_for_embedding": "George of the Jungle (1997). Genres: Adventure, Comedy, Family, Romance. Baby George got into a plane crash in a jungle, stayed alive and was adopted by a wise ape. Ursula Stanhope, US noble woman is saved from death on safari by grown-up George, and he takes her to jungle to live with him. He slowly learns a rules of human relationships, while Ursula's lover Lyle is looking for her and the one who took her. After they are found, Ursula takes George to the USA.. Tags: africa, san francisco, gorilla, lion, feral child, jungle"} +{"id": "8273", "title": "American Wedding", "year": 2003, "duration_min": 103, "rating": 6.0, "genres": "Comedy, Romance", "genres_pipe": "|Comedy|Romance|", "keywords": "handcuffs, sister sister relationship, spanner, blow job, stag night, wedding", "tags_pipe": "|handcuffs|sister sister relationship|spanner|blow job|stag night|wedding|", "overview": "With high school a distant memory, Jim and Michelle are getting married -- and in a hurry, since Jim's grandmother is sick and wants to see him walk down the aisle -- prompting Stifler to throw the ultimate bachelor party. And Jim's dad is reliable as ever, doling out advice no one wants to hear.", "text_for_embedding": "American Wedding (2003). Genres: Comedy, Romance. With high school a distant memory, Jim and Michelle are getting married -- and in a hurry, since Jim's grandmother is sick and wants to see him walk down the aisle -- prompting Stifler to throw the ultimate bachelor party. And Jim's dad is reliable as ever, doling out advice no one wants to hear.. Tags: handcuffs, sister sister relationship, spanner, blow job, stag night, wedding"} +{"id": "109424", "title": "Captain Phillips", "year": 2013, "duration_min": 134, "rating": 7.6, "genres": "Action, Drama, Thriller", "genres_pipe": "|Action|Drama|Thriller|", "keywords": "ship, hijacking, somalia, fisherman, blood, poverty, pirate, terrorism, commando, hijack, cargo ship, ship captain, ship hijacking, somali, commando unit", "tags_pipe": "|ship|hijacking|somalia|fisherman|blood|poverty|pirate|terrorism|commando|hijack|cargo ship|ship captain|ship hijacking|somali|commando unit|", "overview": "The true story of Captain Richard Phillips and the 2009 hijacking by Somali pirates of the US-flagged MV Maersk Alabama, the first American cargo ship to be hijacked in two hundred years.", "text_for_embedding": "Captain Phillips (2013). Genres: Action, Drama, Thriller. The true story of Captain Richard Phillips and the 2009 hijacking by Somali pirates of the US-flagged MV Maersk Alabama, the first American cargo ship to be hijacked in two hundred years.. Tags: ship, hijacking, somalia, fisherman, blood, poverty, pirate, terrorism, commando, hijack, cargo ship, ship captain, ship hijacking, somali, commando unit"} +{"id": "35056", "title": "Date Night", "year": 2010, "duration_min": 97, "rating": 5.9, "genres": "Comedy", "genres_pipe": "|Comedy|", "keywords": "date, corruption, taxi, expensive restaurant, wife husband relationship, gun, boat, taxi driver, document, restaurant, roof, married couple, politician, stripper, shooting", "tags_pipe": "|date|corruption|taxi|expensive restaurant|wife husband relationship|gun|boat|taxi driver|document|restaurant|roof|married couple|politician|stripper|shooting|", "overview": "Phil and Claire Foster fear that their mild-mannered relationship may be falling into a stale rut. During their weekly date night, their dinner reservation leads to their being mistaken for a couple of thieves – and now a number of unsavoury characters want Phil and Claire killed.", "text_for_embedding": "Date Night (2010). Genres: Comedy. Phil and Claire Foster fear that their mild-mannered relationship may be falling into a stale rut. During their weekly date night, their dinner reservation leads to their being mistaken for a couple of thieves – and now a number of unsavoury characters want Phil and Claire killed.. Tags: date, corruption, taxi, expensive restaurant, wife husband relationship, gun, boat, taxi driver, document, restaurant, roof, married couple, politician, stripper, shooting"} +{"id": "8839", "title": "Casper", "year": 1995, "duration_min": 100, "rating": 6.0, "genres": "Fantasy, Comedy, Family", "genres_pipe": "|Fantasy|Comedy|Family|", "keywords": "halloween, friendship, supernatural, afterlife, friends, danger, ghost, disorder, young heroes, imaginary, supernatural ability, mischievous children", "tags_pipe": "|halloween|friendship|supernatural|afterlife|friends|danger|ghost|disorder|young heroes|imaginary|supernatural ability|mischievous children|", "overview": "Furious that her late father only willed her his gloomy-looking mansion rather than his millions, Carrigan Crittenden is ready to burn the place to the ground when she discovers a map to a treasure hidden in the house. But when she enters the rickety mansion to seek her claim, she is frightened away by a wicked wave of ghosts. Determined to get her hands on this hidden fortune, she hires afterlife therapist Dr. James Harvey to exorcise the ghosts from the mansion. Harvey and his daughter Kat move in, and soon Kat meets Casper, the ghost of a young boy who's \"the friendliest ghost you know.\" But not so friendly are Casper's uncles--Stretch, Fatso and Stinkie--who are determined to drive all \"fleshies\" away.", "text_for_embedding": "Casper (1995). Genres: Fantasy, Comedy, Family. Furious that her late father only willed her his gloomy-looking mansion rather than his millions, Carrigan Crittenden is ready to burn the place to the ground when she discovers a map to a treasure hidden in the house. But when she enters the rickety mansion to seek her claim, she is frightened away by a wicked wave of ghosts. Determined to get her hands on this hidden fortune, she hires afterlife therapist Dr. James Harvey to exorcise the ghosts from the mansion. Harvey and his daughter Kat move in, and soon Kat meets Casper, the ghost of a young boy who's \"the friendliest ghost you know.\" But not so friendly are Casper's uncles--Stretch, Fatso and Stinkie--who are determined to drive all \"fleshies\" away.. Tags: halloween, friendship, supernatural, afterlife, friends, danger, ghost, disorder, young heroes, imaginary, supernatural ability, mischievous children"} +{"id": "156022", "title": "The Equalizer", "year": 2014, "duration_min": 132, "rating": 7.1, "genres": "Thriller, Action, Crime", "genres_pipe": "|Thriller|Action|Crime|", "keywords": "corruption, assassin, hostage, fbi, hitman, russian, security camera, sadism, vigilante, sociopath, revenge, suspense, organized crime, gore, gangster", "tags_pipe": "|corruption|assassin|hostage|fbi|hitman|russian|security camera|sadism|vigilante|sociopath|revenge|suspense|organized crime|gore|gangster|", "overview": "In The Equalizer, Denzel Washington plays McCall, a man who believes he has put his mysterious past behind him and dedicated himself to beginning a new, quiet life. But when McCall meets Teri (Chloë Grace Moretz), a young girl under the control of ultra-violent Russian gangsters, he can’t stand idly by – he has to help her. Armed with hidden skills that allow him to serve vengeance against anyone who would brutalize the helpless, McCall comes out of his self-imposed retirement and finds his desire for justice reawakened. If someone has a problem, if the odds are stacked against them, if they have nowhere else to turn, McCall will help. He is The Equalizer.", "text_for_embedding": "The Equalizer (2014). Genres: Thriller, Action, Crime. In The Equalizer, Denzel Washington plays McCall, a man who believes he has put his mysterious past behind him and dedicated himself to beginning a new, quiet life. But when McCall meets Teri (Chloë Grace Moretz), a young girl under the control of ultra-violent Russian gangsters, he can’t stand idly by – he has to help her. Armed with hidden skills that allow him to serve vengeance against anyone who would brutalize the helpless, McCall comes out of his self-imposed retirement and finds his desire for justice reawakened. If someone has a problem, if the odds are stacked against them, if they have nowhere else to turn, McCall will help. He is The Equalizer.. Tags: corruption, assassin, hostage, fbi, hitman, russian, security camera, sadism, vigilante, sociopath, revenge, suspense, organized crime, gore, gangster"} +{"id": "7303", "title": "Maid in Manhattan", "year": 2002, "duration_min": 105, "rating": 5.6, "genres": "Comedy, Drama, Romance", "genres_pipe": "|Comedy|Drama|Romance|", "keywords": "hotel, politician, mistaken identity, maid, class differences, single mother, public relations, maid uniform, hotel clerk, wealth differences", "tags_pipe": "|hotel|politician|mistaken identity|maid|class differences|single mother|public relations|maid uniform|hotel clerk|wealth differences|", "overview": "Marisa Ventura is a struggling single mom who works at a posh Manhattan hotel and dreams of a better life for her and her young son. One fateful day, hotel guest and senatorial candidate Christopher Marshall meets Marisa and mistakes her for a wealthy socialite. After an enchanting evening together, the two fall madly in love. But when Marisa's true identity is revealed, issues of class and social status threaten to separate them. Can two people from very different worlds overcome their differences and live happily ever after?", "text_for_embedding": "Maid in Manhattan (2002). Genres: Comedy, Drama, Romance. Marisa Ventura is a struggling single mom who works at a posh Manhattan hotel and dreams of a better life for her and her young son. One fateful day, hotel guest and senatorial candidate Christopher Marshall meets Marisa and mistakes her for a wealthy socialite. After an enchanting evening together, the two fall madly in love. But when Marisa's true identity is revealed, issues of class and social status threaten to separate them. Can two people from very different worlds overcome their differences and live happily ever after?. Tags: hotel, politician, mistaken identity, maid, class differences, single mother, public relations, maid uniform, hotel clerk, wealth differences"} +{"id": "8963", "title": "Crimson Tide", "year": 1995, "duration_min": 116, "rating": 7.0, "genres": "Action, Thriller, Drama", "genres_pipe": "|Action|Thriller|Drama|", "keywords": "submarine, mutiny, russia, missile, nuclear missile, embassy, u.s. navy, battle for power, torpedo, military, moral dilemma, post cold war, aircraft carrier, chain of command, launch code", "tags_pipe": "|submarine|mutiny|russia|missile|nuclear missile|embassy|u.s. navy|battle for power|torpedo|military|moral dilemma|post cold war|aircraft carrier|chain of command|launch code|", "overview": "On a US nuclear missile sub, a young first officer stages a mutiny to prevent his trigger happy captain from launching his missiles before confirming his orders to do so.", "text_for_embedding": "Crimson Tide (1995). Genres: Action, Thriller, Drama. On a US nuclear missile sub, a young first officer stages a mutiny to prevent his trigger happy captain from launching his missiles before confirming his orders to do so.. Tags: submarine, mutiny, russia, missile, nuclear missile, embassy, u.s. navy, battle for power, torpedo, military, moral dilemma, post cold war, aircraft carrier, chain of command, launch code"} +{"id": "1402", "title": "The Pursuit of Happyness", "year": 2006, "duration_min": 117, "rating": 7.7, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "san francisco, single parent, homeless person, bus, worker, homelessness, work, church service, bad luck, biography, salesman, stockbroker", "tags_pipe": "|san francisco|single parent|homeless person|bus|worker|homelessness|work|church service|bad luck|biography|salesman|stockbroker|", "overview": "The true story of Christopher Gardner, who invests heavily in a device known as a 'Bone Density Scanner', only to find himself struggle to sell the product as it's just marginally better than the current technology, and much more expensive. His wife leaves him, he loses his house, bank account and credit cards and, now forced to live out in the streets with his young son, he's desperate to find a steady job. He takes on a job as a stockbroker but, before he can receive pay, he needs to go through 6 months of training, and must sell his devices.", "text_for_embedding": "The Pursuit of Happyness (2006). Genres: Drama. The true story of Christopher Gardner, who invests heavily in a device known as a 'Bone Density Scanner', only to find himself struggle to sell the product as it's just marginally better than the current technology, and much more expensive. His wife leaves him, he loses his house, bank account and credit cards and, now forced to live out in the streets with his young son, he's desperate to find a steady job. He takes on a job as a stockbroker but, before he can receive pay, he needs to go through 6 months of training, and must sell his devices.. Tags: san francisco, single parent, homeless person, bus, worker, homelessness, work, church service, bad luck, biography, salesman, stockbroker"} +{"id": "9315", "title": "Flightplan", "year": 2005, "duration_min": 98, "rating": 6.1, "genres": "Thriller, Drama, Mystery", "genres_pipe": "|Thriller|Drama|Mystery|", "keywords": "berlin, loss of father, airplane, baby-snatching", "tags_pipe": "|berlin|loss of father|airplane|baby-snatching|", "overview": "A claustrophobic, Hitchcockian thriller. A bereaved woman and her daughter are flying home from Berlin to America. At 30,000 feet the child vanishes and nobody admits she was ever on that plane.", "text_for_embedding": "Flightplan (2005). Genres: Thriller, Drama, Mystery. A claustrophobic, Hitchcockian thriller. A bereaved woman and her daughter are flying home from Berlin to America. At 30,000 feet the child vanishes and nobody admits she was ever on that plane.. Tags: berlin, loss of father, airplane, baby-snatching"} +{"id": "8984", "title": "Disclosure", "year": 1994, "duration_min": 123, "rating": 5.9, "genres": "Drama, Thriller, Crime, Mystery, Romance", "genres_pipe": "|Drama|Thriller|Crime|Mystery|Romance|", "keywords": "employee, workplace, sexual harassment, intrigue", "tags_pipe": "|employee|workplace|sexual harassment|intrigue|", "overview": "A computer specialist is sued for sexual harassment by a former lover turned boss who initiated the act forcefully, which threatens both his career and his personal life.", "text_for_embedding": "Disclosure (1994). Genres: Drama, Thriller, Crime, Mystery, Romance. A computer specialist is sued for sexual harassment by a former lover turned boss who initiated the act forcefully, which threatens both his career and his personal life.. Tags: employee, workplace, sexual harassment, intrigue"} +{"id": "795", "title": "City of Angels", "year": 1998, "duration_min": 114, "rating": 6.4, "genres": "Drama, Fantasy, Romance", "genres_pipe": "|Drama|Fantasy|Romance|", "keywords": "suicide, angel, life and death, desperation, operation, heaven, faith, afterlife, los angeles, interspecies romance", "tags_pipe": "|suicide|angel|life and death|desperation|operation|heaven|faith|afterlife|los angeles|interspecies romance|", "overview": "When guardian angel Seth -- who invisibly watches over the citizens of Los Angeles -- becomes captivated by Maggie, a strong-willed heart surgeon, he ponders trading in his pure, otherworldly existence for a mortal life with his beloved. The couple embarks on a tender but forbidden romance spanning heaven and Earth.", "text_for_embedding": "City of Angels (1998). Genres: Drama, Fantasy, Romance. When guardian angel Seth -- who invisibly watches over the citizens of Los Angeles -- becomes captivated by Maggie, a strong-willed heart surgeon, he ponders trading in his pure, otherworldly existence for a mortal life with his beloved. The couple embarks on a tender but forbidden romance spanning heaven and Earth.. Tags: suicide, angel, life and death, desperation, operation, heaven, faith, afterlife, los angeles, interspecies romance"} +{"id": "24", "title": "Kill Bill: Vol. 1", "year": 2003, "duration_min": 111, "rating": 7.7, "genres": "Action, Crime", "genres_pipe": "|Action|Crime|", "keywords": "japan, coma, martial arts, kung fu, underworld, yakuza, sword, bride, revenge, gore, female yakuza, blood, wedding, samurai sword, part animation", "tags_pipe": "|japan|coma|martial arts|kung fu|underworld|yakuza|sword|bride|revenge|gore|female yakuza|blood|wedding|samurai sword|part animation|", "overview": "An assassin is shot at the altar by her ruthless employer, Bill and other members of their assassination circle – but 'The Bride' lives to plot her vengeance. Setting out for some payback, she makes a death list and hunts down those who wronged her, saving Bill for last.", "text_for_embedding": "Kill Bill: Vol. 1 (2003). Genres: Action, Crime. An assassin is shot at the altar by her ruthless employer, Bill and other members of their assassination circle – but 'The Bride' lives to plot her vengeance. Setting out for some payback, she makes a death list and hunts down those who wronged her, saving Bill for last.. Tags: japan, coma, martial arts, kung fu, underworld, yakuza, sword, bride, revenge, gore, female yakuza, blood, wedding, samurai sword, part animation"} +{"id": "11353", "title": "Bowfinger", "year": 1999, "duration_min": 97, "rating": 6.0, "genres": "Comedy", "genres_pipe": "|Comedy|", "keywords": "film producer, film director, movie studio, hollywood, filmmaking, movie actress", "tags_pipe": "|film producer|film director|movie studio|hollywood|filmmaking|movie actress|", "overview": "On the verge of bankruptcy and desperate for his big break, aspiring filmmaker Bobby Bowfinger concocts a crazy plan to make his ultimate dream movie. Rallying a ragtag team that includes a starry-eyed ingenue, a has-been diva and a film studio gofer, he sets out to shoot a blockbuster featuring the biggest star in Hollywood, Kit Ramsey -- only without letting Ramsey know he's in the picture.", "text_for_embedding": "Bowfinger (1999). Genres: Comedy. On the verge of bankruptcy and desperate for his big break, aspiring filmmaker Bobby Bowfinger concocts a crazy plan to make his ultimate dream movie. Rallying a ragtag team that includes a starry-eyed ingenue, a has-been diva and a film studio gofer, he sets out to shoot a blockbuster featuring the biggest star in Hollywood, Kit Ramsey -- only without letting Ramsey know he's in the picture.. Tags: film producer, film director, movie studio, hollywood, filmmaking, movie actress"} +{"id": "393", "title": "Kill Bill: Vol. 2", "year": 2004, "duration_min": 136, "rating": 7.6, "genres": "Action, Crime, Thriller", "genres_pipe": "|Action|Crime|Thriller|", "keywords": "brother brother relationship, swordplay, katana, mother role, rage and hate, daughter, right and justice, single, aftercreditsstinger, duringcreditsstinger", "tags_pipe": "|brother brother relationship|swordplay|katana|mother role|rage and hate|daughter|right and justice|single|aftercreditsstinger|duringcreditsstinger|", "overview": "The Bride unwaveringly continues on her roaring rampage of revenge against the band of assassins who had tried to kill her and her unborn child. She visits each of her former associates one-by-one, checking off the victims on her Death List Five until there's nothing left to do … but kill Bill.", "text_for_embedding": "Kill Bill: Vol. 2 (2004). Genres: Action, Crime, Thriller. The Bride unwaveringly continues on her roaring rampage of revenge against the band of assassins who had tried to kill her and her unborn child. She visits each of her former associates one-by-one, checking off the victims on her Death List Five until there's nothing left to do … but kill Bill.. Tags: brother brother relationship, swordplay, katana, mother role, rage and hate, daughter, right and justice, single, aftercreditsstinger, duringcreditsstinger"} +{"id": "9618", "title": "Tango & Cash", "year": 1989, "duration_min": 104, "rating": 6.1, "genres": "Action, Adventure, Comedy", "genres_pipe": "|Action|Adventure|Comedy|", "keywords": "prisoner, war on drugs, los angeles", "tags_pipe": "|prisoner|war on drugs|los angeles|", "overview": "Ray Tango and Gabriel Cash are narcotics detectives who, while both being extremely successful, can't stand each other. Crime Lord Yves Perret, furious at the loss of income that Tango and Cash have caused him, frames the two for murder. Caught with the murder weapon on the scene of the crime, the two have no alibi. Thrown into prison with most of the criminals they helped convict, it appears that they are going to have to trust each other if they are to clear their names and catch the evil Perret.", "text_for_embedding": "Tango & Cash (1989). Genres: Action, Adventure, Comedy. Ray Tango and Gabriel Cash are narcotics detectives who, while both being extremely successful, can't stand each other. Crime Lord Yves Perret, furious at the loss of income that Tango and Cash have caused him, frames the two for murder. Caught with the murder weapon on the scene of the crime, the two have no alibi. Thrown into prison with most of the criminals they helped convict, it appears that they are going to have to trust each other if they are to clear their names and catch the evil Perret.. Tags: prisoner, war on drugs, los angeles"} +{"id": "9374", "title": "Death Becomes Her", "year": 1992, "duration_min": 104, "rating": 6.3, "genres": "Fantasy, Comedy", "genres_pipe": "|Fantasy|Comedy|", "keywords": "jealousy, beauty, immortality, rivalry, potion, drinking", "tags_pipe": "|jealousy|beauty|immortality|rivalry|potion|drinking|", "overview": "Madeline is married to Ernest, who was once arch-rival Helen's fiance. After recovering from a mental breakdown, Helen vows to kill Madeline and steal back Ernest. Unfortunately for everyone, the introduction of a magic potion causes things to be a great deal more complicated than a mere murder plot.", "text_for_embedding": "Death Becomes Her (1992). Genres: Fantasy, Comedy. Madeline is married to Ernest, who was once arch-rival Helen's fiance. After recovering from a mental breakdown, Helen vows to kill Madeline and steal back Ernest. Unfortunately for everyone, the introduction of a magic potion causes things to be a great deal more complicated than a mere murder plot.. Tags: jealousy, beauty, immortality, rivalry, potion, drinking"} +{"id": "8584", "title": "Shanghai Noon", "year": 2000, "duration_min": 110, "rating": 6.2, "genres": "Adventure, Action, Comedy, Western", "genres_pipe": "|Adventure|Action|Comedy|Western|", "keywords": "princess, sioux, travel, rescue, native american, chinese, cowboy, duringcreditsstinger, 19th century", "tags_pipe": "|princess|sioux|travel|rescue|native american|chinese|cowboy|duringcreditsstinger|19th century|", "overview": "Chon Wang, a clumsy imperial guard trails Princess Pei Pei when she is kidnapped from the Forbidden City and transported to America. Wang follows her captors to Nevada, where he teams up with an unlikely partner, outcast outlaw Roy O'Bannon, and tries to spring the princess from her imprisonment.", "text_for_embedding": "Shanghai Noon (2000). Genres: Adventure, Action, Comedy, Western. Chon Wang, a clumsy imperial guard trails Princess Pei Pei when she is kidnapped from the Forbidden City and transported to America. Wang follows her captors to Nevada, where he teams up with an unlikely partner, outcast outlaw Roy O'Bannon, and tries to spring the princess from her imprisonment.. Tags: princess, sioux, travel, rescue, native american, chinese, cowboy, duringcreditsstinger, 19th century"} +{"id": "2320", "title": "Executive Decision", "year": 1996, "duration_min": 133, "rating": 5.8, "genres": "Action, Adventure, Drama, Thriller", "genres_pipe": "|Action|Adventure|Drama|Thriller|", "keywords": "bomb, ransom, hostage, airplane, hijacking, terror cell, special unit, deception, rescue, covert operation, disaster, shootout, terrorism, explosion, violence", "tags_pipe": "|bomb|ransom|hostage|airplane|hijacking|terror cell|special unit|deception|rescue|covert operation|disaster|shootout|terrorism|explosion|violence|", "overview": "Terrorists hijack a 747 inbound to Washington D.C., demanding the the release of their imprisoned leader. Intelligence expert David Grant (Kurt Russell) suspects another reason and he is soon the reluctant member of a special assault team that is assigned to intercept the plane and hijackers.", "text_for_embedding": "Executive Decision (1996). Genres: Action, Adventure, Drama, Thriller. Terrorists hijack a 747 inbound to Washington D.C., demanding the the release of their imprisoned leader. Intelligence expert David Grant (Kurt Russell) suspects another reason and he is soon the reluctant member of a special assault team that is assigned to intercept the plane and hijackers.. Tags: bomb, ransom, hostage, airplane, hijacking, terror cell, special unit, deception, rescue, covert operation, disaster, shootout, terrorism, explosion, violence"} +{"id": "58224", "title": "Mr. Popper's Penguins", "year": 2011, "duration_min": 94, "rating": 5.7, "genres": "Comedy, Family", "genres_pipe": "|Comedy|Family|", "keywords": "taxi, restaurant, zoo, penguin, ex husband, little boy, zookeeper, doorman, ride, bird hatching, aftercreditsstinger, duringcreditsstinger", "tags_pipe": "|taxi|restaurant|zoo|penguin|ex husband|little boy|zookeeper|doorman|ride|bird hatching|aftercreditsstinger|duringcreditsstinger|", "overview": "Jim Carrey stars as Tom Popper, a successful businessman who’s clueless when it comes to the really important things in life...until he inherits six “adorable” penguins, each with its own unique personality. Soon Tom’s rambunctious roommates turn his swank New York apartment into a snowy winter wonderland — and the rest of his world upside-down.", "text_for_embedding": "Mr. Popper's Penguins (2011). Genres: Comedy, Family. Jim Carrey stars as Tom Popper, a successful businessman who’s clueless when it comes to the really important things in life...until he inherits six “adorable” penguins, each with its own unique personality. Soon Tom’s rambunctious roommates turn his swank New York apartment into a snowy winter wonderland — and the rest of his world upside-down.. Tags: taxi, restaurant, zoo, penguin, ex husband, little boy, zookeeper, doorman, ride, bird hatching, aftercreditsstinger, duringcreditsstinger"} +{"id": "1729", "title": "The Forbidden Kingdom", "year": 2008, "duration_min": 104, "rating": 6.3, "genres": "Action, Adventure, Fantasy", "genres_pipe": "|Action|Adventure|Fantasy|", "keywords": "tempel, shaolin, teenager, urination, staff, warrior, monkey king", "tags_pipe": "|tempel|shaolin|teenager|urination|staff|warrior|monkey king|", "overview": "An American teenager who is obsessed with Hong Kong cinema and kung-fu classics makes an extraordinary discovery in a Chinatown pawnshop: the legendary stick weapon of the Chinese sage and warrior, the Monkey King. With the lost relic in hand, the teenager unexpectedly finds himself travelling back to ancient China to join a crew of warriors from martial arts lore on a dangerous quest to free the imprisoned Monkey King.", "text_for_embedding": "The Forbidden Kingdom (2008). Genres: Action, Adventure, Fantasy. An American teenager who is obsessed with Hong Kong cinema and kung-fu classics makes an extraordinary discovery in a Chinatown pawnshop: the legendary stick weapon of the Chinese sage and warrior, the Monkey King. With the lost relic in hand, the teenager unexpectedly finds himself travelling back to ancient China to join a crew of warriors from martial arts lore on a dangerous quest to free the imprisoned Monkey King.. Tags: tempel, shaolin, teenager, urination, staff, warrior, monkey king"} +{"id": "175574", "title": "Free Birds", "year": 2013, "duration_min": 91, "rating": 5.7, "genres": "Animation, Comedy, Family", "genres_pipe": "|Animation|Comedy|Family|", "keywords": "holiday, thanksgiving, freedom, duringcreditsstinger, 3d", "tags_pipe": "|holiday|thanksgiving|freedom|duringcreditsstinger|3d|", "overview": "In this irreverent, hilarious, adventurous buddy comedy for audiences of all ages, directed by Jimmy Hayward (Horton Hears a Who!), two turkeys from opposite sides of the tracks must put aside their differences and team up to travel back in time to change the course of history - and get turkey off the holiday menu for good.", "text_for_embedding": "Free Birds (2013). Genres: Animation, Comedy, Family. In this irreverent, hilarious, adventurous buddy comedy for audiences of all ages, directed by Jimmy Hayward (Horton Hears a Who!), two turkeys from opposite sides of the tracks must put aside their differences and team up to travel back in time to change the course of history - and get turkey off the holiday menu for good.. Tags: holiday, thanksgiving, freedom, duringcreditsstinger, 3d"} +{"id": "8077", "title": "Alien³", "year": 1992, "duration_min": 114, "rating": 6.2, "genres": "Science Fiction, Action, Horror", "genres_pipe": "|Science Fiction|Action|Horror|", "keywords": "prison, android, spacecraft, space marine, imprisonment, space colony, space travel, rottweiler, dystopia, sequel, alien, redemption, outer space, planet, shaved head", "tags_pipe": "|prison|android|spacecraft|space marine|imprisonment|space colony|space travel|rottweiler|dystopia|sequel|alien|redemption|outer space|planet|shaved head|", "overview": "After escaping with Newt and Hicks from the alien planet, Ripley crash lands on Fiorina 161, a prison planet and host to a correctional facility. Unfortunately, although Newt and Hicks do not survive the crash, a more unwelcome visitor does. The prison does not allow weapons of any kind, and with aid being a long time away, the prisoners must simply survive in any way they can.", "text_for_embedding": "Alien³ (1992). Genres: Science Fiction, Action, Horror. After escaping with Newt and Hicks from the alien planet, Ripley crash lands on Fiorina 161, a prison planet and host to a correctional facility. Unfortunately, although Newt and Hicks do not survive the crash, a more unwelcome visitor does. The prison does not allow weapons of any kind, and with aid being a long time away, the prisoners must simply survive in any way they can.. Tags: prison, android, spacecraft, space marine, imprisonment, space colony, space travel, rottweiler, dystopia, sequel, alien, redemption, outer space, planet, shaved head"} +{"id": "8818", "title": "Evita", "year": 1996, "duration_min": 134, "rating": 5.9, "genres": "History, Drama, Music", "genres_pipe": "|History|Drama|Music|", "keywords": "prostitute, deification, dancehall hostess, perónism, argentine president, rise to power, singing narrator, soccer ball", "tags_pipe": "|prostitute|deification|dancehall hostess|perónism|argentine president|rise to power|singing narrator|soccer ball|", "overview": "The hit musical based on the life of Evita Duarte, a B-movie Argentinian actress who eventually became the wife of Argentinian president and dictator Juan Perón, and the most beloved and hated woman in Argentina.", "text_for_embedding": "Evita (1996). Genres: History, Drama, Music. The hit musical based on the life of Evita Duarte, a B-movie Argentinian actress who eventually became the wife of Argentinian president and dictator Juan Perón, and the most beloved and hated woman in Argentina.. Tags: prostitute, deification, dancehall hostess, perónism, argentine president, rise to power, singing narrator, soccer ball"} +{"id": "8195", "title": "Ronin", "year": 1998, "duration_min": 122, "rating": 6.7, "genres": "Action, Thriller, Crime, Adventure", "genres_pipe": "|Action|Thriller|Crime|Adventure|", "keywords": "paris, france, arms deal, audi, impostor, case, violence, ice skating, computer expert, ex kgb, preparation, hit with a car door, cellular phone trace, merry go round", "tags_pipe": "|paris|france|arms deal|audi|impostor|case|violence|ice skating|computer expert|ex kgb|preparation|hit with a car door|cellular phone trace|merry go round|", "overview": "A briefcase with undisclosed contents – sought by Irish terrorists and the Russian mob – makes its way into criminals' hands. An Irish liaison assembles a squad of mercenaries, or 'ronin', and gives them the thorny task of recovering the case.", "text_for_embedding": "Ronin (1998). Genres: Action, Thriller, Crime, Adventure. A briefcase with undisclosed contents – sought by Irish terrorists and the Russian mob – makes its way into criminals' hands. An Irish liaison assembles a squad of mercenaries, or 'ronin', and gives them the thorny task of recovering the case.. Tags: paris, france, arms deal, audi, impostor, case, violence, ice skating, computer expert, ex kgb, preparation, hit with a car door, cellular phone trace, merry go round"} +{"id": "10586", "title": "The Ghost and the Darkness", "year": 1996, "duration_min": 109, "rating": 6.4, "genres": "Adventure", "genres_pipe": "|Adventure|", "keywords": "africa, lion, bridge, based on true story, kenya, animal attack, lion attack, colonialism, swahili", "tags_pipe": "|africa|lion|bridge|based on true story|kenya|animal attack|lion attack|colonialism|swahili|", "overview": "Sir Robert Beaumont is behind schedule on a railroad in Africa. Enlisting noted engineer John Henry Patterson to right the ship, Beaumont expects results. Everything seems great until the crew discovers the mutilated corpse of the project's foreman, seemingly killed by a lion. After several more attacks, Patterson calls in famed hunter Charles Remington, who has finally met his match in the bloodthirsty lions.", "text_for_embedding": "The Ghost and the Darkness (1996). Genres: Adventure. Sir Robert Beaumont is behind schedule on a railroad in Africa. Enlisting noted engineer John Henry Patterson to right the ship, Beaumont expects results. Everything seems great until the crew discovers the mutilated corpse of the project's foreman, seemingly killed by a lion. After several more attacks, Patterson calls in famed hunter Charles Remington, who has finally met his match in the bloodthirsty lions.. Tags: africa, lion, bridge, based on true story, kenya, animal attack, lion attack, colonialism, swahili"} +{"id": "116149", "title": "Paddington", "year": 2014, "duration_min": 95, "rating": 7.0, "genres": "Family, Comedy", "genres_pipe": "|Family|Comedy|", "keywords": "england, train station, based on novel, bear, anthropomorphism, talking to animals, children's book", "tags_pipe": "|england|train station|based on novel|bear|anthropomorphism|talking to animals|children's book|", "overview": "A young Peruvian bear with a passion for all things British travels to London in search of a home. Finding himself lost and alone at Paddington Station, he begins to realize that city life is not all he had imagined - until he meets the kindly Brown family, who read the label around his neck ('Please look after this bear. Thank you.') and offer him a temporary haven. It looks as though his luck has changed until this rarest of bears catches the eye of a museum taxidermist...", "text_for_embedding": "Paddington (2014). Genres: Family, Comedy. A young Peruvian bear with a passion for all things British travels to London in search of a home. Finding himself lost and alone at Paddington Station, he begins to realize that city life is not all he had imagined - until he meets the kindly Brown family, who read the label around his neck ('Please look after this bear. Thank you.') and offer him a temporary haven. It looks as though his luck has changed until this rarest of bears catches the eye of a museum taxidermist.... Tags: england, train station, based on novel, bear, anthropomorphism, talking to animals, children's book"} +{"id": "80035", "title": "The Watch", "year": 2012, "duration_min": 98, "rating": 5.3, "genres": "Comedy", "genres_pipe": "|Comedy|", "keywords": "usa, sterility, castration, marriage, friendship, alien, suburb, alien invasion, death, teenage daughter, neighborhood watch, creepy neighbor", "tags_pipe": "|usa|sterility|castration|marriage|friendship|alien|suburb|alien invasion|death|teenage daughter|neighborhood watch|creepy neighbor|", "overview": "Four everyday suburban guys come together as an excuse to escape their humdrum lives one night a week. But when they accidentally discover that their town has become overrun with aliens posing as ordinary suburbanites, they have no choice but to save their neighborhood - and the world - from total extermination.", "text_for_embedding": "The Watch (2012). Genres: Comedy. Four everyday suburban guys come together as an excuse to escape their humdrum lives one night a week. But when they accidentally discover that their town has become overrun with aliens posing as ordinary suburbanites, they have no choice but to save their neighborhood - and the world - from total extermination.. Tags: usa, sterility, castration, marriage, friendship, alien, suburb, alien invasion, death, teenage daughter, neighborhood watch, creepy neighbor"} +{"id": "10632", "title": "The Hunted", "year": 2003, "duration_min": 94, "rating": 6.0, "genres": "Drama, Action, Thriller, Crime", "genres_pipe": "|Drama|Action|Thriller|Crime|", "keywords": "hunter, fbi, knife, balkan war, woods, psychopathic killer, slaughter, survivalist, maniac, special forces, killing spree, combat, ex soldier, dark past, manhunt", "tags_pipe": "|hunter|fbi|knife|balkan war|woods|psychopathic killer|slaughter|survivalist|maniac|special forces|killing spree|combat|ex soldier|dark past|manhunt|", "overview": "In the wilderness of British Columbia, two hunters are tracked and viciously murdered by Aaron Hallum. Former Special Operations instructor, L.T. Bonham is approached and asked to apprehend Hallum, his former student, who has 'gone rogue' after suffering severe battle stress from his time in Kosovo.", "text_for_embedding": "The Hunted (2003). Genres: Drama, Action, Thriller, Crime. In the wilderness of British Columbia, two hunters are tracked and viciously murdered by Aaron Hallum. Former Special Operations instructor, L.T. Bonham is approached and asked to apprehend Hallum, his former student, who has 'gone rogue' after suffering severe battle stress from his time in Kosovo.. Tags: hunter, fbi, knife, balkan war, woods, psychopathic killer, slaughter, survivalist, maniac, special forces, killing spree, combat, ex soldier, dark past, manhunt"} +{"id": "12117", "title": "Instinct", "year": 1999, "duration_min": 126, "rating": 6.2, "genres": "Drama, Mystery, Thriller", "genres_pipe": "|Drama|Mystery|Thriller|", "keywords": "prison, gorilla, research, instinct, murder, psychologist", "tags_pipe": "|prison|gorilla|research|instinct|murder|psychologist|", "overview": "Dr. Ethan Powell, an anthropologist, is in Africa studying apes when he is lost for two years. When he is found, he kills 3 men and puts 2 in the hospital. Cuba Gooding's character is a psychiatrist who wants to take up the task of trying to get Dr. Powell to speak again and maybe even stand judgment at a trial for his release from prison of mental cases. Along the way, Cuba has to deal with also helping the mental patients that are being abused and neglected. In this process Cuba learns a few things about himself and life, and so does Anthony Hopkins character, Dr. Powell.", "text_for_embedding": "Instinct (1999). Genres: Drama, Mystery, Thriller. Dr. Ethan Powell, an anthropologist, is in Africa studying apes when he is lost for two years. When he is found, he kills 3 men and puts 2 in the hospital. Cuba Gooding's character is a psychiatrist who wants to take up the task of trying to get Dr. Powell to speak again and maybe even stand judgment at a trial for his release from prison of mental cases. Along the way, Cuba has to deal with also helping the mental patients that are being abused and neglected. In this process Cuba learns a few things about himself and life, and so does Anthony Hopkins character, Dr. Powell.. Tags: prison, gorilla, research, instinct, murder, psychologist"} +{"id": "1792", "title": "Stuck on You", "year": 2003, "duration_min": 118, "rating": 5.1, "genres": "Comedy", "genres_pipe": "|Comedy|", "keywords": "sex, dancer, martial arts, cook, stripper, love, bully, hollywood, twins, flashback, freak, actor, anxiety, conjoined, siamese", "tags_pipe": "|sex|dancer|martial arts|cook|stripper|love|bully|hollywood|twins|flashback|freak|actor|anxiety|conjoined|siamese|", "overview": "In Martha's Vineyard, Mass., conjoined twins Walt (Greg Kinnear) and Bob Tenor (Matt Damon) make the best of their handicap by being the fastest grill cooks in town. While outgoing Walt hopes to one day become a famous actor, shy Bob prefers to stay out of the spotlight. When a fading Hollywood actress, Cher (Cher), decides to get her show \"Honey and the Beaze\" cancelled, she hires Walt -- and his brotherly appendage -- as her costars. But their addition surprisingly achieves the opposite.", "text_for_embedding": "Stuck on You (2003). Genres: Comedy. In Martha's Vineyard, Mass., conjoined twins Walt (Greg Kinnear) and Bob Tenor (Matt Damon) make the best of their handicap by being the fastest grill cooks in town. While outgoing Walt hopes to one day become a famous actor, shy Bob prefers to stay out of the spotlight. When a fading Hollywood actress, Cher (Cher), decides to get her show \"Honey and the Beaze\" cancelled, she hires Walt -- and his brotherly appendage -- as her costars. But their addition surprisingly achieves the opposite.. Tags: sex, dancer, martial arts, cook, stripper, love, bully, hollywood, twins, flashback, freak, actor, anxiety, conjoined, siamese"} +{"id": "13260", "title": "Semi-Pro", "year": 2008, "duration_min": 91, "rating": 5.4, "genres": "Comedy", "genres_pipe": "|Comedy|", "keywords": "sport, basketball, flint michigan, nba, merger, trade, garbage can, canon, ramp, championship, dead parent", "tags_pipe": "|sport|basketball|flint michigan|nba|merger|trade|garbage can|canon|ramp|championship|dead parent|", "overview": "Jackie Moon is the owner, promoter, coach, and star player of the Flint Michigan Tropics of the American Basketball Association (ABA). In 1976 before the ABA collapses, the National Basketball Association (NBA) plans to merge with the best teams of the ABA at the end of the season. Only the top four teams will make the move and the worst teams will fold. The Tropics are the worst team in the league and if they want to make it to the NBA, Jackie Moon must rally his team and start winning. The only problem is the fact that Jackie Moon is not really the coach and star basketball player he thinks he is. To keep his team from oblivion and leave his mark in the city, Jackie Moon must inspire his team to win fourth place in the playoffs.", "text_for_embedding": "Semi-Pro (2008). Genres: Comedy. Jackie Moon is the owner, promoter, coach, and star player of the Flint Michigan Tropics of the American Basketball Association (ABA). In 1976 before the ABA collapses, the National Basketball Association (NBA) plans to merge with the best teams of the ABA at the end of the season. Only the top four teams will make the move and the worst teams will fold. The Tropics are the worst team in the league and if they want to make it to the NBA, Jackie Moon must rally his team and start winning. The only problem is the fact that Jackie Moon is not really the coach and star basketball player he thinks he is. To keep his team from oblivion and leave his mark in the city, Jackie Moon must inspire his team to win fourth place in the playoffs.. Tags: sport, basketball, flint michigan, nba, merger, trade, garbage can, canon, ramp, championship, dead parent"} +{"id": "72197", "title": "The Pirates! In an Adventure with Scientists!", "year": 2012, "duration_min": 88, "rating": 6.4, "genres": "Animation, Adventure, Family, Comedy", "genres_pipe": "|Animation|Adventure|Family|Comedy|", "keywords": "rivalry, stop motion, pirate, aftercreditsstinger, duringcreditsstinger", "tags_pipe": "|rivalry|stop motion|pirate|aftercreditsstinger|duringcreditsstinger|", "overview": "The luxuriantly bearded Pirate Captain is a boundlessly enthusiastic, if somewhat less-than-successful, terror of the High Seas. With a rag-tag crew at his side, and seemingly blind to the impossible odds stacked against him, the Captain has one dream: to beat his bitter rivals Black Bellamy and Cutlass Liz to the much coveted Pirate of the Year Award. It’s a quest that takes our heroes from the shores of exotic Blood Island to the foggy streets of Victorian London. Along the way they battle a diabolical queen and team up with a haplessly smitten young scientist, but never lose sight of what a pirate loves best: adventure!", "text_for_embedding": "The Pirates! In an Adventure with Scientists! (2012). Genres: Animation, Adventure, Family, Comedy. The luxuriantly bearded Pirate Captain is a boundlessly enthusiastic, if somewhat less-than-successful, terror of the High Seas. With a rag-tag crew at his side, and seemingly blind to the impossible odds stacked against him, the Captain has one dream: to beat his bitter rivals Black Bellamy and Cutlass Liz to the much coveted Pirate of the Year Award. It’s a quest that takes our heroes from the shores of exotic Blood Island to the foggy streets of Victorian London. Along the way they battle a diabolical queen and team up with a haplessly smitten young scientist, but never lose sight of what a pirate loves best: adventure!. Tags: rivalry, stop motion, pirate, aftercreditsstinger, duringcreditsstinger"} +{"id": "3580", "title": "Changeling", "year": 2008, "duration_min": 141, "rating": 7.3, "genres": "Crime, Drama, Mystery", "genres_pipe": "|Crime|Drama|Mystery|", "keywords": "corruption, mother, nudity, minister, power, public, government, police, reunion, murder, conspiracy, los angeles, missing, mother love, criticism", "tags_pipe": "|corruption|mother|nudity|minister|power|public|government|police|reunion|murder|conspiracy|los angeles|missing|mother love|criticism|", "overview": "Christine Collins is overjoyed when her kidnapped son is brought back home. But when Christine suspects that the boy returned to her isn't her child, the police captain has her committed to an asylum.", "text_for_embedding": "Changeling (2008). Genres: Crime, Drama, Mystery. Christine Collins is overjoyed when her kidnapped son is brought back home. But when Christine suspects that the boy returned to her isn't her child, the police captain has her committed to an asylum.. Tags: corruption, mother, nudity, minister, power, public, government, police, reunion, murder, conspiracy, los angeles, missing, mother love, criticism"} +{"id": "12123", "title": "Chain Reaction", "year": 1996, "duration_min": 107, "rating": 5.3, "genres": "Action, Drama, Science Fiction, Thriller", "genres_pipe": "|Action|Drama|Science Fiction|Thriller|", "keywords": "fbi, hydrogen bomb, secret lab, energy supply, conspiracy, aftercreditsstinger", "tags_pipe": "|fbi|hydrogen bomb|secret lab|energy supply|conspiracy|aftercreditsstinger|", "overview": "Two researchers in a green alternative energy project are put on the run when they are framed for murder and treason.", "text_for_embedding": "Chain Reaction (1996). Genres: Action, Drama, Science Fiction, Thriller. Two researchers in a green alternative energy project are put on the run when they are framed for murder and treason.. Tags: fbi, hydrogen bomb, secret lab, energy supply, conspiracy, aftercreditsstinger"} +{"id": "9566", "title": "The Fan", "year": 1996, "duration_min": 116, "rating": 5.7, "genres": "Drama, Mystery, Thriller", "genres_pipe": "|Drama|Mystery|Thriller|", "keywords": "sport, luck, san francisco giants, child custody, baseball pitcher, baseball fan, psychotic fan, sports agent, driving range, steam room", "tags_pipe": "|sport|luck|san francisco giants|child custody|baseball pitcher|baseball fan|psychotic fan|sports agent|driving range|steam room|", "overview": "When the San Francisco Giants pay centerfielder Bobby Rayburn $40 million to lead their team to the World Series, no one is happier or more supportive than #1 fan Gil Renard. So when Rayburn becomes mired in the worst slump of his career, the obsessed Renard decides to stop at nothing to help his idol regain his former glory... not even murder.", "text_for_embedding": "The Fan (1996). Genres: Drama, Mystery, Thriller. When the San Francisco Giants pay centerfielder Bobby Rayburn $40 million to lead their team to the World Series, no one is happier or more supportive than #1 fan Gil Renard. So when Rayburn becomes mired in the worst slump of his career, the obsessed Renard decides to stop at nothing to help his idol regain his former glory... not even murder.. Tags: sport, luck, san francisco giants, child custody, baseball pitcher, baseball fan, psychotic fan, sports agent, driving range, steam room"} +{"id": "9833", "title": "The Phantom of the Opera", "year": 2004, "duration_min": 143, "rating": 7.0, "genres": "Thriller, Drama, Romance", "genres_pipe": "|Thriller|Drama|Romance|", "keywords": "dancing, obsession, auction, wheelchair, rose, product placement, musical, remake, tragic villain, black and white, rooftop, heroine, disfigured face, based on stage musical, theater", "tags_pipe": "|dancing|obsession|auction|wheelchair|rose|product placement|musical|remake|tragic villain|black and white|rooftop|heroine|disfigured face|based on stage musical|theater|", "overview": "Deformed since birth, a bitter man known only as the Phantom lives in the sewers underneath the Paris Opera House. He falls in love with the obscure chorus singer Christine, and privately tutors her while terrorizing the rest of the opera house and demanding Christine be given lead roles. Things get worse when Christine meets back up with her childhood acquaintance Raoul and the two fall in love", "text_for_embedding": "The Phantom of the Opera (2004). Genres: Thriller, Drama, Romance. Deformed since birth, a bitter man known only as the Phantom lives in the sewers underneath the Paris Opera House. He falls in love with the obscure chorus singer Christine, and privately tutors her while terrorizing the rest of the opera house and demanding Christine be given lead roles. Things get worse when Christine meets back up with her childhood acquaintance Raoul and the two fall in love. Tags: dancing, obsession, auction, wheelchair, rose, product placement, musical, remake, tragic villain, black and white, rooftop, heroine, disfigured face, based on stage musical, theater"} +{"id": "4517", "title": "Elizabeth: The Golden Age", "year": 2007, "duration_min": 114, "rating": 6.6, "genres": "Drama, History, Romance", "genres_pipe": "|Drama|History|Romance|", "keywords": "england, assassination, spain, virgin, colony, governance, queen elizabeth i, religious war, tudors, execution, middle ages, catholicism, sea battle, palace intrigue", "tags_pipe": "|england|assassination|spain|virgin|colony|governance|queen elizabeth i|religious war|tudors|execution|middle ages|catholicism|sea battle|palace intrigue|", "overview": "When Queen Elizabeth's reign is threatened by ruthless familial betrayal and Spain's invading army, she and her shrewd adviser must act to safeguard to the lives of her people.", "text_for_embedding": "Elizabeth: The Golden Age (2007). Genres: Drama, History, Romance. When Queen Elizabeth's reign is threatened by ruthless familial betrayal and Spain's invading army, she and her shrewd adviser must act to safeguard to the lives of her people.. Tags: england, assassination, spain, virgin, colony, governance, queen elizabeth i, religious war, tudors, execution, middle ages, catholicism, sea battle, palace intrigue"} +{"id": "8202", "title": "Æon Flux", "year": 2005, "duration_min": 93, "rating": 5.4, "genres": "Action, Science Fiction", "genres_pipe": "|Action|Science Fiction|", "keywords": "martial arts, dystopia, surrealism, based on cartoon, shootout, espionage, infertility, cyberpunk, extreme violence, sabotage, one against many, woman director, hand to hand combat, action heroine, human cloning", "tags_pipe": "|martial arts|dystopia|surrealism|based on cartoon|shootout|espionage|infertility|cyberpunk|extreme violence|sabotage|one against many|woman director|hand to hand combat|action heroine|human cloning|", "overview": "400 years into the future, disease has wiped out the majority of the world's population, except one walled city, Bregna, ruled by a congress of scientists. When Æon Flux, the top operative in the underground 'Monican' rebellion, is sent on a mission to kill a government leader, she uncovers a world of secrets.", "text_for_embedding": "Æon Flux (2005). Genres: Action, Science Fiction. 400 years into the future, disease has wiped out the majority of the world's population, except one walled city, Bregna, ruled by a congress of scientists. When Æon Flux, the top operative in the underground 'Monican' rebellion, is sent on a mission to kill a government leader, she uncovers a world of secrets.. Tags: martial arts, dystopia, surrealism, based on cartoon, shootout, espionage, infertility, cyberpunk, extreme violence, sabotage, one against many, woman director, hand to hand combat, action heroine, human cloning"} +{"id": "16072", "title": "Gods and Generals", "year": 2003, "duration_min": 214, "rating": 6.1, "genres": "Drama, History, War", "genres_pipe": "|Drama|History|War|", "keywords": "war, battle, union soldier, confederate soldier, american civil war, secession", "tags_pipe": "|war|battle|union soldier|confederate soldier|american civil war|secession|", "overview": "The film centers mostly around the personal and professional life of Thomas \"Stonewall\" Jackson, a brilliant if eccentric Confederate general, from the outbreak of the American Civil War until its halfway point when Jackson is killed accidentally by his own soldiers in May 1863 during his greatest victory.", "text_for_embedding": "Gods and Generals (2003). Genres: Drama, History, War. The film centers mostly around the personal and professional life of Thomas \"Stonewall\" Jackson, a brilliant if eccentric Confederate general, from the outbreak of the American Civil War until its halfway point when Jackson is killed accidentally by his own soldiers in May 1863 during his greatest victory.. Tags: war, battle, union soldier, confederate soldier, american civil war, secession"} +{"id": "34314", "title": "Turbulence", "year": 1997, "duration_min": 100, "rating": 5.2, "genres": "Action, Thriller, Crime", "genres_pipe": "|Action|Thriller|Crime|", "keywords": "stewardess, airplane, shootout, air marshal, christmas, turbulence", "tags_pipe": "|stewardess|airplane|shootout|air marshal|christmas|turbulence|", "overview": "On a flight transporting dangerous convicts, murderer Ryan Weaver manages to break free and cause complete chaos throughout the plane. As various people on board fall victim to Weaver, it is ultimately down to flight attendant Teri Halloran to keep the aircraft from crashing, with on-ground support from an air traffic controller. While Halloran struggles to pilot the plane, Weaver continues to terrorize the surviving members of the crew.", "text_for_embedding": "Turbulence (1997). Genres: Action, Thriller, Crime. On a flight transporting dangerous convicts, murderer Ryan Weaver manages to break free and cause complete chaos throughout the plane. As various people on board fall victim to Weaver, it is ultimately down to flight attendant Teri Halloran to keep the aircraft from crashing, with on-ground support from an air traffic controller. While Halloran struggles to pilot the plane, Weaver continues to terrorize the surviving members of the crew.. Tags: stewardess, airplane, shootout, air marshal, christmas, turbulence"} +{"id": "19724", "title": "Imagine That", "year": 2009, "duration_min": 107, "rating": 5.7, "genres": "Comedy", "genres_pipe": "|Comedy|", "keywords": "", "tags_pipe": "", "overview": "A financial executive who can't stop his career downspiral is invited into his daughter's imaginary world, where solutions to his problems await.", "text_for_embedding": "Imagine That (2009). Genres: Comedy. A financial executive who can't stop his career downspiral is invited into his daughter's imaginary world, where solutions to his problems await.. Tags: "} +{"id": "145220", "title": "Muppets Most Wanted", "year": 2014, "duration_min": 112, "rating": 6.2, "genres": "Comedy, Adventure, Crime, Family", "genres_pipe": "|Comedy|Adventure|Crime|Family|", "keywords": "musical, the muppets", "tags_pipe": "|musical|the muppets|", "overview": "While on a grand world tour, The Muppets find themselves wrapped into an European jewel-heist caper headed by a Kermit the Frog look-alike and his dastardly sidekick.", "text_for_embedding": "Muppets Most Wanted (2014). Genres: Comedy, Adventure, Crime, Family. While on a grand world tour, The Muppets find themselves wrapped into an European jewel-heist caper headed by a Kermit the Frog look-alike and his dastardly sidekick.. Tags: musical, the muppets"} +{"id": "14623", "title": "Thunderbirds", "year": 2004, "duration_min": 95, "rating": 4.2, "genres": "Action, Adventure, Comedy, Family, Fantasy, Science Fiction", "genres_pipe": "|Action|Adventure|Comedy|Family|Fantasy|Science Fiction|", "keywords": "secret organization, based on tv series, golden gate bridge, locker, oil rig , teenage hero, soaked clothes, thunderbirds", "tags_pipe": "|secret organization|based on tv series|golden gate bridge|locker|oil rig |teenage hero|soaked clothes|thunderbirds|", "overview": "Dangerous missions are the bread and butter of the Thunderbirds, a high-tech secret force employed by the government. Led by Jeff Tracy (Bill Paxton), the Thunderbirds are at the top of their game, but their nemesis, The Hood (Ben Kingsley), has landed on their island and is attempting a coup by using the team's rescue vehicles. He'll soon discover that the Thunderbirds won't go down.", "text_for_embedding": "Thunderbirds (2004). Genres: Action, Adventure, Comedy, Family, Fantasy, Science Fiction. Dangerous missions are the bread and butter of the Thunderbirds, a high-tech secret force employed by the government. Led by Jeff Tracy (Bill Paxton), the Thunderbirds are at the top of their game, but their nemesis, The Hood (Ben Kingsley), has landed on their island and is attempting a coup by using the team's rescue vehicles. He'll soon discover that the Thunderbirds won't go down.. Tags: secret organization, based on tv series, golden gate bridge, locker, oil rig , teenage hero, soaked clothes, thunderbirds"} +{"id": "42297", "title": "Burlesque", "year": 2010, "duration_min": 119, "rating": 6.9, "genres": "Drama, Romance", "genres_pipe": "|Drama|Romance|", "keywords": "musical, los angeles, burlesque, burlesque dancer", "tags_pipe": "|musical|los angeles|burlesque|burlesque dancer|", "overview": "The Burlesque Lounge has its best days behind it. Tess, a retired dancer and owner of the venue, struggles to keep the aging theater alive, facing all kinds of financial and artistic challenges. With the Lounge's troupe members becoming increasingly distracted by personal problems and a threat coming from a wealthy businessman's quest to buy the spot from Tess, the good fortune seems to have abandoned the club altogether. Meanwhile, the life of Ali, a small-town girl from Iowa, is about to change dramatically. Hired by Tess as a waitress at the Lounge, Ali escapes a hollow past and quickly falls in love with the art of burlesque. Backed by newfound friends amongst the theater's crew, she manages to fulfill her dreams of being on stage herself. Things take a dramatic turn though when Ali's big voice makes her become the main attraction of the revue", "text_for_embedding": "Burlesque (2010). Genres: Drama, Romance. The Burlesque Lounge has its best days behind it. Tess, a retired dancer and owner of the venue, struggles to keep the aging theater alive, facing all kinds of financial and artistic challenges. With the Lounge's troupe members becoming increasingly distracted by personal problems and a threat coming from a wealthy businessman's quest to buy the spot from Tess, the good fortune seems to have abandoned the club altogether. Meanwhile, the life of Ali, a small-town girl from Iowa, is about to change dramatically. Hired by Tess as a waitress at the Lounge, Ali escapes a hollow past and quickly falls in love with the art of burlesque. Backed by newfound friends amongst the theater's crew, she manages to fulfill her dreams of being on stage herself. Things take a dramatic turn though when Ali's big voice makes her become the main attraction of the revue. Tags: musical, los angeles, burlesque, burlesque dancer"} +{"id": "2841", "title": "A Very Long Engagement", "year": 2004, "duration_min": 133, "rating": 7.1, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "paris, prostitute, loss of lover, amnesia, bodily disabled person, world war i, wheelchair, brittany, lighthouse, verdun, lighthouse keeper , teenage crush, disappearance, soldier, illegal prostitution", "tags_pipe": "|paris|prostitute|loss of lover|amnesia|bodily disabled person|world war i|wheelchair|brittany|lighthouse|verdun|lighthouse keeper |teenage crush|disappearance|soldier|illegal prostitution|", "overview": "In 1919, Mathilde was 19 years old. Two years earlier, her fiancé Manech left for the front at the Somme. Like millions of others he was \"killed on the field of battle.\" It's written in black and white on the official notice. But Mathilde refuses to believe it. If Manech had died, she would know. She hangs on to her intuition as tightly as she would onto the last thread of hope linking her to her lover. A former sergeant tells her in vain that Manech died in the no man's land of a trench named Bingo Crepescule, in the company of four other men condemned to die for self-inflicted wounds. Her path ahead is full of obstacles but Mathilde is not frightened. Anything is possible to someone who is willing to challenge fate...", "text_for_embedding": "A Very Long Engagement (2004). Genres: Drama. In 1919, Mathilde was 19 years old. Two years earlier, her fiancé Manech left for the front at the Somme. Like millions of others he was \"killed on the field of battle.\" It's written in black and white on the official notice. But Mathilde refuses to believe it. If Manech had died, she would know. She hangs on to her intuition as tightly as she would onto the last thread of hope linking her to her lover. A former sergeant tells her in vain that Manech died in the no man's land of a trench named Bingo Crepescule, in the company of four other men condemned to die for self-inflicted wounds. Her path ahead is full of obstacles but Mathilde is not frightened. Anything is possible to someone who is willing to challenge fate.... Tags: paris, prostitute, loss of lover, amnesia, bodily disabled person, world war i, wheelchair, brittany, lighthouse, verdun, lighthouse keeper , teenage crush, disappearance, soldier, illegal prostitution"} +{"id": "802", "title": "Lolita", "year": 1962, "duration_min": 153, "rating": 7.3, "genres": "Drama, Romance", "genres_pipe": "|Drama|Romance|", "keywords": "sexual obsession, hotel, depression, loss of mother, small town, flirt, midlife crisis, eroticism, youngster, lolita, motel, diary, seduction, forbidden love, professor for literature", "tags_pipe": "|sexual obsession|hotel|depression|loss of mother|small town|flirt|midlife crisis|eroticism|youngster|lolita|motel|diary|seduction|forbidden love|professor for literature|", "overview": "Humbert Humbert is a middle-aged British novelist who is both appalled by and attracted to the vulgarity of American culture. When he comes to stay at the boarding house run by Charlotte Haze, he soon becomes obsessed with Lolita, the woman's teenaged daughter.", "text_for_embedding": "Lolita (1962). Genres: Drama, Romance. Humbert Humbert is a middle-aged British novelist who is both appalled by and attracted to the vulgarity of American culture. When he comes to stay at the boarding house run by Charlotte Haze, he soon becomes obsessed with Lolita, the woman's teenaged daughter.. Tags: sexual obsession, hotel, depression, loss of mother, small town, flirt, midlife crisis, eroticism, youngster, lolita, motel, diary, seduction, forbidden love, professor for literature"} +{"id": "10375", "title": "D-Tox", "year": 2002, "duration_min": 96, "rating": 5.3, "genres": "Action, Thriller", "genres_pipe": "|Action|Thriller|", "keywords": "alcoholism, serial killer, hospital, police officer, detox", "tags_pipe": "|alcoholism|serial killer|hospital|police officer|detox|", "overview": "A disgraced FBI agent with a drinking problem joins nine other troubled law enforcement officers at an isolated detox clinic in the wilds of Wyoming. But the therapeutic sanctuary becomes a nightmarish hellhole when a major snowstorm cuts off the clinic from the outside world and enables a killer on the inside to get busy.", "text_for_embedding": "D-Tox (2002). Genres: Action, Thriller. A disgraced FBI agent with a drinking problem joins nine other troubled law enforcement officers at an isolated detox clinic in the wilds of Wyoming. But the therapeutic sanctuary becomes a nightmarish hellhole when a major snowstorm cuts off the clinic from the outside world and enables a killer on the inside to get busy.. Tags: alcoholism, serial killer, hospital, police officer, detox"} +{"id": "36586", "title": "Blade II", "year": 2002, "duration_min": 117, "rating": 6.2, "genres": "Fantasy, Horror, Action, Thriller", "genres_pipe": "|Fantasy|Horror|Action|Thriller|", "keywords": "katana, mutation, vampire, silver, superhero, tragic villain, broken neck, lasersight, violence, exploding body, blade, subjective camera, torso cut in half, reaper, broken wrist", "tags_pipe": "|katana|mutation|vampire|silver|superhero|tragic villain|broken neck|lasersight|violence|exploding body|blade|subjective camera|torso cut in half|reaper|broken wrist|", "overview": "A rare mutation has occurred within the vampire community - The Reaper. A vampire so consumed with an insatiable bloodlust that they prey on vampires as well as humans, transforming victims who are unlucky enough to survive into Reapers themselves. Blade is asked by the Vampire Nation for his help in preventing a nightmare plague that would wipe out both humans and vampires.", "text_for_embedding": "Blade II (2002). Genres: Fantasy, Horror, Action, Thriller. A rare mutation has occurred within the vampire community - The Reaper. A vampire so consumed with an insatiable bloodlust that they prey on vampires as well as humans, transforming victims who are unlucky enough to survive into Reapers themselves. Blade is asked by the Vampire Nation for his help in preventing a nightmare plague that would wipe out both humans and vampires.. Tags: katana, mutation, vampire, silver, superhero, tragic villain, broken neck, lasersight, violence, exploding body, blade, subjective camera, torso cut in half, reaper, broken wrist"} +{"id": "11321", "title": "Seven Pounds", "year": 2008, "duration_min": 123, "rating": 7.5, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "vegetarian, tax collector, pianist, blind, organ transplant, blood type", "tags_pipe": "|vegetarian|tax collector|pianist|blind|organ transplant|blood type|", "overview": "An IRS agent with a fateful secret embarks on an extraordinary journey of redemption by forever changing the lives of seven strangers.", "text_for_embedding": "Seven Pounds (2008). Genres: Drama. An IRS agent with a fateful secret embarks on an extraordinary journey of redemption by forever changing the lives of seven strangers.. Tags: vegetarian, tax collector, pianist, blind, organ transplant, blood type"} +{"id": "70074", "title": "Bullet to the Head", "year": 2013, "duration_min": 92, "rating": 5.2, "genres": "Action, Crime, Thriller", "genres_pipe": "|Action|Crime|Thriller|", "keywords": "", "tags_pipe": "", "overview": "After watching their respective partners die, a cop and a hitman form an alliance in order to bring down their common enemy.", "text_for_embedding": "Bullet to the Head (2013). Genres: Action, Crime, Thriller. After watching their respective partners die, a cop and a hitman form an alliance in order to bring down their common enemy.. Tags: "} +{"id": "242", "title": "The Godfather: Part III", "year": 1990, "duration_min": 162, "rating": 7.1, "genres": "Crime, Drama, Thriller", "genres_pipe": "|Crime|Drama|Thriller|", "keywords": "italy, christianity, new york, assassination, italo-american, vatican, pope, confession, helicopter, daughter, lawyer", "tags_pipe": "|italy|christianity|new york|assassination|italo-american|vatican|pope|confession|helicopter|daughter|lawyer|", "overview": "In the midst of trying to legitimize his business dealings in 1979 New York and Italy, aging mafia don, Michael Corleone seeks forgiveness for his sins while taking a young protege under his wing.", "text_for_embedding": "The Godfather: Part III (1990). Genres: Crime, Drama, Thriller. In the midst of trying to legitimize his business dealings in 1979 New York and Italy, aging mafia don, Michael Corleone seeks forgiveness for his sins while taking a young protege under his wing.. Tags: italy, christianity, new york, assassination, italo-american, vatican, pope, confession, helicopter, daughter, lawyer"} +{"id": "9621", "title": "Elizabethtown", "year": 2005, "duration_min": 123, "rating": 6.1, "genres": "Comedy, Drama, Romance", "genres_pipe": "|Comedy|Drama|Romance|", "keywords": "suicide, hotel room, suicide attempt, new love, funeral, airplane, lovers, falling in love", "tags_pipe": "|suicide|hotel room|suicide attempt|new love|funeral|airplane|lovers|falling in love|", "overview": "Drew Baylor is fired after causing his shoe company to lose hundreds of millions of dollars. To make matters worse, he's also dumped by his girlfriend. On the verge of ending it all, Drew gets a new lease on life when he returns to his family's small Kentucky hometown after his father dies. Along the way, he meets a flight attendant with whom he falls in love.", "text_for_embedding": "Elizabethtown (2005). Genres: Comedy, Drama, Romance. Drew Baylor is fired after causing his shoe company to lose hundreds of millions of dollars. To make matters worse, he's also dumped by his girlfriend. On the verge of ending it all, Drew gets a new lease on life when he returns to his family's small Kentucky hometown after his father dies. Along the way, he meets a flight attendant with whom he falls in love.. Tags: suicide, hotel room, suicide attempt, new love, funeral, airplane, lovers, falling in love"} +{"id": "1819", "title": "You, Me and Dupree", "year": 2006, "duration_min": 108, "rating": 5.4, "genres": "Comedy, Romance", "genres_pipe": "|Comedy|Romance|", "keywords": "roommate, love of one's life, newlywed", "tags_pipe": "|roommate|love of one's life|newlywed|", "overview": "After standing in as best man for his longtime friend Carl Petersen, Randy Dupree loses his job, becomes a barfly and attaches himself to the newlywed couple almost permanently -- as their houseguest. But the longer Dupree camps out on their couch, the closer he gets to Carl's bride, Molly, leaving the frustrated groom wondering when his pal will be moving out.", "text_for_embedding": "You, Me and Dupree (2006). Genres: Comedy, Romance. After standing in as best man for his longtime friend Carl Petersen, Randy Dupree loses his job, becomes a barfly and attaches himself to the newlywed couple almost permanently -- as their houseguest. But the longer Dupree camps out on their couch, the closer he gets to Carl's bride, Molly, leaving the frustrated groom wondering when his pal will be moving out.. Tags: roommate, love of one's life, newlywed"} +{"id": "8536", "title": "Superman II", "year": 1980, "duration_min": 127, "rating": 6.5, "genres": "Action, Adventure, Fantasy, Science Fiction", "genres_pipe": "|Action|Adventure|Fantasy|Science Fiction|", "keywords": "saving the world, dc comics, sequel, superhero, based on comic book, loss of virginity, criminal, super powers, phantom zone, rocket fired grenade, crystal machine, superhuman strength, duringcreditsstinger", "tags_pipe": "|saving the world|dc comics|sequel|superhero|based on comic book|loss of virginity|criminal|super powers|phantom zone|rocket fired grenade|crystal machine|superhuman strength|duringcreditsstinger|", "overview": "Three escaped criminals from the planet Krypton test the Man of Steel's mettle. Led by Gen. Zod, the Kryptonians take control of the White House and partner with Lex Luthor to destroy Superman and rule the world. But Superman, who attempts to make himself human in order to get closer to Lois, realizes he has a responsibility to save the planet.", "text_for_embedding": "Superman II (1980). Genres: Action, Adventure, Fantasy, Science Fiction. Three escaped criminals from the planet Krypton test the Man of Steel's mettle. Led by Gen. Zod, the Kryptonians take control of the White House and partner with Lex Luthor to destroy Superman and rule the world. But Superman, who attempts to make himself human in order to get closer to Lois, realizes he has a responsibility to save the planet.. Tags: saving the world, dc comics, sequel, superhero, based on comic book, loss of virginity, criminal, super powers, phantom zone, rocket fired grenade, crystal machine, superhuman strength, duringcreditsstinger"} +{"id": "8046", "title": "Gigli", "year": 2003, "duration_min": 121, "rating": 3.5, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "new york, mentally disabled, kidnapping, blackmail, mission of murder, lovers, lesbian, mobster", "tags_pipe": "|new york|mentally disabled|kidnapping|blackmail|mission of murder|lovers|lesbian|mobster|", "overview": "Gigli is ordered to kidnap the psychologically challenged younger brother of a powerful federal prosecutor. When plans go awry, Gigli's boss sends in Ricki, a gorgeous free-spirited female gangster who has her own set of orders to assist with the kidnapping. But Gigli begins falling for the decidedly unavailable Ricki, which could be a hazard to his occupation.", "text_for_embedding": "Gigli (2003). Genres: Drama. Gigli is ordered to kidnap the psychologically challenged younger brother of a powerful federal prosecutor. When plans go awry, Gigli's boss sends in Ricki, a gorgeous free-spirited female gangster who has her own set of orders to assist with the kidnapping. But Gigli begins falling for the decidedly unavailable Ricki, which could be a hazard to his occupation.. Tags: new york, mentally disabled, kidnapping, blackmail, mission of murder, lovers, lesbian, mobster"} +{"id": "1717", "title": "All the King's Men", "year": 2006, "duration_min": 125, "rating": 5.7, "genres": "Drama, Thriller", "genres_pipe": "|Drama|Thriller|", "keywords": "corruption, journalist, based on novel, blackmail, manipulation, bodyguard, louisiana, scandal, power, governor, politics, tragedy, mistress, aristocrat", "tags_pipe": "|corruption|journalist|based on novel|blackmail|manipulation|bodyguard|louisiana|scandal|power|governor|politics|tragedy|mistress|aristocrat|", "overview": "The story of an idealist's rise to power in the world of Louisiana politics and the corruption that leads to his ultimate downfall. Based on the1946 Pulitzer Prize-winning novel written by Robert Penn Warren.", "text_for_embedding": "All the King's Men (2006). Genres: Drama, Thriller. The story of an idealist's rise to power in the world of Louisiana politics and the corruption that leads to his ultimate downfall. Based on the1946 Pulitzer Prize-winning novel written by Robert Penn Warren.. Tags: corruption, journalist, based on novel, blackmail, manipulation, bodyguard, louisiana, scandal, power, governor, politics, tragedy, mistress, aristocrat"} +{"id": "479", "title": "Shaft", "year": 2000, "duration_min": 99, "rating": 5.5, "genres": "Action, Adventure, Crime, Thriller", "genres_pipe": "|Action|Adventure|Crime|Thriller|", "keywords": "corruption, black people, italo-american, brother sister relationship, drug dealer, revenge, murder, violence, drug, police officer, xenophobia", "tags_pipe": "|corruption|black people|italo-american|brother sister relationship|drug dealer|revenge|murder|violence|drug|police officer|xenophobia|", "overview": "New York police detective John Shaft arrests Walter Wade Jr. for a racially motivated slaying. But the only eyewitness disappears, and Wade jumps bail for Switzerland. Two years later Wade returns to face trial, confident his money and influence will get him acquitted -- especially since he's paid a drug kingpin to kill the witness.", "text_for_embedding": "Shaft (2000). Genres: Action, Adventure, Crime, Thriller. New York police detective John Shaft arrests Walter Wade Jr. for a racially motivated slaying. But the only eyewitness disappears, and Wade jumps bail for Switzerland. Two years later Wade returns to face trial, confident his money and influence will get him acquitted -- especially since he's paid a drug kingpin to kill the witness.. Tags: corruption, black people, italo-american, brother sister relationship, drug dealer, revenge, murder, violence, drug, police officer, xenophobia"} +{"id": "9444", "title": "Anastasia", "year": 1997, "duration_min": 94, "rating": 7.4, "genres": "Animation, Family", "genres_pipe": "|Animation|Family|", "keywords": "tzar, musical, russian revolution, train explosion, foreign language adaptation, exploding train", "tags_pipe": "|tzar|musical|russian revolution|train explosion|foreign language adaptation|exploding train|", "overview": "This animated adventure retells the story of the lost daughter of Russia's last czar. The evil Rasputin places a curse on the Romanov family, and Anastasia and her grandmother, Empress Maria, get separated. After growing up in an orphanage, Anastasia encounters two Russian men seeking a reward offered by Empress Maria for the return of her granddaughter. The trio travels to Paris, where they find that the empress has grown skeptical of imposters.", "text_for_embedding": "Anastasia (1997). Genres: Animation, Family. This animated adventure retells the story of the lost daughter of Russia's last czar. The evil Rasputin places a curse on the Romanov family, and Anastasia and her grandmother, Empress Maria, get separated. After growing up in an orphanage, Anastasia encounters two Russian men seeking a reward offered by Empress Maria for the return of her granddaughter. The trio travels to Paris, where they find that the empress has grown skeptical of imposters.. Tags: tzar, musical, russian revolution, train explosion, foreign language adaptation, exploding train"} +{"id": "824", "title": "Moulin Rouge!", "year": 2001, "duration_min": 127, "rating": 7.4, "genres": "Drama, Music, Romance", "genres_pipe": "|Drama|Music|Romance|", "keywords": "duke, musical, writer's block, music, terminal illness, writer, no opening credits, moulin rouge, bohemian, toulouse lautrec, red curtain, cancan dance, la traviata, orpheus and eurydice, dance hall", "tags_pipe": "|duke|musical|writer's block|music|terminal illness|writer|no opening credits|moulin rouge|bohemian|toulouse lautrec|red curtain|cancan dance|la traviata|orpheus and eurydice|dance hall|", "overview": "A celebration of love and creative inspiration takes place in the infamous, gaudy and glamorous Parisian nightclub, at the cusp of the 20th century. A young poet, who is plunged into the heady world of Moulin Rouge, begins a passionate affair with the club's most notorious and beautiful star.", "text_for_embedding": "Moulin Rouge! (2001). Genres: Drama, Music, Romance. A celebration of love and creative inspiration takes place in the infamous, gaudy and glamorous Parisian nightclub, at the cusp of the 20th century. A young poet, who is plunged into the heady world of Moulin Rouge, begins a passionate affair with the club's most notorious and beautiful star.. Tags: duke, musical, writer's block, music, terminal illness, writer, no opening credits, moulin rouge, bohemian, toulouse lautrec, red curtain, cancan dance, la traviata, orpheus and eurydice, dance hall"} +{"id": "11456", "title": "Domestic Disturbance", "year": 2001, "duration_min": 89, "rating": 5.4, "genres": "Mystery, Thriller, Crime", "genres_pipe": "|Mystery|Thriller|Crime|", "keywords": "menace, adoption, dangerous, adoptive father, threat to death, step father, murder, divorce, ex-wife, child, murder hunt", "tags_pipe": "|menace|adoption|dangerous|adoptive father|threat to death|step father|murder|divorce|ex-wife|child|murder hunt|", "overview": "A divorced father discovers that his 12-year-old son's new stepfather is not what he made himself out to be.", "text_for_embedding": "Domestic Disturbance (2001). Genres: Mystery, Thriller, Crime. A divorced father discovers that his 12-year-old son's new stepfather is not what he made himself out to be.. Tags: menace, adoption, dangerous, adoptive father, threat to death, step father, murder, divorce, ex-wife, child, murder hunt"} +{"id": "261023", "title": "Black Mass", "year": 2015, "duration_min": 122, "rating": 6.3, "genres": "Crime, Drama", "genres_pipe": "|Crime|Drama|", "keywords": "boston, based on true story, organized crime", "tags_pipe": "|boston|based on true story|organized crime|", "overview": "The true story of Whitey Bulger, the brother of a state senator and the most infamous violent criminal in the history of South Boston, who became an FBI informant to take down a Mafia family invading his turf.", "text_for_embedding": "Black Mass (2015). Genres: Crime, Drama. The true story of Whitey Bulger, the brother of a state senator and the most infamous violent criminal in the history of South Boston, who became an FBI informant to take down a Mafia family invading his turf.. Tags: boston, based on true story, organized crime"} +{"id": "3683", "title": "Flags of Our Fathers", "year": 2006, "duration_min": 132, "rating": 6.7, "genres": "War, Drama, History", "genres_pipe": "|War|Drama|History|", "keywords": "world war ii, dying and death, pacific, iwo jima, aftercreditsstinger, duringcreditsstinger", "tags_pipe": "|world war ii|dying and death|pacific|iwo jima|aftercreditsstinger|duringcreditsstinger|", "overview": "There were five Marines and one Navy Corpsman photographed raising the U.S. flag on Mt. Suribachi by Joe Rosenthal on February 23, 1945. This is the story of three of the six surviving servicemen – John 'Doc' Bradley, Pvt. Rene Gagnon and Pvt. Ira Hayes, who fought in the battle to take Iwo Jima from the Japanese.", "text_for_embedding": "Flags of Our Fathers (2006). Genres: War, Drama, History. There were five Marines and one Navy Corpsman photographed raising the U.S. flag on Mt. Suribachi by Joe Rosenthal on February 23, 1945. This is the story of three of the six surviving servicemen – John 'Doc' Bradley, Pvt. Rene Gagnon and Pvt. Ira Hayes, who fought in the battle to take Iwo Jima from the Japanese.. Tags: world war ii, dying and death, pacific, iwo jima, aftercreditsstinger, duringcreditsstinger"} +{"id": "22803", "title": "Law Abiding Citizen", "year": 2009, "duration_min": 109, "rating": 7.2, "genres": "Drama, Crime, Thriller", "genres_pipe": "|Drama|Crime|Thriller|", "keywords": "tattoo, secret passage, baseball bat, deal, explosion, justice, district attorney, courtroom, vigilantism", "tags_pipe": "|tattoo|secret passage|baseball bat|deal|explosion|justice|district attorney|courtroom|vigilantism|", "overview": "A frustrated man decides to take justice into his own hands after a plea bargain sets one of his family's killers free. He targets not only the killer but also the district attorney and others involved in the deal.", "text_for_embedding": "Law Abiding Citizen (2009). Genres: Drama, Crime, Thriller. A frustrated man decides to take justice into his own hands after a plea bargain sets one of his family's killers free. He targets not only the killer but also the district attorney and others involved in the deal.. Tags: tattoo, secret passage, baseball bat, deal, explosion, justice, district attorney, courtroom, vigilantism"} +{"id": "285923", "title": "Grindhouse", "year": 2007, "duration_min": 191, "rating": 6.8, "genres": "Thriller, Action, Horror", "genres_pipe": "|Thriller|Action|Horror|", "keywords": "exploitation, slasher, zombie, killer", "tags_pipe": "|exploitation|slasher|zombie|killer|", "overview": "Two full length feature horror movies written by Quentin Tarantino and Robert Rodriguez put together as a two film feature. Including fake movie trailers in between both movies.", "text_for_embedding": "Grindhouse (2007). Genres: Thriller, Action, Horror. Two full length feature horror movies written by Quentin Tarantino and Robert Rodriguez put together as a two film feature. Including fake movie trailers in between both movies.. Tags: exploitation, slasher, zombie, killer"} +{"id": "39437", "title": "Beloved", "year": 1998, "duration_min": 172, "rating": 5.9, "genres": "Drama, Thriller", "genres_pipe": "|Drama|Thriller|", "keywords": "", "tags_pipe": "", "overview": "After Paul D. finds his old slave friend Sethe in Ohio and moves in with her and her daughter Denver, a strange girl comes along by the name of \"Beloved\". Sethe and Denver take her in and then strange things start to happen...", "text_for_embedding": "Beloved (1998). Genres: Drama, Thriller. After Paul D. finds his old slave friend Sethe in Ohio and moves in with her and her daughter Denver, a strange girl comes along by the name of \"Beloved\". Sethe and Denver take her in and then strange things start to happen.... Tags: "} +{"id": "1950", "title": "Lucky You", "year": 2007, "duration_min": 124, "rating": 5.4, "genres": "Drama, Romance", "genres_pipe": "|Drama|Romance|", "keywords": "poker, sport, las vegas", "tags_pipe": "|poker|sport|las vegas|", "overview": "A professional poker player whose astounding luck at the table fails to translate into his lonesome love life attempts to win the World Series of Poker while simultaneously earning the affections of a beautiful Las Vegas singer.", "text_for_embedding": "Lucky You (2007). Genres: Drama, Romance. A professional poker player whose astounding luck at the table fails to translate into his lonesome love life attempts to win the World Series of Poker while simultaneously earning the affections of a beautiful Las Vegas singer.. Tags: poker, sport, las vegas"} +{"id": "640", "title": "Catch Me If You Can", "year": 2002, "duration_min": 141, "rating": 7.7, "genres": "Drama, Crime", "genres_pipe": "|Drama|Crime|", "keywords": "con man, biography, fbi agent, overhead camera shot, attempted jailbreak, engagement party, mislaid trust, bank fraud, inspired by a true story", "tags_pipe": "|con man|biography|fbi agent|overhead camera shot|attempted jailbreak|engagement party|mislaid trust|bank fraud|inspired by a true story|", "overview": "A true story about Frank Abagnale Jr. who, before his 19th birthday, successfully conned millions of dollars worth of checks as a Pan Am pilot, doctor, and legal prosecutor. An FBI agent makes it his mission to put him behind bars. But Frank not only eludes capture, he revels in the pursuit.", "text_for_embedding": "Catch Me If You Can (2002). Genres: Drama, Crime. A true story about Frank Abagnale Jr. who, before his 19th birthday, successfully conned millions of dollars worth of checks as a Pan Am pilot, doctor, and legal prosecutor. An FBI agent makes it his mission to put him behind bars. But Frank not only eludes capture, he revels in the pursuit.. Tags: con man, biography, fbi agent, overhead camera shot, attempted jailbreak, engagement party, mislaid trust, bank fraud, inspired by a true story"} +{"id": "97630", "title": "Zero Dark Thirty", "year": 2012, "duration_min": 157, "rating": 6.7, "genres": "Thriller, Drama, History", "genres_pipe": "|Thriller|Drama|History|", "keywords": "assassination, cia, hotel, terrorist, prisoner, car dealer, mossad, van, iraq, pakistan, osama bin laden, man hunt, navy seal, f word, female protagonist", "tags_pipe": "|assassination|cia|hotel|terrorist|prisoner|car dealer|mossad|van|iraq|pakistan|osama bin laden|man hunt|navy seal|f word|female protagonist|", "overview": "A chronicle of the decade-long hunt for al-Qaeda terrorist leader Osama bin Laden after the September 2001 attacks, and his death at the hands of the Navy S.E.A.L. Team 6 in May, 2011.", "text_for_embedding": "Zero Dark Thirty (2012). Genres: Thriller, Drama, History. A chronicle of the decade-long hunt for al-Qaeda terrorist leader Osama bin Laden after the September 2001 attacks, and his death at the hands of the Navy S.E.A.L. Team 6 in May, 2011.. Tags: assassination, cia, hotel, terrorist, prisoner, car dealer, mossad, van, iraq, pakistan, osama bin laden, man hunt, navy seal, f word, female protagonist"} +{"id": "9767", "title": "The Break-Up", "year": 2006, "duration_min": 106, "rating": 5.6, "genres": "Romance, Comedy", "genres_pipe": "|Romance|Comedy|", "keywords": "bowling, chicago, american football, flat, baseball, new love, tour guide, break-up, art gallery, argument, pool table, watching tv, ex-boyfriend ex-girlfriend relationship, dinner party, condominium", "tags_pipe": "|bowling|chicago|american football|flat|baseball|new love|tour guide|break-up|art gallery|argument|pool table|watching tv|ex-boyfriend ex-girlfriend relationship|dinner party|condominium|", "overview": "Cohabitating couple Gary and Brooke find their once-blissful romance on the rocks when petty spats about lemons and dirty dishes mushroom into an all-out battle for custody of their upscale Chicago condo. An escalating argument ensues as Gary and Brooke continue to live under the same roof, all while cooking up schemes to drive each other off the premises.", "text_for_embedding": "The Break-Up (2006). Genres: Romance, Comedy. Cohabitating couple Gary and Brooke find their once-blissful romance on the rocks when petty spats about lemons and dirty dishes mushroom into an all-out battle for custody of their upscale Chicago condo. An escalating argument ensues as Gary and Brooke continue to live under the same roof, all while cooking up schemes to drive each other off the premises.. Tags: bowling, chicago, american football, flat, baseball, new love, tour guide, break-up, art gallery, argument, pool table, watching tv, ex-boyfriend ex-girlfriend relationship, dinner party, condominium"} +{"id": "11631", "title": "Mamma Mia!", "year": 2008, "duration_min": 108, "rating": 6.4, "genres": "Comedy, Romance", "genres_pipe": "|Comedy|Romance|", "keywords": "single parent, greece, musical, daughter, single, mother daughter relationship, duringcreditsstinger, woman director", "tags_pipe": "|single parent|greece|musical|daughter|single|mother daughter relationship|duringcreditsstinger|woman director|", "overview": "Set on an idyllic Greek island, the plot serves as a background for a wealth of ABBA hit songs. Donna, an independent, single mother who owns a small hotel on the island is about to let go of Sophie, the spirited young daughter she's raised alone. But Sophie has secretly invited three of her mother's ex-lovers in the hopes of finding her father.", "text_for_embedding": "Mamma Mia! (2008). Genres: Comedy, Romance. Set on an idyllic Greek island, the plot serves as a background for a wealth of ABBA hit songs. Donna, an independent, single mother who owns a small hotel on the island is about to let go of Sophie, the spirited young daughter she's raised alone. But Sophie has secretly invited three of her mother's ex-lovers in the hopes of finding her father.. Tags: single parent, greece, musical, daughter, single, mother daughter relationship, duringcreditsstinger, woman director"} +{"id": "32856", "title": "Valentine's Day", "year": 2010, "duration_min": 125, "rating": 5.7, "genres": "Comedy, Romance", "genres_pipe": "|Comedy|Romance|", "keywords": "flower, married couple, florist, kiss, single, valentine, valentine's day, multiple storylines, aftercreditsstinger, duringcreditsstinger", "tags_pipe": "|flower|married couple|florist|kiss|single|valentine|valentine's day|multiple storylines|aftercreditsstinger|duringcreditsstinger|", "overview": "More than a dozen Angelenos navigate Valentine's Day from early morning until midnight. Three couples awake together, but each relationship will sputter; are any worth saving? A grade-school boy wants flowers for his first true love; two high school seniors plan first-time sex at noon; a TV sports reporter gets the assignment to find romance in LA; a star quarterback contemplates his future; two strangers meet on a plane; grandparents, together for years, face a crisis; and, an \"I Hate Valentine's Day\" dinner beckons the lonely and the lied to. Can Cupid finish his work by midnight?", "text_for_embedding": "Valentine's Day (2010). Genres: Comedy, Romance. More than a dozen Angelenos navigate Valentine's Day from early morning until midnight. Three couples awake together, but each relationship will sputter; are any worth saving? A grade-school boy wants flowers for his first true love; two high school seniors plan first-time sex at noon; a TV sports reporter gets the assignment to find romance in LA; a star quarterback contemplates his future; two strangers meet on a plane; grandparents, together for years, face a crisis; and, an \"I Hate Valentine's Day\" dinner beckons the lonely and the lied to. Can Cupid finish his work by midnight?. Tags: flower, married couple, florist, kiss, single, valentine, valentine's day, multiple storylines, aftercreditsstinger, duringcreditsstinger"} +{"id": "6519", "title": "The Dukes of Hazzard", "year": 2005, "duration_min": 104, "rating": 5.1, "genres": "Action, Adventure, Comedy", "genres_pipe": "|Action|Adventure|Comedy|", "keywords": "sheriff, farm, bikini, redneck, moonshine", "tags_pipe": "|sheriff|farm|bikini|redneck|moonshine|", "overview": "Cousins, Bo and Luke Duke, with the help of their eye-catching cousin, Daisy and moonshine-running Uncle Jesse, try and save the family farm from being destroyed by Hazzard County's corrupt commissioner, Boss Hogg. Their efforts constantly find the 'Duke Boys' eluding authorities in 'The General Lee', their 1969 orange Dodge Charger that keeps them one step ahead of the dimwitted antics of the small southern town's Sheriff, Roscoe P. Coltrane.", "text_for_embedding": "The Dukes of Hazzard (2005). Genres: Action, Adventure, Comedy. Cousins, Bo and Luke Duke, with the help of their eye-catching cousin, Daisy and moonshine-running Uncle Jesse, try and save the family farm from being destroyed by Hazzard County's corrupt commissioner, Boss Hogg. Their efforts constantly find the 'Duke Boys' eluding authorities in 'The General Lee', their 1969 orange Dodge Charger that keeps them one step ahead of the dimwitted antics of the small southern town's Sheriff, Roscoe P. Coltrane.. Tags: sheriff, farm, bikini, redneck, moonshine"} +{"id": "8741", "title": "The Thin Red Line", "year": 1998, "duration_min": 170, "rating": 7.2, "genres": "Drama, History, War", "genres_pipe": "|Drama|History|War|", "keywords": "based on novel, japanese, world war ii, battle assignment, invasion, marine corps, u.s. army, commander, pacific, rifle, survival, jungle, infantry, steel helmet, sergeant", "tags_pipe": "|based on novel|japanese|world war ii|battle assignment|invasion|marine corps|u.s. army|commander|pacific|rifle|survival|jungle|infantry|steel helmet|sergeant|", "overview": "Based on the graphic novel by James Jones, The Thin Red Line tells the story of a group of men, an Army Rifle company called C-for-Charlie, who change, suffer, and ultimately make essential discoveries about themselves during the fierce World War II battle of Guadalcanal. It follows their journey, from the surprise of an unopposed landing, through the bloody and exhausting battles that follow, to the ultimate departure of those who survived. A powerful frontline cast - including Sean Penn, Nick Nolte, Woody Harrelson and George Clooney - explodes into action in this hauntingly realistic view of military and moral chaos in the Pacific during World War II.", "text_for_embedding": "The Thin Red Line (1998). Genres: Drama, History, War. Based on the graphic novel by James Jones, The Thin Red Line tells the story of a group of men, an Army Rifle company called C-for-Charlie, who change, suffer, and ultimately make essential discoveries about themselves during the fierce World War II battle of Guadalcanal. It follows their journey, from the surprise of an unopposed landing, through the bloody and exhausting battles that follow, to the ultimate departure of those who survived. A powerful frontline cast - including Sean Penn, Nick Nolte, Woody Harrelson and George Clooney - explodes into action in this hauntingly realistic view of military and moral chaos in the Pacific during World War II.. Tags: based on novel, japanese, world war ii, battle assignment, invasion, marine corps, u.s. army, commander, pacific, rifle, survival, jungle, infantry, steel helmet, sergeant"} +{"id": "49520", "title": "The Change-Up", "year": 2011, "duration_min": 112, "rating": 5.9, "genres": "Comedy", "genres_pipe": "|Comedy|", "keywords": "jealousy, chance, wish, change, man change, co-worker, body-swap", "tags_pipe": "|jealousy|chance|wish|change|man change|co-worker|body-swap|", "overview": "Dave is a married man with two kids and a loving wife , and Mitch is a single man who is at the prime of his sexual life. One fateful night while Mitch and Dave are peeing in a fountain when lightning strikes, they switch bodies.", "text_for_embedding": "The Change-Up (2011). Genres: Comedy. Dave is a married man with two kids and a loving wife , and Mitch is a single man who is at the prime of his sexual life. One fateful night while Mitch and Dave are peeing in a fountain when lightning strikes, they switch bodies.. Tags: jealousy, chance, wish, change, man change, co-worker, body-swap"} +{"id": "1850", "title": "Man on the Moon", "year": 1999, "duration_min": 118, "rating": 6.9, "genres": "Comedy, Drama, Romance", "genres_pipe": "|Comedy|Drama|Romance|", "keywords": "show business, comedian, wrestling", "tags_pipe": "|show business|comedian|wrestling|", "overview": "A film about the life and career of the eccentric avant-garde comedian, Andy Kaufman.", "text_for_embedding": "Man on the Moon (1999). Genres: Comedy, Drama, Romance. A film about the life and career of the eccentric avant-garde comedian, Andy Kaufman.. Tags: show business, comedian, wrestling"} +{"id": "524", "title": "Casino", "year": 1995, "duration_min": 178, "rating": 7.8, "genres": "Drama, Crime", "genres_pipe": "|Drama|Crime|", "keywords": "poker, drug abuse, 1970s, overdose, illegal prostitution", "tags_pipe": "|poker|drug abuse|1970s|overdose|illegal prostitution|", "overview": "The life of the gambling paradise – Las Vegas – and its dark mafia underbelly.", "text_for_embedding": "Casino (1995). Genres: Drama, Crime. The life of the gambling paradise – Las Vegas – and its dark mafia underbelly.. Tags: poker, drug abuse, 1970s, overdose, illegal prostitution"} +{"id": "26389", "title": "From Paris with Love", "year": 2010, "duration_min": 92, "rating": 6.1, "genres": "Action, Crime, Thriller", "genres_pipe": "|Action|Crime|Thriller|", "keywords": "paris, cia, undercover, explosive, pimp, ambassador, anti hero, revelation, french, politician, firearm, deception, car crash, gang", "tags_pipe": "|paris|cia|undercover|explosive|pimp|ambassador|anti hero|revelation|french|politician|firearm|deception|car crash|gang|", "overview": "James Reese has a good job as an ambassador's aid in France, but his real passion is a side gig, working in a minor role in the CIA. He would love to be a full-fledged agent and can't believe his luck when he lands an assignment with Charlie Wax. Trigger-happy Charlie soon has James crying for his desk job, but when he learns that the same guys they're trying to catch are after him, James realizes that Charlie may be his only hope of survival.", "text_for_embedding": "From Paris with Love (2010). Genres: Action, Crime, Thriller. James Reese has a good job as an ambassador's aid in France, but his real passion is a side gig, working in a minor role in the CIA. He would love to be a full-fledged agent and can't believe his luck when he lands an assignment with Charlie Wax. Trigger-happy Charlie soon has James crying for his desk job, but when he learns that the same guys they're trying to catch are after him, James realizes that Charlie may be his only hope of survival.. Tags: paris, cia, undercover, explosive, pimp, ambassador, anti hero, revelation, french, politician, firearm, deception, car crash, gang"} +{"id": "11817", "title": "Bulletproof Monk", "year": 2003, "duration_min": 104, "rating": 5.1, "genres": "Action, Comedy, Fantasy", "genres_pipe": "|Action|Comedy|Fantasy|", "keywords": "monk, homeless person, injection, fall, knife fight, scroll, the force", "tags_pipe": "|monk|homeless person|injection|fall|knife fight|scroll|the force|", "overview": "A mysterious and immortal Tibetan kung fu master, who has spent the last 60 years traveling around the world protecting the ancient Scroll of the Ultimate, mentors a selfish street kid in the ancient intricacies of kung fu.", "text_for_embedding": "Bulletproof Monk (2003). Genres: Action, Comedy, Fantasy. A mysterious and immortal Tibetan kung fu master, who has spent the last 60 years traveling around the world protecting the ancient Scroll of the Ultimate, mentors a selfish street kid in the ancient intricacies of kung fu.. Tags: monk, homeless person, injection, fall, knife fight, scroll, the force"} +{"id": "2123", "title": "Me, Myself & Irene", "year": 2000, "duration_min": 116, "rating": 6.1, "genres": "Comedy", "genres_pipe": "|Comedy|", "keywords": "schizophrenia, ex-cop, aftercreditsstinger, duringcreditsstinger", "tags_pipe": "|schizophrenia|ex-cop|aftercreditsstinger|duringcreditsstinger|", "overview": "Rhode Island State Trooper Charlie Baileygates has a multiple personality disorder. One personality is crazy and aggressive, while the other is more friendly and laid back. Both of these personalities fall in love with the same woman named Irene after Charlie loses his medication.", "text_for_embedding": "Me, Myself & Irene (2000). Genres: Comedy. Rhode Island State Trooper Charlie Baileygates has a multiple personality disorder. One personality is crazy and aggressive, while the other is more friendly and laid back. Both of these personalities fall in love with the same woman named Irene after Charlie loses his medication.. Tags: schizophrenia, ex-cop, aftercreditsstinger, duringcreditsstinger"} +{"id": "9907", "title": "Barnyard", "year": 2006, "duration_min": 90, "rating": 5.3, "genres": "Animation, Comedy, Family", "genres_pipe": "|Animation|Comedy|Family|", "keywords": "peasant, farm, cow, cojote, family", "tags_pipe": "|peasant|farm|cow|cojote|family|", "overview": "When things get crazy at the farm, it's up to a boisterous bovine named Otis (voiced by Kevin James) to save the day in this computer-animated tale. The animals in this barnyard sing, dance and party, but Otis's stern dad (Sam Elliott) warns the crew to keep their cool around humans. Troublemaker Otis rarely listens to his pop, but when the farmer disappears and the animals go nutty, the young cow realizes he must stop the madness.", "text_for_embedding": "Barnyard (2006). Genres: Animation, Comedy, Family. When things get crazy at the farm, it's up to a boisterous bovine named Otis (voiced by Kevin James) to save the day in this computer-animated tale. The animals in this barnyard sing, dance and party, but Otis's stern dad (Sam Elliott) warns the crew to keep their cool around humans. Troublemaker Otis rarely listens to his pop, but when the farmer disappears and the animals go nutty, the young cow realizes he must stop the madness.. Tags: peasant, farm, cow, cojote, family"} +{"id": "9969", "title": "Deck the Halls", "year": 2006, "duration_min": 93, "rating": 5.1, "genres": "Comedy, Family", "genres_pipe": "|Comedy|Family|", "keywords": "holiday, massachusetts, neighbor, christmas", "tags_pipe": "|holiday|massachusetts|neighbor|christmas|", "overview": "Two neighbors have it out after one of them decorates his house for the holidays so brightly that it can be seen from space.", "text_for_embedding": "Deck the Halls (2006). Genres: Comedy, Family. Two neighbors have it out after one of them decorates his house for the holidays so brightly that it can be seen from space.. Tags: holiday, massachusetts, neighbor, christmas"} +{"id": "18239", "title": "The Twilight Saga: New Moon", "year": 2009, "duration_min": 130, "rating": 5.6, "genres": "Adventure, Fantasy, Drama, Romance", "genres_pipe": "|Adventure|Fantasy|Drama|Romance|", "keywords": "moon, cinema, vampire, werewolf, fang vamp", "tags_pipe": "|moon|cinema|vampire|werewolf|fang vamp|", "overview": "Forks, Washington resident Bella Swan is reeling from the departure of her vampire love, Edward Cullen, and finds comfort in her friendship with Jacob Black, a werewolf. But before she knows it, she's thrust into a centuries-old conflict, and her desire to be with Edward at any cost leads her to take greater and greater risks.", "text_for_embedding": "The Twilight Saga: New Moon (2009). Genres: Adventure, Fantasy, Drama, Romance. Forks, Washington resident Bella Swan is reeling from the departure of her vampire love, Edward Cullen, and finds comfort in her friendship with Jacob Black, a werewolf. But before she knows it, she's thrust into a centuries-old conflict, and her desire to be with Edward at any cost leads her to take greater and greater risks.. Tags: moon, cinema, vampire, werewolf, fang vamp"} +{"id": "808", "title": "Shrek", "year": 2001, "duration_min": 90, "rating": 7.3, "genres": "Adventure, Animation, Comedy, Family, Fantasy", "genres_pipe": "|Adventure|Animation|Comedy|Family|Fantasy|", "keywords": "magic, liberation, lordship, castle, robin hood, enchantment, fairy-tale figure, princess, parody, woman director, ogre", "tags_pipe": "|magic|liberation|lordship|castle|robin hood|enchantment|fairy-tale figure|princess|parody|woman director|ogre|", "overview": "It ain't easy bein' green -- especially if you're a likable (albeit smelly) ogre named Shrek. On a mission to retrieve a gorgeous princess from the clutches of a fire-breathing dragon, Shrek teams up with an unlikely compatriot -- a wisecracking donkey.", "text_for_embedding": "Shrek (2001). Genres: Adventure, Animation, Comedy, Family, Fantasy. It ain't easy bein' green -- especially if you're a likable (albeit smelly) ogre named Shrek. On a mission to retrieve a gorgeous princess from the clutches of a fire-breathing dragon, Shrek teams up with an unlikely compatriot -- a wisecracking donkey.. Tags: magic, liberation, lordship, castle, robin hood, enchantment, fairy-tale figure, princess, parody, woman director, ogre"} +{"id": "38050", "title": "The Adjustment Bureau", "year": 2011, "duration_min": 106, "rating": 6.5, "genres": "Science Fiction, Thriller, Romance", "genres_pipe": "|Science Fiction|Thriller|Romance|", "keywords": "hotel, dancer, hat, senator, future, honesty, plan, kiss, speech, marriage, politician, alone, fate, foot chase, covert agency", "tags_pipe": "|hotel|dancer|hat|senator|future|honesty|plan|kiss|speech|marriage|politician|alone|fate|foot chase|covert agency|", "overview": "A man glimpses the future Fate has planned for him – and chooses to fight for his own destiny. Battling the powerful Adjustment Bureau across, under and through the streets of New York, he risks his destined greatness to be with the only woman he's ever loved.", "text_for_embedding": "The Adjustment Bureau (2011). Genres: Science Fiction, Thriller, Romance. A man glimpses the future Fate has planned for him – and chooses to fight for his own destiny. Battling the powerful Adjustment Bureau across, under and through the streets of New York, he risks his destined greatness to be with the only woman he's ever loved.. Tags: hotel, dancer, hat, senator, future, honesty, plan, kiss, speech, marriage, politician, alone, fate, foot chase, covert agency"} +{"id": "8367", "title": "Robin Hood: Prince of Thieves", "year": 1991, "duration_min": 143, "rating": 6.6, "genres": "Adventure", "genres_pipe": "|Adventure|", "keywords": "england, crusade, mercifulness, robin hood, folk hero", "tags_pipe": "|england|crusade|mercifulness|robin hood|folk hero|", "overview": "When the dastardly Sheriff of Nottingham murders Robin's father, the legendary archer vows vengeance. To accomplish his mission, Robin joins forces with a band of exiled villagers (and comely Maid Marian), and together they battle to end the evil sheriff's reign of terror.", "text_for_embedding": "Robin Hood: Prince of Thieves (1991). Genres: Adventure. When the dastardly Sheriff of Nottingham murders Robin's father, the legendary archer vows vengeance. To accomplish his mission, Robin joins forces with a band of exiled villagers (and comely Maid Marian), and together they battle to end the evil sheriff's reign of terror.. Tags: england, crusade, mercifulness, robin hood, folk hero"} +{"id": "9390", "title": "Jerry Maguire", "year": 1996, "duration_min": 139, "rating": 6.7, "genres": "Comedy, Drama, Romance", "genres_pipe": "|Comedy|Drama|Romance|", "keywords": "stadium, career, sport, sports agent", "tags_pipe": "|stadium|career|sport|sports agent|", "overview": "Jerry Maguire used to be a typical sports agent: willing to do just about anything he could to get the biggest possible contracts for his clients, plus a nice commission for himself. Then, one day, he suddenly has second thoughts about what he's really doing. When he voices these doubts, he ends up losing his job and all of his clients, save Rod Tidwell, an egomaniacal football player.", "text_for_embedding": "Jerry Maguire (1996). Genres: Comedy, Drama, Romance. Jerry Maguire used to be a typical sports agent: willing to do just about anything he could to get the biggest possible contracts for his clients, plus a nice commission for himself. Then, one day, he suddenly has second thoughts about what he's really doing. When he voices these doubts, he ends up losing his job and all of his clients, save Rod Tidwell, an egomaniacal football player.. Tags: stadium, career, sport, sports agent"} +{"id": "72105", "title": "Ted", "year": 2012, "duration_min": 106, "rating": 6.3, "genres": "Comedy, Fantasy", "genres_pipe": "|Comedy|Fantasy|", "keywords": "friendship, love, teddy bear, toy comes to life, wishes come true", "tags_pipe": "|friendship|love|teddy bear|toy comes to life|wishes come true|", "overview": "John Bennett, a man whose childhood wish of bringing his teddy bear to life came true, now must decide between keeping the relationship with the bear or his girlfriend, Lori.", "text_for_embedding": "Ted (2012). Genres: Comedy, Fantasy. John Bennett, a man whose childhood wish of bringing his teddy bear to life came true, now must decide between keeping the relationship with the bear or his girlfriend, Lori.. Tags: friendship, love, teddy bear, toy comes to life, wishes come true"} +{"id": "2898", "title": "As Good as It Gets", "year": 1997, "duration_min": 139, "rating": 7.2, "genres": "Comedy, Romance", "genres_pipe": "|Comedy|Romance|", "keywords": "single parent, waitress, lone wolf, friendship, neighbor, author, cowardliness, writer, dog, rude, obnoxious, unlikely friendship, noodle salad", "tags_pipe": "|single parent|waitress|lone wolf|friendship|neighbor|author|cowardliness|writer|dog|rude|obnoxious|unlikely friendship|noodle salad|", "overview": "New York City. Melvin Udall, a cranky, bigoted, obsessive-compulsive writer, finds his life turned upside down when neighboring gay artist Simon is hospitalized and his dog is entrusted to Melvin. In addition, Carol, the only waitress who will tolerate him, must leave work to care for her sick son, making it impossible for Melvin to eat breakfast.", "text_for_embedding": "As Good as It Gets (1997). Genres: Comedy, Romance. New York City. Melvin Udall, a cranky, bigoted, obsessive-compulsive writer, finds his life turned upside down when neighboring gay artist Simon is hospitalized and his dog is entrusted to Melvin. In addition, Carol, the only waitress who will tolerate him, must leave work to care for her sick son, making it impossible for Melvin to eat breakfast.. Tags: single parent, waitress, lone wolf, friendship, neighbor, author, cowardliness, writer, dog, rude, obnoxious, unlikely friendship, noodle salad"} +{"id": "10312", "title": "Patch Adams", "year": 1998, "duration_min": 115, "rating": 7.0, "genres": "Comedy, Drama", "genres_pipe": "|Comedy|Drama|", "keywords": "nurse, hospital, doctor, laughter", "tags_pipe": "|nurse|hospital|doctor|laughter|", "overview": "Meet Patch Adams, a doctor who doesn't look, act or think like any doctor you've met before. For Patch, humor is the best medicine, and he's willing to do just anything to make his patients laugh - even if it means risking his own career.", "text_for_embedding": "Patch Adams (1998). Genres: Comedy, Drama. Meet Patch Adams, a doctor who doesn't look, act or think like any doctor you've met before. For Patch, humor is the best medicine, and he's willing to do just anything to make his patients laugh - even if it means risking his own career.. Tags: nurse, hospital, doctor, laughter"} +{"id": "109443", "title": "Anchorman 2: The Legend Continues", "year": 2013, "duration_min": 119, "rating": 6.0, "genres": "Comedy", "genres_pipe": "|Comedy|", "keywords": "journalism, mustache, tv news, newsroom, gang warfare, aftercreditsstinger, news spoof, tv news anchor", "tags_pipe": "|journalism|mustache|tv news|newsroom|gang warfare|aftercreditsstinger|news spoof|tv news anchor|", "overview": "With the 70s behind him, San Diego's top rated newsman, Ron Burgundy, returns to take New York's first 24-hour news channel by storm.", "text_for_embedding": "Anchorman 2: The Legend Continues (2013). Genres: Comedy. With the 70s behind him, San Diego's top rated newsman, Ron Burgundy, returns to take New York's first 24-hour news channel by storm.. Tags: journalism, mustache, tv news, newsroom, gang warfare, aftercreditsstinger, news spoof, tv news anchor"} +{"id": "2022", "title": "Mr. Deeds", "year": 2002, "duration_min": 96, "rating": 5.6, "genres": "Comedy, Romance", "genres_pipe": "|Comedy|Romance|", "keywords": "love letter, new hampshire, ferrari, liar, city country contrast, inheritance, billionaire, new york city, kindness, fable, apple tree, corporate take over, chrysler building", "tags_pipe": "|love letter|new hampshire|ferrari|liar|city country contrast|inheritance|billionaire|new york city|kindness|fable|apple tree|corporate take over|chrysler building|", "overview": "When Longfellow Deeds, a small-town pizzeria owner and poet, inherits $40 billion from his deceased uncle, he quickly begins rolling in a different kind of dough. Moving to the big city, Deeds finds himself besieged by opportunists all gunning for their piece of the pie. Babe, a television tabloid reporter, poses as an innocent small-town girl to do an exposé on Deeds.", "text_for_embedding": "Mr. Deeds (2002). Genres: Comedy, Romance. When Longfellow Deeds, a small-town pizzeria owner and poet, inherits $40 billion from his deceased uncle, he quickly begins rolling in a different kind of dough. Moving to the big city, Deeds finds himself besieged by opportunists all gunning for their piece of the pie. Babe, a television tabloid reporter, poses as an innocent small-town girl to do an exposé on Deeds.. Tags: love letter, new hampshire, ferrari, liar, city country contrast, inheritance, billionaire, new york city, kindness, fable, apple tree, corporate take over, chrysler building"} +{"id": "37686", "title": "Super 8", "year": 2011, "duration_min": 112, "rating": 6.6, "genres": "Thriller, Science Fiction, Mystery", "genres_pipe": "|Thriller|Science Fiction|Mystery|", "keywords": "1970s, secret, alien, train crash, pistol, firecracker, duringcreditsstinger", "tags_pipe": "|1970s|secret|alien|train crash|pistol|firecracker|duringcreditsstinger|", "overview": "In 1979 Ohio, several youngsters are making a zombie movie with a Super-8 camera. In the midst of filming, the friends witness a horrifying train derailment and are lucky to escape with their lives. They soon discover that the catastrophe was no accident, as a series of unexplained events and disappearances soon follows. Deputy Jackson Lamb, the father of one of the kids, searches for the terrifying truth behind the crash.", "text_for_embedding": "Super 8 (2011). Genres: Thriller, Science Fiction, Mystery. In 1979 Ohio, several youngsters are making a zombie movie with a Super-8 camera. In the midst of filming, the friends witness a horrifying train derailment and are lucky to escape with their lives. They soon discover that the catastrophe was no accident, as a series of unexplained events and disappearances soon follows. Deputy Jackson Lamb, the father of one of the kids, searches for the terrifying truth behind the crash.. Tags: 1970s, secret, alien, train crash, pistol, firecracker, duringcreditsstinger"} +{"id": "462", "title": "Erin Brockovich", "year": 2000, "duration_min": 131, "rating": 7.1, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "biography, based on true story, single mother, water pollution, environmental law", "tags_pipe": "|biography|based on true story|single mother|water pollution|environmental law|", "overview": "A twice-divorced mother of three who sees an injustice, takes on the bad guy and wins -- with a little help from her push-up bra. Erin goes to work for an attorney and comes across medical records describing illnesses clustered in one nearby town. She starts investigating and soon exposes a monumental cover-up.", "text_for_embedding": "Erin Brockovich (2000). Genres: Drama. A twice-divorced mother of three who sees an injustice, takes on the bad guy and wins -- with a little help from her push-up bra. Erin goes to work for an attorney and comes across medical records describing illnesses clustered in one nearby town. She starts investigating and soon exposes a monumental cover-up.. Tags: biography, based on true story, single mother, water pollution, environmental law"} +{"id": "9919", "title": "How to Lose a Guy in 10 Days", "year": 2003, "duration_min": 116, "rating": 6.3, "genres": "Comedy, Romance", "genres_pipe": "|Comedy|Romance|", "keywords": "new york, bet, journalist, therapist, advertising expert, relationship", "tags_pipe": "|new york|bet|journalist|therapist|advertising expert|relationship|", "overview": "An advice columnist, Andie Anderson (Kate Hudson), tries pushing the boundaries of what she can write about in her new piece about how to get a man to leave you in 10 days. Her editor, Lana (Bebe Neuwirth), loves it, and Andie goes off to find a man she can use for the experiment. Enter executive Ben Berry (Matthew McConaughey), who is so confident in his romantic prowess that he thinks he can make any woman fall in love with him in 10 days. When Andie and Ben meet, their plans backfire.", "text_for_embedding": "How to Lose a Guy in 10 Days (2003). Genres: Comedy, Romance. An advice columnist, Andie Anderson (Kate Hudson), tries pushing the boundaries of what she can write about in her new piece about how to get a man to leave you in 10 days. Her editor, Lana (Bebe Neuwirth), loves it, and Andie goes off to find a man she can use for the experiment. Enter executive Ben Berry (Matthew McConaughey), who is so confident in his romantic prowess that he thinks he can make any woman fall in love with him in 10 days. When Andie and Ben meet, their plans backfire.. Tags: new york, bet, journalist, therapist, advertising expert, relationship"} +{"id": "187017", "title": "22 Jump Street", "year": 2014, "duration_min": 112, "rating": 7.0, "genres": "Crime, Comedy, Action", "genres_pipe": "|Crime|Comedy|Action|", "keywords": "high school, undercover cop, buddy comedy, aftercreditsstinger, duringcreditsstinger", "tags_pipe": "|high school|undercover cop|buddy comedy|aftercreditsstinger|duringcreditsstinger|", "overview": "After making their way through high school (twice), big changes are in store for officers Schmidt and Jenko when they go deep undercover at a local college. But when Jenko meets a kindred spirit on the football team, and Schmidt infiltrates the bohemian art major scene, they begin to question their partnership. Now they don't have to just crack the case - they have to figure out if they can have a mature relationship. If these two overgrown adolescents can grow from freshmen into real men, college might be the best thing that ever happened to them.", "text_for_embedding": "22 Jump Street (2014). Genres: Crime, Comedy, Action. After making their way through high school (twice), big changes are in store for officers Schmidt and Jenko when they go deep undercover at a local college. But when Jenko meets a kindred spirit on the football team, and Schmidt infiltrates the bohemian art major scene, they begin to question their partnership. Now they don't have to just crack the case - they have to figure out if they can have a mature relationship. If these two overgrown adolescents can grow from freshmen into real men, college might be the best thing that ever happened to them.. Tags: high school, undercover cop, buddy comedy, aftercreditsstinger, duringcreditsstinger"} +{"id": "628", "title": "Interview with the Vampire", "year": 1994, "duration_min": 123, "rating": 7.2, "genres": "Horror, Romance", "genres_pipe": "|Horror|Romance|", "keywords": "paris, san francisco, vampire, plantation, pity, bite, fang vamp", "tags_pipe": "|paris|san francisco|vampire|plantation|pity|bite|fang vamp|", "overview": "A vampire relates his epic life story of love, betrayal, loneliness, and dark hunger to an over-curious reporter.", "text_for_embedding": "Interview with the Vampire (1994). Genres: Horror, Romance. A vampire relates his epic life story of love, betrayal, loneliness, and dark hunger to an over-curious reporter.. Tags: paris, san francisco, vampire, plantation, pity, bite, fang vamp"} +{"id": "10201", "title": "Yes Man", "year": 2008, "duration_min": 104, "rating": 6.4, "genres": "Comedy", "genres_pipe": "|Comedy|", "keywords": "bungee-jump, scooter", "tags_pipe": "|bungee-jump|scooter|", "overview": "Carl Allen has stumbled across a way to shake free of post-divorce blues and a dead-end job: embrace life and say yes to everything.", "text_for_embedding": "Yes Man (2008). Genres: Comedy. Carl Allen has stumbled across a way to shake free of post-divorce blues and a dead-end job: embrace life and say yes to everything.. Tags: bungee-jump, scooter"} +{"id": "302699", "title": "Central Intelligence", "year": 2016, "duration_min": 107, "rating": 6.2, "genres": "Action, Comedy", "genres_pipe": "|Action|Comedy|", "keywords": "spy, cia, espionage, high school reunion, reference to facebook, accountant", "tags_pipe": "|spy|cia|espionage|high school reunion|reference to facebook|accountant|", "overview": "After he reunites with an old pal through Facebook, a mild-mannered accountant is lured into the world of international espionage.", "text_for_embedding": "Central Intelligence (2016). Genres: Action, Comedy. After he reunites with an old pal through Facebook, a mild-mannered accountant is lured into the world of international espionage.. Tags: spy, cia, espionage, high school reunion, reference to facebook, accountant"} +{"id": "9441", "title": "Stepmom", "year": 1998, "duration_min": 124, "rating": 6.9, "genres": "Drama, Romance", "genres_pipe": "|Drama|Romance|", "keywords": "divorce, rebellious daughter, freeze frame, custody, school play, photo shoot", "tags_pipe": "|divorce|rebellious daughter|freeze frame|custody|school play|photo shoot|", "overview": "Jackie is a divorced mother of two. Isabel is the career minded girlfriend of Jackie’s ex-husband Luke, forced into the role of unwelcome stepmother to their children. But when Jackie discovers she is ill, both women realise they must put aside their differences to find a common ground and celebrate life to the fullest, while they have the chance.", "text_for_embedding": "Stepmom (1998). Genres: Drama, Romance. Jackie is a divorced mother of two. Isabel is the career minded girlfriend of Jackie’s ex-husband Luke, forced into the role of unwelcome stepmother to their children. But when Jackie discovers she is ill, both women realise they must put aside their differences to find a common ground and celebrate life to the fullest, while they have the chance.. Tags: divorce, rebellious daughter, freeze frame, custody, school play, photo shoot"} +{"id": "274167", "title": "Daddy's Home", "year": 2015, "duration_min": 96, "rating": 5.8, "genres": "Comedy", "genres_pipe": "|Comedy|", "keywords": "daddys home", "tags_pipe": "|daddys home|", "overview": "The story of a mild-mannered radio executive (Ferrell) who strives to become the best stepdad ever to his wife's two children, but complications ensue when their freewheeling, freeloading real father arrives, forcing stepdad to compete for the affection of the kids.", "text_for_embedding": "Daddy's Home (2015). Genres: Comedy. The story of a mild-mannered radio executive (Ferrell) who strives to become the best stepdad ever to his wife's two children, but complications ensue when their freewheeling, freeloading real father arrives, forcing stepdad to compete for the affection of the kids.. Tags: daddys home"} +{"id": "224141", "title": "Into the Woods", "year": 2014, "duration_min": 125, "rating": 5.6, "genres": "Fantasy, Comedy, Music", "genres_pipe": "|Fantasy|Comedy|Music|", "keywords": "witch, cinderella, prince, fairy tale, musical, princess, sondheim, curse, based on stage musical, beanstalk, duringcreditsstinger, red riding hood", "tags_pipe": "|witch|cinderella|prince|fairy tale|musical|princess|sondheim|curse|based on stage musical|beanstalk|duringcreditsstinger|red riding hood|", "overview": "In a woods filled with magic and fairy tale characters, a baker and his wife set out to end the curse put on them by their neighbor, a spiteful witch.", "text_for_embedding": "Into the Woods (2014). Genres: Fantasy, Comedy, Music. In a woods filled with magic and fairy tale characters, a baker and his wife set out to end the curse put on them by their neighbor, a spiteful witch.. Tags: witch, cinderella, prince, fairy tale, musical, princess, sondheim, curse, based on stage musical, beanstalk, duringcreditsstinger, red riding hood"} +{"id": "388", "title": "Inside Man", "year": 2006, "duration_min": 129, "rating": 7.3, "genres": "Crime, Drama, Thriller", "genres_pipe": "|Crime|Drama|Thriller|", "keywords": "bank manager, kidnapping, nazi background, document, ultimatum, court case, heist, financial transactions", "tags_pipe": "|bank manager|kidnapping|nazi background|document|ultimatum|court case|heist|financial transactions|", "overview": "Bank robber Dalton Russell enters a Manhattan bank, locks the doors and takes hostages, working methodically and without haste. Detective Frazier is assigned to negotiate, but his mind is occupied with the corruption charges he is facing. With an army of police surrounding the bank, the thief, the cop and a high-profile 'fixer' enter high-stakes negotiations.", "text_for_embedding": "Inside Man (2006). Genres: Crime, Drama, Thriller. Bank robber Dalton Russell enters a Manhattan bank, locks the doors and takes hostages, working methodically and without haste. Detective Frazier is assigned to negotiate, but his mind is occupied with the corruption charges he is facing. With an army of police surrounding the bank, the thief, the cop and a high-profile 'fixer' enter high-stakes negotiations.. Tags: bank manager, kidnapping, nazi background, document, ultimatum, court case, heist, financial transactions"} +{"id": "2112", "title": "Payback", "year": 1999, "duration_min": 100, "rating": 6.7, "genres": "Drama, Action, Thriller, Crime", "genres_pipe": "|Drama|Action|Thriller|Crime|", "keywords": "new york, heroin, money, criminal", "tags_pipe": "|new york|heroin|money|criminal|", "overview": "With friends like these, who needs enemies? That's the question bad guy Porter is left asking after his wife and partner steal his heist money and leave him for dead -- or so they think. Five months and an endless reservoir of bitterness later, Porter's partners and the crooked cops on his tail learn how bad payback can be.", "text_for_embedding": "Payback (1999). Genres: Drama, Action, Thriller, Crime. With friends like these, who needs enemies? That's the question bad guy Porter is left asking after his wife and partner steal his heist money and leave him for dead -- or so they think. Five months and an endless reservoir of bitterness later, Porter's partners and the crooked cops on his tail learn how bad payback can be.. Tags: new york, heroin, money, criminal"} +{"id": "10329", "title": "Congo", "year": 1995, "duration_min": 109, "rating": 5.0, "genres": "Action, Adventure, Drama, Mystery, Science Fiction, Thriller", "genres_pipe": "|Action|Adventure|Drama|Mystery|Science Fiction|Thriller|", "keywords": "gorilla, kongo, diamond mine, diamond", "tags_pipe": "|gorilla|kongo|diamond mine|diamond|", "overview": "Eight people embark on an expedition into the Congo, a mysterious expanse of unexplored Africa where human greed and the laws of nature have gone berserk. When the thrill-seekers -- some with ulterior motives -- stumble across a race of killer apes.", "text_for_embedding": "Congo (1995). Genres: Action, Adventure, Drama, Mystery, Science Fiction, Thriller. Eight people embark on an expedition into the Congo, a mysterious expanse of unexplored Africa where human greed and the laws of nature have gone berserk. When the thrill-seekers -- some with ulterior motives -- stumble across a race of killer apes.. Tags: gorilla, kongo, diamond mine, diamond"} +{"id": "74465", "title": "We Bought a Zoo", "year": 2011, "duration_min": 124, "rating": 6.5, "genres": "Drama, Comedy, Family", "genres_pipe": "|Drama|Comedy|Family|", "keywords": "zoo", "tags_pipe": "|zoo|", "overview": "Benjamin has lost his wife and, in a bid to start his life over, purchases a large house that has a zoo – welcome news for his daughter, but his son is not happy about it. The zoo is need of renovation and Benjamin sets about the work with the head keeper and the rest of the staff, but, the zoo soon runs into financial trouble.", "text_for_embedding": "We Bought a Zoo (2011). Genres: Drama, Comedy, Family. Benjamin has lost his wife and, in a bid to start his life over, purchases a large house that has a zoo – welcome news for his daughter, but his son is not happy about it. The zoo is need of renovation and Benjamin sets about the work with the head keeper and the rest of the staff, but, the zoo soon runs into financial trouble.. Tags: zoo"} +{"id": "13811", "title": "Knowing", "year": 2009, "duration_min": 121, "rating": 5.9, "genres": "Action, Adventure, Drama, Mystery, Science Fiction, Thriller", "genres_pipe": "|Action|Adventure|Drama|Mystery|Science Fiction|Thriller|", "keywords": "cataclysm, code, suspense, end of the world, time capsule, astrophysicist, grieving widower, lexington massachusetts, westford massachusetts, prediction, researcher, numbers, news", "tags_pipe": "|cataclysm|code|suspense|end of the world|time capsule|astrophysicist|grieving widower|lexington massachusetts|westford massachusetts|prediction|researcher|numbers|news|", "overview": "A teacher opens a time capsule that has been dug up at his son's elementary school; in it are some chilling predictions -- some that have already occurred and others that are about to -- that lead him to believe his family plays a role in the events that are about to unfold.", "text_for_embedding": "Knowing (2009). Genres: Action, Adventure, Drama, Mystery, Science Fiction, Thriller. A teacher opens a time capsule that has been dug up at his son's elementary school; in it are some chilling predictions -- some that have already occurred and others that are about to -- that lead him to believe his family plays a role in the events that are about to unfold.. Tags: cataclysm, code, suspense, end of the world, time capsule, astrophysicist, grieving widower, lexington massachusetts, westford massachusetts, prediction, researcher, numbers, news"} +{"id": "6877", "title": "Failure to Launch", "year": 2006, "duration_min": 97, "rating": 5.5, "genres": "Comedy", "genres_pipe": "|Comedy|", "keywords": "hotel mom, romantic comedy, lying, living with parents, pretend relationship", "tags_pipe": "|hotel mom|romantic comedy|lying|living with parents|pretend relationship|", "overview": "Tripp, an attractive man in his thirties, is still living with his parents Al and Sue. Tripp's best friends Demo and Ace are also still living in their parents' homes and seem proud of it. Al and Sue are not happy, however, and are fascinated when friends whose adult son has recently moved away from home reveal they hired an expert to arrange the matter and couldn't be happier with the result.", "text_for_embedding": "Failure to Launch (2006). Genres: Comedy. Tripp, an attractive man in his thirties, is still living with his parents Al and Sue. Tripp's best friends Demo and Ace are also still living in their parents' homes and seem proud of it. Al and Sue are not happy, however, and are fascinated when friends whose adult son has recently moved away from home reveal they hired an expert to arrange the matter and couldn't be happier with the result.. Tags: hotel mom, romantic comedy, lying, living with parents, pretend relationship"} +{"id": "10320", "title": "The Ring Two", "year": 2005, "duration_min": 110, "rating": 5.4, "genres": "Drama, Horror, Thriller", "genres_pipe": "|Drama|Horror|Thriller|", "keywords": "nun, based on novel, bath tub, nightmare, son, sequel, remake, vision, good vs evil, woman reporter, mental institution, videotape, evil child", "tags_pipe": "|nun|based on novel|bath tub|nightmare|son|sequel|remake|vision|good vs evil|woman reporter|mental institution|videotape|evil child|", "overview": "Rachel Keller must prevent evil Samara from taking possession of her son's soul.", "text_for_embedding": "The Ring Two (2005). Genres: Drama, Horror, Thriller. Rachel Keller must prevent evil Samara from taking possession of her son's soul.. Tags: nun, based on novel, bath tub, nightmare, son, sequel, remake, vision, good vs evil, woman reporter, mental institution, videotape, evil child"} +{"id": "50646", "title": "Crazy, Stupid, Love.", "year": 2011, "duration_min": 118, "rating": 7.0, "genres": "Comedy, Drama, Romance", "genres_pipe": "|Comedy|Drama|Romance|", "keywords": "soulmates, midlife crisis, marriage crisis, womanizer, law school, crazy, relationship", "tags_pipe": "|soulmates|midlife crisis|marriage crisis|womanizer|law school|crazy|relationship|", "overview": "Cal Weaver is living the American dream. He has a good job, a beautiful house, great children and a beautiful wife, named Emily. Cal's seemingly perfect life unravels, however, when he learns that Emily has been unfaithful and wants a divorce. Over 40 and suddenly single, Cal is adrift in the fickle world of dating. Enter, Jacob Palmer, a self-styled player who takes Cal under his wing and teaches him how to be a hit with the ladies.", "text_for_embedding": "Crazy, Stupid, Love. (2011). Genres: Comedy, Drama, Romance. Cal Weaver is living the American dream. He has a good job, a beautiful house, great children and a beautiful wife, named Emily. Cal's seemingly perfect life unravels, however, when he learns that Emily has been unfaithful and wants a divorce. Over 40 and suddenly single, Cal is adrift in the fickle world of dating. Enter, Jacob Palmer, a self-styled player who takes Cal under his wing and teaches him how to be a hit with the ladies.. Tags: soulmates, midlife crisis, marriage crisis, womanizer, law school, crazy, relationship"} +{"id": "8920", "title": "Garfield", "year": 2004, "duration_min": 80, "rating": 5.2, "genres": "Animation, Comedy, Family", "genres_pipe": "|Animation|Comedy|Family|", "keywords": "competition, moderator, lasagne, garfield", "tags_pipe": "|competition|moderator|lasagne|garfield|", "overview": "Garfield, the fat, lazy, lasagna lover, has everything a cat could want. But when Jon, in an effort to impress the Liz - the vet and an old high-school crush - adopts a dog named Odie and brings him home, Garfield gets the one thing he doesn't want. Competition.", "text_for_embedding": "Garfield (2004). Genres: Animation, Comedy, Family. Garfield, the fat, lazy, lasagna lover, has everything a cat could want. But when Jon, in an effort to impress the Liz - the vet and an old high-school crush - adopts a dog named Odie and brings him home, Garfield gets the one thing he doesn't want. Competition.. Tags: competition, moderator, lasagne, garfield"} +{"id": "13673", "title": "Christmas with the Kranks", "year": 2004, "duration_min": 99, "rating": 5.2, "genres": "Comedy, Family", "genres_pipe": "|Comedy|Family|", "keywords": "holiday, christmas", "tags_pipe": "|holiday|christmas|", "overview": "Luther Krank is fed up with the commerciality of Christmas; he decides to skip the holiday and go on a vacation with his wife instead. But when his daughter decides at the last minute to come home, he must put together a holiday celebration.", "text_for_embedding": "Christmas with the Kranks (2004). Genres: Comedy, Family. Luther Krank is fed up with the commerciality of Christmas; he decides to skip the holiday and go on a vacation with his wife instead. But when his daughter decides at the last minute to come home, he must put together a holiday celebration.. Tags: holiday, christmas"} +{"id": "60308", "title": "Moneyball", "year": 2011, "duration_min": 133, "rating": 7.0, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "underdog, based on novel, baseball, teamwork, sport, partner, meeting, oakland california, strategy, voice over, statistics", "tags_pipe": "|underdog|based on novel|baseball|teamwork|sport|partner|meeting|oakland california|strategy|voice over|statistics|", "overview": "The story of Oakland Athletics general manager Billy Beane's successful attempt to put together a baseball team on a budget, by employing computer-generated analysis to draft his players.", "text_for_embedding": "Moneyball (2011). Genres: Drama. The story of Oakland Athletics general manager Billy Beane's successful attempt to put together a baseball team on a budget, by employing computer-generated analysis to draft his players.. Tags: underdog, based on novel, baseball, teamwork, sport, partner, meeting, oakland california, strategy, voice over, statistics"} +{"id": "6950", "title": "Outbreak", "year": 1995, "duration_min": 127, "rating": 6.3, "genres": "Action, Drama, Science Fiction, Thriller", "genres_pipe": "|Action|Drama|Science Fiction|Thriller|", "keywords": "river, general, research, army, serum, monkey, epidemic, medical research", "tags_pipe": "|river|general|research|army|serum|monkey|epidemic|medical research|", "overview": "A deadly airborne virus finds its way into the USA and starts killing off people at an epidemic rate. Col Sam Daniels' job is to stop the virus spreading from a small town, which must be quarantined, and to prevent an over reaction by the White House.", "text_for_embedding": "Outbreak (1995). Genres: Action, Drama, Science Fiction, Thriller. A deadly airborne virus finds its way into the USA and starts killing off people at an epidemic rate. Col Sam Daniels' job is to stop the virus spreading from a small town, which must be quarantined, and to prevent an over reaction by the White House.. Tags: river, general, research, army, serum, monkey, epidemic, medical research"} +{"id": "225574", "title": "Non-Stop", "year": 2014, "duration_min": 106, "rating": 6.8, "genres": "Action, Thriller, Mystery", "genres_pipe": "|Action|Thriller|Mystery|", "keywords": "airplane, conspiracy, airplane crash, cell phone, hijack, one night, mystery killer", "tags_pipe": "|airplane|conspiracy|airplane crash|cell phone|hijack|one night|mystery killer|", "overview": "Bill Marks is a burned-out veteran of the Air Marshals service. He views the assignment not as a life-saving duty, but as a desk job in the sky. However, today's flight will be no routine trip. Shortly into the transatlantic journey from New York to London, he receives a series of mysterious text messages ordering him to have the government transfer $150 million into a secret account, or a passenger will die every 20 minutes.", "text_for_embedding": "Non-Stop (2014). Genres: Action, Thriller, Mystery. Bill Marks is a burned-out veteran of the Air Marshals service. He views the assignment not as a life-saving duty, but as a desk job in the sky. However, today's flight will be no routine trip. Shortly into the transatlantic journey from New York to London, he receives a series of mysterious text messages ordering him to have the government transfer $150 million into a secret account, or a passenger will die every 20 minutes.. Tags: airplane, conspiracy, airplane crash, cell phone, hijack, one night, mystery killer"} +{"id": "13836", "title": "Race to Witch Mountain", "year": 2009, "duration_min": 98, "rating": 5.5, "genres": "Adventure, Family, Fantasy, Science Fiction, Thriller, Action", "genres_pipe": "|Adventure|Family|Fantasy|Science Fiction|Thriller|Action|", "keywords": "spacecraft, laser, teleportation, telekinesis, alien, military, duringcreditsstinger, supernatural power, mountain", "tags_pipe": "|spacecraft|laser|teleportation|telekinesis|alien|military|duringcreditsstinger|supernatural power|mountain|", "overview": "A taxi driver gets more than he bargained for when he picks up two teen runaways. Not only does the pair possess supernatural powers, but they're also trying desperately to escape people who have made them their targets.", "text_for_embedding": "Race to Witch Mountain (2009). Genres: Adventure, Family, Fantasy, Science Fiction, Thriller, Action. A taxi driver gets more than he bargained for when he picks up two teen runaways. Not only does the pair possess supernatural powers, but they're also trying desperately to escape people who have made them their targets.. Tags: spacecraft, laser, teleportation, telekinesis, alien, military, duringcreditsstinger, supernatural power, mountain"} +{"id": "752", "title": "V for Vendetta", "year": 2006, "duration_min": 132, "rating": 7.7, "genres": "Action, Thriller, Fantasy", "genres_pipe": "|Action|Thriller|Fantasy|", "keywords": "detective, vatican, fascism, satanism, fascist, dystopia, government, chancellor, revenge, personification of satan, torture, hatred, masked vigilante, catholicism, catholic priest", "tags_pipe": "|detective|vatican|fascism|satanism|fascist|dystopia|government|chancellor|revenge|personification of satan|torture|hatred|masked vigilante|catholicism|catholic priest|", "overview": "In a world in which Great Britain has become a fascist state, a masked vigilante known only as 'V' conducts guerrilla warfare against the oppressive British government. When 'V' rescues a young woman from the secret police, he finds in her an ally with whom he can continue his fight to free the people of Britain.", "text_for_embedding": "V for Vendetta (2006). Genres: Action, Thriller, Fantasy. In a world in which Great Britain has become a fascist state, a masked vigilante known only as 'V' conducts guerrilla warfare against the oppressive British government. When 'V' rescues a young woman from the secret police, he finds in her an ally with whom he can continue his fight to free the people of Britain.. Tags: detective, vatican, fascism, satanism, fascist, dystopia, government, chancellor, revenge, personification of satan, torture, hatred, masked vigilante, catholicism, catholic priest"} +{"id": "6038", "title": "Shanghai Knights", "year": 2003, "duration_min": 115, "rating": 6.0, "genres": "Action, Adventure, Comedy, Western", "genres_pipe": "|Action|Adventure|Comedy|Western|", "keywords": "london england, indian territory, emperor, revenge, murder, arrow, duringcreditsstinger, imperial seal", "tags_pipe": "|london england|indian territory|emperor|revenge|murder|arrow|duringcreditsstinger|imperial seal|", "overview": "The dynamic duo of Chon Wang and Roy O'Bannon return for another crazy adventure. This time, they're in London to avenge the murder of Chon's father, but end up on an even bigger case. Chon's sister is there to do the same, but instead unearths a plot to kill the royal family. No one believes her, though, and it's up to Chon and Roy (who has romance on his mind) to prove her right.", "text_for_embedding": "Shanghai Knights (2003). Genres: Action, Adventure, Comedy, Western. The dynamic duo of Chon Wang and Roy O'Bannon return for another crazy adventure. This time, they're in London to avenge the murder of Chon's father, but end up on an even bigger case. Chon's sister is there to do the same, but instead unearths a plot to kill the royal family. No one believes her, though, and it's up to Chon and Roy (who has romance on his mind) to prove her right.. Tags: london england, indian territory, emperor, revenge, murder, arrow, duringcreditsstinger, imperial seal"} +{"id": "9975", "title": "Curious George", "year": 2006, "duration_min": 86, "rating": 6.2, "genres": "Adventure, Animation, Comedy, Family", "genres_pipe": "|Adventure|Animation|Comedy|Family|", "keywords": "museum, product placement, balloon, jungle, monkey, family, prediction, cargo ship, curiosity", "tags_pipe": "|museum|product placement|balloon|jungle|monkey|family|prediction|cargo ship|curiosity|", "overview": "When The Man in the Yellow Hat befriends Curious George in the jungle, they set off on a non-stop, fun-filled journey through the wonders of the big city toward the warmth of true friendship.", "text_for_embedding": "Curious George (2006). Genres: Adventure, Animation, Comedy, Family. When The Man in the Yellow Hat befriends Curious George in the jungle, they set off on a non-stop, fun-filled journey through the wonders of the big city toward the warmth of true friendship.. Tags: museum, product placement, balloon, jungle, monkey, family, prediction, cargo ship, curiosity"} +{"id": "11451", "title": "Herbie Fully Loaded", "year": 2005, "duration_min": 101, "rating": 5.1, "genres": "Comedy, Family, Adventure, Fantasy, Romance", "genres_pipe": "|Comedy|Family|Adventure|Fantasy|Romance|", "keywords": "car race, victory, car, nascar, woman director", "tags_pipe": "|car race|victory|car|nascar|woman director|", "overview": "Maggie Peyton, the new owner of Number 53 - the free-wheelin' Volkswagen bug with a mind of its own - puts the car through its paces on the road to becoming a NASCAR competitor.", "text_for_embedding": "Herbie Fully Loaded (2005). Genres: Comedy, Family, Adventure, Fantasy, Romance. Maggie Peyton, the new owner of Number 53 - the free-wheelin' Volkswagen bug with a mind of its own - puts the car through its paces on the road to becoming a NASCAR competitor.. Tags: car race, victory, car, nascar, woman director"} +{"id": "12103", "title": "Don't Say a Word", "year": 2001, "duration_min": 113, "rating": 6.0, "genres": "Thriller", "genres_pipe": "|Thriller|", "keywords": "cemetery, diamant, suspense, psychiatrist, killer", "tags_pipe": "|cemetery|diamant|suspense|psychiatrist|killer|", "overview": "When the daughter of a psychiatrist is kidnapped, he's horrified to discover that the abductors' demand is that he break through to a post traumatic stress disorder suffering young woman who knows a secret..", "text_for_embedding": "Don't Say a Word (2001). Genres: Thriller. When the daughter of a psychiatrist is kidnapped, he's horrified to discover that the abductors' demand is that he break through to a post traumatic stress disorder suffering young woman who knows a secret... Tags: cemetery, diamant, suspense, psychiatrist, killer"} +{"id": "60304", "title": "Hansel & Gretel: Witch Hunters", "year": 2013, "duration_min": 88, "rating": 5.7, "genres": "Fantasy, Horror, Action", "genres_pipe": "|Fantasy|Horror|Action|", "keywords": "witch, black magic, steampunk, good vs evil, troll, extreme violence, violence, witchcraft, evil, witch hunt, witch hunter, evil witch, duringcreditsstinger, hansel and gretel, guns", "tags_pipe": "|witch|black magic|steampunk|good vs evil|troll|extreme violence|violence|witchcraft|evil|witch hunt|witch hunter|evil witch|duringcreditsstinger|hansel and gretel|guns|", "overview": "After getting a taste for blood as children, Hansel and Gretel have become the ultimate vigilantes, hell-bent on retribution. Now, unbeknownst to them, Hansel and Gretel have become the hunted, and must face an evil far greater than witches... their past.", "text_for_embedding": "Hansel & Gretel: Witch Hunters (2013). Genres: Fantasy, Horror, Action. After getting a taste for blood as children, Hansel and Gretel have become the ultimate vigilantes, hell-bent on retribution. Now, unbeknownst to them, Hansel and Gretel have become the hunted, and must face an evil far greater than witches... their past.. Tags: witch, black magic, steampunk, good vs evil, troll, extreme violence, violence, witchcraft, evil, witch hunt, witch hunter, evil witch, duringcreditsstinger, hansel and gretel, guns"} +{"id": "2251", "title": "Unfaithful", "year": 2002, "duration_min": 124, "rating": 6.3, "genres": "Thriller, Drama", "genres_pipe": "|Thriller|Drama|", "keywords": "adultery, infidelity, eroticism, literature, lover, new york city, erotic thriller", "tags_pipe": "|adultery|infidelity|eroticism|literature|lover|new york city|erotic thriller|", "overview": "Connie is a wife and mother whose 11-year marriage to Edward has lost its sexual spark. When Connie literally runs into handsome book collector Paul, he sweeps her into an all-consuming affair. But Edward soon becomes suspicious and decides to confront the other man.", "text_for_embedding": "Unfaithful (2002). Genres: Thriller, Drama. Connie is a wife and mother whose 11-year marriage to Edward has lost its sexual spark. When Connie literally runs into handsome book collector Paul, he sweeps her into an all-consuming affair. But Edward soon becomes suspicious and decides to confront the other man.. Tags: adultery, infidelity, eroticism, literature, lover, new york city, erotic thriller"} +{"id": "46529", "title": "I Am Number Four", "year": 2011, "duration_min": 109, "rating": 5.9, "genres": "Action, Thriller, Science Fiction, Adventure", "genres_pipe": "|Action|Thriller|Science Fiction|Adventure|", "keywords": "secret identity, alien, teenage boy, teenage hero, alien teenager, interspecies romance, based on young adult novel, superpowers", "tags_pipe": "|secret identity|alien|teenage boy|teenage hero|alien teenager|interspecies romance|based on young adult novel|superpowers|", "overview": "A teenage fugitive with an incredible secret races to stay one step ahead of the mysterious forces seeking destroy him in this sci-fi action thriller. With three dead and one on the run, the race to find the elusive Number Four begins. Outwardly normal teen John Smith never gets too comfortable in the same identity, and along with his guardian, Henri, he is constantly moving from town to town. With each passing day, John gains a stronger grasp on his extraordinary new powers, and his bond to the beings that share his fantastic fate grows stronger.", "text_for_embedding": "I Am Number Four (2011). Genres: Action, Thriller, Science Fiction, Adventure. A teenage fugitive with an incredible secret races to stay one step ahead of the mysterious forces seeking destroy him in this sci-fi action thriller. With three dead and one on the run, the race to find the elusive Number Four begins. Outwardly normal teen John Smith never gets too comfortable in the same identity, and along with his guardian, Henri, he is constantly moving from town to town. With each passing day, John gains a stronger grasp on his extraordinary new powers, and his bond to the beings that share his fantastic fate grows stronger.. Tags: secret identity, alien, teenage boy, teenage hero, alien teenager, interspecies romance, based on young adult novel, superpowers"} +{"id": "231", "title": "Syriana", "year": 2005, "duration_min": 128, "rating": 6.3, "genres": "Drama, Thriller", "genres_pipe": "|Drama|Thriller|", "keywords": "anti terror, bomb, assassination, middle east, lebanon, cia, capitalism, globalization, loss of son, persia, war against terror, energy policy, petrol", "tags_pipe": "|anti terror|bomb|assassination|middle east|lebanon|cia|capitalism|globalization|loss of son|persia|war against terror|energy policy|petrol|", "overview": "The Middle Eastern oil industry is the backdrop of this tense drama, which weaves together numerous story lines. Bennett Holiday is an American lawyer in charge of facilitating a dubious merger of oil companies, while Bryan Woodman, a Switzerland-based energy analyst, experiences both personal tragedy and opportunity during a visit with Arabian royalty. Meanwhile, veteran CIA agent Bob Barnes uncovers an assassination plot with unsettling origins.", "text_for_embedding": "Syriana (2005). Genres: Drama, Thriller. The Middle Eastern oil industry is the backdrop of this tense drama, which weaves together numerous story lines. Bennett Holiday is an American lawyer in charge of facilitating a dubious merger of oil companies, while Bryan Woodman, a Switzerland-based energy analyst, experiences both personal tragedy and opportunity during a visit with Arabian royalty. Meanwhile, veteran CIA agent Bob Barnes uncovers an assassination plot with unsettling origins.. Tags: anti terror, bomb, assassination, middle east, lebanon, cia, capitalism, globalization, loss of son, persia, war against terror, energy policy, petrol"} +{"id": "300671", "title": "13 Hours: The Secret Soldiers of Benghazi", "year": 2016, "duration_min": 144, "rating": 7.0, "genres": "Action, Drama, History, Thriller, War", "genres_pipe": "|Action|Drama|History|Thriller|War|", "keywords": "based on novel, assault rifle, mercenary, libya, biography, based on true story, heroism, explosion, american abroad, death, 21st century, cia agent, u.s. ambassador", "tags_pipe": "|based on novel|assault rifle|mercenary|libya|biography|based on true story|heroism|explosion|american abroad|death|21st century|cia agent|u.s. ambassador|", "overview": "An American Ambassador is killed during an attack at a U.S. compound in Libya as a security team struggles to make sense out of the chaos.", "text_for_embedding": "13 Hours: The Secret Soldiers of Benghazi (2016). Genres: Action, Drama, History, Thriller, War. An American Ambassador is killed during an attack at a U.S. compound in Libya as a security team struggles to make sense out of the chaos.. Tags: based on novel, assault rifle, mercenary, libya, biography, based on true story, heroism, explosion, american abroad, death, 21st century, cia agent, u.s. ambassador"} +{"id": "228326", "title": "The Book of Life", "year": 2014, "duration_min": 95, "rating": 7.3, "genres": "Romance, Animation, Adventure, Comedy, Family, Fantasy", "genres_pipe": "|Romance|Animation|Adventure|Comedy|Family|Fantasy|", "keywords": "love triangle, afterlife, day of the dead, bullfighting", "tags_pipe": "|love triangle|afterlife|day of the dead|bullfighting|", "overview": "The journey of Manolo, a young man who is torn between fulfilling the expectations of his family and following his heart. Before choosing which path to follow, he embarks on an incredible adventure that spans three fantastical worlds where he must face his greatest fears.", "text_for_embedding": "The Book of Life (2014). Genres: Romance, Animation, Adventure, Comedy, Family, Fantasy. The journey of Manolo, a young man who is torn between fulfilling the expectations of his family and following his heart. Before choosing which path to follow, he embarks on an incredible adventure that spans three fantastical worlds where he must face his greatest fears.. Tags: love triangle, afterlife, day of the dead, bullfighting"} +{"id": "9754", "title": "Firewall", "year": 2006, "duration_min": 105, "rating": 5.6, "genres": "Thriller", "genres_pipe": "|Thriller|", "keywords": "bank, technology, blackmail, hacker, seattle, computer hacker, firewall", "tags_pipe": "|bank|technology|blackmail|hacker|seattle|computer hacker|firewall|", "overview": "State-of-the-art security system creator, Jack Stanfield has cemented his reputation as a man who's thought of everything. But when a criminal finds a way into Jack's personal life, everything Jack holds dear is suddenly at stake.", "text_for_embedding": "Firewall (2006). Genres: Thriller. State-of-the-art security system creator, Jack Stanfield has cemented his reputation as a man who's thought of everything. But when a criminal finds a way into Jack's personal life, everything Jack holds dear is suddenly at stake.. Tags: bank, technology, blackmail, hacker, seattle, computer hacker, firewall"} +{"id": "66", "title": "Absolute Power", "year": 1997, "duration_min": 121, "rating": 6.4, "genres": "Crime, Drama, Thriller", "genres_pipe": "|Crime|Drama|Thriller|", "keywords": "corruption, assassination, washington d.c., rape, white house, usa president, daughter, government, suspense, secret service, secret service agent", "tags_pipe": "|corruption|assassination|washington d.c.|rape|white house|usa president|daughter|government|suspense|secret service|secret service agent|", "overview": "A master thief coincidentally is robbing a house where a murder in which the President of The United States is involved occurs in front of his eyes. He is forced to run yet may hold evidence that could convict the President. A political thriller from and starring Clint Eastwood and based on a novel by David Baldacci.", "text_for_embedding": "Absolute Power (1997). Genres: Crime, Drama, Thriller. A master thief coincidentally is robbing a house where a murder in which the President of The United States is involved occurs in front of his eyes. He is forced to run yet may hold evidence that could convict the President. A political thriller from and starring Clint Eastwood and based on a novel by David Baldacci.. Tags: corruption, assassination, washington d.c., rape, white house, usa president, daughter, government, suspense, secret service, secret service agent"} +{"id": "4421", "title": "G.I. Jane", "year": 1997, "duration_min": 125, "rating": 6.0, "genres": "Action, Drama", "genres_pipe": "|Action|Drama|", "keywords": "poem, middle east, helicopter, satellite, navy, sexism, war, army, sexual harassment, navy seal, feminist, soldier, commando, mental health, drill instructor", "tags_pipe": "|poem|middle east|helicopter|satellite|navy|sexism|war|army|sexual harassment|navy seal|feminist|soldier|commando|mental health|drill instructor|", "overview": "A female Senator succeeds in enrolling a woman into Combined Reconnaissance Team training where everyone expects her to fail.", "text_for_embedding": "G.I. Jane (1997). Genres: Action, Drama. A female Senator succeeds in enrolling a woman into Combined Reconnaissance Team training where everyone expects her to fail.. Tags: poem, middle east, helicopter, satellite, navy, sexism, war, army, sexual harassment, navy seal, feminist, soldier, commando, mental health, drill instructor"} +{"id": "2649", "title": "The Game", "year": 1997, "duration_min": 129, "rating": 7.5, "genres": "Drama, Thriller, Mystery", "genres_pipe": "|Drama|Thriller|Mystery|", "keywords": "brother brother relationship, birthday, danger of life, birthday party, surprising", "tags_pipe": "|brother brother relationship|birthday|danger of life|birthday party|surprising|", "overview": "In honor of his birthday, San Francisco banker Nicholas Van Orton, a financial genius and a coldhearted loner, receives an unusual present from his younger brother, Conrad -- a gift certificate to play a unique kind of game. In nearly a nanosecond, Nicholas finds himself consumed by a dangerous set of ever-changing rules, unable to distinguish where the charade ends and reality begins.", "text_for_embedding": "The Game (1997). Genres: Drama, Thriller, Mystery. In honor of his birthday, San Francisco banker Nicholas Van Orton, a financial genius and a coldhearted loner, receives an unusual present from his younger brother, Conrad -- a gift certificate to play a unique kind of game. In nearly a nanosecond, Nicholas finds himself consumed by a dangerous set of ever-changing rules, unable to distinguish where the charade ends and reality begins.. Tags: brother brother relationship, birthday, danger of life, birthday party, surprising"} +{"id": "588", "title": "Silent Hill", "year": 2006, "duration_min": 125, "rating": 6.3, "genres": "Horror, Mystery", "genres_pipe": "|Horror|Mystery|", "keywords": "monster, mother role, burning of witches, fog, suffering, darkness, sadism, supernatural, revenge, surrealism, gore, survival, good vs evil, blood, another dimension", "tags_pipe": "|monster|mother role|burning of witches|fog|suffering|darkness|sadism|supernatural|revenge|surrealism|gore|survival|good vs evil|blood|another dimension|", "overview": "The eerie and deserted ghost town of Silent Hill draws a young mother desperate to find a cure for her only child's illness. Unable to accept the doctor's diagnosis that her daughter should be permanently institutionalized for psychiatric care, Rose flees with her child, heading for the abandoned town in search of answers – and ignoring the protests of her husband. It's soon clear this place is unlike anywhere she's ever been. It's smothered by fog, inhabited by a variety of strange beings and periodically overcome by a living 'darkness' that literally transforms everything it touches. As Rose searches for her little girl, she begins to learn the history of the strange town and realizes that her daughter is just a pawn in a larger game.", "text_for_embedding": "Silent Hill (2006). Genres: Horror, Mystery. The eerie and deserted ghost town of Silent Hill draws a young mother desperate to find a cure for her only child's illness. Unable to accept the doctor's diagnosis that her daughter should be permanently institutionalized for psychiatric care, Rose flees with her child, heading for the abandoned town in search of answers – and ignoring the protests of her husband. It's soon clear this place is unlike anywhere she's ever been. It's smothered by fog, inhabited by a variety of strange beings and periodically overcome by a living 'darkness' that literally transforms everything it touches. As Rose searches for her little girl, she begins to learn the history of the strange town and realizes that her daughter is just a pawn in a larger game.. Tags: monster, mother role, burning of witches, fog, suffering, darkness, sadism, supernatural, revenge, surrealism, gore, survival, good vs evil, blood, another dimension"} +{"id": "10393", "title": "The Replacements", "year": 2000, "duration_min": 118, "rating": 6.1, "genres": "Comedy", "genres_pipe": "|Comedy|", "keywords": "american football, strike, sport, coach, misfit, american football player", "tags_pipe": "|american football|strike|sport|coach|misfit|american football player|", "overview": "Maverick old-guard coach Jimmy McGinty is hired in the wake of a players' strike to help the Washington Sentinels advance to the playoffs. But that impossible dream hinges on whether his replacements can hunker down and do the job. So, McGinty dusts off his secret dossier of ex-players who never got a chance (or screwed up the one they were given) and knits together a bad-dream team of guys who just may give the Sentinels their title shot.", "text_for_embedding": "The Replacements (2000). Genres: Comedy. Maverick old-guard coach Jimmy McGinty is hired in the wake of a players' strike to help the Washington Sentinels advance to the playoffs. But that impossible dream hinges on whether his replacements can hunker down and do the job. So, McGinty dusts off his secret dossier of ex-players who never got a chance (or screwed up the one they were given) and knits together a bad-dream team of guys who just may give the Sentinels their title shot.. Tags: american football, strike, sport, coach, misfit, american football player"} +{"id": "71552", "title": "American Reunion", "year": 2012, "duration_min": 113, "rating": 6.1, "genres": "Comedy", "genres_pipe": "|Comedy|", "keywords": "wife husband relationship, sequel, family reunion, masturbation, scat, high school reunion, quitting a job, milf, duringcreditsstinger", "tags_pipe": "|wife husband relationship|sequel|family reunion|masturbation|scat|high school reunion|quitting a job|milf|duringcreditsstinger|", "overview": "The characters we met a little more than a decade ago are returning to East Great Falls for their high-school reunion. In one long-overdue weekend, they will discover what has changed, who hasn’t and that time and distance can’t break the bonds of friendship. It was summer 1999 when four small-town Michigan boys began a quest to lose their virginity. In the years that have passed, Jim and Michelle married while Kevin and Vicky said goodbye. Oz and Heather grew apart, but Finch still longs for Stifler’s mom. Now these lifelong friends have come home as adults to reminisce about – and get inspired by – the hormonal teens who launched a comedy legend.", "text_for_embedding": "American Reunion (2012). Genres: Comedy. The characters we met a little more than a decade ago are returning to East Great Falls for their high-school reunion. In one long-overdue weekend, they will discover what has changed, who hasn’t and that time and distance can’t break the bonds of friendship. It was summer 1999 when four small-town Michigan boys began a quest to lose their virginity. In the years that have passed, Jim and Michelle married while Kevin and Vicky said goodbye. Oz and Heather grew apart, but Finch still longs for Stifler’s mom. Now these lifelong friends have come home as adults to reminisce about – and get inspired by – the hormonal teens who launched a comedy legend.. Tags: wife husband relationship, sequel, family reunion, masturbation, scat, high school reunion, quitting a job, milf, duringcreditsstinger"} +{"id": "9631", "title": "The Negotiator", "year": 1998, "duration_min": 140, "rating": 6.8, "genres": "Action, Adventure, Crime, Drama, Mystery, Thriller", "genres_pipe": "|Action|Adventure|Crime|Drama|Mystery|Thriller|", "keywords": "corruption, hostage, pension, innocence, police, hostage-taking, murder, suspense, conspiracy, bullet wound, negotiator", "tags_pipe": "|corruption|hostage|pension|innocence|police|hostage-taking|murder|suspense|conspiracy|bullet wound|negotiator|", "overview": "The police try to arrest expert hostage negotiator Danny Roman, who insists he's being framed for his partner's murder in what he believes is an elaborate conspiracy. Thinking there's evidence in the Internal Affairs offices that might clear him, he takes everyone in the office hostage and demands that another well-known negotiator be brought in to handle the situation and secretly investigate the conspiracy.", "text_for_embedding": "The Negotiator (1998). Genres: Action, Adventure, Crime, Drama, Mystery, Thriller. The police try to arrest expert hostage negotiator Danny Roman, who insists he's being framed for his partner's murder in what he believes is an elaborate conspiracy. Thinking there's evidence in the Internal Affairs offices that might clear him, he takes everyone in the office hostage and demands that another well-known negotiator be brought in to handle the situation and secretly investigate the conspiracy.. Tags: corruption, hostage, pension, innocence, police, hostage-taking, murder, suspense, conspiracy, bullet wound, negotiator"} +{"id": "216282", "title": "Into the Storm", "year": 2014, "duration_min": 89, "rating": 5.8, "genres": "Action, Thriller", "genres_pipe": "|Action|Thriller|", "keywords": "tornado, student, found footage, disaster movie", "tags_pipe": "|tornado|student|found footage|disaster movie|", "overview": "The town of Silverton is in one day destroyed by the unprecedented power of a series of tornadoes. The population is at the mercy of the unpredictable and deadly cyclones, while hunters warn that the worst is yet to come. Most people find shelter, but some just go to the tornado for that one, unique shot.", "text_for_embedding": "Into the Storm (2014). Genres: Action, Thriller. The town of Silverton is in one day destroyed by the unprecedented power of a series of tornadoes. The population is at the mercy of the unpredictable and deadly cyclones, while hunters warn that the worst is yet to come. Most people find shelter, but some just go to the tornado for that one, unique shot.. Tags: tornado, student, found footage, disaster movie"} +{"id": "306", "title": "Beverly Hills Cop III", "year": 1994, "duration_min": 104, "rating": 5.5, "genres": "Action, Comedy, Crime", "genres_pipe": "|Action|Comedy|Crime|", "keywords": "detective, undercover, security camera, carousel , investigation, weapon, sequel, rescue, counterfeit, shootout, dirty cop, gunfight, los angeles, explosion, violence", "tags_pipe": "|detective|undercover|security camera|carousel |investigation|weapon|sequel|rescue|counterfeit|shootout|dirty cop|gunfight|los angeles|explosion|violence|", "overview": "Back in sunny southern California and on the trail of two murderers, Axel Foley again teams up with LA cop Billy Rosewood. Soon, they discover that an amusement park is being used as a front for a massive counterfeiting ring – and it's run by the same gang that shot Billy's boss.", "text_for_embedding": "Beverly Hills Cop III (1994). Genres: Action, Comedy, Crime. Back in sunny southern California and on the trail of two murderers, Axel Foley again teams up with LA cop Billy Rosewood. Soon, they discover that an amusement park is being used as a front for a massive counterfeiting ring – and it's run by the same gang that shot Billy's boss.. Tags: detective, undercover, security camera, carousel , investigation, weapon, sequel, rescue, counterfeit, shootout, dirty cop, gunfight, los angeles, explosion, violence"} +{"id": "928", "title": "Gremlins 2: The New Batch", "year": 1990, "duration_min": 106, "rating": 6.2, "genres": "Comedy, Horror, Fantasy", "genres_pipe": "|Comedy|Horror|Fantasy|", "keywords": "new york, monster, skyscraper, mutant, restaurant, human animal relationship, mutation, tv station, dying and death, water, research station, fur, bat, current, electric shock", "tags_pipe": "|new york|monster|skyscraper|mutant|restaurant|human animal relationship|mutation|tv station|dying and death|water|research station|fur|bat|current|electric shock|", "overview": "Young sweethearts Billy and Kate move to the Big Apple, land jobs in a high-tech office park and soon reunite with the friendly and lovable Gizmo. But a series of accidents creates a whole new generation of Gremlins. The situation worsens when the devilish green creatures invade a top-secret laboratory and develop genetically altered powers, making them even harder to destroy!", "text_for_embedding": "Gremlins 2: The New Batch (1990). Genres: Comedy, Horror, Fantasy. Young sweethearts Billy and Kate move to the Big Apple, land jobs in a high-tech office park and soon reunite with the friendly and lovable Gizmo. But a series of accidents creates a whole new generation of Gremlins. The situation worsens when the devilish green creatures invade a top-secret laboratory and develop genetically altered powers, making them even harder to destroy!. Tags: new york, monster, skyscraper, mutant, restaurant, human animal relationship, mutation, tv station, dying and death, water, research station, fur, bat, current, electric shock"} +{"id": "205587", "title": "The Judge", "year": 2014, "duration_min": 141, "rating": 7.2, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "father son relationship, judge, lawyer", "tags_pipe": "|father son relationship|judge|lawyer|", "overview": "A successful lawyer returns to his hometown for his mother's funeral only to discover that his estranged father, the town's judge, is suspected of murder.", "text_for_embedding": "The Judge (2014). Genres: Drama. A successful lawyer returns to his hometown for his mother's funeral only to discover that his estranged father, the town's judge, is suspected of murder.. Tags: father son relationship, judge, lawyer"} +{"id": "6623", "title": "The Peacemaker", "year": 1997, "duration_min": 124, "rating": 5.8, "genres": "Action, Thriller", "genres_pipe": "|Action|Thriller|", "keywords": "helicopter, terrorist, nuclear missile, bridge, train crash, train, woman director", "tags_pipe": "|helicopter|terrorist|nuclear missile|bridge|train crash|train|woman director|", "overview": "When a train carrying atomic warheads mysteriously crashes in the former Soviet Union, a nuclear specialist discovers the accident is really part of a plot to cover up the theft of the weapons. Assigned to help her recover the missing bombs is a crack Special Forces Colonel.", "text_for_embedding": "The Peacemaker (1997). Genres: Action, Thriller. When a train carrying atomic warheads mysteriously crashes in the former Soviet Union, a nuclear specialist discovers the accident is really part of a plot to cover up the theft of the weapons. Assigned to help her recover the missing bombs is a crack Special Forces Colonel.. Tags: helicopter, terrorist, nuclear missile, bridge, train crash, train, woman director"} +{"id": "1577", "title": "Resident Evil: Apocalypse", "year": 2004, "duration_min": 94, "rating": 6.1, "genres": "Horror, Action, Science Fiction", "genres_pipe": "|Horror|Action|Science Fiction|", "keywords": "martial arts, mutant, dystopia, rescue, conspiracy, evil corporation, zombie, based on video game", "tags_pipe": "|martial arts|mutant|dystopia|rescue|conspiracy|evil corporation|zombie|based on video game|", "overview": "As the city is locked down under quarantine, Alice joins a small band of elite soldiers, enlisted to rescue the missing daughter of the creator of the mutating T-virus. It's a heart-pounding race against time as the group faces off against hordes of blood- thirsty zombies, stealthy Lickers, mutant canines and the most sinister foe yet.", "text_for_embedding": "Resident Evil: Apocalypse (2004). Genres: Horror, Action, Science Fiction. As the city is locked down under quarantine, Alice joins a small band of elite soldiers, enlisted to rescue the missing daughter of the creator of the mutating T-virus. It's a heart-pounding race against time as the group faces off against hordes of blood- thirsty zombies, stealthy Lickers, mutant canines and the most sinister foe yet.. Tags: martial arts, mutant, dystopia, rescue, conspiracy, evil corporation, zombie, based on video game"} +{"id": "9801", "title": "Bridget Jones: The Edge of Reason", "year": 2004, "duration_min": 108, "rating": 6.1, "genres": "Comedy, Romance", "genres_pipe": "|Comedy|Romance|", "keywords": "london england, lovesickness, thailand, clumsy fellow, to drop brick, capture, woman director", "tags_pipe": "|london england|lovesickness|thailand|clumsy fellow|to drop brick|capture|woman director|", "overview": "Bridget Jones is becoming uncomfortable in her relationship with Mark Darcy. Apart from discovering that he's a conservative voter, she has to deal with a new boss, a strange contractor and the worst vacation of her life.", "text_for_embedding": "Bridget Jones: The Edge of Reason (2004). Genres: Comedy, Romance. Bridget Jones is becoming uncomfortable in her relationship with Mark Darcy. Apart from discovering that he's a conservative voter, she has to deal with a new boss, a strange contractor and the worst vacation of her life.. Tags: london england, lovesickness, thailand, clumsy fellow, to drop brick, capture, woman director"} +{"id": "2116", "title": "Out of Time", "year": 2003, "duration_min": 105, "rating": 6.1, "genres": "Thriller, Crime, Drama", "genres_pipe": "|Thriller|Crime|Drama|", "keywords": "miami, florida, double murder, divorce", "tags_pipe": "|miami|florida|double murder|divorce|", "overview": "Matt Lee Whitlock, respected chief of police in small Banyan Key, Florida, must solve a vicious double homicide before he himself falls under suspicion. Matt Lee has to stay a few steps ahead of his own police force and everyone he's trusted in order to find out the truth.", "text_for_embedding": "Out of Time (2003). Genres: Thriller, Crime, Drama. Matt Lee Whitlock, respected chief of police in small Banyan Key, Florida, must solve a vicious double homicide before he himself falls under suspicion. Matt Lee has to stay a few steps ahead of his own police force and everyone he's trusted in order to find out the truth.. Tags: miami, florida, double murder, divorce"} +{"id": "9624", "title": "On Deadly Ground", "year": 1994, "duration_min": 102, "rating": 4.5, "genres": "Action, Thriller", "genres_pipe": "|Action|Thriller|", "keywords": "fight, inuit, petrol, company, alaska, enviromental", "tags_pipe": "|fight|inuit|petrol|company|alaska|enviromental|", "overview": "Forrest Taft is an environmental agent who works for the Aegis Oil Company in Alaska. Aegis Oil's corrupt CEO, Michael Jennings, is the kind of person who doesn't care whether or not oil spills into the ocean or onto the land, just as long as it's making money for him.", "text_for_embedding": "On Deadly Ground (1994). Genres: Action, Thriller. Forrest Taft is an environmental agent who works for the Aegis Oil Company in Alaska. Aegis Oil's corrupt CEO, Michael Jennings, is the kind of person who doesn't care whether or not oil spills into the ocean or onto the land, just as long as it's making money for him.. Tags: fight, inuit, petrol, company, alaska, enviromental"} +{"id": "14199", "title": "The Adventures of Sharkboy and Lavagirl", "year": 2005, "duration_min": 92, "rating": 4.4, "genres": "Adventure, Family, Science Fiction", "genres_pipe": "|Adventure|Family|Science Fiction|", "keywords": "imaginary friend, outcast", "tags_pipe": "|imaginary friend|outcast|", "overview": "Everyone always knew that Max had a wild imagination, but no one believed that his wildest creations -- a boy raised by watchful great white sharks and a girl with the force of a volcano -- were real. Now, these two pint-sized action masters will show Max that even an ordinary kid has what it takes to be extraordinary.", "text_for_embedding": "The Adventures of Sharkboy and Lavagirl (2005). Genres: Adventure, Family, Science Fiction. Everyone always knew that Max had a wild imagination, but no one believed that his wildest creations -- a boy raised by watchful great white sharks and a girl with the force of a volcano -- were real. Now, these two pint-sized action masters will show Max that even an ordinary kid has what it takes to be extraordinary.. Tags: imaginary friend, outcast"} +{"id": "1907", "title": "The Beach", "year": 2000, "duration_min": 119, "rating": 6.3, "genres": "Drama, Adventure, Romance, Thriller", "genres_pipe": "|Drama|Adventure|Romance|Thriller|", "keywords": "hippie, exotic island, beach, map, group dynamics, shark attack, leader, thailand, community, backpacker, delusion, marijuana, youth, shark, extramarital affair", "tags_pipe": "|hippie|exotic island|beach|map|group dynamics|shark attack|leader|thailand|community|backpacker|delusion|marijuana|youth|shark|extramarital affair|", "overview": "Twenty-something Richard travels to Thailand and finds himself in possession of a strange map. Rumours state that it leads to a solitary beach paradise, a tropical bliss - excited and intrigued, he sets out to find it.", "text_for_embedding": "The Beach (2000). Genres: Drama, Adventure, Romance, Thriller. Twenty-something Richard travels to Thailand and finds himself in possession of a strange map. Rumours state that it leads to a solitary beach paradise, a tropical bliss - excited and intrigued, he sets out to find it.. Tags: hippie, exotic island, beach, map, group dynamics, shark attack, leader, thailand, community, backpacker, delusion, marijuana, youth, shark, extramarital affair"} +{"id": "4599", "title": "Raising Helen", "year": 2004, "duration_min": 119, "rating": 5.9, "genres": "Drama, Comedy, Romance", "genres_pipe": "|Drama|Comedy|Romance|", "keywords": "new york, pastor, world of fasion, loss of parents, mannequin, fashion designer, family relationships", "tags_pipe": "|new york|pastor|world of fasion|loss of parents|mannequin|fashion designer|family relationships|", "overview": "Helen Harris has a glamorous, big-city life working for one of New York's hottest modeling agencies. But suddenly her free-spirited life gets turned upside down when she must chose between the life she's always loved, and the new loves of her life!", "text_for_embedding": "Raising Helen (2004). Genres: Drama, Comedy, Romance. Helen Harris has a glamorous, big-city life working for one of New York's hottest modeling agencies. But suddenly her free-spirited life gets turned upside down when she must chose between the life she's always loved, and the new loves of her life!. Tags: new york, pastor, world of fasion, loss of parents, mannequin, fashion designer, family relationships"} +{"id": "22832", "title": "Ninja Assassin", "year": 2009, "duration_min": 99, "rating": 6.2, "genres": "Action, Crime, Thriller", "genres_pipe": "|Action|Crime|Thriller|", "keywords": "assassination, assassin, ninja fighter, revenge, ninja, ninjutsu", "tags_pipe": "|assassination|assassin|ninja fighter|revenge|ninja|ninjutsu|", "overview": "Ninja Assassin follows Raizo (Rain), one of the deadliest assassins in the world. Taken from the streets as a child, he was transformed into a trained killer by the Ozunu Clan, a secret society whose very existence is considered a myth. But haunted by the merciless execution of his friend by the Clan, Raizo breaks free from them and vanishes. Now he waits, preparing to exact his revenge.", "text_for_embedding": "Ninja Assassin (2009). Genres: Action, Crime, Thriller. Ninja Assassin follows Raizo (Rain), one of the deadliest assassins in the world. Taken from the streets as a child, he was transformed into a trained killer by the Ozunu Clan, a secret society whose very existence is considered a myth. But haunted by the merciless execution of his friend by the Clan, Raizo breaks free from them and vanishes. Now he waits, preparing to exact his revenge.. Tags: assassination, assassin, ninja fighter, revenge, ninja, ninjutsu"} +{"id": "10390", "title": "For Love of the Game", "year": 1999, "duration_min": 137, "rating": 6.3, "genres": "Drama, Romance", "genres_pipe": "|Drama|Romance|", "keywords": "baseball, trainer, career, legend, training, sport", "tags_pipe": "|baseball|trainer|career|legend|training|sport|", "overview": "A baseball legend almost finished with his distinguished career at the age of forty has one last chance to prove who he is, what he is capable of, and win the heart of the woman he has loved for the past four years.", "text_for_embedding": "For Love of the Game (1999). Genres: Drama, Romance. A baseball legend almost finished with his distinguished career at the age of forty has one last chance to prove who he is, what he is capable of, and win the heart of the woman he has loved for the past four years.. Tags: baseball, trainer, career, legend, training, sport"} +{"id": "9879", "title": "Striptease", "year": 1996, "duration_min": 115, "rating": 4.4, "genres": "Drama, Thriller, Crime", "genres_pipe": "|Drama|Thriller|Crime|", "keywords": "blackmail, strip club, striptease, police, u.s. congress", "tags_pipe": "|blackmail|strip club|striptease|police|u.s. congress|", "overview": "Bounced from her job, Erin Grant needs money if she's to have any chance of winning back custody of her child. But, eventually, she must confront the naked truth: to take on the system, she'll have to take it all off. Erin strips to conquer, but she faces unintended circumstances when a hound dog of a Congressman zeroes in on her and sharpens the shady tools at his fingertips, including blackmail and murder.", "text_for_embedding": "Striptease (1996). Genres: Drama, Thriller, Crime. Bounced from her job, Erin Grant needs money if she's to have any chance of winning back custody of her child. But, eventually, she must confront the naked truth: to take on the system, she'll have to take it all off. Erin strips to conquer, but she faces unintended circumstances when a hound dog of a Congressman zeroes in on her and sharpens the shady tools at his fingertips, including blackmail and murder.. Tags: blackmail, strip club, striptease, police, u.s. congress"} +{"id": "38579", "title": "Marmaduke", "year": 2010, "duration_min": 87, "rating": 5.0, "genres": "Family, Comedy", "genres_pipe": "|Family|Comedy|", "keywords": "", "tags_pipe": "", "overview": "When Phil and Debbie Winslow relocate from their native Kansas to the sunny climes of Orange County, their big-hearted, havoc-wreaking Great Dane gets a taste of the dog's life, California-style.", "text_for_embedding": "Marmaduke (2010). Genres: Family, Comedy. When Phil and Debbie Winslow relocate from their native Kansas to the sunny climes of Orange County, their big-hearted, havoc-wreaking Great Dane gets a taste of the dog's life, California-style.. Tags: "} +{"id": "44603", "title": "Hereafter", "year": 2010, "duration_min": 129, "rating": 5.8, "genres": "Drama, Fantasy", "genres_pipe": "|Drama|Fantasy|", "keywords": "", "tags_pipe": "", "overview": "A supernatural thriller centered on three people -- a blue-collar American, a French journalist and a London school boy -- who are touched by death in different ways.", "text_for_embedding": "Hereafter (2010). Genres: Drama, Fantasy. A supernatural thriller centered on three people -- a blue-collar American, a French journalist and a London school boy -- who are touched by death in different ways.. Tags: "} +{"id": "11892", "title": "Murder by Numbers", "year": 2002, "duration_min": 120, "rating": 6.0, "genres": "Crime, Drama, Thriller", "genres_pipe": "|Crime|Drama|Thriller|", "keywords": "detective, secret, fbi, homicide, evidence, nerd, vice, intellectual, high school, partner, murder, rich, forensic", "tags_pipe": "|detective|secret|fbi|homicide|evidence|nerd|vice|intellectual|high school|partner|murder|rich|forensic|", "overview": "Tenacious homicide detective Cassie Mayweather and her still-green partner are working a murder case, attempting to profile two malevolently brilliant young men: cold, calculating killers whose dark secrets might explain their crimes.", "text_for_embedding": "Murder by Numbers (2002). Genres: Crime, Drama, Thriller. Tenacious homicide detective Cassie Mayweather and her still-green partner are working a murder case, attempting to profile two malevolently brilliant young men: cold, calculating killers whose dark secrets might explain their crimes.. Tags: detective, secret, fbi, homicide, evidence, nerd, vice, intellectual, high school, partner, murder, rich, forensic"} +{"id": "9691", "title": "Assassins", "year": 1995, "duration_min": 132, "rating": 6.0, "genres": "Action, Adventure, Crime, Thriller", "genres_pipe": "|Action|Adventure|Crime|Thriller|", "keywords": "competition, assassination, cia, bank, cat, mexican standoff, seattle, hitman, mission of murder, hidden camera, rivalry, rescue, shootout, police chase, sniper rifle", "tags_pipe": "|competition|assassination|cia|bank|cat|mexican standoff|seattle|hitman|mission of murder|hidden camera|rivalry|rescue|shootout|police chase|sniper rifle|", "overview": "Assassin Robert Rath arrives at a funeral to kill a prominent mobster, only to witness a rival hired gun complete the job for him -- with grisly results. Horrified by the murder of innocent bystanders, Rath decides to take one last job and then return to civilian life. But finding his way out of the world of contract killing grows ever more dangerous as Rath falls for his female target and becomes a marked man himself.", "text_for_embedding": "Assassins (1995). Genres: Action, Adventure, Crime, Thriller. Assassin Robert Rath arrives at a funeral to kill a prominent mobster, only to witness a rival hired gun complete the job for him -- with grisly results. Horrified by the murder of innocent bystanders, Rath decides to take one last job and then return to civilian life. But finding his way out of the world of contract killing grows ever more dangerous as Rath falls for his female target and becomes a marked man himself.. Tags: competition, assassination, cia, bank, cat, mexican standoff, seattle, hitman, mission of murder, hidden camera, rivalry, rescue, shootout, police chase, sniper rifle"} +{"id": "1248", "title": "Hannibal Rising", "year": 2007, "duration_min": 121, "rating": 6.0, "genres": "Crime, Drama, Thriller", "genres_pipe": "|Crime|Drama|Thriller|", "keywords": "winter, psychopath, horror, serial killer", "tags_pipe": "|winter|psychopath|horror|serial killer|", "overview": "The story of the early, murderous roots of the cannibalistic killer, Hannibal Lecter – from his hard-scrabble Lithuanian childhood, where he witnesses the repulsive lengths to which hungry soldiers will go to satiate themselves, through his sojourn in France, where as a med student he hones his appetite for the kill.", "text_for_embedding": "Hannibal Rising (2007). Genres: Crime, Drama, Thriller. The story of the early, murderous roots of the cannibalistic killer, Hannibal Lecter – from his hard-scrabble Lithuanian childhood, where he witnesses the repulsive lengths to which hungry soldiers will go to satiate themselves, through his sojourn in France, where as a med student he hones his appetite for the kill.. Tags: winter, psychopath, horror, serial killer"} +{"id": "12220", "title": "The Story of Us", "year": 1999, "duration_min": 95, "rating": 5.9, "genres": "Comedy, Drama, Romance", "genres_pipe": "|Comedy|Drama|Romance|", "keywords": "love of one's life, therapist, psychology, wedding, relationship, divorce", "tags_pipe": "|love of one's life|therapist|psychology|wedding|relationship|divorce|", "overview": "Ben and Katie Jordan are a married couple who go through hard times in fifteen years of marriage.", "text_for_embedding": "The Story of Us (1999). Genres: Comedy, Drama, Romance. Ben and Katie Jordan are a married couple who go through hard times in fifteen years of marriage.. Tags: love of one's life, therapist, psychology, wedding, relationship, divorce"} +{"id": "72710", "title": "The Host", "year": 2013, "duration_min": 125, "rating": 6.0, "genres": "Action, Adventure, Romance, Science Fiction, Thriller", "genres_pipe": "|Action|Adventure|Romance|Science Fiction|Thriller|", "keywords": "based on novel, mass murder, dystopia, genocide, alien invasion, duringcreditsstinger, interspecies romance, alien parasites", "tags_pipe": "|based on novel|mass murder|dystopia|genocide|alien invasion|duringcreditsstinger|interspecies romance|alien parasites|", "overview": "A parasitic alien soul is injected into the body of Melanie Stryder. Instead of carrying out her race's mission of taking over the Earth, \"Wanda\" (as she comes to be called) forms a bond with her host and sets out to aid other free humans.", "text_for_embedding": "The Host (2013). Genres: Action, Adventure, Romance, Science Fiction, Thriller. A parasitic alien soul is injected into the body of Melanie Stryder. Instead of carrying out her race's mission of taking over the Earth, \"Wanda\" (as she comes to be called) forms a bond with her host and sets out to aid other free humans.. Tags: based on novel, mass murder, dystopia, genocide, alien invasion, duringcreditsstinger, interspecies romance, alien parasites"} +{"id": "10782", "title": "Basic", "year": 2003, "duration_min": 98, "rating": 6.2, "genres": "Action, Drama, Mystery, Thriller, Crime", "genres_pipe": "|Action|Drama|Mystery|Thriller|Crime|", "keywords": "drug addiction, military court, panama, military service, court, ranger, supreme court, lager, military crime", "tags_pipe": "|drug addiction|military court|panama|military service|court|ranger|supreme court|lager|military crime|", "overview": "A DEA agent investigates the disappearance of a legendary Army ranger drill sergeant and several of his cadets during a training exercise gone severely awry.", "text_for_embedding": "Basic (2003). Genres: Action, Drama, Mystery, Thriller, Crime. A DEA agent investigates the disappearance of a legendary Army ranger drill sergeant and several of his cadets during a training exercise gone severely awry.. Tags: drug addiction, military court, panama, military service, court, ranger, supreme court, lager, military crime"} +{"id": "9573", "title": "Blood Work", "year": 2002, "duration_min": 110, "rating": 6.1, "genres": "Crime, Drama, Mystery, Thriller", "genres_pipe": "|Crime|Drama|Mystery|Thriller|", "keywords": "houseboat, heart, investigation, police, ex-cop, suspense, heart transplant, fbi profiler", "tags_pipe": "|houseboat|heart|investigation|police|ex-cop|suspense|heart transplant|fbi profiler|", "overview": "Still recovering from a heart transplant, a retired FBI profiler returns to service when his own blood analysis offers clues to the identity of a serial killer.", "text_for_embedding": "Blood Work (2002). Genres: Crime, Drama, Mystery, Thriller. Still recovering from a heart transplant, a retired FBI profiler returns to service when his own blood analysis offers clues to the identity of a serial killer.. Tags: houseboat, heart, investigation, police, ex-cop, suspense, heart transplant, fbi profiler"} +{"id": "4959", "title": "The International", "year": 2009, "duration_min": 118, "rating": 6.0, "genres": "Drama, Thriller, Crime", "genres_pipe": "|Drama|Thriller|Crime|", "keywords": "duringcreditsstinger", "tags_pipe": "|duringcreditsstinger|", "overview": "An interpol agent and an attorney are determined to bring one of the world's most powerful banks to justice. Uncovering money laundering, arms trading, and conspiracy to destabilize world governments, their investigation takes them from Berlin, Milan, New York and Istanbul. Finding themselves in a chase across the globe, their relentless tenacity puts their own lives at risk.", "text_for_embedding": "The International (2009). Genres: Drama, Thriller, Crime. An interpol agent and an attorney are determined to bring one of the world's most powerful banks to justice. Uncovering money laundering, arms trading, and conspiracy to destabilize world governments, their investigation takes them from Berlin, Milan, New York and Istanbul. Finding themselves in a chase across the globe, their relentless tenacity puts their own lives at risk.. Tags: duringcreditsstinger"} +{"id": "10061", "title": "Escape from L.A.", "year": 1996, "duration_min": 97, "rating": 5.6, "genres": "Action, Adventure, Science Fiction, Thriller", "genres_pipe": "|Action|Adventure|Science Fiction|Thriller|", "keywords": "prison, usa president, earthquake, dystopia, attempt to escape, los angeles, reluctant hero", "tags_pipe": "|prison|usa president|earthquake|dystopia|attempt to escape|los angeles|reluctant hero|", "overview": "This time, a cataclysmic temblor hits Los Angeles, turning it into an island. The president views the quake as a sign from above, expels Los Angeles from the country and makes it a penal colony for those found guilty of moral crimes. When his daughter, part of a resistance movement, steals the control unit for a doomsday weapon, Snake again gets tapped to save the day.", "text_for_embedding": "Escape from L.A. (1996). Genres: Action, Adventure, Science Fiction, Thriller. This time, a cataclysmic temblor hits Los Angeles, turning it into an island. The president views the quake as a sign from above, expels Los Angeles from the country and makes it a penal colony for those found guilty of moral crimes. When his daughter, part of a resistance movement, steals the control unit for a doomsday weapon, Snake again gets tapped to save the day.. Tags: prison, usa president, earthquake, dystopia, attempt to escape, los angeles, reluctant hero"} +{"id": "10386", "title": "The Iron Giant", "year": 1999, "duration_min": 86, "rating": 7.6, "genres": "Adventure, Animation, Family, Fantasy, Science Fiction", "genres_pipe": "|Adventure|Animation|Family|Fantasy|Science Fiction|", "keywords": "cold war, friendship, giant robot, sitting on a toilet, fear of unknown, 1950s, laxative", "tags_pipe": "|cold war|friendship|giant robot|sitting on a toilet|fear of unknown|1950s|laxative|", "overview": "In the small town of Rockwell, Maine in October 1957, a giant metal machine befriends a nine-year-old boy and ultimately finds its humanity by unselfishly saving people from their own fears and prejudices.", "text_for_embedding": "The Iron Giant (1999). Genres: Adventure, Animation, Family, Fantasy, Science Fiction. In the small town of Rockwell, Maine in October 1957, a giant metal machine befriends a nine-year-old boy and ultimately finds its humanity by unselfishly saving people from their own fears and prejudices.. Tags: cold war, friendship, giant robot, sitting on a toilet, fear of unknown, 1950s, laxative"} +{"id": "421", "title": "The Life Aquatic with Steve Zissou", "year": 2004, "duration_min": 119, "rating": 7.1, "genres": "Adventure, Comedy, Drama", "genres_pipe": "|Adventure|Comedy|Drama|", "keywords": "ocean, film making, loss of mother, cynic, red cap, ship", "tags_pipe": "|ocean|film making|loss of mother|cynic|red cap|ship|", "overview": "Wes Anderson’s incisive quirky comedy build up stars complex characters like in ‘The Royal Tenenbaums’ with Bill Murray on in the leading role. An ocean adventure documentary film maker Zissou is put in all imaginable life situations and a tough life crisis as he attempts to make a new film about capturing the creature that caused him pain.", "text_for_embedding": "The Life Aquatic with Steve Zissou (2004). Genres: Adventure, Comedy, Drama. Wes Anderson’s incisive quirky comedy build up stars complex characters like in ‘The Royal Tenenbaums’ with Bill Murray on in the leading role. An ocean adventure documentary film maker Zissou is put in all imaginable life situations and a tough life crisis as he attempts to make a new film about capturing the creature that caused him pain.. Tags: ocean, film making, loss of mother, cynic, red cap, ship"} +{"id": "316152", "title": "Free State of Jones", "year": 2016, "duration_min": 139, "rating": 6.6, "genres": "War, Action, Drama, History, Thriller", "genres_pipe": "|War|Action|Drama|History|Thriller|", "keywords": "slavery, american civil war", "tags_pipe": "|slavery|american civil war|", "overview": "In 1863, Mississippi farmer Newt Knight serves as a medic for the Confederate Army. Opposed to slavery, Knight would rather help the wounded than fight the Union. After his nephew dies in battle, Newt returns home to Jones County to safeguard his family but is soon branded an outlaw deserter. Forced to flee, he finds refuge with a group of runaway slaves hiding out in the swamps. Forging an alliance with the slaves and other farmers, Knight leads a rebellion that would forever change history.", "text_for_embedding": "Free State of Jones (2016). Genres: War, Action, Drama, History, Thriller. In 1863, Mississippi farmer Newt Knight serves as a medic for the Confederate Army. Opposed to slavery, Knight would rather help the wounded than fight the Union. After his nephew dies in battle, Newt returns home to Jones County to safeguard his family but is soon branded an outlaw deserter. Forced to flee, he finds refuge with a group of runaway slaves hiding out in the swamps. Forging an alliance with the slaves and other farmers, Knight leads a rebellion that would forever change history.. Tags: slavery, american civil war"} +{"id": "11615", "title": "The Life of David Gale", "year": 2003, "duration_min": 130, "rating": 7.3, "genres": "Drama, Thriller, Crime", "genres_pipe": "|Drama|Thriller|Crime|", "keywords": "prison, journalist, texas, professor, death penalty, death row, interview, murder, reporter, intern, innocent, activist", "tags_pipe": "|prison|journalist|texas|professor|death penalty|death row|interview|murder|reporter|intern|innocent|activist|", "overview": "A man against capital punishment is accused of murdering a fellow activist and is sent to death row.", "text_for_embedding": "The Life of David Gale (2003). Genres: Drama, Thriller, Crime. A man against capital punishment is accused of murdering a fellow activist and is sent to death row.. Tags: prison, journalist, texas, professor, death penalty, death row, interview, murder, reporter, intern, innocent, activist"} +{"id": "13498", "title": "Man of the House", "year": 2005, "duration_min": 100, "rating": 5.4, "genres": "Comedy, Action", "genres_pipe": "|Comedy|Action|", "keywords": "", "tags_pipe": "", "overview": "Texas Ranger Roland Sharp is assigned to protect the only witnesses to the murder of a key figure in the prosecution of a drug kingpin -- a group of University of Texas cheerleaders. Sharp must now go undercover as an assistant cheerleading coach and move in with the young women.", "text_for_embedding": "Man of the House (2005). Genres: Comedy, Action. Texas Ranger Roland Sharp is assigned to protect the only witnesses to the murder of a key figure in the prosecution of a drug kingpin -- a group of University of Texas cheerleaders. Sharp must now go undercover as an assistant cheerleading coach and move in with the young women.. Tags: "} +{"id": "241554", "title": "Run All Night", "year": 2015, "duration_min": 114, "rating": 6.3, "genres": "Action, Crime, Drama, Mystery, Thriller", "genres_pipe": "|Action|Crime|Drama|Mystery|Thriller|", "keywords": "hitman, revenge, murder, on the run, mobster", "tags_pipe": "|hitman|revenge|murder|on the run|mobster|", "overview": "Brooklyn mobster and prolific hit man Jimmy Conlon has seen better days. Longtime best friend of a mob boss, Jimmy is haunted by the sins of his past—as well as a dogged police detective who’s been one step behind Jimmy for 30 years. But when Jimmy’s estranged son becomes a target, Jimmy must make a choice between the crime family he chose and the real family he abandoned long ago. Now, with nowhere safe to turn, Jimmy has just one night to figure out exactly where his loyalties lie and to see if he can finally make things right.", "text_for_embedding": "Run All Night (2015). Genres: Action, Crime, Drama, Mystery, Thriller. Brooklyn mobster and prolific hit man Jimmy Conlon has seen better days. Longtime best friend of a mob boss, Jimmy is haunted by the sins of his past—as well as a dogged police detective who’s been one step behind Jimmy for 30 years. But when Jimmy’s estranged son becomes a target, Jimmy must make a choice between the crime family he chose and the real family he abandoned long ago. Now, with nowhere safe to turn, Jimmy has just one night to figure out exactly where his loyalties lie and to see if he can finally make things right.. Tags: hitman, revenge, murder, on the run, mobster"} +{"id": "2252", "title": "Eastern Promises", "year": 2007, "duration_min": 100, "rating": 7.2, "genres": "Thriller, Crime, Mystery", "genres_pipe": "|Thriller|Crime|Mystery|", "keywords": "london england, gay, male nudity, female nudity, father son relationship, sex, jealousy, underworld, undercover, hitman, russian, diary, human trafficking, midwife, murder", "tags_pipe": "|london england|gay|male nudity|female nudity|father son relationship|sex|jealousy|underworld|undercover|hitman|russian|diary|human trafficking|midwife|murder|", "overview": "A Russian teenager living in London who dies during childbirth leaves clues to a midwife in her journal that could tie her child to a rape involving a violent Russian mob family.", "text_for_embedding": "Eastern Promises (2007). Genres: Thriller, Crime, Mystery. A Russian teenager living in London who dies during childbirth leaves clues to a midwife in her journal that could tie her child to a rape involving a violent Russian mob family.. Tags: london england, gay, male nudity, female nudity, father son relationship, sex, jealousy, underworld, undercover, hitman, russian, diary, human trafficking, midwife, murder"} +{"id": "11968", "title": "Into the Blue", "year": 2005, "duration_min": 110, "rating": 5.8, "genres": "Action, Thriller, Adventure, Crime", "genres_pipe": "|Action|Thriller|Adventure|Crime|", "keywords": "diving, cocaine, shipwreck, sailing, airplane, wrack", "tags_pipe": "|diving|cocaine|shipwreck|sailing|airplane|wrack|", "overview": "When they take some friends on an extreme sport adventure, the last thing Jared and Sam expect to see below the shark-infested waters is a legendary pirate ship rumored to contain millions of dollars in gold. But their good fortune is short-lived, as a ruthless gang of criminals gets word of what they have uncovered.", "text_for_embedding": "Into the Blue (2005). Genres: Action, Thriller, Adventure, Crime. When they take some friends on an extreme sport adventure, the last thing Jared and Sam expect to see below the shark-infested waters is a legendary pirate ship rumored to contain millions of dollars in gold. But their good fortune is short-lived, as a ruthless gang of criminals gets word of what they have uncovered.. Tags: diving, cocaine, shipwreck, sailing, airplane, wrack"} +{"id": "10047", "title": "The Messenger: The Story of Joan of Arc", "year": 1999, "duration_min": 148, "rating": 6.2, "genres": "Adventure, Drama, Action, History, War", "genres_pipe": "|Adventure|Drama|Action|History|War|", "keywords": "schizophrenia, france, rape, siege, biography, orléans, charles vii., false history, joan of arc, religious delusions", "tags_pipe": "|schizophrenia|france|rape|siege|biography|orléans|charles vii.|false history|joan of arc|religious delusions|", "overview": "In 1429 a teenage girl from a remote French village stood before her King with a message she claimed came from God; that she would defeat the world's greatest army and liberate her country from its political and religious turmoil. Following her mission to reclaim god's dimished kingdom - through her amazing victories until her violent and untimely death.", "text_for_embedding": "The Messenger: The Story of Joan of Arc (1999). Genres: Adventure, Drama, Action, History, War. In 1429 a teenage girl from a remote French village stood before her King with a message she claimed came from God; that she would defeat the world's greatest army and liberate her country from its political and religious turmoil. Following her mission to reclaim god's dimished kingdom - through her amazing victories until her violent and untimely death.. Tags: schizophrenia, france, rape, siege, biography, orléans, charles vii., false history, joan of arc, religious delusions"} +{"id": "38319", "title": "Your Highness", "year": 2011, "duration_min": 102, "rating": 5.2, "genres": "Comedy", "genres_pipe": "|Comedy|", "keywords": "kidnapping, traitor, virgin, prince, princess, revenge, minotaur, knight, dragon, wedding, king, sword and sorcery", "tags_pipe": "|kidnapping|traitor|virgin|prince|princess|revenge|minotaur|knight|dragon|wedding|king|sword and sorcery|", "overview": "A fantasy movie about an arrogant, lazy prince and his more heroic brother who must complete a quest in order to save their father's kingdom.", "text_for_embedding": "Your Highness (2011). Genres: Comedy. A fantasy movie about an arrogant, lazy prince and his more heroic brother who must complete a quest in order to save their father's kingdom.. Tags: kidnapping, traitor, virgin, prince, princess, revenge, minotaur, knight, dragon, wedding, king, sword and sorcery"} +{"id": "69668", "title": "Dream House", "year": 2011, "duration_min": 84, "rating": 5.8, "genres": "Drama, Thriller, Mystery", "genres_pipe": "|Drama|Thriller|Mystery|", "keywords": "house fire, extension ladder, last day on job", "tags_pipe": "|house fire|extension ladder|last day on job|", "overview": "Publisher, Will Atenton quits a lucrative job in New York to relocate his wife, Libby and their daughters to a quaint town in New England. However, as they settle into their home the Atentons discover that a woman and her children were murdered there, and the surviving husband is the town's prime suspect. With help from a neighbor who was close to the murdered family, Will pieces together a horrifying chain of events.", "text_for_embedding": "Dream House (2011). Genres: Drama, Thriller, Mystery. Publisher, Will Atenton quits a lucrative job in New York to relocate his wife, Libby and their daughters to a quaint town in New England. However, as they settle into their home the Atentons discover that a woman and her children were murdered there, and the surviving husband is the town's prime suspect. With help from a neighbor who was close to the murdered family, Will pieces together a horrifying chain of events.. Tags: house fire, extension ladder, last day on job"} +{"id": "9770", "title": "Mad City", "year": 1997, "duration_min": 114, "rating": 5.9, "genres": "Action, Drama, Thriller", "genres_pipe": "|Action|Drama|Thriller|", "keywords": "journalist, museum, hostage drama, independent film", "tags_pipe": "|journalist|museum|hostage drama|independent film|", "overview": "A misguided museum guard who loses his job and then tries to get it back at gunpoint is thrown into the fierce world of ratings-driven TV gone mad.", "text_for_embedding": "Mad City (1997). Genres: Action, Drama, Thriller. A misguided museum guard who loses his job and then tries to get it back at gunpoint is thrown into the fierce world of ratings-driven TV gone mad.. Tags: journalist, museum, hostage drama, independent film"} +{"id": "11212", "title": "Baby's Day Out", "year": 1994, "duration_min": 99, "rating": 5.8, "genres": "Action, Adventure, Comedy, Family", "genres_pipe": "|Action|Adventure|Comedy|Family|", "keywords": "baby, hoodlum, lost child", "tags_pipe": "|baby|hoodlum|lost child|", "overview": "Baby Bink couldn't ask for more; he has adoring (if somewhat sickly-sweet) parents, he lives in a huge mansion, and he's just about to appear in the social pages of the paper. Unfortunately, not everyone in the world is as nice as Baby Bink's parents; especially the three enterprising kidnapers who pretend to be photographers from the newspaper. Successfully kidnaping Baby Bink, they have a harder time keeping hold of the rascal, who not only keeps one step ahead of them, but seems to be more than a little bit smarter than the three bumbling criminals.", "text_for_embedding": "Baby's Day Out (1994). Genres: Action, Adventure, Comedy, Family. Baby Bink couldn't ask for more; he has adoring (if somewhat sickly-sweet) parents, he lives in a huge mansion, and he's just about to appear in the social pages of the paper. Unfortunately, not everyone in the world is as nice as Baby Bink's parents; especially the three enterprising kidnapers who pretend to be photographers from the newspaper. Successfully kidnaping Baby Bink, they have a harder time keeping hold of the rascal, who not only keeps one step ahead of them, but seems to be more than a little bit smarter than the three bumbling criminals.. Tags: baby, hoodlum, lost child"} +{"id": "10533", "title": "The Scarlet Letter", "year": 1995, "duration_min": 135, "rating": 5.5, "genres": "Drama, History, Romance", "genres_pipe": "|Drama|History|Romance|", "keywords": "based on novel, burning of witches, puritan, pregnancy, period drama, extramarital affair", "tags_pipe": "|based on novel|burning of witches|puritan|pregnancy|period drama|extramarital affair|", "overview": "Set in puritanical Boston in the mid 1600s, the story of seamstress Hester Prynne, who is outcast after she becomes pregnant by a respected reverend. She refuses to divulge the name of the father, is \"convicted\" of adultery and forced to wear a scarlet \"A\" until an Indian attack unites the Puritans and leads to a reevaluation of their laws and morals.", "text_for_embedding": "The Scarlet Letter (1995). Genres: Drama, History, Romance. Set in puritanical Boston in the mid 1600s, the story of seamstress Hester Prynne, who is outcast after she becomes pregnant by a respected reverend. She refuses to divulge the name of the father, is \"convicted\" of adultery and forced to wear a scarlet \"A\" until an Indian attack unites the Puritans and leads to a reevaluation of their laws and morals.. Tags: based on novel, burning of witches, puritan, pregnancy, period drama, extramarital affair"} +{"id": "38363", "title": "Fair Game", "year": 2010, "duration_min": 108, "rating": 6.5, "genres": "Drama, Thriller", "genres_pipe": "|Drama|Thriller|", "keywords": "cia, nuclear scientist, iraq, politician, duringcreditsstinger", "tags_pipe": "|cia|nuclear scientist|iraq|politician|duringcreditsstinger|", "overview": "Wife and mother Valerie Plame (Naomi Watts) has a double life as a CIA operative, hiding her vocation from family and friends. Her husband, Joseph Wilson (Sean Penn), writes a controversial article in The New York Times, refuting stories about the sale of enriched uranium to Iraq, Then Valerie's secret work and identity is leaked to the press. With her cover blown and other people endangered, Valerie's career and personal life begin to unravel.", "text_for_embedding": "Fair Game (2010). Genres: Drama, Thriller. Wife and mother Valerie Plame (Naomi Watts) has a double life as a CIA operative, hiding her vocation from family and friends. Her husband, Joseph Wilson (Sean Penn), writes a controversial article in The New York Times, refuting stories about the sale of enriched uranium to Iraq, Then Valerie's secret work and identity is leaked to the press. With her cover blown and other people endangered, Valerie's career and personal life begin to unravel.. Tags: cia, nuclear scientist, iraq, politician, duringcreditsstinger"} +{"id": "9923", "title": "Domino", "year": 2005, "duration_min": 127, "rating": 6.0, "genres": "Action, Crime", "genres_pipe": "|Action|Crime|", "keywords": "bounty hunter, fbi, weapon, spectacle", "tags_pipe": "|bounty hunter|fbi|weapon|spectacle|", "overview": "The daughter of actor, Laurence Harvey turns away from her career as a Ford model to become a bounty hunter.", "text_for_embedding": "Domino (2005). Genres: Action, Crime. The daughter of actor, Laurence Harvey turns away from her career as a Ford model to become a bounty hunter.. Tags: bounty hunter, fbi, weapon, spectacle"} +{"id": "11863", "title": "Jade", "year": 1995, "duration_min": 95, "rating": 5.2, "genres": "Action, Thriller, Mystery, Romance", "genres_pipe": "|Action|Thriller|Mystery|Romance|", "keywords": "callgirl, san francisco, investigation, murder", "tags_pipe": "|callgirl|san francisco|investigation|murder|", "overview": "Someone does a nasty hatchet job on a San Fransisco big noise and the Assistant D.A. takes charge of the investigation. Through a web of blackmail and prostitution involving the Governor, an old lover of the law man emerges as a prime suspect and he has to deal with his personal feelings as well as the case.", "text_for_embedding": "Jade (1995). Genres: Action, Thriller, Mystery, Romance. Someone does a nasty hatchet job on a San Fransisco big noise and the Assistant D.A. takes charge of the investigation. Through a web of blackmail and prostitution involving the Governor, an old lover of the law man emerges as a prime suspect and he has to deal with his personal feelings as well as the case.. Tags: callgirl, san francisco, investigation, murder"} +{"id": "18501", "title": "Gamer", "year": 2009, "duration_min": 95, "rating": 5.6, "genres": "Action, Thriller, Science Fiction", "genres_pipe": "|Action|Thriller|Science Fiction|", "keywords": "dystopia, mind control, gun battle, wrongful imprisonment, dystopic future, wrongful conviction, online gaming", "tags_pipe": "|dystopia|mind control|gun battle|wrongful imprisonment|dystopic future|wrongful conviction|online gaming|", "overview": "Mind-control technology has taken society by a storm, a multiplayer on-line game called \"Slayers\" allows players to control human prisoners in mass-scale. Simon (Lerman) controls Kable (Butler), the online champion of the game. Kable's ultimate challenge becomes regaining his identity and independence by defeating the game's mastermind (Hall).", "text_for_embedding": "Gamer (2009). Genres: Action, Thriller, Science Fiction. Mind-control technology has taken society by a storm, a multiplayer on-line game called \"Slayers\" allows players to control human prisoners in mass-scale. Simon (Lerman) controls Kable (Butler), the online champion of the game. Kable's ultimate challenge becomes regaining his identity and independence by defeating the game's mastermind (Hall).. Tags: dystopia, mind control, gun battle, wrongful imprisonment, dystopic future, wrongful conviction, online gaming"} +{"id": "109491", "title": "Beautiful Creatures", "year": 2013, "duration_min": 124, "rating": 5.6, "genres": "Fantasy, Drama, Romance", "genres_pipe": "|Fantasy|Drama|Romance|", "keywords": "civil war, southern usa, magic, light, dark, class prejudice, casters, based on young adult novel", "tags_pipe": "|civil war|southern usa|magic|light|dark|class prejudice|casters|based on young adult novel|", "overview": "Ethan Wate just wants to get to know Lena Duchannes better, but unbeknownst to him, Lena has strange powers. As Lena's 16th birthday approaches she might decide her fate, to be good or evil. A choice which will impact her relationship forever.", "text_for_embedding": "Beautiful Creatures (2013). Genres: Fantasy, Drama, Romance. Ethan Wate just wants to get to know Lena Duchannes better, but unbeknownst to him, Lena has strange powers. As Lena's 16th birthday approaches she might decide her fate, to be good or evil. A choice which will impact her relationship forever.. Tags: civil war, southern usa, magic, light, dark, class prejudice, casters, based on young adult novel"} +{"id": "9275", "title": "Death to Smoochy", "year": 2002, "duration_min": 109, "rating": 5.9, "genres": "Comedy, Crime, Drama, Thriller", "genres_pipe": "|Comedy|Crime|Drama|Thriller|", "keywords": "corruption, moderator, tv show, success, irish mob, duringcreditsstinger", "tags_pipe": "|corruption|moderator|tv show|success|irish mob|duringcreditsstinger|", "overview": "Tells the story of Rainbow Randolph, the corrupt, costumed star of a popular children's TV show, who is fired over a bribery scandal and replaced by squeaky-clean Smoochy, a puffy fuscia rhinoceros. As Smoochy catapults to fame - scoring hit ratings and the affections of a network executive - Randolph makes the unsuspecting rhino the target of his numerous outrageous attempts to exact revenge and reclaim his status as America's sweetheart.", "text_for_embedding": "Death to Smoochy (2002). Genres: Comedy, Crime, Drama, Thriller. Tells the story of Rainbow Randolph, the corrupt, costumed star of a popular children's TV show, who is fired over a bribery scandal and replaced by squeaky-clean Smoochy, a puffy fuscia rhinoceros. As Smoochy catapults to fame - scoring hit ratings and the affections of a network executive - Randolph makes the unsuspecting rhino the target of his numerous outrageous attempts to exact revenge and reclaim his status as America's sweetheart.. Tags: corruption, moderator, tv show, success, irish mob, duringcreditsstinger"} +{"id": "329833", "title": "Zoolander 2", "year": 2016, "duration_min": 100, "rating": 4.7, "genres": "Comedy", "genres_pipe": "|Comedy|", "keywords": "stupidity, sequel, fashion, male model, fashion model, modeling", "tags_pipe": "|stupidity|sequel|fashion|male model|fashion model|modeling|", "overview": "Derek and Hansel are modelling again when an opposing company attempts to take them out from the business.", "text_for_embedding": "Zoolander 2 (2016). Genres: Comedy. Derek and Hansel are modelling again when an opposing company attempts to take them out from the business.. Tags: stupidity, sequel, fashion, male model, fashion model, modeling"} +{"id": "12634", "title": "The Big Bounce", "year": 2004, "duration_min": 88, "rating": 5.0, "genres": "Comedy, Crime", "genres_pipe": "|Comedy|Crime|", "keywords": "hotel, robbery, based on novel, judge, hawaii, blackmail, seduction, yacht, waterfall, delinquency, safe, stolen money, deception, skinny dipping, cell phone", "tags_pipe": "|hotel|robbery|based on novel|judge|hawaii|blackmail|seduction|yacht|waterfall|delinquency|safe|stolen money|deception|skinny dipping|cell phone|", "overview": "A small-time con artist and a Hawaiian real estate developer's mischievous, enterprising mistress team up for a potential $200,000 score.", "text_for_embedding": "The Big Bounce (2004). Genres: Comedy, Crime. A small-time con artist and a Hawaiian real estate developer's mischievous, enterprising mistress team up for a potential $200,000 score.. Tags: hotel, robbery, based on novel, judge, hawaii, blackmail, seduction, yacht, waterfall, delinquency, safe, stolen money, deception, skinny dipping, cell phone"} +{"id": "10416", "title": "What Planet Are You From?", "year": 2000, "duration_min": 105, "rating": 5.4, "genres": "Comedy, Drama, Romance, Science Fiction", "genres_pipe": "|Comedy|Drama|Romance|Science Fiction|", "keywords": "noises, alien life-form, erection, neue frau, alien, reproduction", "tags_pipe": "|noises|alien life-form|erection|neue frau|alien|reproduction|", "overview": "A highly-evolved planet, whose denizens feel no emotion and reproduce by cloning, plans to take over Earth from the inside by sending an operative, fashioned with a humming, mechanical penis, to impregnate an earthling and stay until the birth. The alien, Harold Anderson, goes to Phoenix as a banker and sets to work finding a mate. His approaches to women are inept, and the humming phallus doesn't help, but on the advice of a banking colleague, he cruises an AA meeting, meets Susan, and somehow convinces her to marry. The clock starts to tick: will she conceive, have a baby, and lose Harold (and the child) to his planet before he discovers emotion and starts to care?", "text_for_embedding": "What Planet Are You From? (2000). Genres: Comedy, Drama, Romance, Science Fiction. A highly-evolved planet, whose denizens feel no emotion and reproduce by cloning, plans to take over Earth from the inside by sending an operative, fashioned with a humming, mechanical penis, to impregnate an earthling and stay until the birth. The alien, Harold Anderson, goes to Phoenix as a banker and sets to work finding a mate. His approaches to women are inept, and the humming phallus doesn't help, but on the advice of a banking colleague, he cruises an AA meeting, meets Susan, and somehow convinces her to marry. The clock starts to tick: will she conceive, have a baby, and lose Harold (and the child) to his planet before he discovers emotion and starts to care?. Tags: noises, alien life-form, erection, neue frau, alien, reproduction"} +{"id": "47327", "title": "Drive Angry", "year": 2011, "duration_min": 105, "rating": 5.3, "genres": "Fantasy, Thriller, Action, Crime", "genres_pipe": "|Fantasy|Thriller|Action|Crime|", "keywords": "bone, car explosion, premarital sex, satanic cult, driver's license, finger gun, backhand slap, car jump, man punching a woman, magic trick", "tags_pipe": "|bone|car explosion|premarital sex|satanic cult|driver's license|finger gun|backhand slap|car jump|man punching a woman|magic trick|", "overview": "Milton is a hardened felon who has broken out of Hell, intent on finding the vicious cult who brutally murdered his daughter and kidnapped her baby. He joins forces with Piper, a sexy, tough-as-nails waitress with a 69 Charger, who's also seeking redemption of her own. Caught in a deadly race against time, Milton has three days to avoid capture, avenge his daughter's death, and save her baby before she's mercilessly sacrificed by the cult.", "text_for_embedding": "Drive Angry (2011). Genres: Fantasy, Thriller, Action, Crime. Milton is a hardened felon who has broken out of Hell, intent on finding the vicious cult who brutally murdered his daughter and kidnapped her baby. He joins forces with Piper, a sexy, tough-as-nails waitress with a 69 Charger, who's also seeking redemption of her own. Caught in a deadly race against time, Milton has three days to avoid capture, avenge his daughter's death, and save her baby before she's mercilessly sacrificed by the cult.. Tags: bone, car explosion, premarital sex, satanic cult, driver's license, finger gun, backhand slap, car jump, man punching a woman, magic trick"} +{"id": "15268", "title": "Street Fighter: The Legend of Chun-Li", "year": 2009, "duration_min": 97, "rating": 3.9, "genres": "Action, Adventure, Science Fiction, Thriller", "genres_pipe": "|Action|Adventure|Science Fiction|Thriller|", "keywords": "martial arts, revenge, street fighter, based on video game", "tags_pipe": "|martial arts|revenge|street fighter|based on video game|", "overview": "When a teenager, Chun-Li witnesses the kidnapping of her father by wealthy crime lord M. Bison. When she grows up, she goes into a quest for vengeance and becomes the famous crime-fighter of the Street Fighter universe.", "text_for_embedding": "Street Fighter: The Legend of Chun-Li (2009). Genres: Action, Adventure, Science Fiction, Thriller. When a teenager, Chun-Li witnesses the kidnapping of her father by wealthy crime lord M. Bison. When she grows up, she goes into a quest for vengeance and becomes the famous crime-fighter of the Street Fighter universe.. Tags: martial arts, revenge, street fighter, based on video game"} +{"id": "10796", "title": "The One", "year": 2001, "duration_min": 87, "rating": 5.7, "genres": "Action, Science Fiction, Thriller", "genres_pipe": "|Action|Science Fiction|Thriller|", "keywords": "dual identity", "tags_pipe": "|dual identity|", "overview": "A sheriff's deputy fights an alternate universe version of himself who grows stronger with each alternate self he kills.", "text_for_embedding": "The One (2001). Genres: Action, Science Fiction, Thriller. A sheriff's deputy fights an alternate universe version of himself who grows stronger with each alternate self he kills.. Tags: dual identity"} +{"id": "9548", "title": "The Adventures of Ford Fairlane", "year": 1990, "duration_min": 104, "rating": 6.2, "genres": "Action, Comedy, Thriller, Crime, Mystery", "genres_pipe": "|Action|Comedy|Thriller|Crime|Mystery|", "keywords": "rock and roll, show business, rock star, heavy metal, murder, private detective", "tags_pipe": "|rock and roll|show business|rock star|heavy metal|murder|private detective|", "overview": "Ford \"Mr. Rock n' Roll Detective\" Fairlane is experiencing problems, and it's not with the opposite sex. One of them is that all the rock stars pay him with drum sticks, koala bears, food processors and bicycle shorts. Another one of them is that all his employers that want him to find a girl named Zuzu Petals get killed. Why didn't he become a fisherman's detective instead?", "text_for_embedding": "The Adventures of Ford Fairlane (1990). Genres: Action, Comedy, Thriller, Crime, Mystery. Ford \"Mr. Rock n' Roll Detective\" Fairlane is experiencing problems, and it's not with the opposite sex. One of them is that all the rock stars pay him with drum sticks, koala bears, food processors and bicycle shorts. Another one of them is that all his employers that want him to find a girl named Zuzu Petals get killed. Why didn't he become a fisherman's detective instead?. Tags: rock and roll, show business, rock star, heavy metal, murder, private detective"} +{"id": "18947", "title": "The Boat That Rocked", "year": 2009, "duration_min": 116, "rating": 7.2, "genres": "Drama, Comedy", "genres_pipe": "|Drama|Comedy|", "keywords": "great britain, musical, rock, pirate radio, swinging 60s", "tags_pipe": "|great britain|musical|rock|pirate radio|swinging 60s|", "overview": "The Boat that Rocked is an ensemble comedy, where the romance is between the young people of the 60s, and pop music. It's about a band of DJs that captivate Britain, playing the music that defines a generation and standing up to a government that wanted control of popular culture via the British Broadcasting Corporation. Loosely based on the events in Britain in the 60's when the Labour government of Harold Wilson, wanted to bring the pirate stations under control, enough to see the passage of the Marine Broadcasting Offences Act on 15 August 1967", "text_for_embedding": "The Boat That Rocked (2009). Genres: Drama, Comedy. The Boat that Rocked is an ensemble comedy, where the romance is between the young people of the 60s, and pop music. It's about a band of DJs that captivate Britain, playing the music that defines a generation and standing up to a government that wanted control of popular culture via the British Broadcasting Corporation. Loosely based on the events in Britain in the 60's when the Labour government of Harold Wilson, wanted to bring the pirate stations under control, enough to see the passage of the Marine Broadcasting Offences Act on 15 August 1967. Tags: great britain, musical, rock, pirate radio, swinging 60s"} +{"id": "1900", "title": "Traffic", "year": 2000, "duration_min": 147, "rating": 6.9, "genres": "Thriller, Drama, Crime", "genres_pipe": "|Thriller|Drama|Crime|", "keywords": "usa, war on drugs, drug traffic, drug dealer, drug smuggle, addicted, police operation, united states–mexico barrier, addiction, drug lord", "tags_pipe": "|usa|war on drugs|drug traffic|drug dealer|drug smuggle|addicted|police operation|united states–mexico barrier|addiction|drug lord|", "overview": "An exploration of the United States of America's war on drugs from multiple perspectives. For the new head of the Office of National Drug Control Policy, the war becomes personal when he discovers his well-educated daughter is abusing cocaine within their comfortable suburban home. In Mexico, a flawed, but noble policeman agrees to testify against a powerful general in league with a cartel, and in San Diego, a drug kingpin's sheltered trophy wife must learn her husband's ruthless business after he is arrested, endangering her luxurious lifestyle.", "text_for_embedding": "Traffic (2000). Genres: Thriller, Drama, Crime. An exploration of the United States of America's war on drugs from multiple perspectives. For the new head of the Office of National Drug Control Policy, the war becomes personal when he discovers his well-educated daughter is abusing cocaine within their comfortable suburban home. In Mexico, a flawed, but noble policeman agrees to testify against a powerful general in league with a cartel, and in San Diego, a drug kingpin's sheltered trophy wife must learn her husband's ruthless business after he is arrested, endangering her luxurious lifestyle.. Tags: usa, war on drugs, drug traffic, drug dealer, drug smuggle, addicted, police operation, united states–mexico barrier, addiction, drug lord"} +{"id": "89", "title": "Indiana Jones and the Last Crusade", "year": 1989, "duration_min": 127, "rating": 7.6, "genres": "Adventure, Action", "genres_pipe": "|Adventure|Action|", "keywords": "saving the world, venice, holy grail, library, riddle, father son relationship, whip, treasure, nazis, entrapment, crusader, treasure hunt, escape, panzer, order of the templars", "tags_pipe": "|saving the world|venice|holy grail|library|riddle|father son relationship|whip|treasure|nazis|entrapment|crusader|treasure hunt|escape|panzer|order of the templars|", "overview": "When Dr. Henry Jones Sr. suddenly goes missing while pursuing the Holy Grail, eminent archaeologist Indiana must team up with Marcus Brody, Sallah and Elsa Schneider to follow in his father's footsteps and stop the Nazis from recovering the power of eternal life.", "text_for_embedding": "Indiana Jones and the Last Crusade (1989). Genres: Adventure, Action. When Dr. Henry Jones Sr. suddenly goes missing while pursuing the Holy Grail, eminent archaeologist Indiana must team up with Marcus Brody, Sallah and Elsa Schneider to follow in his father's footsteps and stop the Nazis from recovering the power of eternal life.. Tags: saving the world, venice, holy grail, library, riddle, father son relationship, whip, treasure, nazis, entrapment, crusader, treasure hunt, escape, panzer, order of the templars"} +{"id": "96724", "title": "Anna Karenina", "year": 2012, "duration_min": 130, "rating": 6.5, "genres": "Drama, Romance", "genres_pipe": "|Drama|Romance|", "keywords": "based on novel, st. petersburg russia, high society, imperial russia, tragic death, 19th century", "tags_pipe": "|based on novel|st. petersburg russia|high society|imperial russia|tragic death|19th century|", "overview": "Trapped in a loveless marriage, aristocrat Anna Karenina enters into a life-changing affair with the affluent Count Vronsky.", "text_for_embedding": "Anna Karenina (2012). Genres: Drama, Romance. Trapped in a loveless marriage, aristocrat Anna Karenina enters into a life-changing affair with the affluent Count Vronsky.. Tags: based on novel, st. petersburg russia, high society, imperial russia, tragic death, 19th century"} +{"id": "198184", "title": "Chappie", "year": 2015, "duration_min": 120, "rating": 6.6, "genres": "Crime, Action, Science Fiction", "genres_pipe": "|Crime|Action|Science Fiction|", "keywords": "artificial intelligence, android, robot, near future, robot cop", "tags_pipe": "|artificial intelligence|android|robot|near future|robot cop|", "overview": "Every child comes into the world full of promise, and none more so than Chappie: he is gifted, special, a prodigy. Like any child, Chappie will come under the influence of his surroundings—some good, some bad—and he will rely on his heart and soul to find his way in the world and become his own man. But there's one thing that makes Chappie different from any one else: he is a robot.", "text_for_embedding": "Chappie (2015). Genres: Crime, Action, Science Fiction. Every child comes into the world full of promise, and none more so than Chappie: he is gifted, special, a prodigy. Like any child, Chappie will come under the influence of his surroundings—some good, some bad—and he will rely on his heart and soul to find his way in the world and become his own man. But there's one thing that makes Chappie different from any one else: he is a robot.. Tags: artificial intelligence, android, robot, near future, robot cop"} +{"id": "9481", "title": "The Bone Collector", "year": 1999, "duration_min": 118, "rating": 6.5, "genres": "Drama, Mystery, Thriller, Crime", "genres_pipe": "|Drama|Mystery|Thriller|Crime|", "keywords": "paraplegic, investigation, psychopath", "tags_pipe": "|paraplegic|investigation|psychopath|", "overview": "Rookie cop, Amelia Donaghy reluctantly teams with Lincoln Rhyme – formerly the department's top homicide detective but now paralyzed as a result of a spinal injury – to catch a grisly serial killer dubbed 'The Bone Collector'. The murderer's special signature is to leave tantalizing clues based on the grim remains of his crimes.", "text_for_embedding": "The Bone Collector (1999). Genres: Drama, Mystery, Thriller, Crime. Rookie cop, Amelia Donaghy reluctantly teams with Lincoln Rhyme – formerly the department's top homicide detective but now paralyzed as a result of a spinal injury – to catch a grisly serial killer dubbed 'The Bone Collector'. The murderer's special signature is to leave tantalizing clues based on the grim remains of his crimes.. Tags: paraplegic, investigation, psychopath"} +{"id": "4547", "title": "Panic Room", "year": 2002, "duration_min": 111, "rating": 6.5, "genres": "Crime, Drama, Thriller", "genres_pipe": "|Crime|Drama|Thriller|", "keywords": "burglar, bunker, housebreaking, safe, money", "tags_pipe": "|burglar|bunker|housebreaking|safe|money|", "overview": "Trapped in their New York brownstone's panic room, a hidden chamber built as a sanctuary in the event of break-ins, newly divorced Meg Altman and her young daughter Sarah play a deadly game of cat-and-mouse with three intruders - Burnham, Raoul and Junior - during a brutal home invasion. But the room itself is the focal point because what the intruders really want is inside it.", "text_for_embedding": "Panic Room (2002). Genres: Crime, Drama, Thriller. Trapped in their New York brownstone's panic room, a hidden chamber built as a sanctuary in the event of break-ins, newly divorced Meg Altman and her young daughter Sarah play a deadly game of cat-and-mouse with three intruders - Burnham, Raoul and Junior - during a brutal home invasion. But the room itself is the focal point because what the intruders really want is inside it.. Tags: burglar, bunker, housebreaking, safe, money"} +{"id": "6415", "title": "Three Kings", "year": 1999, "duration_min": 114, "rating": 6.6, "genres": "Action, Adventure, Comedy", "genres_pipe": "|Action|Adventure|Comedy|", "keywords": "gold, gulf war, three kings, iraq, kuwait, rescue, interracial relationship, treasure map, soldier, u.s. soldier, gold theft, persian gulf, emergency surgery, mine field", "tags_pipe": "|gold|gulf war|three kings|iraq|kuwait|rescue|interracial relationship|treasure map|soldier|u.s. soldier|gold theft|persian gulf|emergency surgery|mine field|", "overview": "A group of American soldiers stationed in Iraq at the end of the Gulf War find a map they believe will take them to a huge cache of stolen Kuwaiti gold hidden near their base, and they embark on a secret mission that's destined to change everything.", "text_for_embedding": "Three Kings (1999). Genres: Action, Adventure, Comedy. A group of American soldiers stationed in Iraq at the end of the Gulf War find a map they believe will take them to a huge cache of stolen Kuwaiti gold hidden near their base, and they embark on a secret mission that's destined to change everything.. Tags: gold, gulf war, three kings, iraq, kuwait, rescue, interracial relationship, treasure map, soldier, u.s. soldier, gold theft, persian gulf, emergency surgery, mine field"} +{"id": "181283", "title": "Child 44", "year": 2015, "duration_min": 137, "rating": 6.1, "genres": "Crime, Thriller", "genres_pipe": "|Crime|Thriller|", "keywords": "based on novel, soviet union, russian, murder, serial killer, military, child murder, stalinism, 1950s", "tags_pipe": "|based on novel|soviet union|russian|murder|serial killer|military|child murder|stalinism|1950s|", "overview": "Set in Stalin-era Soviet Union, a disgraced MGB agent is dispatched to investigate a series of child murders -- a case that begins to connect with the very top of party leadership.", "text_for_embedding": "Child 44 (2015). Genres: Crime, Thriller. Set in Stalin-era Soviet Union, a disgraced MGB agent is dispatched to investigate a series of child murders -- a case that begins to connect with the very top of party leadership.. Tags: based on novel, soviet union, russian, murder, serial killer, military, child murder, stalinism, 1950s"} +{"id": "9896", "title": "Rat Race", "year": 2001, "duration_min": 112, "rating": 6.0, "genres": "Adventure, Comedy", "genres_pipe": "|Adventure|Comedy|", "keywords": "casino, running, preisgeld, millionaire, road movie", "tags_pipe": "|casino|running|preisgeld|millionaire|road movie|", "overview": "In an ensemble film about easy money, greed, manipulation and bad driving, a Las Vegas casino tycoon entertains his wealthiest high rollers -- a group that will bet on anything -- by pitting six ordinary people against each other in a wild dash for $2 million jammed into a locker hundreds of miles away. The tycoon and his wealthy friends monitor each racer's every move to keep track of their favorites. The only rule in this race is that there are no rules.", "text_for_embedding": "Rat Race (2001). Genres: Adventure, Comedy. In an ensemble film about easy money, greed, manipulation and bad driving, a Las Vegas casino tycoon entertains his wealthiest high rollers -- a group that will bet on anything -- by pitting six ordinary people against each other in a wild dash for $2 million jammed into a locker hundreds of miles away. The tycoon and his wealthy friends monitor each racer's every move to keep track of their favorites. The only rule in this race is that there are no rules.. Tags: casino, running, preisgeld, millionaire, road movie"} +{"id": "167", "title": "K-PAX", "year": 2001, "duration_min": 120, "rating": 7.1, "genres": "Drama, Science Fiction", "genres_pipe": "|Drama|Science Fiction|", "keywords": "robbery, dream, hypnosis, investigation, murder, alien, hospital, planet, patient, medication, psychiatrist, science, claim, doubt, mental", "tags_pipe": "|robbery|dream|hypnosis|investigation|murder|alien|hospital|planet|patient|medication|psychiatrist|science|claim|doubt|mental|", "overview": "Prot is a patient at a mental hospital who claims to be from a far away Planet. His psychiatrist tries to help him, only to begin to doubt his own explanations.", "text_for_embedding": "K-PAX (2001). Genres: Drama, Science Fiction. Prot is a patient at a mental hospital who claims to be from a far away Planet. His psychiatrist tries to help him, only to begin to doubt his own explanations.. Tags: robbery, dream, hypnosis, investigation, murder, alien, hospital, planet, patient, medication, psychiatrist, science, claim, doubt, mental"} +{"id": "11232", "title": "Kate & Leopold", "year": 2001, "duration_min": 118, "rating": 6.0, "genres": "Comedy, Fantasy, Romance, Science Fiction", "genres_pipe": "|Comedy|Fantasy|Romance|Science Fiction|", "keywords": "lover (female), love of one's life, time travel, kiss, past, secret love, fish out of water", "tags_pipe": "|lover (female)|love of one's life|time travel|kiss|past|secret love|fish out of water|", "overview": "When her scientist ex-boyfriend discovers a portal to travel through time -- and brings back a 19th-century nobleman named Leopold to prove it -- a skeptical Kate reluctantly takes responsibility for showing Leopold the 21st century. The more time Kate spends with Leopold, the harder she falls for him. But if he doesn't return to his own time, his absence will forever alter history.", "text_for_embedding": "Kate & Leopold (2001). Genres: Comedy, Fantasy, Romance, Science Fiction. When her scientist ex-boyfriend discovers a portal to travel through time -- and brings back a 19th-century nobleman named Leopold to prove it -- a skeptical Kate reluctantly takes responsibility for showing Leopold the 21st century. The more time Kate spends with Leopold, the harder she falls for him. But if he doesn't return to his own time, his absence will forever alter history.. Tags: lover (female), love of one's life, time travel, kiss, past, secret love, fish out of water"} +{"id": "1636", "title": "Bedazzled", "year": 2000, "duration_min": 93, "rating": 5.6, "genres": "Fantasy, Comedy, Romance", "genres_pipe": "|Fantasy|Comedy|Romance|", "keywords": "love of one's life, mephisto, wish, sale of soul, pact with the devil, teuflisch", "tags_pipe": "|love of one's life|mephisto|wish|sale of soul|pact with the devil|teuflisch|", "overview": "Elliot Richardson, suicidal techno geek, is given seven wishes to turn his life around when he meets up with a very seductive Satan. The catch: his soul. Some of his wishes include a 7 foot basketball star, a rock star, and a hamburger. But, as could be expected, the Devil must put her own little twist on each his fantasies.", "text_for_embedding": "Bedazzled (2000). Genres: Fantasy, Comedy, Romance. Elliot Richardson, suicidal techno geek, is given seven wishes to turn his life around when he meets up with a very seductive Satan. The catch: his soul. Some of his wishes include a 7 foot basketball star, a rock star, and a hamburger. But, as could be expected, the Devil must put her own little twist on each his fantasies.. Tags: love of one's life, mephisto, wish, sale of soul, pact with the devil, teuflisch"} +{"id": "2148", "title": "The Cotton Club", "year": 1984, "duration_min": 127, "rating": 6.6, "genres": "Music, Drama, Crime, Romance", "genres_pipe": "|Music|Drama|Crime|Romance|", "keywords": "jazz, jazz musician, musical, mafia", "tags_pipe": "|jazz|jazz musician|musical|mafia|", "overview": "The story of the people that frequented Harlem's famous nightclubs, 'The Cotton Club', and those that ran it.", "text_for_embedding": "The Cotton Club (1984). Genres: Music, Drama, Crime, Romance. The story of the people that frequented Harlem's famous nightclubs, 'The Cotton Club', and those that ran it.. Tags: jazz, jazz musician, musical, mafia"} +{"id": "5176", "title": "3:10 to Yuma", "year": 2007, "duration_min": 122, "rating": 6.9, "genres": "Western", "genres_pipe": "|Western|", "keywords": "saloon, hero, liberation of prisoners, transport of prisoners, wilderness, dying and death, race against time, railway car, stetson, rivalry, gang, gunfight, crime, family, psychological", "tags_pipe": "|saloon|hero|liberation of prisoners|transport of prisoners|wilderness|dying and death|race against time|railway car|stetson|rivalry|gang|gunfight|crime|family|psychological|", "overview": "In Arizona in the late 1800's, infamous outlaw Ben Wade and his vicious gang of thieves and murderers have plagued the Southern Railroad. When Wade is captured, Civil War veteran Dan Evans, struggling to survive on his drought-plagued ranch, volunteers to deliver him alive to the \"3:10 to Yuma\", a train that will take the killer to trial.", "text_for_embedding": "3:10 to Yuma (2007). Genres: Western. In Arizona in the late 1800's, infamous outlaw Ben Wade and his vicious gang of thieves and murderers have plagued the Southern Railroad. When Wade is captured, Civil War veteran Dan Evans, struggling to survive on his drought-plagued ranch, volunteers to deliver him alive to the \"3:10 to Yuma\", a train that will take the killer to trial.. Tags: saloon, hero, liberation of prisoners, transport of prisoners, wilderness, dying and death, race against time, railway car, stetson, rivalry, gang, gunfight, crime, family, psychological"} +{"id": "260346", "title": "Taken 3", "year": 2014, "duration_min": 109, "rating": 6.1, "genres": "Thriller, Action", "genres_pipe": "|Thriller|Action|", "keywords": "revenge, murder, on the run, fugitive, framed, father daughter relationship, framed for murder", "tags_pipe": "|revenge|murder|on the run|fugitive|framed|father daughter relationship|framed for murder|", "overview": "Ex-government operative Bryan Mills finds his life is shattered when he's falsely accused of a murder that hits close to home. As he's pursued by a savvy police inspector, Mills employs his particular set of skills to track the real killer and exact his unique brand of justice.", "text_for_embedding": "Taken 3 (2014). Genres: Thriller, Action. Ex-government operative Bryan Mills finds his life is shattered when he's falsely accused of a murder that hits close to home. As he's pursued by a savvy police inspector, Mills employs his particular set of skills to track the real killer and exact his unique brand of justice.. Tags: revenge, murder, on the run, fugitive, framed, father daughter relationship, framed for murder"} +{"id": "1389", "title": "Out of Sight", "year": 1998, "duration_min": 123, "rating": 6.5, "genres": "Romance, Comedy, Crime", "genres_pipe": "|Romance|Comedy|Crime|", "keywords": "journalist, bedroom, purse, trunk, elmore leonard", "tags_pipe": "|journalist|bedroom|purse|trunk|elmore leonard|", "overview": "Meet Jack Foley, a smooth criminal who bends the law and is determined to make one last heist. Karen Sisco is a federal marshal who chooses all the right moves … and all the wrong guys. Now they're willing to risk it all to find out if there's more between them than just the law. Variety hails Out of Sight as \"a sly, sexy, vastly entertaining film.\"", "text_for_embedding": "Out of Sight (1998). Genres: Romance, Comedy, Crime. Meet Jack Foley, a smooth criminal who bends the law and is determined to make one last heist. Karen Sisco is a federal marshal who chooses all the right moves … and all the wrong guys. Now they're willing to risk it all to find out if there's more between them than just the law. Variety hails Out of Sight as \"a sly, sexy, vastly entertaining film.\". Tags: journalist, bedroom, purse, trunk, elmore leonard"} +{"id": "9894", "title": "The Cable Guy", "year": 1996, "duration_min": 96, "rating": 5.7, "genres": "Comedy, Drama, Thriller", "genres_pipe": "|Comedy|Drama|Thriller|", "keywords": "prison, prostitute, karaoke, dark comedy, cable guy", "tags_pipe": "|prison|prostitute|karaoke|dark comedy|cable guy|", "overview": "When recently single Steven moves into his new apartment, cable guy Chip comes to hook him up -- and doesn't let go. Initially, Chip is just overzealous in his desire to be Steven's pal, but when Steven tries to end the \"friendship,\" Chip shows his dark side. He begins stalking Steven, who's left to fend for himself because no one else can believe Chip's capable of such behavior.", "text_for_embedding": "The Cable Guy (1996). Genres: Comedy, Drama, Thriller. When recently single Steven moves into his new apartment, cable guy Chip comes to hook him up -- and doesn't let go. Initially, Chip is just overzealous in his desire to be Steven's pal, but when Steven tries to end the \"friendship,\" Chip shows his dark side. He begins stalking Steven, who's left to fend for himself because no one else can believe Chip's capable of such behavior.. Tags: prison, prostitute, karaoke, dark comedy, cable guy"} +{"id": "7504", "title": "Earth", "year": 1998, "duration_min": 101, "rating": 6.6, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "based on novel, war of independence, period drama, woman director, partition, 1940s, lahore", "tags_pipe": "|based on novel|war of independence|period drama|woman director|partition|1940s|lahore|", "overview": "It's 1947 and the borderlines between India and Pakistan are being drawn. A young girl bears witnesses to tragedy as her ayah is caught between the love of two men and the rising tide of political and religious violence.", "text_for_embedding": "Earth (1998). Genres: Drama. It's 1947 and the borderlines between India and Pakistan are being drawn. A young girl bears witnesses to tragedy as her ayah is caught between the love of two men and the rising tide of political and religious violence.. Tags: based on novel, war of independence, period drama, woman director, partition, 1940s, lahore"} +{"id": "8592", "title": "Dick Tracy", "year": 1990, "duration_min": 103, "rating": 5.9, "genres": "Adventure, Action, Comedy, Thriller, Crime", "genres_pipe": "|Adventure|Action|Comedy|Thriller|Crime|", "keywords": "corruption, crime fighter, gangster boss, investigation, based on comic strip, policeman", "tags_pipe": "|corruption|crime fighter|gangster boss|investigation|based on comic strip|policeman|", "overview": "The comic strip detective finds his life vastly complicated when Breathless Mahoney makes advances towards him while he is trying to battle Big Boy Caprice's united mob,", "text_for_embedding": "Dick Tracy (1990). Genres: Adventure, Action, Comedy, Thriller, Crime. The comic strip detective finds his life vastly complicated when Breathless Mahoney makes advances towards him while he is trying to battle Big Boy Caprice's united mob,. Tags: corruption, crime fighter, gangster boss, investigation, based on comic strip, policeman"} +{"id": "913", "title": "The Thomas Crown Affair", "year": 1999, "duration_min": 113, "rating": 6.6, "genres": "Drama, Crime, Romance", "genres_pipe": "|Drama|Crime|Romance|", "keywords": "martinique, claude monet, famous painting, glider, insurance agent, missing painting, stolen painting, valuable painting, rich people", "tags_pipe": "|martinique|claude monet|famous painting|glider|insurance agent|missing painting|stolen painting|valuable painting|rich people|", "overview": "A very rich and successful playboy amuses himself by stealing artwork, but may have met his match in a seductive detective.", "text_for_embedding": "The Thomas Crown Affair (1999). Genres: Drama, Crime, Romance. A very rich and successful playboy amuses himself by stealing artwork, but may have met his match in a seductive detective.. Tags: martinique, claude monet, famous painting, glider, insurance agent, missing painting, stolen painting, valuable painting, rich people"} +{"id": "11091", "title": "Riding in Cars with Boys", "year": 2001, "duration_min": 132, "rating": 6.5, "genres": "Comedy, Drama, Romance", "genres_pipe": "|Comedy|Drama|Romance|", "keywords": "baby, becoming an adult, puberty, dream, drug addiction, wife, unwillingly pregnant, writer, youth, marriage problems, woman director", "tags_pipe": "|baby|becoming an adult|puberty|dream|drug addiction|wife|unwillingly pregnant|writer|youth|marriage problems|woman director|", "overview": "A single mother, with dreams of becoming a writer, has a son at the age of 15 in 1965, and goes through a failed marriage with the drug-addicted father.", "text_for_embedding": "Riding in Cars with Boys (2001). Genres: Comedy, Drama, Romance. A single mother, with dreams of becoming a writer, has a son at the age of 15 in 1965, and goes through a failed marriage with the drug-addicted father.. Tags: baby, becoming an adult, puberty, dream, drug addiction, wife, unwillingly pregnant, writer, youth, marriage problems, woman director"} +{"id": "1368", "title": "First Blood", "year": 1982, "duration_min": 93, "rating": 7.2, "genres": "Action, Adventure, Thriller, War", "genres_pipe": "|Action|Adventure|Thriller|War|", "keywords": "prison, vietnam veteran, falsely accused, police brutality, sheriff, guerrilla, submachine gun, gun, destroy, self-defense, vietnam, vietnam war, prosecution, dying and death, village and town", "tags_pipe": "|prison|vietnam veteran|falsely accused|police brutality|sheriff|guerrilla|submachine gun|gun|destroy|self-defense|vietnam|vietnam war|prosecution|dying and death|village and town|", "overview": "When former Green Beret John Rambo is harassed by local law enforcement and arrested for vagrancy, the Vietnam vet snaps, runs for the hills and rat-a-tat-tats his way into the action-movie hall of fame. Hounded by a relentless sheriff, Rambo employs heavy-handed guerilla tactics to shake the cops off his tail.", "text_for_embedding": "First Blood (1982). Genres: Action, Adventure, Thriller, War. When former Green Beret John Rambo is harassed by local law enforcement and arrested for vagrancy, the Vietnam vet snaps, runs for the hills and rat-a-tat-tats his way into the action-movie hall of fame. Hounded by a relentless sheriff, Rambo employs heavy-handed guerilla tactics to shake the cops off his tail.. Tags: prison, vietnam veteran, falsely accused, police brutality, sheriff, guerrilla, submachine gun, gun, destroy, self-defense, vietnam, vietnam war, prosecution, dying and death, village and town"} +{"id": "593", "title": "Solaris", "year": 1972, "duration_min": 167, "rating": 7.7, "genres": "Drama, Science Fiction, Adventure, Mystery", "genres_pipe": "|Drama|Science Fiction|Adventure|Mystery|", "keywords": "1970s, loss of sense of reality, extraterrestrial technology, subconsciousness, russian, hallucination, space travel, astronaut, soviet", "tags_pipe": "|1970s|loss of sense of reality|extraterrestrial technology|subconsciousness|russian|hallucination|space travel|astronaut|soviet|", "overview": "Ground control has been receiving strange transmissions from the three remaining residents of the Solaris space station. When cosmonaut and psychologist Kris Kelvin is sent to investigate, he experiences the strange phenomena that afflict the Solaris crew, sending him on a voyage into the darkest recesses of his own consciousness. Based on the novel by the same name from Polish author Stanislaw Lem.", "text_for_embedding": "Solaris (1972). Genres: Drama, Science Fiction, Adventure, Mystery. Ground control has been receiving strange transmissions from the three remaining residents of the Solaris space station. When cosmonaut and psychologist Kris Kelvin is sent to investigate, he experiences the strange phenomena that afflict the Solaris crew, sending him on a voyage into the darkest recesses of his own consciousness. Based on the novel by the same name from Polish author Stanislaw Lem.. Tags: 1970s, loss of sense of reality, extraterrestrial technology, subconsciousness, russian, hallucination, space travel, astronaut, soviet"} +{"id": "5393", "title": "Happily N'Ever After", "year": 2006, "duration_min": 75, "rating": 4.6, "genres": "Animation, Comedy, Family, Fantasy, Science Fiction", "genres_pipe": "|Animation|Comedy|Family|Fantasy|Science Fiction|", "keywords": "dwarves, cinderella, wolf, bad mother-in-law, prince, fairy tale, little red riding hood, step mother, wizardry, princess, sleeping beauty, rumpelstilzchen, good and bad, intern, woman director", "tags_pipe": "|dwarves|cinderella|wolf|bad mother-in-law|prince|fairy tale|little red riding hood|step mother|wizardry|princess|sleeping beauty|rumpelstilzchen|good and bad|intern|woman director|", "overview": "An alliance of evil-doers, led by Frieda, looks to take over Fairy Tale Land. But when Ella realizes her stepmother is out to ruin her storybook existence, she takes a dramatic turn and blossoms into the leader of the resistance effort.", "text_for_embedding": "Happily N'Ever After (2006). Genres: Animation, Comedy, Family, Fantasy, Science Fiction. An alliance of evil-doers, led by Frieda, looks to take over Fairy Tale Land. But when Ella realizes her stepmother is out to ruin her storybook existence, she takes a dramatic turn and blossoms into the leader of the resistance effort.. Tags: dwarves, cinderella, wolf, bad mother-in-law, prince, fairy tale, little red riding hood, step mother, wizardry, princess, sleeping beauty, rumpelstilzchen, good and bad, intern, woman director"} +{"id": "9095", "title": "Mary Reilly", "year": 1996, "duration_min": 104, "rating": 5.7, "genres": "Drama, Horror, Thriller, Romance", "genres_pipe": "|Drama|Horror|Thriller|Romance|", "keywords": "servant, monster, laboratory, jekyll and hyde, housemaid, 19th century", "tags_pipe": "|servant|monster|laboratory|jekyll and hyde|housemaid|19th century|", "overview": "A housemaid falls in love with Dr. Jekyll and his darkly mysterious counterpart, Mr. Hyde.", "text_for_embedding": "Mary Reilly (1996). Genres: Drama, Horror, Thriller, Romance. A housemaid falls in love with Dr. Jekyll and his darkly mysterious counterpart, Mr. Hyde.. Tags: servant, monster, laboratory, jekyll and hyde, housemaid, 19th century"} +{"id": "8874", "title": "My Best Friend's Wedding", "year": 1997, "duration_min": 105, "rating": 6.3, "genres": "Comedy, Romance", "genres_pipe": "|Comedy|Romance|", "keywords": "karaoke, marriage proposal, new love, love of one's life, kiss, man-woman relation, secret love, wedding", "tags_pipe": "|karaoke|marriage proposal|new love|love of one's life|kiss|man-woman relation|secret love|wedding|", "overview": "When she receives word that her longtime platonic pal Michael O'Neal is getting married to debutante Kimberly Wallace, food critic Julianne Potter realizes her true feelings for Michael -- and sets out to sabotage the wedding.", "text_for_embedding": "My Best Friend's Wedding (1997). Genres: Comedy, Romance. When she receives word that her longtime platonic pal Michael O'Neal is getting married to debutante Kimberly Wallace, food critic Julianne Potter realizes her true feelings for Michael -- and sets out to sabotage the wedding.. Tags: karaoke, marriage proposal, new love, love of one's life, kiss, man-woman relation, secret love, wedding"} +{"id": "11467", "title": "America's Sweethearts", "year": 2001, "duration_min": 102, "rating": 5.5, "genres": "Comedy, Romance", "genres_pipe": "|Comedy|Romance|", "keywords": "film business, film producer, wife husband relationship, fictitious marriage, married couple, marriage crisis", "tags_pipe": "|film business|film producer|wife husband relationship|fictitious marriage|married couple|marriage crisis|", "overview": "In the midst of a nasty public breakup of married movie stars, a studio publicist scrambles to put a cap on the escalating situation as the couple's latest film has found it's only print kidnapped by the director.", "text_for_embedding": "America's Sweethearts (2001). Genres: Comedy, Romance. In the midst of a nasty public breakup of married movie stars, a studio publicist scrambles to put a cap on the escalating situation as the couple's latest film has found it's only print kidnapped by the director.. Tags: film business, film producer, wife husband relationship, fictitious marriage, married couple, marriage crisis"} +{"id": "320", "title": "Insomnia", "year": 2002, "duration_min": 118, "rating": 6.8, "genres": "Crime, Mystery, Thriller", "genres_pipe": "|Crime|Mystery|Thriller|", "keywords": "detective, confession, fbi, homicide, blackmail, suspect, love, murder, los angeles, teenager, neo-noir", "tags_pipe": "|detective|confession|fbi|homicide|blackmail|suspect|love|murder|los angeles|teenager|neo-noir|", "overview": "Two Los Angeles homicide detectives are dispatched to a northern town where the sun doesn't set to investigate the methodical murder of a local teen.", "text_for_embedding": "Insomnia (2002). Genres: Crime, Mystery, Thriller. Two Los Angeles homicide detectives are dispatched to a northern town where the sun doesn't set to investigate the methodical murder of a local teen.. Tags: detective, confession, fbi, homicide, blackmail, suspect, love, murder, los angeles, teenager, neo-noir"} +{"id": "199", "title": "Star Trek: First Contact", "year": 1996, "duration_min": 111, "rating": 7.0, "genres": "Science Fiction, Action, Adventure, Thriller", "genres_pipe": "|Science Fiction|Action|Adventure|Thriller|", "keywords": "federation, starfleet, borg, enterprise-e, cyborg, montana, resistance, inventor, repayment, obsession, business start-up, space opera", "tags_pipe": "|federation|starfleet|borg|enterprise-e|cyborg|montana|resistance|inventor|repayment|obsession|business start-up|space opera|", "overview": "The Borg, a relentless race of cyborgs, are on a direct course for Earth. Violating orders to stay away from the battle, Captain Picard and the crew of the newly-commissioned USS Enterprise E pursue the Borg back in time to prevent the invaders from changing Federation history and assimilating the galaxy.", "text_for_embedding": "Star Trek: First Contact (1996). Genres: Science Fiction, Action, Adventure, Thriller. The Borg, a relentless race of cyborgs, are on a direct course for Earth. Violating orders to stay away from the battle, Captain Picard and the crew of the newly-commissioned USS Enterprise E pursue the Borg back in time to prevent the invaders from changing Federation history and assimilating the galaxy.. Tags: federation, starfleet, borg, enterprise-e, cyborg, montana, resistance, inventor, repayment, obsession, business start-up, space opera"} +{"id": "20533", "title": "Jonah Hex", "year": 2010, "duration_min": 80, "rating": 4.4, "genres": "Action, Western, Drama, Fantasy, Thriller", "genres_pipe": "|Action|Western|Drama|Fantasy|Thriller|", "keywords": "gunslinger, usa, dc comics, hell, facial scar, death, confederate, tomahawk", "tags_pipe": "|gunslinger|usa|dc comics|hell|facial scar|death|confederate|tomahawk|", "overview": "Gunslinger Jonah Hex (Josh Brolin) is appointed by President Ulysses Grant to track down terrorist Quentin Turnbull (John Malkovich), a former Confederate officer determined on unleashing hell on earth. Jonah not only secures freedom by accepting this task, he also gets revenge on the man who slayed his wife and child. Megan Fox plays a prostitute as well as Jonah Hex's love interst in the film.", "text_for_embedding": "Jonah Hex (2010). Genres: Action, Western, Drama, Fantasy, Thriller. Gunslinger Jonah Hex (Josh Brolin) is appointed by President Ulysses Grant to track down terrorist Quentin Turnbull (John Malkovich), a former Confederate officer determined on unleashing hell on earth. Jonah not only secures freedom by accepting this task, he also gets revenge on the man who slayed his wife and child. Megan Fox plays a prostitute as well as Jonah Hex's love interst in the film.. Tags: gunslinger, usa, dc comics, hell, facial scar, death, confederate, tomahawk"} +{"id": "10684", "title": "Courage Under Fire", "year": 1996, "duration_min": 117, "rating": 6.2, "genres": "Drama, Thriller, Mystery, War", "genres_pipe": "|Drama|Thriller|Mystery|War|", "keywords": "gulf war, pilot, u.s. army, praise, rescue mission, dead soldier, tank, medal", "tags_pipe": "|gulf war|pilot|u.s. army|praise|rescue mission|dead soldier|tank|medal|", "overview": "A US Army officer had made a \"friendly fire\" mistake that was covered up and he was reassigned to a desk job. Later he was tasked to investigate a female chopper commander's worthiness to be awarded the Medal of Honor posthumously. At first all seemed in order then he begins to notice inconsistencies between the testimonies of the witnesses....", "text_for_embedding": "Courage Under Fire (1996). Genres: Drama, Thriller, Mystery, War. A US Army officer had made a \"friendly fire\" mistake that was covered up and he was reassigned to a desk job. Later he was tasked to investigate a female chopper commander's worthiness to be awarded the Medal of Honor posthumously. At first all seemed in order then he begins to notice inconsistencies between the testimonies of the witnesses..... Tags: gulf war, pilot, u.s. army, praise, rescue mission, dead soldier, tank, medal"} +{"id": "1624", "title": "Liar Liar", "year": 1997, "duration_min": 86, "rating": 6.4, "genres": "Comedy", "genres_pipe": "|Comedy|", "keywords": "california, workaholic, birthday, lie, pregnancy and birth, wish, 1990s", "tags_pipe": "|california|workaholic|birthday|lie|pregnancy and birth|wish|1990s|", "overview": "Fletcher Reede is a fast-talking attorney and habitual liar. When his son Max blows out the candles on his fifth birthday he has just one wish - that his dad will stop lying for 24 hours. When Max's wish comes true, Fletcher discovers that his mouth has suddenly become his biggest liability.", "text_for_embedding": "Liar Liar (1997). Genres: Comedy. Fletcher Reede is a fast-talking attorney and habitual liar. When his son Max blows out the candles on his fifth birthday he has just one wish - that his dad will stop lying for 24 hours. When Max's wish comes true, Fletcher discovers that his mouth has suddenly become his biggest liability.. Tags: california, workaholic, birthday, lie, pregnancy and birth, wish, 1990s"} +{"id": "325789", "title": "The Infiltrator", "year": 2016, "duration_min": 127, "rating": 6.6, "genres": "Crime, Drama, Thriller", "genres_pipe": "|Crime|Drama|Thriller|", "keywords": "undercover, biography, drug, drug lord", "tags_pipe": "|undercover|biography|drug|drug lord|", "overview": "A U.S Customs official uncovers a massive money laundering scheme involving Pablo Escobar.", "text_for_embedding": "The Infiltrator (2016). Genres: Crime, Drama, Thriller. A U.S Customs official uncovers a massive money laundering scheme involving Pablo Escobar.. Tags: undercover, biography, drug, drug lord"} +{"id": "113464", "title": "Inchon", "year": 1981, "duration_min": 140, "rating": 6.5, "genres": "Drama, History, War", "genres_pipe": "|Drama|History|War|", "keywords": "", "tags_pipe": "", "overview": "A noisy and absurd re-telling of the great 1950 invasion of Inchon during the Korean War which was masterminded by General Douglas MacArthur.", "text_for_embedding": "Inchon (1981). Genres: Drama, History, War. A noisy and absurd re-telling of the great 1950 invasion of Inchon during the Korean War which was masterminded by General Douglas MacArthur.. Tags: "} +{"id": "888", "title": "The Flintstones", "year": 1994, "duration_min": 91, "rating": 5.0, "genres": "Fantasy, Comedy, Family", "genres_pipe": "|Fantasy|Comedy|Family|", "keywords": "manager, jealousy, bad mother-in-law, adoption, family's daily life, stone age, plan, friendship, best friend, dinosaur", "tags_pipe": "|manager|jealousy|bad mother-in-law|adoption|family's daily life|stone age|plan|friendship|best friend|dinosaur|", "overview": "Modern Stone Age family the Flintstones hit the big screen in this live-action version of the classic cartoon. Fred helps Barney adopt a child. Barney sees an opportunity to repay him when Slate Mining tests its employees to find a new executive. But no good deed goes unpunished.", "text_for_embedding": "The Flintstones (1994). Genres: Fantasy, Comedy, Family. Modern Stone Age family the Flintstones hit the big screen in this live-action version of the classic cartoon. Fred helps Barney adopt a child. Barney sees an opportunity to repay him when Slate Mining tests its employees to find a new executive. But no good deed goes unpunished.. Tags: manager, jealousy, bad mother-in-law, adoption, family's daily life, stone age, plan, friendship, best friend, dinosaur"} +{"id": "82675", "title": "Taken 2", "year": 2012, "duration_min": 91, "rating": 6.1, "genres": "Action, Crime, Thriller", "genres_pipe": "|Action|Crime|Thriller|", "keywords": "kidnapping, turkey, police chase, bag over head, violence, fbi agent, teenage daughter, stealing a car, ex-husband ex-wife relationship, albanian, u.s. embassy, killed in an elevator, security guard killed", "tags_pipe": "|kidnapping|turkey|police chase|bag over head|violence|fbi agent|teenage daughter|stealing a car|ex-husband ex-wife relationship|albanian|u.s. embassy|killed in an elevator|security guard killed|", "overview": "In Istanbul, retired CIA operative Bryan Mills and his wife are taken hostage by the father of a kidnapper Mills killed while rescuing his daughter.", "text_for_embedding": "Taken 2 (2012). Genres: Action, Crime, Thriller. In Istanbul, retired CIA operative Bryan Mills and his wife are taken hostage by the father of a kidnapper Mills killed while rescuing his daughter.. Tags: kidnapping, turkey, police chase, bag over head, violence, fbi agent, teenage daughter, stealing a car, ex-husband ex-wife relationship, albanian, u.s. embassy, killed in an elevator, security guard killed"} +{"id": "4256", "title": "Scary Movie 3", "year": 2003, "duration_min": 84, "rating": 5.8, "genres": "Comedy", "genres_pipe": "|Comedy|", "keywords": "horror spoof", "tags_pipe": "|horror spoof|", "overview": "In the third installment of the Scary Movie franchise, news anchorwoman Cindy Campbell has to investigate mysterious crop circles and killing video tapes, and help the President stop an alien invasion in the process.", "text_for_embedding": "Scary Movie 3 (2003). Genres: Comedy. In the third installment of the Scary Movie franchise, news anchorwoman Cindy Campbell has to investigate mysterious crop circles and killing video tapes, and help the President stop an alien invasion in the process.. Tags: horror spoof"} +{"id": "1493", "title": "Miss Congeniality", "year": 2000, "duration_min": 111, "rating": 6.1, "genres": "Comedy, Crime, Action", "genres_pipe": "|Comedy|Crime|Action|", "keywords": "undercover agent, beauty contest, terrorism", "tags_pipe": "|undercover agent|beauty contest|terrorism|", "overview": "When the local FBI office receives a letter from a terrorist known only as 'The Citizen', it's quickly determined that he's planning his next act at the Miss America beauty pageant. Because tough-as-nails Gracie Hart is the only female Agent at the office, she's chosen to go undercover as the contestant from New Jersey.", "text_for_embedding": "Miss Congeniality (2000). Genres: Comedy, Crime, Action. When the local FBI office receives a letter from a terrorist known only as 'The Citizen', it's quickly determined that he's planning his next act at the Miss America beauty pageant. Because tough-as-nails Gracie Hart is the only female Agent at the office, she's chosen to go undercover as the contestant from New Jersey.. Tags: undercover agent, beauty contest, terrorism"} +{"id": "88751", "title": "Journey to the Center of the Earth", "year": 2008, "duration_min": 93, "rating": 5.8, "genres": "Action, Science Fiction, Adventure, Comedy, Family", "genres_pipe": "|Action|Science Fiction|Adventure|Comedy|Family|", "keywords": "volcano, prehistoric, dinosaur, prehistoric creature, 3d", "tags_pipe": "|volcano|prehistoric|dinosaur|prehistoric creature|3d|", "overview": "On a quest to find out what happened to his missing brother, a scientist, his nephew and their mountain guide discover a fantastic and dangerous lost world in the center of the earth.", "text_for_embedding": "Journey to the Center of the Earth (2008). Genres: Action, Science Fiction, Adventure, Comedy, Family. On a quest to find out what happened to his missing brother, a scientist, his nephew and their mountain guide discover a fantastic and dangerous lost world in the center of the earth.. Tags: volcano, prehistoric, dinosaur, prehistoric creature, 3d"} +{"id": "11130", "title": "The Princess Diaries 2: Royal Engagement", "year": 2004, "duration_min": 113, "rating": 6.0, "genres": "Comedy, Drama, Family, Romance", "genres_pipe": "|Comedy|Drama|Family|Romance|", "keywords": "coronation, duty, marriage, falling in love", "tags_pipe": "|coronation|duty|marriage|falling in love|", "overview": "Mia Thermopolis is now a college graduate and on her way to Genovia to take up her duties as princess. Her best friend Lilly also joins her for the summer. Mia continues her 'princess lessons'- riding horses side-saddle, archery, and other royal. But her complicated life is turned upside down once again when she not only learns that she is to take the crown as queen earlier than expected...", "text_for_embedding": "The Princess Diaries 2: Royal Engagement (2004). Genres: Comedy, Drama, Family, Romance. Mia Thermopolis is now a college graduate and on her way to Genovia to take up her duties as princess. Her best friend Lilly also joins her for the summer. Mia continues her 'princess lessons'- riding horses side-saddle, archery, and other royal. But her complicated life is turned upside down once again when she not only learns that she is to take the crown as queen earlier than expected.... Tags: coronation, duty, marriage, falling in love"} +{"id": "9944", "title": "The Pelican Brief", "year": 1993, "duration_min": 141, "rating": 6.3, "genres": "Drama, Mystery, Thriller, Crime", "genres_pipe": "|Drama|Mystery|Thriller|Crime|", "keywords": "judge, professor, mission of murder, supreme court", "tags_pipe": "|judge|professor|mission of murder|supreme court|", "overview": "Two Supreme Court Justices have been assassinated. One lone law student has stumbled upon the truth. An investigative journalist wants her story. Everybody else wants her dead.", "text_for_embedding": "The Pelican Brief (1993). Genres: Drama, Mystery, Thriller, Crime. Two Supreme Court Justices have been assassinated. One lone law student has stumbled upon the truth. An investigative journalist wants her story. Everybody else wants her dead.. Tags: judge, professor, mission of murder, supreme court"} +{"id": "10731", "title": "The Client", "year": 1994, "duration_min": 119, "rating": 6.4, "genres": "Drama, Thriller, Crime, Mystery", "genres_pipe": "|Drama|Thriller|Crime|Mystery|", "keywords": "suicide, brother brother relationship, witness protection, principal witness , brother, investigation, search for witnesses, lawyer, gangster", "tags_pipe": "|suicide|brother brother relationship|witness protection|principal witness |brother|investigation|search for witnesses|lawyer|gangster|", "overview": "A street-wise kid, Mark Sway, sees the suicide of Jerome Clifford, a prominent Louisiana lawyer, whose current client is Barry 'The Blade' Muldano, a Mafia hit-man. Before Jerome shoots himself, he tells Mark where the body of a Senator is buried. Clifford shoots himself and Mark is found at the scene, and both the FBI and the Mafia quickly realize that Mark probably knows more than he says.", "text_for_embedding": "The Client (1994). Genres: Drama, Thriller, Crime, Mystery. A street-wise kid, Mark Sway, sees the suicide of Jerome Clifford, a prominent Louisiana lawyer, whose current client is Barry 'The Blade' Muldano, a Mafia hit-man. Before Jerome shoots himself, he tells Mark where the body of a Senator is buried. Clifford shoots himself and Mark is found at the scene, and both the FBI and the Mafia quickly realize that Mark probably knows more than he says.. Tags: suicide, brother brother relationship, witness protection, principal witness , brother, investigation, search for witnesses, lawyer, gangster"} +{"id": "7350", "title": "The Bucket List", "year": 2007, "duration_min": 97, "rating": 7.0, "genres": "Drama, Comedy", "genres_pipe": "|Drama|Comedy|", "keywords": "africa, himalaya, brain tumor, wife husband relationship, sense of life, male friendship, safari, dying and death, wish, journey round the world, terminal illness, billionaire, father daughter relationship, estranged father, elderly", "tags_pipe": "|africa|himalaya|brain tumor|wife husband relationship|sense of life|male friendship|safari|dying and death|wish|journey round the world|terminal illness|billionaire|father daughter relationship|estranged father|elderly|", "overview": "Corporate billionaire Edward Cole and working class mechanic Carter Chambers are worlds apart. At a crossroads in their lives, they share a hospital room and discover they have two things in common: a desire to spend the time they have left doing everything they ever wanted to do and an unrealized need to come to terms with who they are. Together they embark on the road trip of a lifetime, becoming friends along the way and learning to live life to the fullest, with insight and humor.", "text_for_embedding": "The Bucket List (2007). Genres: Drama, Comedy. Corporate billionaire Edward Cole and working class mechanic Carter Chambers are worlds apart. At a crossroads in their lives, they share a hospital room and discover they have two things in common: a desire to spend the time they have left doing everything they ever wanted to do and an unrealized need to come to terms with who they are. Together they embark on the road trip of a lifetime, becoming friends along the way and learning to live life to the fullest, with insight and humor.. Tags: africa, himalaya, brain tumor, wife husband relationship, sense of life, male friendship, safari, dying and death, wish, journey round the world, terminal illness, billionaire, father daughter relationship, estranged father, elderly"} +{"id": "9869", "title": "Patriot Games", "year": 1992, "duration_min": 117, "rating": 6.3, "genres": "Drama, Action, Thriller, Crime", "genres_pipe": "|Drama|Action|Thriller|Crime|", "keywords": "assassination, assassin, repayment, ira, jack ryan", "tags_pipe": "|assassination|assassin|repayment|ira|jack ryan|", "overview": "When CIA Analyst Jack Ryan interferes with an IRA assassination, a renegade faction targets Jack and his family as revenge.", "text_for_embedding": "Patriot Games (1992). Genres: Drama, Action, Thriller, Crime. When CIA Analyst Jack Ryan interferes with an IRA assassination, a renegade faction targets Jack and his family as revenge.. Tags: assassination, assassin, repayment, ira, jack ryan"} +{"id": "4379", "title": "Monster-in-Law", "year": 2005, "duration_min": 101, "rating": 5.6, "genres": "Romance, Comedy", "genres_pipe": "|Romance|Comedy|", "keywords": "bad mother-in-law, surgeon, dogsitter, falling in love", "tags_pipe": "|bad mother-in-law|surgeon|dogsitter|falling in love|", "overview": "Office temp Charlotte Cantilini thinks she's found Mr. Right when she starts dating gorgeous surgeon Dr. Kevin Fields. But there's a problem standing in the way of everlasting bliss: Kevin's overbearing and controlling mother, Viola. Fearing she'll lose her son's affections forever, Viola decides to break up the happy couple by becoming the world's worst mother-in-law.", "text_for_embedding": "Monster-in-Law (2005). Genres: Romance, Comedy. Office temp Charlotte Cantilini thinks she's found Mr. Right when she starts dating gorgeous surgeon Dr. Kevin Fields. But there's a problem standing in the way of everlasting bliss: Kevin's overbearing and controlling mother, Viola. Fearing she'll lose her son's affections forever, Viola decides to break up the happy couple by becoming the world's worst mother-in-law.. Tags: bad mother-in-law, surgeon, dogsitter, falling in love"} +{"id": "146233", "title": "Prisoners", "year": 2013, "duration_min": 153, "rating": 7.9, "genres": "Drama, Thriller, Crime", "genres_pipe": "|Drama|Thriller|Crime|", "keywords": "pennsylvania, kidnapping, maze, vigilante, rural setting, candlelight vigil", "tags_pipe": "|pennsylvania|kidnapping|maze|vigilante|rural setting|candlelight vigil|", "overview": "When Keller Dover's daughter and her friend go missing, he takes matters into his own hands as the police pursue multiple leads and the pressure mounts. But just how far will this desperate father go to protect his family?", "text_for_embedding": "Prisoners (2013). Genres: Drama, Thriller, Crime. When Keller Dover's daughter and her friend go missing, he takes matters into his own hands as the police pursue multiple leads and the pressure mounts. But just how far will this desperate father go to protect his family?. Tags: pennsylvania, kidnapping, maze, vigilante, rural setting, candlelight vigil"} +{"id": "2034", "title": "Training Day", "year": 2001, "duration_min": 122, "rating": 7.3, "genres": "Action, Crime, Drama, Thriller", "genres_pipe": "|Action|Crime|Drama|Thriller|", "keywords": "police brutality, war on drugs, drug traffic, drug dealer, los angeles, gang member, mexican american, barrio, cholo", "tags_pipe": "|police brutality|war on drugs|drug traffic|drug dealer|los angeles|gang member|mexican american|barrio|cholo|", "overview": "On his first day on the job as a narcotics officer, a rookie cop works with a rogue detective who isn't what he appears.", "text_for_embedding": "Training Day (2001). Genres: Action, Crime, Drama, Thriller. On his first day on the job as a narcotics officer, a rookie cop works with a rogue detective who isn't what he appears.. Tags: police brutality, war on drugs, drug traffic, drug dealer, los angeles, gang member, mexican american, barrio, cholo"} +{"id": "926", "title": "Galaxy Quest", "year": 1999, "duration_min": 102, "rating": 6.9, "genres": "Comedy, Family, Science Fiction", "genres_pipe": "|Comedy|Family|Science Fiction|", "keywords": "space battle, spaceship, spoof, fictional tv show", "tags_pipe": "|space battle|spaceship|spoof|fictional tv show|", "overview": "The stars of a 1970s sci-fi show - now scraping a living through re-runs and sci-fi conventions - are beamed aboard an alien spacecraft. Believing the cast's heroic on-screen dramas are historical documents of real-life adventures, the band of aliens turn to the ailing celebrities for help in their quest to overcome the oppressive regime in their solar system.", "text_for_embedding": "Galaxy Quest (1999). Genres: Comedy, Family, Science Fiction. The stars of a 1970s sci-fi show - now scraping a living through re-runs and sci-fi conventions - are beamed aboard an alien spacecraft. Believing the cast's heroic on-screen dramas are historical documents of real-life adventures, the band of aliens turn to the ailing celebrities for help in their quest to overcome the oppressive regime in their solar system.. Tags: space battle, spaceship, spoof, fictional tv show"} +{"id": "4248", "title": "Scary Movie 2", "year": 2001, "duration_min": 83, "rating": 5.4, "genres": "Comedy", "genres_pipe": "|Comedy|", "keywords": "sex, exorcism, secret door", "tags_pipe": "|sex|exorcism|secret door|", "overview": "While the original parodied slasher flicks like Scream, Keenen Ivory Wayans's sequel to Scary Movie takes comedic aim at haunted house movies. A group of students visit a mansion called \"Hell House,\" and murderous high jinks ensue.", "text_for_embedding": "Scary Movie 2 (2001). Genres: Comedy. While the original parodied slasher flicks like Scream, Keenen Ivory Wayans's sequel to Scary Movie takes comedic aim at haunted house movies. A group of students visit a mansion called \"Hell House,\" and murderous high jinks ensue.. Tags: sex, exorcism, secret door"} +{"id": "64328", "title": "The Muppets", "year": 2011, "duration_min": 103, "rating": 6.5, "genres": "Comedy, Family, Music", "genres_pipe": "|Comedy|Family|Music|", "keywords": "musical, the muppets, robot, oil tycoon, studio tour, duringcreditsstinger", "tags_pipe": "|musical|the muppets|robot|oil tycoon|studio tour|duringcreditsstinger|", "overview": "When Kermit the Frog and the Muppets learn that their beloved theater is slated for demolition, a sympathetic human, Gary, and his puppet roommate, Walter, swoop in to help the gang put on a show and raise the $10 million they need to save the day.", "text_for_embedding": "The Muppets (2011). Genres: Comedy, Family, Music. When Kermit the Frog and the Muppets learn that their beloved theater is slated for demolition, a sympathetic human, Gary, and his puppet roommate, Walter, swoop in to help the gang put on a show and raise the $10 million they need to save the day.. Tags: musical, the muppets, robot, oil tycoon, studio tour, duringcreditsstinger"} +{"id": "36647", "title": "Blade", "year": 1998, "duration_min": 120, "rating": 6.5, "genres": "Horror, Action", "genres_pipe": "|Horror|Action|", "keywords": "suicide, hero, vampire, bite, fistfight, supernatural, vampire hunter, superhero, rivalry, tragic hero, good vs evil, one man army, extreme violence, martial arts master, scientist", "tags_pipe": "|suicide|hero|vampire|bite|fistfight|supernatural|vampire hunter|superhero|rivalry|tragic hero|good vs evil|one man army|extreme violence|martial arts master|scientist|", "overview": "When Blade's mother was bitten by a vampire during pregnancy, she did not know that she gave her son a special gift while dying: All the good vampire attributes in combination with the best human skills. Blade and his mentor Whistler battle an evil vampire rebel (Deacon Frost) who plans to take over the outdated vampire council, capture Blade and resurrect voracious blood god La Magra.", "text_for_embedding": "Blade (1998). Genres: Horror, Action. When Blade's mother was bitten by a vampire during pregnancy, she did not know that she gave her son a special gift while dying: All the good vampire attributes in combination with the best human skills. Blade and his mentor Whistler battle an evil vampire rebel (Deacon Frost) who plans to take over the outdated vampire council, capture Blade and resurrect voracious blood god La Magra.. Tags: suicide, hero, vampire, bite, fistfight, supernatural, vampire hunter, superhero, rivalry, tragic hero, good vs evil, one man army, extreme violence, martial arts master, scientist"} +{"id": "7214", "title": "Coach Carter", "year": 2005, "duration_min": 136, "rating": 7.3, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "black people, autoritian education, sport, high school, scholarship, basketball, violence in schools, teacher, teachers and students", "tags_pipe": "|black people|autoritian education|sport|high school|scholarship|basketball|violence in schools|teacher|teachers and students|", "overview": "Based on a true story, in which Richmond High School head basketball coach Ken Carter made headlines in 1999 for benching his undefeated team due to poor academic results.", "text_for_embedding": "Coach Carter (2005). Genres: Drama. Based on a true story, in which Richmond High School head basketball coach Ken Carter made headlines in 1999 for benching his undefeated team due to poor academic results.. Tags: black people, autoritian education, sport, high school, scholarship, basketball, violence in schools, teacher, teachers and students"} +{"id": "1537", "title": "Changing Lanes", "year": 2002, "duration_min": 89, "rating": 5.9, "genres": "Action, Adventure, Crime, Thriller", "genres_pipe": "|Action|Adventure|Crime|Thriller|", "keywords": "new york, custody battle, suspense, lawyer", "tags_pipe": "|new york|custody battle|suspense|lawyer|", "overview": "A rush-hour fender-bender on New York City's crowded FDR Drive, under most circumstances, wouldn't set off a chain reaction that could decimate two people's lives. But on this day, at this time, a minor collision will turn two complete strangers into vicious adversaries. Their means of destroying each other might be different, but their goals, ultimately, will be the same: Each will systematically try to dismantle the other's life in a reckless effort to reclaim something he has lost.", "text_for_embedding": "Changing Lanes (2002). Genres: Action, Adventure, Crime, Thriller. A rush-hour fender-bender on New York City's crowded FDR Drive, under most circumstances, wouldn't set off a chain reaction that could decimate two people's lives. But on this day, at this time, a minor collision will turn two complete strangers into vicious adversaries. Their means of destroying each other might be different, but their goals, ultimately, will be the same: Each will systematically try to dismantle the other's life in a reckless effort to reclaim something he has lost.. Tags: new york, custody battle, suspense, lawyer"} +{"id": "9360", "title": "Anaconda", "year": 1997, "duration_min": 89, "rating": 4.7, "genres": "Adventure, Horror, Thriller", "genres_pipe": "|Adventure|Horror|Thriller|", "keywords": "amazon, jungle, anaconda, film crew, killer snake, river boat, amazon river, animal horror", "tags_pipe": "|amazon|jungle|anaconda|film crew|killer snake|river boat|amazon river|animal horror|", "overview": "A \"National Geographic\" film crew is taken hostage by an insane hunter, who takes them along on his quest to capture the world's largest - and deadliest - snake.", "text_for_embedding": "Anaconda (1997). Genres: Adventure, Horror, Thriller. A \"National Geographic\" film crew is taken hostage by an insane hunter, who takes them along on his quest to capture the world's largest - and deadliest - snake.. Tags: amazon, jungle, anaconda, film crew, killer snake, river boat, amazon river, animal horror"} +{"id": "6282", "title": "Coyote Ugly", "year": 2000, "duration_min": 100, "rating": 5.8, "genres": "Comedy", "genres_pipe": "|Comedy|", "keywords": "bar, musical, beautiful woman", "tags_pipe": "|bar|musical|beautiful woman|", "overview": "Graced with a velvet voice, 21-year-old Violet Sanford heads to New York to pursue her dream of becoming a songwriter only to find her aspirations sidelined by the accolades and notoriety she receives at her \"day\" job as a barmaid at Coyote Ugly. The \"Coyotes\" as they are affectionately called tantalize customers and the media alike with their outrageous antics, making Coyote Ugly the watering hole for guys on the prowl.", "text_for_embedding": "Coyote Ugly (2000). Genres: Comedy. Graced with a velvet voice, 21-year-old Violet Sanford heads to New York to pursue her dream of becoming a songwriter only to find her aspirations sidelined by the accolades and notoriety she receives at her \"day\" job as a barmaid at Coyote Ugly. The \"Coyotes\" as they are affectionately called tantalize customers and the media alike with their outrageous antics, making Coyote Ugly the watering hole for guys on the prowl.. Tags: bar, musical, beautiful woman"} +{"id": "508", "title": "Love Actually", "year": 2003, "duration_min": 135, "rating": 7.0, "genres": "Comedy, Romance, Drama", "genres_pipe": "|Comedy|Romance|Drama|", "keywords": "london england, male nudity, female nudity, love at first sight, usa president, marseille, office, christmas party, marriage proposal, bars and restaurants, press conference, language barrier, prime minister, rock star, tv show", "tags_pipe": "|london england|male nudity|female nudity|love at first sight|usa president|marseille|office|christmas party|marriage proposal|bars and restaurants|press conference|language barrier|prime minister|rock star|tv show|", "overview": "Follows seemingly unrelated people as their lives begin to intertwine while they fall in – and out – of love. Affections languish and develop as Christmas draws near.", "text_for_embedding": "Love Actually (2003). Genres: Comedy, Romance, Drama. Follows seemingly unrelated people as their lives begin to intertwine while they fall in – and out – of love. Affections languish and develop as Christmas draws near.. Tags: london england, male nudity, female nudity, love at first sight, usa president, marseille, office, christmas party, marriage proposal, bars and restaurants, press conference, language barrier, prime minister, rock star, tv show"} +{"id": "9487", "title": "A Bug's Life", "year": 1998, "duration_min": 95, "rating": 6.8, "genres": "Adventure, Animation, Comedy, Family", "genres_pipe": "|Adventure|Animation|Comedy|Family|", "keywords": "winter, fight, ant, invention, collector, ant-hill, kids and family, grass, duringcreditsstinger", "tags_pipe": "|winter|fight|ant|invention|collector|ant-hill|kids and family|grass|duringcreditsstinger|", "overview": "On behalf of \"oppressed bugs everywhere,\" an inventive ant named Flik hires a troupe of warrior bugs to defend his bustling colony from a horde of freeloading grasshoppers led by the evil-minded Hopper.", "text_for_embedding": "A Bug's Life (1998). Genres: Adventure, Animation, Comedy, Family. On behalf of \"oppressed bugs everywhere,\" an inventive ant named Flik hires a troupe of warrior bugs to defend his bustling colony from a horde of freeloading grasshoppers led by the evil-minded Hopper.. Tags: winter, fight, ant, invention, collector, ant-hill, kids and family, grass, duringcreditsstinger"} +{"id": "768", "title": "From Hell", "year": 2001, "duration_min": 122, "rating": 6.6, "genres": "Horror, Mystery, Thriller", "genres_pipe": "|Horror|Mystery|Thriller|", "keywords": "loss of family, drug addiction, jack the ripper", "tags_pipe": "|loss of family|drug addiction|jack the ripper|", "overview": "Frederick Abberline is an opium-huffing inspector from Scotland Yard who falls for one of Jack the Ripper's prostitute targets in this Hughes brothers adaption of a graphic novel that posits the Ripper's true identity.", "text_for_embedding": "From Hell (2001). Genres: Horror, Mystery, Thriller. Frederick Abberline is an opium-huffing inspector from Scotland Yard who falls for one of Jack the Ripper's prostitute targets in this Hughes brothers adaption of a graphic novel that posits the Ripper's true identity.. Tags: loss of family, drug addiction, jack the ripper"} +{"id": "2636", "title": "The Specialist", "year": 1994, "duration_min": 110, "rating": 5.5, "genres": "Action, Thriller", "genres_pipe": "|Action|Thriller|", "keywords": "explosive, revenge, explosives expert", "tags_pipe": "|explosive|revenge|explosives expert|", "overview": "May Munro is a woman obsessed with getting revenge on the people who murdered her parents when she was still a girl. She hires Ray Quick, a retired explosives expert to kill her parent's killers. When Ned Trent, embittered ex-partner of Quick's is assigned to protect one of Quick's potential victims, a deadly game of cat and mouse ensues.", "text_for_embedding": "The Specialist (1994). Genres: Action, Thriller. May Munro is a woman obsessed with getting revenge on the people who murdered her parents when she was still a girl. She hires Ray Quick, a retired explosives expert to kill her parent's killers. When Ned Trent, embittered ex-partner of Quick's is assigned to protect one of Quick's potential victims, a deadly game of cat and mouse ensues.. Tags: explosive, revenge, explosives expert"} +{"id": "10478", "title": "Tin Cup", "year": 1996, "duration_min": 135, "rating": 5.9, "genres": "Comedy, Drama, Romance", "genres_pipe": "|Comedy|Drama|Romance|", "keywords": "lover (female), golf, man-woman relation, sport, woman between two men", "tags_pipe": "|lover (female)|golf|man-woman relation|sport|woman between two men|", "overview": "A washed up golf pro working at a driving range tries to qualify for the US Open in order to win the heart of his succesful rival's girlfriend.", "text_for_embedding": "Tin Cup (1996). Genres: Comedy, Drama, Romance. A washed up golf pro working at a driving range tries to qualify for the US Open in order to win the heart of his succesful rival's girlfriend.. Tags: lover (female), golf, man-woman relation, sport, woman between two men"} +{"id": "27983", "title": "Yours, Mine and Ours", "year": 1968, "duration_min": 111, "rating": 6.2, "genres": "Comedy, Drama, Family", "genres_pipe": "|Comedy|Drama|Family|", "keywords": "nurse, widow, children, parent, sibling", "tags_pipe": "|nurse|widow|children|parent|sibling|", "overview": "When a widower with 10 children marries a widow with 8, can the 20 of them ever come together as one big happy family?", "text_for_embedding": "Yours, Mine and Ours (1968). Genres: Comedy, Drama, Family. When a widower with 10 children marries a widow with 8, can the 20 of them ever come together as one big happy family?. Tags: nurse, widow, children, parent, sibling"} +{"id": "9981", "title": "Kicking & Screaming", "year": 2005, "duration_min": 95, "rating": 5.6, "genres": "Romance, Comedy, Family", "genres_pipe": "|Romance|Comedy|Family|", "keywords": "father son relationship, generations confilct, sport, amateur soccer, soccer coach", "tags_pipe": "|father son relationship|generations confilct|sport|amateur soccer|soccer coach|", "overview": "Phil Weston has been unathletic his entire life. In college he failed at every sport that he tried out for. It looks like his 10-year old son, Sam, is following in his footsteps. But with becoming the coach of The Soccers, an already successful soccer team, everything changes.", "text_for_embedding": "Kicking & Screaming (2005). Genres: Romance, Comedy, Family. Phil Weston has been unathletic his entire life. In college he failed at every sport that he tried out for. It looks like his 10-year old son, Sam, is following in his footsteps. But with becoming the coach of The Soccers, an already successful soccer team, everything changes.. Tags: father son relationship, generations confilct, sport, amateur soccer, soccer coach"} +{"id": "7453", "title": "The Hitchhiker's Guide to the Galaxy", "year": 2005, "duration_min": 109, "rating": 6.6, "genres": "Adventure, Comedy, Family, Science Fiction", "genres_pipe": "|Adventure|Comedy|Family|Science Fiction|", "keywords": "bureaucracy, england, dolphin, android, based on novel, chase, space travel, galaxy, spaceship, alien, stop motion, survival, hitchhiker, robot, alien invasion", "tags_pipe": "|bureaucracy|england|dolphin|android|based on novel|chase|space travel|galaxy|spaceship|alien|stop motion|survival|hitchhiker|robot|alien invasion|", "overview": "Mere seconds before the Earth is to be demolished by an alien construction crew, Arthur Dent is swept off the planet by his friend Ford Prefect, a researcher penning a new edition of \"The Hitchhiker's Guide to the Galaxy.\"", "text_for_embedding": "The Hitchhiker's Guide to the Galaxy (2005). Genres: Adventure, Comedy, Family, Science Fiction. Mere seconds before the Earth is to be demolished by an alien construction crew, Arthur Dent is swept off the planet by his friend Ford Prefect, a researcher penning a new edition of \"The Hitchhiker's Guide to the Galaxy.\". Tags: bureaucracy, england, dolphin, android, based on novel, chase, space travel, galaxy, spaceship, alien, stop motion, survival, hitchhiker, robot, alien invasion"} +{"id": "15045", "title": "Fat Albert", "year": 2004, "duration_min": 93, "rating": 4.3, "genres": "Comedy, Drama, Family", "genres_pipe": "|Comedy|Drama|Family|", "keywords": "", "tags_pipe": "", "overview": "An obese boy named Fat Albert and his friends Rudy, Mushmouth, Bill, Dumb Donald, Russell, and Weird Harold, pulls into trouble when they \"fall\" out of their TV world into the real world, where Fat Albert tries to help a young girl, Doris, make friends.", "text_for_embedding": "Fat Albert (2004). Genres: Comedy, Drama, Family. An obese boy named Fat Albert and his friends Rudy, Mushmouth, Bill, Dumb Donald, Russell, and Weird Harold, pulls into trouble when they \"fall\" out of their TV world into the real world, where Fat Albert tries to help a young girl, Doris, make friends.. Tags: "} +{"id": "7737", "title": "Resident Evil: Extinction", "year": 2007, "duration_min": 94, "rating": 6.1, "genres": "Horror, Action, Science Fiction", "genres_pipe": "|Horror|Action|Science Fiction|", "keywords": "clone, mutant, post-apocalyptic, dystopia, conspiracy, evil corporation, zombie, based on video game", "tags_pipe": "|clone|mutant|post-apocalyptic|dystopia|conspiracy|evil corporation|zombie|based on video game|", "overview": "Years after the Racoon City catastrophe, survivors travel across the Nevada desert, hoping to make it to Alaska. Alice joins the caravan and their fight against hordes of zombies and the evil Umbrella Corp.", "text_for_embedding": "Resident Evil: Extinction (2007). Genres: Horror, Action, Science Fiction. Years after the Racoon City catastrophe, survivors travel across the Nevada desert, hoping to make it to Alaska. Alice joins the caravan and their fight against hordes of zombies and the evil Umbrella Corp.. Tags: clone, mutant, post-apocalyptic, dystopia, conspiracy, evil corporation, zombie, based on video game"} +{"id": "232672", "title": "Blended", "year": 2014, "duration_min": 117, "rating": 6.6, "genres": "Comedy", "genres_pipe": "|Comedy|", "keywords": "africa, blind date, relationship, family vacation, family", "tags_pipe": "|africa|blind date|relationship|family vacation|family|", "overview": "After a bad blind date, a man and woman find themselves stuck together at a resort for families, where their attractions grows as their respective kids benefit from the burgeoning relationship.", "text_for_embedding": "Blended (2014). Genres: Comedy. After a bad blind date, a man and woman find themselves stuck together at a resort for families, where their attractions grows as their respective kids benefit from the burgeoning relationship.. Tags: africa, blind date, relationship, family vacation, family"} +{"id": "17379", "title": "Last Holiday", "year": 2006, "duration_min": 112, "rating": 6.4, "genres": "Adventure, Comedy, Drama", "genres_pipe": "|Adventure|Comedy|Drama|", "keywords": "", "tags_pipe": "", "overview": "After she's diagnosed with a terminal illness, a shy woman decides to take a European vacation.", "text_for_embedding": "Last Holiday (2006). Genres: Adventure, Comedy, Drama. After she's diagnosed with a terminal illness, a shy woman decides to take a European vacation.. Tags: "} +{"id": "8987", "title": "The River Wild", "year": 1994, "duration_min": 111, "rating": 6.1, "genres": "Action, Adventure, Crime, Thriller", "genres_pipe": "|Action|Adventure|Crime|Thriller|", "keywords": "river, robber, boston, bank robber, marriage crisis, hostage-taking, rafting, criminal, white water rafting", "tags_pipe": "|river|robber|boston|bank robber|marriage crisis|hostage-taking|rafting|criminal|white water rafting|", "overview": "While on a family vacation, rafting expert Gail takes on a pair of armed killers while navigating a spectacularly violent river.", "text_for_embedding": "The River Wild (1994). Genres: Action, Adventure, Crime, Thriller. While on a family vacation, rafting expert Gail takes on a pair of armed killers while navigating a spectacularly violent river.. Tags: river, robber, boston, bank robber, marriage crisis, hostage-taking, rafting, criminal, white water rafting"} +{"id": "11359", "title": "The Indian in the Cupboard", "year": 1995, "duration_min": 96, "rating": 5.9, "genres": "Adventure, Family, Fantasy", "genres_pipe": "|Adventure|Family|Fantasy|", "keywords": "cupboard, games, puppet, parallel world, toy comes to life", "tags_pipe": "|cupboard|games|puppet|parallel world|toy comes to life|", "overview": "A nine-year-old boy gets a plastic Indian and a cupboard for his birthday and finds himself involved in adventure when the Indian comes to life and befriends him.", "text_for_embedding": "The Indian in the Cupboard (1995). Genres: Adventure, Family, Fantasy. A nine-year-old boy gets a plastic Indian and a cupboard for his birthday and finds himself involved in adventure when the Indian comes to life and befriends him.. Tags: cupboard, games, puppet, parallel world, toy comes to life"} +{"id": "82525", "title": "Savages", "year": 2012, "duration_min": 131, "rating": 6.2, "genres": "Crime, Drama, Thriller", "genres_pipe": "|Crime|Drama|Thriller|", "keywords": "widow, american abroad, eye gouging, dea agent, shot in the shoulder, gun in mouth, filmed killing, southern california, improvised explosive device, surrogate daughter, shot in the throat, laguna beach california, enforcer, gardner, skull mask", "tags_pipe": "|widow|american abroad|eye gouging|dea agent|shot in the shoulder|gun in mouth|filmed killing|southern california|improvised explosive device|surrogate daughter|shot in the throat|laguna beach california|enforcer|gardner|skull mask|", "overview": "Pot growers Ben and Chon face off against the Mexican drug cartel who kidnapped their shared girlfriend.", "text_for_embedding": "Savages (2012). Genres: Crime, Drama, Thriller. Pot growers Ben and Chon face off against the Mexican drug cartel who kidnapped their shared girlfriend.. Tags: widow, american abroad, eye gouging, dea agent, shot in the shoulder, gun in mouth, filmed killing, southern california, improvised explosive device, surrogate daughter, shot in the throat, laguna beach california, enforcer, gardner, skull mask"} +{"id": "9759", "title": "Cellular", "year": 2004, "duration_min": 94, "rating": 6.1, "genres": "Action, Adventure, Crime, Thriller", "genres_pipe": "|Action|Adventure|Crime|Thriller|", "keywords": "bank, mobile phone, telephone, weapon, police, duringcreditsstinger", "tags_pipe": "|bank|mobile phone|telephone|weapon|police|duringcreditsstinger|", "overview": "A young man receives an emergency phone call on his cell phone from an older woman. She claims to have been kidnapped – and the kidnappers have targeted her husband and child next.", "text_for_embedding": "Cellular (2004). Genres: Action, Adventure, Crime, Thriller. A young man receives an emergency phone call on his cell phone from an older woman. She claims to have been kidnapped – and the kidnappers have targeted her husband and child next.. Tags: bank, mobile phone, telephone, weapon, police, duringcreditsstinger"} +{"id": "9486", "title": "Johnny English", "year": 2003, "duration_min": 88, "rating": 6.0, "genres": "Adventure, Action, Comedy", "genres_pipe": "|Adventure|Action|Comedy|", "keywords": "spy, hero, queen, intelligence, coronation, funeral, secret agent, queen elisabeth ii, weapon, spoof, explosion, agent, pen, duringcreditsstinger", "tags_pipe": "|spy|hero|queen|intelligence|coronation|funeral|secret agent|queen elisabeth ii|weapon|spoof|explosion|agent|pen|duringcreditsstinger|", "overview": "Rowan plays the eponymous lead character in a spoof spy thriller. During the course of the story we follow our hero as he attempts to single-handedly save the country from falling into the hands of a despot.", "text_for_embedding": "Johnny English (2003). Genres: Adventure, Action, Comedy. Rowan plays the eponymous lead character in a spoof spy thriller. During the course of the story we follow our hero as he attempts to single-handedly save the country from falling into the hands of a despot.. Tags: spy, hero, queen, intelligence, coronation, funeral, secret agent, queen elisabeth ii, weapon, spoof, explosion, agent, pen, duringcreditsstinger"} +{"id": "9906", "title": "The Ant Bully", "year": 2006, "duration_min": 88, "rating": 5.5, "genres": "Fantasy, Adventure, Animation, Comedy, Family", "genres_pipe": "|Fantasy|Adventure|Animation|Comedy|Family|", "keywords": "ant, child hero, shrinking, ant-hill, children", "tags_pipe": "|ant|child hero|shrinking|ant-hill|children|", "overview": "Fed up with being targeted by the neighborhood bully, 10-year-old Lucas Nickle vents his frustrations on the anthill in his front yard ... until the insects shrink him to the size of a bug with a magic elixir. Convicted of \"crimes against the colony,\" Lucas can only regain his freedom by living with the ants and learning their ways.", "text_for_embedding": "The Ant Bully (2006). Genres: Fantasy, Adventure, Animation, Comedy, Family. Fed up with being targeted by the neighborhood bully, 10-year-old Lucas Nickle vents his frustrations on the anthill in his front yard ... until the insects shrink him to the size of a bug with a magic elixir. Convicted of \"crimes against the colony,\" Lucas can only regain his freedom by living with the ants and learning their ways.. Tags: ant, child hero, shrinking, ant-hill, children"} +{"id": "841", "title": "Dune", "year": 1984, "duration_min": 137, "rating": 6.5, "genres": "Action, Science Fiction, Adventure", "genres_pipe": "|Action|Science Fiction|Adventure|", "keywords": "prophecy, witch, monster, telepathy, atomic bomb, space marine, emperor, mutation, insurgence, space travel, guild, duke, water, chosen one, dystopia", "tags_pipe": "|prophecy|witch|monster|telepathy|atomic bomb|space marine|emperor|mutation|insurgence|space travel|guild|duke|water|chosen one|dystopia|", "overview": "In the year 10,191, the world is at war for control of the desert planet Dune – the only place where the time-travel substance 'Spice' can be found. But when one leader gives up control, it's only so he can stage a coup with some unsavory characters.", "text_for_embedding": "Dune (1984). Genres: Action, Science Fiction, Adventure. In the year 10,191, the world is at war for control of the desert planet Dune – the only place where the time-travel substance 'Spice' can be found. But when one leader gives up control, it's only so he can stage a coup with some unsavory characters.. Tags: prophecy, witch, monster, telepathy, atomic bomb, space marine, emperor, mutation, insurgence, space travel, guild, duke, water, chosen one, dystopia"} +{"id": "4688", "title": "Across the Universe", "year": 2007, "duration_min": 133, "rating": 7.1, "genres": "Adventure, Drama, Music, Romance", "genres_pipe": "|Adventure|Drama|Music|Romance|", "keywords": "riot, protest, musical, music, cultural difference, university, fantasy sequence, anti war, police arrest, march, woman director, 1960s", "tags_pipe": "|riot|protest|musical|music|cultural difference|university|fantasy sequence|anti war|police arrest|march|woman director|1960s|", "overview": "Musical based on The Beatles songbook and set in the 60s England, America, and Vietnam. The love story of Lucy and Jude is intertwined with the anti-war movement and social protests of the 60s.", "text_for_embedding": "Across the Universe (2007). Genres: Adventure, Drama, Music, Romance. Musical based on The Beatles songbook and set in the 60s England, America, and Vietnam. The love story of Lucy and Jude is intertwined with the anti-war movement and social protests of the 60s.. Tags: riot, protest, musical, music, cultural difference, university, fantasy sequence, anti war, police arrest, march, woman director, 1960s"} +{"id": "4148", "title": "Revolutionary Road", "year": 2008, "duration_min": 119, "rating": 6.7, "genres": "Drama, Romance", "genres_pipe": "|Drama|Romance|", "keywords": "adultery, jealousy, infidelity, career, marriage crisis, connecticut", "tags_pipe": "|adultery|jealousy|infidelity|career|marriage crisis|connecticut|", "overview": "A young couple living in a Connecticut suburb during the mid-1950s struggle to come to terms with their personal problems while trying to raise their two children. Based on a novel by Richard Yates.", "text_for_embedding": "Revolutionary Road (2008). Genres: Drama, Romance. A young couple living in a Connecticut suburb during the mid-1950s struggle to come to terms with their personal problems while trying to raise their two children. Based on a novel by Richard Yates.. Tags: adultery, jealousy, infidelity, career, marriage crisis, connecticut"} +{"id": "2207", "title": "16 Blocks", "year": 2006, "duration_min": 105, "rating": 6.2, "genres": "Action, Adventure, Crime, Thriller", "genres_pipe": "|Action|Adventure|Crime|Thriller|", "keywords": "mission of murder, male bonding, doing the right thing, people change", "tags_pipe": "|mission of murder|male bonding|doing the right thing|people change|", "overview": "An aging cop is assigned the ordinary task of escorting a fast-talking witness from police custody to a courthouse, but they find themselves running the gauntlet as other forces try to prevent them from getting there.", "text_for_embedding": "16 Blocks (2006). Genres: Action, Adventure, Crime, Thriller. An aging cop is assigned the ordinary task of escorting a fast-talking witness from police custody to a courthouse, but they find themselves running the gauntlet as other forces try to prevent them from getting there.. Tags: mission of murder, male bonding, doing the right thing, people change"} +{"id": "9381", "title": "Babylon A.D.", "year": 2008, "duration_min": 101, "rating": 5.4, "genres": "Action, Adventure, Science Fiction, Thriller", "genres_pipe": "|Action|Adventure|Science Fiction|Thriller|", "keywords": "submarine, baby, secret, future, mercenary, prosecution, protection, dystopia, moral conflict, smuggling, vision, pregnant, cyberpunk, sect", "tags_pipe": "|submarine|baby|secret|future|mercenary|prosecution|protection|dystopia|moral conflict|smuggling|vision|pregnant|cyberpunk|sect|", "overview": "In Babylon A.D Vin Diesel stars as a veteran-turned-mercenary who is hired to deliver a package from the ravages of post-apocalyptic Eastern Europe to a destination in the teeming megalopolis of New York City. The \"package\" is a mysterious young woman with a secret.", "text_for_embedding": "Babylon A.D. (2008). Genres: Action, Adventure, Science Fiction, Thriller. In Babylon A.D Vin Diesel stars as a veteran-turned-mercenary who is hired to deliver a package from the ravages of post-apocalyptic Eastern Europe to a destination in the teeming megalopolis of New York City. The \"package\" is a mysterious young woman with a secret.. Tags: submarine, baby, secret, future, mercenary, prosecution, protection, dystopia, moral conflict, smuggling, vision, pregnant, cyberpunk, sect"} +{"id": "9625", "title": "The Glimmer Man", "year": 1996, "duration_min": 92, "rating": 4.7, "genres": "Action, Adventure, Crime, Drama, Thriller", "genres_pipe": "|Action|Adventure|Crime|Drama|Thriller|", "keywords": "secret agent, past, cop, series of murders, homicide detective", "tags_pipe": "|secret agent|past|cop|series of murders|homicide detective|", "overview": "A former government operative renowned for his stealth, Jack Cole is now a Los Angeles police detective. When a series of horrible murders occurs in the metro area, Cole is assigned to the case, along with tough-talking fellow cop Jim Campbell. Although the two men clash, they gradually become effective partners as they uncover a conspiracy linked to the killings, which also involves terrorism and organized crime.", "text_for_embedding": "The Glimmer Man (1996). Genres: Action, Adventure, Crime, Drama, Thriller. A former government operative renowned for his stealth, Jack Cole is now a Los Angeles police detective. When a series of horrible murders occurs in the metro area, Cole is assigned to the case, along with tough-talking fellow cop Jim Campbell. Although the two men clash, they gradually become effective partners as they uncover a conspiracy linked to the killings, which also involves terrorism and organized crime.. Tags: secret agent, past, cop, series of murders, homicide detective"} +{"id": "9304", "title": "Multiplicity", "year": 1996, "duration_min": 117, "rating": 5.5, "genres": "Comedy, Fantasy, Science Fiction", "genres_pipe": "|Comedy|Fantasy|Science Fiction|", "keywords": "clone, mistake in person, cloning, experiment gone wrong, construction", "tags_pipe": "|clone|mistake in person|cloning|experiment gone wrong|construction|", "overview": "Construction worker Doug Kinney finds that the pressures of his working life, combined with his duties to his wife Laura and daughter Jennifer leaves him with little time for himself. However, he is approached by geneticist Dr. Owen Leeds, who offers Doug a rather unusual solution to his problems: cloning.", "text_for_embedding": "Multiplicity (1996). Genres: Comedy, Fantasy, Science Fiction. Construction worker Doug Kinney finds that the pressures of his working life, combined with his duties to his wife Laura and daughter Jennifer leaves him with little time for himself. However, he is approached by geneticist Dr. Owen Leeds, who offers Doug a rather unusual solution to his problems: cloning.. Tags: clone, mistake in person, cloning, experiment gone wrong, construction"} +{"id": "20856", "title": "Aliens in the Attic", "year": 2009, "duration_min": 86, "rating": 5.3, "genres": "Adventure, Comedy, Family, Fantasy, Science Fiction", "genres_pipe": "|Adventure|Comedy|Family|Fantasy|Science Fiction|", "keywords": "alien, comedy, duringcreditsstinger, beforecreditsstinger, live action and animation", "tags_pipe": "|alien|comedy|duringcreditsstinger|beforecreditsstinger|live action and animation|", "overview": "It's summer vacation, but the Pearson family kids are stuck at a boring lake house with their nerdy parents. That is until feisty, little, green aliens crash-land on the roof, with plans to conquer the house AND Earth! Using only their wits, courage and video game-playing skills, the youngsters must band together to defeat the aliens and save the world - but the toughest part might be keeping the whole thing a secret from their parents! Featuring an all-star cast including Ashley Tisdale, Andy Richter, Kevin Nealon, Tim Meadows and Doris Roberts, Aliens In The Attic is the most fun you can have on this planet!", "text_for_embedding": "Aliens in the Attic (2009). Genres: Adventure, Comedy, Family, Fantasy, Science Fiction. It's summer vacation, but the Pearson family kids are stuck at a boring lake house with their nerdy parents. That is until feisty, little, green aliens crash-land on the roof, with plans to conquer the house AND Earth! Using only their wits, courage and video game-playing skills, the youngsters must band together to defeat the aliens and save the world - but the toughest part might be keeping the whole thing a secret from their parents! Featuring an all-star cast including Ashley Tisdale, Andy Richter, Kevin Nealon, Tim Meadows and Doris Roberts, Aliens In The Attic is the most fun you can have on this planet!. Tags: alien, comedy, duringcreditsstinger, beforecreditsstinger, live action and animation"} +{"id": "5955", "title": "The Pledge", "year": 2001, "duration_min": 123, "rating": 6.5, "genres": "Crime, Drama, Mystery, Thriller", "genres_pipe": "|Crime|Drama|Mystery|Thriller|", "keywords": "promise, murder, drawing, porcupine, pledge, retirement party, criminal profile", "tags_pipe": "|promise|murder|drawing|porcupine|pledge|retirement party|criminal profile|", "overview": "A police chief about to retire pledges to help a woman find her daughter's killer. Based on a story by Swiss writer Friedrich Dürrenmatt.", "text_for_embedding": "The Pledge (2001). Genres: Crime, Drama, Mystery, Thriller. A police chief about to retire pledges to help a woman find her daughter's killer. Based on a story by Swiss writer Friedrich Dürrenmatt.. Tags: promise, murder, drawing, porcupine, pledge, retirement party, criminal profile"} +{"id": "9899", "title": "The Producers", "year": 2005, "duration_min": 134, "rating": 6.1, "genres": "Comedy, Music", "genres_pipe": "|Comedy|Music|", "keywords": "cheating, adolf hitler, success, music, blonde, funny nazi, producer, broadway musical, aftercreditsstinger, woman director", "tags_pipe": "|cheating|adolf hitler|success|music|blonde|funny nazi|producer|broadway musical|aftercreditsstinger|woman director|", "overview": "After putting together another Broadway flop, down-on-his-luck producer Max Bialystock teams up with timid accountant Leo Bloom in a get-rich-quick scheme to put on the world's worst show.", "text_for_embedding": "The Producers (2005). Genres: Comedy, Music. After putting together another Broadway flop, down-on-his-luck producer Max Bialystock teams up with timid accountant Leo Bloom in a get-rich-quick scheme to put on the world's worst show.. Tags: cheating, adolf hitler, success, music, blonde, funny nazi, producer, broadway musical, aftercreditsstinger, woman director"} +{"id": "9826", "title": "The Phantom", "year": 1996, "duration_min": 100, "rating": 4.7, "genres": "Adventure, Action", "genres_pipe": "|Adventure|Action|", "keywords": "secret identity, gold, gangster boss, phantom, silver, power, battle for power, jade, based on comic book, jungle, masked hero, crystal skull", "tags_pipe": "|secret identity|gold|gangster boss|phantom|silver|power|battle for power|jade|based on comic book|jungle|masked hero|crystal skull|", "overview": "The 21st successor to the role of Bengalla's resident superhero must travel to New York to prevent a rich madman from obtaining three magic skulls that would give him the secret to ultimate power.", "text_for_embedding": "The Phantom (1996). Genres: Adventure, Action. The 21st successor to the role of Bengalla's resident superhero must travel to New York to prevent a rich madman from obtaining three magic skulls that would give him the secret to ultimate power.. Tags: secret identity, gold, gangster boss, phantom, silver, power, battle for power, jade, based on comic book, jungle, masked hero, crystal skull"} +{"id": "21355", "title": "All the Pretty Horses", "year": 2000, "duration_min": 117, "rating": 5.8, "genres": "Drama, Romance, Western", "genres_pipe": "|Drama|Romance|Western|", "keywords": "dancing, chess, prisoner, coffin, wrong accusal, ranch, airplane, beating, jail, rifle, corpse, lasso, cautery", "tags_pipe": "|dancing|chess|prisoner|coffin|wrong accusal|ranch|airplane|beating|jail|rifle|corpse|lasso|cautery|", "overview": "The year is 1949. A young Texan named John Grady finds himself without a home after his mother sells the ranch where he has spent his entire life. Lured south of the border by the romance of cowboy life and the promise of a fresh start, Cole and his pal embark on an adventure that will test their resilience, define their maturity, and change their lives forever.", "text_for_embedding": "All the Pretty Horses (2000). Genres: Drama, Romance, Western. The year is 1949. A young Texan named John Grady finds himself without a home after his mother sells the ranch where he has spent his entire life. Lured south of the border by the romance of cowboy life and the promise of a fresh start, Cole and his pal embark on an adventure that will test their resilience, define their maturity, and change their lives forever.. Tags: dancing, chess, prisoner, coffin, wrong accusal, ranch, airplane, beating, jail, rifle, corpse, lasso, cautery"} +{"id": "10858", "title": "Nixon", "year": 1995, "duration_min": 192, "rating": 7.1, "genres": "History, Drama", "genres_pipe": "|History|Drama|", "keywords": "usa president, presidential election, watergate scandal, biography, government, historical figure", "tags_pipe": "|usa president|presidential election|watergate scandal|biography|government|historical figure|", "overview": "An all-star cast powers this epic look at American President Richard M. Nixon, a man carrying the fate of the world on his shoulders while battling the self-destructive demands from within. Spanning his troubled boyhood in California to the shocking Watergate scandal that would end his presidency.", "text_for_embedding": "Nixon (1995). Genres: History, Drama. An all-star cast powers this epic look at American President Richard M. Nixon, a man carrying the fate of the world on his shoulders while battling the self-destructive demands from within. Spanning his troubled boyhood in California to the shocking Watergate scandal that would end his presidency.. Tags: usa president, presidential election, watergate scandal, biography, government, historical figure"} +{"id": "11439", "title": "The Ghost Writer", "year": 2010, "duration_min": 128, "rating": 6.7, "genres": "Thriller, Mystery", "genres_pipe": "|Thriller|Mystery|", "keywords": "london england, cia, war crimes, tony blair, author", "tags_pipe": "|london england|cia|war crimes|tony blair|author|", "overview": "A writer stumbles upon a long-hidden secret when he agrees to help former British Prime Minister Adam Lang complete his memoirs on a remote island after the politician's assistant drowns in a mysterious accident. In director Roman Polanski's tense drama, the author realizes that his discovery threatens some very powerful people who will do anything to ensure that certain episodes from Lang's past remain buried.", "text_for_embedding": "The Ghost Writer (2010). Genres: Thriller, Mystery. A writer stumbles upon a long-hidden secret when he agrees to help former British Prime Minister Adam Lang complete his memoirs on a remote island after the politician's assistant drowns in a mysterious accident. In director Roman Polanski's tense drama, the author realizes that his discovery threatens some very powerful people who will do anything to ensure that certain episodes from Lang's past remain buried.. Tags: london england, cia, war crimes, tony blair, author"} +{"id": "9457", "title": "Deep Rising", "year": 1998, "duration_min": 106, "rating": 6.0, "genres": "Adventure, Action, Horror, Science Fiction", "genres_pipe": "|Adventure|Action|Horror|Science Fiction|", "keywords": "ocean liner, sea monster, jewel heist, armed robbery", "tags_pipe": "|ocean liner|sea monster|jewel heist|armed robbery|", "overview": "A group of heavily armed hijackers board a luxury ocean liner in the South Pacific Ocean to loot it, only to do battle with a series of large-sized, tentacled, man-eating sea creatures who have taken over the ship first.", "text_for_embedding": "Deep Rising (1998). Genres: Adventure, Action, Horror, Science Fiction. A group of heavily armed hijackers board a luxury ocean liner in the South Pacific Ocean to loot it, only to do battle with a series of large-sized, tentacled, man-eating sea creatures who have taken over the ship first.. Tags: ocean liner, sea monster, jewel heist, armed robbery"} +{"id": "12412", "title": "Miracle at St. Anna", "year": 2008, "duration_min": 160, "rating": 6.3, "genres": "Drama, War", "genres_pipe": "|Drama|War|", "keywords": "black people, world war ii, toscana, village, soldier, partisan", "tags_pipe": "|black people|world war ii|toscana|village|soldier|partisan|", "overview": "Miracle at St. Anna chronicles the story of four American soldiers who are members of the all-black 92nd \"Buffalo Soldier\" Division stationed in Tuscany, Italy during World War II.", "text_for_embedding": "Miracle at St. Anna (2008). Genres: Drama, War. Miracle at St. Anna chronicles the story of four American soldiers who are members of the all-black 92nd \"Buffalo Soldier\" Division stationed in Tuscany, Italy during World War II.. Tags: black people, world war ii, toscana, village, soldier, partisan"} +{"id": "1494", "title": "Curse of the Golden Flower", "year": 2006, "duration_min": 114, "rating": 6.6, "genres": "Action, Drama, Fantasy", "genres_pipe": "|Action|Drama|Fantasy|", "keywords": "poison, china, martial arts, swordplay, fight, toxication, secret society, passion, planned murder, power, palace, plan, battle for power, tang dynasty, pomp", "tags_pipe": "|poison|china|martial arts|swordplay|fight|toxication|secret society|passion|planned murder|power|palace|plan|battle for power|tang dynasty|pomp|", "overview": "During China's Tang dynasty the emperor has taken the princess of a neighboring province as wife. She has borne him two sons and raised his eldest. Now his control over his dominion is complete, including the royal family itself.", "text_for_embedding": "Curse of the Golden Flower (2006). Genres: Action, Drama, Fantasy. During China's Tang dynasty the emperor has taken the princess of a neighboring province as wife. She has borne him two sons and raised his eldest. Now his control over his dominion is complete, including the royal family itself.. Tags: poison, china, martial arts, swordplay, fight, toxication, secret society, passion, planned murder, power, palace, plan, battle for power, tang dynasty, pomp"} +{"id": "13184", "title": "Bangkok Dangerous", "year": 2008, "duration_min": 99, "rating": 5.0, "genres": "Action, Crime, Thriller", "genres_pipe": "|Action|Crime|Thriller|", "keywords": "assassin, asia, gun, deaf-mute, hitman, bangkok, thailand, strip club, apprentice, video surveillance, remake, murder, betrayal, mafia, shootout", "tags_pipe": "|assassin|asia|gun|deaf-mute|hitman|bangkok|thailand|strip club|apprentice|video surveillance|remake|murder|betrayal|mafia|shootout|", "overview": "When carrying out a hit, assassin Joe (Cage) always makes use of the knowledge of the local population. On arriving in Bangkok, Joe meets street kid Kong and he becomes his primary aide. But when Kong is nearly killed, he asks Joe to train him up in the deadly arts and unwittingly becomes a target of a band of killers.", "text_for_embedding": "Bangkok Dangerous (2008). Genres: Action, Crime, Thriller. When carrying out a hit, assassin Joe (Cage) always makes use of the knowledge of the local population. On arriving in Bangkok, Joe meets street kid Kong and he becomes his primary aide. But when Kong is nearly killed, he asks Joe to train him up in the deadly arts and unwittingly becomes a target of a band of killers.. Tags: assassin, asia, gun, deaf-mute, hitman, bangkok, thailand, strip club, apprentice, video surveillance, remake, murder, betrayal, mafia, shootout"} +{"id": "2185", "title": "Big Trouble", "year": 2002, "duration_min": 85, "rating": 6.3, "genres": "Action, Comedy, Thriller", "genres_pipe": "|Action|Comedy|Thriller|", "keywords": "gadfly", "tags_pipe": "|gadfly|", "overview": "The story of how a mysterious suitcase brings together, and changes, the lives of a divorced dad, an unhappy housewife, two hitmen, a pair of street thugs, two love struck teens, two FBI men and a psychedelic toad. Based on Pulitzer Prize-winning humorist Dave Barry's best-selling first novel, \"Big Trouble.\"", "text_for_embedding": "Big Trouble (2002). Genres: Action, Comedy, Thriller. The story of how a mysterious suitcase brings together, and changes, the lives of a divorced dad, an unhappy housewife, two hitmen, a pair of street thugs, two love struck teens, two FBI men and a psychedelic toad. Based on Pulitzer Prize-winning humorist Dave Barry's best-selling first novel, \"Big Trouble.\". Tags: gadfly"} +{"id": "6639", "title": "Love in the Time of Cholera", "year": 2007, "duration_min": 139, "rating": 6.4, "genres": "Drama, Romance", "genres_pipe": "|Drama|Romance|", "keywords": "sex, marriage proposal, new love, colombia, letter, love letter, dying and death, ship, marriage, cholera, teacher, principal, doctor, extramarital affair, emotions", "tags_pipe": "|sex|marriage proposal|new love|colombia|letter|love letter|dying and death|ship|marriage|cholera|teacher|principal|doctor|extramarital affair|emotions|", "overview": "In Colombia just after the Great War, an old man falls from a ladder; dying, he professes great love for his wife. After the funeral, a man calls on the widow - she dismisses him angrily. Flash back more than 50 years to the day Florentino Ariza, a telegraph boy, falls in love with Fermina Daza, the daughter of a mule trader.", "text_for_embedding": "Love in the Time of Cholera (2007). Genres: Drama, Romance. In Colombia just after the Great War, an old man falls from a ladder; dying, he professes great love for his wife. After the funeral, a man calls on the widow - she dismisses him angrily. Flash back more than 50 years to the day Florentino Ariza, a telegraph boy, falls in love with Fermina Daza, the daughter of a mule trader.. Tags: sex, marriage proposal, new love, colombia, letter, love letter, dying and death, ship, marriage, cholera, teacher, principal, doctor, extramarital affair, emotions"} +{"id": "38153", "title": "Shadow Conspiracy", "year": 1997, "duration_min": 103, "rating": 4.0, "genres": "Action, Thriller", "genres_pipe": "|Action|Thriller|", "keywords": "", "tags_pipe": "", "overview": "Bobby Bishop (Sheen) is a special assistant to the President of the United States. Accidentally, he meets his friend professor Pochenko on the street. Pochenko has time to tell Bishop about some conspiracy in the White House but then immediately gets killed by an assassin. Now bad guys are after Bobby as the only man who knows about a plot. Bishop must now not only survive, but to stop the conspirators from achieving their goal. And he doesn't know whom to trust.", "text_for_embedding": "Shadow Conspiracy (1997). Genres: Action, Thriller. Bobby Bishop (Sheen) is a special assistant to the President of the United States. Accidentally, he meets his friend professor Pochenko on the street. Pochenko has time to tell Bishop about some conspiracy in the White House but then immediately gets killed by an assassin. Now bad guys are after Bobby as the only man who knows about a plot. Bishop must now not only survive, but to stop the conspirators from achieving their goal. And he doesn't know whom to trust.. Tags: "} +{"id": "58233", "title": "Johnny English Reborn", "year": 2011, "duration_min": 101, "rating": 6.0, "genres": "Crime, Adventure, Action, Comedy, Thriller", "genres_pipe": "|Crime|Adventure|Action|Comedy|Thriller|", "keywords": "buddhist monk, cooking, prime minister, kitchen, secret agent, sequel, mind control, james bond spoof, incompetence, female boss, klutz, aftercreditsstinger, assassination attempt", "tags_pipe": "|buddhist monk|cooking|prime minister|kitchen|secret agent|sequel|mind control|james bond spoof|incompetence|female boss|klutz|aftercreditsstinger|assassination attempt|", "overview": "The most prominent heads of state in the world begin gathering for a conference that could have a major impact on global politics. When MI-7 receives word that the Chinese premier has become the target of some high-powered killers, it falls on Johnny English to save the day. Armed with the latest high-tech weaponry and gadgets that would make even James Bond jealous, the once-disgraced agent uncovers evidence of a massive conspiracy involving some of the world's most powerful organisations, and vows to redeem his tarnished reputation by stopping the killers before they can strike.", "text_for_embedding": "Johnny English Reborn (2011). Genres: Crime, Adventure, Action, Comedy, Thriller. The most prominent heads of state in the world begin gathering for a conference that could have a major impact on global politics. When MI-7 receives word that the Chinese premier has become the target of some high-powered killers, it falls on Johnny English to save the day. Armed with the latest high-tech weaponry and gadgets that would make even James Bond jealous, the once-disgraced agent uncovers evidence of a massive conspiracy involving some of the world's most powerful organisations, and vows to redeem his tarnished reputation by stopping the killers before they can strike.. Tags: buddhist monk, cooking, prime minister, kitchen, secret agent, sequel, mind control, james bond spoof, incompetence, female boss, klutz, aftercreditsstinger, assassination attempt"} +{"id": "116977", "title": "Foodfight!", "year": 2012, "duration_min": 87, "rating": 2.3, "genres": "Animation, Action, Comedy, Family", "genres_pipe": "|Animation|Action|Comedy|Family|", "keywords": "supermarket, fight, product placement, computer animation, food", "tags_pipe": "|supermarket|fight|product placement|computer animation|food|", "overview": "Dex, a superdog sleuth, is the law of the land when the world's most recognized brands take on the forces of evil and the devilish Brand X.", "text_for_embedding": "Foodfight! (2012). Genres: Animation, Action, Comedy, Family. Dex, a superdog sleuth, is the law of the land when the world's most recognized brands take on the forces of evil and the devilish Brand X.. Tags: supermarket, fight, product placement, computer animation, food"} +{"id": "68734", "title": "Argo", "year": 2012, "duration_min": 120, "rating": 7.1, "genres": "Drama, Thriller", "genres_pipe": "|Drama|Thriller|", "keywords": "cia, wife husband relationship, document, revolution, hiding place, canadian, press conference, biography, hanged man, american abroad, crane, subtitled scene, movie poster, based on article, extraction", "tags_pipe": "|cia|wife husband relationship|document|revolution|hiding place|canadian|press conference|biography|hanged man|american abroad|crane|subtitled scene|movie poster|based on article|extraction|", "overview": "As the Iranian revolution reaches a boiling point, a CIA 'exfiltration' specialist concocts a risky plan to free six Americans who have found shelter at the home of the Canadian ambassador.", "text_for_embedding": "Argo (2012). Genres: Drama, Thriller. As the Iranian revolution reaches a boiling point, a CIA 'exfiltration' specialist concocts a risky plan to free six Americans who have found shelter at the home of the Canadian ambassador.. Tags: cia, wife husband relationship, document, revolution, hiding place, canadian, press conference, biography, hanged man, american abroad, crane, subtitled scene, movie poster, based on article, extraction"} +{"id": "5503", "title": "The Fugitive", "year": 1993, "duration_min": 130, "rating": 7.2, "genres": "Adventure, Action, Thriller, Crime, Mystery", "genres_pipe": "|Adventure|Action|Thriller|Crime|Mystery|", "keywords": "chicago, showdown, undercover, surgeon, death sentence, doomed man, lethal injection, chase, remake, betrayal, on the run, train crash, escape, fugitive, based on tv series", "tags_pipe": "|chicago|showdown|undercover|surgeon|death sentence|doomed man|lethal injection|chase|remake|betrayal|on the run|train crash|escape|fugitive|based on tv series|", "overview": "Wrongfully accused of murdering his wife, Richard Kimble escapes from the law in an attempt to find her killer and clear his name. Pursuing him is a team of U.S. marshals led by Deputy Samuel Gerard, a determined detective who will not rest until Richard is captured. As Richard leads the team through a series of intricate chases, he discovers the secrets behind his wife's death and struggles to expose the killer before it is too late.", "text_for_embedding": "The Fugitive (1993). Genres: Adventure, Action, Thriller, Crime, Mystery. Wrongfully accused of murdering his wife, Richard Kimble escapes from the law in an attempt to find her killer and clear his name. Pursuing him is a team of U.S. marshals led by Deputy Samuel Gerard, a determined detective who will not rest until Richard is captured. As Richard leads the team through a series of intricate chases, he discovers the secrets behind his wife's death and struggles to expose the killer before it is too late.. Tags: chicago, showdown, undercover, surgeon, death sentence, doomed man, lethal injection, chase, remake, betrayal, on the run, train crash, escape, fugitive, based on tv series"} +{"id": "27573", "title": "The Bounty Hunter", "year": 2010, "duration_min": 110, "rating": 5.5, "genres": "Action", "genres_pipe": "|Action|", "keywords": "bounty hunter, ex-husband ex-wife relationship", "tags_pipe": "|bounty hunter|ex-husband ex-wife relationship|", "overview": "Milo Boyd is a bounty hunter whose latest gig is rather satisfying, as he finds out that the bail-skipper he must chase down is his own ex-wife, Nicole -- but she has no intention of getting nabbed without a fight. Complicating matters, Nicole's wannabe-boyfriend, Stewart, joins the chase.", "text_for_embedding": "The Bounty Hunter (2010). Genres: Action. Milo Boyd is a bounty hunter whose latest gig is rather satisfying, as he finds out that the bail-skipper he must chase down is his own ex-wife, Nicole -- but she has no intention of getting nabbed without a fight. Complicating matters, Nicole's wannabe-boyfriend, Stewart, joins the chase.. Tags: bounty hunter, ex-husband ex-wife relationship"} +{"id": "819", "title": "Sleepers", "year": 1996, "duration_min": 147, "rating": 7.3, "genres": "Crime, Drama, Thriller", "genres_pipe": "|Crime|Drama|Thriller|", "keywords": "child abuse, sadistic, sexual abuse, pastor, repayment, juvenile prison, court case, pub, court, juvenile delinquent, child", "tags_pipe": "|child abuse|sadistic|sexual abuse|pastor|repayment|juvenile prison|court case|pub|court|juvenile delinquent|child|", "overview": "Two gangsters seek revenge on the state jail worker who during their stay at a youth prison sexually abused them. A sensational court hearing takes place to charge him for the crimes. A moving drama from director Barry Levinson.", "text_for_embedding": "Sleepers (1996). Genres: Crime, Drama, Thriller. Two gangsters seek revenge on the state jail worker who during their stay at a youth prison sexually abused them. A sensational court hearing takes place to charge him for the crimes. A moving drama from director Barry Levinson.. Tags: child abuse, sadistic, sexual abuse, pastor, repayment, juvenile prison, court case, pub, court, juvenile delinquent, child"} +{"id": "1369", "title": "Rambo: First Blood Part II", "year": 1985, "duration_min": 96, "rating": 6.3, "genres": "Action, Adventure, Thriller, War", "genres_pipe": "|Action|Adventure|Thriller|War|", "keywords": "usa, vietnam veteran, submachine gun, prisoner, prisoners of war, liberation of prisoners, liberation, vietnam, vietnam war, chase, machinegun, u.s. army, forest, photography, government", "tags_pipe": "|usa|vietnam veteran|submachine gun|prisoner|prisoners of war|liberation of prisoners|liberation|vietnam|vietnam war|chase|machinegun|u.s. army|forest|photography|government|", "overview": "John Rambo is released from prison by the government for a top-secret covert mission to the last place on Earth he'd want to return - the jungles of Vietnam.", "text_for_embedding": "Rambo: First Blood Part II (1985). Genres: Action, Adventure, Thriller, War. John Rambo is released from prison by the government for a top-secret covert mission to the last place on Earth he'd want to return - the jungles of Vietnam.. Tags: usa, vietnam veteran, submachine gun, prisoner, prisoners of war, liberation of prisoners, liberation, vietnam, vietnam war, chase, machinegun, u.s. army, forest, photography, government"} +{"id": "9623", "title": "The Juror", "year": 1996, "duration_min": 118, "rating": 5.5, "genres": "Drama, Thriller", "genres_pipe": "|Drama|Thriller|", "keywords": "jurors, blackmail, court case, son, trial, courtroom", "tags_pipe": "|jurors|blackmail|court case|son|trial|courtroom|", "overview": "With his gangster boss on trial for murder, a mob thug known as \"the Teacher\" tells Annie Laird she must talk her fellow jurors into a not-guilty verdict, implying that he'll kill her son Oliver if she fails. She manages to do this, but, when it becomes clear that the mobsters might want to silence her for good, she sends Oliver abroad and tries to gather evidence of the plot against her, setting up a final showdown.", "text_for_embedding": "The Juror (1996). Genres: Drama, Thriller. With his gangster boss on trial for murder, a mob thug known as \"the Teacher\" tells Annie Laird she must talk her fellow jurors into a not-guilty verdict, implying that he'll kill her son Oliver if she fails. She manages to do this, but, when it becomes clear that the mobsters might want to silence her for good, she sends Oliver abroad and tries to gather evidence of the plot against her, setting up a final showdown.. Tags: jurors, blackmail, court case, son, trial, courtroom"} +{"id": "10895", "title": "Pinocchio", "year": 1940, "duration_min": 88, "rating": 6.9, "genres": "Animation, Family", "genres_pipe": "|Animation|Family|", "keywords": "italy, lie, magic, fairy, pinocchio, carnival, wish, boy, nose, puppet, animation, pool, conscience, jackass, figaro", "tags_pipe": "|italy|lie|magic|fairy|pinocchio|carnival|wish|boy|nose|puppet|animation|pool|conscience|jackass|figaro|", "overview": "Lonely toymaker Geppetto has his wishes answered when the Blue Fairy arrives to bring his wooden puppet Pinocchio to life. Before becoming a real boy, however, Pinocchio must prove he's worthy as he sets off on an adventure with his whistling sidekick and conscience, Jiminy Cricket. From Stromboli's circus to Pleasure Island, Pinocchio is tested by many temptations, but slowly learns how to navigate right from wrong. With a few mishaps along the way, Geppetto's \"little woodenhead\" finally gets it right, proving that when you wish upon a star dreams really can come true!", "text_for_embedding": "Pinocchio (1940). Genres: Animation, Family. Lonely toymaker Geppetto has his wishes answered when the Blue Fairy arrives to bring his wooden puppet Pinocchio to life. Before becoming a real boy, however, Pinocchio must prove he's worthy as he sets off on an adventure with his whistling sidekick and conscience, Jiminy Cricket. From Stromboli's circus to Pleasure Island, Pinocchio is tested by many temptations, but slowly learns how to navigate right from wrong. With a few mishaps along the way, Geppetto's \"little woodenhead\" finally gets it right, proving that when you wish upon a star dreams really can come true!. Tags: italy, lie, magic, fairy, pinocchio, carnival, wish, boy, nose, puppet, animation, pool, conscience, jackass, figaro"} +{"id": "10935", "title": "Heaven's Gate", "year": 1980, "duration_min": 219, "rating": 6.4, "genres": "Action, Drama, History, Western", "genres_pipe": "|Action|Drama|History|Western|", "keywords": "montana, showdown, brothel, marshal, dance, immigrant, studies, idealist", "tags_pipe": "|montana|showdown|brothel|marshal|dance|immigrant|studies|idealist|", "overview": "Harvard graduate James Averill (Kris Kristofferson) is the sheriff of prosperous Jackson County, Wyo., when a battle erupts between the area's poverty-stricken immigrants and its wealthy cattle farmers. The politically connected ranch owners fight the immigrants with the help of Nathan Champion (Christopher Walken), a mercenary competing with Averill for the love of local madam Ella Watson (Isabelle Huppert). As the struggle escalates, Averill and Champion begin to question their decisions.", "text_for_embedding": "Heaven's Gate (1980). Genres: Action, Drama, History, Western. Harvard graduate James Averill (Kris Kristofferson) is the sheriff of prosperous Jackson County, Wyo., when a battle erupts between the area's poverty-stricken immigrants and its wealthy cattle farmers. The politically connected ranch owners fight the immigrants with the help of Nathan Champion (Christopher Walken), a mercenary competing with Averill for the love of local madam Ella Watson (Isabelle Huppert). As the struggle escalates, Averill and Champion begin to question their decisions.. Tags: montana, showdown, brothel, marshal, dance, immigrant, studies, idealist"} +{"id": "834", "title": "Underworld: Evolution", "year": 2006, "duration_min": 106, "rating": 6.4, "genres": "Fantasy, Action, Science Fiction, Thriller", "genres_pipe": "|Fantasy|Action|Science Fiction|Thriller|", "keywords": "budapest, key, vampire, light, werewolf, evolution, fang vamp", "tags_pipe": "|budapest|key|vampire|light|werewolf|evolution|fang vamp|", "overview": "As the war between the vampires and the Lycans rages on, Selene, a former member of the Death Dealers (an elite vampire special forces unit that hunts werewolves), and Michael, the werewolf hybrid, work together in an effort to unlock the secrets of their respective bloodlines.", "text_for_embedding": "Underworld: Evolution (2006). Genres: Fantasy, Action, Science Fiction, Thriller. As the war between the vampires and the Lycans rages on, Selene, a former member of the Death Dealers (an elite vampire special forces unit that hunts werewolves), and Michael, the werewolf hybrid, work together in an effort to unlock the secrets of their respective bloodlines.. Tags: budapest, key, vampire, light, werewolf, evolution, fang vamp"} +{"id": "228066", "title": "Victor Frankenstein", "year": 2015, "duration_min": 109, "rating": 5.6, "genres": "Drama, Science Fiction, Thriller", "genres_pipe": "|Drama|Science Fiction|Thriller|", "keywords": "london england, human experimentation, frankenstein, reanimated corpse, frankenstein's monster, science experiment, 19th century", "tags_pipe": "|london england|human experimentation|frankenstein|reanimated corpse|frankenstein's monster|science experiment|19th century|", "overview": "Eccentric scientist Victor Von Frankenstein creates a grotesque creature in an unorthodox scientific experiment.", "text_for_embedding": "Victor Frankenstein (2015). Genres: Drama, Science Fiction, Thriller. Eccentric scientist Victor Von Frankenstein creates a grotesque creature in an unorthodox scientific experiment.. Tags: london england, human experimentation, frankenstein, reanimated corpse, frankenstein's monster, science experiment, 19th century"} +{"id": "711", "title": "Finding Forrester", "year": 2000, "duration_min": 136, "rating": 7.0, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "upper class, brother brother relationship, scotland, poetry, based on novel, mentor, becoming an adult, professor, literature, intellectually gifted, plagiarism, literature competition, private school, manuscript, seclusion", "tags_pipe": "|upper class|brother brother relationship|scotland|poetry|based on novel|mentor|becoming an adult|professor|literature|intellectually gifted|plagiarism|literature competition|private school|manuscript|seclusion|", "overview": "Gus van Sant tells the story of a young African American man named Jamal who confronts his talents while living on the streets of the Bronx. He accidentally runs into an old writer named Forrester who discovers his passion for writing. With help from his new mentor Jamal receives a scholarship to a private school.", "text_for_embedding": "Finding Forrester (2000). Genres: Drama. Gus van Sant tells the story of a young African American man named Jamal who confronts his talents while living on the streets of the Bronx. He accidentally runs into an old writer named Forrester who discovers his passion for writing. With help from his new mentor Jamal receives a scholarship to a private school.. Tags: upper class, brother brother relationship, scotland, poetry, based on novel, mentor, becoming an adult, professor, literature, intellectually gifted, plagiarism, literature competition, private school, manuscript, seclusion"} +{"id": "10468", "title": "28 Days", "year": 2000, "duration_min": 103, "rating": 6.0, "genres": "Comedy, Drama", "genres_pipe": "|Comedy|Drama|", "keywords": "alcoholism, urteil, car crash, wedding, withdrawal, woman director", "tags_pipe": "|alcoholism|urteil|car crash|wedding|withdrawal|woman director|", "overview": "After getting into a car accident while drunk on the day of her sister's wedding, Gwen Cummings is given a choice between prison or a rehab center. She chooses rehab, but is extremely resistant to taking part in any of the treatment programs they have to offer, refusing to admit that she has an alcohol addiction.", "text_for_embedding": "28 Days (2000). Genres: Comedy, Drama. After getting into a car accident while drunk on the day of her sister's wedding, Gwen Cummings is given a choice between prison or a rehab center. She chooses rehab, but is extremely resistant to taking part in any of the treatment programs they have to offer, refusing to admit that she has an alcohol addiction.. Tags: alcoholism, urteil, car crash, wedding, withdrawal, woman director"} +{"id": "10027", "title": "Unleashed", "year": 2005, "duration_min": 103, "rating": 6.6, "genres": "Action, Crime", "genres_pipe": "|Action|Crime|", "keywords": "martial arts, hitman, serial killer", "tags_pipe": "|martial arts|hitman|serial killer|", "overview": "Raised as a slave, Danny is used to fighting for his survival. In fact, his \"master,\" Bart, thinks of him as a pet and goes as far as leashing him with a collar so they can make money in fight clubs, where Danny is the main contender. When Bart's crew is in a car accident, Danny escapes and meets a blind, kindhearted piano tuner who takes him in and uses music to free the fighter's long-buried heart.", "text_for_embedding": "Unleashed (2005). Genres: Action, Crime. Raised as a slave, Danny is used to fighting for his survival. In fact, his \"master,\" Bart, thinks of him as a pet and goes as far as leashing him with a collar so they can make money in fight clubs, where Danny is the main contender. When Bart's crew is in a car accident, Danny escapes and meets a blind, kindhearted piano tuner who takes him in and uses music to free the fighter's long-buried heart.. Tags: martial arts, hitman, serial killer"} +{"id": "11812", "title": "The Sweetest Thing", "year": 2002, "duration_min": 84, "rating": 5.3, "genres": "Romance, Comedy", "genres_pipe": "|Romance|Comedy|", "keywords": "roommate, marriage, aftercreditsstinger, duringcreditsstinger", "tags_pipe": "|roommate|marriage|aftercreditsstinger|duringcreditsstinger|", "overview": "Christina's love life is stuck in neutral. After years of avoiding the hazards of a meaningful relationship, one night while club-hopping with her girlfriends, she meets Peter, her perfect match. Fed up with playing games, she finally gets the courage to let her guard down and follow her heart, only to discover that Peter has suddenly left town. Accompanied by Courtney, she sets out to capture the one that got away.", "text_for_embedding": "The Sweetest Thing (2002). Genres: Romance, Comedy. Christina's love life is stuck in neutral. After years of avoiding the hazards of a meaningful relationship, one night while club-hopping with her girlfriends, she meets Peter, her perfect match. Fed up with playing games, she finally gets the courage to let her guard down and follow her heart, only to discover that Peter has suddenly left town. Accompanied by Courtney, she sets out to capture the one that got away.. Tags: roommate, marriage, aftercreditsstinger, duringcreditsstinger"} +{"id": "37233", "title": "The Firm", "year": 1993, "duration_min": 154, "rating": 6.6, "genres": "Drama, Mystery, Thriller", "genres_pipe": "|Drama|Mystery|Thriller|", "keywords": "fbi, law, tennessee, lawyer, law firm, bar exam", "tags_pipe": "|fbi|law|tennessee|lawyer|law firm|bar exam|", "overview": "Mitch McDeere is a young man with a promising future in Law. About to sit his Bar exam, he is approached by 'The Firm' and made an offer he doesn't refuse. Seduced by the money and gifts showered on him, he is totally oblivious to the more sinister side of his company. Then, two Associates are murdered. The FBI contact him, asking him for information and suddenly his life is ruined. He has a choice - work with the FBI, or stay with the Firm. Either way he will lose his life as he knows it. Mitch figures the only way out is to follow his own plan...", "text_for_embedding": "The Firm (1993). Genres: Drama, Mystery, Thriller. Mitch McDeere is a young man with a promising future in Law. About to sit his Bar exam, he is approached by 'The Firm' and made an offer he doesn't refuse. Seduced by the money and gifts showered on him, he is totally oblivious to the more sinister side of his company. Then, two Associates are murdered. The FBI contact him, asking him for information and suddenly his life is ruined. He has a choice - work with the FBI, or stay with the Firm. Either way he will lose his life as he knows it. Mitch figures the only way out is to follow his own plan.... Tags: fbi, law, tennessee, lawyer, law firm, bar exam"} +{"id": "37950", "title": "Charlie St. Cloud", "year": 2010, "duration_min": 99, "rating": 6.8, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "brother brother relationship, based on novel, sailing, ghost, young adult", "tags_pipe": "|brother brother relationship|based on novel|sailing|ghost|young adult|", "overview": "Accomplished sailor Charlie St. Cloud has the adoration of his mother Claire and his little brother Sam, as well as a college scholarship that will lead him far from his sleepy Pacific Northwest hometown. But his bright future is cut short when a tragedy strikes and takes his dreams with it. After his high-school classmate Tess returns home unexpectedly, Charlie grows torn between honoring a promise he made four years earlier and moving forward with newfound love. And as he finds the courage to let go of the past for good, Charlie discovers the soul most worth saving is his own.", "text_for_embedding": "Charlie St. Cloud (2010). Genres: Drama. Accomplished sailor Charlie St. Cloud has the adoration of his mother Claire and his little brother Sam, as well as a college scholarship that will lead him far from his sleepy Pacific Northwest hometown. But his bright future is cut short when a tragedy strikes and takes his dreams with it. After his high-school classmate Tess returns home unexpectedly, Charlie grows torn between honoring a promise he made four years earlier and moving forward with newfound love. And as he finds the courage to let go of the past for good, Charlie discovers the soul most worth saving is his own.. Tags: brother brother relationship, based on novel, sailing, ghost, young adult"} +{"id": "27582", "title": "The Mechanic", "year": 2011, "duration_min": 93, "rating": 6.3, "genres": "Action, Thriller, Crime", "genres_pipe": "|Action|Thriller|Crime|", "keywords": "poison, chicago, prostitute, martial arts, assassin, airport, cemetery, boat, hitman, chase, machinegun, cover-up, beautiful woman, car crash", "tags_pipe": "|poison|chicago|prostitute|martial arts|assassin|airport|cemetery|boat|hitman|chase|machinegun|cover-up|beautiful woman|car crash|", "overview": "Arthur Bishop is a 'mechanic' - an elite assassin with a strict code and unique talent for cleanly eliminating targets. It's a job that requires professional perfection and total detachment, and Bishop is the best in the business. But when he is ordered to take out his mentor and close friend Harry, Bishop is anything but detached.", "text_for_embedding": "The Mechanic (2011). Genres: Action, Thriller, Crime. Arthur Bishop is a 'mechanic' - an elite assassin with a strict code and unique talent for cleanly eliminating targets. It's a job that requires professional perfection and total detachment, and Bishop is the best in the business. But when he is ordered to take out his mentor and close friend Harry, Bishop is anything but detached.. Tags: poison, chicago, prostitute, martial arts, assassin, airport, cemetery, boat, hitman, chase, machinegun, cover-up, beautiful woman, car crash"} +{"id": "64688", "title": "21 Jump Street", "year": 2012, "duration_min": 109, "rating": 6.7, "genres": "Action, Comedy, Crime", "genres_pipe": "|Action|Comedy|Crime|", "keywords": "male friendship, high school, parody, crude humor, based on tv series, undercover cop, buddy cop, buddy comedy, duringcreditsstinger", "tags_pipe": "|male friendship|high school|parody|crude humor|based on tv series|undercover cop|buddy cop|buddy comedy|duringcreditsstinger|", "overview": "In high school, Schmidt was a dork and Jenko was the popular jock. After graduation, both of them joined the police force and ended up as partners riding bicycles in the city park. Since they are young and look like high school students, they are assigned to an undercover unit to infiltrate a drug ring that is supplying high school students synthetic drugs.", "text_for_embedding": "21 Jump Street (2012). Genres: Action, Comedy, Crime. In high school, Schmidt was a dork and Jenko was the popular jock. After graduation, both of them joined the police force and ended up as partners riding bicycles in the city park. Since they are young and look like high school students, they are assigned to an undercover unit to infiltrate a drug ring that is supplying high school students synthetic drugs.. Tags: male friendship, high school, parody, crude humor, based on tv series, undercover cop, buddy cop, buddy comedy, duringcreditsstinger"} +{"id": "509", "title": "Notting Hill", "year": 1999, "duration_min": 124, "rating": 7.0, "genres": "Romance, Comedy, Drama", "genres_pipe": "|Romance|Comedy|Drama|", "keywords": "london england, bookshop, birthday, new love, film maker, paparazzi, press conference, wheelchair, bath tub, cohabitant, friendship, fame, celebration, movie star, spectacle", "tags_pipe": "|london england|bookshop|birthday|new love|film maker|paparazzi|press conference|wheelchair|bath tub|cohabitant|friendship|fame|celebration|movie star|spectacle|", "overview": "The British comedy from director Roger Michell tells the love story between a famous actress and a simple book seller from London. A look into the attempt for famous people to have a personal and private life and the ramifications that follow. Nominated for three Golden Globes in 2000.", "text_for_embedding": "Notting Hill (1999). Genres: Romance, Comedy, Drama. The British comedy from director Roger Michell tells the love story between a famous actress and a simple book seller from London. A look into the attempt for famous people to have a personal and private life and the ramifications that follow. Nominated for three Golden Globes in 2000.. Tags: london england, bookshop, birthday, new love, film maker, paparazzi, press conference, wheelchair, bath tub, cohabitant, friendship, fame, celebration, movie star, spectacle"} +{"id": "7443", "title": "Chicken Run", "year": 2000, "duration_min": 84, "rating": 6.5, "genres": "Animation, Comedy, Family", "genres_pipe": "|Animation|Comedy|Family|", "keywords": "chicken, freedom, escape, chicken farm, pie machine", "tags_pipe": "|chicken|freedom|escape|chicken farm|pie machine|", "overview": "Having been hopelessly repressed and facing eventual certain death at the British chicken farm where they are held, Rocky the american rooster and Ginger the chicken decide to rebel against the evil Mr. and Mrs. Tweedy, the farm's owners. Rocky and Ginger lead their fellow chickens in a great escape from the murderous farmers and their farm of doom.", "text_for_embedding": "Chicken Run (2000). Genres: Animation, Comedy, Family. Having been hopelessly repressed and facing eventual certain death at the British chicken farm where they are held, Rocky the american rooster and Ginger the chicken decide to rebel against the evil Mr. and Mrs. Tweedy, the farm's owners. Rocky and Ginger lead their fellow chickens in a great escape from the murderous farmers and their farm of doom.. Tags: chicken, freedom, escape, chicken farm, pie machine"} +{"id": "5966", "title": "Along Came Polly", "year": 2004, "duration_min": 90, "rating": 5.8, "genres": "Comedy, Romance", "genres_pipe": "|Comedy|Romance|", "keywords": "beach, honeymoon, bride, chance, risk, relation, long island, romantic comedy, comedy, scuba diving, unfaithfulness, los angeles, art gallery, dance class, opposites attract", "tags_pipe": "|beach|honeymoon|bride|chance|risk|relation|long island|romantic comedy|comedy|scuba diving|unfaithfulness|los angeles|art gallery|dance class|opposites attract|", "overview": "Reuben Feffer is a guy who's spent his entire life playing it safe. Polly Prince is irresistible as a free-spirit who lives for the thrill of the moment. When these two comically mismatched souls collide, Reuben's world is turned upside down, as he makes an uproarious attempt to change his life from middle-of-the-road to totally-out-there.", "text_for_embedding": "Along Came Polly (2004). Genres: Comedy, Romance. Reuben Feffer is a guy who's spent his entire life playing it safe. Polly Prince is irresistible as a free-spirit who lives for the thrill of the moment. When these two comically mismatched souls collide, Reuben's world is turned upside down, as he makes an uproarious attempt to change his life from middle-of-the-road to totally-out-there.. Tags: beach, honeymoon, bride, chance, risk, relation, long island, romantic comedy, comedy, scuba diving, unfaithfulness, los angeles, art gallery, dance class, opposites attract"} +{"id": "11066", "title": "Boomerang", "year": 1992, "duration_min": 117, "rating": 5.4, "genres": "Comedy, Romance", "genres_pipe": "|Comedy|Romance|", "keywords": "role of women, ladykiller, success, ladies' man, chefin, casanova, womanizer", "tags_pipe": "|role of women|ladykiller|success|ladies' man|chefin|casanova|womanizer|", "overview": "Marcus is a successful advertising executive who woos and beds women almost at will. After a company merger he finds that his new boss, the ravishing Jacqueline, is treating him in exactly the same way. Completely traumatised by this, his work goes badly downhill.", "text_for_embedding": "Boomerang (1992). Genres: Comedy, Romance. Marcus is a successful advertising executive who woos and beds women almost at will. After a company merger he finds that his new boss, the ravishing Jacqueline, is treating him in exactly the same way. Completely traumatised by this, his work goes badly downhill.. Tags: role of women, ladykiller, success, ladies' man, chefin, casanova, womanizer"} +{"id": "136795", "title": "The Heat", "year": 2013, "duration_min": 117, "rating": 6.5, "genres": "Action, Comedy, Crime", "genres_pipe": "|Action|Comedy|Crime|", "keywords": "boston, fbi, buddy comedy", "tags_pipe": "|boston|fbi|buddy comedy|", "overview": "Uptight and straight-laced, FBI Special Agent Sarah Ashburn is a methodical investigator with a reputation for excellence--and hyper-arrogance. Shannon Mullins, one of Boston P.D.'s \"finest,\" is foul-mouthed and has a very short fuse, and uses her gut instinct and street smarts to catch the most elusive criminals. Neither has ever had a partner, or a friend for that matter. When these two wildly incompatible law officers join forces to bring down a ruthless drug lord, they become the last thing anyone expected: Buddies.", "text_for_embedding": "The Heat (2013). Genres: Action, Comedy, Crime. Uptight and straight-laced, FBI Special Agent Sarah Ashburn is a methodical investigator with a reputation for excellence--and hyper-arrogance. Shannon Mullins, one of Boston P.D.'s \"finest,\" is foul-mouthed and has a very short fuse, and uses her gut instinct and street smarts to catch the most elusive criminals. Neither has ever had a partner, or a friend for that matter. When these two wildly incompatible law officers join forces to bring down a ruthless drug lord, they become the last thing anyone expected: Buddies.. Tags: boston, fbi, buddy comedy"} +{"id": "8095", "title": "Cleopatra", "year": 1963, "duration_min": 248, "rating": 6.7, "genres": "Drama, History, Romance", "genres_pipe": "|Drama|History|Romance|", "keywords": "ancient rome, historical figure, cleopatra, julius caesar", "tags_pipe": "|ancient rome|historical figure|cleopatra|julius caesar|", "overview": "Historical epic. The triumphs and tragedy of the Egyptian queen, Cleopatra.The winner of four Oscars, this epic saga of love, greed and betrayal stars Elizabeth Taylor as the passionate and ambitious Egyptian queen who's determined to hold on to the throne and seduces the Roman emperor Julius Caesar (Rex Harrison). When Caesar is murdered, she redirects her attentions to his general, Marc Antony (Richard Burton), who vows to take power -- but Caesar's successor (Roddy McDowall) has other plans.", "text_for_embedding": "Cleopatra (1963). Genres: Drama, History, Romance. Historical epic. The triumphs and tragedy of the Egyptian queen, Cleopatra.The winner of four Oscars, this epic saga of love, greed and betrayal stars Elizabeth Taylor as the passionate and ambitious Egyptian queen who's determined to hold on to the throne and seduces the Roman emperor Julius Caesar (Rex Harrison). When Caesar is murdered, she redirects her attentions to his general, Marc Antony (Richard Burton), who vows to take power -- but Caesar's successor (Roddy McDowall) has other plans.. Tags: ancient rome, historical figure, cleopatra, julius caesar"} +{"id": "87826", "title": "Here Comes the Boom", "year": 2012, "duration_min": 105, "rating": 6.0, "genres": "Comedy", "genres_pipe": "|Comedy|", "keywords": "high school teacher, prize money, physics teacher, fighting movie, budget cutting", "tags_pipe": "|high school teacher|prize money|physics teacher|fighting movie|budget cutting|", "overview": "A high school biology teacher moonlights as a mixed-martial arts fighter in an effort to raise money to save the school's music program.", "text_for_embedding": "Here Comes the Boom (2012). Genres: Comedy. A high school biology teacher moonlights as a mixed-martial arts fighter in an effort to raise money to save the school's music program.. Tags: high school teacher, prize money, physics teacher, fighting movie, budget cutting"} +{"id": "11560", "title": "High Crimes", "year": 2002, "duration_min": 115, "rating": 6.1, "genres": "Drama, Mystery, Thriller, Crime", "genres_pipe": "|Drama|Mystery|Thriller|Crime|", "keywords": "based on novel, witness, village, court, love, murder, lawyer, defense, trial, justice, husband, u.s. marine, arrested, classified", "tags_pipe": "|based on novel|witness|village|court|love|murder|lawyer|defense|trial|justice|husband|u.s. marine|arrested|classified|", "overview": "High powered lawyer Claire Kubik finds her world turned upside down when her husband, who she thought was Tom Kubik, is arrested and is revealed to be Ron Chapman. Chapman is on trial for a murder of Latin American villagers while he was in the Marines. Claire soon learns that to navigate the military justice system, she'll need help from the somewhat unconventional Charlie Grimes.", "text_for_embedding": "High Crimes (2002). Genres: Drama, Mystery, Thriller, Crime. High powered lawyer Claire Kubik finds her world turned upside down when her husband, who she thought was Tom Kubik, is arrested and is revealed to be Ron Chapman. Chapman is on trial for a murder of Latin American villagers while he was in the Marines. Claire soon learns that to navigate the military justice system, she'll need help from the somewhat unconventional Charlie Grimes.. Tags: based on novel, witness, village, court, love, murder, lawyer, defense, trial, justice, husband, u.s. marine, arrested, classified"} +{"id": "25189", "title": "The Mirror Has Two Faces", "year": 1996, "duration_min": 126, "rating": 6.5, "genres": "Comedy, Drama, Romance", "genres_pipe": "|Comedy|Drama|Romance|", "keywords": "sex, professor, wedding, woman director, columbia university", "tags_pipe": "|sex|professor|wedding|woman director|columbia university|", "overview": "Rose Morgan (Barbara Streisand), who still lives with her mother (Lauren Bacall), is a professor of Romantic Literature who desperately longs for passion in her life. Gregory Larkin (Jeff Bridges), a mathematics professor, has been burned by passionate relationships and longs for a sexless union based on friendship and respect.", "text_for_embedding": "The Mirror Has Two Faces (1996). Genres: Comedy, Drama, Romance. Rose Morgan (Barbara Streisand), who still lives with her mother (Lauren Bacall), is a professor of Romantic Literature who desperately longs for passion in her life. Gregory Larkin (Jeff Bridges), a mathematics professor, has been burned by passionate relationships and longs for a sexless union based on friendship and respect.. Tags: sex, professor, wedding, woman director, columbia university"} +{"id": "2637", "title": "The Mothman Prophecies", "year": 2002, "duration_min": 119, "rating": 6.1, "genres": "Drama, Horror, Mystery", "genres_pipe": "|Drama|Horror|Mystery|", "keywords": "based on novel, small town, dream, motel, hallucination, bridge, alien life-form, warning, tumor, west virginia, urban legend, premonition, telephone call, hospital, reporter", "tags_pipe": "|based on novel|small town|dream|motel|hallucination|bridge|alien life-form|warning|tumor|west virginia|urban legend|premonition|telephone call|hospital|reporter|", "overview": "Reporter John Klein is plunged into a world of impossible terror and unthinkable chaos when fate draws him to a sleepy West Virginia town whose residents are being visited by a great winged shape that sows hideous nightmares and fevered visions.", "text_for_embedding": "The Mothman Prophecies (2002). Genres: Drama, Horror, Mystery. Reporter John Klein is plunged into a world of impossible terror and unthinkable chaos when fate draws him to a sleepy West Virginia town whose residents are being visited by a great winged shape that sows hideous nightmares and fevered visions.. Tags: based on novel, small town, dream, motel, hallucination, bridge, alien life-form, warning, tumor, west virginia, urban legend, premonition, telephone call, hospital, reporter"} +{"id": "18480", "title": "Brüno", "year": 2009, "duration_min": 83, "rating": 5.4, "genres": "Comedy", "genres_pipe": "|Comedy|", "keywords": "gay, fame, mockumentary, hollywood, lgbt, duringcreditsstinger", "tags_pipe": "|gay|fame|mockumentary|hollywood|lgbt|duringcreditsstinger|", "overview": "Flamboyantly gay Austrian television reporter Bruno stirs up trouble with unsuspecting guests and large crowds through brutally frank interviews and painfully hilarious public displays of homosexuality.", "text_for_embedding": "Brüno (2009). Genres: Comedy. Flamboyantly gay Austrian television reporter Bruno stirs up trouble with unsuspecting guests and large crowds through brutally frank interviews and painfully hilarious public displays of homosexuality.. Tags: gay, fame, mockumentary, hollywood, lgbt, duringcreditsstinger"} +{"id": "709", "title": "Licence to Kill", "year": 1989, "duration_min": 133, "rating": 5.9, "genres": "Adventure, Action, Thriller", "genres_pipe": "|Adventure|Action|Thriller|", "keywords": "corruption, florida, secret identity, liberation of prisoners, drug traffic, floatplane, transport of prisoners, tank car, florida keys, coast guard, airplane, british secret service", "tags_pipe": "|corruption|florida|secret identity|liberation of prisoners|drug traffic|floatplane|transport of prisoners|tank car|florida keys|coast guard|airplane|british secret service|", "overview": "James Bond and his American colleague Felix Leiter arrest the drug lord Sanchez who succeeds in escaping and takes revenge on Felix and his wife. Bond knows but just one thing: revenge.", "text_for_embedding": "Licence to Kill (1989). Genres: Adventure, Action, Thriller. James Bond and his American colleague Felix Leiter arrest the drug lord Sanchez who succeeds in escaping and takes revenge on Felix and his wife. Bond knows but just one thing: revenge.. Tags: corruption, florida, secret identity, liberation of prisoners, drug traffic, floatplane, transport of prisoners, tank car, florida keys, coast guard, airplane, british secret service"} +{"id": "49730", "title": "Red Riding Hood", "year": 2011, "duration_min": 100, "rating": 5.6, "genres": "Fantasy, Thriller, Horror", "genres_pipe": "|Fantasy|Thriller|Horror|", "keywords": "winter, fantasy, fairy tale, hood, werewolf, aftercreditsstinger, duringcreditsstinger, woman director, red riding hood", "tags_pipe": "|winter|fantasy|fairy tale|hood|werewolf|aftercreditsstinger|duringcreditsstinger|woman director|red riding hood|", "overview": "Valerie is in love with a brooding outsider, Peter, but her parents have arranged for her to marry another man – who is wealthy. Unwilling to lose each other, Valerie and Peter plan to run away together when they learn that Valerie's older sister has been killed by a werewolf that prowls the dark forest surrounding their village. Hungry for revenge, the people call on famed werewolf hunter, Father Solomon, to help them kill the wolf. But Solomon's arrival brings unintended consequences as he warns that the wolf, who takes human form by day, could be any one of them.", "text_for_embedding": "Red Riding Hood (2011). Genres: Fantasy, Thriller, Horror. Valerie is in love with a brooding outsider, Peter, but her parents have arranged for her to marry another man – who is wealthy. Unwilling to lose each other, Valerie and Peter plan to run away together when they learn that Valerie's older sister has been killed by a werewolf that prowls the dark forest surrounding their village. Hungry for revenge, the people call on famed werewolf hunter, Father Solomon, to help them kill the wolf. But Solomon's arrival brings unintended consequences as he warns that the wolf, who takes human form by day, could be any one of them.. Tags: winter, fantasy, fairy tale, hood, werewolf, aftercreditsstinger, duringcreditsstinger, woman director, red riding hood"} +{"id": "2749", "title": "15 Minutes", "year": 2001, "duration_min": 120, "rating": 5.7, "genres": "Action, Crime, Thriller", "genres_pipe": "|Action|Crime|Thriller|", "keywords": "new york, female nudity, prison, prostitute, rape, robbery, fire, detective, airport, shotgun, prisoner, ex-detainee, attempted murder, paranoia, russian", "tags_pipe": "|new york|female nudity|prison|prostitute|rape|robbery|fire|detective|airport|shotgun|prisoner|ex-detainee|attempted murder|paranoia|russian|", "overview": "When Eastern European criminals Oleg and Emil come to New York City to pick up their share of a heist score, Oleg steals a video camera and starts filming their activities, both legal and illegal. When they learn how the American media circus can make a remorseless killer look like the victim and make them rich, they target media-savvy NYPD Homicide Detective Eddie Flemming and media-naive FDNY Fire Marshal Jordy Warsaw, the cops investigating their murder and torching of their former criminal partner, filming everything to sell to the local tabloid TV show \"Top Story.\"", "text_for_embedding": "15 Minutes (2001). Genres: Action, Crime, Thriller. When Eastern European criminals Oleg and Emil come to New York City to pick up their share of a heist score, Oleg steals a video camera and starts filming their activities, both legal and illegal. When they learn how the American media circus can make a remorseless killer look like the victim and make them rich, they target media-savvy NYPD Homicide Detective Eddie Flemming and media-naive FDNY Fire Marshal Jordy Warsaw, the cops investigating their murder and torching of their former criminal partner, filming everything to sell to the local tabloid TV show \"Top Story.\". Tags: new york, female nudity, prison, prostitute, rape, robbery, fire, detective, airport, shotgun, prisoner, ex-detainee, attempted murder, paranoia, russian"} +{"id": "9607", "title": "Super Mario Bros.", "year": 1993, "duration_min": 104, "rating": 4.0, "genres": "Adventure, Comedy, Family, Fantasy", "genres_pipe": "|Adventure|Comedy|Family|Fantasy|", "keywords": "saving the world, brother brother relationship, royalty, dinosaur, based on video game, woman director, multiple dimensions", "tags_pipe": "|saving the world|brother brother relationship|royalty|dinosaur|based on video game|woman director|multiple dimensions|", "overview": "Mario and Luigi, plumbers from Brooklyn, find themselves in an alternate universe where evolved dinosaurs live in hi-tech squalor. They're the only hope to save our universe from invasion by the dino dictator, Koopa.", "text_for_embedding": "Super Mario Bros. (1993). Genres: Adventure, Comedy, Family, Fantasy. Mario and Luigi, plumbers from Brooklyn, find themselves in an alternate universe where evolved dinosaurs live in hi-tech squalor. They're the only hope to save our universe from invasion by the dino dictator, Koopa.. Tags: saving the world, brother brother relationship, royalty, dinosaur, based on video game, woman director, multiple dimensions"} +{"id": "1830", "title": "Lord of War", "year": 2005, "duration_min": 122, "rating": 7.0, "genres": "Crime, Drama, Thriller", "genres_pipe": "|Crime|Drama|Thriller|", "keywords": "cold war, weapon, arms dealer", "tags_pipe": "|cold war|weapon|arms dealer|", "overview": "Yuri Orlov is a globetrotting arms dealer and, through some of the deadliest war zones, he struggles to stay one step ahead of a relentless Interpol agent, his business rivals and even some of his customers who include many of the world's most notorious dictators. Finally, he must also face his own conscience.", "text_for_embedding": "Lord of War (2005). Genres: Crime, Drama, Thriller. Yuri Orlov is a globetrotting arms dealer and, through some of the deadliest war zones, he struggles to stay one step ahead of a relentless Interpol agent, his business rivals and even some of his customers who include many of the world's most notorious dictators. Finally, he must also face his own conscience.. Tags: cold war, weapon, arms dealer"} +{"id": "79", "title": "Hero", "year": 2002, "duration_min": 99, "rating": 7.2, "genres": "Drama, Adventure, Action, History", "genres_pipe": "|Drama|Adventure|Action|History|", "keywords": "countryside, loss of lover, right and justice, patriot", "tags_pipe": "|countryside|loss of lover|right and justice|patriot|", "overview": "One man defeated three assassins who sought to murder the most powerful warlord in pre-unified China.", "text_for_embedding": "Hero (2002). Genres: Drama, Adventure, Action, History. One man defeated three assassins who sought to murder the most powerful warlord in pre-unified China.. Tags: countryside, loss of lover, right and justice, patriot"} +{"id": "54054", "title": "One for the Money", "year": 2012, "duration_min": 91, "rating": 5.3, "genres": "Action, Comedy, Crime", "genres_pipe": "|Action|Comedy|Crime|", "keywords": "bounty hunter, based on novel, romance, framed, bail jumper, woman director", "tags_pipe": "|bounty hunter|based on novel|romance|framed|bail jumper|woman director|", "overview": "An unemployed lingerie buyer convinces her bail bondsman cousin to give her a shot as a bounty hunter. Her first assignment is to track down a former cop on the run for murder – the same man who broke her heart years before. With the help of some friends and the best bounty hunter in the business, she slowly learns what it takes to be a true bounty hunter.", "text_for_embedding": "One for the Money (2012). Genres: Action, Comedy, Crime. An unemployed lingerie buyer convinces her bail bondsman cousin to give her a shot as a bounty hunter. Her first assignment is to track down a former cop on the run for murder – the same man who broke her heart years before. With the help of some friends and the best bounty hunter in the business, she slowly learns what it takes to be a true bounty hunter.. Tags: bounty hunter, based on novel, romance, framed, bail jumper, woman director"} +{"id": "228967", "title": "The Interview", "year": 2014, "duration_min": 112, "rating": 6.1, "genres": "Action, Comedy", "genres_pipe": "|Action|Comedy|", "keywords": "cia, coup d'etat, north korea, assassination attempt, evil dictator", "tags_pipe": "|cia|coup d'etat|north korea|assassination attempt|evil dictator|", "overview": "Dave Skylark and his producer Aaron Rapoport run the celebrity tabloid show \"Skylark Tonight\". When they land an interview with a surprise fan, North Korean dictator Kim Jong-un, they are recruited by the CIA to turn their trip to Pyongyang into an assassination mission.", "text_for_embedding": "The Interview (2014). Genres: Action, Comedy. Dave Skylark and his producer Aaron Rapoport run the celebrity tabloid show \"Skylark Tonight\". When they land an interview with a surprise fan, North Korean dictator Kim Jong-un, they are recruited by the CIA to turn their trip to Pyongyang into an assassination mission.. Tags: cia, coup d'etat, north korea, assassination attempt, evil dictator"} +{"id": "46528", "title": "The Warrior's Way", "year": 2010, "duration_min": 100, "rating": 6.3, "genres": "Adventure, Fantasy, Action, Western, Thriller", "genres_pipe": "|Adventure|Fantasy|Action|Western|Thriller|", "keywords": "assassin, small town, forest, revenge, deception, super speed, surprise ending", "tags_pipe": "|assassin|small town|forest|revenge|deception|super speed|surprise ending|", "overview": "An Asian assassin (Dong-gun Jang) is forced to hide in a small town in the American Badlands. Also starring Kate Bosworth, Danny Huston, Tony Cox and Academy Award winner Geoffrey Rush.", "text_for_embedding": "The Warrior's Way (2010). Genres: Adventure, Fantasy, Action, Western, Thriller. An Asian assassin (Dong-gun Jang) is forced to hide in a small town in the American Badlands. Also starring Kate Bosworth, Danny Huston, Tony Cox and Academy Award winner Geoffrey Rush.. Tags: assassin, small town, forest, revenge, deception, super speed, surprise ending"} +{"id": "27936", "title": "Micmacs", "year": 2009, "duration_min": 100, "rating": 6.8, "genres": "Action, Comedy, Crime", "genres_pipe": "|Action|Comedy|Crime|", "keywords": "unemployment, contortionist, human cannonball", "tags_pipe": "|unemployment|contortionist|human cannonball|", "overview": "A man and his friends come up with an intricate and original plan to destroy two big weapons manufacturers. Avid movie-watcher and video store clerk Bazil has had his life all but ruined by weapons of war. His father was killed by a landmine in Morocco and one fateful night a stray bullet from a nearby shootout embeds itself in his skull, leaving him on the verge of instantaneous death. Losing his job and his home, Bazil wanders the streets until he meets Slammer, a pardoned convict who introduces him to a band of eccentric junkyard dealers including Calculator, a math expert and statistician, Buster, a record-holder in human cannonball feats, Tiny Pete, an artistic craftsman of automatons, and Elastic Girl, a sassy contortionist. When chance reveals to Bazil the two weapons manufacturers responsible for building the instruments of his destruction, he constructs a complex scheme for revenge that his newfound family is all too happy to help set in motion.", "text_for_embedding": "Micmacs (2009). Genres: Action, Comedy, Crime. A man and his friends come up with an intricate and original plan to destroy two big weapons manufacturers. Avid movie-watcher and video store clerk Bazil has had his life all but ruined by weapons of war. His father was killed by a landmine in Morocco and one fateful night a stray bullet from a nearby shootout embeds itself in his skull, leaving him on the verge of instantaneous death. Losing his job and his home, Bazil wanders the streets until he meets Slammer, a pardoned convict who introduces him to a band of eccentric junkyard dealers including Calculator, a math expert and statistician, Buster, a record-holder in human cannonball feats, Tiny Pete, an artistic craftsman of automatons, and Elastic Girl, a sassy contortionist. When chance reveals to Bazil the two weapons manufacturers responsible for building the instruments of his destruction, he constructs a complex scheme for revenge that his newfound family is all too happy to help set in motion.. Tags: unemployment, contortionist, human cannonball"} +{"id": "65", "title": "8 Mile", "year": 2002, "duration_min": 110, "rating": 6.8, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "individual, street gang, adolescence, rap music, hip-hop, rhyme battle, trailer park, ethnic stereotype, single, detroit, eminem", "tags_pipe": "|individual|street gang|adolescence|rap music|hip-hop|rhyme battle|trailer park|ethnic stereotype|single|detroit|eminem|", "overview": "The setting is Detroit in 1995. The city is divided by 8 Mile, a road that splits the town in half along racial lines. A young white rapper, Jimmy \"B-Rabbit\" Smith Jr. summons strength within himself to cross over these arbitrary boundaries to fulfill his dream of success in hip hop. With his pal Future and the three one third in place, all he has to do is not choke.", "text_for_embedding": "8 Mile (2002). Genres: Drama. The setting is Detroit in 1995. The city is divided by 8 Mile, a road that splits the town in half along racial lines. A young white rapper, Jimmy \"B-Rabbit\" Smith Jr. summons strength within himself to cross over these arbitrary boundaries to fulfill his dream of success in hip hop. With his pal Future and the three one third in place, all he has to do is not choke.. Tags: individual, street gang, adolescence, rap music, hip-hop, rhyme battle, trailer park, ethnic stereotype, single, detroit, eminem"} +{"id": "280391", "title": "Why I Did (Not) Eat My Father", "year": 2015, "duration_min": 100, "rating": 5.3, "genres": "Adventure, Comedy, Animation", "genres_pipe": "|Adventure|Comedy|Animation|", "keywords": "animation, evolution, humanity", "tags_pipe": "|animation|evolution|humanity|", "overview": "Based on the novel 'Evolution Man' by Roy Lewis, this tells the story about the first man - young Edward - to descend from apes. Edward is ejected by his tribe, but is very resourceful. He learns to walk, discovers fire, manages to hunt - and we follow him as he evolves. He has a generous nature, and search for true humanity - a world where we don't eat our fathers.", "text_for_embedding": "Why I Did (Not) Eat My Father (2015). Genres: Adventure, Comedy, Animation. Based on the novel 'Evolution Man' by Roy Lewis, this tells the story about the first man - young Edward - to descend from apes. Edward is ejected by his tribe, but is very resourceful. He learns to walk, discovers fire, manages to hunt - and we follow him as he evolves. He has a generous nature, and search for true humanity - a world where we don't eat our fathers.. Tags: animation, evolution, humanity"} +{"id": "9476", "title": "A Knight's Tale", "year": 2001, "duration_min": 132, "rating": 6.6, "genres": "Adventure, Drama, Romance, Action", "genres_pipe": "|Adventure|Drama|Romance|Action|", "keywords": "poetry, knight, tournament, duel, torture, writer, impostor, church, game, jousting, aftercreditsstinger", "tags_pipe": "|poetry|knight|tournament|duel|torture|writer|impostor|church|game|jousting|aftercreditsstinger|", "overview": "William Thatcher, a peasant, is sent to apprentice with a Knight named Hector as a young boy. Urged by his father to \"change his Stars\", he assumes Sir Hector's place in a tournament when Hector dies in the middle of it. He wins. With the other apprentices, he trains and assumes the title of Sir Ulrich von Lichtenstein.", "text_for_embedding": "A Knight's Tale (2001). Genres: Adventure, Drama, Romance, Action. William Thatcher, a peasant, is sent to apprentice with a Knight named Hector as a young boy. Urged by his father to \"change his Stars\", he assumes Sir Hector's place in a tournament when Hector dies in the middle of it. He wins. With the other apprentices, he trains and assumes the title of Sir Ulrich von Lichtenstein.. Tags: poetry, knight, tournament, duel, torture, writer, impostor, church, game, jousting, aftercreditsstinger"} +{"id": "10610", "title": "The Medallion", "year": 2003, "duration_min": 88, "rating": 5.3, "genres": "Thriller, Fantasy, Action, Comedy", "genres_pipe": "|Thriller|Fantasy|Action|Comedy|", "keywords": "detective, medallion, leather jacket, wretch, fighter, wizardry, interpol", "tags_pipe": "|detective|medallion|leather jacket|wretch|fighter|wizardry|interpol|", "overview": "A Hong Kong detective suffers a fatal accident involving a mysterious medallion and is transformed into an immortal warrior with superhuman powers.", "text_for_embedding": "The Medallion (2003). Genres: Thriller, Fantasy, Action, Comedy. A Hong Kong detective suffers a fatal accident involving a mysterious medallion and is transformed into an immortal warrior with superhuman powers.. Tags: detective, medallion, leather jacket, wretch, fighter, wizardry, interpol"} +{"id": "745", "title": "The Sixth Sense", "year": 1999, "duration_min": 107, "rating": 7.7, "genres": "Mystery, Thriller, Drama", "genres_pipe": "|Mystery|Thriller|Drama|", "keywords": "child abuse, sense of guilt, loss of child, confidence, psychology, dying and death, marriage crisis, afterlife, single, paranormal phenomena, cowardliness, child, spiritism", "tags_pipe": "|child abuse|sense of guilt|loss of child|confidence|psychology|dying and death|marriage crisis|afterlife|single|paranormal phenomena|cowardliness|child|spiritism|", "overview": "A psychological thriller about an eight year old boy named Cole Sear who believes he can see into the world of the dead. A child psychologist named Malcolm Crowe comes to Cole to help him deal with his problem, learning that he really can see ghosts of dead people.", "text_for_embedding": "The Sixth Sense (1999). Genres: Mystery, Thriller, Drama. A psychological thriller about an eight year old boy named Cole Sear who believes he can see into the world of the dead. A child psychologist named Malcolm Crowe comes to Cole to help him deal with his problem, learning that he really can see ghosts of dead people.. Tags: child abuse, sense of guilt, loss of child, confidence, psychology, dying and death, marriage crisis, afterlife, single, paranormal phenomena, cowardliness, child, spiritism"} +{"id": "49527", "title": "Man on a Ledge", "year": 2012, "duration_min": 102, "rating": 6.2, "genres": "Action, Thriller, Crime", "genres_pipe": "|Action|Thriller|Crime|", "keywords": "deception, new york city, rooftop, diamond heist, framed for a crime, escaped prisoner, negotiator", "tags_pipe": "|deception|new york city|rooftop|diamond heist|framed for a crime|escaped prisoner|negotiator|", "overview": "An ex-cop turned con threatens to jump to his death from a Manhattan hotel rooftop. The NYPD dispatch a female police psychologist to talk him down. However, unbeknownst to the police on the scene, the suicide attempt is a cover for the biggest diamond heist ever pulled.", "text_for_embedding": "Man on a Ledge (2012). Genres: Action, Thriller, Crime. An ex-cop turned con threatens to jump to his death from a Manhattan hotel rooftop. The NYPD dispatch a female police psychologist to talk him down. However, unbeknownst to the police on the scene, the suicide attempt is a cover for the biggest diamond heist ever pulled.. Tags: deception, new york city, rooftop, diamond heist, framed for a crime, escaped prisoner, negotiator"} +{"id": "73937", "title": "The Big Year", "year": 2011, "duration_min": 100, "rating": 5.6, "genres": "Comedy", "genres_pipe": "|Comedy|", "keywords": "helicopter, based on novel, honeymoon, airplane, birding, birdwatching, duringcreditsstinger", "tags_pipe": "|helicopter|based on novel|honeymoon|airplane|birding|birdwatching|duringcreditsstinger|", "overview": "Three fanatical bird-watchers spend an entire year competing to spot the highest number of species as El Nino sends an extraordinary variety of rare breeds flying up into the U.S., but they quickly discover that there are more important things than coming out on top of the competition", "text_for_embedding": "The Big Year (2011). Genres: Comedy. Three fanatical bird-watchers spend an entire year competing to spot the highest number of species as El Nino sends an extraordinary variety of rare breeds flying up into the U.S., but they quickly discover that there are more important things than coming out on top of the competition. Tags: helicopter, based on novel, honeymoon, airplane, birding, birdwatching, duringcreditsstinger"} +{"id": "1885", "title": "The Karate Kid", "year": 1984, "duration_min": 126, "rating": 6.9, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "flat, taskmaster, karate, egg, kids and family, motorcycle", "tags_pipe": "|flat|taskmaster|karate|egg|kids and family|motorcycle|", "overview": "Hassled by the school bullies, Daniel LaRusso has his share of adolescent woes. Luckily, his apartment building houses a resident martial arts master: Kesuke Miyagi, who agrees to train Daniel ... and ends up teaching him much more than self-defense. Armed with newfound confidence, skill and wisdom, Daniel ultimately faces off against his tormentors in this hugely popular classic underdog tale.", "text_for_embedding": "The Karate Kid (1984). Genres: Drama. Hassled by the school bullies, Daniel LaRusso has his share of adolescent woes. Luckily, his apartment building houses a resident martial arts master: Kesuke Miyagi, who agrees to train Daniel ... and ends up teaching him much more than self-defense. Armed with newfound confidence, skill and wisdom, Daniel ultimately faces off against his tormentors in this hugely popular classic underdog tale.. Tags: flat, taskmaster, karate, egg, kids and family, motorcycle"} +{"id": "168672", "title": "American Hustle", "year": 2013, "duration_min": 138, "rating": 6.8, "genres": "Drama, Crime", "genres_pipe": "|Drama|Crime|", "keywords": "con artist, scam, mobster, fbi agent", "tags_pipe": "|con artist|scam|mobster|fbi agent|", "overview": "A con man, Irving Rosenfeld, along with his seductive partner Sydney Prosser, is forced to work for a wild FBI agent, Richie DiMaso, who pushes them into a world of Jersey powerbrokers and mafia.", "text_for_embedding": "American Hustle (2013). Genres: Drama, Crime. A con man, Irving Rosenfeld, along with his seductive partner Sydney Prosser, is forced to work for a wild FBI agent, Richie DiMaso, who pushes them into a world of Jersey powerbrokers and mafia.. Tags: con artist, scam, mobster, fbi agent"} +{"id": "18240", "title": "The Proposal", "year": 2009, "duration_min": 108, "rating": 6.7, "genres": "Comedy, Romance, Drama", "genres_pipe": "|Comedy|Romance|Drama|", "keywords": "fictitious marriage, deportation, immigration law, romantic comedy, alaska, naked scene, co-worker, humiliation, book editor, fake boyfriend, duringcreditsstinger, woman director, pretend relationship", "tags_pipe": "|fictitious marriage|deportation|immigration law|romantic comedy|alaska|naked scene|co-worker|humiliation|book editor|fake boyfriend|duringcreditsstinger|woman director|pretend relationship|", "overview": "When she learns she's in danger of losing her visa status and being deported, overbearing book editor Margaret Tate forces her put-upon assistant, Andrew Paxton, to marry her.", "text_for_embedding": "The Proposal (2009). Genres: Comedy, Romance, Drama. When she learns she's in danger of losing her visa status and being deported, overbearing book editor Margaret Tate forces her put-upon assistant, Andrew Paxton, to marry her.. Tags: fictitious marriage, deportation, immigration law, romantic comedy, alaska, naked scene, co-worker, humiliation, book editor, fake boyfriend, duringcreditsstinger, woman director, pretend relationship"} +{"id": "10398", "title": "Double Jeopardy", "year": 1999, "duration_min": 105, "rating": 6.2, "genres": "Crime, Drama, Mystery, Thriller", "genres_pipe": "|Crime|Drama|Mystery|Thriller|", "keywords": "prison, sailboat, sailing trip, new orleans, women's prison, probation, murder hunt", "tags_pipe": "|prison|sailboat|sailing trip|new orleans|women's prison|probation|murder hunt|", "overview": "A woman framed for her husband's murder suspects he is still alive; as she has already been tried for the crime, she can't be re-prosecuted if she finds and kills him.", "text_for_embedding": "Double Jeopardy (1999). Genres: Crime, Drama, Mystery, Thriller. A woman framed for her husband's murder suspects he is still alive; as she has already been tried for the crime, she can't be re-prosecuted if she finds and kills him.. Tags: prison, sailboat, sailing trip, new orleans, women's prison, probation, murder hunt"} +{"id": "165", "title": "Back to the Future Part II", "year": 1989, "duration_min": 108, "rating": 7.4, "genres": "Adventure, Comedy, Family, Science Fiction", "genres_pipe": "|Adventure|Comedy|Family|Science Fiction|", "keywords": "skateboarding, flying car, car race, delorean, lightning, almanac, inventor, time travel, sequel, diner, alternate history, teenager, electric guitar, walking cane, high school dance", "tags_pipe": "|skateboarding|flying car|car race|delorean|lightning|almanac|inventor|time travel|sequel|diner|alternate history|teenager|electric guitar|walking cane|high school dance|", "overview": "Marty and Doc are at it again in this wacky sequel to the 1985 blockbuster as the time-traveling duo head to 2015 to nip some McFly family woes in the bud. But things go awry thanks to bully Biff Tannen and a pesky sports almanac. In a last-ditch attempt to set things straight, Marty finds himself bound for 1955 and face to face with his teenage parents -- again.", "text_for_embedding": "Back to the Future Part II (1989). Genres: Adventure, Comedy, Family, Science Fiction. Marty and Doc are at it again in this wacky sequel to the 1985 blockbuster as the time-traveling duo head to 2015 to nip some McFly family woes in the bud. But things go awry thanks to bully Biff Tannen and a pesky sports almanac. In a last-ditch attempt to set things straight, Marty finds himself bound for 1955 and face to face with his teenage parents -- again.. Tags: skateboarding, flying car, car race, delorean, lightning, almanac, inventor, time travel, sequel, diner, alternate history, teenager, electric guitar, walking cane, high school dance"} +{"id": "240832", "title": "Lucy", "year": 2014, "duration_min": 89, "rating": 6.3, "genres": "Action, Science Fiction", "genres_pipe": "|Action|Science Fiction|", "keywords": "artificial intelligence, telepathy, intelligence, drug mule, telekinesis, futuristic, drug, superpower, tough girl, imax, surgery, brain capacity, synthetic drug, human brain", "tags_pipe": "|artificial intelligence|telepathy|intelligence|drug mule|telekinesis|futuristic|drug|superpower|tough girl|imax|surgery|brain capacity|synthetic drug|human brain|", "overview": "A woman, accidentally caught in a dark deal, turns the tables on her captors and transforms into a merciless warrior evolved beyond human logic.", "text_for_embedding": "Lucy (2014). Genres: Action, Science Fiction. A woman, accidentally caught in a dark deal, turns the tables on her captors and transforms into a merciless warrior evolved beyond human logic.. Tags: artificial intelligence, telepathy, intelligence, drug mule, telekinesis, futuristic, drug, superpower, tough girl, imax, surgery, brain capacity, synthetic drug, human brain"} +{"id": "216015", "title": "Fifty Shades of Grey", "year": 2015, "duration_min": 125, "rating": 5.2, "genres": "Drama, Romance, Thriller", "genres_pipe": "|Drama|Romance|Thriller|", "keywords": "based on novel, perversion, spanking, billionaire, bdsm, woman director", "tags_pipe": "|based on novel|perversion|spanking|billionaire|bdsm|woman director|", "overview": "When college senior Anastasia Steele steps in for her sick roommate to interview prominent businessman Christian Grey for their campus paper, little does she realize the path her life will take. Christian, as enigmatic as he is rich and powerful, finds himself strangely drawn to Ana, and she to him. Though sexually inexperienced, Ana plunges headlong into an affair -- and learns that Christian's true sexual proclivities push the boundaries of pain and pleasure.", "text_for_embedding": "Fifty Shades of Grey (2015). Genres: Drama, Romance, Thriller. When college senior Anastasia Steele steps in for her sick roommate to interview prominent businessman Christian Grey for their campus paper, little does she realize the path her life will take. Christian, as enigmatic as he is rich and powerful, finds himself strangely drawn to Ana, and she to him. Though sexually inexperienced, Ana plunges headlong into an affair -- and learns that Christian's true sexual proclivities push the boundaries of pain and pleasure.. Tags: based on novel, perversion, spanking, billionaire, bdsm, woman director"} +{"id": "12279", "title": "Spy Kids 3-D: Game Over", "year": 2003, "duration_min": 84, "rating": 4.7, "genres": "Action, Adventure, Comedy, Family, Science Fiction", "genres_pipe": "|Action|Adventure|Comedy|Family|Science Fiction|", "keywords": "video game, intelligence, liberation, child hero, mission", "tags_pipe": "|video game|intelligence|liberation|child hero|mission|", "overview": "Carmen's caught in a virtual reality game designed by the Kids' new nemesis, the Toymaker. It's up to Juni to save his sister, and ultimately the world.", "text_for_embedding": "Spy Kids 3-D: Game Over (2003). Genres: Action, Adventure, Comedy, Family, Science Fiction. Carmen's caught in a virtual reality game designed by the Kids' new nemesis, the Toymaker. It's up to Juni to save his sister, and ultimately the world.. Tags: video game, intelligence, liberation, child hero, mission"} +{"id": "1645", "title": "A Time to Kill", "year": 1996, "duration_min": 149, "rating": 7.0, "genres": "Crime, Drama, Thriller", "genres_pipe": "|Crime|Drama|Thriller|", "keywords": "ku klux klan, rape, mississippi, jurors, blackmail, attempted murder, forgiveness, court, shooting, murder, suspense, lawyer, trial, courtroom, racial tension", "tags_pipe": "|ku klux klan|rape|mississippi|jurors|blackmail|attempted murder|forgiveness|court|shooting|murder|suspense|lawyer|trial|courtroom|racial tension|", "overview": "A young lawyer defends a black man accused of murdering two men who raped his 10-year-old daughter, sparking a rebirth of the KKK.", "text_for_embedding": "A Time to Kill (1996). Genres: Crime, Drama, Thriller. A young lawyer defends a black man accused of murdering two men who raped his 10-year-old daughter, sparking a rebirth of the KKK.. Tags: ku klux klan, rape, mississippi, jurors, blackmail, attempted murder, forgiveness, court, shooting, murder, suspense, lawyer, trial, courtroom, racial tension"} +{"id": "11007", "title": "Cheaper by the Dozen", "year": 2003, "duration_min": 98, "rating": 6.0, "genres": "Comedy", "genres_pipe": "|Comedy|", "keywords": "big family, new job, aspiring actor, smart kid", "tags_pipe": "|big family|new job|aspiring actor|smart kid|", "overview": "The Baker brood moves to Chicago after patriarch Tom gets a job coaching football at Northwestern University, forcing his writer wife, Mary, and the couple's 12 children to make a major adjustment. The transition works well until work demands pull the parents away from home, leaving the kids bored -- and increasingly mischievous.", "text_for_embedding": "Cheaper by the Dozen (2003). Genres: Comedy. The Baker brood moves to Chicago after patriarch Tom gets a job coaching football at Northwestern University, forcing his writer wife, Mary, and the couple's 12 children to make a major adjustment. The transition works well until work demands pull the parents away from home, leaving the kids bored -- and increasingly mischievous.. Tags: big family, new job, aspiring actor, smart kid"} +{"id": "193756", "title": "Lone Survivor", "year": 2013, "duration_min": 121, "rating": 7.4, "genres": "Action, Drama, Thriller, War", "genres_pipe": "|Action|Drama|Thriller|War|", "keywords": "war, survival, navy seal, military, dangerous mission", "tags_pipe": "|war|survival|navy seal|military|dangerous mission|", "overview": "Based on the failed June 28, 2005 mission \"Operation Red Wing.\" Four members of SEAL Team 10, were tasked with the mission to capture or kill notorious Taliban leader, Ahmad Shah. Only one member of the team survived.", "text_for_embedding": "Lone Survivor (2013). Genres: Action, Drama, Thriller, War. Based on the failed June 28, 2005 mission \"Operation Red Wing.\" Four members of SEAL Team 10, were tasked with the mission to capture or kill notorious Taliban leader, Ahmad Shah. Only one member of the team survived.. Tags: war, survival, navy seal, military, dangerous mission"} +{"id": "11287", "title": "A League of Their Own", "year": 1992, "duration_min": 128, "rating": 6.7, "genres": "Comedy", "genres_pipe": "|Comedy|", "keywords": "baseball, world war ii, sport, baseball player, female athlete, home front, woman director, 1940s", "tags_pipe": "|baseball|world war ii|sport|baseball player|female athlete|home front|woman director|1940s|", "overview": "Small-town sisters Dottie and Kit join an all-female baseball league formed after World War II brings pro baseball to a standstill. When their team hits the road with its drunken coach, the siblings find troubles and triumphs on and off the field.", "text_for_embedding": "A League of Their Own (1992). Genres: Comedy. Small-town sisters Dottie and Kit join an all-female baseball league formed after World War II brings pro baseball to a standstill. When their team hits the road with its drunken coach, the siblings find troubles and triumphs on and off the field.. Tags: baseball, world war ii, sport, baseball player, female athlete, home front, woman director, 1940s"} +{"id": "259693", "title": "The Conjuring 2", "year": 2016, "duration_min": 134, "rating": 7.0, "genres": "Horror", "genres_pipe": "|Horror|", "keywords": "london england, england, 1970s, spirit, single mother, demon, paranormal investigation, demonic possession, valak, annabelle", "tags_pipe": "|london england|england|1970s|spirit|single mother|demon|paranormal investigation|demonic possession|valak|annabelle|", "overview": "Lorraine and Ed Warren travel to north London to help a single mother raising four children alone in a house plagued by malicious spirits.", "text_for_embedding": "The Conjuring 2 (2016). Genres: Horror. Lorraine and Ed Warren travel to north London to help a single mother raising four children alone in a house plagued by malicious spirits.. Tags: london england, england, 1970s, spirit, single mother, demon, paranormal investigation, demonic possession, valak, annabelle"} +{"id": "37799", "title": "The Social Network", "year": 2010, "duration_min": 120, "rating": 7.1, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "hacker, hacking, creator, frat party, social network, deposition, intellectual property, entrepreneur, arrogance, young entrepreneur, facebook", "tags_pipe": "|hacker|hacking|creator|frat party|social network|deposition|intellectual property|entrepreneur|arrogance|young entrepreneur|facebook|", "overview": "On a fall night in 2003, Harvard undergrad and computer programming genius Mark Zuckerberg sits down at his computer and heatedly begins working on a new idea. In a fury of blogging and programming, what begins in his dorm room as a small site among friends soon becomes a global social network and a revolution in communication. A mere six years and 500 million friends later, Mark Zuckerberg is the youngest billionaire in history... but for this entrepreneur, success leads to both personal and legal complications.", "text_for_embedding": "The Social Network (2010). Genres: Drama. On a fall night in 2003, Harvard undergrad and computer programming genius Mark Zuckerberg sits down at his computer and heatedly begins working on a new idea. In a fury of blogging and programming, what begins in his dorm room as a small site among friends soon becomes a global social network and a revolution in communication. A mere six years and 500 million friends later, Mark Zuckerberg is the youngest billionaire in history... but for this entrepreneur, success leads to both personal and legal complications.. Tags: hacker, hacking, creator, frat party, social network, deposition, intellectual property, entrepreneur, arrogance, young entrepreneur, facebook"} +{"id": "10184", "title": "He's Just Not That Into You", "year": 2009, "duration_min": 129, "rating": 6.2, "genres": "Comedy, Romance, Drama", "genres_pipe": "|Comedy|Romance|Drama|", "keywords": "relationship, ensemble cast, duringcreditsstinger", "tags_pipe": "|relationship|ensemble cast|duringcreditsstinger|", "overview": "Remember that really cute guy who said he'd call – and didn't? Maybe he lost your number. Maybe he's in the hospital. Maybe he's awed by your beauty, brains or success. Or maybe... he's just not that into you.", "text_for_embedding": "He's Just Not That Into You (2009). Genres: Comedy, Romance, Drama. Remember that really cute guy who said he'd call – and didn't? Maybe he lost your number. Maybe he's in the hospital. Maybe he's awed by your beauty, brains or success. Or maybe... he's just not that into you.. Tags: relationship, ensemble cast, duringcreditsstinger"} +{"id": "4257", "title": "Scary Movie 4", "year": 2006, "duration_min": 83, "rating": 5.3, "genres": "Comedy", "genres_pipe": "|Comedy|", "keywords": "haunted house, alien life-form, riesen-ipod", "tags_pipe": "|haunted house|alien life-form|riesen-ipod|", "overview": "Cindy finds out the house she lives in is haunted by a little boy and goes on a quest to find out who killed him and why. Also, Alien \"Tr-iPods\" are invading the world and she has to uncover the secret in order to stop them.", "text_for_embedding": "Scary Movie 4 (2006). Genres: Comedy. Cindy finds out the house she lives in is haunted by a little boy and goes on a quest to find out who killed him and why. Also, Alien \"Tr-iPods\" are invading the world and she has to uncover the secret in order to stop them.. Tags: haunted house, alien life-form, riesen-ipod"} +{"id": "4234", "title": "Scream 3", "year": 2000, "duration_min": 116, "rating": 5.7, "genres": "Horror, Mystery", "genres_pipe": "|Horror|Mystery|", "keywords": "mask, metal detector, film director, ex-cop, reporter, slasher, scream, series of murders", "tags_pipe": "|mask|metal detector|film director|ex-cop|reporter|slasher|scream|series of murders|", "overview": "A murdering spree begins to happen again, this time its targeted toward the original Woodsboro survivors and those associated with the movie inside a movie, 'Stab 3'. Sydney must face the demons of her past to stop the killer.", "text_for_embedding": "Scream 3 (2000). Genres: Horror, Mystery. A murdering spree begins to happen again, this time its targeted toward the original Woodsboro survivors and those associated with the movie inside a movie, 'Stab 3'. Sydney must face the demons of her past to stop the killer.. Tags: mask, metal detector, film director, ex-cop, reporter, slasher, scream, series of murders"} +{"id": "196", "title": "Back to the Future Part III", "year": 1990, "duration_min": 118, "rating": 7.1, "genres": "Adventure, Comedy, Family, Science Fiction", "genres_pipe": "|Adventure|Comedy|Family|Science Fiction|", "keywords": "railroad robber, california, delorean, indian territory, sports car, inventor, locomotive, saloon, horseback riding, time travel, outlaw, sequel, mad scientist, native american, western", "tags_pipe": "|railroad robber|california|delorean|indian territory|sports car|inventor|locomotive|saloon|horseback riding|time travel|outlaw|sequel|mad scientist|native american|western|", "overview": "The final installment of the Back to the Future trilogy finds Marty digging the trusty DeLorean out of a mineshaft and looking up Doc in the Wild West of 1885. But when their time machine breaks down, the travelers are stranded in a land of spurs. More problems arise when Doc falls for pretty schoolteacher Clara Clayton, and Marty tangles with Buford Tannen.", "text_for_embedding": "Back to the Future Part III (1990). Genres: Adventure, Comedy, Family, Science Fiction. The final installment of the Back to the Future trilogy finds Marty digging the trusty DeLorean out of a mineshaft and looking up Doc in the Wild West of 1885. But when their time machine breaks down, the travelers are stranded in a land of spurs. More problems arise when Doc falls for pretty schoolteacher Clara Clayton, and Marty tangles with Buford Tannen.. Tags: railroad robber, california, delorean, indian territory, sports car, inventor, locomotive, saloon, horseback riding, time travel, outlaw, sequel, mad scientist, native american, western"} +{"id": "257091", "title": "Get Hard", "year": 2015, "duration_min": 100, "rating": 5.9, "genres": "Comedy", "genres_pipe": "|Comedy|", "keywords": "prison, training, framed, embezzlement", "tags_pipe": "|prison|training|framed|embezzlement|", "overview": "When obscenely rich hedge-fund manager James is convicted of fraud and sentenced to a stretch in San Quentin, the judge gives him one month to get his affairs in order. Knowing that he won't survive more than a few minutes in prison on his own, James desperately turns to Darnell-- a black businessman who's never even had a parking ticket -- for help. As Darnell puts James through the wringer, both learn that they were wrong about many things, including each other.", "text_for_embedding": "Get Hard (2015). Genres: Comedy. When obscenely rich hedge-fund manager James is convicted of fraud and sentenced to a stretch in San Quentin, the judge gives him one month to get his affairs in order. Knowing that he won't survive more than a few minutes in prison on his own, James desperately turns to Darnell-- a black businessman who's never even had a parking ticket -- for help. As Darnell puts James through the wringer, both learn that they were wrong about many things, including each other.. Tags: prison, training, framed, embezzlement"} +{"id": "6114", "title": "Dracula", "year": 1992, "duration_min": 128, "rating": 7.1, "genres": "Romance, Horror", "genres_pipe": "|Romance|Horror|", "keywords": "adultery, maze, vampire, bite, remake, rough sex, wake, religious conflict, bestiality, correspondence, vampire sex, autonomous shadow, vlad, fang vamp", "tags_pipe": "|adultery|maze|vampire|bite|remake|rough sex|wake|religious conflict|bestiality|correspondence|vampire sex|autonomous shadow|vlad|fang vamp|", "overview": "When Dracula leaves the captive Jonathan Harker and Transylvania for London in search of Mina Harker -- the spitting image of Dracula's long-dead wife, Elisabeta -- obsessed vampire hunter Dr. Van Helsing sets out to end the madness.", "text_for_embedding": "Dracula (1992). Genres: Romance, Horror. When Dracula leaves the captive Jonathan Harker and Transylvania for London in search of Mina Harker -- the spitting image of Dracula's long-dead wife, Elisabeta -- obsessed vampire hunter Dr. Van Helsing sets out to end the madness.. Tags: adultery, maze, vampire, bite, remake, rough sex, wake, religious conflict, bestiality, correspondence, vampire sex, autonomous shadow, vlad, fang vamp"} +{"id": "24803", "title": "Julie & Julia", "year": 2009, "duration_min": 123, "rating": 6.6, "genres": "Romance, Drama", "genres_pipe": "|Romance|Drama|", "keywords": "cooking, book, cookbook, blog, recipe, woman director, publishing", "tags_pipe": "|cooking|book|cookbook|blog|recipe|woman director|publishing|", "overview": "Julia Child and Julie Powell – both of whom wrote memoirs – find their lives intertwined. Though separated by time and space, both women are at loose ends... until they discover that with the right combination of passion, fearlessness and butter, anything is possible.", "text_for_embedding": "Julie & Julia (2009). Genres: Romance, Drama. Julia Child and Julie Powell – both of whom wrote memoirs – find their lives intertwined. Though separated by time and space, both women are at loose ends... until they discover that with the right combination of passion, fearlessness and butter, anything is possible.. Tags: cooking, book, cookbook, blog, recipe, woman director, publishing"} +{"id": "109410", "title": "42", "year": 2013, "duration_min": 128, "rating": 6.8, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "baseball, biography, sport, brooklyn dodgers", "tags_pipe": "|baseball|biography|sport|brooklyn dodgers|", "overview": "The powerful story of Jackie Robinson, the legendary baseball player who broke Major League Baseball’s color barrier when he joined the roster of the Brooklyn Dodgers. The film follows the innovative Dodgers’ general manager Branch Rickey, the MLB executive who first signed Robinson to the minors and then helped to bring him up to the show.", "text_for_embedding": "42 (2013). Genres: Drama. The powerful story of Jackie Robinson, the legendary baseball player who broke Major League Baseball’s color barrier when he joined the roster of the Brooklyn Dodgers. The film follows the innovative Dodgers’ general manager Branch Rickey, the MLB executive who first signed Robinson to the minors and then helped to bring him up to the show.. Tags: baseball, biography, sport, brooklyn dodgers"} +{"id": "1213", "title": "The Talented Mr. Ripley", "year": 1999, "duration_min": 139, "rating": 7.0, "genres": "Thriller, Crime, Drama", "genres_pipe": "|Thriller|Crime|Drama|", "keywords": "venice, italy, gay, new york, lovesickness, double life, dual identity, jealousy, secret identity, new love, homicide, atlantic ocean, new identity, planned murder, prosecution", "tags_pipe": "|venice|italy|gay|new york|lovesickness|double life|dual identity|jealousy|secret identity|new love|homicide|atlantic ocean|new identity|planned murder|prosecution|", "overview": "Tom Ripley is a calculating young man who believes it's better to be a fake somebody than a real nobody. Opportunity knocks in the form of a wealthy U.S. shipbuilder who hires Tom to travel to Italy to bring back his playboy son, Dickie. Ripley worms his way into the idyllic lives of Dickie and his girlfriend, plunging into a daring scheme of duplicity, lies and murder.", "text_for_embedding": "The Talented Mr. Ripley (1999). Genres: Thriller, Crime, Drama. Tom Ripley is a calculating young man who believes it's better to be a fake somebody than a real nobody. Opportunity knocks in the form of a wealthy U.S. shipbuilder who hires Tom to travel to Italy to bring back his playboy son, Dickie. Ripley worms his way into the idyllic lives of Dickie and his girlfriend, plunging into a daring scheme of duplicity, lies and murder.. Tags: venice, italy, gay, new york, lovesickness, double life, dual identity, jealousy, secret identity, new love, homicide, atlantic ocean, new identity, planned murder, prosecution"} +{"id": "100042", "title": "Dumb and Dumber To", "year": 2014, "duration_min": 110, "rating": 5.4, "genres": "Comedy", "genres_pipe": "|Comedy|", "keywords": "friendship, sequel, road movie, buddy comedy", "tags_pipe": "|friendship|sequel|road movie|buddy comedy|", "overview": "20 years after the dimwits set out on their first adventure, they head out in search of one of their long lost children in the hope of gaining a new kidney.", "text_for_embedding": "Dumb and Dumber To (2014). Genres: Comedy. 20 years after the dimwits set out on their first adventure, they head out in search of one of their long lost children in the hope of gaining a new kidney.. Tags: friendship, sequel, road movie, buddy comedy"} +{"id": "9036", "title": "Eight Below", "year": 2006, "duration_min": 120, "rating": 6.7, "genres": "Adventure, Drama, Family", "genres_pipe": "|Adventure|Drama|Family|", "keywords": "expedition, pilot, survival, sled dogs, seal", "tags_pipe": "|expedition|pilot|survival|sled dogs|seal|", "overview": "In the Antarctic, after an expedition with Dr. Davis McClaren, the sled dog trainer Jerry Shepherd has to leave the polar base with his colleagues due to the proximity of a heavy snow storm. He ties his dogs to be rescued after, but the mission is called-off and the dogs are left alone at their own fortune. For six months, Jerry tries to find a sponsor for a rescue mission.", "text_for_embedding": "Eight Below (2006). Genres: Adventure, Drama, Family. In the Antarctic, after an expedition with Dr. Davis McClaren, the sled dog trainer Jerry Shepherd has to leave the polar base with his colleagues due to the proximity of a heavy snow storm. He ties his dogs to be rescued after, but the mission is called-off and the dogs are left alone at their own fortune. For six months, Jerry tries to find a sponsor for a rescue mission.. Tags: expedition, pilot, survival, sled dogs, seal"} +{"id": "257211", "title": "The Intern", "year": 2015, "duration_min": 121, "rating": 7.1, "genres": "Comedy", "genres_pipe": "|Comedy|", "keywords": "intern, woman director", "tags_pipe": "|intern|woman director|", "overview": "70-year-old widower Ben Whittaker has discovered that retirement isn't all it's cracked up to be. Seizing an opportunity to get back in the game, he becomes a senior intern at an online fashion site, founded and run by Jules Ostin.", "text_for_embedding": "The Intern (2015). Genres: Comedy. 70-year-old widower Ben Whittaker has discovered that retirement isn't all it's cracked up to be. Seizing an opportunity to get back in the game, he becomes a senior intern at an online fashion site, founded and run by Jules Ostin.. Tags: intern, woman director"} +{"id": "323675", "title": "Ride Along 2", "year": 2016, "duration_min": 102, "rating": 6.1, "genres": "Action, Comedy", "genres_pipe": "|Action|Comedy|", "keywords": "police, sequel, police officer, brother-in-law brother-in-law relationship, black men, buddy film", "tags_pipe": "|police|sequel|police officer|brother-in-law brother-in-law relationship|black men|buddy film|", "overview": "As his wedding day approaches, Ben heads to Miami with his soon-to-be brother-in-law James to bring down a drug dealer who's supplying the dealers of Atlanta with product.", "text_for_embedding": "Ride Along 2 (2016). Genres: Action, Comedy. As his wedding day approaches, Ben heads to Miami with his soon-to-be brother-in-law James to bring down a drug dealer who's supplying the dealers of Atlanta with product.. Tags: police, sequel, police officer, brother-in-law brother-in-law relationship, black men, buddy film"} +{"id": "9361", "title": "The Last of the Mohicans", "year": 1992, "duration_min": 112, "rating": 7.1, "genres": "Action, Adventure, Drama, History, Romance, War", "genres_pipe": "|Action|Adventure|Drama|History|Romance|War|", "keywords": "secret love, mohawk, native american, 18th century, french and indian war", "tags_pipe": "|secret love|mohawk|native american|18th century|french and indian war|", "overview": "As the English and French soldiers battle for control of the American colonies in the 18th century, the settlers and native Americans are forced to take sides. Cora and her sister Alice unwittingly walk into trouble but are reluctantly saved by Hawkeye, an orphaned settler adopted by the last of the Mohicans.", "text_for_embedding": "The Last of the Mohicans (1992). Genres: Action, Adventure, Drama, History, Romance, War. As the English and French soldiers battle for control of the American colonies in the 18th century, the settlers and native Americans are forced to take sides. Cora and her sister Alice unwittingly walk into trouble but are reluctantly saved by Hawkeye, an orphaned settler adopted by the last of the Mohicans.. Tags: secret love, mohawk, native american, 18th century, french and indian war"} +{"id": "1677", "title": "Ray", "year": 2004, "duration_min": 152, "rating": 7.2, "genres": "Drama, Music", "genres_pipe": "|Drama|Music|", "keywords": "black people, soul, country music, loss of brother, 1970s, jazz, blindness and impaired vision, georgia, overdose, bus ride, record producer, biography, from rags to riches, childhood trauma, gospel", "tags_pipe": "|black people|soul|country music|loss of brother|1970s|jazz|blindness and impaired vision|georgia|overdose|bus ride|record producer|biography|from rags to riches|childhood trauma|gospel|", "overview": "Born on a sharecropping plantation in Northern Florida, Ray Charles went blind at seven. Inspired by a fiercely independent mom who insisted he make his own way, He found his calling and his gift behind a piano keyboard. Touring across the Southern musical circuit, the soulful singer gained a reputation and then exploded with worldwide fame when he pioneered couping gospel and country together.", "text_for_embedding": "Ray (2004). Genres: Drama, Music. Born on a sharecropping plantation in Northern Florida, Ray Charles went blind at seven. Inspired by a fiercely independent mom who insisted he make his own way, He found his calling and his gift behind a piano keyboard. Touring across the Southern musical circuit, the soulful singer gained a reputation and then exploded with worldwide fame when he pioneered couping gospel and country together.. Tags: black people, soul, country music, loss of brother, 1970s, jazz, blindness and impaired vision, georgia, overdose, bus ride, record producer, biography, from rags to riches, childhood trauma, gospel"} +{"id": "187", "title": "Sin City", "year": 2005, "duration_min": 124, "rating": 7.2, "genres": "Action, Thriller, Crime", "genres_pipe": "|Action|Thriller|Crime|", "keywords": "dystopia, based on comic book, held captive, based on graphic novel, black and white and color, black and white scene, black and white to color, mysterious killer, doing the right thing, mercedes, silhouette, neo-noir", "tags_pipe": "|dystopia|based on comic book|held captive|based on graphic novel|black and white and color|black and white scene|black and white to color|mysterious killer|doing the right thing|mercedes|silhouette|neo-noir|", "overview": "Welcome to Sin City. This town beckons to the tough, the corrupt, the brokenhearted. Some call it dark… Hard-boiled. Then there are those who call it home — Crooked cops, sexy dames, desperate vigilantes. Some are seeking revenge, others lust after redemption, and then there are those hoping for a little of both. A universe of unlikely and reluctant heroes still trying to do the right thing in a city that refuses to care.", "text_for_embedding": "Sin City (2005). Genres: Action, Thriller, Crime. Welcome to Sin City. This town beckons to the tough, the corrupt, the brokenhearted. Some call it dark… Hard-boiled. Then there are those who call it home — Crooked cops, sexy dames, desperate vigilantes. Some are seeking revenge, others lust after redemption, and then there are those hoping for a little of both. A universe of unlikely and reluctant heroes still trying to do the right thing in a city that refuses to care.. Tags: dystopia, based on comic book, held captive, based on graphic novel, black and white and color, black and white scene, black and white to color, mysterious killer, doing the right thing, mercedes, silhouette, neo-noir"} +{"id": "7461", "title": "Vantage Point", "year": 2008, "duration_min": 90, "rating": 6.2, "genres": "Drama, Action, Thriller, Crime", "genres_pipe": "|Drama|Action|Thriller|Crime|", "keywords": "bomb, terror, spain, usa president, terrorist, war against terror, camera, car journey, press, television, camcorder, bodyguard, safety, terror cell, limousine", "tags_pipe": "|bomb|terror|spain|usa president|terrorist|war against terror|camera|car journey|press|television|camcorder|bodyguard|safety|terror cell|limousine|", "overview": "The attempted assassination of the American President is told and re-told from several different perspectives.", "text_for_embedding": "Vantage Point (2008). Genres: Drama, Action, Thriller, Crime. The attempted assassination of the American President is told and re-told from several different perspectives.. Tags: bomb, terror, spain, usa president, terrorist, war against terror, camera, car journey, press, television, camcorder, bodyguard, safety, terror cell, limousine"} +{"id": "16538", "title": "I Love You, Man", "year": 2009, "duration_min": 105, "rating": 6.5, "genres": "Comedy", "genres_pipe": "|Comedy|", "keywords": "poker, bondage, duringcreditsstinger", "tags_pipe": "|poker|bondage|duringcreditsstinger|", "overview": "Peter Klaven is a successful real estate agent who, upon getting engaged to the woman of his dreams, Zooey, discovers, to his dismay and chagrin, that he has no male friend close enough to serve as his Best Man. Peter immediately sets out to rectify the situation, embarking on a series of bizarre and awkward \"man-dates.\"", "text_for_embedding": "I Love You, Man (2009). Genres: Comedy. Peter Klaven is a successful real estate agent who, upon getting engaged to the woman of his dreams, Zooey, discovers, to his dismay and chagrin, that he has no male friend close enough to serve as his Best Man. Peter immediately sets out to rectify the situation, embarking on a series of bizarre and awkward \"man-dates.\". Tags: poker, bondage, duringcreditsstinger"} +{"id": "9889", "title": "Shallow Hal", "year": 2001, "duration_min": 114, "rating": 5.7, "genres": "Comedy, Romance", "genres_pipe": "|Comedy|Romance|", "keywords": "overweight, beauty, hypnosis, overweight man, overweight woman, oberflächlichkeit, kompliment, obesity, fat suit, beauty standards, fat man, fat woman, attractiveness", "tags_pipe": "|overweight|beauty|hypnosis|overweight man|overweight woman|oberflächlichkeit|kompliment|obesity|fat suit|beauty standards|fat man|fat woman|attractiveness|", "overview": "A shallow man falls in love with a 300 pound woman because of her \"inner beauty\".", "text_for_embedding": "Shallow Hal (2001). Genres: Comedy, Romance. A shallow man falls in love with a 300 pound woman because of her \"inner beauty\".. Tags: overweight, beauty, hypnosis, overweight man, overweight woman, oberflächlichkeit, kompliment, obesity, fat suit, beauty standards, fat man, fat woman, attractiveness"} +{"id": "820", "title": "JFK", "year": 1991, "duration_min": 189, "rating": 7.5, "genres": "Drama, Thriller, History", "genres_pipe": "|Drama|Thriller|History|", "keywords": "assassination, cia, homophobia, new orleans, vietnam war, john f. kennedy, investigation, government, historical figure, president, conspiracy, death, kennedy assassination", "tags_pipe": "|assassination|cia|homophobia|new orleans|vietnam war|john f. kennedy|investigation|government|historical figure|president|conspiracy|death|kennedy assassination|", "overview": "New Orleans District Attorney Jim Garrison discovers there's more to the Kennedy assassination than the official story.", "text_for_embedding": "JFK (1991). Genres: Drama, Thriller, History. New Orleans District Attorney Jim Garrison discovers there's more to the Kennedy assassination than the official story.. Tags: assassination, cia, homophobia, new orleans, vietnam war, john f. kennedy, investigation, government, historical figure, president, conspiracy, death, kennedy assassination"} +{"id": "11565", "title": "Big Momma's House 2", "year": 2006, "duration_min": 99, "rating": 5.4, "genres": "Comedy, Crime", "genres_pipe": "|Comedy|Crime|", "keywords": "undercover, nanny, computer virus, stress, undercover agent, overweight woman, children, disguise, fbi agent, impersonation", "tags_pipe": "|undercover|nanny|computer virus|stress|undercover agent|overweight woman|children|disguise|fbi agent|impersonation|", "overview": "FBI agent Malcolm Turner goes back undercover as Big Momma, a slick-talking, slam-dunking Southern granny with attitude to spare! Now this granny must play nanny to three dysfunctional upper class kids in order to spy on their computer hacked dad.", "text_for_embedding": "Big Momma's House 2 (2006). Genres: Comedy, Crime. FBI agent Malcolm Turner goes back undercover as Big Momma, a slick-talking, slam-dunking Southern granny with attitude to spare! Now this granny must play nanny to three dysfunctional upper class kids in order to spy on their computer hacked dad.. Tags: undercover, nanny, computer virus, stress, undercover agent, overweight woman, children, disguise, fbi agent, impersonation"} +{"id": "6073", "title": "The Mexican", "year": 2001, "duration_min": 123, "rating": 5.8, "genres": "Action, Comedy, Crime, Romance", "genres_pipe": "|Action|Comedy|Crime|Romance|", "keywords": "kidnapping, pistol", "tags_pipe": "|kidnapping|pistol|", "overview": "Jerry Welbach, a reluctant bagman, has been given two ultimatums: The first is from his mob boss to travel to Mexico and retrieve a priceless antique pistol, known as \"the Mexican\"... or suffer the consequences. The second is from his girlfriend Samantha to end his association with the mob. Jerry figures alive and in trouble with Samantha is better than the more permanent alternative, so he heads south of the border.", "text_for_embedding": "The Mexican (2001). Genres: Action, Comedy, Crime, Romance. Jerry Welbach, a reluctant bagman, has been given two ultimatums: The first is from his mob boss to travel to Mexico and retrieve a priceless antique pistol, known as \"the Mexican\"... or suffer the consequences. The second is from his girlfriend Samantha to end his association with the mob. Jerry figures alive and in trouble with Samantha is better than the more permanent alternative, so he heads south of the border.. Tags: kidnapping, pistol"} +{"id": "16996", "title": "17 Again", "year": 2009, "duration_min": 102, "rating": 6.1, "genres": "Comedy", "genres_pipe": "|Comedy|", "keywords": "high school, bullying, high school sports, fake identity, adult as a child, do over", "tags_pipe": "|high school|bullying|high school sports|fake identity|adult as a child|do over|", "overview": "On the brink of a midlife crisis, 30-something Mike O'Donnell wishes he could have a \"do-over.\" And that's exactly what he gets when he wakes up one morning to find he's 17 years old again. With his adult mind stuck inside the body of a teenager, Mike actually has the chance to reverse some decisions he wishes he'd never made. But maybe they weren't so bad after all.", "text_for_embedding": "17 Again (2009). Genres: Comedy. On the brink of a midlife crisis, 30-something Mike O'Donnell wishes he could have a \"do-over.\" And that's exactly what he gets when he wakes up one morning to find he's 17 years old again. With his adult mind stuck inside the body of a teenager, Mike actually has the chance to reverse some decisions he wishes he'd never made. But maybe they weren't so bad after all.. Tags: high school, bullying, high school sports, fake identity, adult as a child, do over"} +{"id": "193610", "title": "The Other Woman", "year": 2014, "duration_min": 109, "rating": 6.2, "genres": "Comedy, Romance", "genres_pipe": "|Comedy|Romance|", "keywords": "infidelity, revenge, unfaithful boyfriend, woman, sitting on a toilet, public toilet, marital infidelity, laxative, unfaithful husband", "tags_pipe": "|infidelity|revenge|unfaithful boyfriend|woman|sitting on a toilet|public toilet|marital infidelity|laxative|unfaithful husband|", "overview": "After discovering her boyfriend is married, Carly soon meets the wife he's been cheating on. And when yet another affair is discovered, all three women team up to plot mutual revenge on the three-timing SOB.", "text_for_embedding": "The Other Woman (2014). Genres: Comedy, Romance. After discovering her boyfriend is married, Carly soon meets the wife he's been cheating on. And when yet another affair is discovered, all three women team up to plot mutual revenge on the three-timing SOB.. Tags: infidelity, revenge, unfaithful boyfriend, woman, sitting on a toilet, public toilet, marital infidelity, laxative, unfaithful husband"} +{"id": "19912", "title": "The Final Destination", "year": 2009, "duration_min": 82, "rating": 5.4, "genres": "Horror, Mystery", "genres_pipe": "|Horror|Mystery|", "keywords": "car race, dying and death, plan, stock-car-race, car crash, premonition, gore, vision", "tags_pipe": "|car race|dying and death|plan|stock-car-race|car crash|premonition|gore|vision|", "overview": "After a young man's premonition of a deadly race-car crash helps saves the lives of his peers, Death sets out to collect those who evaded their end.", "text_for_embedding": "The Final Destination (2009). Genres: Horror, Mystery. After a young man's premonition of a deadly race-car crash helps saves the lives of his peers, Death sets out to collect those who evaded their end.. Tags: car race, dying and death, plan, stock-car-race, car crash, premonition, gore, vision"} +{"id": "296098", "title": "Bridge of Spies", "year": 2015, "duration_min": 141, "rating": 7.2, "genres": "Thriller, Drama", "genres_pipe": "|Thriller|Drama|", "keywords": "spy, cia, cold war, soviet union, pilot, lawyer, american", "tags_pipe": "|spy|cia|cold war|soviet union|pilot|lawyer|american|", "overview": "During the Cold War, the Soviet Union captures U.S. pilot Francis Gary Powers after shooting down his U-2 spy plane. Sentenced to 10 years in prison, Powers' only hope is New York lawyer James Donovan, recruited by a CIA operative to negotiate his release. Donovan boards a plane to Berlin, hoping to win the young man's freedom through a prisoner exchange. If all goes well, the Russians would get Rudolf Abel, the convicted spy who Donovan defended in court.", "text_for_embedding": "Bridge of Spies (2015). Genres: Thriller, Drama. During the Cold War, the Soviet Union captures U.S. pilot Francis Gary Powers after shooting down his U-2 spy plane. Sentenced to 10 years in prison, Powers' only hope is New York lawyer James Donovan, recruited by a CIA operative to negotiate his release. Donovan boards a plane to Berlin, hoping to win the young man's freedom through a prisoner exchange. If all goes well, the Russians would get Rudolf Abel, the convicted spy who Donovan defended in court.. Tags: spy, cia, cold war, soviet union, pilot, lawyer, american"} +{"id": "8007", "title": "Behind Enemy Lines", "year": 2001, "duration_min": 106, "rating": 6.0, "genres": "Action, Drama, Thriller, War", "genres_pipe": "|Action|Drama|Thriller|War|", "keywords": "helicopter, war crimes, sniper, bosnia and herzegovina, fighter pilot, bosnian war of 1992-1995, rescue, escape, tank, atrocity, gunfight, combat, military, mine field, action hero", "tags_pipe": "|helicopter|war crimes|sniper|bosnia and herzegovina|fighter pilot|bosnian war of 1992-1995|rescue|escape|tank|atrocity|gunfight|combat|military|mine field|action hero|", "overview": "While flying a routine reconnaissance mission over Bosnia, fighter pilot Chris Burnett photographs something he wasn't supposed to see and gets shot down behind enemy lines, where he must outrun an army led by a ruthless Serbian general. With time running out and a deadly tracker on his trail, Burnett's commanding officer decides to risk his career and launch a renegade rescue mission to save his life.", "text_for_embedding": "Behind Enemy Lines (2001). Genres: Action, Drama, Thriller, War. While flying a routine reconnaissance mission over Bosnia, fighter pilot Chris Burnett photographs something he wasn't supposed to see and gets shot down behind enemy lines, where he must outrun an army led by a ruthless Serbian general. With time running out and a deadly tracker on his trail, Burnett's commanding officer decides to risk his career and launch a renegade rescue mission to save his life.. Tags: helicopter, war crimes, sniper, bosnia and herzegovina, fighter pilot, bosnian war of 1992-1995, rescue, escape, tank, atrocity, gunfight, combat, military, mine field, action hero"} +{"id": "32823", "title": "Get Him to the Greek", "year": 2010, "duration_min": 109, "rating": 5.9, "genres": "Comedy", "genres_pipe": "|Comedy|", "keywords": "aftercreditsstinger", "tags_pipe": "|aftercreditsstinger|", "overview": "Pinnacle records has the perfect plan to get their sinking company back on track: a comeback concert in LA featuring Aldous Snow, a fading rockstar who has dropped off the radar in recent years. Record company intern Aaron Green is faced with the monumental task of bringing his idol, out of control rock star Aldous Snow, back to LA for his comeback show.", "text_for_embedding": "Get Him to the Greek (2010). Genres: Comedy. Pinnacle records has the perfect plan to get their sinking company back on track: a comeback concert in LA featuring Aldous Snow, a fading rockstar who has dropped off the radar in recent years. Record company intern Aaron Green is faced with the monumental task of bringing his idol, out of control rock star Aldous Snow, back to LA for his comeback show.. Tags: aftercreditsstinger"} +{"id": "4380", "title": "Shall We Dance?", "year": 2004, "duration_min": 107, "rating": 5.9, "genres": "Drama, Romance, Comedy", "genres_pipe": "|Drama|Romance|Comedy|", "keywords": "jealousy, wife husband relationship, dancing master", "tags_pipe": "|jealousy|wife husband relationship|dancing master|", "overview": "Upon first sight of a beautiful instructor, a bored and overworked estate lawyer signs up for ballroom dancing lessons.", "text_for_embedding": "Shall We Dance? (2004). Genres: Drama, Romance, Comedy. Upon first sight of a beautiful instructor, a bored and overworked estate lawyer signs up for ballroom dancing lessons.. Tags: jealousy, wife husband relationship, dancing master"} +{"id": "11551", "title": "Small Soldiers", "year": 1998, "duration_min": 110, "rating": 6.2, "genres": "Comedy, Adventure, Fantasy, Science Fiction, Action", "genres_pipe": "|Comedy|Adventure|Fantasy|Science Fiction|Action|", "keywords": "defense industry, toy shop, technical toy, soldier, prototype, killer toys, toy comes to life", "tags_pipe": "|defense industry|toy shop|technical toy|soldier|prototype|killer toys|toy comes to life|", "overview": "When missile technology is used to enhance toy action figures, the toys soon begin to take their battle programming too seriously.", "text_for_embedding": "Small Soldiers (1998). Genres: Comedy, Adventure, Fantasy, Science Fiction, Action. When missile technology is used to enhance toy action figures, the toys soon begin to take their battle programming too seriously.. Tags: defense industry, toy shop, technical toy, soldier, prototype, killer toys, toy comes to life"} +{"id": "10336", "title": "Spawn", "year": 1997, "duration_min": 96, "rating": 5.0, "genres": "Action, Adventure, Fantasy, Horror, Science Fiction, Thriller", "genres_pipe": "|Action|Adventure|Fantasy|Horror|Science Fiction|Thriller|", "keywords": "anti hero, secret agent, fistfight, based on comic book, burn victim", "tags_pipe": "|anti hero|secret agent|fistfight|based on comic book|burn victim|", "overview": "After being murdered by corrupt colleagues in a covert government agency, Al Simmons (Michael Jai White) makes a pact with the devil to be resurrected to see his beloved wife Wanda (Theresa Randle). In exchange for his return to Earth, Simmons agrees to lead Hell's Army in the destruction of mankind.", "text_for_embedding": "Spawn (1997). Genres: Action, Adventure, Fantasy, Horror, Science Fiction, Thriller. After being murdered by corrupt colleagues in a covert government agency, Al Simmons (Michael Jai White) makes a pact with the devil to be resurrected to see his beloved wife Wanda (Theresa Randle). In exchange for his return to Earth, Simmons agrees to lead Hell's Army in the destruction of mankind.. Tags: anti hero, secret agent, fistfight, based on comic book, burn victim"} +{"id": "11362", "title": "The Count of Monte Cristo", "year": 2002, "duration_min": 131, "rating": 7.3, "genres": "Action, Adventure, Drama, Thriller", "genres_pipe": "|Action|Adventure|Drama|Thriller|", "keywords": "loss of lover, lover (female), ex-lover, torture, napoleon bonaparte", "tags_pipe": "|loss of lover|lover (female)|ex-lover|torture|napoleon bonaparte|", "overview": "Edmond Dantés's life and plans to marry the beautiful Mercedes are shattered when his best friend, Fernand, deceives him. After spending 13 miserable years in prison, Dantés escapes with the help of a fellow inmate and plots his revenge, cleverly insinuating himself into the French nobility.", "text_for_embedding": "The Count of Monte Cristo (2002). Genres: Action, Adventure, Drama, Thriller. Edmond Dantés's life and plans to marry the beautiful Mercedes are shattered when his best friend, Fernand, deceives him. After spending 13 miserable years in prison, Dantés escapes with the help of a fellow inmate and plots his revenge, cleverly insinuating himself into the French nobility.. Tags: loss of lover, lover (female), ex-lover, torture, napoleon bonaparte"} +{"id": "50348", "title": "The Lincoln Lawyer", "year": 2011, "duration_min": 119, "rating": 7.0, "genres": "Crime, Drama, Thriller", "genres_pipe": "|Crime|Drama|Thriller|", "keywords": "judge, arrest, jury, private investigator", "tags_pipe": "|judge|arrest|jury|private investigator|", "overview": "A lawyer conducts business from the back of his Lincoln town car while representing a high-profile client in Beverly Hills.", "text_for_embedding": "The Lincoln Lawyer (2011). Genres: Crime, Drama, Thriller. A lawyer conducts business from the back of his Lincoln town car while representing a high-profile client in Beverly Hills.. Tags: judge, arrest, jury, private investigator"} +{"id": "48138", "title": "Unknown", "year": 2011, "duration_min": 113, "rating": 6.5, "genres": "Action, Mystery, Thriller", "genres_pipe": "|Action|Mystery|Thriller|", "keywords": "taxi, hotel, coma, taxi driver, prince, briefcase, hospital, stolen identity", "tags_pipe": "|taxi|hotel|coma|taxi driver|prince|briefcase|hospital|stolen identity|", "overview": "An American biologist attending a conference in Berlin awakens from a coma after a car accident, only to discover that someone has taken his identity and that no one, not even his wife, believes him. With the help of an illegal immigrant and a former Stazi agent, he sets out to prove who he is and find out why people are trying to kill him.", "text_for_embedding": "Unknown (2011). Genres: Action, Mystery, Thriller. An American biologist attending a conference in Berlin awakens from a coma after a car accident, only to discover that someone has taken his identity and that no one, not even his wife, believes him. With the help of an illegal immigrant and a former Stazi agent, he sets out to prove who he is and find out why people are trying to kill him.. Tags: taxi, hotel, coma, taxi driver, prince, briefcase, hospital, stolen identity"} +{"id": "1124", "title": "The Prestige", "year": 2006, "duration_min": 130, "rating": 8.0, "genres": "Drama, Mystery, Thriller", "genres_pipe": "|Drama|Mystery|Thriller|", "keywords": "competition, secret, obsession, magic, dying and death, class society, illusion, tricks, hostility, class, rivalry", "tags_pipe": "|competition|secret|obsession|magic|dying and death|class society|illusion|tricks|hostility|class|rivalry|", "overview": "A mysterious story of two magicians whose intense rivalry leads them on a life-long battle for supremacy -- full of obsession, deceit and jealousy with dangerous and deadly consequences.", "text_for_embedding": "The Prestige (2006). Genres: Drama, Mystery, Thriller. A mysterious story of two magicians whose intense rivalry leads them on a life-long battle for supremacy -- full of obsession, deceit and jealousy with dangerous and deadly consequences.. Tags: competition, secret, obsession, magic, dying and death, class society, illusion, tricks, hostility, class, rivalry"} +{"id": "227159", "title": "Horrible Bosses 2", "year": 2014, "duration_min": 108, "rating": 6.1, "genres": "Comedy", "genres_pipe": "|Comedy|", "keywords": "prison, kidnapping, sequel, car chase, sex addict, sex tape", "tags_pipe": "|prison|kidnapping|sequel|car chase|sex addict|sex tape|", "overview": "Dale, Kurt and Nick decide to start their own business but things don't go as planned because of a slick investor, prompting the trio to pull off a harebrained and misguided kidnapping scheme.", "text_for_embedding": "Horrible Bosses 2 (2014). Genres: Comedy. Dale, Kurt and Nick decide to start their own business but things don't go as planned because of a slick investor, prompting the trio to pull off a harebrained and misguided kidnapping scheme.. Tags: prison, kidnapping, sequel, car chase, sex addict, sex tape"} +{"id": "68179", "title": "Escape from Planet Earth", "year": 2013, "duration_min": 89, "rating": 5.7, "genres": "Animation, Comedy, Adventure, Family, Science Fiction", "genres_pipe": "|Animation|Comedy|Adventure|Family|Science Fiction|", "keywords": "spaceship, alien, rescue, escape, planet, astronaut, Γη, mission control", "tags_pipe": "|spaceship|alien|rescue|escape|planet|astronaut|Γη|mission control|", "overview": "Astronaut Scorch Supernova finds himself caught in a trap when he responds to an SOS from a notoriously dangerous alien planet.", "text_for_embedding": "Escape from Planet Earth (2013). Genres: Animation, Comedy, Adventure, Family, Science Fiction. Astronaut Scorch Supernova finds himself caught in a trap when he responds to an SOS from a notoriously dangerous alien planet.. Tags: spaceship, alien, rescue, escape, planet, astronaut, Γη, mission control"} +{"id": "1579", "title": "Apocalypto", "year": 2006, "duration_min": 139, "rating": 7.3, "genres": "Action, Adventure, Drama, Thriller", "genres_pipe": "|Action|Adventure|Drama|Thriller|", "keywords": "loss of family, solar eclipse, slavery, jaguar, village, maya civilization, forest, tribe, human sacrifice, central america, maya, ancient civilization, yucatec maya language", "tags_pipe": "|loss of family|solar eclipse|slavery|jaguar|village|maya civilization|forest|tribe|human sacrifice|central america|maya|ancient civilization|yucatec maya language|", "overview": "Set in the Mayan civilization, when a man's idyllic presence is brutally disrupted by a violent invading force, he is taken on a perilous journey to a world ruled by fear and oppression where a harrowing end awaits him. Through a twist of fate and spurred by the power of his love for his woman and his family he will make a desperate break to return home and to ultimately save his way of life.", "text_for_embedding": "Apocalypto (2006). Genres: Action, Adventure, Drama, Thriller. Set in the Mayan civilization, when a man's idyllic presence is brutally disrupted by a violent invading force, he is taken on a perilous journey to a world ruled by fear and oppression where a harrowing end awaits him. Through a twist of fate and spurred by the power of his love for his woman and his family he will make a desperate break to return home and to ultimately save his way of life.. Tags: loss of family, solar eclipse, slavery, jaguar, village, maya civilization, forest, tribe, human sacrifice, central america, maya, ancient civilization, yucatec maya language"} +{"id": "708", "title": "The Living Daylights", "year": 1987, "duration_min": 130, "rating": 6.2, "genres": "Action, Adventure, Thriller", "genres_pipe": "|Action|Adventure|Thriller|", "keywords": "london england, smuggling of arms, prison, england, assassination, spy, falsely accused, secret identity, country estate, arms deal, russia, drug traffic, secret mission, secret intelligence service, kgb", "tags_pipe": "|london england|smuggling of arms|prison|england|assassination|spy|falsely accused|secret identity|country estate|arms deal|russia|drug traffic|secret mission|secret intelligence service|kgb|", "overview": "James Bond helps a Russian General escape into the west. He soon finds out that the KGB wants to kill him for helping the General. A little while later the General is kidnapped from the Secret Service leading 007 to be suspicious.", "text_for_embedding": "The Living Daylights (1987). Genres: Action, Adventure, Thriller. James Bond helps a Russian General escape into the west. He soon finds out that the KGB wants to kill him for helping the General. A little while later the General is kidnapped from the Secret Service leading 007 to be suspicious.. Tags: london england, smuggling of arms, prison, england, assassination, spy, falsely accused, secret identity, country estate, arms deal, russia, drug traffic, secret mission, secret intelligence service, kgb"} +{"id": "34851", "title": "Predators", "year": 2010, "duration_min": 107, "rating": 6.0, "genres": "Action, Science Fiction, Adventure, Thriller", "genres_pipe": "|Action|Science Fiction|Adventure|Thriller|", "keywords": "hunter, predator, yakuza, hunting human beings, alien life-form, sequel, alien, alien planet, jungle, soldier, warrior", "tags_pipe": "|hunter|predator|yakuza|hunting human beings|alien life-form|sequel|alien|alien planet|jungle|soldier|warrior|", "overview": "A mercenary reluctantly leads a motley crew of warriors who soon come to realize they've been captured and deposited on an alien planet by an unknown nemesis. With the exception of a peculiar physician, they are all cold-blooded killers, convicts, death squad members... hunters who have now become the hunted.", "text_for_embedding": "Predators (2010). Genres: Action, Science Fiction, Adventure, Thriller. A mercenary reluctantly leads a motley crew of warriors who soon come to realize they've been captured and deposited on an alien planet by an unknown nemesis. With the exception of a peculiar physician, they are all cold-blooded killers, convicts, death squad members... hunters who have now become the hunted.. Tags: hunter, predator, yakuza, hunting human beings, alien life-form, sequel, alien, alien planet, jungle, soldier, warrior"} +{"id": "9930", "title": "Legal Eagles", "year": 1986, "duration_min": 116, "rating": 5.8, "genres": "Comedy, Crime, Drama, Romance, Thriller", "genres_pipe": "|Comedy|Crime|Drama|Romance|Thriller|", "keywords": "court case, client, lawyer, courtroom", "tags_pipe": "|court case|client|lawyer|courtroom|", "overview": "District Attorney Tom Logan is set for higher office, at least until he becomes involved with defence lawyer Laura Kelly and her unpredictable client Chelsea Deardon. It seems the least of Chelsea's crimes is the theft of a very valuable painting, but as the women persuade Logan to investigate further and to cut some official corners, a much more sinister scenario starts to emerge.", "text_for_embedding": "Legal Eagles (1986). Genres: Comedy, Crime, Drama, Romance, Thriller. District Attorney Tom Logan is set for higher office, at least until he becomes involved with defence lawyer Laura Kelly and her unpredictable client Chelsea Deardon. It seems the least of Chelsea's crimes is the theft of a very valuable painting, but as the women persuade Logan to investigate further and to cut some official corners, a much more sinister scenario starts to emerge.. Tags: court case, client, lawyer, courtroom"} +{"id": "1586", "title": "Secret Window", "year": 2004, "duration_min": 96, "rating": 6.4, "genres": "Thriller, Mystery", "genres_pipe": "|Thriller|Mystery|", "keywords": "alcohol, adultery, detective, mississippi, jealousy, isolation, paranoia, motel, window, nightmare, letter, ax, notebook, police, murder", "tags_pipe": "|alcohol|adultery|detective|mississippi|jealousy|isolation|paranoia|motel|window|nightmare|letter|ax|notebook|police|murder|", "overview": "Mort Rainey, a writer just emerging from a painful divorce with his ex-wife, is stalked at his remote lake house by a psychotic stranger and would-be scribe who claims Rainey swiped his best story idea. But as Rainey endeavors to prove his innocence, he begins to question his own sanity.", "text_for_embedding": "Secret Window (2004). Genres: Thriller, Mystery. Mort Rainey, a writer just emerging from a painful divorce with his ex-wife, is stalked at his remote lake house by a psychotic stranger and would-be scribe who claims Rainey swiped his best story idea. But as Rainey endeavors to prove his innocence, he begins to question his own sanity.. Tags: alcohol, adultery, detective, mississippi, jealousy, isolation, paranoia, motel, window, nightmare, letter, ax, notebook, police, murder"} +{"id": "2044", "title": "The Lake House", "year": 2006, "duration_min": 99, "rating": 6.5, "genres": "Romance, Drama, Mystery", "genres_pipe": "|Romance|Drama|Mystery|", "keywords": "chicago, writing, architect, future, time, architecture, mysterious letter, near future, first kiss, romantic drama, passage of time", "tags_pipe": "|chicago|writing|architect|future|time|architecture|mysterious letter|near future|first kiss|romantic drama|passage of time|", "overview": "A lonely doctor who once occupied an unusual lakeside home begins exchanging love letters with its former resident, a frustrated architect. They must try to unravel the mystery behind their extraordinary romance before it's too late.", "text_for_embedding": "The Lake House (2006). Genres: Romance, Drama, Mystery. A lonely doctor who once occupied an unusual lakeside home begins exchanging love letters with its former resident, a frustrated architect. They must try to unravel the mystery behind their extraordinary romance before it's too late.. Tags: chicago, writing, architect, future, time, architecture, mysterious letter, near future, first kiss, romantic drama, passage of time"} +{"id": "9913", "title": "The Skeleton Key", "year": 2005, "duration_min": 104, "rating": 6.4, "genres": "Drama, Horror, Mystery, Thriller", "genres_pipe": "|Drama|Horror|Mystery|Thriller|", "keywords": "nurse, secret, dream, fight, kidnapping, new orleans, key, plantation, voodoo, party, lawyer, blood, violence, mirror, attic", "tags_pipe": "|nurse|secret|dream|fight|kidnapping|new orleans|key|plantation|voodoo|party|lawyer|blood|violence|mirror|attic|", "overview": "A hospice nurse working at a spooky New Orleans plantation home finds herself entangled in a mystery involving the house's dark past.", "text_for_embedding": "The Skeleton Key (2005). Genres: Drama, Horror, Mystery, Thriller. A hospice nurse working at a spooky New Orleans plantation home finds herself entangled in a mystery involving the house's dark past.. Tags: nurse, secret, dream, fight, kidnapping, new orleans, key, plantation, voodoo, party, lawyer, blood, violence, mirror, attic"} +{"id": "71864", "title": "The Odd Life of Timothy Green", "year": 2012, "duration_min": 105, "rating": 6.5, "genres": "Fantasy, Drama, Comedy, Family", "genres_pipe": "|Fantasy|Drama|Comedy|Family|", "keywords": "green, dodgeball, incredibile, timothy", "tags_pipe": "|green|dodgeball|incredibile|timothy|", "overview": "A childless couple bury a box in their backyard, containing all of their wishes for an infant. Soon, a child is born, though Timothy Green is not all that he appears.", "text_for_embedding": "The Odd Life of Timothy Green (2012). Genres: Fantasy, Drama, Comedy, Family. A childless couple bury a box in their backyard, containing all of their wishes for an infant. Soon, a child is born, though Timothy Green is not all that he appears.. Tags: green, dodgeball, incredibile, timothy"} +{"id": "10761", "title": "Made of Honor", "year": 2008, "duration_min": 101, "rating": 6.0, "genres": "Comedy, Romance", "genres_pipe": "|Comedy|Romance|", "keywords": "scotland, love of one's life, ladykiller, one-night stand, bridesmaid, forbidden love, male female relationship, best friends in love", "tags_pipe": "|scotland|love of one's life|ladykiller|one-night stand|bridesmaid|forbidden love|male female relationship|best friends in love|", "overview": "Tom and Hannah have been platonic friends for 10 years. He's a serial dater, while she wants marriage but hasn't found Mr. Right. Just as Tom is starting to think that he is relationship material after all, Hannah gets engaged. When she asks Tom to be her 'maid' of honor, he reluctantly agrees just so he can attempt to stop the wedding and woo her.", "text_for_embedding": "Made of Honor (2008). Genres: Comedy, Romance. Tom and Hannah have been platonic friends for 10 years. He's a serial dater, while she wants marriage but hasn't found Mr. Right. Just as Tom is starting to think that he is relationship material after all, Hannah gets engaged. When she asks Tom to be her 'maid' of honor, he reluctantly agrees just so he can attempt to stop the wedding and woo her.. Tags: scotland, love of one's life, ladykiller, one-night stand, bridesmaid, forbidden love, male female relationship, best friends in love"} +{"id": "209451", "title": "Jersey Boys", "year": 2014, "duration_min": 134, "rating": 6.8, "genres": "Music, Drama", "genres_pipe": "|Music|Drama|", "keywords": "biography, based on play", "tags_pipe": "|biography|based on play|", "overview": "From director Clint Eastwood comes the big-screen version of the Tony Award-winning musical Jersey Boys. The film tells the story of four young men from the wrong side of the tracks in New Jersey who came together to form the iconic 1960s rock group The Four Seasons. The story of their trials and triumphs are accompanied by the songs that influenced a generation, including “Sherry,” “Big Girls Don’t Cry,” “Walk Like a Man,” “Rag Doll,” and many more.", "text_for_embedding": "Jersey Boys (2014). Genres: Music, Drama. From director Clint Eastwood comes the big-screen version of the Tony Award-winning musical Jersey Boys. The film tells the story of four young men from the wrong side of the tracks in New Jersey who came together to form the iconic 1960s rock group The Four Seasons. The story of their trials and triumphs are accompanied by the songs that influenced a generation, including “Sherry,” “Big Girls Don’t Cry,” “Walk Like a Man,” “Rag Doll,” and many more.. Tags: biography, based on play"} +{"id": "11975", "title": "The Rainmaker", "year": 1997, "duration_min": 135, "rating": 6.7, "genres": "Drama, Crime, Thriller", "genres_pipe": "|Drama|Crime|Thriller|", "keywords": "jurors, proof, court case, leukemia, lawyer, courtroom", "tags_pipe": "|jurors|proof|court case|leukemia|lawyer|courtroom|", "overview": "When Rudy Baylor (Matt Damon), a young attorney with no clients, goes to work for a seedy ambulance chaser, he wants to help the parents of a terminally ill boy in their suit against an insurance company (represented by a ruthless Jon Voight). But to take on corporate America, Rudy and a scrappy paralegal (Danny DeVito) must open their own law firm.", "text_for_embedding": "The Rainmaker (1997). Genres: Drama, Crime, Thriller. When Rudy Baylor (Matt Damon), a young attorney with no clients, goes to work for a seedy ambulance chaser, he wants to help the parents of a terminally ill boy in their suit against an insurance company (represented by a ruthless Jon Voight). But to take on corporate America, Rudy and a scrappy paralegal (Danny DeVito) must open their own law firm.. Tags: jurors, proof, court case, leukemia, lawyer, courtroom"} +{"id": "4970", "title": "Gothika", "year": 2003, "duration_min": 98, "rating": 5.8, "genres": "Horror, Thriller", "genres_pipe": "|Horror|Thriller|", "keywords": "amnesia, mental institution, patient, trust, false accusations, medication, gothic, mental illness", "tags_pipe": "|amnesia|mental institution|patient|trust|false accusations|medication|gothic|mental illness|", "overview": "After a car crash, a criminal psychologist (Halle Berry) comes to, only to find that she's a patient in the same mental institution that currently employs her. It seems she's been accused of murdering her husband -- but she has no memory of committing the crime. As she tries to regain her memory and convince her co-workers of her innocence, a vengeful spirit uses her as an earthly pawn, which further convinces everyone of her guilt.", "text_for_embedding": "Gothika (2003). Genres: Horror, Thriller. After a car crash, a criminal psychologist (Halle Berry) comes to, only to find that she's a patient in the same mental institution that currently employs her. It seems she's been accused of murdering her husband -- but she has no memory of committing the crime. As she tries to regain her memory and convince her co-workers of her innocence, a vengeful spirit uses her as an earthly pawn, which further convinces everyone of her guilt.. Tags: amnesia, mental institution, patient, trust, false accusations, medication, gothic, mental illness"} +{"id": "11831", "title": "Amistad", "year": 1997, "duration_min": 155, "rating": 6.8, "genres": "Drama, History, Mystery", "genres_pipe": "|Drama|History|Mystery|", "keywords": "cuba, mutiny, slavery, sentence, historical figure, havanna, tall ship, slave trade", "tags_pipe": "|cuba|mutiny|slavery|sentence|historical figure|havanna|tall ship|slave trade|", "overview": "In 1839, the slave ship Amistad set sail from Cuba to America. During the long trip, Cinque leads the slaves in an unprecedented uprising. They are then held prisoner in Connecticut, and their release becomes the subject of heated debate. Freed slave Theodore Joadson wants Cinque and the others exonerated and recruits property lawyer Roger Baldwin to help his case. Eventually, John Quincy Adams also becomes an ally.", "text_for_embedding": "Amistad (1997). Genres: Drama, History, Mystery. In 1839, the slave ship Amistad set sail from Cuba to America. During the long trip, Cinque leads the slaves in an unprecedented uprising. They are then held prisoner in Connecticut, and their release becomes the subject of heated debate. Freed slave Theodore Joadson wants Cinque and the others exonerated and recruits property lawyer Roger Baldwin to help his case. Eventually, John Quincy Adams also becomes an ally.. Tags: cuba, mutiny, slavery, sentence, historical figure, havanna, tall ship, slave trade"} +{"id": "9096", "title": "Medicine Man", "year": 1992, "duration_min": 106, "rating": 5.8, "genres": "Adventure", "genres_pipe": "|Adventure|", "keywords": "medicine, ant, research, amazon, cancer, jungle, doctor, falling in love, cure, rainforest", "tags_pipe": "|medicine|ant|research|amazon|cancer|jungle|doctor|falling in love|cure|rainforest|", "overview": "An eccentric scientist working for a large drug company is working on a research project in the Amazon jungle. He sends for a research assistant and a gas chromatograph because he's close to a cure for cancer. When the assistant turns out to be a \"mere woman,\" he rejects her help. Meanwhile the bulldozers get closer to the area in which they are conducting research, and they eventually learn to work together, and begin falling in love.", "text_for_embedding": "Medicine Man (1992). Genres: Adventure. An eccentric scientist working for a large drug company is working on a research project in the Amazon jungle. He sends for a research assistant and a gas chromatograph because he's close to a cure for cancer. When the assistant turns out to be a \"mere woman,\" he rejects her help. Meanwhile the bulldozers get closer to the area in which they are conducting research, and they eventually learn to work together, and begin falling in love.. Tags: medicine, ant, research, amazon, cancer, jungle, doctor, falling in love, cure, rainforest"} +{"id": "440", "title": "Aliens vs Predator: Requiem", "year": 2007, "duration_min": 94, "rating": 4.9, "genres": "Fantasy, Action, Science Fiction, Thriller, Horror", "genres_pipe": "|Fantasy|Action|Science Fiction|Thriller|Horror|", "keywords": "predator, national guard, hybrid, alien, morgue, alien possession, triangle, infestation, xenomorph", "tags_pipe": "|predator|national guard|hybrid|alien|morgue|alien possession|triangle|infestation|xenomorph|", "overview": "A sequel to 2004's Alien vs. Predator, the iconic creatures from two of the scariest film franchises in movie history wage their most brutal battle ever - in our own backyard. The small town of Gunnison, Colorado becomes a war zone between two of the deadliest extra-terrestrial life forms - the Alien and the Predator. When a Predator scout ship crash-lands in the hills outside the town, Alien Facehuggers and a hybrid Alien/Predator are released and begin to terrorize the town.", "text_for_embedding": "Aliens vs Predator: Requiem (2007). Genres: Fantasy, Action, Science Fiction, Thriller, Horror. A sequel to 2004's Alien vs. Predator, the iconic creatures from two of the scariest film franchises in movie history wage their most brutal battle ever - in our own backyard. The small town of Gunnison, Colorado becomes a war zone between two of the deadliest extra-terrestrial life forms - the Alien and the Predator. When a Predator scout ship crash-lands in the hills outside the town, Alien Facehuggers and a hybrid Alien/Predator are released and begin to terrorize the town.. Tags: predator, national guard, hybrid, alien, morgue, alien possession, triangle, infestation, xenomorph"} +{"id": "11011", "title": "Ri¢hie Ri¢h", "year": 1994, "duration_min": 95, "rating": 5.4, "genres": "Comedy, Family", "genres_pipe": "|Comedy|Family|", "keywords": "family, life raft, private plane, toothbrush, gluttony, magnifying glass, rubber boat", "tags_pipe": "|family|life raft|private plane|toothbrush|gluttony|magnifying glass|rubber boat|", "overview": "Billionaire heir Richie Rich has it all, including Reggie Jackson as a batting coach and Claudia Schiffer as a personal trainer -- but no playmates. What's more, scoundrel Laurence Van Dough is scheming to take over the family empire. Uh-oh! Enter faithful butler Cadbury to save the day.", "text_for_embedding": "Ri¢hie Ri¢h (1994). Genres: Comedy, Family. Billionaire heir Richie Rich has it all, including Reggie Jackson as a batting coach and Claudia Schiffer as a personal trainer -- but no playmates. What's more, scoundrel Laurence Van Dough is scheming to take over the family empire. Uh-oh! Enter faithful butler Cadbury to save the day.. Tags: family, life raft, private plane, toothbrush, gluttony, magnifying glass, rubber boat"} +{"id": "10641", "title": "Autumn in New York", "year": 2000, "duration_min": 103, "rating": 5.7, "genres": "Drama, Romance", "genres_pipe": "|Drama|Romance|", "keywords": "new love, love of one's life, unexpected happiness, dying and death, success, kiss, love, relationship, unhappiness, woman director, fear of dying", "tags_pipe": "|new love|love of one's life|unexpected happiness|dying and death|success|kiss|love|relationship|unhappiness|woman director|fear of dying|", "overview": "Autumn in New York follows the sexual exploits of Will Keane - New York restaurateur, infamous verging-on-50 playboy, master of the no-commitment seduction - until he runs into an unexpected dead end when he meets Charlotte Fielding. Charlotte is half Will's age and twice his match, a 21 year-old free spirit yearning to get out and taste the excitement of adult life.", "text_for_embedding": "Autumn in New York (2000). Genres: Drama, Romance. Autumn in New York follows the sexual exploits of Will Keane - New York restaurateur, infamous verging-on-50 playboy, master of the no-commitment seduction - until he runs into an unexpected dead end when he meets Charlotte Fielding. Charlotte is half Will's age and twice his match, a 21 year-old free spirit yearning to get out and taste the excitement of adult life.. Tags: new love, love of one's life, unexpected happiness, dying and death, success, kiss, love, relationship, unhappiness, woman director, fear of dying"} +{"id": "11172", "title": "Music and Lyrics", "year": 2007, "duration_min": 96, "rating": 6.2, "genres": "Comedy, Music, Romance", "genres_pipe": "|Comedy|Music|Romance|", "keywords": "pop star, song, romantic comedy, song writing, piano", "tags_pipe": "|pop star|song|romantic comedy|song writing|piano|", "overview": "A washed up singer is given a couple days to compose a chart-topping hit for an aspiring teen sensation. Though he's never written a decent lyric in his life, he sparks with an offbeat younger woman with a flair for words.", "text_for_embedding": "Music and Lyrics (2007). Genres: Comedy, Music, Romance. A washed up singer is given a couple days to compose a chart-topping hit for an aspiring teen sensation. Though he's never written a decent lyric in his life, he sparks with an offbeat younger woman with a flair for words.. Tags: pop star, song, romantic comedy, song writing, piano"} +{"id": "39513", "title": "Paul", "year": 2011, "duration_min": 104, "rating": 6.5, "genres": "Adventure, Comedy, Science Fiction", "genres_pipe": "|Adventure|Comedy|Science Fiction|", "keywords": "san diego, area 51, alien space craft, hit with a chair, shot in the knee, duringcreditsstinger, 1980s", "tags_pipe": "|san diego|area 51|alien space craft|hit with a chair|shot in the knee|duringcreditsstinger|1980s|", "overview": "For the past 60 years, a space-traveling smart-ass named Paul has been locked up in a top-secret military base, advising world leaders about his kind. But when he worries he’s outlived his usefulness and the dissection table is drawing uncomfortably close, Paul escapes on the first RV that passes by his compound in Area 51. Fortunately, it contains the two earthlings who are most likely to rescue and harbor an alien on the run.", "text_for_embedding": "Paul (2011). Genres: Adventure, Comedy, Science Fiction. For the past 60 years, a space-traveling smart-ass named Paul has been locked up in a top-secret military base, advising world leaders about his kind. But when he worries he’s outlived his usefulness and the dissection table is drawing uncomfortably close, Paul escapes on the first RV that passes by his compound in Area 51. Fortunately, it contains the two earthlings who are most likely to rescue and harbor an alien on the run.. Tags: san diego, area 51, alien space craft, hit with a chair, shot in the knee, duringcreditsstinger, 1980s"} +{"id": "82687", "title": "The Guilt Trip", "year": 2012, "duration_min": 95, "rating": 5.4, "genres": "Comedy", "genres_pipe": "|Comedy|", "keywords": "inventor, road trip, guilt, mother son relationship, woman director", "tags_pipe": "|inventor|road trip|guilt|mother son relationship|woman director|", "overview": "An inventor and his mom hit the road together so he can sell his latest invention.", "text_for_embedding": "The Guilt Trip (2012). Genres: Comedy. An inventor and his mom hit the road together so he can sell his latest invention.. Tags: inventor, road trip, guilt, mother son relationship, woman director"} +{"id": "41446", "title": "Scream 4", "year": 2011, "duration_min": 111, "rating": 6.1, "genres": "Horror, Mystery", "genres_pipe": "|Horror|Mystery|", "keywords": "sheriff, book, knife, horror, rescue, author, masked killer, hospital, corpse", "tags_pipe": "|sheriff|book|knife|horror|rescue|author|masked killer|hospital|corpse|", "overview": "Sidney Prescott, now the author of a self-help book, returns home to Woodsboro on the last stop of her book tour. There she reconnects with Sheriff Dewey and Gale, who are now married, as well as her cousin Jill and her Aunt Kate. Unfortunately, Sidney's appearance also brings about the return of Ghostface, putting Sidney, Gale, and Dewey, along with Jill, her friends, and the whole town of Woodsboro in danger.", "text_for_embedding": "Scream 4 (2011). Genres: Horror, Mystery. Sidney Prescott, now the author of a self-help book, returns home to Woodsboro on the last stop of her book tour. There she reconnects with Sheriff Dewey and Gale, who are now married, as well as her cousin Jill and her Aunt Kate. Unfortunately, Sidney's appearance also brings about the return of Ghostface, putting Sidney, Gale, and Dewey, along with Jill, her friends, and the whole town of Woodsboro in danger.. Tags: sheriff, book, knife, horror, rescue, author, masked killer, hospital, corpse"} +{"id": "8224", "title": "8MM", "year": 1999, "duration_min": 123, "rating": 6.1, "genres": "Thriller, Crime, Mystery", "genres_pipe": "|Thriller|Crime|Mystery|", "keywords": "pornography, porn actor, loss of daughter, child pornography, private investigator, subculture, private detective", "tags_pipe": "|pornography|porn actor|loss of daughter|child pornography|private investigator|subculture|private detective|", "overview": "A small, seemingly innocuous plastic reel of film leads surveillance specialist Tom Welles down an increasingly dark and frightening path. With the help of the streetwise Max, he relentlessly follows a bizarre trail of evidence to determine the fate of a complete stranger. As his work turns into obsession, he drifts farther and farther away from his wife, family and simple life as a small-town PI.", "text_for_embedding": "8MM (1999). Genres: Thriller, Crime, Mystery. A small, seemingly innocuous plastic reel of film leads surveillance specialist Tom Welles down an increasingly dark and frightening path. With the help of the streetwise Max, he relentlessly follows a bizarre trail of evidence to determine the fate of a complete stranger. As his work turns into obsession, he drifts farther and farther away from his wife, family and simple life as a small-town PI.. Tags: pornography, porn actor, loss of daughter, child pornography, private investigator, subculture, private detective"} +{"id": "10537", "title": "The Doors", "year": 1991, "duration_min": 140, "rating": 6.7, "genres": "Drama, Music", "genres_pipe": "|Drama|Music|", "keywords": "hippie, poetry, sex, rock and roll, nudity, hallucination, wilderness, airplane, musical, addicted, joint, organ, lsd, biography, alcoholism", "tags_pipe": "|hippie|poetry|sex|rock and roll|nudity|hallucination|wilderness|airplane|musical|addicted|joint|organ|lsd|biography|alcoholism|", "overview": "The story of the famous and influential 1960's rock band and its lead singer and composer, Jim Morrison.", "text_for_embedding": "The Doors (1991). Genres: Drama, Music. The story of the famous and influential 1960's rock band and its lead singer and composer, Jim Morrison.. Tags: hippie, poetry, sex, rock and roll, nudity, hallucination, wilderness, airplane, musical, addicted, joint, organ, lsd, biography, alcoholism"} +{"id": "225886", "title": "Sex Tape", "year": 2014, "duration_min": 97, "rating": 5.3, "genres": "Comedy", "genres_pipe": "|Comedy|", "keywords": "marriage, internet, relationship, family, sex tape", "tags_pipe": "|marriage|internet|relationship|family|sex tape|", "overview": "When Jay and Annie first got together, their romantic connection was intense – but ten years and two kids later, the flame of their love needs a spark. To kick things up a notch, they decide – why not? – to make a video of themselves trying out every position in The Joy of Sex in one marathon three-hour session. It seems like a great idea – until they discover that their most private video is no longer private. With their reputations on the line, they know they’re just one click away from being laid bare to the world... but as their race to reclaim their video leads to a night they'll never forget, they'll find that their video will expose even more than they bargained for.", "text_for_embedding": "Sex Tape (2014). Genres: Comedy. When Jay and Annie first got together, their romantic connection was intense – but ten years and two kids later, the flame of their love needs a spark. To kick things up a notch, they decide – why not? – to make a video of themselves trying out every position in The Joy of Sex in one marathon three-hour session. It seems like a great idea – until they discover that their most private video is no longer private. With their reputations on the line, they know they’re just one click away from being laid bare to the world... but as their race to reclaim their video leads to a night they'll never forget, they'll find that their video will expose even more than they bargained for.. Tags: marriage, internet, relationship, family, sex tape"} +{"id": "10385", "title": "Hanging Up", "year": 2000, "duration_min": 94, "rating": 5.0, "genres": "Comedy, Drama", "genres_pipe": "|Comedy|Drama|", "keywords": "sister sister relationship, cheating, amnesia, crisis line, telephone, loss of wife, ex-wife, woman director", "tags_pipe": "|sister sister relationship|cheating|amnesia|crisis line|telephone|loss of wife|ex-wife|woman director|", "overview": "A trio of sisters bond over their ambivalence toward the approaching death of their curmudgeonly father, to whom none of them was particularly close.", "text_for_embedding": "Hanging Up (2000). Genres: Comedy, Drama. A trio of sisters bond over their ambivalence toward the approaching death of their curmudgeonly father, to whom none of them was particularly close.. Tags: sister sister relationship, cheating, amnesia, crisis line, telephone, loss of wife, ex-wife, woman director"} +{"id": "55779", "title": "Final Destination 5", "year": 2011, "duration_min": 92, "rating": 5.9, "genres": "Horror, Mystery", "genres_pipe": "|Horror|Mystery|", "keywords": "premonition, death by accident, crash, end is here, duringcreditsstinger, 3d", "tags_pipe": "|premonition|death by accident|crash|end is here|duringcreditsstinger|3d|", "overview": "In this fifth installment, Death is just as omnipresent as ever, and is unleashed after one man’s premonition saves a group of coworkers from a terrifying suspension bridge collapse. But this group of unsuspecting souls was never supposed to survive, and, in a terrifying race against time, the ill-fated group frantically tries to discover a way to escape Death’s sinister agenda.", "text_for_embedding": "Final Destination 5 (2011). Genres: Horror, Mystery. In this fifth installment, Death is just as omnipresent as ever, and is unleashed after one man’s premonition saves a group of coworkers from a terrifying suspension bridge collapse. But this group of unsuspecting souls was never supposed to survive, and, in a terrifying race against time, the ill-fated group frantically tries to discover a way to escape Death’s sinister agenda.. Tags: premonition, death by accident, crash, end is here, duringcreditsstinger, 3d"} +{"id": "10154", "title": "Mickey Blue Eyes", "year": 1999, "duration_min": 102, "rating": 5.3, "genres": "Comedy, Crime, Romance", "genres_pipe": "|Comedy|Crime|Romance|", "keywords": "new york, marriage proposal, fbi, mafia boss, mafia", "tags_pipe": "|new york|marriage proposal|fbi|mafia boss|mafia|", "overview": "An English auctioneer proposes to the daughter of a mafia kingpin, only to realize that certain \"favors\" would be asked of him.", "text_for_embedding": "Mickey Blue Eyes (1999). Genres: Comedy, Crime, Romance. An English auctioneer proposes to the daughter of a mafia kingpin, only to realize that certain \"favors\" would be asked of him.. Tags: new york, marriage proposal, fbi, mafia boss, mafia"} +{"id": "10647", "title": "Pay It Forward", "year": 2000, "duration_min": 122, "rating": 7.0, "genres": "Drama, Romance", "genres_pipe": "|Drama|Romance|", "keywords": "child's point of view, candlelight vigil, good deed, exotic dancer, schoolteacher, extra credit assignment, disfigurement, junior high school, burn injury, woman director", "tags_pipe": "|child's point of view|candlelight vigil|good deed|exotic dancer|schoolteacher|extra credit assignment|disfigurement|junior high school|burn injury|woman director|", "overview": "Like some other kids, 12-year-old Trevor McKinney believed in the goodness of human nature. Like many other kids, he was determined to change the world for the better. Unlike most other kids, he succeeded.", "text_for_embedding": "Pay It Forward (2000). Genres: Drama, Romance. Like some other kids, 12-year-old Trevor McKinney believed in the goodness of human nature. Like many other kids, he was determined to change the world for the better. Unlike most other kids, he succeeded.. Tags: child's point of view, candlelight vigil, good deed, exotic dancer, schoolteacher, extra credit assignment, disfigurement, junior high school, burn injury, woman director"} +{"id": "11431", "title": "Fever Pitch", "year": 2005, "duration_min": 103, "rating": 5.9, "genres": "Comedy, Drama, Romance", "genres_pipe": "|Comedy|Drama|Romance|", "keywords": "baseball, fanatic, relationship problems, sport, teacher, red sox, fenway park", "tags_pipe": "|baseball|fanatic|relationship problems|sport|teacher|red sox|fenway park|", "overview": "When relaxed and charming Ben Wrightman meets workaholic Lindsey Meeks she finds him sweet and charming, they hit it off and when it is winter Ben can spend every waking hour with Lindsey, but when summer comes around the corner Lindsey discovers Ben's obsession with the Boston Red Sox. She thinks it is perfect until everything goes downhill for them.", "text_for_embedding": "Fever Pitch (2005). Genres: Comedy, Drama, Romance. When relaxed and charming Ben Wrightman meets workaholic Lindsey Meeks she finds him sweet and charming, they hit it off and when it is winter Ben can spend every waking hour with Lindsey, but when summer comes around the corner Lindsey discovers Ben's obsession with the Boston Red Sox. She thinks it is perfect until everything goes downhill for them.. Tags: baseball, fanatic, relationship problems, sport, teacher, red sox, fenway park"} +{"id": "8457", "title": "Drillbit Taylor", "year": 2008, "duration_min": 102, "rating": 5.5, "genres": "Comedy", "genres_pipe": "|Comedy|", "keywords": "prison, jealousy, homeless person, beach, parents kids relationship, fight, bodyguard, protection, nerd, high school, substitute teacher, campus, teacher, principal, celebration", "tags_pipe": "|prison|jealousy|homeless person|beach|parents kids relationship|fight|bodyguard|protection|nerd|high school|substitute teacher|campus|teacher|principal|celebration|", "overview": "Three kids hire a low-budget bodyguard to protect them from the playground bully, not realising he is just a homeless beggar and petty thief looking for some easy cash.", "text_for_embedding": "Drillbit Taylor (2008). Genres: Comedy. Three kids hire a low-budget bodyguard to protect them from the playground bully, not realising he is just a homeless beggar and petty thief looking for some easy cash.. Tags: prison, jealousy, homeless person, beach, parents kids relationship, fight, bodyguard, protection, nerd, high school, substitute teacher, campus, teacher, principal, celebration"} +{"id": "188161", "title": "A Million Ways to Die in the West", "year": 2014, "duration_min": 116, "rating": 5.8, "genres": "Comedy, Western", "genres_pipe": "|Comedy|Western|", "keywords": "gunslinger, farmer, wild west, laxative", "tags_pipe": "|gunslinger|farmer|wild west|laxative|", "overview": "As a cowardly farmer begins to fall for the mysterious new woman in town, he must put his new-found courage to the test when her husband, a notorious gun-slinger, announces his arrival.", "text_for_embedding": "A Million Ways to Die in the West (2014). Genres: Comedy, Western. As a cowardly farmer begins to fall for the mysterious new woman in town, he must put his new-found courage to the test when her husband, a notorious gun-slinger, announces his arrival.. Tags: gunslinger, farmer, wild west, laxative"} +{"id": "8850", "title": "The Shadow", "year": 1994, "duration_min": 108, "rating": 5.4, "genres": "Adventure, Fantasy, Action, Thriller, Science Fiction", "genres_pipe": "|Adventure|Fantasy|Action|Thriller|Science Fiction|", "keywords": "new york, atomic bomb, ladykiller, hypnosis, superhero, based on comic book, radio series, invisibility, the shadow", "tags_pipe": "|new york|atomic bomb|ladykiller|hypnosis|superhero|based on comic book|radio series|invisibility|the shadow|", "overview": "Based on the 1930's comic strip, puts the hero up against his arch enemy, Shiwan Khan, who plans to take over the world by holding a city to ransom using an atom bomb. Using his powers of invisibility and \"The power to cloud men's minds\", the Shadow comes blazing to the city's rescue with explosive results.", "text_for_embedding": "The Shadow (1994). Genres: Adventure, Fantasy, Action, Thriller, Science Fiction. Based on the 1930's comic strip, puts the hero up against his arch enemy, Shiwan Khan, who plans to take over the world by holding a city to ransom using an atom bomb. Using his powers of invisibility and \"The power to cloud men's minds\", the Shadow comes blazing to the city's rescue with explosive results.. Tags: new york, atomic bomb, ladykiller, hypnosis, superhero, based on comic book, radio series, invisibility, the shadow"} +{"id": "64685", "title": "Extremely Loud & Incredibly Close", "year": 2011, "duration_min": 129, "rating": 6.9, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "based on novel, autism, key, scavenger hunt, death of father, young boy, new york city, tambourine, lock, grieving, post 9/11", "tags_pipe": "|based on novel|autism|key|scavenger hunt|death of father|young boy|new york city|tambourine|lock|grieving|post 9/11|", "overview": "A year after his father's death, Oskar, a troubled young boy, discovers a mysterious key he believes was left for him by his father and embarks on a scavenger hunt to find the matching lock.", "text_for_embedding": "Extremely Loud & Incredibly Close (2011). Genres: Drama. A year after his father's death, Oskar, a troubled young boy, discovers a mysterious key he believes was left for him by his father and embarks on a scavenger hunt to find the matching lock.. Tags: based on novel, autism, key, scavenger hunt, death of father, young boy, new york city, tambourine, lock, grieving, post 9/11"} +{"id": "38357", "title": "Morning Glory", "year": 2010, "duration_min": 102, "rating": 6.1, "genres": "Comedy, Drama, Romance", "genres_pipe": "|Comedy|Drama|Romance|", "keywords": "work ethic, tv morning show, tv reporter", "tags_pipe": "|work ethic|tv morning show|tv reporter|", "overview": "A young and devoted morning television producer is hired as an executive producer on a long-running morning show at a once-prominent but currently failing station in New York City. Eager to keep the show on air, she recruits a former news journalist and anchor who disapproves of co-hosting a show that does not deal with real news stories.", "text_for_embedding": "Morning Glory (2010). Genres: Comedy, Drama, Romance. A young and devoted morning television producer is hired as an executive producer on a long-running morning show at a once-prominent but currently failing station in New York City. Eager to keep the show on air, she recruits a former news journalist and anchor who disapproves of co-hosting a show that does not deal with real news stories.. Tags: work ethic, tv morning show, tv reporter"} +{"id": "10060", "title": "Get Rich or Die Tryin'", "year": 2005, "duration_min": 117, "rating": 6.3, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "loss of mother, attempted murder, career, musical, rapper, drug", "tags_pipe": "|loss of mother|attempted murder|career|musical|rapper|drug|", "overview": "A tale of an inner city drug dealer who turns away from crime to pursue his passion, rap music.", "text_for_embedding": "Get Rich or Die Tryin' (2005). Genres: Drama. A tale of an inner city drug dealer who turns away from crime to pursue his passion, rap music.. Tags: loss of mother, attempted murder, career, musical, rapper, drug"} +{"id": "11398", "title": "The Art of War", "year": 2000, "duration_min": 117, "rating": 5.6, "genres": "Crime, Action, Adventure", "genres_pipe": "|Crime|Action|Adventure|", "keywords": "china, chinese woman, secret agent, conspiracy of murder, united nations", "tags_pipe": "|china|chinese woman|secret agent|conspiracy of murder|united nations|", "overview": "When ruthless terrorists threaten to bring down the United Nations, they frame the one man they believe can stop them: an international security expert named Shaw. Now he must run from his own allies and become a solitary force for good, as he tries to stop what could become World War III.", "text_for_embedding": "The Art of War (2000). Genres: Crime, Action, Adventure. When ruthless terrorists threaten to bring down the United Nations, they frame the one man they believe can stop them: an international security expert named Shaw. Now he must run from his own allies and become a solitary force for good, as he tries to stop what could become World War III.. Tags: china, chinese woman, secret agent, conspiracy of murder, united nations"} +{"id": "1833", "title": "Rent", "year": 2005, "duration_min": 135, "rating": 6.7, "genres": "Drama, Romance", "genres_pipe": "|Drama|Romance|", "keywords": "gay, sex, aids, musical, hiv, based on play, african american, rock opera, missing person, hiv positive, home movie, mugging, telephone call  , lower east side", "tags_pipe": "|gay|sex|aids|musical|hiv|based on play|african american|rock opera|missing person|hiv positive|home movie|mugging|telephone call  |lower east side|", "overview": "This rock opera tells the story of one year in the life of a group of bohemians struggling in modern day East Village New York. The story centers around Mark and Roger, two roommates. While a former tragedy has made Roger numb to life, Mark tries to capture it through his attempts to make a film. In the year that follows, the group deals with love, loss, AIDS, and modern day life.", "text_for_embedding": "Rent (2005). Genres: Drama, Romance. This rock opera tells the story of one year in the life of a group of bohemians struggling in modern day East Village New York. The story centers around Mark and Roger, two roommates. While a former tragedy has made Roger numb to life, Mark tries to capture it through his attempts to make a film. In the year that follows, the group deals with love, loss, AIDS, and modern day life.. Tags: gay, sex, aids, musical, hiv, based on play, african american, rock opera, missing person, hiv positive, home movie, mugging, telephone call  , lower east side"} +{"id": "10391", "title": "Bless the Child", "year": 2000, "duration_min": 107, "rating": 4.9, "genres": "Drama, Horror, Thriller, Crime", "genres_pipe": "|Drama|Horror|Thriller|Crime|", "keywords": "sister sister relationship, autism, mephisto, satanism, ersatz", "tags_pipe": "|sister sister relationship|autism|mephisto|satanism|ersatz|", "overview": "When Maggie's sister Jenna saddles her with an autistic newborn named Cody she touches Maggie's heart and becomes the daughter she has always longed for. But six years later Jenna suddenly re-enters her life and, with her mysterious new husband, Eric Stark, abducts Cody. Despite the fact that Maggie has no legal rights to Cody, FBI agent John Travis, takes up her cause when he realizes that Cody shares the same birth date as several other recently missing children.", "text_for_embedding": "Bless the Child (2000). Genres: Drama, Horror, Thriller, Crime. When Maggie's sister Jenna saddles her with an autistic newborn named Cody she touches Maggie's heart and becomes the daughter she has always longed for. But six years later Jenna suddenly re-enters her life and, with her mysterious new husband, Eric Stark, abducts Cody. Despite the fact that Maggie has no legal rights to Cody, FBI agent John Travis, takes up her cause when he realizes that Cody shares the same birth date as several other recently missing children.. Tags: sister sister relationship, autism, mephisto, satanism, ersatz"} +{"id": "8970", "title": "The Out-of-Towners", "year": 1999, "duration_min": 90, "rating": 5.0, "genres": "Comedy", "genres_pipe": "|Comedy|", "keywords": "new york, travel, misfortune", "tags_pipe": "|new york|travel|misfortune|", "overview": "The remake of the 1970 Neil Simon comedy follows the adventures of a couple, Henry and Nancy Clark, vexed by misfortune while in New York City for a job interview.", "text_for_embedding": "The Out-of-Towners (1999). Genres: Comedy. The remake of the 1970 Neil Simon comedy follows the adventures of a couple, Henry and Nancy Clark, vexed by misfortune while in New York City for a job interview.. Tags: new york, travel, misfortune"} +{"id": "9306", "title": "The Island of Dr. Moreau", "year": 1996, "duration_min": 96, "rating": 4.6, "genres": "Fantasy, Horror, Science Fiction", "genres_pipe": "|Fantasy|Horror|Science Fiction|", "keywords": "monster, experiment, island, mutation, genetics, hybrid, remake, h. g. wells", "tags_pipe": "|monster|experiment|island|mutation|genetics|hybrid|remake|h. g. wells|", "overview": "A shipwrecked sailor stumbles upon a mysterious island and is shocked to discover that a brilliant scientist and his lab assistant have found a way to combine human and animal DNA with horrific results.", "text_for_embedding": "The Island of Dr. Moreau (1996). Genres: Fantasy, Horror, Science Fiction. A shipwrecked sailor stumbles upon a mysterious island and is shocked to discover that a brilliant scientist and his lab assistant have found a way to combine human and animal DNA with horrific results.. Tags: monster, experiment, island, mutation, genetics, hybrid, remake, h. g. wells"} +{"id": "11370", "title": "The Musketeer", "year": 2001, "duration_min": 104, "rating": 5.2, "genres": "Action, Adventure, Drama", "genres_pipe": "|Action|Adventure|Drama|", "keywords": "loss of family, queen, power, power takeover, kingdom, royalty, musketeer, murder hunt", "tags_pipe": "|loss of family|queen|power|power takeover|kingdom|royalty|musketeer|murder hunt|", "overview": "In Peter Hyams's adaptation of the famous Alexander Dumas story The Three Musketeers, the young D'Artagnan seeks to join the legendary musketeer brigade and avenge his father's death - but he finds that the musketeers have been disbanded.", "text_for_embedding": "The Musketeer (2001). Genres: Action, Adventure, Drama. In Peter Hyams's adaptation of the famous Alexander Dumas story The Three Musketeers, the young D'Artagnan seeks to join the legendary musketeer brigade and avenge his father's death - but he finds that the musketeers have been disbanded.. Tags: loss of family, queen, power, power takeover, kingdom, royalty, musketeer, murder hunt"} +{"id": "12184", "title": "The Other Boleyn Girl", "year": 2008, "duration_min": 115, "rating": 6.4, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "england, sister sister relationship, queen, kingdom, henry viii", "tags_pipe": "|england|sister sister relationship|queen|kingdom|henry viii|", "overview": "A sumptuous and sensual tale of intrigue, romance and betrayal set against the backdrop of a defining moment in European history: two beautiful sisters, Anne and Mary Boleyn, driven by their family's blind ambition, compete for the love of the handsome and passionate King Henry VIII.", "text_for_embedding": "The Other Boleyn Girl (2008). Genres: Drama. A sumptuous and sensual tale of intrigue, romance and betrayal set against the backdrop of a defining moment in European history: two beautiful sisters, Anne and Mary Boleyn, driven by their family's blind ambition, compete for the love of the handsome and passionate King Henry VIII.. Tags: england, sister sister relationship, queen, kingdom, henry viii"} +{"id": "1921", "title": "Sweet November", "year": 2001, "duration_min": 119, "rating": 6.4, "genres": "Drama, Romance", "genres_pipe": "|Drama|Romance|", "keywords": "workaholic, dogsitter", "tags_pipe": "|workaholic|dogsitter|", "overview": "Nelson is a man devoted to his advertising career in San Francisco. One day, while taking a driving test at the DMV, he meets Sara. She is very different from the other women in his life. Nelson causes her to miss out on taking the test and later that day she tracks him down. One thing leads to another and Nelson ends up living with her through a November that will change his life forever.", "text_for_embedding": "Sweet November (2001). Genres: Drama, Romance. Nelson is a man devoted to his advertising career in San Francisco. One day, while taking a driving test at the DMV, he meets Sara. She is very different from the other women in his life. Nelson causes her to miss out on taking the test and later that day she tracks him down. One thing leads to another and Nelson ends up living with her through a November that will change his life forever.. Tags: workaholic, dogsitter"} +{"id": "1683", "title": "The Reaping", "year": 2007, "duration_min": 99, "rating": 5.4, "genres": "Horror", "genres_pipe": "|Horror|", "keywords": "river, miracle, bible, louisiana, frog, grasshopper, faith", "tags_pipe": "|river|miracle|bible|louisiana|frog|grasshopper|faith|", "overview": "Katherine Morrissey, a former Christian missionary, lost her faith after the tragic deaths of her family. Now she applies her expertise to debunking religious phenomena. When a series of biblical plagues overrun a small town, Katherine arrives to prove that a supernatural force is not behind the occurrences, but soon finds that science cannot explain what is happening. Instead, she must regain her faith to combat the evil that waits in a Louisiana swamp.", "text_for_embedding": "The Reaping (2007). Genres: Horror. Katherine Morrissey, a former Christian missionary, lost her faith after the tragic deaths of her family. Now she applies her expertise to debunking religious phenomena. When a series of biblical plagues overrun a small town, Katherine arrives to prove that a supernatural force is not behind the occurrences, but soon finds that science cannot explain what is happening. Instead, she must regain her faith to combat the evil that waits in a Louisiana swamp.. Tags: river, miracle, bible, louisiana, frog, grasshopper, faith"} +{"id": "203", "title": "Mean Streets", "year": 1973, "duration_min": 110, "rating": 7.2, "genres": "Drama, Crime", "genres_pipe": "|Drama|Crime|", "keywords": "epilepsy, protection money, secret love, money, redemption", "tags_pipe": "|epilepsy|protection money|secret love|money|redemption|", "overview": "A small-time hood must choose from among love, friendship and the chance to rise within the mob.", "text_for_embedding": "Mean Streets (1973). Genres: Drama, Crime. A small-time hood must choose from among love, friendship and the chance to rise within the mob.. Tags: epilepsy, protection money, secret love, money, redemption"} +{"id": "11858", "title": "Renaissance Man", "year": 1994, "duration_min": 128, "rating": 5.9, "genres": "Comedy, War", "genres_pipe": "|Comedy|War|", "keywords": "vietnam veteran, commercial, advertising expert, kaserne, stau, soldier, unemployment, woman director, teachers and students", "tags_pipe": "|vietnam veteran|commercial|advertising expert|kaserne|stau|soldier|unemployment|woman director|teachers and students|", "overview": "Danny DeVito plays an advertising man who is slowly sliding downhill. When he is fired from his job in Detroit, he signs up for unemployment. One day they find him a job; Teaching thinking skills to Army recruits. He arrives on base to find that there is no structure set up for the class.", "text_for_embedding": "Renaissance Man (1994). Genres: Comedy, War. Danny DeVito plays an advertising man who is slowly sliding downhill. When he is fired from his job in Detroit, he signs up for unemployment. One day they find him a job; Teaching thinking skills to Army recruits. He arrives on base to find that there is no structure set up for the class.. Tags: vietnam veteran, commercial, advertising expert, kaserne, stau, soldier, unemployment, woman director, teachers and students"} +{"id": "62835", "title": "Colombiana", "year": 2011, "duration_min": 108, "rating": 6.5, "genres": "Action, Thriller, Crime, Drama", "genres_pipe": "|Action|Thriller|Crime|Drama|", "keywords": "street gang, uncle, female assassin, witness to murder", "tags_pipe": "|street gang|uncle|female assassin|witness to murder|", "overview": "Zoe Saldana plays a young woman who, after witnessing her parents’ murder as a child in Bogota, grows up to be a stone-cold assassin. She works for her uncle as a hitman by day, but her personal time is spent engaging in vigilante murders that she hopes will lead her to her ultimate target: the mobster responsible for her parents' death.", "text_for_embedding": "Colombiana (2011). Genres: Action, Thriller, Crime, Drama. Zoe Saldana plays a young woman who, after witnessing her parents’ murder as a child in Bogota, grows up to be a stone-cold assassin. She works for her uncle as a hitman by day, but her personal time is spent engaging in vigilante murders that she hopes will lead her to her ultimate target: the mobster responsible for her parents' death.. Tags: street gang, uncle, female assassin, witness to murder"} +{"id": "18937", "title": "Quest for Camelot", "year": 1998, "duration_min": 86, "rating": 6.9, "genres": "Fantasy, Animation, Drama, Romance, Family", "genres_pipe": "|Fantasy|Animation|Drama|Romance|Family|", "keywords": "", "tags_pipe": "", "overview": "During the times of King Arthur, Kayley is a brave girl who dreams of following her late father as a Knight of the Round Table. The evil Ruber wants to invade Camelot and take the throne of King Arthur, and Kayley has to stop him.", "text_for_embedding": "Quest for Camelot (1998). Genres: Fantasy, Animation, Drama, Romance, Family. During the times of King Arthur, Kayley is a brave girl who dreams of following her late father as a Knight of the Round Table. The evil Ruber wants to invade Camelot and take the throne of King Arthur, and Kayley has to stop him.. Tags: "} +{"id": "13536", "title": "City By The Sea", "year": 2002, "duration_min": 108, "rating": 5.7, "genres": "Crime, Drama, Mystery", "genres_pipe": "|Crime|Drama|Mystery|", "keywords": "murder, homicide detective", "tags_pipe": "|murder|homicide detective|", "overview": "A man struggling to come to terms with the sins of his father makes the terrible discovery that his own son has fallen into a life of crime in a drama based on a true story. Vincent LaMarca is a dedicated and well-respected New York City police detective who has gone to great lengths to distance himself from his past.", "text_for_embedding": "City By The Sea (2002). Genres: Crime, Drama, Mystery. A man struggling to come to terms with the sins of his father makes the terrible discovery that his own son has fallen into a life of crime in a drama based on a true story. Vincent LaMarca is a dedicated and well-respected New York City police detective who has gone to great lengths to distance himself from his past.. Tags: murder, homicide detective"} +{"id": "15556", "title": "At First Sight", "year": 1999, "duration_min": 128, "rating": 5.9, "genres": "Drama, Romance", "genres_pipe": "|Drama|Romance|", "keywords": "blind, massage therapist", "tags_pipe": "|blind|massage therapist|", "overview": "A blind man has an operation to regain his sight at the urging of his girlfriend and must deal with the changes to his life.", "text_for_embedding": "At First Sight (1999). Genres: Drama, Romance. A blind man has an operation to regain his sight at the urging of his girlfriend and must deal with the changes to his life.. Tags: blind, massage therapist"} +{"id": "10718", "title": "Torque", "year": 2004, "duration_min": 84, "rating": 4.7, "genres": "Action", "genres_pipe": "|Action|", "keywords": "ex-girlfriend, drug dealer, gang, motorcyclist", "tags_pipe": "|ex-girlfriend|drug dealer|gang|motorcyclist|", "overview": "Biker Cary Ford is framed by an old rival and biker gang leader for the murder of another gang member who happens to be the brother of Trey, leader of the most feared biker gang in the country. Ford is now on the run trying to clear his name from the murder with Trey and his gang looking for his blood.", "text_for_embedding": "Torque (2004). Genres: Action. Biker Cary Ford is framed by an old rival and biker gang leader for the murder of another gang member who happens to be the brother of Trey, leader of the most feared biker gang in the country. Ford is now on the run trying to clear his name from the murder with Trey and his gang looking for his blood.. Tags: ex-girlfriend, drug dealer, gang, motorcyclist"} +{"id": "11062", "title": "City Hall", "year": 1996, "duration_min": 111, "rating": 6.0, "genres": "Drama, Thriller", "genres_pipe": "|Drama|Thriller|", "keywords": "corruption, undercover, war on drugs, mayor, drug dealer, presidential election, undercover agent, investigation, police, drug", "tags_pipe": "|corruption|undercover|war on drugs|mayor|drug dealer|presidential election|undercover agent|investigation|police|drug|", "overview": "The accidental shooting of a boy in New York leads to an investigation by the Deputy Mayor, and unexpectedly far-reaching consequences.", "text_for_embedding": "City Hall (1996). Genres: Drama, Thriller. The accidental shooting of a boy in New York leads to an investigation by the Deputy Mayor, and unexpectedly far-reaching consequences.. Tags: corruption, undercover, war on drugs, mayor, drug dealer, presidential election, undercover agent, investigation, police, drug"} +{"id": "10802", "title": "Showgirls", "year": 1995, "duration_min": 128, "rating": 4.9, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "dancing, female nudity, go-go dancer, spanner, seduction, striptease, sexappeal", "tags_pipe": "|dancing|female nudity|go-go dancer|spanner|seduction|striptease|sexappeal|", "overview": "A young drifter named Nomi arrives in Las Vegas to become a dancer and soon sets about clawing and pushing her way to become a top showgirl.", "text_for_embedding": "Showgirls (1995). Genres: Drama. A young drifter named Nomi arrives in Las Vegas to become a dancer and soon sets about clawing and pushing her way to become a top showgirl.. Tags: dancing, female nudity, go-go dancer, spanner, seduction, striptease, sexappeal"} +{"id": "1887", "title": "Marie Antoinette", "year": 2006, "duration_min": 123, "rating": 6.5, "genres": "Drama, History", "genres_pipe": "|Drama|History|", "keywords": "shoe, voice over, rite, theatre audience, bride and groom, death of king, applause, woman director", "tags_pipe": "|shoe|voice over|rite|theatre audience|bride and groom|death of king|applause|woman director|", "overview": "The retelling of France's iconic but ill-fated queen, Marie Antoinette. From her betrothal and marriage to Louis XVI at 15 to her reign as queen at 19 and ultimately the fall of Versailles.", "text_for_embedding": "Marie Antoinette (2006). Genres: Drama, History. The retelling of France's iconic but ill-fated queen, Marie Antoinette. From her betrothal and marriage to Louis XVI at 15 to her reign as queen at 19 and ultimately the fall of Versailles.. Tags: shoe, voice over, rite, theatre audience, bride and groom, death of king, applause, woman director"} +{"id": "6071", "title": "Kiss of Death", "year": 1995, "duration_min": 101, "rating": 5.7, "genres": "Action, Crime, Drama, Thriller", "genres_pipe": "|Action|Crime|Drama|Thriller|", "keywords": "hoodlum", "tags_pipe": "|hoodlum|", "overview": "Jimmy Kilmartin is an ex-con living in Astoria in the New York City borough of Queens, trying to stay clean and raising a family with his wife Bev. But when his cousin Ronnie causes him to take a fall for driving an illegal transport of stolen cars, a police officer named Calvin Hart is injured and Jimmy lands back in prison. In exchange for an early release, he is asked to help bring down a local crime boss named Little Junior Brown. Jimmy remarries and attempts to renew a relationship with his child. But he is sent undercover by Detective Hart to work with Junior and infiltrate his operations. As soon as Little Junior kills an undercover federal agent with Jimmy watching, the unscrupulous district attorney and the feds further complicate his life. He must take down Junior or face the consequences.", "text_for_embedding": "Kiss of Death (1995). Genres: Action, Crime, Drama, Thriller. Jimmy Kilmartin is an ex-con living in Astoria in the New York City borough of Queens, trying to stay clean and raising a family with his wife Bev. But when his cousin Ronnie causes him to take a fall for driving an illegal transport of stolen cars, a police officer named Calvin Hart is injured and Jimmy lands back in prison. In exchange for an early release, he is asked to help bring down a local crime boss named Little Junior Brown. Jimmy remarries and attempts to renew a relationship with his child. But he is sent undercover by Detective Hart to work with Junior and infiltrate his operations. As soon as Little Junior kills an undercover federal agent with Jimmy watching, the unscrupulous district attorney and the feds further complicate his life. He must take down Junior or face the consequences.. Tags: hoodlum"} +{"id": "10461", "title": "Get Carter", "year": 2000, "duration_min": 102, "rating": 4.8, "genres": "Action, Drama, Thriller, Crime", "genres_pipe": "|Action|Drama|Thriller|Crime|", "keywords": "ritual, pornographic video, car crash, dvd", "tags_pipe": "|ritual|pornographic video|car crash|dvd|", "overview": "Remake of the Michael Caine classic. Jack Carter, a mob enforcer living in Las Vegas, travels back to his hometown of Seattle for his brother's funeral. During this visit, Carter realizes that the death of his brother was not accidental, but a murder. With this knowledge, Carter sets out to kill all those responsible.", "text_for_embedding": "Get Carter (2000). Genres: Action, Drama, Thriller, Crime. Remake of the Michael Caine classic. Jack Carter, a mob enforcer living in Las Vegas, travels back to his hometown of Seattle for his brother's funeral. During this visit, Carter realizes that the death of his brother was not accidental, but a murder. With this knowledge, Carter sets out to kill all those responsible.. Tags: ritual, pornographic video, car crash, dvd"} +{"id": "80278", "title": "The Impossible", "year": 2012, "duration_min": 113, "rating": 7.0, "genres": "Thriller, Drama", "genres_pipe": "|Thriller|Drama|", "keywords": "thailand, tsunami, family vacation, tidal wave, catastrophe, swept away, separation from family, boxing day, 21st century", "tags_pipe": "|thailand|tsunami|family vacation|tidal wave|catastrophe|swept away|separation from family|boxing day|21st century|", "overview": "In December 2004, close-knit family Maria, Henry and their three sons begin their winter vacation in Thailand. But the day after Christmas, the idyllic holiday turns into an incomprehensible nightmare when a terrifying roar rises from the depths of the sea, followed by a wall of black water that devours everything in its path. Though Maria and her family face their darkest hour, unexpected displays of kindness and courage ameliorate their terror.", "text_for_embedding": "The Impossible (2012). Genres: Thriller, Drama. In December 2004, close-knit family Maria, Henry and their three sons begin their winter vacation in Thailand. But the day after Christmas, the idyllic holiday turns into an incomprehensible nightmare when a terrifying roar rises from the depths of the sea, followed by a wall of black water that devours everything in its path. Though Maria and her family face their darkest hour, unexpected displays of kindness and courage ameliorate their terror.. Tags: thailand, tsunami, family vacation, tidal wave, catastrophe, swept away, separation from family, boxing day, 21st century"} +{"id": "12704", "title": "Ishtar", "year": 1987, "duration_min": 107, "rating": 4.2, "genres": "Action, Adventure, Comedy", "genres_pipe": "|Action|Adventure|Comedy|", "keywords": "wilderness, sahara, beautiful woman, singer, escape, woman director", "tags_pipe": "|wilderness|sahara|beautiful woman|singer|escape|woman director|", "overview": "Two terrible lounge singers get booked to play a gig in a Moroccan hotel but somehow become pawns in an international power play between the CIA, the Emir of Ishtar, and the rebels trying to overthrow his regime", "text_for_embedding": "Ishtar (1987). Genres: Action, Adventure, Comedy. Two terrible lounge singers get booked to play a gig in a Moroccan hotel but somehow become pawns in an international power play between the CIA, the Emir of Ishtar, and the rebels trying to overthrow his regime. Tags: wilderness, sahara, beautiful woman, singer, escape, woman director"} +{"id": "10315", "title": "Fantastic Mr. Fox", "year": 2009, "duration_min": 87, "rating": 7.5, "genres": "Adventure, Animation, Comedy, Family", "genres_pipe": "|Adventure|Animation|Comedy|Family|", "keywords": "fox, tree, peasant, revenge, cider, tale, farm life", "tags_pipe": "|fox|tree|peasant|revenge|cider|tale|farm life|", "overview": "The Fantastic Mr. Fox bored with his current life, plans a heist against the three local farmers. The farmers, tired of sharing their chickens with the sly fox, seek revenge against him and his family.", "text_for_embedding": "Fantastic Mr. Fox (2009). Genres: Adventure, Animation, Comedy, Family. The Fantastic Mr. Fox bored with his current life, plans a heist against the three local farmers. The farmers, tired of sharing their chickens with the sly fox, seek revenge against him and his family.. Tags: fox, tree, peasant, revenge, cider, tale, farm life"} +{"id": "16643", "title": "Life or Something Like It", "year": 2002, "duration_min": 103, "rating": 5.7, "genres": "Comedy, Drama, Romance", "genres_pipe": "|Comedy|Drama|Romance|", "keywords": "", "tags_pipe": "", "overview": "A reporter Lanie Kerrigan interviews a psychic homeless man for a fluff piece about a football game's score. Instead he tells her that her life has no meaning and is going to end in just a few days, which sparks her to action, trying to change the pattern of her life...", "text_for_embedding": "Life or Something Like It (2002). Genres: Comedy, Drama, Romance. A reporter Lanie Kerrigan interviews a psychic homeless man for a fluff piece about a football game's score. Instead he tells her that her life has no meaning and is going to end in just a few days, which sparks her to action, trying to change the pattern of her life.... Tags: "} +{"id": "2687", "title": "Memoirs of an Invisible Man", "year": 1992, "duration_min": 99, "rating": 5.7, "genres": "Comedy, Fantasy, Science Fiction", "genres_pipe": "|Comedy|Fantasy|Science Fiction|", "keywords": "invisible man", "tags_pipe": "|invisible man|", "overview": "After a freak accident, an invisible yuppie runs for his life from a treacherous CIA official while trying to cope with his new life.", "text_for_embedding": "Memoirs of an Invisible Man (1992). Genres: Comedy, Fantasy, Science Fiction. After a freak accident, an invisible yuppie runs for his life from a treacherous CIA official while trying to cope with his new life.. Tags: invisible man"} +{"id": "194", "title": "Amélie", "year": 2001, "duration_min": 122, "rating": 7.8, "genres": "Comedy, Romance", "genres_pipe": "|Comedy|Romance|", "keywords": "paris, love triangle, ghost train, sex-shop, shyness, montmartre, daughter, garden gnome, journey round the world, photography", "tags_pipe": "|paris|love triangle|ghost train|sex-shop|shyness|montmartre|daughter|garden gnome|journey round the world|photography|", "overview": "At a tiny Parisian café, the adorable yet painfully shy Amélie (Audrey Tautou) accidentally discovers a gift for helping others. Soon Amelie is spending her days as a matchmaker, guardian angel, and all-around do-gooder. But when she bumps into a handsome stranger, will she find the courage to become the star of her very own love story?", "text_for_embedding": "Amélie (2001). Genres: Comedy, Romance. At a tiny Parisian café, the adorable yet painfully shy Amélie (Audrey Tautou) accidentally discovers a gift for helping others. Soon Amelie is spending her days as a matchmaker, guardian angel, and all-around do-gooder. But when she bumps into a handsome stranger, will she find the courage to become the star of her very own love story?. Tags: paris, love triangle, ghost train, sex-shop, shyness, montmartre, daughter, garden gnome, journey round the world, photography"} +{"id": "11025", "title": "New York Minute", "year": 2004, "duration_min": 91, "rating": 5.5, "genres": "Comedy", "genres_pipe": "|Comedy|", "keywords": "twin sister, music video, geek, vacation, university, teen comedy, woman director", "tags_pipe": "|twin sister|music video|geek|vacation|university|teen comedy|woman director|", "overview": "Top student Jane Ryan heads to Manhattan for a college-scholarship competition. Her rebellious twin Roxy Ryan goes along to crash a video shoot. But anything can happen - and does - in a romp involving a pursuing truant officer, a smuggler, hunkalicious guys and the girls' realization that when the chips are down, a sister can be the best friend of all.", "text_for_embedding": "New York Minute (2004). Genres: Comedy. Top student Jane Ryan heads to Manhattan for a college-scholarship competition. Her rebellious twin Roxy Ryan goes along to crash a video shoot. But anything can happen - and does - in a romp involving a pursuing truant officer, a smuggler, hunkalicious guys and the girls' realization that when the chips are down, a sister can be the best friend of all.. Tags: twin sister, music video, geek, vacation, university, teen comedy, woman director"} +{"id": "8849", "title": "Alfie", "year": 2004, "duration_min": 103, "rating": 5.6, "genres": "Comedy", "genres_pipe": "|Comedy|", "keywords": "new york, cheating, flirt, lover, older woman seduces younger guy, playboy", "tags_pipe": "|new york|cheating|flirt|lover|older woman seduces younger guy|playboy|", "overview": "In Manhattan, the British limousine driver Alfie is surrounded by beautiful women, having one night stands with all of them and without any sort of commitment. His best friends are his colleague Marlon and his girl-friend Lonette. Alfie has a brief affair with Lonette, and the consequences of his act forces Alfie to reflect over his lifestyle.", "text_for_embedding": "Alfie (2004). Genres: Comedy. In Manhattan, the British limousine driver Alfie is surrounded by beautiful women, having one night stands with all of them and without any sort of commitment. His best friends are his colleague Marlon and his girl-friend Lonette. Alfie has a brief affair with Lonette, and the consequences of his act forces Alfie to reflect over his lifestyle.. Tags: new york, cheating, flirt, lover, older woman seduces younger guy, playboy"} +{"id": "78698", "title": "Big Miracle", "year": 2012, "duration_min": 107, "rating": 6.6, "genres": "Adventure, Drama, Romance", "genres_pipe": "|Adventure|Drama|Romance|", "keywords": "whale, alaska, aftercreditsstinger, duringcreditsstinger, greenpeace, animal protection", "tags_pipe": "|whale|alaska|aftercreditsstinger|duringcreditsstinger|greenpeace|animal protection|", "overview": "Based on an inspiring true story, a small-town news reporter (Krasinski) and a Greenpeace volunteer (Barrymore) enlist the help of rival superpowers to save three majestic gray whales trapped under the ice of the Arctic Circle. ‘Big Miracle’ is adapted from the nonfiction book ‘Freeing the Whales: How the Media Created the World’s Greatest Non-Event’ by Tom Rose.", "text_for_embedding": "Big Miracle (2012). Genres: Adventure, Drama, Romance. Based on an inspiring true story, a small-town news reporter (Krasinski) and a Greenpeace volunteer (Barrymore) enlist the help of rival superpowers to save three majestic gray whales trapped under the ice of the Arctic Circle. ‘Big Miracle’ is adapted from the nonfiction book ‘Freeing the Whales: How the Media Created the World’s Greatest Non-Event’ by Tom Rose.. Tags: whale, alaska, aftercreditsstinger, duringcreditsstinger, greenpeace, animal protection"} +{"id": "30943", "title": "The Deep End of the Ocean", "year": 1999, "duration_min": 106, "rating": 5.9, "genres": "Drama, Mystery", "genres_pipe": "|Drama|Mystery|", "keywords": "kidnapping, boy, reunion", "tags_pipe": "|kidnapping|boy|reunion|", "overview": "Michelle Pfeiffer is ferocious in the role of a desperate mother whose 3-year-old son disappears during her high school reunion. Nine years later, by chance, he turns up in the town in which the family has just relocated. Based on Jacquelyn Mitchard's best-selling novel (an Oprah book club selection), the movie effectively presents the troubling dynamics that exist between family members who've suffered such an unsettling loss.", "text_for_embedding": "The Deep End of the Ocean (1999). Genres: Drama, Mystery. Michelle Pfeiffer is ferocious in the role of a desperate mother whose 3-year-old son disappears during her high school reunion. Nine years later, by chance, he turns up in the town in which the family has just relocated. Based on Jacquelyn Mitchard's best-selling novel (an Oprah book club selection), the movie effectively presents the troubling dynamics that exist between family members who've suffered such an unsettling loss.. Tags: kidnapping, boy, reunion"} +{"id": "9544", "title": "FearDotCom", "year": 2002, "duration_min": 101, "rating": 3.2, "genres": "Horror, Thriller", "genres_pipe": "|Horror|Thriller|", "keywords": "race against time, psychopath, homepage, cop, doctor, spirit, killer, voyeurism", "tags_pipe": "|race against time|psychopath|homepage|cop|doctor|spirit|killer|voyeurism|", "overview": "With four corpses on his hands, New York City gumshoe Mike Reilly (Stephen Dorff) teams with Department of Health worker Terry Huston (Natascha McElhone) to track down a homicidal sadist who telecasts shocking acts of torture on the Internet. But they have their work cut out: It seems the victims' only link is that they all went toes up 48 hours after logging on a site known as feardotcom.com. Stephen Rea also stars in this gruesome thriller.", "text_for_embedding": "FearDotCom (2002). Genres: Horror, Thriller. With four corpses on his hands, New York City gumshoe Mike Reilly (Stephen Dorff) teams with Department of Health worker Terry Huston (Natascha McElhone) to track down a homicidal sadist who telecasts shocking acts of torture on the Internet. But they have their work cut out: It seems the victims' only link is that they all went toes up 48 hours after logging on a site known as feardotcom.com. Stephen Rea also stars in this gruesome thriller.. Tags: race against time, psychopath, homepage, cop, doctor, spirit, killer, voyeurism"} +{"id": "24418", "title": "Cirque du Freak: The Vampire's Assistant", "year": 2009, "duration_min": 109, "rating": 5.5, "genres": "Adventure, Fantasy, Action, Thriller", "genres_pipe": "|Adventure|Fantasy|Action|Thriller|", "keywords": "vampire, spider, wolfman, stew, best friend, antidote, based on young adult novel", "tags_pipe": "|vampire|spider|wolfman|stew|best friend|antidote|based on young adult novel|", "overview": "Darren Shan is a regular teenage kid. He and his friend Steve find out about a Freak Show coming to town and work hard at trying to find tickets. They do, and together they go to \"Cirque du Freak\" where they see many strange acts including a wolf-man and a bearded lady", "text_for_embedding": "Cirque du Freak: The Vampire's Assistant (2009). Genres: Adventure, Fantasy, Action, Thriller. Darren Shan is a regular teenage kid. He and his friend Steve find out about a Freak Show coming to town and work hard at trying to find tickets. They do, and together they go to \"Cirque du Freak\" where they see many strange acts including a wolf-man and a bearded lady. Tags: vampire, spider, wolfman, stew, best friend, antidote, based on young adult novel"} +{"id": "7288", "title": "Duplex", "year": 2003, "duration_min": 89, "rating": 5.9, "genres": "Action, Comedy, Thriller", "genres_pipe": "|Action|Comedy|Thriller|", "keywords": "", "tags_pipe": "", "overview": "When a young couple buys their dream home, they have no idea what the sweet little old lady upstairs is going to put them through!", "text_for_embedding": "Duplex (2003). Genres: Action, Comedy, Thriller. When a young couple buys their dream home, they have no idea what the sweet little old lady upstairs is going to put them through!. Tags: "} +{"id": "14655", "title": "Soul Men", "year": 2008, "duration_min": 103, "rating": 6.3, "genres": "Comedy, Music", "genres_pipe": "|Comedy|Music|", "keywords": "duringcreditsstinger", "tags_pipe": "|duringcreditsstinger|", "overview": "Two former backup soul singers, Louis and Floyd, have not spoken to each other in 20 years, and reluctantly agree to travel across the country together to a reunion concert to honor their recently-deceased lead singer. Cleo, a beautiful young woman who is believed to be Floyd's daughter, accompanies them as a new singer.", "text_for_embedding": "Soul Men (2008). Genres: Comedy, Music. Two former backup soul singers, Louis and Floyd, have not spoken to each other in 20 years, and reluctantly agree to travel across the country together to a reunion concert to honor their recently-deceased lead singer. Cleo, a beautiful young woman who is believed to be Floyd's daughter, accompanies them as a new singer.. Tags: duringcreditsstinger"} +{"id": "24575", "title": "Raise the Titanic", "year": 1980, "duration_min": 115, "rating": 5.2, "genres": "Action, Drama, Thriller", "genres_pipe": "|Action|Drama|Thriller|", "keywords": "", "tags_pipe": "", "overview": "To obtain a supply of a rare mineral, a ship raising operation is conducted for the only known source, the Titanic.", "text_for_embedding": "Raise the Titanic (1980). Genres: Action, Drama, Thriller. To obtain a supply of a rare mineral, a ship raising operation is conducted for the only known source, the Titanic.. Tags: "} +{"id": "10366", "title": "Universal Soldier: The Return", "year": 1999, "duration_min": 82, "rating": 4.2, "genres": "Action, Science Fiction", "genres_pipe": "|Action|Science Fiction|", "keywords": "super computer, computer program, destiny, timebomb", "tags_pipe": "|super computer|computer program|destiny|timebomb|", "overview": "Luc Deveraux, the heroic former Universal Soldier, is about to be thrown into action once again. When Seth (Michael Jai White), the supercomputer controlled ultra-warrior, decides to take revenge and destroy its creators, only Luc can stop it. All hell breaks loose as Luc battles Seth and a deadly team of perfect soldiers in a struggle that pits man against machine and good against evil.", "text_for_embedding": "Universal Soldier: The Return (1999). Genres: Action, Science Fiction. Luc Deveraux, the heroic former Universal Soldier, is about to be thrown into action once again. When Seth (Michael Jai White), the supercomputer controlled ultra-warrior, decides to take revenge and destroy its creators, only Luc can stop it. All hell breaks loose as Luc battles Seth and a deadly team of perfect soldiers in a struggle that pits man against machine and good against evil.. Tags: super computer, computer program, destiny, timebomb"} +{"id": "19898", "title": "Pandorum", "year": 2009, "duration_min": 108, "rating": 6.5, "genres": "Action, Horror, Mystery, Science Fiction, Thriller", "genres_pipe": "|Action|Horror|Mystery|Science Fiction|Thriller|", "keywords": "dystopia, spaceship, survival, mission", "tags_pipe": "|dystopia|spaceship|survival|mission|", "overview": "Two crew members wake up on an abandoned spacecraft with no idea who they are, how long they've been asleep, or what their mission is. The two soon discover they're actually not alone – and the reality of their situation is more horrifying than they could have imagined.", "text_for_embedding": "Pandorum (2009). Genres: Action, Horror, Mystery, Science Fiction, Thriller. Two crew members wake up on an abandoned spacecraft with no idea who they are, how long they've been asleep, or what their mission is. The two soon discover they're actually not alone – and the reality of their situation is more horrifying than they could have imagined.. Tags: dystopia, spaceship, survival, mission"} +{"id": "4965", "title": "Impostor", "year": 2001, "duration_min": 102, "rating": 6.1, "genres": "Action, Science Fiction, Thriller", "genres_pipe": "|Action|Science Fiction|Thriller|", "keywords": "android, alien", "tags_pipe": "|android|alien|", "overview": "Gary Sinise plays Spencer Olham, a top-secret government weapons designer who is arrested by a clandestine government organization on suspicion of being a clone created by the hostile alien race wanting to take over Earth.", "text_for_embedding": "Impostor (2001). Genres: Action, Science Fiction, Thriller. Gary Sinise plays Spencer Olham, a top-secret government weapons designer who is arrested by a clandestine government organization on suspicion of being a clone created by the hostile alien race wanting to take over Earth.. Tags: android, alien"} +{"id": "15074", "title": "Extreme Ops", "year": 2002, "duration_min": 93, "rating": 5.0, "genres": "Action, Adventure, Drama, Thriller", "genres_pipe": "|Action|Adventure|Drama|Thriller|", "keywords": "ski", "tags_pipe": "|ski|", "overview": "While filming an advertisement, some extreme sports enthusiasts unwittingly stop a group of terrorists.", "text_for_embedding": "Extreme Ops (2002). Genres: Action, Adventure, Drama, Thriller. While filming an advertisement, some extreme sports enthusiasts unwittingly stop a group of terrorists.. Tags: ski"} +{"id": "56715", "title": "Just Visiting", "year": 2001, "duration_min": 88, "rating": 4.8, "genres": "Comedy, Fantasy, Science Fiction", "genres_pipe": "|Comedy|Fantasy|Science Fiction|", "keywords": "time travel, remake, alternate history, dragon, remake of french film, alternate timeline, flatulence", "tags_pipe": "|time travel|remake|alternate history|dragon|remake of french film|alternate timeline|flatulence|", "overview": "A knight and his valet are plagued by a witch, and to repair the damage they make use of the services of a wizard. However, something goes wrong and they are transported from the 12th century to the year 2000. There the knight meets some of his family and slowly learns what this new century is like. However, he still needs to get back to the 12th century to deal with the witch, so he starts looking for a wizard.", "text_for_embedding": "Just Visiting (2001). Genres: Comedy, Fantasy, Science Fiction. A knight and his valet are plagued by a witch, and to repair the damage they make use of the services of a wizard. However, something goes wrong and they are transported from the 12th century to the year 2000. There the knight meets some of his family and slowly learns what this new century is like. However, he still needs to get back to the 12th century to deal with the witch, so he starts looking for a wizard.. Tags: time travel, remake, alternate history, dragon, remake of french film, alternate timeline, flatulence"} +{"id": "1272", "title": "Sunshine", "year": 2007, "duration_min": 107, "rating": 7.0, "genres": "Science Fiction, Thriller", "genres_pipe": "|Science Fiction|Thriller|", "keywords": "saving the world, bomb, sun, space marine, sunlight, solar energy, space mission, earth, expiration", "tags_pipe": "|saving the world|bomb|sun|space marine|sunlight|solar energy|space mission|earth|expiration|", "overview": "Fifty years into the future, the sun is dying, and Earth is threatened by arctic temperatures. A team of astronauts is sent to revive the Sun — but the mission fails. Seven years later, a new team is sent to finish the mission as mankind’s last hope.", "text_for_embedding": "Sunshine (2007). Genres: Science Fiction, Thriller. Fifty years into the future, the sun is dying, and Earth is threatened by arctic temperatures. A team of astronauts is sent to revive the Sun — but the mission fails. Seven years later, a new team is sent to finish the mission as mankind’s last hope.. Tags: saving the world, bomb, sun, space marine, sunlight, solar energy, space mission, earth, expiration"} +{"id": "72358", "title": "A Thousand Words", "year": 2012, "duration_min": 91, "rating": 6.0, "genres": "Drama, Comedy", "genres_pipe": "|Drama|Comedy|", "keywords": "liar, literary agent", "tags_pipe": "|liar|literary agent|", "overview": "Jack McCall is a fast-talking literary agent, who can close any deal, any time, any way. He has set his sights on New Age guru Dr. Sinja (Cliff Curtis) for his own selfish purposes. But Dr. Sinja is on to him, and Jack’s life comes unglued after a magical Bodhi tree mysteriously appears in his backyard. With every word Jack speaks, a leaf falls from the tree and he realizes that when the last leaf falls, both he and the tree are toast. Words have never failed Jack McCall, but now he’s got to stop talking and conjure up some outrageous ways to communicate or he’s a goner.", "text_for_embedding": "A Thousand Words (2012). Genres: Drama, Comedy. Jack McCall is a fast-talking literary agent, who can close any deal, any time, any way. He has set his sights on New Age guru Dr. Sinja (Cliff Curtis) for his own selfish purposes. But Dr. Sinja is on to him, and Jack’s life comes unglued after a magical Bodhi tree mysteriously appears in his backyard. With every word Jack speaks, a leaf falls from the tree and he realizes that when the last leaf falls, both he and the tree are toast. Words have never failed Jack McCall, but now he’s got to stop talking and conjure up some outrageous ways to communicate or he’s a goner.. Tags: liar, literary agent"} +{"id": "20542", "title": "Delgo", "year": 2008, "duration_min": 94, "rating": 5.4, "genres": "Adventure, Fantasy, Animation, Comedy, Science Fiction, Family", "genres_pipe": "|Adventure|Fantasy|Animation|Comedy|Science Fiction|Family|", "keywords": "", "tags_pipe": "", "overview": "In a divided land, it takes a rebellious boy and his clandestine love for a Princess of an opposing race to stop a war orchestrated by a power hungry villain.", "text_for_embedding": "Delgo (2008). Genres: Adventure, Fantasy, Animation, Comedy, Science Fiction, Family. In a divided land, it takes a rebellious boy and his clandestine love for a Princess of an opposing race to stop a war orchestrated by a power hungry villain.. Tags: "} +{"id": "266396", "title": "The Gunman", "year": 2015, "duration_min": 115, "rating": 5.5, "genres": "Action, Drama, Crime", "genres_pipe": "|Action|Drama|Crime|", "keywords": "assassin, hitman", "tags_pipe": "|assassin|hitman|", "overview": "Eight years after fleeing the Congo following his assassination of that country's minister of mining, former assassin Jim Terrier is back, suffering from PTSD and digging wells to atone for his violent past. After an attempt is made on his life, Terrier flies to London to find out who wants him dead -- and why. Terrier's search leads him to a reunion with Annie, a woman he once loved, who is now married to an oily businessman with dealings in Africa.", "text_for_embedding": "The Gunman (2015). Genres: Action, Drama, Crime. Eight years after fleeing the Congo following his assassination of that country's minister of mining, former assassin Jim Terrier is back, suffering from PTSD and digging wells to atone for his violent past. After an attempt is made on his life, Terrier flies to London to find out who wants him dead -- and why. Terrier's search leads him to a reunion with Annie, a woman he once loved, who is now married to an oily businessman with dealings in Africa.. Tags: assassin, hitman"} +{"id": "9978", "title": "Stormbreaker", "year": 2006, "duration_min": 93, "rating": 5.1, "genres": "Adventure, Action, Family", "genres_pipe": "|Adventure|Action|Family|", "keywords": "england, secret intelligence service, child hero, wretch, teen spy, based on young adult novel", "tags_pipe": "|england|secret intelligence service|child hero|wretch|teen spy|based on young adult novel|", "overview": "Alex Rider thinks he is a normal school boy, until his uncle is killed. He discovers that his uncle was actually spy on a mission, when he was killed. Alex is recruited by Alan Blunt to continue the mission. He is sent to Cornwall to investigate a new computer system, which Darrius Sayle has created. He plans to give the new computer systems to every school in the country, but Mr. Blunt has other ideas and Alex must find out what it is.", "text_for_embedding": "Stormbreaker (2006). Genres: Adventure, Action, Family. Alex Rider thinks he is a normal school boy, until his uncle is killed. He discovers that his uncle was actually spy on a mission, when he was killed. Alex is recruited by Alan Blunt to continue the mission. He is sent to Cornwall to investigate a new computer system, which Darrius Sayle has created. He plans to give the new computer systems to every school in the country, but Mr. Blunt has other ideas and Alex must find out what it is.. Tags: england, secret intelligence service, child hero, wretch, teen spy, based on young adult novel"} +{"id": "8271", "title": "Disturbia", "year": 2007, "duration_min": 105, "rating": 6.6, "genres": "Thriller, Drama, Mystery", "genres_pipe": "|Thriller|Drama|Mystery|", "keywords": "kidnapping, young people", "tags_pipe": "|kidnapping|young people|", "overview": "Kale is a 17-year-old placed under house arrest after punching his teacher. He is confined to his house, and decides to use his free time spying on his neighbors. Things start to get weird when guests enter the Turner's house and don't come back out. Kale and his friends, Ronnie and Ashley, start to grow more and more interested in what is actually happening within the house of Robert Turner.", "text_for_embedding": "Disturbia (2007). Genres: Thriller, Drama, Mystery. Kale is a 17-year-old placed under house arrest after punching his teacher. He is confined to his house, and decides to use his free time spying on his neighbors. Things start to get weird when guests enter the Turner's house and don't come back out. Kale and his friends, Ronnie and Ashley, start to grow more and more interested in what is actually happening within the house of Robert Turner.. Tags: kidnapping, young people"} +{"id": "10428", "title": "Hackers", "year": 1995, "duration_min": 107, "rating": 6.2, "genres": "Action, Crime, Thriller, Drama", "genres_pipe": "|Action|Crime|Thriller|Drama|", "keywords": "female nudity, hacker, nudity, computer virus, virtual reality, computer, sexual fantasy, prank, internet, cyberpunk, teenager, new york city, secret service, computer hacker, dream sequence", "tags_pipe": "|female nudity|hacker|nudity|computer virus|virtual reality|computer|sexual fantasy|prank|internet|cyberpunk|teenager|new york city|secret service|computer hacker|dream sequence|", "overview": "Along with his new friends, a teenager who was arrested by the US Secret Service and banned from using a computer for writing a computer virus discovers a plot by a nefarious hacker, but they must use their computer skills to find the evidence while being pursued by the Secret Service and the evil computer genius behind the virus.", "text_for_embedding": "Hackers (1995). Genres: Action, Crime, Thriller, Drama. Along with his new friends, a teenager who was arrested by the US Secret Service and banned from using a computer for writing a computer virus discovers a plot by a nefarious hacker, but they must use their computer skills to find the evidence while being pursued by the Secret Service and the evil computer genius behind the virus.. Tags: female nudity, hacker, nudity, computer virus, virtual reality, computer, sexual fantasy, prank, internet, cyberpunk, teenager, new york city, secret service, computer hacker, dream sequence"} +{"id": "5353", "title": "The Hunting Party", "year": 2007, "duration_min": 101, "rating": 6.6, "genres": "Action, Adventure, Thriller, Drama", "genres_pipe": "|Action|Adventure|Thriller|Drama|", "keywords": "civil war, spy, hotel, journalist, journalism, war crimes, hidden camera, war victim, war correspondent, war, balkan war, serbia", "tags_pipe": "|civil war|spy|hotel|journalist|journalism|war crimes|hidden camera|war victim|war correspondent|war|balkan war|serbia|", "overview": "An emerging journalist (Jesse Eisenberg), an experienced cameraman (Terrence Howard), and a discredited reporter (Richard Gere) find their bold plan to capture Bosnia's top war criminal quickly spiraling out of control when a UN representative mistakes them for a CIA hit squad in a light-hearted thriller inspired by Scott Anderson's popular Esquire article. The Weinstein Company provides stateside", "text_for_embedding": "The Hunting Party (2007). Genres: Action, Adventure, Thriller, Drama. An emerging journalist (Jesse Eisenberg), an experienced cameraman (Terrence Howard), and a discredited reporter (Richard Gere) find their bold plan to capture Bosnia's top war criminal quickly spiraling out of control when a UN representative mistakes them for a CIA hit squad in a light-hearted thriller inspired by Scott Anderson's popular Esquire article. The Weinstein Company provides stateside. Tags: civil war, spy, hotel, journalist, journalism, war crimes, hidden camera, war victim, war correspondent, war, balkan war, serbia"} +{"id": "11934", "title": "The Hudsucker Proxy", "year": 1994, "duration_min": 111, "rating": 7.1, "genres": "Comedy, Drama", "genres_pipe": "|Comedy|Drama|", "keywords": "suicide, new york, corruption, journalist, inventor, undercover, toy, plan, boss, investigation, company, industry, party, money, board", "tags_pipe": "|suicide|new york|corruption|journalist|inventor|undercover|toy|plan|boss|investigation|company|industry|party|money|board|", "overview": "A naive business graduate is installed as president of a manufacturing company as part of a stock scam.", "text_for_embedding": "The Hudsucker Proxy (1994). Genres: Comedy, Drama. A naive business graduate is installed as president of a manufacturing company as part of a stock scam.. Tags: suicide, new york, corruption, journalist, inventor, undercover, toy, plan, boss, investigation, company, industry, party, money, board"} +{"id": "14392", "title": "The Warlords", "year": 2007, "duration_min": 126, "rating": 6.3, "genres": "Action, Drama, History", "genres_pipe": "|Action|Drama|History|", "keywords": "assassin, general, dynasty, brother, blood brother", "tags_pipe": "|assassin|general|dynasty|brother|blood brother|", "overview": "A heroic tale of three blood brothers and their struggle in the midst of war and political upheaval. It is based on \"The Assassination of Ma,\" a Qing Dynasty (1644-1911) story about the killing of general Ma Xinyi.", "text_for_embedding": "The Warlords (2007). Genres: Action, Drama, History. A heroic tale of three blood brothers and their struggle in the midst of war and political upheaval. It is based on \"The Assassination of Ma,\" a Qing Dynasty (1644-1911) story about the killing of general Ma Xinyi.. Tags: assassin, general, dynasty, brother, blood brother"} +{"id": "19495", "title": "Nomad: The Warrior", "year": 2005, "duration_min": 112, "rating": 4.3, "genres": "Action, History, War", "genres_pipe": "|Action|History|War|", "keywords": "", "tags_pipe": "", "overview": "The Nomad is a historical epic set in 18th-century Kazakhstan. The film is a fictionalised account of the youth and coming-of-age of Ablai Khan, as he grows and fights to defend the fortress at Hazrat-e Turkestan from Dzungar invaders.", "text_for_embedding": "Nomad: The Warrior (2005). Genres: Action, History, War. The Nomad is a historical epic set in 18th-century Kazakhstan. The film is a fictionalised account of the youth and coming-of-age of Ablai Khan, as he grows and fights to defend the fortress at Hazrat-e Turkestan from Dzungar invaders.. Tags: "} +{"id": "110415", "title": "Snowpiercer", "year": 2013, "duration_min": 126, "rating": 6.7, "genres": "Action, Science Fiction, Drama", "genres_pipe": "|Action|Science Fiction|Drama|", "keywords": "father son relationship, child labour, brothel, winter, allegory, bridge, post-apocalyptic, dystopia, hijacking of train, based on comic book, dam, rifle, pregnant, train, violence", "tags_pipe": "|father son relationship|child labour|brothel|winter|allegory|bridge|post-apocalyptic|dystopia|hijacking of train|based on comic book|dam|rifle|pregnant|train|violence|", "overview": "In a future where a failed global-warming experiment kills off most life on the planet, a class system evolves aboard the Snowpiercer, a train that travels around the globe via a perpetual-motion engine.", "text_for_embedding": "Snowpiercer (2013). Genres: Action, Science Fiction, Drama. In a future where a failed global-warming experiment kills off most life on the planet, a class system evolves aboard the Snowpiercer, a train that travels around the globe via a perpetual-motion engine.. Tags: father son relationship, child labour, brothel, winter, allegory, bridge, post-apocalyptic, dystopia, hijacking of train, based on comic book, dam, rifle, pregnant, train, violence"} +{"id": "77459", "title": "A Monster in Paris", "year": 2011, "duration_min": 90, "rating": 6.5, "genres": "Adventure, Animation, Comedy, Family, Fantasy", "genres_pipe": "|Adventure|Animation|Comedy|Family|Fantasy|", "keywords": "monster, cgi, 3d, paris france", "tags_pipe": "|monster|cgi|3d|paris france|", "overview": "Paris,1910. Emile, a shy movie projectionist, and Raoul, a colorful inventor, find themselves embarked on the hunt for a monster terrorizing citizens. They join forces with Lucille, the big-hearted star of the Bird of Paradise cabaret, an eccentric scientist and his irascible monkey to save the monster, who turns out to be an oversized but harmless flea, from the city's ruthlessly ambitious police chief.", "text_for_embedding": "A Monster in Paris (2011). Genres: Adventure, Animation, Comedy, Family, Fantasy. Paris,1910. Emile, a shy movie projectionist, and Raoul, a colorful inventor, find themselves embarked on the hunt for a monster terrorizing citizens. They join forces with Lucille, the big-hearted star of the Bird of Paradise cabaret, an eccentric scientist and his irascible monkey to save the monster, who turns out to be an oversized but harmless flea, from the city's ruthlessly ambitious police chief.. Tags: monster, cgi, 3d, paris france"} +{"id": "26486", "title": "The Last Shot", "year": 2004, "duration_min": 90, "rating": 5.9, "genres": "Action, Comedy", "genres_pipe": "|Action|Comedy|", "keywords": "", "tags_pipe": "", "overview": "A movie director-screenwriter finds a man to finance his latest project but soon discovers that the producer is actually an undercover FBI agent working on a mob sting operation.", "text_for_embedding": "The Last Shot (2004). Genres: Action, Comedy. A movie director-screenwriter finds a man to finance his latest project but soon discovers that the producer is actually an undercover FBI agent working on a mob sting operation.. Tags: "} +{"id": "9495", "title": "The Crow", "year": 1994, "duration_min": 102, "rating": 7.3, "genres": "Fantasy, Action, Thriller", "genres_pipe": "|Fantasy|Action|Thriller|", "keywords": "halloween, arson, detroit", "tags_pipe": "|halloween|arson|detroit|", "overview": "Exactly one year after young rock guitarist Eric Draven and his fiancée are brutally killed by a ruthless gang of criminals, Draven -- watched over by a hypnotic crow -- returns from the grave to exact revenge.", "text_for_embedding": "The Crow (1994). Genres: Fantasy, Action, Thriller. Exactly one year after young rock guitarist Eric Draven and his fiancée are brutally killed by a ruthless gang of criminals, Draven -- watched over by a hypnotic crow -- returns from the grave to exact revenge.. Tags: halloween, arson, detroit"} +{"id": "256040", "title": "Baahubali: The Beginning", "year": 2015, "duration_min": 159, "rating": 7.5, "genres": "Action, Adventure, War, History", "genres_pipe": "|Action|Adventure|War|History|", "keywords": "kingdom, war, bollywood, medieval india, ancient india", "tags_pipe": "|kingdom|war|bollywood|medieval india|ancient india|", "overview": "The young Shivudu is left as a foundling in a small village by his mother. By the time he’s grown up, it has become apparent that he possesses exceptional gifts. He meets the beautiful warrior/princess Avanthika and learns that her queen has been held captive for the last 25 years. Shividu sets off to rescue her, discovering his own origins in the process.", "text_for_embedding": "Baahubali: The Beginning (2015). Genres: Action, Adventure, War, History. The young Shivudu is left as a foundling in a small village by his mother. By the time he’s grown up, it has become apparent that he possesses exceptional gifts. He meets the beautiful warrior/princess Avanthika and learns that her queen has been held captive for the last 25 years. Shividu sets off to rescue her, discovering his own origins in the process.. Tags: kingdom, war, bollywood, medieval india, ancient india"} +{"id": "24420", "title": "The Time Traveler's Wife", "year": 2009, "duration_min": 107, "rating": 6.7, "genres": "Drama, Romance, Fantasy", "genres_pipe": "|Drama|Romance|Fantasy|", "keywords": "chicago, sex, based on novel, nudity, diary, future, time, time travel, marriage, love, romance, travel, tragic love, relationship, time traveler", "tags_pipe": "|chicago|sex|based on novel|nudity|diary|future|time|time travel|marriage|love|romance|travel|tragic love|relationship|time traveler|", "overview": "Due to a genetic disorder, handsome librarian Henry DeTamble involuntarily zips through time, appearing at various moments in the life of his true love, the beautiful artist Clare Abshire.", "text_for_embedding": "The Time Traveler's Wife (2009). Genres: Drama, Romance, Fantasy. Due to a genetic disorder, handsome librarian Henry DeTamble involuntarily zips through time, appearing at various moments in the life of his true love, the beautiful artist Clare Abshire.. Tags: chicago, sex, based on novel, nudity, diary, future, time, time travel, marriage, love, romance, travel, tragic love, relationship, time traveler"} +{"id": "1257", "title": "Because I Said So", "year": 2007, "duration_min": 102, "rating": 5.8, "genres": "Comedy", "genres_pipe": "|Comedy|", "keywords": "mother, guitar, sister sister relationship, profession, new love, architect, mother role, lonely hearts ad, men, clothing, single, mother daughter relationship, los angeles, fashion, single father", "tags_pipe": "|mother|guitar|sister sister relationship|profession|new love|architect|mother role|lonely hearts ad|men|clothing|single|mother daughter relationship|los angeles|fashion|single father|", "overview": "In an effort to prevent family history from repeating itself, meddlesome mom Daphne Wilder attempts to set up her youngest daughter, Milly, with Mr. Right. Meanwhile, her other daughters try to keep their mom's good intentions under control.", "text_for_embedding": "Because I Said So (2007). Genres: Comedy. In an effort to prevent family history from repeating itself, meddlesome mom Daphne Wilder attempts to set up her youngest daughter, Milly, with Mr. Right. Meanwhile, her other daughters try to keep their mom's good intentions under control.. Tags: mother, guitar, sister sister relationship, profession, new love, architect, mother role, lonely hearts ad, men, clothing, single, mother daughter relationship, los angeles, fashion, single father"} +{"id": "62214", "title": "Frankenweenie", "year": 2012, "duration_min": 87, "rating": 6.6, "genres": "Animation, Comedy, Family", "genres_pipe": "|Animation|Comedy|Family|", "keywords": "shyness, stop motion, black and white, retro, dog, animal death, animal lover", "tags_pipe": "|shyness|stop motion|black and white|retro|dog|animal death|animal lover|", "overview": "When a car hits young Victor's pet dog Sparky, Victor decides to bring him back to life the only way he knows how. But when the bolt-necked \"monster\" wreaks havoc and terror in the hearts of Victor's neighbors, he has to convince them that Sparky's still the good, loyal friend he was.", "text_for_embedding": "Frankenweenie (2012). Genres: Animation, Comedy, Family. When a car hits young Victor's pet dog Sparky, Victor decides to bring him back to life the only way he knows how. But when the bolt-necked \"monster\" wreaks havoc and terror in the hearts of Victor's neighbors, he has to convince them that Sparky's still the good, loyal friend he was.. Tags: shyness, stop motion, black and white, retro, dog, animal death, animal lover"} +{"id": "16320", "title": "Serenity", "year": 2005, "duration_min": 119, "rating": 7.4, "genres": "Science Fiction, Action, Adventure, Thriller", "genres_pipe": "|Science Fiction|Action|Adventure|Thriller|", "keywords": "martial arts, telepathy, dystopia, spaceship, fugitive, based on tv series, planet, throat slitting, cannibal, reavers, operative, ex soldier, firefly", "tags_pipe": "|martial arts|telepathy|dystopia|spaceship|fugitive|based on tv series|planet|throat slitting|cannibal|reavers|operative|ex soldier|firefly|", "overview": "When the renegade crew of Serenity agrees to hide a fugitive on their ship, they find themselves in an action-packed battle between the relentless military might of a totalitarian regime who will destroy anything – or anyone – to get the girl back and the bloodthirsty creatures who roam the uncharted areas of space. But... the greatest danger of all may be on their ship.", "text_for_embedding": "Serenity (2005). Genres: Science Fiction, Action, Adventure, Thriller. When the renegade crew of Serenity agrees to hide a fugitive on their ship, they find themselves in an action-packed battle between the relentless military might of a totalitarian regime who will destroy anything – or anyone – to get the girl back and the bloodthirsty creatures who roam the uncharted areas of space. But... the greatest danger of all may be on their ship.. Tags: martial arts, telepathy, dystopia, spaceship, fugitive, based on tv series, planet, throat slitting, cannibal, reavers, operative, ex soldier, firefly"} +{"id": "8842", "title": "Against the Ropes", "year": 2004, "duration_min": 106, "rating": 4.5, "genres": "Romance, Drama", "genres_pipe": "|Romance|Drama|", "keywords": "biography, sport", "tags_pipe": "|biography|sport|", "overview": "A fictional story inspired by North America's most famous female boxing promoter, Jackie Kallen. Her struggle to survive and succeed in a male dominated sport.", "text_for_embedding": "Against the Ropes (2004). Genres: Romance, Drama. A fictional story inspired by North America's most famous female boxing promoter, Jackie Kallen. Her struggle to survive and succeed in a male dominated sport.. Tags: biography, sport"} +{"id": "9531", "title": "Superman III", "year": 1983, "duration_min": 125, "rating": 5.3, "genres": "Comedy, Action, Adventure, Fantasy, Science Fiction", "genres_pipe": "|Comedy|Action|Adventure|Fantasy|Science Fiction|", "keywords": "saving the world, dc comics, super computer, identity crisis, loss of powers, sequel, superhero, based on comic book, hacking, super powers, superhuman strength", "tags_pipe": "|saving the world|dc comics|super computer|identity crisis|loss of powers|sequel|superhero|based on comic book|hacking|super powers|superhuman strength|", "overview": "Aiming to defeat the Man of Steel, wealthy executive Ross Webster hires bumbling but brilliant Gus Gorman to develop synthetic kryptonite, which yields some unexpected psychological effects in the third installment of the 1980s Superman franchise. Between rekindling romance with his high school sweetheart and saving himself, Superman must contend with a powerful supercomputer.", "text_for_embedding": "Superman III (1983). Genres: Comedy, Action, Adventure, Fantasy, Science Fiction. Aiming to defeat the Man of Steel, wealthy executive Ross Webster hires bumbling but brilliant Gus Gorman to develop synthetic kryptonite, which yields some unexpected psychological effects in the third installment of the 1980s Superman franchise. Between rekindling romance with his high school sweetheart and saving himself, Superman must contend with a powerful supercomputer.. Tags: saving the world, dc comics, super computer, identity crisis, loss of powers, sequel, superhero, based on comic book, hacking, super powers, superhuman strength"} +{"id": "64807", "title": "Grudge Match", "year": 2013, "duration_min": 113, "rating": 6.0, "genres": "Comedy", "genres_pipe": "|Comedy|", "keywords": "father son relationship, sport, rivalry, elderly, elderly man", "tags_pipe": "|father son relationship|sport|rivalry|elderly|elderly man|", "overview": "A pair of aging boxing rivals are coaxed out of retirement to fight one final bout -- 30 years after their last match.", "text_for_embedding": "Grudge Match (2013). Genres: Comedy. A pair of aging boxing rivals are coaxed out of retirement to fight one final bout -- 30 years after their last match.. Tags: father son relationship, sport, rivalry, elderly, elderly man"} +{"id": "12289", "title": "Red Cliff", "year": 2008, "duration_min": 150, "rating": 7.1, "genres": "Adventure, Drama, Action", "genres_pipe": "|Adventure|Drama|Action|", "keywords": "flaming arrow, chinese history, strategy, carrier pigeon, spear throwing, wall of fire, white dove, casualty of war, arrow in back, chinese tradition, chinese painting, broken arrow", "tags_pipe": "|flaming arrow|chinese history|strategy|carrier pigeon|spear throwing|wall of fire|white dove|casualty of war|arrow in back|chinese tradition|chinese painting|broken arrow|", "overview": "In the early third century, the land of Wu is invaded by the warlord Cao Cao and his million soldiers. The ruler of Wu, Sun Quan, calls on the rival warlord Liu Bei for help, but their two armies are still badly outnumbered. However, the Wu strategist Zhou Yu sees that Cao Cao's army is unused to battling on the sea, which may just give them a chance if they can exploit this weakness properly.", "text_for_embedding": "Red Cliff (2008). Genres: Adventure, Drama, Action. In the early third century, the land of Wu is invaded by the warlord Cao Cao and his million soldiers. The ruler of Wu, Sun Quan, calls on the rival warlord Liu Bei for help, but their two armies are still badly outnumbered. However, the Wu strategist Zhou Yu sees that Cao Cao's army is unused to battling on the sea, which may just give them a chance if they can exploit this weakness properly.. Tags: flaming arrow, chinese history, strategy, carrier pigeon, spear throwing, wall of fire, white dove, casualty of war, arrow in back, chinese tradition, chinese painting, broken arrow"} +{"id": "11529", "title": "Sweet Home Alabama", "year": 2002, "duration_min": 108, "rating": 6.0, "genres": "Comedy, Romance", "genres_pipe": "|Comedy|Romance|", "keywords": "new york, marriage proposal, alabama, career woman, fashion designer", "tags_pipe": "|new york|marriage proposal|alabama|career woman|fashion designer|", "overview": "New York fashion designer Melanie Carmichael suddenly finds herself engaged to the city's most eligible bachelor. But Melanie's past holds many secrets, including Jake, the redneck husband she married in high school, who refuses to divorce her. Bound and determined to end their contentious relationship once and for all, Melanie sneaks back home to Alabama to confront her past.", "text_for_embedding": "Sweet Home Alabama (2002). Genres: Comedy, Romance. New York fashion designer Melanie Carmichael suddenly finds herself engaged to the city's most eligible bachelor. But Melanie's past holds many secrets, including Jake, the redneck husband she married in high school, who refuses to divorce her. Bound and determined to end their contentious relationship once and for all, Melanie sneaks back home to Alabama to confront her past.. Tags: new york, marriage proposal, alabama, career woman, fashion designer"} +{"id": "20943", "title": "The Ugly Truth", "year": 2009, "duration_min": 96, "rating": 6.4, "genres": "Comedy, Romance", "genres_pipe": "|Comedy|Romance|", "keywords": "romantic comedy, romance, tv morning show, relationship, opposites attract", "tags_pipe": "|romantic comedy|romance|tv morning show|relationship|opposites attract|", "overview": "A romantically challenged morning show producer is reluctantly embroiled in a series of outrageous tests by her chauvinistic correspondent to prove his theories on relationships and help her find love. His clever ploys, however, lead to an unexpected result.", "text_for_embedding": "The Ugly Truth (2009). Genres: Comedy, Romance. A romantically challenged morning show producer is reluctantly embroiled in a series of outrageous tests by her chauvinistic correspondent to prove his theories on relationships and help her find love. His clever ploys, however, lead to an unexpected result.. Tags: romantic comedy, romance, tv morning show, relationship, opposites attract"} +{"id": "9099", "title": "Sgt. Bilko", "year": 1996, "duration_min": 90, "rating": 5.5, "genres": "Comedy, Family", "genres_pipe": "|Comedy|Family|", "keywords": "gulf war, u.s. army, based on tv series, military spoof", "tags_pipe": "|gulf war|u.s. army|based on tv series|military spoof|", "overview": "The army is known for churning out lean mean fighting machines intent on protecting our great nation. Martin is the inexplicable the incorrigible the invicible sgt. Ernie bilko leader of a ragtag group of the sorriest soldiers ever to enlist in the armed forces.", "text_for_embedding": "Sgt. Bilko (1996). Genres: Comedy, Family. The army is known for churning out lean mean fighting machines intent on protecting our great nation. Martin is the inexplicable the incorrigible the invicible sgt. Ernie bilko leader of a ragtag group of the sorriest soldiers ever to enlist in the armed forces.. Tags: gulf war, u.s. army, based on tv series, military spoof"} +{"id": "9488", "title": "Spy Kids 2: The Island of Lost Dreams", "year": 2002, "duration_min": 100, "rating": 5.3, "genres": "Action, Adventure, Family", "genres_pipe": "|Action|Adventure|Family|", "keywords": "spy, experiment, island, secret organization, wretch, weapon, rivalry, scientist", "tags_pipe": "|spy|experiment|island|secret organization|wretch|weapon|rivalry|scientist|", "overview": "Exploring the further adventures of Carmen and Juni Cortez, who have now joined the family spy business as Level 2 OSS agents. Their new mission is to save the world from a mad scientist living on a volcanic island populated by an imaginative menagerie of creatures. On this bizarre island, none of the Cortez's gadgets work and they must rely on their wits--and each other--to survive and save the day.", "text_for_embedding": "Spy Kids 2: The Island of Lost Dreams (2002). Genres: Action, Adventure, Family. Exploring the further adventures of Carmen and Juni Cortez, who have now joined the family spy business as Level 2 OSS agents. Their new mission is to save the world from a mad scientist living on a volcanic island populated by an imaginative menagerie of creatures. On this bizarre island, none of the Cortez's gadgets work and they must rely on their wits--and each other--to survive and save the day.. Tags: spy, experiment, island, secret organization, wretch, weapon, rivalry, scientist"} +{"id": "193", "title": "Star Trek: Generations", "year": 1994, "duration_min": 118, "rating": 6.4, "genres": "Science Fiction, Action, Adventure, Thriller", "genres_pipe": "|Science Fiction|Action|Adventure|Thriller|", "keywords": "based on tv series, death, exploding planet, mountain cabin, solar system", "tags_pipe": "|based on tv series|death|exploding planet|mountain cabin|solar system|", "overview": "Captain Jean-Luc Picard and the crew of the Enterprise-D find themselves at odds with the renegade scientist Soran who is destroying entire star systems. Only one man can help Picard stop Soran's scheme...and he's been dead for seventy-eight years.", "text_for_embedding": "Star Trek: Generations (1994). Genres: Science Fiction, Action, Adventure, Thriller. Captain Jean-Luc Picard and the crew of the Enterprise-D find themselves at odds with the renegade scientist Soran who is destroying entire star systems. Only one man can help Picard stop Soran's scheme...and he's been dead for seventy-eight years.. Tags: based on tv series, death, exploding planet, mountain cabin, solar system"} +{"id": "44865", "title": "The Grandmaster", "year": 2013, "duration_min": 130, "rating": 6.3, "genres": "Action, Drama, History", "genres_pipe": "|Action|Drama|History|", "keywords": "martial arts, kung fu, biography, kung fu master", "tags_pipe": "|martial arts|kung fu|biography|kung fu master|", "overview": "Ip Man's peaceful life in Foshan changes after Gong Yutian seeks an heir for his family in Southern China. Ip Man then meets Gong Er who challenges him for the sake of regaining her family's honor. After the Second Sino-Japanese War, Ip Man moves to Hong Kong and struggles to provide for his family. In the mean time, Gong Er chooses the path of vengeance after her father was killed by Ma San.", "text_for_embedding": "The Grandmaster (2013). Genres: Action, Drama, History. Ip Man's peaceful life in Foshan changes after Gong Yutian seeks an heir for his family in Southern China. Ip Man then meets Gong Er who challenges him for the sake of regaining her family's honor. After the Second Sino-Japanese War, Ip Man moves to Hong Kong and struggles to provide for his family. In the mean time, Gong Er chooses the path of vengeance after her father was killed by Ma San.. Tags: martial arts, kung fu, biography, kung fu master"} +{"id": "55787", "title": "Water for Elephants", "year": 2011, "duration_min": 120, "rating": 6.7, "genres": "Drama, Romance", "genres_pipe": "|Drama|Romance|", "keywords": "clown, elephant trainer, veterinary", "tags_pipe": "|clown|elephant trainer|veterinary|", "overview": "In this captivating Depression-era melodrama, impetuous veterinary student Jacob Jankowski joins a celebrated circus as an animal caretaker but faces a wrenching dilemma when he's transfixed by angelic married performer Marlena.", "text_for_embedding": "Water for Elephants (2011). Genres: Drama, Romance. In this captivating Depression-era melodrama, impetuous veterinary student Jacob Jankowski joins a celebrated circus as an animal caretaker but faces a wrenching dilemma when he's transfixed by angelic married performer Marlena.. Tags: clown, elephant trainer, veterinary"} +{"id": "257932", "title": "Dragon Nest: Warriors' Dawn", "year": 2014, "duration_min": 88, "rating": 6.8, "genres": "Adventure, Family, Fantasy, Animation", "genres_pipe": "|Adventure|Family|Fantasy|Animation|", "keywords": "", "tags_pipe": "", "overview": "The land of Altera has observed an uneasy peace for years among Humans, Elves and Evil beasts who are loyal to the legendary Black Dragon. But the Black Dragon begins to stir from its hibernation, sending the Beasts marching across Altera. With a beast conquest perilously close, a small group of Humans and Elves unite to try to find a secret hidden road to the Black Dragon's cave and destroy it. But the fate of all of them may be in the hands of the young warrior Lambert, who must summon the confidence and skill to face the Black Dragon himself just when all may be lost.", "text_for_embedding": "Dragon Nest: Warriors' Dawn (2014). Genres: Adventure, Family, Fantasy, Animation. The land of Altera has observed an uneasy peace for years among Humans, Elves and Evil beasts who are loyal to the legendary Black Dragon. But the Black Dragon begins to stir from its hibernation, sending the Beasts marching across Altera. With a beast conquest perilously close, a small group of Humans and Elves unite to try to find a secret hidden road to the Black Dragon's cave and destroy it. But the fate of all of them may be in the hands of the young warrior Lambert, who must summon the confidence and skill to face the Black Dragon himself just when all may be lost.. Tags: "} +{"id": "10400", "title": "The Hurricane", "year": 1999, "duration_min": 146, "rating": 7.2, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "prison, boxer, boxing match, boxing school, biography", "tags_pipe": "|prison|boxer|boxing match|boxing school|biography|", "overview": "The story of Rubin \"Hurricane\" Carter, a boxer wrongly imprisoned for murder, and the people who aided in his fight to prove his innocence.", "text_for_embedding": "The Hurricane (1999). Genres: Drama. The story of Rubin \"Hurricane\" Carter, a boxer wrongly imprisoned for murder, and the people who aided in his fight to prove his innocence.. Tags: prison, boxer, boxing match, boxing school, biography"} +{"id": "1957", "title": "Enough", "year": 2002, "duration_min": 114, "rating": 6.2, "genres": "Drama, Thriller", "genres_pipe": "|Drama|Thriller|", "keywords": "waitress, wife husband relationship, violent husband, self-defense, violence against women, suspense, marry rich, abusive husband", "tags_pipe": "|waitress|wife husband relationship|violent husband|self-defense|violence against women|suspense|marry rich|abusive husband|", "overview": "Working-class waitress Slim thought she was entering a life of domestic bliss when she married Mitch, the man of her dreams. After the arrival of their first child, her picture perfect life is shattered when she discovers Mitch's hidden possessive dark side, a controlling and abusive alter ego that can turn trust, love and tranquility into terror. Terrified for her child's safety, Slim flees with her daughter. Relentless in his pursuit and enlisting the aid of lethal henchmen, Mitch continually stalks the prey that was once his family.", "text_for_embedding": "Enough (2002). Genres: Drama, Thriller. Working-class waitress Slim thought she was entering a life of domestic bliss when she married Mitch, the man of her dreams. After the arrival of their first child, her picture perfect life is shattered when she discovers Mitch's hidden possessive dark side, a controlling and abusive alter ego that can turn trust, love and tranquility into terror. Terrified for her child's safety, Slim flees with her daughter. Relentless in his pursuit and enlisting the aid of lethal henchmen, Mitch continually stalks the prey that was once his family.. Tags: waitress, wife husband relationship, violent husband, self-defense, violence against women, suspense, marry rich, abusive husband"} +{"id": "10833", "title": "Heartbreakers", "year": 2001, "duration_min": 123, "rating": 5.7, "genres": "Crime, Comedy, Romance", "genres_pipe": "|Crime|Comedy|Romance|", "keywords": "cons and scams", "tags_pipe": "|cons and scams|", "overview": "Max and Page are a brilliant mother/daughter con team who have their grift down to a fine science. Max targets wealthy, willing men and marries them. Page then seduces them, and Max catches her husband in the act. Then it's off to palimony city and the next easy mark.", "text_for_embedding": "Heartbreakers (2001). Genres: Crime, Comedy, Romance. Max and Page are a brilliant mother/daughter con team who have their grift down to a fine science. Max targets wealthy, willing men and marries them. Page then seduces them, and Max catches her husband in the act. Then it's off to palimony city and the next easy mark.. Tags: cons and scams"} +{"id": "256961", "title": "Paul Blart: Mall Cop 2", "year": 2015, "duration_min": 94, "rating": 5.0, "genres": "Action, Comedy, Family", "genres_pipe": "|Action|Comedy|Family|", "keywords": "shopping mall, las vegas, security guard", "tags_pipe": "|shopping mall|las vegas|security guard|", "overview": "Security guard Paul Blart is headed to Las Vegas to attend a Security Guard Expo with his teenage daughter Maya before she departs for college. While at the convention, he inadvertently discovers a heist - and it's up to Blart to apprehend the criminals.", "text_for_embedding": "Paul Blart: Mall Cop 2 (2015). Genres: Action, Comedy, Family. Security guard Paul Blart is headed to Las Vegas to attend a Security Guard Expo with his teenage daughter Maya before she departs for college. While at the convention, he inadvertently discovers a heist - and it's up to Blart to apprehend the criminals.. Tags: shopping mall, las vegas, security guard"} +{"id": "5852", "title": "Angel Eyes", "year": 2001, "duration_min": 102, "rating": 5.6, "genres": "Drama, Romance, Thriller", "genres_pipe": "|Drama|Romance|Thriller|", "keywords": "car crash, police officer", "tags_pipe": "|car crash|police officer|", "overview": "A story about a seemingly unlikely couple who cross paths under life-threatening circumstances as though they are destined not only to meet but to save each other's lives. Not once, but twice.", "text_for_embedding": "Angel Eyes (2001). Genres: Drama, Romance, Thriller. A story about a seemingly unlikely couple who cross paths under life-threatening circumstances as though they are destined not only to meet but to save each other's lives. Not once, but twice.. Tags: car crash, police officer"} +{"id": "12312", "title": "Joe Somebody", "year": 2001, "duration_min": 99, "rating": 5.5, "genres": "Comedy", "genres_pipe": "|Comedy|", "keywords": "profession, karate, daughter, beförderung, ex-wife, parking, slap", "tags_pipe": "|profession|karate|daughter|beförderung|ex-wife|parking|slap|", "overview": "When underappreciated video specialist Joe Scheffer is brutally humiliated by the office bully Mark McKinney in front of his daughter, Joe begins a quest for personal redemption. He proceeds by enduring a personal make-over and takes martial arts lessons from a B-action star. As news spreads of his rematch with Mark, Joe suddenly finds himself the center of attention, ascending the corporate ladder and growing in popularity. He's determined to show everyone in his life that he is not a nobody, but a force to be reckoned with.", "text_for_embedding": "Joe Somebody (2001). Genres: Comedy. When underappreciated video specialist Joe Scheffer is brutally humiliated by the office bully Mark McKinney in front of his daughter, Joe begins a quest for personal redemption. He proceeds by enduring a personal make-over and takes martial arts lessons from a B-action star. As news spreads of his rematch with Mark, Joe suddenly finds himself the center of attention, ascending the corporate ladder and growing in popularity. He's determined to show everyone in his life that he is not a nobody, but a force to be reckoned with.. Tags: profession, karate, daughter, beförderung, ex-wife, parking, slap"} +{"id": "622", "title": "The Ninth Gate", "year": 1999, "duration_min": 133, "rating": 6.3, "genres": "Horror, Mystery, Thriller", "genres_pipe": "|Horror|Mystery|Thriller|", "keywords": "new york, obsession, passion for collection, southern france, mephisto, antiquary, book, picture puzzle, castle, satanism, millionaire", "tags_pipe": "|new york|obsession|passion for collection|southern france|mephisto|antiquary|book|picture puzzle|castle|satanism|millionaire|", "overview": "An all-expenses-paid international search for a rare copy of the book, 'The Nine Gates of the Shadow Kingdom' brings an unscrupulous book dealer deep into a world of murder, double-dealing and satanic worship.", "text_for_embedding": "The Ninth Gate (1999). Genres: Horror, Mystery, Thriller. An all-expenses-paid international search for a rare copy of the book, 'The Nine Gates of the Shadow Kingdom' brings an unscrupulous book dealer deep into a world of murder, double-dealing and satanic worship.. Tags: new york, obsession, passion for collection, southern france, mephisto, antiquary, book, picture puzzle, castle, satanism, millionaire"} +{"id": "11306", "title": "Extreme Measures", "year": 1996, "duration_min": 118, "rating": 5.7, "genres": "Drama, Thriller", "genres_pipe": "|Drama|Thriller|", "keywords": "new york, surgeon, british, suspense, morgue, hospital, medical, doctor, medical research, emergency room, missing body", "tags_pipe": "|new york|surgeon|british|suspense|morgue|hospital|medical|doctor|medical research|emergency room|missing body|", "overview": "Thriller about Guy Luthan (Hugh Grant), a British doctor working at a hospital in New York who starts making unwanted enquiries when the body of a man who died in his emergency room disappears. The trail leads Luthan to the door of the eminent surgeon Dr Lawrence Myrick (Gene Hackman), but Luthan soon finds himself under in danger from people who want the hospital's secret to remain undiscovered.", "text_for_embedding": "Extreme Measures (1996). Genres: Drama, Thriller. Thriller about Guy Luthan (Hugh Grant), a British doctor working at a hospital in New York who starts making unwanted enquiries when the body of a man who died in his emergency room disappears. The trail leads Luthan to the door of the eminent surgeon Dr Lawrence Myrick (Gene Hackman), but Luthan soon finds himself under in danger from people who want the hospital's secret to remain undiscovered.. Tags: new york, surgeon, british, suspense, morgue, hospital, medical, doctor, medical research, emergency room, missing body"} +{"id": "12508", "title": "Rock Star", "year": 2001, "duration_min": 105, "rating": 6.0, "genres": "Music, Drama, Comedy", "genres_pipe": "|Music|Drama|Comedy|", "keywords": "rock star, success, discontentedness and displeasedness, heavy metal, relationship problems", "tags_pipe": "|rock star|success|discontentedness and displeasedness|heavy metal|relationship problems|", "overview": "Rock Star tells the story of Chris Cole and a rock band called Steel Dragon. Cole is a photocopier technician by day, and the lead singer of a Steel Dragon tribute band called \"Blood Pollution\" by night.Internal struggles between the Steel Dragon band members culminate with the firing of the lead singer, Bobby Beers and the starting of recruitment sessions to find a new vocalist. Loosely inspired by the true story of the heavy metal band Judas Priest.", "text_for_embedding": "Rock Star (2001). Genres: Music, Drama, Comedy. Rock Star tells the story of Chris Cole and a rock band called Steel Dragon. Cole is a photocopier technician by day, and the lead singer of a Steel Dragon tribute band called \"Blood Pollution\" by night.Internal struggles between the Steel Dragon band members culminate with the firing of the lead singer, Bobby Beers and the starting of recruitment sessions to find a new vocalist. Loosely inspired by the true story of the heavy metal band Judas Priest.. Tags: rock star, success, discontentedness and displeasedness, heavy metal, relationship problems"} +{"id": "25793", "title": "Precious", "year": 2009, "duration_min": 110, "rating": 6.9, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "aids, illiteracy, song, unwillingly pregnant, balloon, school, crying, motorcycle", "tags_pipe": "|aids|illiteracy|song|unwillingly pregnant|balloon|school|crying|motorcycle|", "overview": "Set in Harlem in 1987, Claireece \"Precious\" Jones is a 16-year-old African American girl born into a life no one would want. She's pregnant for the second time by her absent father; at home, she must wait hand and foot on her mother, an angry woman who abuses her emotionally and physically. School is chaotic and Precious has reached the ninth grade with good marks and a secret--she can't read.", "text_for_embedding": "Precious (2009). Genres: Drama. Set in Harlem in 1987, Claireece \"Precious\" Jones is a 16-year-old African American girl born into a life no one would want. She's pregnant for the second time by her absent father; at home, she must wait hand and foot on her mother, an angry woman who abuses her emotionally and physically. School is chaotic and Precious has reached the ninth grade with good marks and a secret--she can't read.. Tags: aids, illiteracy, song, unwillingly pregnant, balloon, school, crying, motorcycle"} +{"id": "10534", "title": "White Squall", "year": 1996, "duration_min": 129, "rating": 6.3, "genres": "Action, Drama", "genres_pipe": "|Action|Drama|", "keywords": "sailing trip, diary, sailing, survival, coming of age, teenage boy, discipline, squall, sail, ship captain, caribbean, male bonding, seasickness, storm at sea, 1960s", "tags_pipe": "|sailing trip|diary|sailing|survival|coming of age|teenage boy|discipline|squall|sail|ship captain|caribbean|male bonding|seasickness|storm at sea|1960s|", "overview": "Teenage boys discover discipline and camaraderie on an ill-fated sailing voyage.", "text_for_embedding": "White Squall (1996). Genres: Action, Drama. Teenage boys discover discipline and camaraderie on an ill-fated sailing voyage.. Tags: sailing trip, diary, sailing, survival, coming of age, teenage boy, discipline, squall, sail, ship captain, caribbean, male bonding, seasickness, storm at sea, 1960s"} +{"id": "1091", "title": "The Thing", "year": 1982, "duration_min": 109, "rating": 7.8, "genres": "Horror, Mystery, Science Fiction", "genres_pipe": "|Horror|Mystery|Science Fiction|", "keywords": "ice, space marine, paranoia, snow storm, norwegian, research station, remake, alien, antarctica, shape shifting alien, sled dogs", "tags_pipe": "|ice|space marine|paranoia|snow storm|norwegian|research station|remake|alien|antarctica|shape shifting alien|sled dogs|", "overview": "Scientists in the Antarctic are confronted by a shape-shifting alien that assumes the appearance of the people that it kills.", "text_for_embedding": "The Thing (1982). Genres: Horror, Mystery, Science Fiction. Scientists in the Antarctic are confronted by a shape-shifting alien that assumes the appearance of the people that it kills.. Tags: ice, space marine, paranoia, snow storm, norwegian, research station, remake, alien, antarctica, shape shifting alien, sled dogs"} +{"id": "87421", "title": "Riddick", "year": 2013, "duration_min": 119, "rating": 6.2, "genres": "Science Fiction, Action, Thriller", "genres_pipe": "|Science Fiction|Action|Thriller|", "keywords": "dystopia, revenge, alien, planet, imax", "tags_pipe": "|dystopia|revenge|alien|planet|imax|", "overview": "Betrayed by his own kind and left for dead on a desolate planet, Riddick fights for survival against alien predators and becomes more powerful and dangerous than ever before. Soon bounty hunters from throughout the galaxy descend on Riddick only to find themselves pawns in his greater scheme for revenge. With his enemies right where he wants them, Riddick unleashes a vicious attack of vengeance before returning to his home planet of Furya to save it from destruction.", "text_for_embedding": "Riddick (2013). Genres: Science Fiction, Action, Thriller. Betrayed by his own kind and left for dead on a desolate planet, Riddick fights for survival against alien predators and becomes more powerful and dangerous than ever before. Soon bounty hunters from throughout the galaxy descend on Riddick only to find themselves pawns in his greater scheme for revenge. With his enemies right where he wants them, Riddick unleashes a vicious attack of vengeance before returning to his home planet of Furya to save it from destruction.. Tags: dystopia, revenge, alien, planet, imax"} +{"id": "10871", "title": "Switchback", "year": 1997, "duration_min": 118, "rating": 5.8, "genres": "Action, Adventure, Mystery, Thriller", "genres_pipe": "|Action|Adventure|Mystery|Thriller|", "keywords": "loss of son, serial killer, train", "tags_pipe": "|loss of son|serial killer|train|", "overview": "FBI agent Dennis Quaid tries to catch a serial killer who kidnapped his son.", "text_for_embedding": "Switchback (1997). Genres: Action, Adventure, Mystery, Thriller. FBI agent Dennis Quaid tries to catch a serial killer who kidnapped his son.. Tags: loss of son, serial killer, train"} +{"id": "13503", "title": "Texas Rangers", "year": 2001, "duration_min": 110, "rating": 5.4, "genres": "Action, Western", "genres_pipe": "|Action|Western|", "keywords": "underwear, tiger, racial segregation", "tags_pipe": "|underwear|tiger|racial segregation|", "overview": "Ten years after the Civil War has ended, the Governor of Texas asks Leander McNelly (McDermott) to form a company of Rangers to help uphold the law along the Mexican border. With a few veterans of the war (Patrick, Travis), most of the recruits are young men (Van Der Beek, Kutcher, Raymond) who have little or no experience with guns or policing crime.", "text_for_embedding": "Texas Rangers (2001). Genres: Action, Western. Ten years after the Civil War has ended, the Governor of Texas asks Leander McNelly (McDermott) to form a company of Rangers to help uphold the law along the Mexican border. With a few veterans of the war (Patrick, Travis), most of the recruits are young men (Van Der Beek, Kutcher, Raymond) who have little or no experience with guns or policing crime.. Tags: underwear, tiger, racial segregation"} +{"id": "13600", "title": "City of Ember", "year": 2008, "duration_min": 90, "rating": 6.2, "genres": "Adventure, Family, Fantasy", "genres_pipe": "|Adventure|Family|Fantasy|", "keywords": "underground world, mayor, adventure, post-apocalyptic, dystopia, puzzle, box, pipeworks", "tags_pipe": "|underground world|mayor|adventure|post-apocalyptic|dystopia|puzzle|box|pipeworks|", "overview": "For generations, the people of the City of Ember have flourished in an amazing world of glittering lights. But Ember's once powerful generator is failing and the great lamps that illuminate the city are starting to flicker. Now, two teenagers, in a race against time, must search Ember for clues that will unlock the ancient mystery of the city's existence, before the the lights go out forever.", "text_for_embedding": "City of Ember (2008). Genres: Adventure, Family, Fantasy. For generations, the people of the City of Ember have flourished in an amazing world of glittering lights. But Ember's once powerful generator is failing and the great lamps that illuminate the city are starting to flicker. Now, two teenagers, in a race against time, must search Ember for clues that will unlock the ancient mystery of the city's existence, before the the lights go out forever.. Tags: underground world, mayor, adventure, post-apocalyptic, dystopia, puzzle, box, pipeworks"} +{"id": "68722", "title": "The Master", "year": 2012, "duration_min": 137, "rating": 7.0, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "post traumatic stress disorder, sexual obsession, postwar period, drifter, alcoholic, cult leader, scientology, religious cult, charismatic leader, right hand man", "tags_pipe": "|post traumatic stress disorder|sexual obsession|postwar period|drifter|alcoholic|cult leader|scientology|religious cult|charismatic leader|right hand man|", "overview": "Freddie, a volatile, heavy-drinking veteran who suffers from post-traumatic stress disorder, finds some semblance of a family when he stumbles onto the ship of Lancaster Dodd, the charismatic leader of a new \"religion\" he forms after World War II.", "text_for_embedding": "The Master (2012). Genres: Drama. Freddie, a volatile, heavy-drinking veteran who suffers from post-traumatic stress disorder, finds some semblance of a family when he stumbles onto the ship of Lancaster Dodd, the charismatic leader of a new \"religion\" he forms after World War II.. Tags: post traumatic stress disorder, sexual obsession, postwar period, drifter, alcoholic, cult leader, scientology, religious cult, charismatic leader, right hand man"} +{"id": "14324", "title": "Virgin Territory", "year": 2007, "duration_min": 93, "rating": 4.3, "genres": "Adventure, Action, Comedy, Romance", "genres_pipe": "|Adventure|Action|Comedy|Romance|", "keywords": "", "tags_pipe": "", "overview": "The film is set in Tuscany during the Black Death. As in the Decameron, ten young Florentines take refuge from the plague. But instead of telling stories, they have lusty adventures, bawdy exchanges, romance and swordplay. There are randy nuns, Saracen pirates, and a sexy cow.", "text_for_embedding": "Virgin Territory (2007). Genres: Adventure, Action, Comedy, Romance. The film is set in Tuscany during the Black Death. As in the Decameron, ten young Florentines take refuge from the plague. But instead of telling stories, they have lusty adventures, bawdy exchanges, romance and swordplay. There are randy nuns, Saracen pirates, and a sexy cow.. Tags: "} +{"id": "14325", "title": "The Express", "year": 2008, "duration_min": 130, "rating": 7.1, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "american football, college, biography, sport, syracuse university", "tags_pipe": "|american football|college|biography|sport|syracuse university|", "overview": "Based on the incredible true story, The Express follows the inspirational life of college football hero Ernie Davis, the first African-American to win the Heisman Trophy.", "text_for_embedding": "The Express (2008). Genres: Drama. Based on the incredible true story, The Express follows the inspirational life of college football hero Ernie Davis, the first African-American to win the Heisman Trophy.. Tags: american football, college, biography, sport, syracuse university"} +{"id": "299687", "title": "The 5th Wave", "year": 2016, "duration_min": 112, "rating": 5.6, "genres": "Adventure, Science Fiction", "genres_pipe": "|Adventure|Science Fiction|", "keywords": "based on novel, dystopia, alien, alien invasion, human subjugation, environmental disaster, based on young adult novel", "tags_pipe": "|based on novel|dystopia|alien|alien invasion|human subjugation|environmental disaster|based on young adult novel|", "overview": "16-year-old Cassie Sullivan tries to survive in a world devastated by the waves of an alien invasion that has already decimated the population and knocked mankind back to the Stone Age.", "text_for_embedding": "The 5th Wave (2016). Genres: Adventure, Science Fiction. 16-year-old Cassie Sullivan tries to survive in a world devastated by the waves of an alien invasion that has already decimated the population and knocked mankind back to the Stone Age.. Tags: based on novel, dystopia, alien, alien invasion, human subjugation, environmental disaster, based on young adult novel"} +{"id": "312221", "title": "Creed", "year": 2015, "duration_min": 133, "rating": 7.3, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "underdog, sport, spin off, underground fighting, motivational speaker, boxing", "tags_pipe": "|underdog|sport|spin off|underground fighting|motivational speaker|boxing|", "overview": "The former World Heavyweight Champion Rocky Balboa serves as a trainer and mentor to Adonis Johnson, the son of his late friend and former rival Apollo Creed.", "text_for_embedding": "Creed (2015). Genres: Drama. The former World Heavyweight Champion Rocky Balboa serves as a trainer and mentor to Adonis Johnson, the son of his late friend and former rival Apollo Creed.. Tags: underdog, sport, spin off, underground fighting, motivational speaker, boxing"} +{"id": "23168", "title": "The Town", "year": 2010, "duration_min": 125, "rating": 7.0, "genres": "Crime, Drama, Thriller", "genres_pipe": "|Crime|Drama|Thriller|", "keywords": "based on novel, money laundering, ambulance, boston, massachusetts, bank manager, drug dealer, florist, flower shop, hold-up robbery, volunteer, stolen money, friends, car set on fire, boston garden", "tags_pipe": "|based on novel|money laundering|ambulance|boston|massachusetts|bank manager|drug dealer|florist|flower shop|hold-up robbery|volunteer|stolen money|friends|car set on fire|boston garden|", "overview": "Doug MacRay is a longtime thief, who, smarter than the rest of his crew, is looking for his chance to exit the game. When a bank job leads to the group kidnapping an attractive branch manager, he takes on the role of monitoring her – but their burgeoning relationship threatens to unveil the identities of Doug and his crew to the FBI Agent who is on their case.", "text_for_embedding": "The Town (2010). Genres: Crime, Drama, Thriller. Doug MacRay is a longtime thief, who, smarter than the rest of his crew, is looking for his chance to exit the game. When a bank job leads to the group kidnapping an attractive branch manager, he takes on the role of monitoring her – but their burgeoning relationship threatens to unveil the identities of Doug and his crew to the FBI Agent who is on their case.. Tags: based on novel, money laundering, ambulance, boston, massachusetts, bank manager, drug dealer, florist, flower shop, hold-up robbery, volunteer, stolen money, friends, car set on fire, boston garden"} +{"id": "76494", "title": "What to Expect When You're Expecting", "year": 2012, "duration_min": 110, "rating": 5.8, "genres": "Romance, Comedy, Drama", "genres_pipe": "|Romance|Comedy|Drama|", "keywords": "based on novel, adoption, pregnant, miscarriage, expectant father, pregnant wife, vomiting, expecting twins, open air cinema, giving birth", "tags_pipe": "|based on novel|adoption|pregnant|miscarriage|expectant father|pregnant wife|vomiting|expecting twins|open air cinema|giving birth|", "overview": "Challenges of impending parenthood turn the lives of five couples upside down. Two celebrities are unprepared for the surprise demands of pregnancy; hormones wreak havoc on a baby-crazy author, while her husband tries not to be outdone by his father, who's expecting twins with his young trophy wife; a photographer's husband isn't sure about his wife's adoption plans; a one-time hook-up results in a surprise pregnancy for rival food-truck owners.", "text_for_embedding": "What to Expect When You're Expecting (2012). Genres: Romance, Comedy, Drama. Challenges of impending parenthood turn the lives of five couples upside down. Two celebrities are unprepared for the surprise demands of pregnancy; hormones wreak havoc on a baby-crazy author, while her husband tries not to be outdone by his father, who's expecting twins with his young trophy wife; a photographer's husband isn't sure about his wife's adoption plans; a one-time hook-up results in a surprise pregnancy for rival food-truck owners.. Tags: based on novel, adoption, pregnant, miscarriage, expectant father, pregnant wife, vomiting, expecting twins, open air cinema, giving birth"} +{"id": "4944", "title": "Burn After Reading", "year": 2008, "duration_min": 96, "rating": 6.5, "genres": "Comedy, Drama", "genres_pipe": "|Comedy|Drama|", "keywords": "blackmail, paranoia, fitness-training, plastic surgery, autobiography, memory, corpse, divorce, gym, disc, ex priest", "tags_pipe": "|blackmail|paranoia|fitness-training|plastic surgery|autobiography|memory|corpse|divorce|gym|disc|ex priest|", "overview": "When a disc containing memoirs of a former CIA analyst falls into the hands of Linda Litzke and Chad Feldheimer, the two gym employees see a chance to make enough money for her to have life-changing cosmetic surgery. Predictably, events whirl out of control for the duo doofuses and those in their orbit.", "text_for_embedding": "Burn After Reading (2008). Genres: Comedy, Drama. When a disc containing memoirs of a former CIA analyst falls into the hands of Linda Litzke and Chad Feldheimer, the two gym employees see a chance to make enough money for her to have life-changing cosmetic surgery. Predictably, events whirl out of control for the duo doofuses and those in their orbit.. Tags: blackmail, paranoia, fitness-training, plastic surgery, autobiography, memory, corpse, divorce, gym, disc, ex priest"} +{"id": "10488", "title": "Nim's Island", "year": 2008, "duration_min": 96, "rating": 5.6, "genres": "Adventure, Comedy, Family, Fantasy", "genres_pipe": "|Adventure|Comedy|Family|Fantasy|", "keywords": "fictional place, exotic island, shipwreck, cruise, volcano, e-mail, liana, daughter, turtle, author, talking animal, pirate, woman director, iguana, sea lion", "tags_pipe": "|fictional place|exotic island|shipwreck|cruise|volcano|e-mail|liana|daughter|turtle|author|talking animal|pirate|woman director|iguana|sea lion|", "overview": "A young girl inhabits an isolated island with her scientist father and communicates with a reclusive author of the novel she's reading.", "text_for_embedding": "Nim's Island (2008). Genres: Adventure, Comedy, Family, Fantasy. A young girl inhabits an isolated island with her scientist father and communicates with a reclusive author of the novel she's reading.. Tags: fictional place, exotic island, shipwreck, cruise, volcano, e-mail, liana, daughter, turtle, author, talking animal, pirate, woman director, iguana, sea lion"} +{"id": "96721", "title": "Rush", "year": 2013, "duration_min": 123, "rating": 7.7, "genres": "Drama, Action", "genres_pipe": "|Drama|Action|", "keywords": "world champion, sport, racing car, formula 1, automobile racing, based on true events", "tags_pipe": "|world champion|sport|racing car|formula 1|automobile racing|based on true events|", "overview": "A biographical drama centered on the rivalry between Formula 1 drivers James Hunt and Niki Lauda during the 1976 Formula One motor-racing season.", "text_for_embedding": "Rush (2013). Genres: Drama, Action. A biographical drama centered on the rivalry between Formula 1 drivers James Hunt and Niki Lauda during the 1976 Formula One motor-racing season.. Tags: world champion, sport, racing car, formula 1, automobile racing, based on true events"} +{"id": "334", "title": "Magnolia", "year": 1999, "duration_min": 188, "rating": 7.5, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "farewell, regret, parents kids relationship, suicide attempt, becoming an adult, loss of father, dying and death, chance, child prodigy, daughter, unsociability, reconciliation", "tags_pipe": "|farewell|regret|parents kids relationship|suicide attempt|becoming an adult|loss of father|dying and death|chance|child prodigy|daughter|unsociability|reconciliation|", "overview": "An epic mosaic of many interrelated characters in search of happiness, forgiveness, and meaning in the San Fernando Valley.", "text_for_embedding": "Magnolia (1999). Genres: Drama. An epic mosaic of many interrelated characters in search of happiness, forgiveness, and meaning in the San Fernando Valley.. Tags: farewell, regret, parents kids relationship, suicide attempt, becoming an adult, loss of father, dying and death, chance, child prodigy, daughter, unsociability, reconciliation"} +{"id": "23742", "title": "Cop Out", "year": 2010, "duration_min": 107, "rating": 5.3, "genres": "Action, Comedy, Crime", "genres_pipe": "|Action|Comedy|Crime|", "keywords": "new york, money laundering, daughter, police, undercover cop, locked in trunk of car, baseball card, wedding, police officer, duringcreditsstinger", "tags_pipe": "|new york|money laundering|daughter|police|undercover cop|locked in trunk of car|baseball card|wedding|police officer|duringcreditsstinger|", "overview": "Detectives Jimmy and Paul, despite nine years as partners, can still sometimes seem like polar opposites – especially when Paul's unpredictable antics get them suspended without pay. Already strapped for cash and trying to pay for his daughter's wedding, Jimmy decides to sell a rare baseball card that's worth tens of thousands. Unfortunately, when the collector's shop is robbed and the card vanishes with the crook, Paul and Jimmy end up going rogue, tracking down the card and the drug ring behind its theft, all on their own time, and without any backup – except for each other.", "text_for_embedding": "Cop Out (2010). Genres: Action, Comedy, Crime. Detectives Jimmy and Paul, despite nine years as partners, can still sometimes seem like polar opposites – especially when Paul's unpredictable antics get them suspended without pay. Already strapped for cash and trying to pay for his daughter's wedding, Jimmy decides to sell a rare baseball card that's worth tens of thousands. Unfortunately, when the collector's shop is robbed and the card vanishes with the crook, Paul and Jimmy end up going rogue, tracking down the card and the drug ring behind its theft, all on their own time, and without any backup – except for each other.. Tags: new york, money laundering, daughter, police, undercover cop, locked in trunk of car, baseball card, wedding, police officer, duringcreditsstinger"} +{"id": "259694", "title": "How to Be Single", "year": 2016, "duration_min": 110, "rating": 5.9, "genres": "Comedy, Romance", "genres_pipe": "|Comedy|Romance|", "keywords": "new york, based on novel, one-night stand, single", "tags_pipe": "|new york|based on novel|one-night stand|single|", "overview": "New York City is full of lonely hearts seeking the right match, and what Alice, Robin, Lucy, Meg, Tom and David all have in common is the need to learn how to be single in a world filled with ever-evolving definitions of love.", "text_for_embedding": "How to Be Single (2016). Genres: Comedy, Romance. New York City is full of lonely hearts seeking the right match, and what Alice, Robin, Lucy, Meg, Tom and David all have in common is the need to learn how to be single in a world filled with ever-evolving definitions of love.. Tags: new york, based on novel, one-night stand, single"} +{"id": "62837", "title": "Dolphin Tale", "year": 2011, "duration_min": 113, "rating": 6.7, "genres": "Drama, Family", "genres_pipe": "|Drama|Family|", "keywords": "dolphin, boy, trap, summer, tail", "tags_pipe": "|dolphin|boy|trap|summer|tail|", "overview": "A story centered on the friendship between a boy and a dolphin whose tail was lost in a crab trap.", "text_for_embedding": "Dolphin Tale (2011). Genres: Drama, Family. A story centered on the friendship between a boy and a dolphin whose tail was lost in a crab trap.. Tags: dolphin, boy, trap, summer, tail"} +{"id": "8966", "title": "Twilight", "year": 2008, "duration_min": 122, "rating": 5.8, "genres": "Adventure, Fantasy, Drama, Romance", "genres_pipe": "|Adventure|Fantasy|Drama|Romance|", "keywords": "soulmates, vampire, forbidden love, immortality, trust, desire, duringcreditsstinger, woman director, interspecies romance, based on young adult novel, fang vamp", "tags_pipe": "|soulmates|vampire|forbidden love|immortality|trust|desire|duringcreditsstinger|woman director|interspecies romance|based on young adult novel|fang vamp|", "overview": "When Bella Swan moves to a small town in the Pacific Northwest to live with her father, she starts school and meets the reclusive Edward Cullen, a mysterious classmate who reveals himself to be a 108-year-old vampire. Despite Edward's repeated cautions, Bella can't help but fall in love with him, a fatal move that endangers her own life when a coven of bloodsuckers try to challenge the Cullen clan.", "text_for_embedding": "Twilight (2008). Genres: Adventure, Fantasy, Drama, Romance. When Bella Swan moves to a small town in the Pacific Northwest to live with her father, she starts school and meets the reclusive Edward Cullen, a mysterious classmate who reveals himself to be a 108-year-old vampire. Despite Edward's repeated cautions, Bella can't help but fall in love with him, a fatal move that endangers her own life when a coven of bloodsuckers try to challenge the Cullen clan.. Tags: soulmates, vampire, forbidden love, immortality, trust, desire, duringcreditsstinger, woman director, interspecies romance, based on young adult novel, fang vamp"} +{"id": "8470", "title": "John Q", "year": 2002, "duration_min": 116, "rating": 7.0, "genres": "Drama, Thriller, Crime", "genres_pipe": "|Drama|Thriller|Crime|", "keywords": "father son relationship, chicago, heart attack, kidnapping, heart disease, hostage-taking, hospital", "tags_pipe": "|father son relationship|chicago|heart attack|kidnapping|heart disease|hostage-taking|hospital|", "overview": "John Quincy Archibald is a father and husband whose son is diagnosed with an enlarged heart and then finds out he cannot receive a transplant because HMO insurance will not cover it. Therefore, he decides to take a hospital full of patients hostage until the hospital puts his son's name on the donor's list.", "text_for_embedding": "John Q (2002). Genres: Drama, Thriller, Crime. John Quincy Archibald is a father and husband whose son is diagnosed with an enlarged heart and then finds out he cannot receive a transplant because HMO insurance will not cover it. Therefore, he decides to take a hospital full of patients hostage until the hospital puts his son's name on the donor's list.. Tags: father son relationship, chicago, heart attack, kidnapping, heart disease, hostage-taking, hospital"} +{"id": "11001", "title": "Blue Streak", "year": 1999, "duration_min": 93, "rating": 6.1, "genres": "Action, Comedy, Crime", "genres_pipe": "|Action|Comedy|Crime|", "keywords": "robbery, diamant, police operation, police everyday life, thief, police officer, police station", "tags_pipe": "|robbery|diamant|police operation|police everyday life|thief|police officer|police station|", "overview": "Miles Logan is a jewel thief who just hit the big time by stealing a huge diamond. However, after two years in jail, he comes to find out that he hid the diamond in a police building that was being built at the time of the robbery. In an attempt to regain his diamond, he poses as a LAPD detective", "text_for_embedding": "Blue Streak (1999). Genres: Action, Comedy, Crime. Miles Logan is a jewel thief who just hit the big time by stealing a huge diamond. However, after two years in jail, he comes to find out that he hid the diamond in a police building that was being built at the time of the robbery. In an attempt to regain his diamond, he poses as a LAPD detective. Tags: robbery, diamant, police operation, police everyday life, thief, police officer, police station"} +{"id": "138832", "title": "We're the Millers", "year": 2013, "duration_min": 110, "rating": 6.8, "genres": "Comedy, Crime", "genres_pipe": "|Comedy|Crime|", "keywords": "mexico, police, gang, drug smuggling, drug, family", "tags_pipe": "|mexico|police|gang|drug smuggling|drug|family|", "overview": "A veteran pot dealer creates a fake family as part of his plan to move a huge shipment of weed into the U.S. from Mexico.", "text_for_embedding": "We're the Millers (2013). Genres: Comedy, Crime. A veteran pot dealer creates a fake family as part of his plan to move a huge shipment of weed into the U.S. from Mexico.. Tags: mexico, police, gang, drug smuggling, drug, family"} +{"id": "16911", "title": "The Inhabited Island", "year": 2008, "duration_min": 115, "rating": 5.3, "genres": "Action, Fantasy, Science Fiction, Thriller", "genres_pipe": "|Action|Fantasy|Science Fiction|Thriller|", "keywords": "based on novel, brother sister relationship, sword fight, spaceship, strugatsky, brainwashing, big city, girlfriend from china, hard to kill, outer space, testting, testing, head of state", "tags_pipe": "|based on novel|brother sister relationship|sword fight|spaceship|strugatsky|brainwashing|big city|girlfriend from china|hard to kill|outer space|testting|testing|head of state|", "overview": "On the threshold of 22nd century, furrowing the space, protagonist from the Free Search Group makes emergency landing on an unknown planet where he must stay. People who are living on this planet have remained at the stone level of the 20th century, with its social problems, miserable ecology and shaky world..", "text_for_embedding": "The Inhabited Island (2008). Genres: Action, Fantasy, Science Fiction, Thriller. On the threshold of 22nd century, furrowing the space, protagonist from the Free Search Group makes emergency landing on an unknown planet where he must stay. People who are living on this planet have remained at the stone level of the 20th century, with its social problems, miserable ecology and shaky world... Tags: based on novel, brother sister relationship, sword fight, spaceship, strugatsky, brainwashing, big city, girlfriend from china, hard to kill, outer space, testting, testing, head of state"} +{"id": "2163", "title": "Breakdown", "year": 1997, "duration_min": 95, "rating": 6.6, "genres": "Drama, Action, Thriller", "genres_pipe": "|Drama|Action|Thriller|", "keywords": "california, bank, ransom, car breakdown, kidnapping, donut, highway, barn, vacation, stranded, deception, murder, suspense, redneck, diner", "tags_pipe": "|california|bank|ransom|car breakdown|kidnapping|donut|highway|barn|vacation|stranded|deception|murder|suspense|redneck|diner|", "overview": "When his SUV breaks down on a remote Southwestern road, Jeff Taylor lets his wife, Amy, hitch a ride with a trucker to get help. When she doesn't return, Jeff fixes his SUV and tracks down the trucker -- who tells the police he's never seen Amy. Johnathan Mostow's tense thriller then follows Jeff's desperate search for his wife, which eventually uncovers a small town's murderous secret.", "text_for_embedding": "Breakdown (1997). Genres: Drama, Action, Thriller. When his SUV breaks down on a remote Southwestern road, Jeff Taylor lets his wife, Amy, hitch a ride with a trucker to get help. When she doesn't return, Jeff fixes his SUV and tracks down the trucker -- who tells the police he's never seen Amy. Johnathan Mostow's tense thriller then follows Jeff's desperate search for his wife, which eventually uncovers a small town's murderous secret.. Tags: california, bank, ransom, car breakdown, kidnapping, donut, highway, barn, vacation, stranded, deception, murder, suspense, redneck, diner"} +{"id": "36670", "title": "Never Say Never Again", "year": 1983, "duration_min": 134, "rating": 5.8, "genres": "Adventure, Action, Thriller", "genres_pipe": "|Adventure|Action|Thriller|", "keywords": "video game, spy, bahamas, british, stealing, scuba diving, scuba, british secret service", "tags_pipe": "|video game|spy|bahamas|british|stealing|scuba diving|scuba|british secret service|", "overview": "James Bond returns as the secret agent 007 one more time to battle the evil organization SPECTRE. Bond must defeat Largo, who has stolen two atomic warheads for nuclear blackmail. But Bond has an ally in Largo's girlfriend, the willowy Domino, who falls for Bond and seeks revenge. This is the last time for Sean Connery as Her Majesty's Secret Agent 007.", "text_for_embedding": "Never Say Never Again (1983). Genres: Adventure, Action, Thriller. James Bond returns as the secret agent 007 one more time to battle the evil organization SPECTRE. Bond must defeat Largo, who has stolen two atomic warheads for nuclear blackmail. But Bond has an ally in Largo's girlfriend, the willowy Domino, who falls for Bond and seeks revenge. This is the last time for Sean Connery as Her Majesty's Secret Agent 007.. Tags: video game, spy, bahamas, british, stealing, scuba diving, scuba, british secret service"} +{"id": "23048", "title": "Hot Tub Time Machine", "year": 2010, "duration_min": 101, "rating": 6.0, "genres": "Science Fiction, Comedy, Adventure", "genres_pipe": "|Science Fiction|Comedy|Adventure|", "keywords": "female nudity, one-night stand, time travel, time machine, incest overtones, hot tub, peter pan syndrome, forty something, skiing", "tags_pipe": "|female nudity|one-night stand|time travel|time machine|incest overtones|hot tub|peter pan syndrome|forty something|skiing|", "overview": "A malfunctioning time machine at a ski resort takes a man back to 1986 with his two friends and nephew, where they must relive a fateful night and not change anything to make sure the nephew is born.", "text_for_embedding": "Hot Tub Time Machine (2010). Genres: Science Fiction, Comedy, Adventure. A malfunctioning time machine at a ski resort takes a man back to 1986 with his two friends and nephew, where they must relive a fateful night and not change anything to make sure the nephew is born.. Tags: female nudity, one-night stand, time travel, time machine, incest overtones, hot tub, peter pan syndrome, forty something, skiing"} +{"id": "227735", "title": "Dolphin Tale 2", "year": 2014, "duration_min": 107, "rating": 6.7, "genres": "Family, Drama", "genres_pipe": "|Family|Drama|", "keywords": "dolphin, aquarium, swimming", "tags_pipe": "|dolphin|aquarium|swimming|", "overview": "The team of people who saved Winter's life reassemble in the wake of her surrogate mother's passing in order to find her a companion so she can remain at the Clearwater Marine Hospital.", "text_for_embedding": "Dolphin Tale 2 (2014). Genres: Family, Drama. The team of people who saved Winter's life reassemble in the wake of her surrogate mother's passing in order to find her a companion so she can remain at the Clearwater Marine Hospital.. Tags: dolphin, aquarium, swimming"} +{"id": "2155", "title": "Reindeer Games", "year": 2000, "duration_min": 124, "rating": 5.4, "genres": "Thriller", "genres_pipe": "|Thriller|", "keywords": "prison, robbery, role reversal, extramarital affair", "tags_pipe": "|prison|robbery|role reversal|extramarital affair|", "overview": "After assuming his dead cellmate's identity to get with his girlfriend, an ex-con finds himself the reluctant participant in a casino heist.", "text_for_embedding": "Reindeer Games (2000). Genres: Thriller. After assuming his dead cellmate's identity to get with his girlfriend, an ex-con finds himself the reluctant participant in a casino heist.. Tags: prison, robbery, role reversal, extramarital affair"} +{"id": "8409", "title": "A Man Apart", "year": 2003, "duration_min": 109, "rating": 5.8, "genres": "Action, Drama", "genres_pipe": "|Action|Drama|", "keywords": "repayment, arbitrary law, cop, loss of wife", "tags_pipe": "|repayment|arbitrary law|cop|loss of wife|", "overview": "When Vetter's wife is killed in a botched hit organized by Diablo, he seeks revenge against those responsible. But in the process, Vetter and Hicks have to fight their way up the chain to get to Diablo but it's easier said than done when all Vetter can focus on is revenge.", "text_for_embedding": "A Man Apart (2003). Genres: Action, Drama. When Vetter's wife is killed in a botched hit organized by Diablo, he seeks revenge against those responsible. But in the process, Vetter and Hicks have to fight their way up the chain to get to Diablo but it's easier said than done when all Vetter can focus on is revenge.. Tags: repayment, arbitrary law, cop, loss of wife"} +{"id": "222936", "title": "Aloha", "year": 2015, "duration_min": 105, "rating": 5.2, "genres": "Drama, Comedy, Romance", "genres_pipe": "|Drama|Comedy|Romance|", "keywords": "love triangle, hawaii, satellite, military, duringcreditsstinger, communication", "tags_pipe": "|love triangle|hawaii|satellite|military|duringcreditsstinger|communication|", "overview": "A celebrated military contractor returns to the site of his greatest career triumphs and re-connects with a long-ago love while unexpectedly falling for the hard-charging Air Force watchdog assigned to him.", "text_for_embedding": "Aloha (2015). Genres: Drama, Comedy, Romance. A celebrated military contractor returns to the site of his greatest career triumphs and re-connects with a long-ago love while unexpectedly falling for the hard-charging Air Force watchdog assigned to him.. Tags: love triangle, hawaii, satellite, military, duringcreditsstinger, communication"} +{"id": "31908", "title": "Ghosts of Mississippi", "year": 1996, "duration_min": 130, "rating": 6.2, "genres": "History, Drama", "genres_pipe": "|History|Drama|", "keywords": "assassin, widow, trial, civil rights, activist", "tags_pipe": "|assassin|widow|trial|civil rights|activist|", "overview": "Ghosts of Mississippi is a drama covering the final trial of the assassin, Bryon De La Beckwith, of the 60s civil rights leader Medgar Evers. It begins with the murder and the events surrounding the two initial trials which both ended in a hung jury. The movie then covers District Attorney, Bobby DeLaughters transformation and alliance with Myrlie Evers, wife of Medgar Evers, of the, as he becomes more involved with bringing Beckwith to trial for the third time 30 years later. Some of the characters are played by the actual participants in this story.", "text_for_embedding": "Ghosts of Mississippi (1996). Genres: History, Drama. Ghosts of Mississippi is a drama covering the final trial of the assassin, Bryon De La Beckwith, of the 60s civil rights leader Medgar Evers. It begins with the murder and the events surrounding the two initial trials which both ended in a hung jury. The movie then covers District Attorney, Bobby DeLaughters transformation and alliance with Myrlie Evers, wife of Medgar Evers, of the, as he becomes more involved with bringing Beckwith to trial for the third time 30 years later. Some of the characters are played by the actual participants in this story.. Tags: assassin, widow, trial, civil rights, activist"} +{"id": "10219", "title": "Snow Falling on Cedars", "year": 1999, "duration_min": 127, "rating": 6.3, "genres": "Drama, Romance", "genres_pipe": "|Drama|Romance|", "keywords": "journalist, japanese, wife, fisherman, war, bias, trial, washington state, japanese american", "tags_pipe": "|journalist|japanese|wife|fisherman|war|bias|trial|washington state|japanese american|", "overview": "A Japanese-American fisherman may have killed his neighbor Carl at sea. In the 1950s, race figures in the trial. So does reporter Ishmael.", "text_for_embedding": "Snow Falling on Cedars (1999). Genres: Drama, Romance. A Japanese-American fisherman may have killed his neighbor Carl at sea. In the 1950s, race figures in the trial. So does reporter Ishmael.. Tags: journalist, japanese, wife, fisherman, war, bias, trial, washington state, japanese american"} +{"id": "48171", "title": "The Rite", "year": 2011, "duration_min": 114, "rating": 5.8, "genres": "Drama, Thriller, Horror", "genres_pipe": "|Drama|Thriller|Horror|", "keywords": "vatican, violinist, hospital, miscarriage, exorcist, roman catholic, seminary, limp, toad, clergy, formalin, walking cane", "tags_pipe": "|vatican|violinist|hospital|miscarriage|exorcist|roman catholic|seminary|limp|toad|clergy|formalin|walking cane|", "overview": "Seminary student Michael Kovak (Colin O'Donoghue) reluctantly attends exorcism school at the Vatican. While he’s in Rome, Michael meets an unorthodox priest, Father Lucas (Anthony Hopkins), who introduces him to the darker side of his faith, uncovering the devil’s reach even to one of the holiest places on Earth.", "text_for_embedding": "The Rite (2011). Genres: Drama, Thriller, Horror. Seminary student Michael Kovak (Colin O'Donoghue) reluctantly attends exorcism school at the Vatican. While he’s in Rome, Michael meets an unorthodox priest, Father Lucas (Anthony Hopkins), who introduces him to the darker side of his faith, uncovering the devil’s reach even to one of the holiest places on Earth.. Tags: vatican, violinist, hospital, miscarriage, exorcist, roman catholic, seminary, limp, toad, clergy, formalin, walking cane"} +{"id": "782", "title": "Gattaca", "year": 1997, "duration_min": 106, "rating": 7.5, "genres": "Thriller, Science Fiction, Mystery, Romance", "genres_pipe": "|Thriller|Science Fiction|Mystery|Romance|", "keywords": "paraplegic, suicide attempt, cheating, dna, spaceman, new identity, heart disease, false identity, blood sample, biotechnology, space mission, dystopia, investigation, genetics, hostility", "tags_pipe": "|paraplegic|suicide attempt|cheating|dna|spaceman|new identity|heart disease|false identity|blood sample|biotechnology|space mission|dystopia|investigation|genetics|hostility|", "overview": "Science fiction drama about a future society in the era of indefinite eugenics where humans are set on a life course depending on their DNA. The young Vincent Freeman is born with a condition that would prevent him from space travel, yet he is determined to infiltrate the GATTACA space program.", "text_for_embedding": "Gattaca (1997). Genres: Thriller, Science Fiction, Mystery, Romance. Science fiction drama about a future society in the era of indefinite eugenics where humans are set on a life course depending on their DNA. The young Vincent Freeman is born with a condition that would prevent him from space travel, yet he is determined to infiltrate the GATTACA space program.. Tags: paraplegic, suicide attempt, cheating, dna, spaceman, new identity, heart disease, false identity, blood sample, biotechnology, space mission, dystopia, investigation, genetics, hostility"} +{"id": "75531", "title": "Isn't She Great", "year": 2000, "duration_min": 95, "rating": 4.6, "genres": "Drama, Comedy", "genres_pipe": "|Drama|Comedy|", "keywords": "autism, based on article", "tags_pipe": "|autism|based on article|", "overview": "An unsuccessful over-the-top actress becomes a successful over-the-top authoress in this biography of Jacqueline Susann, the famed writer of \"The Valley Of The Dolls\" and other trashy novels. Facing a failing career, Susann meets a successful promoter who becomes her husband. After several failures to place her in commercials and a TV quiz show, he hits upon the idea for her to become a writer. In the pre-60's, her books were looked upon as trash and non-printable. But then the sexual revolution hit and an audience was born for her books. The story shows the hidden behind the scenes story of Susan's life, including her autistic son and her continuing bout with cancer that she hid up to her death", "text_for_embedding": "Isn't She Great (2000). Genres: Drama, Comedy. An unsuccessful over-the-top actress becomes a successful over-the-top authoress in this biography of Jacqueline Susann, the famed writer of \"The Valley Of The Dolls\" and other trashy novels. Facing a failing career, Susann meets a successful promoter who becomes her husband. After several failures to place her in commercials and a TV quiz show, he hits upon the idea for her to become a writer. In the pre-60's, her books were looked upon as trash and non-printable. But then the sexual revolution hit and an audience was born for her books. The story shows the hidden behind the scenes story of Susan's life, including her autistic son and her continuing bout with cancer that she hid up to her death. Tags: autism, based on article"} +{"id": "11802", "title": "Space Chimps", "year": 2008, "duration_min": 81, "rating": 5.2, "genres": "Animation, Family", "genres_pipe": "|Animation|Family|", "keywords": "space marine, chimp, space, aftercreditsstinger", "tags_pipe": "|space marine|chimp|space|aftercreditsstinger|", "overview": "Circus monkey Ham III works in a circus where he's regularly shot from a canon but he still lives in the shadow of his father's legacy. A natural born rebel against authority, Ham III is initially reluctant to go on a dangerous space mission to rescue a lost space probe, but away he goes, for lots of RIGHT STUFF-style astro-training alongside two highly prepared chimps, Luna and Titan.", "text_for_embedding": "Space Chimps (2008). Genres: Animation, Family. Circus monkey Ham III works in a circus where he's regularly shot from a canon but he still lives in the shadow of his father's legacy. A natural born rebel against authority, Ham III is initially reluctant to go on a dangerous space mission to rescue a lost space probe, but away he goes, for lots of RIGHT STUFF-style astro-training alongside two highly prepared chimps, Luna and Titan.. Tags: space marine, chimp, space, aftercreditsstinger"} +{"id": "9776", "title": "Head of State", "year": 2003, "duration_min": 95, "rating": 5.3, "genres": "Comedy", "genres_pipe": "|Comedy|", "keywords": "usa, black people, usa president, presidential election, election campaign", "tags_pipe": "|usa|black people|usa president|presidential election|election campaign|", "overview": "When a presidential candidate dies unexpectedly in the middle of the campaign, the Democratic party unexpectedly picks a Washington, D.C. alderman, Mays Gilliam (Rock) as his replacement .", "text_for_embedding": "Head of State (2003). Genres: Comedy. When a presidential candidate dies unexpectedly in the middle of the campaign, the Democratic party unexpectedly picks a Washington, D.C. alderman, Mays Gilliam (Rock) as his replacement .. Tags: usa, black people, usa president, presidential election, election campaign"} +{"id": "18785", "title": "The Hangover", "year": 2009, "duration_min": 100, "rating": 7.2, "genres": "Comedy", "genres_pipe": "|Comedy|", "keywords": "underwear, tiger, stag night, hangover, lost weekend, bag over head, chapel, hit with tire iron, memory loss, las vegas, duringcreditsstinger, elevator", "tags_pipe": "|underwear|tiger|stag night|hangover|lost weekend|bag over head|chapel|hit with tire iron|memory loss|las vegas|duringcreditsstinger|elevator|", "overview": "When three friends finally come to after a raucous night of bachelor-party revelry, they find a baby in the closet and a tiger in the bathroom. But they can't seem to locate their best friend, Doug – who's supposed to be tying the knot. Launching a frantic search for Doug, the trio perseveres through a nasty hangover to try to make it to the church on time.", "text_for_embedding": "The Hangover (2009). Genres: Comedy. When three friends finally come to after a raucous night of bachelor-party revelry, they find a baby in the closet and a tiger in the bathroom. But they can't seem to locate their best friend, Doug – who's supposed to be tying the knot. Launching a frantic search for Doug, the trio perseveres through a nasty hangover to try to make it to the church on time.. Tags: underwear, tiger, stag night, hangover, lost weekend, bag over head, chapel, hit with tire iron, memory loss, las vegas, duringcreditsstinger, elevator"} +{"id": "365222", "title": "Ip Man 3", "year": 2015, "duration_min": 105, "rating": 6.5, "genres": "Action, Drama, History", "genres_pipe": "|Action|Drama|History|", "keywords": "biography", "tags_pipe": "|biography|", "overview": "When a band of brutal gangsters led by a crooked property developer make a play to take over the city, Master Ip is forced to take a stand.", "text_for_embedding": "Ip Man 3 (2015). Genres: Action, Drama, History. When a band of brutal gangsters led by a crooked property developer make a play to take over the city, Master Ip is forced to take a stand.. Tags: biography"} +{"id": "817", "title": "Austin Powers: The Spy Who Shagged Me", "year": 1999, "duration_min": 95, "rating": 6.2, "genres": "Adventure, Comedy, Crime, Science Fiction", "genres_pipe": "|Adventure|Comedy|Crime|Science Fiction|", "keywords": "saving the world, moon, submarine, clone, spy, cia, showdown, android, usa president, exotic island, cat, lasergun, nasa, undercover, space marine", "tags_pipe": "|saving the world|moon|submarine|clone|spy|cia|showdown|android|usa president|exotic island|cat|lasergun|nasa|undercover|space marine|", "overview": "When diabolical genius, Dr. Evil travels back in time to steal superspy Austin Powers's ‘mojo’, Austin must return to the swingin' '60s himself – with the help of American agent, Felicity Shagwell – to stop the dastardly plan. Once there, Austin faces off against Dr. Evil's army of minions and saves the world in his own unbelievably groovy way.", "text_for_embedding": "Austin Powers: The Spy Who Shagged Me (1999). Genres: Adventure, Comedy, Crime, Science Fiction. When diabolical genius, Dr. Evil travels back in time to steal superspy Austin Powers's ‘mojo’, Austin must return to the swingin' '60s himself – with the help of American agent, Felicity Shagwell – to stop the dastardly plan. Once there, Austin faces off against Dr. Evil's army of minions and saves the world in his own unbelievably groovy way.. Tags: saving the world, moon, submarine, clone, spy, cia, showdown, android, usa president, exotic island, cat, lasergun, nasa, undercover, space marine"} +{"id": "268", "title": "Batman", "year": 1989, "duration_min": 126, "rating": 7.0, "genres": "Fantasy, Action", "genres_pipe": "|Fantasy|Action|", "keywords": "double life, dc comics, dual identity, chemical, crime fighter, fictional place, gotham city, superhero, super powers", "tags_pipe": "|double life|dc comics|dual identity|chemical|crime fighter|fictional place|gotham city|superhero|super powers|", "overview": "The Dark Knight of Gotham City begins his war on crime with his first major enemy being the clownishly homicidal Joker, who has seized control of Gotham's underworld.", "text_for_embedding": "Batman (1989). Genres: Fantasy, Action. The Dark Knight of Gotham City begins his war on crime with his first major enemy being the clownishly homicidal Joker, who has seized control of Gotham's underworld.. Tags: double life, dc comics, dual identity, chemical, crime fighter, fictional place, gotham city, superhero, super powers"} +{"id": "45054", "title": "There Be Dragons", "year": 2011, "duration_min": 112, "rating": 5.9, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "spanish civil war, priest, independent film, catholic, dying, saint, martyrdom", "tags_pipe": "|spanish civil war|priest|independent film|catholic|dying|saint|martyrdom|", "overview": "Arising out of the horror of the Spanish Civil War, a candidate for canonization is investigated by a journalist who discovers his own estranged father had a deep, dark and devastating connection to the saint's life.While researching the life of Josemaria Escriva, the controversial founder of Opus Dei, the young journalist Robert uncovers hidden stories of his estranged father Manolo, and is taken on a journey through the dark, terrible secrets of his family’s past.", "text_for_embedding": "There Be Dragons (2011). Genres: Drama. Arising out of the horror of the Spanish Civil War, a candidate for canonization is investigated by a journalist who discovers his own estranged father had a deep, dark and devastating connection to the saint's life.While researching the life of Josemaria Escriva, the controversial founder of Opus Dei, the young journalist Robert uncovers hidden stories of his estranged father Manolo, and is taken on a journey through the dark, terrible secrets of his family’s past.. Tags: spanish civil war, priest, independent film, catholic, dying, saint, martyrdom"} +{"id": "943", "title": "Lethal Weapon 3", "year": 1992, "duration_min": 118, "rating": 6.4, "genres": "Adventure, Action, Comedy, Thriller, Crime", "genres_pipe": "|Adventure|Action|Comedy|Thriller|Crime|", "keywords": "rookie cop, dog biscuit, shooting practice, sitting on a toilet, judo throw, police psychologist, buddy cop, firing range, aftercreditsstinger", "tags_pipe": "|rookie cop|dog biscuit|shooting practice|sitting on a toilet|judo throw|police psychologist|buddy cop|firing range|aftercreditsstinger|", "overview": "Archetypal buddy cops Riggs and Murtaugh are back for another round of high-stakes action, this time setting their collective sights on bringing down a former Los Angeles police lieutenant turned black market weapons dealer. Lorna Cole joins as the beautiful yet hardnosed internal affairs sergeant who catches Riggs's eye.", "text_for_embedding": "Lethal Weapon 3 (1992). Genres: Adventure, Action, Comedy, Thriller, Crime. Archetypal buddy cops Riggs and Murtaugh are back for another round of high-stakes action, this time setting their collective sights on bringing down a former Los Angeles police lieutenant turned black market weapons dealer. Lorna Cole joins as the beautiful yet hardnosed internal affairs sergeant who catches Riggs's eye.. Tags: rookie cop, dog biscuit, shooting practice, sitting on a toilet, judo throw, police psychologist, buddy cop, firing range, aftercreditsstinger"} +{"id": "22881", "title": "The Blind Side", "year": 2009, "duration_min": 129, "rating": 7.2, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "american football, adoption, education, private school, sport, american football player, duringcreditsstinger", "tags_pipe": "|american football|adoption|education|private school|sport|american football player|duringcreditsstinger|", "overview": "Oversized African-American, Michael Oher, the teen from across the tracks and a broken home, has nowhere to sleep at age 16. Taken in by an affluent Memphis couple, Michael embarks on a remarkable rise to play for the NFL.", "text_for_embedding": "The Blind Side (2009). Genres: Drama. Oversized African-American, Michael Oher, the teen from across the tracks and a broken home, has nowhere to sleep at age 16. Taken in by an affluent Memphis couple, Michael embarks on a remarkable rise to play for the NFL.. Tags: american football, adoption, education, private school, sport, american football player, duringcreditsstinger"} +{"id": "10054", "title": "Spy Kids", "year": 2001, "duration_min": 88, "rating": 5.5, "genres": "Action, Comedy, Family, Adventure", "genres_pipe": "|Action|Comedy|Family|Adventure|", "keywords": "double life, parents kids relationship, brother sister relationship, loss of parents, secret agent, robot", "tags_pipe": "|double life|parents kids relationship|brother sister relationship|loss of parents|secret agent|robot|", "overview": "Carmen and Juni think their parents are boring. Little do they know that in their day, Gregorio and Ingrid Cortez were the top secret agents from their respective countries. They gave up that life to raise their children. Now, the disappearances of several of their old colleagues forces the Cortez' return from retirement. What they didn't count on was Carmen and Juni joining the \"family business.\"", "text_for_embedding": "Spy Kids (2001). Genres: Action, Comedy, Family, Adventure. Carmen and Juni think their parents are boring. Little do they know that in their day, Gregorio and Ingrid Cortez were the top secret agents from their respective countries. They gave up that life to raise their children. Now, the disappearances of several of their old colleagues forces the Cortez' return from retirement. What they didn't count on was Carmen and Juni joining the \"family business.\". Tags: double life, parents kids relationship, brother sister relationship, loss of parents, secret agent, robot"} +{"id": "51540", "title": "Horrible Bosses", "year": 2011, "duration_min": 98, "rating": 6.5, "genres": "Comedy, Crime", "genres_pipe": "|Comedy|Crime|", "keywords": "conspiracy of murder, bad boss, employee, death of father, stakeout, duringcreditsstinger", "tags_pipe": "|conspiracy of murder|bad boss|employee|death of father|stakeout|duringcreditsstinger|", "overview": "For Nick, Kurt and Dale, the only thing that would make the daily grind more tolerable would be to grind their intolerable bosses into dust. Quitting is not an option, so, with the benefit of a few-too-many drinks and some dubious advice from a hustling ex-con, the three friends devise a convoluted and seemingly foolproof plan to rid themselves of their respective employers... permanently.", "text_for_embedding": "Horrible Bosses (2011). Genres: Comedy, Crime. For Nick, Kurt and Dale, the only thing that would make the daily grind more tolerable would be to grind their intolerable bosses into dust. Quitting is not an option, so, with the benefit of a few-too-many drinks and some dubious advice from a hustling ex-con, the three friends devise a convoluted and seemingly foolproof plan to rid themselves of their respective employers... permanently.. Tags: conspiracy of murder, bad boss, employee, death of father, stakeout, duringcreditsstinger"} +{"id": "44264", "title": "True Grit", "year": 2010, "duration_min": 110, "rating": 7.2, "genres": "Drama, Adventure, Western", "genres_pipe": "|Drama|Adventure|Western|", "keywords": "loss of father, father murder, texas ranger, alcoholism, betrayal", "tags_pipe": "|loss of father|father murder|texas ranger|alcoholism|betrayal|", "overview": "Following the murder of her father by hired hand Tom Chaney, 14-year-old farm girl Mattie Ross sets out to capture the killer. To aid her, she hires the toughest U.S. Marshal she can find, a man with \"true grit,\" Reuben J. \"Rooster\" Cogburn. Mattie insists on accompanying Cogburn, whose drinking, sloth, and generally reprobate character do not augment her faith in him. Against his wishes, she joins him in his trek into the Indian Nations in search of Chaney. They are joined by Texas Ranger LaBoeuf, who wants Chaney for his own purposes. The unlikely trio find danger and adventure on the journey, and each has his or her \"grit\" tested.", "text_for_embedding": "True Grit (2010). Genres: Drama, Adventure, Western. Following the murder of her father by hired hand Tom Chaney, 14-year-old farm girl Mattie Ross sets out to capture the killer. To aid her, she hires the toughest U.S. Marshal she can find, a man with \"true grit,\" Reuben J. \"Rooster\" Cogburn. Mattie insists on accompanying Cogburn, whose drinking, sloth, and generally reprobate character do not augment her faith in him. Against his wishes, she joins him in his trek into the Indian Nations in search of Chaney. They are joined by Texas Ranger LaBoeuf, who wants Chaney for his own purposes. The unlikely trio find danger and adventure on the journey, and each has his or her \"grit\" tested.. Tags: loss of father, father murder, texas ranger, alcoholism, betrayal"} +{"id": "350", "title": "The Devil Wears Prada", "year": 2006, "duration_min": 109, "rating": 7.0, "genres": "Comedy, Drama, Romance", "genres_pipe": "|Comedy|Drama|Romance|", "keywords": "paris, journalist, journalism, world of fasion, fashion journal, assistant, job entrant, job interview, editor-in-chief", "tags_pipe": "|paris|journalist|journalism|world of fasion|fashion journal|assistant|job entrant|job interview|editor-in-chief|", "overview": "The Devil Wears Prada is about a young journalist who moves to New York to work in the fashion industry. Her boss however is extremely demanding and cruel and won’t let her succeed if she doesn’t fit into the high class elegant look of their magazine when all she really wants to be a good journalist.", "text_for_embedding": "The Devil Wears Prada (2006). Genres: Comedy, Drama, Romance. The Devil Wears Prada is about a young journalist who moves to New York to work in the fashion industry. Her boss however is extremely demanding and cruel and won’t let her succeed if she doesn’t fit into the high class elegant look of their magazine when all she really wants to be a good journalist.. Tags: paris, journalist, journalism, world of fasion, fashion journal, assistant, job entrant, job interview, editor-in-chief"} +{"id": "152", "title": "Star Trek: The Motion Picture", "year": 1979, "duration_min": 132, "rating": 6.2, "genres": "Science Fiction, Adventure, Mystery", "genres_pipe": "|Science Fiction|Adventure|Mystery|", "keywords": "artificial intelligence, uss enterprise, starfleet, san francisco, self sacrifice, spacecraft, klingon, vulcan, space opera", "tags_pipe": "|artificial intelligence|uss enterprise|starfleet|san francisco|self sacrifice|spacecraft|klingon|vulcan|space opera|", "overview": "When a destructive space entity is spotted approaching Earth, Admiral Kirk resumes command of the Starship Enterprise in order to intercept, examine, and hopefully stop it.", "text_for_embedding": "Star Trek: The Motion Picture (1979). Genres: Science Fiction, Adventure, Mystery. When a destructive space entity is spotted approaching Earth, Admiral Kirk resumes command of the Starship Enterprise in order to intercept, examine, and hopefully stop it.. Tags: artificial intelligence, uss enterprise, starfleet, san francisco, self sacrifice, spacecraft, klingon, vulcan, space opera"} +{"id": "109431", "title": "Identity Thief", "year": 2013, "duration_min": 111, "rating": 5.6, "genres": "Comedy, Crime", "genres_pipe": "|Comedy|Crime|", "keywords": "", "tags_pipe": "", "overview": "When a mild-mannered businessman learns his identity has been stolen, he hits the road in an attempt to foil the thief -- a trip that puts him in the path of a deceptively harmless-looking woman.", "text_for_embedding": "Identity Thief (2013). Genres: Comedy, Crime. When a mild-mannered businessman learns his identity has been stolen, he hits the road in an attempt to foil the thief -- a trip that puts him in the path of a deceptively harmless-looking woman.. Tags: "} +{"id": "1598", "title": "Cape Fear", "year": 1991, "duration_min": 128, "rating": 7.0, "genres": "Crime, Thriller", "genres_pipe": "|Crime|Thriller|", "keywords": "prison, child abuse, rape, small town, daughter, police, revenge, lawyer, cigar smoking, fear, dog, rapist", "tags_pipe": "|prison|child abuse|rape|small town|daughter|police|revenge|lawyer|cigar smoking|fear|dog|rapist|", "overview": "Sam Bowden is a small-town corporate attorney. Max Cady is a tattooed, cigar-smoking, bible-quoting, psychotic rapist. What do they have in common? Fourteen years ago, Sam was a public defender assigned to Max Cady's rape trial, and he made a serious error: he hid a document from his illiterate client that could have gotten him acquitted. Now, the cagey, bibliophile Cady has been released, and he intends to teach Sam Bowden and his family a thing or two about loss.", "text_for_embedding": "Cape Fear (1991). Genres: Crime, Thriller. Sam Bowden is a small-town corporate attorney. Max Cady is a tattooed, cigar-smoking, bible-quoting, psychotic rapist. What do they have in common? Fourteen years ago, Sam was a public defender assigned to Max Cady's rape trial, and he made a serious error: he hid a document from his illiterate client that could have gotten him acquitted. Now, the cagey, bibliophile Cady has been released, and he intends to teach Sam Bowden and his family a thing or two about loss.. Tags: prison, child abuse, rape, small town, daughter, police, revenge, lawyer, cigar smoking, fear, dog, rapist"} +{"id": "8065", "title": "21", "year": 2008, "duration_min": 123, "rating": 6.5, "genres": "Drama, Crime", "genres_pipe": "|Drama|Crime|", "keywords": "gambling, card game, professor, harvard university, cohabitant, college, girlfriend, studies, dormitory, friendship, blackjack", "tags_pipe": "|gambling|card game|professor|harvard university|cohabitant|college|girlfriend|studies|dormitory|friendship|blackjack|", "overview": "Ben Campbell is a young, highly intelligent, student at M.I.T. in Boston who strives to succeed. Wanting a scholarship to transfer to Harvard School of Medicine with the desire to become a doctor, Ben learns that he cannot afford the $300,000 for the four to five years of schooling as he comes from a poor, working-class background. But one evening, Ben is introduced by his unorthodox math professor Micky Rosa into a small but secretive club of five. Students Jill, Choi, Kianna, and Fisher, who are being trained by Professor Rosa of the skill of card counting at blackjack.", "text_for_embedding": "21 (2008). Genres: Drama, Crime. Ben Campbell is a young, highly intelligent, student at M.I.T. in Boston who strives to succeed. Wanting a scholarship to transfer to Harvard School of Medicine with the desire to become a doctor, Ben learns that he cannot afford the $300,000 for the four to five years of schooling as he comes from a poor, working-class background. But one evening, Ben is introduced by his unorthodox math professor Micky Rosa into a small but secretive club of five. Students Jill, Choi, Kianna, and Fisher, who are being trained by Professor Rosa of the skill of card counting at blackjack.. Tags: gambling, card game, professor, harvard university, cohabitant, college, girlfriend, studies, dormitory, friendship, blackjack"} +{"id": "271718", "title": "Trainwreck", "year": 2015, "duration_min": 125, "rating": 5.9, "genres": "Comedy", "genres_pipe": "|Comedy|", "keywords": "alcohol, one-night stand", "tags_pipe": "|alcohol|one-night stand|", "overview": "Having thought that monogamy was never possible, a commitment-phobic career woman may have to face her fears when she meets a good guy.", "text_for_embedding": "Trainwreck (2015). Genres: Comedy. Having thought that monogamy was never possible, a commitment-phobic career woman may have to face her fears when she meets a good guy.. Tags: alcohol, one-night stand"} +{"id": "11638", "title": "Guess Who", "year": 2005, "duration_min": 105, "rating": 5.5, "genres": "Comedy, Romance", "genres_pipe": "|Comedy|Romance|", "keywords": "black people, jealousy, parents-in-law, trouble, fiancée", "tags_pipe": "|black people|jealousy|parents-in-law|trouble|fiancée|", "overview": "The fiancé of an African-American woman who's met with skepticism and suspicion from her father when she takes him home for the all-important introduction. As the wedding approaches, Dad must come to terms with his future son-in-law.", "text_for_embedding": "Guess Who (2005). Genres: Comedy, Romance. The fiancé of an African-American woman who's met with skepticism and suspicion from her father when she takes him home for the all-important introduction. As the wedding approaches, Dad must come to terms with his future son-in-law.. Tags: black people, jealousy, parents-in-law, trouble, fiancée"} +{"id": "409", "title": "The English Patient", "year": 1996, "duration_min": 162, "rating": 7.0, "genres": "Drama, Romance, War", "genres_pipe": "|Drama|Romance|War|", "keywords": "cairo, egypt, identity, amnesia, world war ii, burn, landmine, expedition, cave, sandstorm, royal geographic society, cave painting, prisoners of war, map, mine clearer", "tags_pipe": "|cairo|egypt|identity|amnesia|world war ii|burn|landmine|expedition|cave|sandstorm|royal geographic society|cave painting|prisoners of war|map|mine clearer|", "overview": "Beginning in the 1930s, \"The English Patient\" tells the story of Count Almásy who is a Hungarian map maker employed by the Royal Geographical Society to chart the vast expanses of the Sahara Desert along with several other prominent explorers. As World War II unfolds, Almásy enters into a world of love, betrayal, and politics that is later revealed in a series of flashbacks while Almásy is on his death bed after being horribly burned in a plane crash.", "text_for_embedding": "The English Patient (1996). Genres: Drama, Romance, War. Beginning in the 1930s, \"The English Patient\" tells the story of Count Almásy who is a Hungarian map maker employed by the Royal Geographical Society to chart the vast expanses of the Sahara Desert along with several other prominent explorers. As World War II unfolds, Almásy enters into a world of love, betrayal, and politics that is later revealed in a series of flashbacks while Almásy is on his death bed after being horribly burned in a plane crash.. Tags: cairo, egypt, identity, amnesia, world war ii, burn, landmine, expedition, cave, sandstorm, royal geographic society, cave painting, prisoners of war, map, mine clearer"} +{"id": "2118", "title": "L.A. Confidential", "year": 1997, "duration_min": 138, "rating": 7.7, "genres": "Crime, Drama, Mystery, Thriller", "genres_pipe": "|Crime|Drama|Mystery|Thriller|", "keywords": "corruption, detective, shotgun, morgue, f word, domestic violence, corpse, crime, district attorney, bandage, movie star, man with glasses, knife in thigh, good cop bad cop, switchblade", "tags_pipe": "|corruption|detective|shotgun|morgue|f word|domestic violence|corpse|crime|district attorney|bandage|movie star|man with glasses|knife in thigh|good cop bad cop|switchblade|", "overview": "Three detectives in the corrupt and brutal L.A. police force of the 1950s use differing methods to uncover a conspiracy behind the shotgun slayings of the patrons at an all-night diner.", "text_for_embedding": "L.A. Confidential (1997). Genres: Crime, Drama, Mystery, Thriller. Three detectives in the corrupt and brutal L.A. police force of the 1950s use differing methods to uncover a conspiracy behind the shotgun slayings of the patrons at an all-night diner.. Tags: corruption, detective, shotgun, morgue, f word, domestic violence, corpse, crime, district attorney, bandage, movie star, man with glasses, knife in thigh, good cop bad cop, switchblade"} +{"id": "11459", "title": "Sky High", "year": 2005, "duration_min": 100, "rating": 5.8, "genres": "Adventure, Comedy, Family", "genres_pipe": "|Adventure|Comedy|Family|", "keywords": "hero, loyalty, mockery, supernatural powers, high school, mission, super powers, teen superheroes", "tags_pipe": "|hero|loyalty|mockery|supernatural powers|high school|mission|super powers|teen superheroes|", "overview": "Set in a world where superheroes are commonly known and accepted, young Will Stronghold, the son of the Commander and Jetstream, tries to find a balance between being a normal teenager and an extraordinary being.", "text_for_embedding": "Sky High (2005). Genres: Adventure, Comedy, Family. Set in a world where superheroes are commonly known and accepted, young Will Stronghold, the son of the Commander and Jetstream, tries to find a balance between being a normal teenager and an extraordinary being.. Tags: hero, loyalty, mockery, supernatural powers, high school, mission, super powers, teen superheroes"} +{"id": "10806", "title": "In & Out", "year": 1997, "duration_min": 90, "rating": 6.3, "genres": "Comedy, Romance", "genres_pipe": "|Comedy|Romance|", "keywords": "gay, homophobia, coming out, lgbt", "tags_pipe": "|gay|homophobia|coming out|lgbt|", "overview": "A midwestern teacher questions his sexuality after a former student makes a comment about him at the Academy Awards.", "text_for_embedding": "In & Out (1997). Genres: Comedy, Romance. A midwestern teacher questions his sexuality after a former student makes a comment about him at the Academy Awards.. Tags: gay, homophobia, coming out, lgbt"} +{"id": "9348", "title": "Species", "year": 1995, "duration_min": 108, "rating": 5.5, "genres": "Science Fiction, Horror, Action", "genres_pipe": "|Science Fiction|Horror|Action|", "keywords": "telepathy, dna, paranoia, genetics, instinct, femme fatale, alien, on the run, decapitation, sexual attraction, los angeles, cocoon, genetic engineering, scientists, alien dna", "tags_pipe": "|telepathy|dna|paranoia|genetics|instinct|femme fatale|alien|on the run|decapitation|sexual attraction|los angeles|cocoon|genetic engineering|scientists|alien dna|", "overview": "In 1993, the Search for Extra Terrestrial Intelligence Project receives a transmission detailing an alien DNA structure, along with instructions on how to splice it with human DNA. The result is Sil, a sensual but deadly creature who can change from a beautiful woman to an armour-plated killing machine in the blink of an eye.", "text_for_embedding": "Species (1995). Genres: Science Fiction, Horror, Action. In 1993, the Search for Extra Terrestrial Intelligence Project receives a transmission detailing an alien DNA structure, along with instructions on how to splice it with human DNA. The result is Sil, a sensual but deadly creature who can change from a beautiful woman to an armour-plated killing machine in the blink of an eye.. Tags: telepathy, dna, paranoia, genetics, instinct, femme fatale, alien, on the run, decapitation, sexual attraction, los angeles, cocoon, genetic engineering, scientists, alien dna"} +{"id": "377", "title": "A Nightmare on Elm Street", "year": 1984, "duration_min": 91, "rating": 7.2, "genres": "Horror", "genres_pipe": "|Horror|", "keywords": "child murderer, sleep, nightmare, supernatural, slasher, teenager, trapped, alcoholic, boiler room, booby trap, disfigurement, medical test, dreams", "tags_pipe": "|child murderer|sleep|nightmare|supernatural|slasher|teenager|trapped|alcoholic|boiler room|booby trap|disfigurement|medical test|dreams|", "overview": "Teenagers in a small town are dropping like flies, apparently in the grip of mass hysteria causing their suicides. A cop's daughter, Nancy Thompson (Heather Langenkamp) traces the cause to child molester Fred Krueger (Robert Englund), who was burned alive by angry parents many years before. Krueger has now come back in the dreams of his killers' children, claiming their lives as his revenge. Nancy and her boyfriend, Glen (Johnny Depp), must devise a plan to lure the monster out of the realm of nightmares and into the real world...", "text_for_embedding": "A Nightmare on Elm Street (1984). Genres: Horror. Teenagers in a small town are dropping like flies, apparently in the grip of mass hysteria causing their suicides. A cop's daughter, Nancy Thompson (Heather Langenkamp) traces the cause to child molester Fred Krueger (Robert Englund), who was burned alive by angry parents many years before. Krueger has now come back in the dreams of his killers' children, claiming their lives as his revenge. Nancy and her boyfriend, Glen (Johnny Depp), must devise a plan to lure the monster out of the realm of nightmares and into the real world.... Tags: child murderer, sleep, nightmare, supernatural, slasher, teenager, trapped, alcoholic, boiler room, booby trap, disfigurement, medical test, dreams"} +{"id": "8843", "title": "The Cell", "year": 2000, "duration_min": 107, "rating": 6.0, "genres": "Horror, Science Fiction, Thriller", "genres_pipe": "|Horror|Science Fiction|Thriller|", "keywords": "drowning, therapist, virtual reality, serial killer, psychopathy, fbi agent", "tags_pipe": "|drowning|therapist|virtual reality|serial killer|psychopathy|fbi agent|", "overview": "A psychotherapist journeys inside a comatose serial killer in the hopes of saving his latest victim.", "text_for_embedding": "The Cell (2000). Genres: Horror, Science Fiction, Thriller. A psychotherapist journeys inside a comatose serial killer in the hopes of saving his latest victim.. Tags: drowning, therapist, virtual reality, serial killer, psychopathy, fbi agent"} +{"id": "9313", "title": "The Man in the Iron Mask", "year": 1998, "duration_min": 132, "rating": 6.3, "genres": "Action, Adventure, Drama", "genres_pipe": "|Action|Adventure|Drama|", "keywords": "france, swordplay, mask, musketeer", "tags_pipe": "|france|swordplay|mask|musketeer|", "overview": "Years have passed since the Three Musketeers, Aramis, Athos and Porthos, have fought together with their friend, D'Artagnan. But with the tyrannical King Louis using his power to wreak havoc in the kingdom while his twin brother, Philippe, remains imprisoned, the Musketeers reunite to abduct Louis and replace him with Philippe.", "text_for_embedding": "The Man in the Iron Mask (1998). Genres: Action, Adventure, Drama. Years have passed since the Three Musketeers, Aramis, Athos and Porthos, have fought together with their friend, D'Artagnan. But with the tyrannical King Louis using his power to wreak havoc in the kingdom while his twin brother, Philippe, remains imprisoned, the Musketeers reunite to abduct Louis and replace him with Philippe.. Tags: france, swordplay, mask, musketeer"} +{"id": "39486", "title": "Secretariat", "year": 2010, "duration_min": 123, "rating": 6.8, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "horse race, horseback riding, biography", "tags_pipe": "|horse race|horseback riding|biography|", "overview": "Housewife and mother Penny Chenery agrees to take over her ailing father's Virginia-based Meadow Stables, despite her lack of horse-racing knowledge. Against all odds, Chenery - with the help of veteran trainer Lucien Laurin - manages to navigate the male-dominated business, ultimately fostering the first Triple Crown winner in 25 years.", "text_for_embedding": "Secretariat (2010). Genres: Drama. Housewife and mother Penny Chenery agrees to take over her ailing father's Virginia-based Meadow Stables, despite her lack of horse-racing knowledge. Against all odds, Chenery - with the help of veteran trainer Lucien Laurin - manages to navigate the male-dominated business, ultimately fostering the first Triple Crown winner in 25 years.. Tags: horse race, horseback riding, biography"} +{"id": "1273", "title": "TMNT", "year": 2007, "duration_min": 90, "rating": 6.0, "genres": "Adventure, Animation, Comedy, Family", "genres_pipe": "|Adventure|Animation|Comedy|Family|", "keywords": "new york, brother brother relationship, journalist, martial arts, crime fighter, secret identity, mutant, turtle, love, based on comic book, reunion, brother against brother", "tags_pipe": "|new york|brother brother relationship|journalist|martial arts|crime fighter|secret identity|mutant|turtle|love|based on comic book|reunion|brother against brother|", "overview": "After the defeat of their old arch nemesis, The Shredder, the Turtles have grown apart as a family. Struggling to keep them together, their rat sensei, Splinter, becomes worried when strange things begin to brew in New York City.", "text_for_embedding": "TMNT (2007). Genres: Adventure, Animation, Comedy, Family. After the defeat of their old arch nemesis, The Shredder, the Turtles have grown apart as a family. Struggling to keep them together, their rat sensei, Splinter, becomes worried when strange things begin to brew in New York City.. Tags: new york, brother brother relationship, journalist, martial arts, crime fighter, secret identity, mutant, turtle, love, based on comic book, reunion, brother against brother"} +{"id": "13920", "title": "Radio", "year": 2003, "duration_min": 109, "rating": 6.8, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "biography, friendship, sport", "tags_pipe": "|biography|friendship|sport|", "overview": "High school football coach, Harold Jones befriends Radio, a mentally-challenged man who becomes a student at T.L. Hanna High School in Anderson, South Carolina. Their friendship extends over several decades, where Radio transforms from a shy, tormented man into an inspiration to his community.", "text_for_embedding": "Radio (2003). Genres: Drama. High school football coach, Harold Jones befriends Radio, a mentally-challenged man who becomes a student at T.L. Hanna High School in Anderson, South Carolina. Their friendship extends over several decades, where Radio transforms from a shy, tormented man into an inspiration to his community.. Tags: biography, friendship, sport"} +{"id": "50544", "title": "Friends with Benefits", "year": 2011, "duration_min": 109, "rating": 6.5, "genres": "Romance, Comedy", "genres_pipe": "|Romance|Comedy|", "keywords": "funeral, friends, hospital, aftercreditsstinger, duringcreditsstinger", "tags_pipe": "|funeral|friends|hospital|aftercreditsstinger|duringcreditsstinger|", "overview": "Jamie is a New York-based executive recruiter who entices Dylan, an art director from Los Angeles, to take a job at the New York office of GQ magazine. Finding that they have much in common, the two become fast friends. Feeling jaded by a number of broken romances, Dylan and Jamie decide that they are ready to quit looking for true love and focus on having fun. However, complications unfold when the two best pals add sex to their relationship.", "text_for_embedding": "Friends with Benefits (2011). Genres: Romance, Comedy. Jamie is a New York-based executive recruiter who entices Dylan, an art director from Los Angeles, to take a job at the New York office of GQ magazine. Finding that they have much in common, the two become fast friends. Feeling jaded by a number of broken romances, Dylan and Jamie decide that they are ready to quit looking for true love and focus on having fun. However, complications unfold when the two best pals add sex to their relationship.. Tags: funeral, friends, hospital, aftercreditsstinger, duringcreditsstinger"} +{"id": "325133", "title": "Neighbors 2: Sorority Rising", "year": 2016, "duration_min": 91, "rating": 5.6, "genres": "Comedy", "genres_pipe": "|Comedy|", "keywords": "alcohol, college, party, sequel, sorority, neighbor, family, fraternity, bathroom humor", "tags_pipe": "|alcohol|college|party|sequel|sorority|neighbor|family|fraternity|bathroom humor|", "overview": "A sorority moves in next door to the home of Mac and Kelly Radner who have a young child. The Radner's enlist their former nemeses from the fraternity to help battle the raucous sisters.", "text_for_embedding": "Neighbors 2: Sorority Rising (2016). Genres: Comedy. A sorority moves in next door to the home of Mac and Kelly Radner who have a young child. The Radner's enlist their former nemeses from the fraternity to help battle the raucous sisters.. Tags: alcohol, college, party, sequel, sorority, neighbor, family, fraternity, bathroom humor"} +{"id": "140823", "title": "Saving Mr. Banks", "year": 2013, "duration_min": 125, "rating": 7.3, "genres": "Comedy, Drama, History", "genres_pipe": "|Comedy|Drama|History|", "keywords": "biography, animation, writer, moviemaking", "tags_pipe": "|biography|animation|writer|moviemaking|", "overview": "Author P.L. Travers travels from London to Hollywood as Walt Disney Pictures adapts her novel Mary Poppins for the big screen.", "text_for_embedding": "Saving Mr. Banks (2013). Genres: Comedy, Drama, History. Author P.L. Travers travels from London to Hollywood as Walt Disney Pictures adapts her novel Mary Poppins for the big screen.. Tags: biography, animation, writer, moviemaking"} +{"id": "1883", "title": "Malcolm X", "year": 1992, "duration_min": 202, "rating": 7.2, "genres": "Drama, History", "genres_pipe": "|Drama|History|", "keywords": "islam, new york, prison, assassination, ku klux klan, muslim, police brutality, beach, koran, jail guard, prison cell, bible, biography, martin luther king, nation of islam", "tags_pipe": "|islam|new york|prison|assassination|ku klux klan|muslim|police brutality|beach|koran|jail guard|prison cell|bible|biography|martin luther king|nation of islam|", "overview": "The biopic of the controversial and influential Black Nationalist leader.", "text_for_embedding": "Malcolm X (1992). Genres: Drama, History. The biopic of the controversial and influential Black Nationalist leader.. Tags: islam, new york, prison, assassination, ku klux klan, muslim, police brutality, beach, koran, jail guard, prison cell, bible, biography, martin luther king, nation of islam"} +{"id": "89492", "title": "This Is 40", "year": 2012, "duration_min": 134, "rating": 5.6, "genres": "Comedy", "genres_pipe": "|Comedy|", "keywords": "wife husband relationship, children, family relationships, duringcreditsstinger", "tags_pipe": "|wife husband relationship|children|family relationships|duringcreditsstinger|", "overview": "Pete and Debbie are both about to turn 40, their kids hate each other, both of their businesses are failing, they're on the verge of losing their house, and their relationship is threatening to fall apart.", "text_for_embedding": "This Is 40 (2012). Genres: Comedy. Pete and Debbie are both about to turn 40, their kids hate each other, both of their businesses are failing, they're on the verge of losing their house, and their relationship is threatening to fall apart.. Tags: wife husband relationship, children, family relationships, duringcreditsstinger"} +{"id": "22949", "title": "Old Dogs", "year": 2009, "duration_min": 88, "rating": 5.2, "genres": "Comedy, Family", "genres_pipe": "|Comedy|Family|", "keywords": "japanese, camp, best friend, co-worker, kids, duringcreditsstinger, sports marketing firm", "tags_pipe": "|japanese|camp|best friend|co-worker|kids|duringcreditsstinger|sports marketing firm|", "overview": "Charlie and Dan have been best friends and business partners for thirty years; their Manhattan public relations firm is on the verge of a huge business deal with a Japanese company. With two weeks to sew up the contract, Dan gets a surprise: a woman he married on a drunken impulse nearly nine years before (annulled the next day) shows up to tell him he's the father of her twins, now seven, and she'll be in jail for 14 days for a political protest. Dan volunteers to keep the tykes, although he's up tight and clueless. With Charlie's help is there any way they can be dad and uncle, meet the kids' expectations, and still land the account?", "text_for_embedding": "Old Dogs (2009). Genres: Comedy, Family. Charlie and Dan have been best friends and business partners for thirty years; their Manhattan public relations firm is on the verge of a huge business deal with a Japanese company. With two weeks to sew up the contract, Dan gets a surprise: a woman he married on a drunken impulse nearly nine years before (annulled the next day) shows up to tell him he's the father of her twins, now seven, and she'll be in jail for 14 days for a political protest. Dan volunteers to keep the tykes, although he's up tight and clueless. With Charlie's help is there any way they can be dad and uncle, meet the kids' expectations, and still land the account?. Tags: japanese, camp, best friend, co-worker, kids, duringcreditsstinger, sports marketing firm"} +{"id": "12437", "title": "Underworld: Rise of the Lycans", "year": 2009, "duration_min": 92, "rating": 6.2, "genres": "Fantasy, Action, Adventure, Science Fiction, Thriller", "genres_pipe": "|Fantasy|Action|Adventure|Science Fiction|Thriller|", "keywords": "prison, underworld, slavery, castle, vampire, war, werewolf, battle, slave, dungeon, fang vamp", "tags_pipe": "|prison|underworld|slavery|castle|vampire|war|werewolf|battle|slave|dungeon|fang vamp|", "overview": "A prequel to the first two Underworld films, this fantasy explains the origins of the feud between the Vampires and the Lycans. Aided by his secret love, Sonja, courageous Lucian leads the Lycans in battle against brutal Vampire king Viktor. Determined to break the king's enslavement of his people, Lucian faces off against the Death Dealer army in a bid for Lycan independence.", "text_for_embedding": "Underworld: Rise of the Lycans (2009). Genres: Fantasy, Action, Adventure, Science Fiction, Thriller. A prequel to the first two Underworld films, this fantasy explains the origins of the feud between the Vampires and the Lycans. Aided by his secret love, Sonja, courageous Lucian leads the Lycans in battle against brutal Vampire king Viktor. Determined to break the king's enslavement of his people, Lucian faces off against the Death Dealer army in a bid for Lycan independence.. Tags: prison, underworld, slavery, castle, vampire, war, werewolf, battle, slave, dungeon, fang vamp"} +{"id": "2959", "title": "License to Wed", "year": 2007, "duration_min": 91, "rating": 5.2, "genres": "Comedy", "genres_pipe": "|Comedy|", "keywords": "new love, ten commandments, bride, bridegroom, marriage, relation, partnership, civil registry office, priest, wedding, church", "tags_pipe": "|new love|ten commandments|bride|bridegroom|marriage|relation|partnership|civil registry office|priest|wedding|church|", "overview": "Newly engaged, Ben and Sadie can't wait to start their life together and live happily ever after. However Sadie's family church's Reverend Frank won't bless their union until they pass his patented, \"foolproof\" marriage prep course consisting of outrageous classes, outlandish homework assignments and some outright invasion of privacy.", "text_for_embedding": "License to Wed (2007). Genres: Comedy. Newly engaged, Ben and Sadie can't wait to start their life together and live happily ever after. However Sadie's family church's Reverend Frank won't bless their union until they pass his patented, \"foolproof\" marriage prep course consisting of outrageous classes, outlandish homework assignments and some outright invasion of privacy.. Tags: new love, ten commandments, bride, bridegroom, marriage, relation, partnership, civil registry office, priest, wedding, church"} +{"id": "9957", "title": "The Benchwarmers", "year": 2006, "duration_min": 80, "rating": 5.2, "genres": "Comedy", "genres_pipe": "|Comedy|", "keywords": "baseball, pizza, sport, paperboy, team, homerun, video store", "tags_pipe": "|baseball|pizza|sport|paperboy|team|homerun|video store|", "overview": "A trio of guys try and make up for missed opportunities in childhood by forming a three-player baseball team to compete against standard little league squads.", "text_for_embedding": "The Benchwarmers (2006). Genres: Comedy. A trio of guys try and make up for missed opportunities in childhood by forming a three-player baseball team to compete against standard little league squads.. Tags: baseball, pizza, sport, paperboy, team, homerun, video store"} +{"id": "11648", "title": "Must Love Dogs", "year": 2005, "duration_min": 98, "rating": 5.8, "genres": "Comedy, Romance", "genres_pipe": "|Comedy|Romance|", "keywords": "sister sister relationship, make a match, single, children, teacher, dating, divorce, pet dog, computer dating, internet dating, wooden boats", "tags_pipe": "|sister sister relationship|make a match|single|children|teacher|dating|divorce|pet dog|computer dating|internet dating|wooden boats|", "overview": "Sarah Nolan is a newly divorced woman cautiously rediscovering romance with the enthusiastic but often misguided help of her well-meaning family. As she braves a series of hilarious disastrous mismatches and first dates, Sarah begins to trust her own instincts again and learns that, no matter what, it's never a good idea to give up on love.", "text_for_embedding": "Must Love Dogs (2005). Genres: Comedy, Romance. Sarah Nolan is a newly divorced woman cautiously rediscovering romance with the enthusiastic but often misguided help of her well-meaning family. As she braves a series of hilarious disastrous mismatches and first dates, Sarah begins to trust her own instincts again and learns that, no matter what, it's never a good idea to give up on love.. Tags: sister sister relationship, make a match, single, children, teacher, dating, divorce, pet dog, computer dating, internet dating, wooden boats"} +{"id": "9366", "title": "Donnie Brasco", "year": 1997, "duration_min": 127, "rating": 7.4, "genres": "Crime, Drama, Thriller", "genres_pipe": "|Crime|Drama|Thriller|", "keywords": "undercover, colombia, mafia, mobster, dirty cop, informant, stealing money, marriage counselor, shaving cream, playing cards", "tags_pipe": "|undercover|colombia|mafia|mobster|dirty cop|informant|stealing money|marriage counselor|shaving cream|playing cards|", "overview": "An FBI undercover agent infilitrates the mob and finds himself identifying more with the mafia life at the expense of his regular one.", "text_for_embedding": "Donnie Brasco (1997). Genres: Crime, Drama, Thriller. An FBI undercover agent infilitrates the mob and finds himself identifying more with the mafia life at the expense of his regular one.. Tags: undercover, colombia, mafia, mobster, dirty cop, informant, stealing money, marriage counselor, shaving cream, playing cards"} +{"id": "1576", "title": "Resident Evil", "year": 2002, "duration_min": 100, "rating": 6.4, "genres": "Horror, Action, Science Fiction", "genres_pipe": "|Horror|Action|Science Fiction|", "keywords": "undercover, mutant, dystopia, conspiracy, zombie, based on video game", "tags_pipe": "|undercover|mutant|dystopia|conspiracy|zombie|based on video game|", "overview": "When a virus leaks from a top-secret facility, turning all resident researchers into ravenous zombies and their lab animals into mutated hounds from hell, the government sends in an elite military task force to contain the outbreak. Alice and Rain are charged with leading the mission. But they only have three hours before the pathogen becomes airborne and infects the world.", "text_for_embedding": "Resident Evil (2002). Genres: Horror, Action, Science Fiction. When a virus leaks from a top-secret facility, turning all resident researchers into ravenous zombies and their lab animals into mutated hounds from hell, the government sends in an elite military task force to contain the outbreak. Alice and Rain are charged with leading the mission. But they only have three hours before the pathogen becomes airborne and infects the world.. Tags: undercover, mutant, dystopia, conspiracy, zombie, based on video game"} +{"id": "609", "title": "Poltergeist", "year": 1982, "duration_min": 114, "rating": 7.0, "genres": "Horror", "genres_pipe": "|Horror|", "keywords": "medium, ghostbuster, poltergeist, haunted house, dying and death, family relationships, good vs evil, paranormal phenomena, power of goodness, parent-child bond, haunted", "tags_pipe": "|medium|ghostbuster|poltergeist|haunted house|dying and death|family relationships|good vs evil|paranormal phenomena|power of goodness|parent-child bond|haunted|", "overview": "Steve Freeling lives with his wife, Diane, and their three children, Dana, Robbie, and Carol Anne, in Southern California where he sells houses for the company that built the neighborhood. It starts with just a few odd occurrences, such as broken dishes and furniture moving around by itself. However, when he realizes that something truly evil haunts his home, Steve calls in a team of parapsychologists led by Dr. Lesh to help before it's too late.", "text_for_embedding": "Poltergeist (1982). Genres: Horror. Steve Freeling lives with his wife, Diane, and their three children, Dana, Robbie, and Carol Anne, in Southern California where he sells houses for the company that built the neighborhood. It starts with just a few odd occurrences, such as broken dishes and furniture moving around by itself. However, when he realizes that something truly evil haunts his home, Steve calls in a team of parapsychologists led by Dr. Lesh to help before it's too late.. Tags: medium, ghostbuster, poltergeist, haunted house, dying and death, family relationships, good vs evil, paranormal phenomena, power of goodness, parent-child bond, haunted"} +{"id": "5516", "title": "The Ladykillers", "year": 2004, "duration_min": 104, "rating": 6.0, "genres": "Comedy, Crime, Thriller", "genres_pipe": "|Comedy|Crime|Thriller|", "keywords": "church choir, hiding place, garbage, duringcreditsstinger", "tags_pipe": "|church choir|hiding place|garbage|duringcreditsstinger|", "overview": "An eccentric, if not charming Southern professor and his crew pose as a band in order to rob a casino, all under the nose of his unsuspecting landlord – a sharp old woman.", "text_for_embedding": "The Ladykillers (2004). Genres: Comedy, Crime, Thriller. An eccentric, if not charming Southern professor and his crew pose as a band in order to rob a casino, all under the nose of his unsuspecting landlord – a sharp old woman.. Tags: church choir, hiding place, garbage, duringcreditsstinger"} +{"id": "13051", "title": "Max Payne", "year": 2008, "duration_min": 100, "rating": 5.2, "genres": "Action", "genres_pipe": "|Action|", "keywords": "assassin, based on video game, aftercreditsstinger", "tags_pipe": "|assassin|based on video game|aftercreditsstinger|", "overview": "Coming together to solve a series of murders in New York City are a DEA agent whose family was slain as part of a conspiracy and an assassin out to avenge her sister's death. The duo will be hunted by the police, the mob, and a ruthless corporation.", "text_for_embedding": "Max Payne (2008). Genres: Action. Coming together to solve a series of murders in New York City are a DEA agent whose family was slain as part of a conspiracy and an assassin out to avenge her sister's death. The duo will be hunted by the police, the mob, and a ruthless corporation.. Tags: assassin, based on video game, aftercreditsstinger"} +{"id": "49530", "title": "In Time", "year": 2011, "duration_min": 109, "rating": 6.7, "genres": "Action, Thriller, Science Fiction", "genres_pipe": "|Action|Thriller|Science Fiction|", "keywords": "bank, future, time, dystopia, race against time, immortality, on the run, class differences, cops and robbers , rich vs poor", "tags_pipe": "|bank|future|time|dystopia|race against time|immortality|on the run|class differences|cops and robbers |rich vs poor|", "overview": "In the not-too-distant future the aging gene has been switched off. To avoid overpopulation, time has become the currency and the way people pay for luxuries and necessities. The rich can live forever, while the rest try to negotiate for their immortality. A poor young man who comes into a fortune of time, though too late to help his mother from dying. He ends up on the run from a corrupt police force known as 'time keepers'.", "text_for_embedding": "In Time (2011). Genres: Action, Thriller, Science Fiction. In the not-too-distant future the aging gene has been switched off. To avoid overpopulation, time has become the currency and the way people pay for luxuries and necessities. The rich can live forever, while the rest try to negotiate for their immortality. A poor young man who comes into a fortune of time, though too late to help his mother from dying. He ends up on the run from a corrupt police force known as 'time keepers'.. Tags: bank, future, time, dystopia, race against time, immortality, on the run, class differences, cops and robbers , rich vs poor"} +{"id": "34806", "title": "The Back-Up Plan", "year": 2010, "duration_min": 106, "rating": 5.7, "genres": "Comedy, Romance", "genres_pipe": "|Comedy|Romance|", "keywords": "kiss, sperm bank, romantic comedy, male female relationship, doctor, pregnancy, single mother, artificial insemination, motherhood, duringcreditsstinger", "tags_pipe": "|kiss|sperm bank|romantic comedy|male female relationship|doctor|pregnancy|single mother|artificial insemination|motherhood|duringcreditsstinger|", "overview": "When Zoe tires of looking for Mr. Right, she decides to have a baby on her own. But on the day she's artificially inseminated, she meets Stan, who seems to be just who she's been searching for all her life. Now, Zoe has to figure out how to make her two life's dreams fit with each other.", "text_for_embedding": "The Back-Up Plan (2010). Genres: Comedy, Romance. When Zoe tires of looking for Mr. Right, she decides to have a baby on her own. But on the day she's artificially inseminated, she meets Stan, who seems to be just who she's been searching for all her life. Now, Zoe has to figure out how to make her two life's dreams fit with each other.. Tags: kiss, sperm bank, romantic comedy, male female relationship, doctor, pregnancy, single mother, artificial insemination, motherhood, duringcreditsstinger"} +{"id": "49022", "title": "Something Borrowed", "year": 2011, "duration_min": 112, "rating": 5.9, "genres": "Comedy, Drama, Romance", "genres_pipe": "|Comedy|Drama|Romance|", "keywords": "new york, alcohol, based on novel, secret, cheating, birthday, destroy, friends, crush, lawyer, best friend, wedding, pregnancy, relationship, celebration", "tags_pipe": "|new york|alcohol|based on novel|secret|cheating|birthday|destroy|friends|crush|lawyer|best friend|wedding|pregnancy|relationship|celebration|", "overview": "Though Rachel (Ginnifer Goodwin) is a successful attorney and a loyal, generous friend, she is still single. After one drink too many at her 30th-birthday celebration, Rachel unexpectedly falls into bed with her longtime crush, Dex -- who happens to be engaged to her best friend, Darcy (Kate Hudson). Ramifications of the liaison threaten to destroy the women's lifelong friendship, while Ethan (John Krasinski), Rachel's confidant, harbors a potentially explosive secret of his own.", "text_for_embedding": "Something Borrowed (2011). Genres: Comedy, Drama, Romance. Though Rachel (Ginnifer Goodwin) is a successful attorney and a loyal, generous friend, she is still single. After one drink too many at her 30th-birthday celebration, Rachel unexpectedly falls into bed with her longtime crush, Dex -- who happens to be engaged to her best friend, Darcy (Kate Hudson). Ramifications of the liaison threaten to destroy the women's lifelong friendship, while Ethan (John Krasinski), Rachel's confidant, harbors a potentially explosive secret of his own.. Tags: new york, alcohol, based on novel, secret, cheating, birthday, destroy, friends, crush, lawyer, best friend, wedding, pregnancy, relationship, celebration"} +{"id": "11469", "title": "Black Knight", "year": 2001, "duration_min": 95, "rating": 5.1, "genres": "Adventure, Comedy, Fantasy", "genres_pipe": "|Adventure|Comedy|Fantasy|", "keywords": "england, black people, medallion, castle, time travel, leap in time, knight, impostor, king, middle ages, imposture, medieval times", "tags_pipe": "|england|black people|medallion|castle|time travel|leap in time|knight|impostor|king|middle ages|imposture|medieval times|", "overview": "Martin Lawrence plays Jamal, an employee in Medieval World amusement park. After sustaining a blow to the head, he awakens to find himself in 14th century England.", "text_for_embedding": "Black Knight (2001). Genres: Adventure, Comedy, Fantasy. Martin Lawrence plays Jamal, an employee in Medieval World amusement park. After sustaining a blow to the head, he awakens to find himself in 14th century England.. Tags: england, black people, medallion, castle, time travel, leap in time, knight, impostor, king, middle ages, imposture, medieval times"} +{"id": "23479", "title": "The Bad News Bears", "year": 1976, "duration_min": 102, "rating": 6.9, "genres": "Comedy, Family", "genres_pipe": "|Comedy|Family|", "keywords": "baseball, sport, little league", "tags_pipe": "|baseball|sport|little league|", "overview": "An aging, down-on-his-luck ex-minor leaguer coaches a team of misfits in an ultra-competitive California little league.", "text_for_embedding": "The Bad News Bears (1976). Genres: Comedy, Family. An aging, down-on-his-luck ex-minor leaguer coaches a team of misfits in an ultra-competitive California little league.. Tags: baseball, sport, little league"} +{"id": "11667", "title": "Street Fighter", "year": 1994, "duration_min": 102, "rating": 4.1, "genres": "Action, Adventure, Thriller", "genres_pipe": "|Action|Adventure|Thriller|", "keywords": "dictator, martial arts, hostage, liberation of hostage, hostage-taking, street fighter, united nations, based on video game", "tags_pipe": "|dictator|martial arts|hostage|liberation of hostage|hostage-taking|street fighter|united nations|based on video game|", "overview": "Col. Guile and various other martial arts heroes fight against the tyranny of Dictator M. Bison and his cohorts.", "text_for_embedding": "Street Fighter (1994). Genres: Action, Adventure, Thriller. Col. Guile and various other martial arts heroes fight against the tyranny of Dictator M. Bison and his cohorts.. Tags: dictator, martial arts, hostage, liberation of hostage, hostage-taking, street fighter, united nations, based on video game"} +{"id": "423", "title": "The Pianist", "year": 2002, "duration_min": 150, "rating": 8.0, "genres": "Drama, War", "genres_pipe": "|Drama|War|", "keywords": "individual, resistance, radio station, war crimes, loss of family, child murderer, hunger, world war ii, prisoners of war, homeland, deportation, hiding place, ghetto riot, jew persecution, liberation", "tags_pipe": "|individual|resistance|radio station|war crimes|loss of family|child murderer|hunger|world war ii|prisoners of war|homeland|deportation|hiding place|ghetto riot|jew persecution|liberation|", "overview": "The Pianist is a film adapted from the biography of Wladyslaw Szpilman. A Jewish-Polish pianist who during the second world war lived and hid miraculously in Warsaw after having gone through a terrible tragedy. A film from Roman Polanski.", "text_for_embedding": "The Pianist (2002). Genres: Drama, War. The Pianist is a film adapted from the biography of Wladyslaw Szpilman. A Jewish-Polish pianist who during the second world war lived and hid miraculously in Warsaw after having gone through a terrible tragedy. A film from Roman Polanski.. Tags: individual, resistance, radio station, war crimes, loss of family, child murderer, hunger, world war ii, prisoners of war, homeland, deportation, hiding place, ghetto riot, jew persecution, liberation"} +{"id": "2447", "title": "The Nativity Story", "year": 2006, "duration_min": 101, "rating": 6.4, "genres": "Drama, History", "genres_pipe": "|Drama|History|", "keywords": "jesus christ, bible, three kings, archangel gabriel, christian, blessed hope, wise men, woman director", "tags_pipe": "|jesus christ|bible|three kings|archangel gabriel|christian|blessed hope|wise men|woman director|", "overview": "Mary and Joseph make the hard journey to Bethlehem for a blessed event in this retelling of the Nativity story. This meticulously researched and visually lush adaptation of the biblical tale follows the pair on their arduous path to their arrival in a small village, where they find shelter in a quiet manger and Jesus is born.", "text_for_embedding": "The Nativity Story (2006). Genres: Drama, History. Mary and Joseph make the hard journey to Bethlehem for a blessed event in this retelling of the Nativity story. This meticulously researched and visually lush adaptation of the biblical tale follows the pair on their arduous path to their arrival in a small village, where they find shelter in a quiet manger and Jesus is born.. Tags: jesus christ, bible, three kings, archangel gabriel, christian, blessed hope, wise men, woman director"} +{"id": "10066", "title": "House of Wax", "year": 2005, "duration_min": 113, "rating": 5.5, "genres": "Horror", "genres_pipe": "|Horror|", "keywords": "american football, traffic jam, remake, murder, suspense, wax museum, teenager, group of friends, ghost town, wax", "tags_pipe": "|american football|traffic jam|remake|murder|suspense|wax museum|teenager|group of friends|ghost town|wax|", "overview": "A group of unwitting teens are stranded near a strange wax museum and soon must fight to survive and keep from becoming the next exhibit.", "text_for_embedding": "House of Wax (2005). Genres: Horror. A group of unwitting teens are stranded near a strange wax museum and soon must fight to survive and keep from becoming the next exhibit.. Tags: american football, traffic jam, remake, murder, suspense, wax museum, teenager, group of friends, ghost town, wax"} +{"id": "2288", "title": "Closer", "year": 2004, "duration_min": 104, "rating": 6.7, "genres": "Drama, Romance", "genres_pipe": "|Drama|Romance|", "keywords": "father son relationship, love at first sight, photographer, loss of lover, cheating, lie, forbidden love, tea, lover, kiss, photography, secret love, times square, liar, sexchat", "tags_pipe": "|father son relationship|love at first sight|photographer|loss of lover|cheating|lie|forbidden love|tea|lover|kiss|photography|secret love|times square|liar|sexchat|", "overview": "A witty, romantic, and very dangerous love story about chance meetings, instant attractions, and casual betrayals. Two couples disintegrate when they begin destructive adulterous affairs with each other.", "text_for_embedding": "Closer (2004). Genres: Drama, Romance. A witty, romantic, and very dangerous love story about chance meetings, instant attractions, and casual betrayals. Two couples disintegrate when they begin destructive adulterous affairs with each other.. Tags: father son relationship, love at first sight, photographer, loss of lover, cheating, lie, forbidden love, tea, lover, kiss, photography, secret love, times square, liar, sexchat"} +{"id": "88794", "title": "J. Edgar", "year": 2011, "duration_min": 137, "rating": 6.0, "genres": "Drama, Crime, History", "genres_pipe": "|Drama|Crime|History|", "keywords": "biography, historical figure, fbi director", "tags_pipe": "|biography|historical figure|fbi director|", "overview": "As the face of law enforcement in America for almost 50 years, J. Edgar Hoover was feared and admired, reviled and revered. But behind closed doors, he held secrets that would have destroyed his image, his career and his life.", "text_for_embedding": "J. Edgar (2011). Genres: Drama, Crime, History. As the face of law enforcement in America for almost 50 years, J. Edgar Hoover was feared and admired, reviled and revered. But behind closed doors, he held secrets that would have destroyed his image, his career and his life.. Tags: biography, historical figure, fbi director"} +{"id": "13515", "title": "Mirrors", "year": 2008, "duration_min": 110, "rating": 6.0, "genres": "Horror, Mystery, Thriller", "genres_pipe": "|Horror|Mystery|Thriller|", "keywords": "schizophrenia, night watchman, subway, hallucination, alcoholism, ex-cop, possession, morgue, rural setting, medication, demon, psychiatrist, mirror, estranged wife, nypd", "tags_pipe": "|schizophrenia|night watchman|subway|hallucination|alcoholism|ex-cop|possession|morgue|rural setting|medication|demon|psychiatrist|mirror|estranged wife|nypd|", "overview": "An ex-cop and his family are the target of an evil force that is using mirrors as a gateway into their home.", "text_for_embedding": "Mirrors (2008). Genres: Horror, Mystery, Thriller. An ex-cop and his family are the target of an evil force that is using mirrors as a gateway into their home.. Tags: schizophrenia, night watchman, subway, hallucination, alcoholism, ex-cop, possession, morgue, rural setting, medication, demon, psychiatrist, mirror, estranged wife, nypd"} +{"id": "11979", "title": "Queen of the Damned", "year": 2002, "duration_min": 101, "rating": 5.4, "genres": "Drama, Fantasy, Horror", "genres_pipe": "|Drama|Fantasy|Horror|", "keywords": "queen, rock star, secret society, vampire, light, bite, music, spontaneous combustion, fatal attraction, fang vamp", "tags_pipe": "|queen|rock star|secret society|vampire|light|bite|music|spontaneous combustion|fatal attraction|fang vamp|", "overview": "Lestat de Lioncourt is awakened from his slumber. Bored with his existence he has now become this generations new Rock God. While in the course of time, another has arisen, Akasha, the Queen of the Vampires and the Dammed. He want's immortal fame, his fellow vampires want him eternally dead for his betrayal, and the Queen want's him for her King. Who will be the first to reach him? Who shall win?", "text_for_embedding": "Queen of the Damned (2002). Genres: Drama, Fantasy, Horror. Lestat de Lioncourt is awakened from his slumber. Bored with his existence he has now become this generations new Rock God. While in the course of time, another has arisen, Akasha, the Queen of the Vampires and the Dammed. He want's immortal fame, his fellow vampires want him eternally dead for his betrayal, and the Queen want's him for her King. Who will be the first to reach him? Who shall win?. Tags: queen, rock star, secret society, vampire, light, bite, music, spontaneous combustion, fatal attraction, fang vamp"} +{"id": "169", "title": "Predator 2", "year": 1990, "duration_min": 108, "rating": 5.9, "genres": "Science Fiction, Action, Thriller", "genres_pipe": "|Science Fiction|Action|Thriller|", "keywords": "predator, war on drugs, extraterrestrial technology, los angeles, invisible", "tags_pipe": "|predator|war on drugs|extraterrestrial technology|los angeles|invisible|", "overview": "Ten years after a band of mercenaries first battled a vicious alien, the invisible creature from another world has returned to Earth -- and this time, it's drawn to the gang-ruled and ravaged city of Los Angeles. When it starts murdering drug dealers, detective-lieutenant Mike Harrigan and his police force set out to capture the creature, ignoring warnings from a mysterious government agent to stay away.", "text_for_embedding": "Predator 2 (1990). Genres: Science Fiction, Action, Thriller. Ten years after a band of mercenaries first battled a vicious alien, the invisible creature from another world has returned to Earth -- and this time, it's drawn to the gang-ruled and ravaged city of Los Angeles. When it starts murdering drug dealers, detective-lieutenant Mike Harrigan and his police force set out to capture the creature, ignoring warnings from a mysterious government agent to stay away.. Tags: predator, war on drugs, extraterrestrial technology, los angeles, invisible"} +{"id": "8090", "title": "Untraceable", "year": 2008, "duration_min": 101, "rating": 5.9, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "suicide, fbi, kidnapping, snuff, sadism, investigation, police, psychopath, webcam, website, murder, serial killer, internet, torture, violence", "tags_pipe": "|suicide|fbi|kidnapping|snuff|sadism|investigation|police|psychopath|webcam|website|murder|serial killer|internet|torture|violence|", "overview": "Special Agent Jennifer Marsh (Diane Lane) works in an elite division of the FBI dedicated to fighting cybercrime. She thinks she has seen it all, until a particularly sadistic criminal arises on the Internet. This tech-savvy killer posts live feeds of his crimes on his website; the more hits the site gets, the faster the victim dies. Marsh and her team must find the elusive killer before time runs out.", "text_for_embedding": "Untraceable (2008). Genres: Drama. Special Agent Jennifer Marsh (Diane Lane) works in an elite division of the FBI dedicated to fighting cybercrime. She thinks she has seen it all, until a particularly sadistic criminal arises on the Internet. This tech-savvy killer posts live feeds of his crimes on his website; the more hits the site gets, the faster the victim dies. Marsh and her team must find the elusive killer before time runs out.. Tags: suicide, fbi, kidnapping, snuff, sadism, investigation, police, psychopath, webcam, website, murder, serial killer, internet, torture, violence"} +{"id": "11622", "title": "Blast from the Past", "year": 1999, "duration_min": 112, "rating": 6.3, "genres": "Comedy, Romance", "genres_pipe": "|Comedy|Romance|", "keywords": "isolation, atomic bomb, bunker, shelter", "tags_pipe": "|isolation|atomic bomb|bunker|shelter|", "overview": "Following a bomb scare in the 1960s that locked the Webers into their bomb shelter for 35 years, Adam now ventures forth into Los Angeles to obtain food and supplies for his family, and a non-mutant wife for himself.", "text_for_embedding": "Blast from the Past (1999). Genres: Comedy, Romance. Following a bomb scare in the 1960s that locked the Webers into their bomb shelter for 35 years, Adam now ventures forth into Los Angeles to obtain food and supplies for his family, and a non-mutant wife for himself.. Tags: isolation, atomic bomb, bunker, shelter"} +{"id": "3604", "title": "Flash Gordon", "year": 1980, "duration_min": 111, "rating": 6.1, "genres": "Science Fiction", "genres_pipe": "|Science Fiction|", "keywords": "emperor, solar eclipse, prince, tv duel, fighter, deception, hood, scientist, sword and planet", "tags_pipe": "|emperor|solar eclipse|prince|tv duel|fighter|deception|hood|scientist|sword and planet|", "overview": "A football player and his friends travel to the planet Mongo and find themselves fighting the tyrant, Ming the Merciless, to save Earth.", "text_for_embedding": "Flash Gordon (1980). Genres: Science Fiction. A football player and his friends travel to the planet Mongo and find themselves fighting the tyrant, Ming the Merciless, to save Earth.. Tags: emperor, solar eclipse, prince, tv duel, fighter, deception, hood, scientist, sword and planet"} +{"id": "9541", "title": "Jersey Girl", "year": 2004, "duration_min": 102, "rating": 5.8, "genres": "Comedy, Romance", "genres_pipe": "|Comedy|Romance|", "keywords": "yuppie, daughter, loss of wife", "tags_pipe": "|yuppie|daughter|loss of wife|", "overview": "Ollie Trinke is a young, suave music publicist who seems to have it all, with a new wife and a baby on the way. But life deals him a bum hand when he's suddenly faced with single fatherhood, a defunct career and having to move in with his father. To bounce back, it takes a new love and the courage instilled in him by his daughter.", "text_for_embedding": "Jersey Girl (2004). Genres: Comedy, Romance. Ollie Trinke is a young, suave music publicist who seems to have it all, with a new wife and a baby on the way. But life deals him a bum hand when he's suddenly faced with single fatherhood, a defunct career and having to move in with his father. To bounce back, it takes a new love and the courage instilled in him by his daughter.. Tags: yuppie, daughter, loss of wife"} +{"id": "94348", "title": "Alex Cross", "year": 2012, "duration_min": 101, "rating": 5.1, "genres": "Action, Thriller, Crime, Mystery", "genres_pipe": "|Action|Thriller|Crime|Mystery|", "keywords": "ex military", "tags_pipe": "|ex military|", "overview": "After Washington DC detective Alex Cross is told that a family member has been murdered, he vows to track down the killer. He soon discovers that she was not his first victim and that things are not what they seem.", "text_for_embedding": "Alex Cross (2012). Genres: Action, Thriller, Crime, Mystery. After Washington DC detective Alex Cross is told that a family member has been murdered, he vows to track down the killer. He soon discovers that she was not his first victim and that things are not what they seem.. Tags: ex military"} +{"id": "8197", "title": "Midnight in the Garden of Good and Evil", "year": 1997, "duration_min": 155, "rating": 6.3, "genres": "Crime, Drama, Mystery, Thriller", "genres_pipe": "|Crime|Drama|Mystery|Thriller|", "keywords": "drag queen, voodoo, savannah", "tags_pipe": "|drag queen|voodoo|savannah|", "overview": "A visiting city reporter's assignment suddenly revolves around the murder trial of a local millionaire, whom he befriends.", "text_for_embedding": "Midnight in the Garden of Good and Evil (1997). Genres: Crime, Drama, Mystery, Thriller. A visiting city reporter's assignment suddenly revolves around the murder trial of a local millionaire, whom he befriends.. Tags: drag queen, voodoo, savannah"} +{"id": "336004", "title": "Heist", "year": 2015, "duration_min": 93, "rating": 5.6, "genres": "Crime, Action, Thriller", "genres_pipe": "|Crime|Action|Thriller|", "keywords": "casino, robbery, bus hijacking, heist", "tags_pipe": "|casino|robbery|bus hijacking|heist|", "overview": "A father is without the means to pay for his daughter's medical treatment. As a last resort, he partners with a greedy co-worker to rob a casino. When things go awry they're forced to hijack a city bus.", "text_for_embedding": "Heist (2015). Genres: Crime, Action, Thriller. A father is without the means to pay for his daughter's medical treatment. As a last resort, he partners with a greedy co-worker to rob a casino. When things go awry they're forced to hijack a city bus.. Tags: casino, robbery, bus hijacking, heist"} +{"id": "35019", "title": "Nanny McPhee and the Big Bang", "year": 2010, "duration_min": 109, "rating": 6.0, "genres": "Comedy, Fantasy", "genres_pipe": "|Comedy|Fantasy|", "keywords": "nanny, fantasy, children, aftercreditsstinger, duringcreditsstinger, woman director", "tags_pipe": "|nanny|fantasy|children|aftercreditsstinger|duringcreditsstinger|woman director|", "overview": "Nanny McPhee appears at the door of a harried young mother, Mrs. Isabel Green, who is trying to run the family farm while her husband is away at war. But once she’s arrived, Nanny McPhee discovers that the children are fighting a war of their own against two spoiled city cousins who have just moved in. Relying on everything from a flying motorcycle and a statue that comes to life to a tree-climbing piglet and a baby elephant, Nanny uses her magic to teach her mischievous charges five new lessons.", "text_for_embedding": "Nanny McPhee and the Big Bang (2010). Genres: Comedy, Fantasy. Nanny McPhee appears at the door of a harried young mother, Mrs. Isabel Green, who is trying to run the family farm while her husband is away at war. But once she’s arrived, Nanny McPhee discovers that the children are fighting a war of their own against two spoiled city cousins who have just moved in. Relying on everything from a flying motorcycle and a statue that comes to life to a tree-climbing piglet and a baby elephant, Nanny uses her magic to teach her mischievous charges five new lessons.. Tags: nanny, fantasy, children, aftercreditsstinger, duringcreditsstinger, woman director"} +{"id": "10410", "title": "Hoffa", "year": 1992, "duration_min": 140, "rating": 6.1, "genres": "Crime, History", "genres_pipe": "|Crime|History|", "keywords": "policy and organisations, power, trade union, gangster", "tags_pipe": "|policy and organisations|power|trade union|gangster|", "overview": "Jack Nicholson's portrait of union leader James R. Hoffa, as seen through the eyes of his friend, Bobby Ciaro (Danny DeVito). The film follows Hoffa through his countless battles with the RTA and President Roosevelt all the way to a conclusion that negates the theory that he disappeared in 1975.", "text_for_embedding": "Hoffa (1992). Genres: Crime, History. Jack Nicholson's portrait of union leader James R. Hoffa, as seen through the eyes of his friend, Bobby Ciaro (Danny DeVito). The film follows Hoffa through his countless battles with the RTA and President Roosevelt all the way to a conclusion that negates the theory that he disappeared in 1975.. Tags: policy and organisations, power, trade union, gangster"} +{"id": "8836", "title": "The X Files: I Want to Believe", "year": 2008, "duration_min": 104, "rating": 5.5, "genres": "Drama, Mystery, Science Fiction, Thriller", "genres_pipe": "|Drama|Mystery|Science Fiction|Thriller|", "keywords": "extraterrestrial technology, fbi, alien, fbi agent, duringcreditsstinger", "tags_pipe": "|extraterrestrial technology|fbi|alien|fbi agent|duringcreditsstinger|", "overview": "Six years after the events of The X-Files series finale, former FBI agent Doctor Dana Scully is now a staff physician at Our Lady of Sorrows, a Catholic hospital, and treating a boy named Christian who has Sandhoff disease, a terminal brain condition. FBI agent Drummy arrives to ask Scully’s help in locating Fox Mulder, the fugitive former head of the X-Files division, and says they will call off its manhunt for him if he will help investigate the disappearances of several women, including young FBI agent Monica Banan. Mulder and Scully are called back to duty by the FBI when a former priest claims to be receiving psychic visions pertaining to a kidnapped agent.", "text_for_embedding": "The X Files: I Want to Believe (2008). Genres: Drama, Mystery, Science Fiction, Thriller. Six years after the events of The X-Files series finale, former FBI agent Doctor Dana Scully is now a staff physician at Our Lady of Sorrows, a Catholic hospital, and treating a boy named Christian who has Sandhoff disease, a terminal brain condition. FBI agent Drummy arrives to ask Scully’s help in locating Fox Mulder, the fugitive former head of the X-Files division, and says they will call off its manhunt for him if he will help investigate the disappearances of several women, including young FBI agent Monica Banan. Mulder and Scully are called back to duty by the FBI when a former priest claims to be receiving psychic visions pertaining to a kidnapped agent.. Tags: extraterrestrial technology, fbi, alien, fbi agent, duringcreditsstinger"} +{"id": "14442", "title": "Ella Enchanted", "year": 2004, "duration_min": 96, "rating": 5.9, "genres": "Family, Fantasy, Comedy", "genres_pipe": "|Family|Fantasy|Comedy|", "keywords": "elves, based on novel, magic, fairy, prince, fairy tale, spell, fantasy world, giant, ogre, obedience, fairy godmother, elf", "tags_pipe": "|elves|based on novel|magic|fairy|prince|fairy tale|spell|fantasy world|giant|ogre|obedience|fairy godmother|elf|", "overview": "Ella lives in a magical world in which each child, at the moment of their birth, is given a virtuous \"gift\" from a fairy godmother. Ella's so-called gift, however, is obedience. This birthright proves itself to be quite the curse once Ella finds herself in the hands of several unscrupulous characters whom she quite literally cannot disobey. Determined to gain control of her life and decisions, Ella sets off on a journey to find her fairy godmother who she hopes will lift the curse. The path, however, isn't easy -- Ella must outwit a slew of unpleasant obstacles including ogres, giants, wicked stepsisters, elves and Prince Charmont's evil uncle, who wants to take over the crown and rule the kingdom.", "text_for_embedding": "Ella Enchanted (2004). Genres: Family, Fantasy, Comedy. Ella lives in a magical world in which each child, at the moment of their birth, is given a virtuous \"gift\" from a fairy godmother. Ella's so-called gift, however, is obedience. This birthright proves itself to be quite the curse once Ella finds herself in the hands of several unscrupulous characters whom she quite literally cannot disobey. Determined to gain control of her life and decisions, Ella sets off on a journey to find her fairy godmother who she hopes will lift the curse. The path, however, isn't easy -- Ella must outwit a slew of unpleasant obstacles including ogres, giants, wicked stepsisters, elves and Prince Charmont's evil uncle, who wants to take over the crown and rule the kingdom.. Tags: elves, based on novel, magic, fairy, prince, fairy tale, spell, fantasy world, giant, ogre, obedience, fairy godmother, elf"} +{"id": "321741", "title": "Concussion", "year": 2015, "duration_min": 123, "rating": 7.0, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "american football, concussion, biography, professional sports, brain damage, sports injury, nfl, medical drama, human brain", "tags_pipe": "|american football|concussion|biography|professional sports|brain damage|sports injury|nfl|medical drama|human brain|", "overview": "A dramatic thriller based on the incredible true David vs. Goliath story of American immigrant Dr. Bennet Omalu, the brilliant forensic neuropathologist who made the first discovery of CTE, a football-related brain trauma, in a pro player and fought for the truth to be known. Omalu's emotional quest puts him at dangerous odds with one of the most powerful institutions in the world.", "text_for_embedding": "Concussion (2015). Genres: Drama. A dramatic thriller based on the incredible true David vs. Goliath story of American immigrant Dr. Bennet Omalu, the brilliant forensic neuropathologist who made the first discovery of CTE, a football-related brain trauma, in a pro player and fought for the truth to be known. Omalu's emotional quest puts him at dangerous odds with one of the most powerful institutions in the world.. Tags: american football, concussion, biography, professional sports, brain damage, sports injury, nfl, medical drama, human brain"} +{"id": "59965", "title": "Abduction", "year": 2011, "duration_min": 106, "rating": 5.6, "genres": "Thriller, Action, Mystery", "genres_pipe": "|Thriller|Action|Mystery|", "keywords": "cia, airport, hero, fight, kidnapping, time bomb, training, webcam, website, party, on the run, hospital, train, teenager", "tags_pipe": "|cia|airport|hero|fight|kidnapping|time bomb|training|webcam|website|party|on the run|hospital|train|teenager|", "overview": "A young man sets out to uncover the truth about his life after finding his baby photo on a missing persons website.", "text_for_embedding": "Abduction (2011). Genres: Thriller, Action, Mystery. A young man sets out to uncover the truth about his life after finding his baby photo on a missing persons website.. Tags: cia, airport, hero, fight, kidnapping, time bomb, training, webcam, website, party, on the run, hospital, train, teenager"} +{"id": "14175", "title": "Valiant", "year": 2005, "duration_min": 76, "rating": 5.2, "genres": "Animation, Family, Adventure", "genres_pipe": "|Animation|Family|Adventure|", "keywords": "animation, animal, 3d", "tags_pipe": "|animation|animal|3d|", "overview": "The animated comedy tells the story of a lowly wood pigeon named Valiant, who overcomes his small size to become a hero in Great Britain's Royal Air Force Homing Pigeon Service during World War II. The RHPS advanced the Allied cause by flying vital messages about enemy movements across the English Channel, whilst evading brutal attacks by the enemy's Falcon Brigade.", "text_for_embedding": "Valiant (2005). Genres: Animation, Family, Adventure. The animated comedy tells the story of a lowly wood pigeon named Valiant, who overcomes his small size to become a hero in Great Britain's Royal Air Force Homing Pigeon Service during World War II. The RHPS advanced the Allied cause by flying vital messages about enemy movements across the English Channel, whilst evading brutal attacks by the enemy's Falcon Brigade.. Tags: animation, animal, 3d"} +{"id": "11004", "title": "Wonder Boys", "year": 2000, "duration_min": 111, "rating": 6.9, "genres": "Comedy, Drama", "genres_pipe": "|Comedy|Drama|", "keywords": "adultery, robbery, based on novel, professor, college, police, party, liar, marijuana, writer, university, drug, dog", "tags_pipe": "|adultery|robbery|based on novel|professor|college|police|party|liar|marijuana|writer|university|drug|dog|", "overview": "Grady (Michael Douglas) is a 50-ish English professor who hasn't had a thing published in years -- not since he wrote his award winning \"Great American Novel\" 7 years ago. This weekend proves even worse than he could imagine as he finds himself reeling from one misadventure to another in the company of a new wonder boy author.", "text_for_embedding": "Wonder Boys (2000). Genres: Comedy, Drama. Grady (Michael Douglas) is a 50-ish English professor who hasn't had a thing published in years -- not since he wrote his award winning \"Great American Novel\" 7 years ago. This weekend proves even worse than he could imagine as he finds himself reeling from one misadventure to another in the company of a new wonder boy author.. Tags: adultery, robbery, based on novel, professor, college, police, party, liar, marijuana, writer, university, drug, dog"} +{"id": "11918", "title": "Superhero Movie", "year": 2008, "duration_min": 85, "rating": 4.9, "genres": "Action, Comedy, Science Fiction", "genres_pipe": "|Action|Comedy|Science Fiction|", "keywords": "anti hero, high school, dragonfly, superhero, radioactive, duringcreditsstinger", "tags_pipe": "|anti hero|high school|dragonfly|superhero|radioactive|duringcreditsstinger|", "overview": "The team behind Scary Movie takes on the comic book genre in this tale of Rick Riker, a nerdy teen imbued with superpowers by a radioactive dragonfly. And because every hero needs a nemesis, enter Lou Landers, aka the villainously goofy Hourglass.", "text_for_embedding": "Superhero Movie (2008). Genres: Action, Comedy, Science Fiction. The team behind Scary Movie takes on the comic book genre in this tale of Rick Riker, a nerdy teen imbued with superpowers by a radioactive dragonfly. And because every hero needs a nemesis, enter Lou Landers, aka the villainously goofy Hourglass.. Tags: anti hero, high school, dragonfly, superhero, radioactive, duringcreditsstinger"} +{"id": "98357", "title": "Broken City", "year": 2013, "duration_min": 109, "rating": 5.7, "genres": "Thriller, Crime, Drama", "genres_pipe": "|Thriller|Crime|Drama|", "keywords": "mayor, investigation, politics, ex-cop, revenge, double crossed, private detective", "tags_pipe": "|mayor|investigation|politics|ex-cop|revenge|double crossed|private detective|", "overview": "In a broken city rife with injustice, ex-cop Billy Taggart seeks redemption and revenge after being double-crossed and then framed by its most powerful figure, the mayor. Billy's relentless pursuit of justice, matched only by his streetwise toughness, makes him an unstoppable force - and the mayor's worst nightmare.", "text_for_embedding": "Broken City (2013). Genres: Thriller, Crime, Drama. In a broken city rife with injustice, ex-cop Billy Taggart seeks redemption and revenge after being double-crossed and then framed by its most powerful figure, the mayor. Billy's relentless pursuit of justice, matched only by his streetwise toughness, makes him an unstoppable force - and the mayor's worst nightmare.. Tags: mayor, investigation, politics, ex-cop, revenge, double crossed, private detective"} +{"id": "10012", "title": "Cursed", "year": 2005, "duration_min": 97, "rating": 5.1, "genres": "Horror, Comedy", "genres_pipe": "|Horror|Comedy|", "keywords": "brother sister relationship, bite, transformation, supernatural powers, werewolf", "tags_pipe": "|brother sister relationship|bite|transformation|supernatural powers|werewolf|", "overview": "A werewolf loose in Los Angeles changes the lives of three young adults, who, after being mauled by the beast, learn they must kill their attacker if they hope to change their fate to avoid becoming werewolves too.", "text_for_embedding": "Cursed (2005). Genres: Horror, Comedy. A werewolf loose in Los Angeles changes the lives of three young adults, who, after being mauled by the beast, learn they must kill their attacker if they hope to change their fate to avoid becoming werewolves too.. Tags: brother sister relationship, bite, transformation, supernatural powers, werewolf"} +{"id": "49526", "title": "Premium Rush", "year": 2012, "duration_min": 91, "rating": 6.2, "genres": "Crime, Action, Thriller", "genres_pipe": "|Crime|Action|Thriller|", "keywords": "new york, dirty cop, bicycle courier, duringcreditsstinger, race against the clock, cyclist, bike messenger", "tags_pipe": "|new york|dirty cop|bicycle courier|duringcreditsstinger|race against the clock|cyclist|bike messenger|", "overview": "In Manhattan, a bike messenger picks up an envelope that attracts the interest of a dirty cop, who pursues the cyclist throughout the city.", "text_for_embedding": "Premium Rush (2012). Genres: Crime, Action, Thriller. In Manhattan, a bike messenger picks up an envelope that attracts the interest of a dirty cop, who pursues the cyclist throughout the city.. Tags: new york, dirty cop, bicycle courier, duringcreditsstinger, race against the clock, cyclist, bike messenger"} +{"id": "268920", "title": "Hot Pursuit", "year": 2015, "duration_min": 87, "rating": 5.4, "genres": "Action, Comedy, Crime", "genres_pipe": "|Action|Comedy|Crime|", "keywords": "texas, prisoner, cop, drug cartel, on the run, police officer, prisoner on the run, woman director", "tags_pipe": "|texas|prisoner|cop|drug cartel|on the run|police officer|prisoner on the run|woman director|", "overview": "An uptight by-the-book cop must protect the widow of a drug boss from crooked cops and gunmen.", "text_for_embedding": "Hot Pursuit (2015). Genres: Action, Comedy, Crime. An uptight by-the-book cop must protect the widow of a drug boss from crooked cops and gunmen.. Tags: texas, prisoner, cop, drug cartel, on the run, police officer, prisoner on the run, woman director"} +{"id": "9093", "title": "The Four Feathers", "year": 2002, "duration_min": 132, "rating": 6.5, "genres": "War, Adventure, Drama, Romance", "genres_pipe": "|War|Adventure|Drama|Romance|", "keywords": "islam, sex, loyalty, bravery, army, revenge, honor, murder, escape, soldier, battle, church, violence, britain, slave", "tags_pipe": "|islam|sex|loyalty|bravery|army|revenge|honor|murder|escape|soldier|battle|church|violence|britain|slave|", "overview": "The story, set in 1875, follows a British officer (Heath Ledger) who resigns his post when he learns of his regiment's plan to ship out to the Sudan for the conflict with the Mahdi. His friends and fiancée send him four white feathers which symbolize cowardice. To redeem his honor he disguises himself as an Arab and secretly saves the lives of those who branded him a coward.", "text_for_embedding": "The Four Feathers (2002). Genres: War, Adventure, Drama, Romance. The story, set in 1875, follows a British officer (Heath Ledger) who resigns his post when he learns of his regiment's plan to ship out to the Sudan for the conflict with the Mahdi. His friends and fiancée send him four white feathers which symbolize cowardice. To redeem his honor he disguises himself as an Arab and secretly saves the lives of those who branded him a coward.. Tags: islam, sex, loyalty, bravery, army, revenge, honor, murder, escape, soldier, battle, church, violence, britain, slave"} +{"id": "119283", "title": "Parker", "year": 2013, "duration_min": 118, "rating": 5.7, "genres": "Action, Crime", "genres_pipe": "|Action|Crime|", "keywords": "professional thief, jewel robbery", "tags_pipe": "|professional thief|jewel robbery|", "overview": "A thief with a unique code of professional ethics is double-crossed by his crew and left for dead. Assuming a new disguise and forming an unlikely alliance with a woman on the inside, he looks to hijack the score of the crew's latest heist.", "text_for_embedding": "Parker (2013). Genres: Action, Crime. A thief with a unique code of professional ethics is double-crossed by his crew and left for dead. Assuming a new disguise and forming an unlikely alliance with a woman on the inside, he looks to hijack the score of the crew's latest heist.. Tags: professional thief, jewel robbery"} +{"id": "11823", "title": "Wimbledon", "year": 2004, "duration_min": 98, "rating": 6.0, "genres": "Comedy, Romance", "genres_pipe": "|Comedy|Romance|", "keywords": "tennis, new love, tennis player, australia, wimbledon", "tags_pipe": "|tennis|new love|tennis player|australia|wimbledon|", "overview": "A pro tennis player has lost his ambition and has fallen in rank to 119. Fortunately for him, he meets a young player on the women's circuit who helps him recapture his focus for Wimbledon.", "text_for_embedding": "Wimbledon (2004). Genres: Comedy, Romance. A pro tennis player has lost his ambition and has fallen in rank to 119. Fortunately for him, he meets a young player on the women's circuit who helps him recapture his focus for Wimbledon.. Tags: tennis, new love, tennis player, australia, wimbledon"} +{"id": "35169", "title": "Furry Vengeance", "year": 2010, "duration_min": 92, "rating": 4.6, "genres": "Comedy", "genres_pipe": "|Comedy|", "keywords": "bear, animal, aftercreditsstinger, duringcreditsstinger, real estate, land developer, real estate developer", "tags_pipe": "|bear|animal|aftercreditsstinger|duringcreditsstinger|real estate|land developer|real estate developer|", "overview": "When real estate developer Dan Sanders finalizes plans to level a swath of pristine Oregon forest to make way for a soulless housing subdivision, a band of woodland creatures rises up to throw a monkey wrench into the greedy scheme. Just how much mischief from the furry critters can the businessman take before he calls it quits?", "text_for_embedding": "Furry Vengeance (2010). Genres: Comedy. When real estate developer Dan Sanders finalizes plans to level a swath of pristine Oregon forest to make way for a soulless housing subdivision, a band of woodland creatures rises up to throw a monkey wrench into the greedy scheme. Just how much mischief from the furry critters can the businessman take before he calls it quits?. Tags: bear, animal, aftercreditsstinger, duringcreditsstinger, real estate, land developer, real estate developer"} +{"id": "118957", "title": "Bait", "year": 2012, "duration_min": 93, "rating": 5.3, "genres": "Action, Horror, Thriller", "genres_pipe": "|Action|Horror|Thriller|", "keywords": "drowning, supermarket, shark attack, australian, flooding, australia, tsunami, gore, shark, flood, 3d", "tags_pipe": "|drowning|supermarket|shark attack|australian|flooding|australia|tsunami|gore|shark|flood|3d|", "overview": "A freak tsunami traps shoppers at a coastal Australian supermarket inside the building ... along with a 12-foot great white shark.", "text_for_embedding": "Bait (2012). Genres: Action, Horror, Thriller. A freak tsunami traps shoppers at a coastal Australian supermarket inside the building ... along with a 12-foot great white shark.. Tags: drowning, supermarket, shark attack, australian, flooding, australia, tsunami, gore, shark, flood, 3d"} +{"id": "849", "title": "Krull", "year": 1983, "duration_min": 117, "rating": 5.8, "genres": "Fantasy, Action, Adventure", "genres_pipe": "|Fantasy|Action|Adventure|", "keywords": "kingdom, lightsaber, cult favorite, dead body, magical object, fortress, doppelganger, cyclops, changeling", "tags_pipe": "|kingdom|lightsaber|cult favorite|dead body|magical object|fortress|doppelganger|cyclops|changeling|", "overview": "A prince and a fellowship of companions set out to rescue his bride from a fortress of alien invaders who have arrived on their home planet.", "text_for_embedding": "Krull (1983). Genres: Fantasy, Action, Adventure. A prince and a fellowship of companions set out to rescue his bride from a fortress of alien invaders who have arrived on their home planet.. Tags: kingdom, lightsaber, cult favorite, dead body, magical object, fortress, doppelganger, cyclops, changeling"} +{"id": "4515", "title": "Lions for Lambs", "year": 2007, "duration_min": 92, "rating": 6.0, "genres": "Action, Adventure, Drama, History", "genres_pipe": "|Action|Adventure|Drama|History|", "keywords": "journalist, terrorist, war against terror, externally controlled action, manipulation, propaganda, manipulation of the media, future, afghanistan, political negotiations, war, past, war in afghanistan", "tags_pipe": "|journalist|terrorist|war against terror|externally controlled action|manipulation|propaganda|manipulation of the media|future|afghanistan|political negotiations|war|past|war in afghanistan|", "overview": "Three stories told simultaneous in ninety minutes of real time: a Republican Senator who's a presidential hopeful gives an hour-long interview to a skeptical television reporter, detailing a strategy for victory in Afghanistan; two special forces ambushed on an Afghani ridge await rescue as Taliban forces close in; a poli-sci professor at a California college invites a student to re-engage.", "text_for_embedding": "Lions for Lambs (2007). Genres: Action, Adventure, Drama, History. Three stories told simultaneous in ninety minutes of real time: a Republican Senator who's a presidential hopeful gives an hour-long interview to a skeptical television reporter, detailing a strategy for victory in Afghanistan; two special forces ambushed on an Afghani ridge await rescue as Taliban forces close in; a poli-sci professor at a California college invites a student to re-engage.. Tags: journalist, terrorist, war against terror, externally controlled action, manipulation, propaganda, manipulation of the media, future, afghanistan, political negotiations, war, past, war in afghanistan"} +{"id": "18886", "title": "Flight of the Intruder", "year": 1991, "duration_min": 115, "rating": 5.7, "genres": "Action, Adventure, Drama, Thriller", "genres_pipe": "|Action|Adventure|Drama|Thriller|", "keywords": "bomber, vietnam war, u.s. navy, aviation, combat, bombing", "tags_pipe": "|bomber|vietnam war|u.s. navy|aviation|combat|bombing|", "overview": "U.S. Navy pilot Lt. Jake Grafton and his bombardier buddy, Lt. Cmdr. Virgil Cole, are two soldiers embedded in the Vietnam War growing frustrated by the military's constraints on their missions. Despite the best efforts of their commanding officer, Cmdr. Frank Camparelli, to re-engage them, this disillusioned pair decide to take the war effort into their own hands with an explosive battle plan that could well get them court-martialed.", "text_for_embedding": "Flight of the Intruder (1991). Genres: Action, Adventure, Drama, Thriller. U.S. Navy pilot Lt. Jake Grafton and his bombardier buddy, Lt. Cmdr. Virgil Cole, are two soldiers embedded in the Vietnam War growing frustrated by the military's constraints on their missions. Despite the best efforts of their commanding officer, Cmdr. Frank Camparelli, to re-engage them, this disillusioned pair decide to take the war effort into their own hands with an explosive battle plan that could well get them court-martialed.. Tags: bomber, vietnam war, u.s. navy, aviation, combat, bombing"} +{"id": "6575", "title": "Walk Hard: The Dewey Cox Story", "year": 2007, "duration_min": 96, "rating": 6.6, "genres": "Comedy, Music", "genres_pipe": "|Comedy|Music|", "keywords": "music record, rock and roll, pop, hip-hop, fab four, blues, pop star, rapper, record producer, rock, music, music instrument, wedding, extramarital affair, aftercreditsstinger", "tags_pipe": "|music record|rock and roll|pop|hip-hop|fab four|blues|pop star|rapper|record producer|rock|music|music instrument|wedding|extramarital affair|aftercreditsstinger|", "overview": "Singer Dewey Cox overcomes adversity to become a musical legend.", "text_for_embedding": "Walk Hard: The Dewey Cox Story (2007). Genres: Comedy, Music. Singer Dewey Cox overcomes adversity to become a musical legend.. Tags: music record, rock and roll, pop, hip-hop, fab four, blues, pop star, rapper, record producer, rock, music, music instrument, wedding, extramarital affair, aftercreditsstinger"} +{"id": "6440", "title": "The Shipping News", "year": 2001, "duration_min": 111, "rating": 6.4, "genres": "Drama, Romance", "genres_pipe": "|Drama|Romance|", "keywords": "sex, adultery, based on novel, fishing, isolation, kidnapping, newfoundland, survival, reporter, drunk", "tags_pipe": "|sex|adultery|based on novel|fishing|isolation|kidnapping|newfoundland|survival|reporter|drunk|", "overview": "An emotionally-beaten man with his young daughter moves to his ancestral home in Newfoundland to reclaim his life.", "text_for_embedding": "The Shipping News (2001). Genres: Drama, Romance. An emotionally-beaten man with his young daughter moves to his ancestral home in Newfoundland to reclaim his life.. Tags: sex, adultery, based on novel, fishing, isolation, kidnapping, newfoundland, survival, reporter, drunk"} +{"id": "13496", "title": "American Outlaws", "year": 2001, "duration_min": 94, "rating": 5.7, "genres": "Action, Western", "genres_pipe": "|Action|Western|", "keywords": "sheriff, horse, outlaw, jesse james, cole younger", "tags_pipe": "|sheriff|horse|outlaw|jesse james|cole younger|", "overview": "When a Midwest town learns that a corrupt railroad baron has captured the deeds to their homesteads without their knowledge, a group of young ranchers join forces to take back what is rightfully theirs. They will become the object of the biggest manhunt in the history of the Old West and, as their fame grows, so will the legend of their leader, a young outlaw by the name of Jessie James.", "text_for_embedding": "American Outlaws (2001). Genres: Action, Western. When a Midwest town learns that a corrupt railroad baron has captured the deeds to their homesteads without their knowledge, a group of young ranchers join forces to take back what is rightfully theirs. They will become the object of the biggest manhunt in the history of the Old West and, as their fame grows, so will the legend of their leader, a young outlaw by the name of Jessie James.. Tags: sheriff, horse, outlaw, jesse james, cole younger"} +{"id": "18320", "title": "The Young Victoria", "year": 2009, "duration_min": 105, "rating": 7.0, "genres": "Drama, History, Romance", "genres_pipe": "|Drama|History|Romance|", "keywords": "royal family, biography, royalty, period drama, queen victoria, prince albert, 19th century, british monarchy", "tags_pipe": "|royal family|biography|royalty|period drama|queen victoria|prince albert|19th century|british monarchy|", "overview": "From Academy Award® winners Graham King and Martin Scorsese, along with the makers of Gosford Park and The Departed, comes the story of Queen Victoria’s early rise to power. From an object of a royal power-struggle to her romantic courtship and legendary marriage to Prince Albert, Emily Blunt (The Devil Wears Prada) gives a stunning performance as the young Victoria. Packed with drama, romance, breath-taking cinematography, lavish costumes and featuring an outstanding British cast including Jim Broadbent, Harriet Walter, Mark Strong, Paul Bettany, Miranda Richardson, and Rupert Friend, The Young Victoria has captivated British audiences, and is the film that Company magazine called “an epic British film, which will sweep you up in her remarkable story.”", "text_for_embedding": "The Young Victoria (2009). Genres: Drama, History, Romance. From Academy Award® winners Graham King and Martin Scorsese, along with the makers of Gosford Park and The Departed, comes the story of Queen Victoria’s early rise to power. From an object of a royal power-struggle to her romantic courtship and legendary marriage to Prince Albert, Emily Blunt (The Devil Wears Prada) gives a stunning performance as the young Victoria. Packed with drama, romance, breath-taking cinematography, lavish costumes and featuring an outstanding British cast including Jim Broadbent, Harriet Walter, Mark Strong, Paul Bettany, Miranda Richardson, and Rupert Friend, The Young Victoria has captivated British audiences, and is the film that Company magazine called “an epic British film, which will sweep you up in her remarkable story.”. Tags: royal family, biography, royalty, period drama, queen victoria, prince albert, 19th century, british monarchy"} +{"id": "22787", "title": "Whiteout", "year": 2009, "duration_min": 101, "rating": 5.3, "genres": "Action, Crime, Mystery, Thriller", "genres_pipe": "|Action|Crime|Mystery|Thriller|", "keywords": "airplane, based on comic book, corpse, stich", "tags_pipe": "|airplane|based on comic book|corpse|stich|", "overview": "The only U.S. Marshal assigned to Antarctica, Carrie Stetko will soon leave the harsh environment behind for good – in three days, the sun will set and the Amundsen-Scott Research Station will shut down for the long winter. When a body is discovered out on the open ice, Carrie's investigation into the continent's first homicide plunges her deep into a mystery that may cost her her own life.", "text_for_embedding": "Whiteout (2009). Genres: Action, Crime, Mystery, Thriller. The only U.S. Marshal assigned to Antarctica, Carrie Stetko will soon leave the harsh environment behind for good – in three days, the sun will set and the Amundsen-Scott Research Station will shut down for the long winter. When a body is discovered out on the open ice, Carrie's investigation into the continent's first homicide plunges her deep into a mystery that may cost her her own life.. Tags: airplane, based on comic book, corpse, stich"} +{"id": "8967", "title": "The Tree of Life", "year": 2011, "duration_min": 139, "rating": 6.5, "genres": "Drama, Fantasy", "genres_pipe": "|Drama|Fantasy|", "keywords": "philosophy, father son relationship, red hair, brother sister relationship, sun, telegram, tree, meteor, afterlife, death of a child, independent film, spirituality, outer space, dinosaur, voice over", "tags_pipe": "|philosophy|father son relationship|red hair|brother sister relationship|sun|telegram|tree|meteor|afterlife|death of a child|independent film|spirituality|outer space|dinosaur|voice over|", "overview": "The impressionistic story of a Texas family in the 1950s. The film follows the life journey of the eldest son, Jack, through the innocence of childhood to his disillusioned adult years as he tries to reconcile a complicated relationship with his father. Jack finds himself a lost soul in the modern world, seeking answers to the origins and meaning of life while questioning the existence of faith.", "text_for_embedding": "The Tree of Life (2011). Genres: Drama, Fantasy. The impressionistic story of a Texas family in the 1950s. The film follows the life journey of the eldest son, Jack, through the innocence of childhood to his disillusioned adult years as he tries to reconcile a complicated relationship with his father. Jack finds himself a lost soul in the modern world, seeking answers to the origins and meaning of life while questioning the existence of faith.. Tags: philosophy, father son relationship, red hair, brother sister relationship, sun, telegram, tree, meteor, afterlife, death of a child, independent film, spirituality, outer space, dinosaur, voice over"} +{"id": "37498", "title": "Knock Off", "year": 1998, "duration_min": 91, "rating": 4.7, "genres": "Action, Adventure, Thriller", "genres_pipe": "|Action|Adventure|Thriller|", "keywords": "parking garage, freighter, fundraiser", "tags_pipe": "|parking garage|freighter|fundraiser|", "overview": "Marcus Ray (Jean-Claude Van Damme), a sales representative for \"V SIX\" jeans, and his partner, Tommy Hendricks (Rob Schneider), are about to be busted for selling \"knock off\" jeans. Their American contact, Karan Leigh, who by the way is not only their employer but a CIA agent sent to find the mole in their operation, is threatening them with a jail term if they do not prove their innocence.", "text_for_embedding": "Knock Off (1998). Genres: Action, Adventure, Thriller. Marcus Ray (Jean-Claude Van Damme), a sales representative for \"V SIX\" jeans, and his partner, Tommy Hendricks (Rob Schneider), are about to be busted for selling \"knock off\" jeans. Their American contact, Karan Leigh, who by the way is not only their employer but a CIA agent sent to find the mole in their operation, is threatening them with a jail term if they do not prove their innocence.. Tags: parking garage, freighter, fundraiser"} +{"id": "144336", "title": "Sabotage", "year": 2014, "duration_min": 110, "rating": 5.5, "genres": "Action, Drama, Thriller, Crime", "genres_pipe": "|Action|Drama|Thriller|Crime|", "keywords": "drug cartel, dea", "tags_pipe": "|drug cartel|dea|", "overview": "In \"Sabotage\", Arnold Schwarzenegger leads an elite DEA task force that takes on the world's deadliest drug cartels. When the team successfully executes a high-stakes raid on a cartel safe house, they think their work is done - until, one-by-one, the team members mysteriously start to be eliminated. As the body count rises, everyone is a suspect.", "text_for_embedding": "Sabotage (2014). Genres: Action, Drama, Thriller, Crime. In \"Sabotage\", Arnold Schwarzenegger leads an elite DEA task force that takes on the world's deadliest drug cartels. When the team successfully executes a high-stakes raid on a cartel safe house, they think their work is done - until, one-by-one, the team members mysteriously start to be eliminated. As the body count rises, everyone is a suspect.. Tags: drug cartel, dea"} +{"id": "9616", "title": "The Order", "year": 2003, "duration_min": 102, "rating": 4.8, "genres": "Drama, Fantasy, Horror, Mystery, Romance, Thriller", "genres_pipe": "|Drama|Fantasy|Horror|Mystery|Romance|Thriller|", "keywords": "riddle, rome, vatican, secret organization, investigation, sin, repentance, priest, psychological thriller, violence, catholic church, sin eater, mentor protégé relationship, reference to god, suspicious death", "tags_pipe": "|riddle|rome|vatican|secret organization|investigation|sin|repentance|priest|psychological thriller|violence|catholic church|sin eater|mentor protégé relationship|reference to god|suspicious death|", "overview": "For centuries, a secret Order of priests has existed within the Church. A renegade priest, Father Alex Bernier, is sent to Rome to investigate the mysterious death of one of the Order's most revered members. Following a series of strangely similar killings, Bernier launches an investigation that forces him to confront unimaginable evil.", "text_for_embedding": "The Order (2003). Genres: Drama, Fantasy, Horror, Mystery, Romance, Thriller. For centuries, a secret Order of priests has existed within the Church. A renegade priest, Father Alex Bernier, is sent to Rome to investigate the mysterious death of one of the Order's most revered members. Following a series of strangely similar killings, Bernier launches an investigation that forces him to confront unimaginable evil.. Tags: riddle, rome, vatican, secret organization, investigation, sin, repentance, priest, psychological thriller, violence, catholic church, sin eater, mentor protégé relationship, reference to god, suspicious death"} +{"id": "13056", "title": "Punisher: War Zone", "year": 2008, "duration_min": 102, "rating": 5.6, "genres": "Action, Crime", "genres_pipe": "|Action|Crime|", "keywords": "broken neck, fbi agent, wall safe, trashed house, aerial shot, military dress uniform, vanity, flare, woman director", "tags_pipe": "|broken neck|fbi agent|wall safe|trashed house|aerial shot|military dress uniform|vanity|flare|woman director|", "overview": "Waging his one-man war on the world of organized crime, ruthless vigilante-hero Frank Castle sets his sights on overeager mob boss Billy Russoti. After Russoti is left horribly disfigured by Castle, he sets out for vengeance under his new alias: Jigsaw. With the \"Punisher Task Force\" hot on his trail and the FBI unable to take Jigsaw in, Frank must stand up to the formidable army that Jigsaw has recruited before more of his evil deeds go unpunished.", "text_for_embedding": "Punisher: War Zone (2008). Genres: Action, Crime. Waging his one-man war on the world of organized crime, ruthless vigilante-hero Frank Castle sets his sights on overeager mob boss Billy Russoti. After Russoti is left horribly disfigured by Castle, he sets out for vengeance under his new alias: Jigsaw. With the \"Punisher Task Force\" hot on his trail and the FBI unable to take Jigsaw in, Frank must stand up to the formidable army that Jigsaw has recruited before more of his evil deeds go unpunished.. Tags: broken neck, fbi agent, wall safe, trashed house, aerial shot, military dress uniform, vanity, flare, woman director"} +{"id": "14113", "title": "Zoom", "year": 2006, "duration_min": 83, "rating": 4.9, "genres": "Family, Fantasy, Comedy", "genres_pipe": "|Family|Fantasy|Comedy|", "keywords": "superhero, kids and family", "tags_pipe": "|superhero|kids and family|", "overview": "Jack Shepard is an out-of-shape auto shop owner, far removed from the man who once protected the world's freedom. Reluctantly called back into action by the government, Jack is tasked with turning a rag tag group of kids with special powers into a new generation of superheroes to save the world from certain destruction. Based on Jason Lethcoe's graphic novel \"Zoom's Academy for the Super Gifted\".", "text_for_embedding": "Zoom (2006). Genres: Family, Fantasy, Comedy. Jack Shepard is an out-of-shape auto shop owner, far removed from the man who once protected the world's freedom. Reluctantly called back into action by the government, Jack is tasked with turning a rag tag group of kids with special powers into a new generation of superheroes to save the world from certain destruction. Based on Jason Lethcoe's graphic novel \"Zoom's Academy for the Super Gifted\".. Tags: superhero, kids and family"} +{"id": "285783", "title": "The Walk", "year": 2015, "duration_min": 123, "rating": 6.9, "genres": "Adventure, Drama, Thriller", "genres_pipe": "|Adventure|Drama|Thriller|", "keywords": "1970s, skyscraper, based on true story, tightrope, planning, world trade center", "tags_pipe": "|1970s|skyscraper|based on true story|tightrope|planning|world trade center|", "overview": "The story of French high-wire artist Philippe Petit's attempt to cross the Twin Towers of the World Trade Center in 1974.", "text_for_embedding": "The Walk (2015). Genres: Adventure, Drama, Thriller. The story of French high-wire artist Philippe Petit's attempt to cross the Twin Towers of the World Trade Center in 1974.. Tags: 1970s, skyscraper, based on true story, tightrope, planning, world trade center"} +{"id": "49478", "title": "Warriors of Virtue", "year": 1997, "duration_min": 103, "rating": 4.7, "genres": "Fantasy, Family, Action", "genres_pipe": "|Fantasy|Family|Action|", "keywords": "american football, mythology, chinese food, kangaroo", "tags_pipe": "|american football|mythology|chinese food|kangaroo|", "overview": "A young man, Ryan, suffering from a disability, wishes to join the other kids from his schools football team. During an initiation rite, Ryan is swept away through a whirlpool to the land of Tao. There he is hunted by the evil Lord Komodo, who desires the boy as a key to enter the real world. Ryan is rescued by the protectors of Tao, five humanoid kangaroos, each embued with the five elements and virtues. Ryan learns his valuable lesson while saving the land of Tao.", "text_for_embedding": "Warriors of Virtue (1997). Genres: Fantasy, Family, Action. A young man, Ryan, suffering from a disability, wishes to join the other kids from his schools football team. During an initiation rite, Ryan is swept away through a whirlpool to the land of Tao. There he is hunted by the evil Lord Komodo, who desires the boy as a key to enter the real world. Ryan is rescued by the protectors of Tao, five humanoid kangaroos, each embued with the five elements and virtues. Ryan learns his valuable lesson while saving the land of Tao.. Tags: american football, mythology, chinese food, kangaroo"} +{"id": "9726", "title": "A Good Year", "year": 2006, "duration_min": 118, "rating": 6.5, "genres": "Comedy, Drama, Romance", "genres_pipe": "|Comedy|Drama|Romance|", "keywords": "provence, wine cellar, vineyard, wine garden, wine, winegrower", "tags_pipe": "|provence|wine cellar|vineyard|wine garden|wine|winegrower|", "overview": "Failed London banker Max Skinner inherits his uncle's vineyard in Provence, where he spent many childhood holidays. Upon his arrival, he meets a woman from California who tells Max she is his long-lost cousin and that the property is hers.", "text_for_embedding": "A Good Year (2006). Genres: Comedy, Drama, Romance. Failed London banker Max Skinner inherits his uncle's vineyard in Provence, where he spent many childhood holidays. Upon his arrival, he meets a woman from California who tells Max she is his long-lost cousin and that the property is hers.. Tags: provence, wine cellar, vineyard, wine garden, wine, winegrower"} +{"id": "20763", "title": "Radio Flyer", "year": 1992, "duration_min": 114, "rating": 6.6, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "step father, physical abuse, abuse", "tags_pipe": "|step father|physical abuse|abuse|", "overview": "A father reminisces about his childhood when he and his younger brother moved to a new town with their mother, her new husband and their dog, Shane. When the younger brother is subjected to physical abuse at the hands of their brutal stepfather, Mike decides to convert their toy trolley, the \"Radio Flyer\", into a plane to fly him to safety.", "text_for_embedding": "Radio Flyer (1992). Genres: Drama. A father reminisces about his childhood when he and his younger brother moved to a new town with their mother, her new husband and their dog, Shane. When the younger brother is subjected to physical abuse at the hands of their brutal stepfather, Mike decides to convert their toy trolley, the \"Radio Flyer\", into a plane to fly him to safety.. Tags: step father, physical abuse, abuse"} +{"id": "9702", "title": "Bound by Honor", "year": 1993, "duration_min": 180, "rating": 7.7, "genres": "Action, Crime, Drama, Thriller", "genres_pipe": "|Action|Crime|Drama|Thriller|", "keywords": "juvenile prison, artist, jail, east l.a., hood, gang, youth gang, racism, drug, mexican american, barrio, police shootout, cholo, lowrider", "tags_pipe": "|juvenile prison|artist|jail|east l.a.|hood|gang|youth gang|racism|drug|mexican american|barrio|police shootout|cholo|lowrider|", "overview": "Based on the true life experiences of poet Jimmy Santiago Baca, the film focuses on half-brothers Paco and Cruz, and their bi-racial cousin Miklo. It opens in 1972, as the three are members of an East L.A. gang known as the \"Vatos Locos\", and the story focuses on how a violent crime and the influence of narcotics alter their lives. Miklo is incarcerated and sent to San Quentin, where he makes a \"home\" for himself. Cruz becomes an exceptional artist, but a heroin addiction overcomes him with tragic results. Paco becomes a cop and an enemy to his \"carnal\", Miklo.", "text_for_embedding": "Bound by Honor (1993). Genres: Action, Crime, Drama, Thriller. Based on the true life experiences of poet Jimmy Santiago Baca, the film focuses on half-brothers Paco and Cruz, and their bi-racial cousin Miklo. It opens in 1972, as the three are members of an East L.A. gang known as the \"Vatos Locos\", and the story focuses on how a violent crime and the influence of narcotics alter their lives. Miklo is incarcerated and sent to San Quentin, where he makes a \"home\" for himself. Cruz becomes an exceptional artist, but a heroin addiction overcomes him with tragic results. Paco becomes a cop and an enemy to his \"carnal\", Miklo.. Tags: juvenile prison, artist, jail, east l.a., hood, gang, youth gang, racism, drug, mexican american, barrio, police shootout, cholo, lowrider"} +{"id": "9311", "title": "Smilla's Sense of Snow", "year": 1997, "duration_min": 121, "rating": 6.6, "genres": "Action, Crime, Drama, Mystery, Thriller", "genres_pipe": "|Action|Crime|Drama|Mystery|Thriller|", "keywords": "copenhagen, inuit, comet, arctic, snow", "tags_pipe": "|copenhagen|inuit|comet|arctic|snow|", "overview": "Smilla Jaspersen, half Danish, half Greenlander, attempts to understand the death of a small boy who falls from the roof of her apartment building. Suspecting wrongdoing, Smilla uncovers a trail of clues leading towards a secretive corporation that has made several mysterious expeditions to Greenland. Scenes from the film were shot in Copenhagen and western Greenland. The film was entered into the 47th Berlin International Film Festival, where director Bille August was nominated for the Golden Bear.", "text_for_embedding": "Smilla's Sense of Snow (1997). Genres: Action, Crime, Drama, Mystery, Thriller. Smilla Jaspersen, half Danish, half Greenlander, attempts to understand the death of a small boy who falls from the roof of her apartment building. Suspecting wrongdoing, Smilla uncovers a trail of clues leading towards a secretive corporation that has made several mysterious expeditions to Greenland. Scenes from the film were shot in Copenhagen and western Greenland. The film was entered into the 47th Berlin International Film Festival, where director Bille August was nominated for the Golden Bear.. Tags: copenhagen, inuit, comet, arctic, snow"} +{"id": "9280", "title": "Femme Fatale", "year": 2002, "duration_min": 114, "rating": 6.2, "genres": "Thriller, Crime, Romance", "genres_pipe": "|Thriller|Crime|Romance|", "keywords": "paris, france, new identity, paparazzi, cannes", "tags_pipe": "|paris|france|new identity|paparazzi|cannes|", "overview": "A woman tries to straighten out her life, even as her past as a con-woman comes back to haunt her.", "text_for_embedding": "Femme Fatale (2002). Genres: Thriller, Crime, Romance. A woman tries to straighten out her life, even as her past as a con-woman comes back to haunt her.. Tags: paris, france, new identity, paparazzi, cannes"} +{"id": "26843", "title": "Lion of the Desert", "year": 1981, "duration_min": 173, "rating": 7.4, "genres": "Action, History, War", "genres_pipe": "|Action|History|War|", "keywords": "italy, middle east, resistance, world war ii, libya, benito mussolini, based on true story, guerrilla warfare", "tags_pipe": "|italy|middle east|resistance|world war ii|libya|benito mussolini|based on true story|guerrilla warfare|", "overview": "This movie tells the story of Omar Mukhtar, an Arab Muslim rebel who fought against the Italian conquest of Libya in WWII. It gives western viewers a glimpse into this little-known region and chapter of history, and exposes the savage means by which the conquering army attempted to subdue the natives.", "text_for_embedding": "Lion of the Desert (1981). Genres: Action, History, War. This movie tells the story of Omar Mukhtar, an Arab Muslim rebel who fought against the Italian conquest of Libya in WWII. It gives western viewers a glimpse into this little-known region and chapter of history, and exposes the savage means by which the conquering army attempted to subdue the natives.. Tags: italy, middle east, resistance, world war ii, libya, benito mussolini, based on true story, guerrilla warfare"} +{"id": "11876", "title": "The Horseman on the Roof", "year": 1995, "duration_min": 135, "rating": 6.7, "genres": "War, Adventure, Drama, Romance", "genres_pipe": "|War|Adventure|Drama|Romance|", "keywords": "italian, new love, provence, horse, exile", "tags_pipe": "|italian|new love|provence|horse|exile|", "overview": "In a time of war and disease, a young officer gallantly tries to help a young woman find her husband.", "text_for_embedding": "The Horseman on the Roof (1995). Genres: War, Adventure, Drama, Romance. In a time of war and disease, a young officer gallantly tries to help a young woman find her husband.. Tags: italian, new love, provence, horse, exile"} +{"id": "22267", "title": "Ride with the Devil", "year": 1999, "duration_min": 138, "rating": 6.6, "genres": "Drama, War, Romance, Western", "genres_pipe": "|Drama|War|Romance|Western|", "keywords": "civil war, friends, bush whacker, raid", "tags_pipe": "|civil war|friends|bush whacker|raid|", "overview": "Ride with the Devil follows four people who are fighting for truth and justice amidst the turmoil of the American Civil War. Director Ang Lee takes us to a no man's land on the Missouri/Kansas border where a staunch loyalist, an immigrant's son, a freed slave, and a young widow form an unlikely friendship as they learn how to survive in an uncertain time. In a place without rules and redefine the meaning of bravery and honor.", "text_for_embedding": "Ride with the Devil (1999). Genres: Drama, War, Romance, Western. Ride with the Devil follows four people who are fighting for truth and justice amidst the turmoil of the American Civil War. Director Ang Lee takes us to a no man's land on the Missouri/Kansas border where a staunch loyalist, an immigrant's son, a freed slave, and a young widow form an unlikely friendship as they learn how to survive in an uncertain time. In a place without rules and redefine the meaning of bravery and honor.. Tags: civil war, friends, bush whacker, raid"} +{"id": "45958", "title": "Biutiful", "year": 2010, "duration_min": 148, "rating": 7.0, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "immigrant, illegal immigrant, chinese, single father", "tags_pipe": "|immigrant|illegal immigrant|chinese|single father|", "overview": "This is a story of a man in free fall. On the road to redemption, darkness lights his way. Connected with the afterlife, Uxbal is a tragic hero and father of two who's sensing the danger of death. He struggles with a tainted reality and a fate that works against him in order to forgive, for love, and forever.", "text_for_embedding": "Biutiful (2010). Genres: Drama. This is a story of a man in free fall. On the road to redemption, darkness lights his way. Connected with the afterlife, Uxbal is a tragic hero and father of two who's sensing the danger of death. He struggles with a tainted reality and a fate that works against him in order to forgive, for love, and forever.. Tags: immigrant, illegal immigrant, chinese, single father"} +{"id": "1969", "title": "Bandidas", "year": 2006, "duration_min": 93, "rating": 5.8, "genres": "Action, Comedy, Western, Crime", "genres_pipe": "|Action|Comedy|Western|Crime|", "keywords": "mexico, bank robber, revenge, best friend, bank robbery, bank vault, steam locomotive", "tags_pipe": "|mexico|bank robber|revenge|best friend|bank robbery|bank vault|steam locomotive|", "overview": "Set in the late 19th century. When a ruthless robber baron takes away everything they cherish, a rough-and-tumble, idealistic peasant and a sophisticated heiress embark on a quest for justice, vengeance…and a few good heists.", "text_for_embedding": "Bandidas (2006). Genres: Action, Comedy, Western, Crime. Set in the late 19th century. When a ruthless robber baron takes away everything they cherish, a rough-and-tumble, idealistic peasant and a sophisticated heiress embark on a quest for justice, vengeance…and a few good heists.. Tags: mexico, bank robber, revenge, best friend, bank robbery, bank vault, steam locomotive"} +{"id": "310706", "title": "Black Water Transit", "year": 2009, "duration_min": 100, "rating": 0.0, "genres": "Drama, Crime", "genres_pipe": "|Drama|Crime|", "keywords": "", "tags_pipe": "", "overview": "In this action thriller set in post-Katrina New Orleans, business owner Jack Vermillion (Laurence Fishburne) is struggling to run a legitimate shipping company while bad guy Ernest Pike (Karl Urban) is struggling to get his family's illegal gun collection out of the country. When their paths collide, Jack realizes that exposing Pike might get him just the sway he needs to persuade law enforcement officials to treat his imprisoned son kindly.", "text_for_embedding": "Black Water Transit (2009). Genres: Drama, Crime. In this action thriller set in post-Katrina New Orleans, business owner Jack Vermillion (Laurence Fishburne) is struggling to run a legitimate shipping company while bad guy Ernest Pike (Karl Urban) is struggling to get his family's illegal gun collection out of the country. When their paths collide, Jack realizes that exposing Pike might get him just the sway he needs to persuade law enforcement officials to treat his imprisoned son kindly.. Tags: "} +{"id": "198663", "title": "The Maze Runner", "year": 2014, "duration_min": 113, "rating": 7.0, "genres": "Action, Mystery, Science Fiction, Thriller", "genres_pipe": "|Action|Mystery|Science Fiction|Thriller|", "keywords": "based on novel, maze, post-apocalyptic, dystopia, escape, memory loss, erased memory, trapped, dystopic future, runner, based on young adult novel", "tags_pipe": "|based on novel|maze|post-apocalyptic|dystopia|escape|memory loss|erased memory|trapped|dystopic future|runner|based on young adult novel|", "overview": "Set in a post-apocalyptic world, young Thomas is deposited in a community of boys after his memory is erased, soon learning they're all trapped in a maze that will require him to join forces with fellow \"runners\" for a shot at escape.", "text_for_embedding": "The Maze Runner (2014). Genres: Action, Mystery, Science Fiction, Thriller. Set in a post-apocalyptic world, young Thomas is deposited in a community of boys after his memory is erased, soon learning they're all trapped in a maze that will require him to join forces with fellow \"runners\" for a shot at escape.. Tags: based on novel, maze, post-apocalyptic, dystopia, escape, memory loss, erased memory, trapped, dystopic future, runner, based on young adult novel"} +{"id": "239573", "title": "Unfinished Business", "year": 2015, "duration_min": 91, "rating": 5.0, "genres": "Comedy", "genres_pipe": "|Comedy|", "keywords": "europe, business trip", "tags_pipe": "|europe|business trip|", "overview": "A hard-working small business owner and his two associates travel to Europe to close the most important deal of their lives. But what began as a routine business trip goes off the rails in every imaginable – and unimaginable – way, including unplanned stops at a massive sex fetish event and a global economic summit.", "text_for_embedding": "Unfinished Business (2015). Genres: Comedy. A hard-working small business owner and his two associates travel to Europe to close the most important deal of their lives. But what began as a routine business trip goes off the rails in every imaginable – and unimaginable – way, including unplanned stops at a massive sex fetish event and a global economic summit.. Tags: europe, business trip"} +{"id": "10436", "title": "The Age of Innocence", "year": 1993, "duration_min": 139, "rating": 7.0, "genres": "Drama, Romance", "genres_pipe": "|Drama|Romance|", "keywords": "upper class, new york, lover, countess, lawyer, 19th century", "tags_pipe": "|upper class|new york|lover|countess|lawyer|19th century|", "overview": "Tale of 19th century New York high society in which a young lawyer falls in love with a woman separated from her husband, while he is engaged to the woman's cousin.", "text_for_embedding": "The Age of Innocence (1993). Genres: Drama, Romance. Tale of 19th century New York high society in which a young lawyer falls in love with a woman separated from her husband, while he is engaged to the woman's cousin.. Tags: upper class, new york, lover, countess, lawyer, 19th century"} +{"id": "1381", "title": "The Fountain", "year": 2006, "duration_min": 96, "rating": 6.8, "genres": "Drama, Adventure, Science Fiction, Romance", "genres_pipe": "|Drama|Adventure|Science Fiction|Romance|", "keywords": "brain tumor, operation, queen, love of one's life, surgeon, tree, dying and death, transience, immortality, maya civilization, monkey, conquest", "tags_pipe": "|brain tumor|operation|queen|love of one's life|surgeon|tree|dying and death|transience|immortality|maya civilization|monkey|conquest|", "overview": "Spanning over one thousand years, and three parallel stories, The Fountain is a story of love, death, spirituality, and the fragility of our existence in this world.", "text_for_embedding": "The Fountain (2006). Genres: Drama, Adventure, Science Fiction, Romance. Spanning over one thousand years, and three parallel stories, The Fountain is a story of love, death, spirituality, and the fragility of our existence in this world.. Tags: brain tumor, operation, queen, love of one's life, surgeon, tree, dying and death, transience, immortality, maya civilization, monkey, conquest"} +{"id": "2162", "title": "Chill Factor", "year": 1999, "duration_min": 101, "rating": 5.3, "genres": "Action, Comedy, Thriller", "genres_pipe": "|Action|Comedy|Thriller|", "keywords": "", "tags_pipe": "", "overview": "A store clerk and an ice cream truck driver are thrown together when a dying scientist entrusts them with a deadly chemical kept in ice. This chemical will kill every living thing once it melts. They have to take the chemical codenamed 'Elvis' to the next nearest military base while being chased by terrorists who want it to hold the country for ransom.", "text_for_embedding": "Chill Factor (1999). Genres: Action, Comedy, Thriller. A store clerk and an ice cream truck driver are thrown together when a dying scientist entrusts them with a deadly chemical kept in ice. This chemical will kill every living thing once it melts. They have to take the chemical codenamed 'Elvis' to the next nearest military base while being chased by terrorists who want it to hold the country for ransom.. Tags: "} +{"id": "127493", "title": "Stolen", "year": 2012, "duration_min": 96, "rating": 5.1, "genres": "Action, Crime, Drama, Thriller", "genres_pipe": "|Action|Crime|Drama|Thriller|", "keywords": "taxi driver, thief, fbi agent", "tags_pipe": "|taxi driver|thief|fbi agent|", "overview": "A former thief frantically searches for his missing daughter, who has been kidnapped and locked in the trunk of a taxi.", "text_for_embedding": "Stolen (2012). Genres: Action, Crime, Drama, Thriller. A former thief frantically searches for his missing daughter, who has been kidnapped and locked in the trunk of a taxi.. Tags: taxi driver, thief, fbi agent"} +{"id": "12429", "title": "Ponyo", "year": 2008, "duration_min": 100, "rating": 7.5, "genres": "Animation, Family", "genres_pipe": "|Animation|Family|", "keywords": "mother, fish, cliff, father, mermaid, princess, anime", "tags_pipe": "|mother|fish|cliff|father|mermaid|princess|anime|", "overview": "The son of a sailor, 5-year old Sosuke lives a quiet life on an oceanside cliff with his mother Lisa. One fateful day, he finds a beautiful goldfish trapped in a bottle on the beach and upon rescuing her, names her Ponyo. But she is no ordinary goldfish. The daughter of a masterful wizard and a sea goddess, Ponyo uses her father's magic to transform herself into a young girl and quickly falls in love with Sosuke, but the use of such powerful sorcery causes a dangerous imbalance in the world. As the moon steadily draws nearer to the earth and Ponyo's father sends the ocean's mighty waves to find his daughter, the two children embark on an adventure of a lifetime to save the world and fulfill Ponyo's dreams of becoming human.", "text_for_embedding": "Ponyo (2008). Genres: Animation, Family. The son of a sailor, 5-year old Sosuke lives a quiet life on an oceanside cliff with his mother Lisa. One fateful day, he finds a beautiful goldfish trapped in a bottle on the beach and upon rescuing her, names her Ponyo. But she is no ordinary goldfish. The daughter of a masterful wizard and a sea goddess, Ponyo uses her father's magic to transform herself into a young girl and quickly falls in love with Sosuke, but the use of such powerful sorcery causes a dangerous imbalance in the world. As the moon steadily draws nearer to the earth and Ponyo's father sends the ocean's mighty waves to find his daughter, the two children embark on an adventure of a lifetime to save the world and fulfill Ponyo's dreams of becoming human.. Tags: mother, fish, cliff, father, mermaid, princess, anime"} +{"id": "228205", "title": "The Longest Ride", "year": 2015, "duration_min": 128, "rating": 7.3, "genres": "Drama, Romance", "genres_pipe": "|Drama|Romance|", "keywords": "based on novel, art student, cowboy, injury, bull riding, romantic drama, young adult", "tags_pipe": "|based on novel|art student|cowboy|injury|bull riding|romantic drama|young adult|", "overview": "The lives of a young couple intertwine with a much older man as he reflects back on a lost love while he's trapped in an automobile crash.", "text_for_embedding": "The Longest Ride (2015). Genres: Drama, Romance. The lives of a young couple intertwine with a much older man as he reflects back on a lost love while he's trapped in an automobile crash.. Tags: based on novel, art student, cowboy, injury, bull riding, romantic drama, young adult"} +{"id": "2900", "title": "The Astronaut's Wife", "year": 1999, "duration_min": 109, "rating": 5.4, "genres": "Drama, Science Fiction, Thriller", "genres_pipe": "|Drama|Science Fiction|Thriller|", "keywords": "wife husband relationship, space travel, space, mission, pregnancy, astronaut", "tags_pipe": "|wife husband relationship|space travel|space|mission|pregnancy|astronaut|", "overview": "When astronaut Spencer Armacost returns to Earth after a mission that nearly cost him his life, he decides to take a desk job in order to see his beautiful wife, Jillian, more often. Gradually, Jillian notices that Spencer's personality seems to have changed, but her concerns fade when she discovers that she's pregnant. As Jillian grows closer to becoming a mother, her suspicions about Spencer return. Why does it seem as if he's a different person?", "text_for_embedding": "The Astronaut's Wife (1999). Genres: Drama, Science Fiction, Thriller. When astronaut Spencer Armacost returns to Earth after a mission that nearly cost him his life, he decides to take a desk job in order to see his beautiful wife, Jillian, more often. Gradually, Jillian notices that Spencer's personality seems to have changed, but her concerns fade when she discovers that she's pregnant. As Jillian grows closer to becoming a mother, her suspicions about Spencer return. Why does it seem as if he's a different person?. Tags: wife husband relationship, space travel, space, mission, pregnancy, astronaut"} +{"id": "21311", "title": "I Dreamed of Africa", "year": 2000, "duration_min": 114, "rating": 5.3, "genres": "Romance, Drama, Adventure", "genres_pipe": "|Romance|Drama|Adventure|", "keywords": "africa", "tags_pipe": "|africa|", "overview": "Inspired by the true story of indomitable Kuki Gallmann, the film tells of a beautiful and inquisitive woman who had the courage to escape from her comfortable yet monotonous life in Italy to start anew in the African wilderness with her son, Emanuele, and her new husband, Paolo. Gallmann faces great danger there but eventually becomes a celebrated conservationist.", "text_for_embedding": "I Dreamed of Africa (2000). Genres: Romance, Drama, Adventure. Inspired by the true story of indomitable Kuki Gallmann, the film tells of a beautiful and inquisitive woman who had the courage to escape from her comfortable yet monotonous life in Italy to start anew in the African wilderness with her son, Emanuele, and her new husband, Paolo. Gallmann faces great danger there but eventually becomes a celebrated conservationist.. Tags: africa"} +{"id": "77875", "title": "Playing for Keeps", "year": 2012, "duration_min": 106, "rating": 5.4, "genres": "Comedy, Romance", "genres_pipe": "|Comedy|Romance|", "keywords": "mother, father son relationship, field, athlete, soccer, parent, penalty kick", "tags_pipe": "|mother|father son relationship|field|athlete|soccer|parent|penalty kick|", "overview": "A former sports star who's fallen on hard times starts coaching his son's soccer team in an attempt to get his life together.", "text_for_embedding": "Playing for Keeps (2012). Genres: Comedy, Romance. A former sports star who's fallen on hard times starts coaching his son's soccer team in an attempt to get his life together.. Tags: mother, father son relationship, field, athlete, soccer, parent, penalty kick"} +{"id": "192136", "title": "Mandela: Long Walk to Freedom", "year": 2013, "duration_min": 141, "rating": 6.5, "genres": "Drama, History", "genres_pipe": "|Drama|History|", "keywords": "prison, south africa, apartheid, biography, nelson mandela, historical figure", "tags_pipe": "|prison|south africa|apartheid|biography|nelson mandela|historical figure|", "overview": "A chronicle of Nelson Mandela's life journey from his childhood in a rural village through to his inauguration as the first democratically elected president of South Africa.", "text_for_embedding": "Mandela: Long Walk to Freedom (2013). Genres: Drama, History. A chronicle of Nelson Mandela's life journey from his childhood in a rural village through to his inauguration as the first democratically elected president of South Africa.. Tags: prison, south africa, apartheid, biography, nelson mandela, historical figure"} +{"id": "18254", "title": "Reds", "year": 1981, "duration_min": 195, "rating": 7.1, "genres": "Drama, History", "genres_pipe": "|Drama|History|", "keywords": "journalist, russian revolution 1917", "tags_pipe": "|journalist|russian revolution 1917|", "overview": "A radical American journalist becomes involved with the Communist revolution in Russia and hopes to bring its spirit and idealism to the United States.", "text_for_embedding": "Reds (1981). Genres: Drama, History. A radical American journalist becomes involved with the Communist revolution in Russia and hopes to bring its spirit and idealism to the United States.. Tags: journalist, russian revolution 1917"} +{"id": "881", "title": "A Few Good Men", "year": 1992, "duration_min": 138, "rating": 7.1, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "suicide, underdog, suspicion of murder, court case, navy, law, dying and death, guantanamo bay, marine corps, military court, code red, command, military base, u.s. navy, sexism", "tags_pipe": "|suicide|underdog|suspicion of murder|court case|navy|law|dying and death|guantanamo bay|marine corps|military court|code red|command|military base|u.s. navy|sexism|", "overview": "When cocky military lawyer Lt. Daniel Kaffee and his co-counsel, Lt. Cmdr. JoAnne Galloway, are assigned to a murder case, they uncover a hazing ritual that could implicate high-ranking officials such as shady Col. Nathan Jessep.", "text_for_embedding": "A Few Good Men (1992). Genres: Drama. When cocky military lawyer Lt. Daniel Kaffee and his co-counsel, Lt. Cmdr. JoAnne Galloway, are assigned to a murder case, they uncover a hazing ritual that could implicate high-ranking officials such as shady Col. Nathan Jessep.. Tags: suicide, underdog, suspicion of murder, court case, navy, law, dying and death, guantanamo bay, marine corps, military court, code red, command, military base, u.s. navy, sexism"} +{"id": "10877", "title": "Exit Wounds", "year": 2001, "duration_min": 101, "rating": 5.3, "genres": "Action, Crime, Thriller", "genres_pipe": "|Action|Crime|Thriller|", "keywords": "corruption, scandal, shadowing, police", "tags_pipe": "|corruption|scandal|shadowing|police|", "overview": "Maverick cop Orin Boyd always brings down the domestic terrorists he tracks, but he ruffles feathers with his unorthodox techniques -- and soon finds himself reassigned to the toughest district in Detroit. When he discovers a group of detectives secretly operating a drug ring, Boyd joins forces with an unlikely ally -- gangster Latrell Walker -- to bring down the rotten cops.", "text_for_embedding": "Exit Wounds (2001). Genres: Action, Crime, Thriller. Maverick cop Orin Boyd always brings down the domestic terrorists he tracks, but he ruffles feathers with his unorthodox techniques -- and soon finds himself reassigned to the toughest district in Detroit. When he discovers a group of detectives secretly operating a drug ring, Boyd joins forces with an unlikely ally -- gangster Latrell Walker -- to bring down the rotten cops.. Tags: corruption, scandal, shadowing, police"} +{"id": "9600", "title": "Big Momma's House", "year": 2000, "duration_min": 98, "rating": 5.6, "genres": "Crime, Comedy", "genres_pipe": "|Crime|Comedy|", "keywords": "绝地奶霸, 卧底肥妈, big爆任务, 超级妈妈", "tags_pipe": "|绝地奶霸|卧底肥妈|big爆任务|超级妈妈|", "overview": "When a street-smart FBI agent is sent to Georgia to protect a beautiful single mother and her son from an escaped convict, he is forced to impersonate a crass Southern granny known as Big Momma in order to remain incognito.", "text_for_embedding": "Big Momma's House (2000). Genres: Crime, Comedy. When a street-smart FBI agent is sent to Georgia to protect a beautiful single mother and her son from an escaped convict, he is forced to impersonate a crass Southern granny known as Big Momma in order to remain incognito.. Tags: 绝地奶霸, 卧底肥妈, big爆任务, 超级妈妈"} +{"id": "202575", "title": "Thunder and the House of Magic", "year": 2013, "duration_min": 85, "rating": 6.3, "genres": "Family, Fantasy, Animation, Adventure", "genres_pipe": "|Family|Fantasy|Animation|Adventure|", "keywords": "magic, 3d", "tags_pipe": "|magic|3d|", "overview": "Thunder, an abandoned young cat seeking shelter from a storm, stumbles into the strangest house imaginable, owned by an old magician and inhabited by a dazzling array of automatons and gizmos. Not everyone welcomes the new addition to the troupe as Jack Rabbit and Maggie Mouse plot to evict Thunder. The situation gets worse when the magician lands in hospital and his scheming nephew sees his chance to cash in by selling the mansion. Our young hero is determined to earn his place and so he enlists the help of some wacky magician's assistants to protect his magical new home.", "text_for_embedding": "Thunder and the House of Magic (2013). Genres: Family, Fantasy, Animation, Adventure. Thunder, an abandoned young cat seeking shelter from a storm, stumbles into the strangest house imaginable, owned by an old magician and inhabited by a dazzling array of automatons and gizmos. Not everyone welcomes the new addition to the troupe as Jack Rabbit and Maggie Mouse plot to evict Thunder. The situation gets worse when the magician lands in hospital and his scheming nephew sees his chance to cash in by selling the mansion. Our young hero is determined to earn his place and so he enlists the help of some wacky magician's assistants to protect his magical new home.. Tags: magic, 3d"} +{"id": "71469", "title": "The Darkest Hour", "year": 2011, "duration_min": 89, "rating": 4.8, "genres": "Horror, Action, Thriller, Science Fiction", "genres_pipe": "|Horror|Action|Thriller|Science Fiction|", "keywords": "alien invasion, american abroad, moscow, unlikely heroes, failed business", "tags_pipe": "|alien invasion|american abroad|moscow|unlikely heroes|failed business|", "overview": "In Moscow, five young people lead the charge against an alien race which has attacked Earth via our power supply.", "text_for_embedding": "The Darkest Hour (2011). Genres: Horror, Action, Thriller, Science Fiction. In Moscow, five young people lead the charge against an alien race which has attacked Earth via our power supply.. Tags: alien invasion, american abroad, moscow, unlikely heroes, failed business"} +{"id": "85446", "title": "Step Up Revolution", "year": 2012, "duration_min": 99, "rating": 6.7, "genres": "Music, Drama, Romance", "genres_pipe": "|Music|Drama|Romance|", "keywords": "flash mob, dance instructor, real estate development, nike, dance company", "tags_pipe": "|flash mob|dance instructor|real estate development|nike|dance company|", "overview": "Emily arrives in Miami with aspirations to become a professional dancer. She sparks with Sean, the leader of a dance crew whose neighborhood is threatened by Emily's father's development plans.", "text_for_embedding": "Step Up Revolution (2012). Genres: Music, Drama, Romance. Emily arrives in Miami with aspirations to become a professional dancer. She sparks with Sean, the leader of a dance crew whose neighborhood is threatened by Emily's father's development plans.. Tags: flash mob, dance instructor, real estate development, nike, dance company"} +{"id": "326", "title": "Snakes on a Plane", "year": 2006, "duration_min": 105, "rating": 5.1, "genres": "Action, Crime, Horror, Thriller", "genres_pipe": "|Action|Crime|Horror|Thriller|", "keywords": "snake, suspense, fbi agent, death, animal attack, first class, duringcreditsstinger, snake attack, witness to a crime, plane", "tags_pipe": "|snake|suspense|fbi agent|death|animal attack|first class|duringcreditsstinger|snake attack|witness to a crime|plane|", "overview": "America is on the search for the murderer Eddie Kim. Sean Jones must fly to L.A. to testify in a hearing against Kim. Accompanied by FBI agent Neville Flynn, the flight receives some unexpected visitors.", "text_for_embedding": "Snakes on a Plane (2006). Genres: Action, Crime, Horror, Thriller. America is on the search for the murderer Eddie Kim. Sean Jones must fly to L.A. to testify in a hearing against Kim. Accompanied by FBI agent Neville Flynn, the flight receives some unexpected visitors.. Tags: snake, suspense, fbi agent, death, animal attack, first class, duringcreditsstinger, snake attack, witness to a crime, plane"} +{"id": "10685", "title": "The Watcher", "year": 2000, "duration_min": 96, "rating": 4.9, "genres": "Mystery, Thriller", "genres_pipe": "|Mystery|Thriller|", "keywords": "chicago, fbi, menace, covered investigation, state of emergency, investigation, suspense, serial killer, little girl, psychiatrist, fbi agent, psychotherapy", "tags_pipe": "|chicago|fbi|menace|covered investigation|state of emergency|investigation|suspense|serial killer|little girl|psychiatrist|fbi agent|psychotherapy|", "overview": "FBI agent Joel Campbell, burnt-out and shell-shocked after years spent chasing serial killers, flees L.A. to begin a new life for himself in Chicago. But five months later, Joel's best laid plans are abruptly cut short when his new hometown becomes the setting for some particularly gruesome murders--murders that could only have been committed by one man: David Allen Griffin. One of Joel's most elusive and cunning nemeses, Griffin has followed his former pursuer to Chicago in order to play a sadistic game of cat and mouse. Taunting Joel with photographs of his intended victims and leaving his crime scenes meticulously free of clues in order to keep the police at bay, Griffin derives as much pleasure out of watching Joel react to every movement as watching his victims die. But when Griffin moves into Joel's inner circle, Joel must quickly find some way to stop him before someone close to him becomes the next one to die.", "text_for_embedding": "The Watcher (2000). Genres: Mystery, Thriller. FBI agent Joel Campbell, burnt-out and shell-shocked after years spent chasing serial killers, flees L.A. to begin a new life for himself in Chicago. But five months later, Joel's best laid plans are abruptly cut short when his new hometown becomes the setting for some particularly gruesome murders--murders that could only have been committed by one man: David Allen Griffin. One of Joel's most elusive and cunning nemeses, Griffin has followed his former pursuer to Chicago in order to play a sadistic game of cat and mouse. Taunting Joel with photographs of his intended victims and leaving his crime scenes meticulously free of clues in order to keep the police at bay, Griffin derives as much pleasure out of watching Joel react to every movement as watching his victims die. But when Griffin moves into Joel's inner circle, Joel must quickly find some way to stop him before someone close to him becomes the next one to die.. Tags: chicago, fbi, menace, covered investigation, state of emergency, investigation, suspense, serial killer, little girl, psychiatrist, fbi agent, psychotherapy"} +{"id": "7220", "title": "The Punisher", "year": 2004, "duration_min": 124, "rating": 6.1, "genres": "Action, Crime, Drama", "genres_pipe": "|Action|Crime|Drama|", "keywords": "chain, submachine gun, undercover, smuggling, twin brother, marvel comic, one man army, massacre, extreme violence, family reunion, pier", "tags_pipe": "|chain|submachine gun|undercover|smuggling|twin brother|marvel comic|one man army|massacre|extreme violence|family reunion|pier|", "overview": "When undercover FBI agent Frank Castle's wife and son are slaughtered, he becomes 'the Punisher' -- a ruthless vigilante willing to go to any length to avenge his family.", "text_for_embedding": "The Punisher (2004). Genres: Action, Crime, Drama. When undercover FBI agent Frank Castle's wife and son are slaughtered, he becomes 'the Punisher' -- a ruthless vigilante willing to go to any length to avenge his family.. Tags: chain, submachine gun, undercover, smuggling, twin brother, marvel comic, one man army, massacre, extreme violence, family reunion, pier"} +{"id": "9763", "title": "Goal!: The Dream Begins", "year": 2005, "duration_min": 118, "rating": 6.6, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "restaurant, sport, coach, athlete, newcastle united, computer games", "tags_pipe": "|restaurant|sport|coach|athlete|newcastle united|computer games|", "overview": "Like millions of kids around the world, Santiago harbors the dream of being a professional footballer...However, living in the Barrios section of Los Angeles, he thinks it is only that--a dream. Until one day an extraordinary turn of events has him trying out for Premiership club Newcastle United.", "text_for_embedding": "Goal!: The Dream Begins (2005). Genres: Drama. Like millions of kids around the world, Santiago harbors the dream of being a professional footballer...However, living in the Barrios section of Los Angeles, he thinks it is only that--a dream. Until one day an extraordinary turn of events has him trying out for Premiership club Newcastle United.. Tags: restaurant, sport, coach, athlete, newcastle united, computer games"} +{"id": "72387", "title": "Safe", "year": 2012, "duration_min": 94, "rating": 6.3, "genres": "Action, Crime, Thriller", "genres_pipe": "|Action|Crime|Thriller|", "keywords": "broken trachea", "tags_pipe": "|broken trachea|", "overview": "After a former elite agent rescues a 12-year-old Chinese girl who's been abducted, they find themselves in the middle of a standoff between Triads, the Russian Mafia and high-level corrupt New York City politicians and police.", "text_for_embedding": "Safe (2012). Genres: Action, Crime, Thriller. After a former elite agent rescues a 12-year-old Chinese girl who's been abducted, they find themselves in the middle of a standoff between Triads, the Russian Mafia and high-level corrupt New York City politicians and police.. Tags: broken trachea"} +{"id": "12596", "title": "Pushing Tin", "year": 1999, "duration_min": 124, "rating": 5.7, "genres": "Comedy, Drama", "genres_pipe": "|Comedy|Drama|", "keywords": "competition, airport, air controller, adversary", "tags_pipe": "|competition|airport|air controller|adversary|", "overview": "Two air traffic controllers (John Cusack, Billy Bob Thornton) who thrive on living dangerously compete to outdo each other on several levels.", "text_for_embedding": "Pushing Tin (1999). Genres: Comedy, Drama. Two air traffic controllers (John Cusack, Billy Bob Thornton) who thrive on living dangerously compete to outdo each other on several levels.. Tags: competition, airport, air controller, adversary"} +{"id": "1892", "title": "Return of the Jedi", "year": 1983, "duration_min": 135, "rating": 7.9, "genres": "Adventure, Action, Science Fiction", "genres_pipe": "|Adventure|Action|Science Fiction|", "keywords": "rebel, brother sister relationship, emperor, space battle, matter of life and death, spaceship, death star, jabba the hutt, ewoks, jedi, space opera", "tags_pipe": "|rebel|brother sister relationship|emperor|space battle|matter of life and death|spaceship|death star|jabba the hutt|ewoks|jedi|space opera|", "overview": "As Rebel leaders map their strategy for an all-out attack on the Emperor's newer, bigger Death Star. Han Solo remains frozen in the cavernous desert fortress of Jabba the Hutt, the most loathsome outlaw in the universe, who is also keeping Princess Leia as a slave girl. Now a master of the Force, Luke Skywalker rescues his friends, but he cannot become a true Jedi Knight until he wages his own crucial battle against Darth Vader, who has sworn to win Luke over to the dark side of the Force.", "text_for_embedding": "Return of the Jedi (1983). Genres: Adventure, Action, Science Fiction. As Rebel leaders map their strategy for an all-out attack on the Emperor's newer, bigger Death Star. Han Solo remains frozen in the cavernous desert fortress of Jabba the Hutt, the most loathsome outlaw in the universe, who is also keeping Princess Leia as a slave girl. Now a master of the Force, Luke Skywalker rescues his friends, but he cannot become a true Jedi Knight until he wages his own crucial battle against Darth Vader, who has sworn to win Luke over to the dark side of the Force.. Tags: rebel, brother sister relationship, emperor, space battle, matter of life and death, spaceship, death star, jabba the hutt, ewoks, jedi, space opera"} +{"id": "13460", "title": "Doomsday", "year": 2008, "duration_min": 108, "rating": 5.8, "genres": "Action, Thriller, Science Fiction", "genres_pipe": "|Action|Thriller|Science Fiction|", "keywords": "dystopia, quarantine, futuristic, sword fight, lethal virus", "tags_pipe": "|dystopia|quarantine|futuristic|sword fight|lethal virus|", "overview": "A lethal virus spreads throughout the British isles,infecting millions and killing hundreds of thousands. To contain the threat, acting authorities brutally quarantine the country as it succumbs to fear and chaos. The quarantine is successful. Three decades later, the Reaper virus violently resurfaces in a major city. An elite group of specialists is urgently dispatched into the still-quarantined country to retrieve a cure by any means necessary. Shut off from the rest of the world, the unit must battle through a landscape that has become a waking nightmare.", "text_for_embedding": "Doomsday (2008). Genres: Action, Thriller, Science Fiction. A lethal virus spreads throughout the British isles,infecting millions and killing hundreds of thousands. To contain the threat, acting authorities brutally quarantine the country as it succumbs to fear and chaos. The quarantine is successful. Three decades later, the Reaper virus violently resurfaces in a major city. An elite group of specialists is urgently dispatched into the still-quarantined country to retrieve a cure by any means necessary. Shut off from the rest of the world, the unit must battle through a landscape that has become a waking nightmare.. Tags: dystopia, quarantine, futuristic, sword fight, lethal virus"} +{"id": "8055", "title": "The Reader", "year": 2008, "duration_min": 124, "rating": 7.2, "genres": "Drama, Romance", "genres_pipe": "|Drama|Romance|", "keywords": "germany, war crimes, trial, female prisoner, teenager, law student, teenage sexuality, older woman younger man relationship, teenage sex, affair", "tags_pipe": "|germany|war crimes|trial|female prisoner|teenager|law student|teenage sexuality|older woman younger man relationship|teenage sex|affair|", "overview": "The story of Michael Berg, a German lawyer who, as a teenager in the late 1950s, had an affair with an older woman, Hanna, who then disappeared only to resurface years later as one of the defendants in a war crimes trial stemming from her actions as a concentration camp guard late in the war. He alone realizes that Hanna is illiterate and may be concealing that fact at the expense of her freedom.", "text_for_embedding": "The Reader (2008). Genres: Drama, Romance. The story of Michael Berg, a German lawyer who, as a teenager in the late 1950s, had an affair with an older woman, Hanna, who then disappeared only to resurface years later as one of the defendants in a war crimes trial stemming from her actions as a concentration camp guard late in the war. He alone realizes that Hanna is illiterate and may be concealing that fact at the expense of her freedom.. Tags: germany, war crimes, trial, female prisoner, teenager, law student, teenage sexuality, older woman younger man relationship, teenage sex, affair"} +{"id": "50647", "title": "Wanderlust", "year": 2012, "duration_min": 98, "rating": 5.3, "genres": "Comedy", "genres_pipe": "|Comedy|", "keywords": "hippie, commune, nudism, nude protest, aftercreditsstinger, duringcreditsstinger", "tags_pipe": "|hippie|commune|nudism|nude protest|aftercreditsstinger|duringcreditsstinger|", "overview": "Rattled by sudden unemployment, a Manhattan couple surveys alternative living options, ultimately deciding to experiment with living on a rural commune where free love rules.", "text_for_embedding": "Wanderlust (2012). Genres: Comedy. Rattled by sudden unemployment, a Manhattan couple surveys alternative living options, ultimately deciding to experiment with living on a rural commune where free love rules.. Tags: hippie, commune, nudism, nude protest, aftercreditsstinger, duringcreditsstinger"} +{"id": "10719", "title": "Elf", "year": 2003, "duration_min": 97, "rating": 6.4, "genres": "Comedy, Family, Fantasy", "genres_pipe": "|Comedy|Family|Fantasy|", "keywords": "holiday, elves, santa claus, looking for birth parents, romance, north pole, christmas", "tags_pipe": "|holiday|elves|santa claus|looking for birth parents|romance|north pole|christmas|", "overview": "When young Buddy falls into Santa's gift sack on Christmas Eve, he's transported back to the North Pole and raised as a toy-making elf by Santa's helpers. But as he grows into adulthood, he can't shake the nagging feeling that he doesn't belong. Buddy vows to visit Manhattan and find his real dad, a workaholic publisher.", "text_for_embedding": "Elf (2003). Genres: Comedy, Family, Fantasy. When young Buddy falls into Santa's gift sack on Christmas Eve, he's transported back to the North Pole and raised as a toy-making elf by Santa's helpers. But as he grows into adulthood, he can't shake the nagging feeling that he doesn't belong. Buddy vows to visit Manhattan and find his real dad, a workaholic publisher.. Tags: holiday, elves, santa claus, looking for birth parents, romance, north pole, christmas"} +{"id": "9294", "title": "Phenomenon", "year": 1996, "duration_min": 123, "rating": 6.2, "genres": "Drama, Fantasy, Romance, Science Fiction", "genres_pipe": "|Drama|Fantasy|Romance|Science Fiction|", "keywords": "brain tumor, telekinesis, genius, terminal illness, doctor, psionic power", "tags_pipe": "|brain tumor|telekinesis|genius|terminal illness|doctor|psionic power|", "overview": "An ordinary man sees a bright light descend from the sky, and discovers he now has super-intelligence and telekinesis.", "text_for_embedding": "Phenomenon (1996). Genres: Drama, Fantasy, Romance, Science Fiction. An ordinary man sees a bright light descend from the sky, and discovers he now has super-intelligence and telekinesis.. Tags: brain tumor, telekinesis, genius, terminal illness, doctor, psionic power"} +{"id": "11888", "title": "Snow Dogs", "year": 2002, "duration_min": 99, "rating": 5.3, "genres": "Adventure, Comedy, Family", "genres_pipe": "|Adventure|Comedy|Family|", "keywords": "adoption, log cabin, alaska, sled dogs", "tags_pipe": "|adoption|log cabin|alaska|sled dogs|", "overview": "When a Miami dentist inherits a team of sled dogs, he's got to learn the trade or lose his pack to a crusty mountain man.", "text_for_embedding": "Snow Dogs (2002). Genres: Adventure, Comedy, Family. When a Miami dentist inherits a team of sled dogs, he's got to learn the trade or lose his pack to a crusty mountain man.. Tags: adoption, log cabin, alaska, sled dogs"} +{"id": "9647", "title": "Scrooged", "year": 1988, "duration_min": 101, "rating": 6.7, "genres": "Fantasy, Comedy, Drama", "genres_pipe": "|Fantasy|Comedy|Drama|", "keywords": "holiday, tv ratings, comedy, scrooge, christmas carol, ghost, duringcreditsstinger, christmas", "tags_pipe": "|holiday|tv ratings|comedy|scrooge|christmas carol|ghost|duringcreditsstinger|christmas|", "overview": "In this modern take on Charles Dickens' \"A Christmas Carol,\" Frank Cross (Bill Murray) is a wildly successful television executive whose cold ambition and curmudgeonly nature has driven away the love of his life, Claire Phillips (Karen Allen). But after firing a staff member, Eliot Loudermilk (Bobcat Goldthwait), on Christmas Eve, Frank is visited by a series of ghosts who give him a chance to re-evaluate his actions and right the wrongs of his past.", "text_for_embedding": "Scrooged (1988). Genres: Fantasy, Comedy, Drama. In this modern take on Charles Dickens' \"A Christmas Carol,\" Frank Cross (Bill Murray) is a wildly successful television executive whose cold ambition and curmudgeonly nature has driven away the love of his life, Claire Phillips (Karen Allen). But after firing a staff member, Eliot Loudermilk (Bobcat Goldthwait), on Christmas Eve, Frank is visited by a series of ghosts who give him a chance to re-evaluate his actions and right the wrongs of his past.. Tags: holiday, tv ratings, comedy, scrooge, christmas carol, ghost, duringcreditsstinger, christmas"} +{"id": "9353", "title": "Nacho Libre", "year": 2006, "duration_min": 92, "rating": 5.6, "genres": "Comedy, Family", "genres_pipe": "|Comedy|Family|", "keywords": "nun, sport, orphanage, ordensbruder, ringer, money", "tags_pipe": "|nun|sport|orphanage|ordensbruder|ringer|money|", "overview": "Nacho Libre is loosely based on the story of Fray Tormenta (\"Friar Storm\"), aka Rev. Sergio Gutierrez Benitez, a real-life Mexican Catholic priest who had a 23-year career as a masked luchador. He competed in order to support the orphanage he directed. The producers are Jack Black, David Klawans, Julia Pistor, and Mike White.", "text_for_embedding": "Nacho Libre (2006). Genres: Comedy, Family. Nacho Libre is loosely based on the story of Fray Tormenta (\"Friar Storm\"), aka Rev. Sergio Gutierrez Benitez, a real-life Mexican Catholic priest who had a 23-year career as a masked luchador. He competed in order to support the orphanage he directed. The producers are Jack Black, David Klawans, Julia Pistor, and Mike White.. Tags: nun, sport, orphanage, ordensbruder, ringer, money"} +{"id": "55721", "title": "Bridesmaids", "year": 2011, "duration_min": 125, "rating": 6.5, "genres": "Comedy, Romance", "genres_pipe": "|Comedy|Romance|", "keywords": "competition, jealousy, fight, materialism, bridesmaid, female friendship, fear of commitment, wealth, mother daughter relationship, wedding party, sexual humor, best friend, maid of honor, drunk, wedding dress", "tags_pipe": "|competition|jealousy|fight|materialism|bridesmaid|female friendship|fear of commitment|wealth|mother daughter relationship|wedding party|sexual humor|best friend|maid of honor|drunk|wedding dress|", "overview": "Annie’s life is a mess. But when she finds out her lifetime best friend is engaged, she simply must serve as Lillian’s maid of honor. Though lovelorn and broke, Annie bluffs her way through the expensive and bizarre rituals. With one chance to get it perfect, she’ll show Lillian and her bridesmaids just how far you’ll go for someone you love.", "text_for_embedding": "Bridesmaids (2011). Genres: Comedy, Romance. Annie’s life is a mess. But when she finds out her lifetime best friend is engaged, she simply must serve as Lillian’s maid of honor. Though lovelorn and broke, Annie bluffs her way through the expensive and bizarre rituals. With one chance to get it perfect, she’ll show Lillian and her bridesmaids just how far you’ll go for someone you love.. Tags: competition, jealousy, fight, materialism, bridesmaid, female friendship, fear of commitment, wealth, mother daughter relationship, wedding party, sexual humor, best friend, maid of honor, drunk, wedding dress"} +{"id": "109414", "title": "This Is the End", "year": 2013, "duration_min": 107, "rating": 6.3, "genres": "Action, Comedy", "genres_pipe": "|Action|Comedy|", "keywords": "rape, monster, panic, friendship, celebrity, satire, party, possession, dark comedy, end of the world, apocalypse, drug, demon, self-referential, actor", "tags_pipe": "|rape|monster|panic|friendship|celebrity|satire|party|possession|dark comedy|end of the world|apocalypse|drug|demon|self-referential|actor|", "overview": "While attending a party at James Franco's house, Seth Rogen, Jay Baruchel and many other celebrities are faced with the apocalypse.", "text_for_embedding": "This Is the End (2013). Genres: Action, Comedy. While attending a party at James Franco's house, Seth Rogen, Jay Baruchel and many other celebrities are faced with the apocalypse.. Tags: rape, monster, panic, friendship, celebrity, satire, party, possession, dark comedy, end of the world, apocalypse, drug, demon, self-referential, actor"} +{"id": "10307", "title": "Stigmata", "year": 1999, "duration_min": 103, "rating": 6.0, "genres": "Horror", "genres_pipe": "|Horror|", "keywords": "vatican, miracle, christian, faith, clergyman, atheist", "tags_pipe": "|vatican|miracle|christian|faith|clergyman|atheist|", "overview": "A young woman with no strong religious beliefs, Frankie Paige begins having strange and violent experiences, showing signs of the wounds that Jesus received when crucified. When the Vatican gets word of Frankie's situation, a high-ranking cardinal requests that the Rev. Andrew Kiernan investigate her case. Soon Kiernan realizes that very sinister forces are at work, and tries to rescue Frankie from the entity that is plaguing her.", "text_for_embedding": "Stigmata (1999). Genres: Horror. A young woman with no strong religious beliefs, Frankie Paige begins having strange and violent experiences, showing signs of the wounds that Jesus received when crucified. When the Vatican gets word of Frankie's situation, a high-ranking cardinal requests that the Rev. Andrew Kiernan investigate her case. Soon Kiernan realizes that very sinister forces are at work, and tries to rescue Frankie from the entity that is plaguing her.. Tags: vatican, miracle, christian, faith, clergyman, atheist"} +{"id": "11978", "title": "Men of Honor", "year": 2000, "duration_min": 129, "rating": 7.0, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "diving, u.s. navy", "tags_pipe": "|diving|u.s. navy|", "overview": "Against formidable odds -- and an old-school diving instructor embittered by the U.S. Navy's new, less prejudicial policies -- Carl Brashear sets his sights on becoming the Navy's first African-American master diver in this uplifting true story. Their relationship starts out on the rocks, but fate ultimately conspires to bring the men together into a setting of mutual respect, triumph and honor.", "text_for_embedding": "Men of Honor (2000). Genres: Drama. Against formidable odds -- and an old-school diving instructor embittered by the U.S. Navy's new, less prejudicial policies -- Carl Brashear sets his sights on becoming the Navy's first African-American master diver in this uplifting true story. Their relationship starts out on the rocks, but fate ultimately conspires to bring the men together into a setting of mutual respect, triumph and honor.. Tags: diving, u.s. navy"} +{"id": "22907", "title": "Takers", "year": 2010, "duration_min": 107, "rating": 6.0, "genres": "Action, Crime, Drama, Thriller", "genres_pipe": "|Action|Crime|Drama|Thriller|", "keywords": "heist", "tags_pipe": "|heist|", "overview": "A seasoned team of bank robbers, including Gordon Jennings (Idris Elba), John Rahway (Paul Walker), A.J. (Hayden Christensen), and brothers Jake (Michael Ealy) and Jesse Attica (Chris Brown) successfully complete their latest heist and lead a life of luxury while planning their next job. When Ghost (Tip T.I. Harris), a former member of their team, is released from prison he convinces the group to strike an armored car carrying $20 million. As the \"Takers\" carefully plot out their strategy and draw nearer to exacting the grand heist, a reckless police officer (Matt Dillon) inches closer to apprehending the criminals.", "text_for_embedding": "Takers (2010). Genres: Action, Crime, Drama, Thriller. A seasoned team of bank robbers, including Gordon Jennings (Idris Elba), John Rahway (Paul Walker), A.J. (Hayden Christensen), and brothers Jake (Michael Ealy) and Jesse Attica (Chris Brown) successfully complete their latest heist and lead a life of luxury while planning their next job. When Ghost (Tip T.I. Harris), a former member of their team, is released from prison he convinces the group to strike an armored car carrying $20 million. As the \"Takers\" carefully plot out their strategy and draw nearer to exacting the grand heist, a reckless police officer (Matt Dillon) inches closer to apprehending the criminals.. Tags: heist"} +{"id": "87567", "title": "The Big Wedding", "year": 2013, "duration_min": 90, "rating": 5.7, "genres": "Comedy", "genres_pipe": "|Comedy|", "keywords": "adoption, marriage, divorce, birth mother", "tags_pipe": "|adoption|marriage|divorce|birth mother|", "overview": "To the amusement of their adult children and friends, long divorced couple Don and Ellie Griffin are once again forced to play the happy couple for the sake of their adopted son's wedding after his ultra conservative biological mother unexpectedly decides to fly halfway across the world to attend. With all of the wedding guests looking on, the Griffins are hilariously forced to confront their past, present and future - and hopefully avoid killing each other in the process.", "text_for_embedding": "The Big Wedding (2013). Genres: Comedy. To the amusement of their adult children and friends, long divorced couple Don and Ellie Griffin are once again forced to play the happy couple for the sake of their adopted son's wedding after his ultra conservative biological mother unexpectedly decides to fly halfway across the world to attend. With all of the wedding guests looking on, the Griffins are hilariously forced to confront their past, present and future - and hopefully avoid killing each other in the process.. Tags: adoption, marriage, divorce, birth mother"} +{"id": "38322", "title": "Big Mommas: Like Father, Like Son", "year": 2011, "duration_min": 107, "rating": 5.3, "genres": "Crime, Comedy, Action", "genres_pipe": "|Crime|Comedy|Action|", "keywords": "undercover, fbi, sequel, comedy, disguise, fbi agent, impersonation, duringcreditsstinger", "tags_pipe": "|undercover|fbi|sequel|comedy|disguise|fbi agent|impersonation|duringcreditsstinger|", "overview": "FBI agent Malcolm Turner and his 17-year-old son, Trent, go undercover at an all-girls performing arts school after Trent witnesses a murder. Posing as Big Momma and Charmaine, they must find the murderer before he finds them.", "text_for_embedding": "Big Mommas: Like Father, Like Son (2011). Genres: Crime, Comedy, Action. FBI agent Malcolm Turner and his 17-year-old son, Trent, go undercover at an all-girls performing arts school after Trent witnesses a murder. Posing as Big Momma and Charmaine, they must find the murderer before he finds them.. Tags: undercover, fbi, sequel, comedy, disguise, fbi agent, impersonation, duringcreditsstinger"} +{"id": "45612", "title": "Source Code", "year": 2011, "duration_min": 93, "rating": 7.1, "genres": "Thriller, Science Fiction, Mystery", "genres_pipe": "|Thriller|Science Fiction|Mystery|", "keywords": "bomb, identity, fantasy, bomber, suspicion, time travel, investigation, surrealism, soldier, helicopter pilot", "tags_pipe": "|bomb|identity|fantasy|bomber|suspicion|time travel|investigation|surrealism|soldier|helicopter pilot|", "overview": "Decorated soldier Captain Colter Stevens wakes up in the body of an unknown man, discovering he's involved in a mission to find the bomber of a Chicago commuter train. He learns he's part of a top-secret experimental program that enables him to experience the final 8 minutes of another person's life. Colter re-lives the train incident over and over again, gathering more clues each time. But can he discover who is responsible for the attack before the next one happens?", "text_for_embedding": "Source Code (2011). Genres: Thriller, Science Fiction, Mystery. Decorated soldier Captain Colter Stevens wakes up in the body of an unknown man, discovering he's involved in a mission to find the bomber of a Chicago commuter train. He learns he's part of a top-secret experimental program that enables him to experience the final 8 minutes of another person's life. Colter re-lives the train incident over and over again, gathering more clues each time. But can he discover who is responsible for the attack before the next one happens?. Tags: bomb, identity, fantasy, bomber, suspicion, time travel, investigation, surrealism, soldier, helicopter pilot"} +{"id": "7305", "title": "Alive", "year": 1993, "duration_min": 120, "rating": 6.7, "genres": "Action, Adventure, Drama, Thriller", "genres_pipe": "|Action|Adventure|Drama|Thriller|", "keywords": "rugby, stranded, survival, plane wreck, airplane crash, freezing, disaster movie", "tags_pipe": "|rugby|stranded|survival|plane wreck|airplane crash|freezing|disaster movie|", "overview": "The amazing, true story of a Uruguayan rugby team's plane that crashed in the middle of the Andes mountains, and their immense will to survive and pull through alive, forced to do anything and everything they could to stay alive on meager rations and through the freezing cold.", "text_for_embedding": "Alive (1993). Genres: Action, Adventure, Drama, Thriller. The amazing, true story of a Uruguayan rugby team's plane that crashed in the middle of the Andes mountains, and their immense will to survive and pull through alive, forced to do anything and everything they could to stay alive on meager rations and through the freezing cold.. Tags: rugby, stranded, survival, plane wreck, airplane crash, freezing, disaster movie"} +{"id": "3594", "title": "The Number 23", "year": 2007, "duration_min": 101, "rating": 6.3, "genres": "Thriller, Drama, Mystery", "genres_pipe": "|Thriller|Drama|Mystery|", "keywords": "suicide, based on novel, hotel room, obsession, sadomasochism, psychological thriller, killer, family, numbers", "tags_pipe": "|suicide|based on novel|hotel room|obsession|sadomasochism|psychological thriller|killer|family|numbers|", "overview": "Walter Sparrow is an animal control officer that becomes obsessed with a mysterious book that seems to be based on his own life. As soon as he opens the book, he notices strange parallels between what he reads and what he's experienced. But now he's worried that a fictional murder might materialize.", "text_for_embedding": "The Number 23 (2007). Genres: Thriller, Drama, Mystery. Walter Sparrow is an animal control officer that becomes obsessed with a mysterious book that seems to be based on his own life. As soon as he opens the book, he notices strange parallels between what he reads and what he's experienced. But now he's worried that a fictional murder might materialize.. Tags: suicide, based on novel, hotel room, obsession, sadomasochism, psychological thriller, killer, family, numbers"} +{"id": "157841", "title": "The Young and Prodigious T.S. Spivet", "year": 2013, "duration_min": 105, "rating": 6.7, "genres": "Adventure, Drama, Family", "genres_pipe": "|Adventure|Drama|Family|", "keywords": "train, cartographer", "tags_pipe": "|train|cartographer|", "overview": "A 12-year-old cartographer secretly leaves his family's ranch in Montana where he lives with his cowboy father and scientist mother and travels across the country on board a freight train to receive an award at the Smithsonian Institute.", "text_for_embedding": "The Young and Prodigious T.S. Spivet (2013). Genres: Adventure, Drama, Family. A 12-year-old cartographer secretly leaves his family's ranch in Montana where he lives with his cowboy father and scientist mother and travels across the country on board a freight train to receive an award at the Smithsonian Institute.. Tags: train, cartographer"} +{"id": "11519", "title": "1941", "year": 1979, "duration_min": 113, "rating": 5.6, "genres": "Action, Comedy", "genres_pipe": "|Action|Comedy|", "keywords": "submarine, california, world war ii, war ship, pearl harbor, satire, los angeles, anarchic comedy", "tags_pipe": "|submarine|california|world war ii|war ship|pearl harbor|satire|los angeles|anarchic comedy|", "overview": "It's been six days since the attack on Pearl Harbor. Panic grips California, supposedly the next target of the Japanese forces. Everywhere in California, people are suffering from war nerves. Chaos erupts all over the state. An Army Air Corps Captain, a civilian with a deranged sense of Nationalism, civilian defenders, and a Motor Pool crew all end up chasing a Japanese sub planning to attack LA.", "text_for_embedding": "1941 (1979). Genres: Action, Comedy. It's been six days since the attack on Pearl Harbor. Panic grips California, supposedly the next target of the Japanese forces. Everywhere in California, people are suffering from war nerves. Chaos erupts all over the state. An Army Air Corps Captain, a civilian with a deranged sense of Nationalism, civilian defenders, and a Motor Pool crew all end up chasing a Japanese sub planning to attack LA.. Tags: submarine, california, world war ii, war ship, pearl harbor, satire, los angeles, anarchic comedy"} +{"id": "12920", "title": "Dreamer: Inspired By a True Story", "year": 2005, "duration_min": 106, "rating": 6.3, "genres": "Drama, Family", "genres_pipe": "|Drama|Family|", "keywords": "horse race, horse, kentucky, sport, based on true story, family relationships, father daughter relationship", "tags_pipe": "|horse race|horse|kentucky|sport|based on true story|family relationships|father daughter relationship|", "overview": "Ben Crane believes that a severely injured racehorse deserves another chance. He and his daughter Cale adopt the horse (in fact is a mare)and save it of being sacrificed by the owner.", "text_for_embedding": "Dreamer: Inspired By a True Story (2005). Genres: Drama, Family. Ben Crane believes that a severely injured racehorse deserves another chance. He and his daughter Cale adopt the horse (in fact is a mare)and save it of being sacrificed by the owner.. Tags: horse race, horse, kentucky, sport, based on true story, family relationships, father daughter relationship"} +{"id": "59", "title": "A History of Violence", "year": 2005, "duration_min": 96, "rating": 6.9, "genres": "Drama, Thriller, Crime", "genres_pipe": "|Drama|Thriller|Crime|", "keywords": "robbery, double life, dual identity, small town, indiana, distrust, fight, self-defense, marriage, family relationships, mistaken identity, diner, lawyer, mobster, violence", "tags_pipe": "|robbery|double life|dual identity|small town|indiana|distrust|fight|self-defense|marriage|family relationships|mistaken identity|diner|lawyer|mobster|violence|", "overview": "An average family is thrust into the spotlight after the father commits a seemingly self-defense murder at his diner.", "text_for_embedding": "A History of Violence (2005). Genres: Drama, Thriller, Crime. An average family is thrust into the spotlight after the father commits a seemingly self-defense murder at his diner.. Tags: robbery, double life, dual identity, small town, indiana, distrust, fight, self-defense, marriage, family relationships, mistaken identity, diner, lawyer, mobster, violence"} +{"id": "9335", "title": "Transporter 2", "year": 2005, "duration_min": 87, "rating": 6.2, "genres": "Action, Thriller, Crime", "genres_pipe": "|Action|Thriller|Crime|", "keywords": "martial arts, war on drugs, kidnapping, bodyguard, baby-snatching", "tags_pipe": "|martial arts|war on drugs|kidnapping|bodyguard|baby-snatching|", "overview": "Professional driver Frank Martin is living in Miami, where he is temporarily filling in for a friend as the chauffeur for a government narcotics control policymaker and his family. The young boy in the family is targeted for kidnapping, and Frank immediately becomes involved in protecting the child and exposing the kidnappers.", "text_for_embedding": "Transporter 2 (2005). Genres: Action, Thriller, Crime. Professional driver Frank Martin is living in Miami, where he is temporarily filling in for a friend as the chauffeur for a government narcotics control policymaker and his family. The young boy in the family is targeted for kidnapping, and Frank immediately becomes involved in protecting the child and exposing the kidnappers.. Tags: martial arts, war on drugs, kidnapping, bodyguard, baby-snatching"} +{"id": "12106", "title": "The Quick and the Dead", "year": 1995, "duration_min": 107, "rating": 6.3, "genres": "Action, Western", "genres_pipe": "|Action|Western|", "keywords": "gunslinger, revenge, prairie, shootout, pistol", "tags_pipe": "|gunslinger|revenge|prairie|shootout|pistol|", "overview": "A mysterious woman comes to compete in a quick-draw elimination tournament, in a town taken over by a notorious gunman.", "text_for_embedding": "The Quick and the Dead (1995). Genres: Action, Western. A mysterious woman comes to compete in a quick-draw elimination tournament, in a town taken over by a notorious gunman.. Tags: gunslinger, revenge, prairie, shootout, pistol"} +{"id": "11141", "title": "Laws of Attraction", "year": 2004, "duration_min": 90, "rating": 5.6, "genres": "Action, Comedy, Romance, Thriller", "genres_pipe": "|Action|Comedy|Romance|Thriller|", "keywords": "irland, rock star, court case, rivalry, falling in love, divorce lawyer", "tags_pipe": "|irland|rock star|court case|rivalry|falling in love|divorce lawyer|", "overview": "Amidst a sea of litigation, two New York City divorce lawyers find love.", "text_for_embedding": "Laws of Attraction (2004). Genres: Action, Comedy, Romance, Thriller. Amidst a sea of litigation, two New York City divorce lawyers find love.. Tags: irland, rock star, court case, rivalry, falling in love, divorce lawyer"} +{"id": "8649", "title": "Bringing Out the Dead", "year": 1999, "duration_min": 121, "rating": 6.6, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "new york, coma, ambulance, night life, drug addiction, hallucination, dying and death, night, ambulance man, alcoholism, teacher, hospital, violence, city, drug", "tags_pipe": "|new york|coma|ambulance|night life|drug addiction|hallucination|dying and death|night|ambulance man|alcoholism|teacher|hospital|violence|city|drug|", "overview": "48 hours in the life of a burnt-out paramedic. Once called Father Frank for his efforts to rescue lives, Frank sees the ghosts of those he failed to save around every turn. He has tried everything he can to get fired, calling in sick, delaying taking calls where he might have to face one more victim he couldn't help, yet cannot quit the job on his own.", "text_for_embedding": "Bringing Out the Dead (1999). Genres: Drama. 48 hours in the life of a burnt-out paramedic. Once called Father Frank for his efforts to rescue lives, Frank sees the ghosts of those he failed to save around every turn. He has tried everything he can to get fired, calling in sick, delaying taking calls where he might have to face one more victim he couldn't help, yet cannot quit the job on his own.. Tags: new york, coma, ambulance, night life, drug addiction, hallucination, dying and death, night, ambulance man, alcoholism, teacher, hospital, violence, city, drug"} +{"id": "31867", "title": "Repo Men", "year": 2010, "duration_min": 111, "rating": 6.2, "genres": "Action, Science Fiction, Thriller, Crime", "genres_pipe": "|Action|Science Fiction|Thriller|Crime|", "keywords": "dystopia, evil corporation, repo man, aftercreditsstinger", "tags_pipe": "|dystopia|evil corporation|repo man|aftercreditsstinger|", "overview": "In the future, medical technology has advanced to the point where people can buy artificial organs to extend their lives. But if they default on payments, an organization known as the Union sends agents to repossess the organs. Remy is one of the best agents in the business, but when he becomes the recipient of an artificial heart, he finds himself in the same dire straits as his many victims.", "text_for_embedding": "Repo Men (2010). Genres: Action, Science Fiction, Thriller, Crime. In the future, medical technology has advanced to the point where people can buy artificial organs to extend their lives. But if they default on payments, an organization known as the Union sends agents to repossess the organs. Remy is one of the best agents in the business, but when he becomes the recipient of an artificial heart, he finds himself in the same dire straits as his many victims.. Tags: dystopia, evil corporation, repo man, aftercreditsstinger"} +{"id": "10253", "title": "Dragon Wars: D-War", "year": 2007, "duration_min": 90, "rating": 4.0, "genres": "Fantasy, Drama, Horror, Action, Thriller, Science Fiction", "genres_pipe": "|Fantasy|Drama|Horror|Action|Thriller|Science Fiction|", "keywords": "giant snake, korea, building, dagger, south korea", "tags_pipe": "|giant snake|korea|building|dagger|south korea|", "overview": "Based on the Korean legend, unknown creatures will return and devastate the planet. Reporter Ethan Kendrick is called in to investigate the matter...", "text_for_embedding": "Dragon Wars: D-War (2007). Genres: Fantasy, Drama, Horror, Action, Thriller, Science Fiction. Based on the Korean legend, unknown creatures will return and devastate the planet. Reporter Ethan Kendrick is called in to investigate the matter.... Tags: giant snake, korea, building, dagger, south korea"} +{"id": "3587", "title": "Bogus", "year": 1996, "duration_min": 110, "rating": 5.4, "genres": "Fantasy, Comedy, Family", "genres_pipe": "|Fantasy|Comedy|Family|", "keywords": "circus, magic, aunt, imaginary friend", "tags_pipe": "|circus|magic|aunt|imaginary friend|", "overview": "Recently orphaned, a young boy is taken in by his godmother who is shocked to realize that she can see the boy's imaginary friend: a flamboyant, French magician named Bogus.", "text_for_embedding": "Bogus (1996). Genres: Fantasy, Comedy, Family. Recently orphaned, a young boy is taken in by his godmother who is shocked to realize that she can see the boy's imaginary friend: a flamboyant, French magician named Bogus.. Tags: circus, magic, aunt, imaginary friend"} +{"id": "124459", "title": "The Incredible Burt Wonderstone", "year": 2013, "duration_min": 100, "rating": 5.3, "genres": "Comedy", "genres_pipe": "|Comedy|", "keywords": "magic, las vegas", "tags_pipe": "|magic|las vegas|", "overview": "After breaking up with his longtime stage partner, a famous but jaded Vegas magician fights for relevance when a new, \"hip\" street magician appears on the scene.", "text_for_embedding": "The Incredible Burt Wonderstone (2013). Genres: Comedy. After breaking up with his longtime stage partner, a famous but jaded Vegas magician fights for relevance when a new, \"hip\" street magician appears on the scene.. Tags: magic, las vegas"} +{"id": "24662", "title": "Cats Don't Dance", "year": 1997, "duration_min": 75, "rating": 7.1, "genres": "Animation, Comedy, Family, Music", "genres_pipe": "|Animation|Comedy|Family|Music|", "keywords": "dance, musical, furry, talking animal, anthropomorphism, hollywood, singing, acting, movies", "tags_pipe": "|dance|musical|furry|talking animal|anthropomorphism|hollywood|singing|acting|movies|", "overview": "Danny, an ambitious singing/dancing cat, goes to Hollywood and overcomes several obstacles to fulfill his dream of becoming a movie star.", "text_for_embedding": "Cats Don't Dance (1997). Genres: Animation, Comedy, Family, Music. Danny, an ambitious singing/dancing cat, goes to Hollywood and overcomes several obstacles to fulfill his dream of becoming a movie star.. Tags: dance, musical, furry, talking animal, anthropomorphism, hollywood, singing, acting, movies"} +{"id": "32274", "title": "Cradle Will Rock", "year": 1999, "duration_min": 132, "rating": 7.2, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "", "tags_pipe": "", "overview": "A true story of politics and art in the 1930s USA, centered around a leftist musical drama and attempts to stop its production.", "text_for_embedding": "Cradle Will Rock (1999). Genres: Drama. A true story of politics and art in the 1930s USA, centered around a leftist musical drama and attempts to stop its production.. Tags: "} +{"id": "182", "title": "The Good German", "year": 2006, "duration_min": 108, "rating": 5.9, "genres": "War, Crime, Drama, Mystery, Romance, Thriller", "genres_pipe": "|War|Crime|Drama|Mystery|Romance|Thriller|", "keywords": "berlin, corruption, nazi background, love of one's life, chauffeur, black market, missile, postwar period, war correspondent, allied, truth, murder, humanity", "tags_pipe": "|berlin|corruption|nazi background|love of one's life|chauffeur|black market|missile|postwar period|war correspondent|allied|truth|murder|humanity|", "overview": "An American journalist played by George Clooney arrives in Berlin just after the end of World War Two. He becomes involved in a murder mystery surrounding a dead GI who washes up at a lakeside mansion during the Potsdam negotiations between the Allied powers. Soon his investigation connects with his search for his married pre-war German lover played by Cate Blanchett.", "text_for_embedding": "The Good German (2006). Genres: War, Crime, Drama, Mystery, Romance, Thriller. An American journalist played by George Clooney arrives in Berlin just after the end of World War Two. He becomes involved in a murder mystery surrounding a dead GI who washes up at a lakeside mansion during the Potsdam negotiations between the Allied powers. Soon his investigation connects with his search for his married pre-war German lover played by Cate Blanchett.. Tags: berlin, corruption, nazi background, love of one's life, chauffeur, black market, missile, postwar period, war correspondent, allied, truth, murder, humanity"} +{"id": "5494", "title": "George and the Dragon", "year": 2004, "duration_min": 93, "rating": 5.0, "genres": "Adventure", "genres_pipe": "|Adventure|", "keywords": "swordplay, hero, sword, dragon", "tags_pipe": "|swordplay|hero|sword|dragon|", "overview": "A knight returning from the Crusades takes on a dragon and becomes a legend.", "text_for_embedding": "George and the Dragon (2004). Genres: Adventure. A knight returning from the Crusades takes on a dragon and becomes a legend.. Tags: swordplay, hero, sword, dragon"} +{"id": "28", "title": "Apocalypse Now", "year": 1979, "duration_min": 153, "rating": 8.0, "genres": "Drama, War", "genres_pipe": "|Drama|War|", "keywords": "guerrilla, river, vietnam, vietcong, cambodia, army, insanity, tribe, green beret, jungle, apocalypse, death, napalm", "tags_pipe": "|guerrilla|river|vietnam|vietcong|cambodia|army|insanity|tribe|green beret|jungle|apocalypse|death|napalm|", "overview": "At the height of the Vietnam war, Captain Benjamin Willard is sent on a dangerous mission that, officially, \"does not exist, nor will it ever exist.\" His goal is to locate - and eliminate - a mysterious Green Beret Colonel named Walter Kurtz, who has been leading his personal army on illegal guerrilla missions into enemy territory.", "text_for_embedding": "Apocalypse Now (1979). Genres: Drama, War. At the height of the Vietnam war, Captain Benjamin Willard is sent on a dangerous mission that, officially, \"does not exist, nor will it ever exist.\" His goal is to locate - and eliminate - a mysterious Green Beret Colonel named Walter Kurtz, who has been leading his personal army on illegal guerrilla missions into enemy territory.. Tags: guerrilla, river, vietnam, vietcong, cambodia, army, insanity, tribe, green beret, jungle, apocalypse, death, napalm"} +{"id": "38073", "title": "Going the Distance", "year": 2010, "duration_min": 102, "rating": 6.0, "genres": "Comedy, Drama, Romance", "genres_pipe": "|Comedy|Drama|Romance|", "keywords": "male nudity, sex, san francisco, waitress, newspaper, bar, nudity, airplane, male female relationship, writer, new york city, masturbation, phone sex, text messaging, intern", "tags_pipe": "|male nudity|sex|san francisco|waitress|newspaper|bar|nudity|airplane|male female relationship|writer|new york city|masturbation|phone sex|text messaging|intern|", "overview": "Erin and Garrett are very much in love. When Erin moves to San Francisco to finish her journalism degree and Garrett stays behind in New York to work in the music industry, they gamely keep the romance alive with webcams and frequent-flyer miles. But just when it seems the lovers will soon be reunited, they each score a big break that could separate them for good.", "text_for_embedding": "Going the Distance (2010). Genres: Comedy, Drama, Romance. Erin and Garrett are very much in love. When Erin moves to San Francisco to finish her journalism degree and Garrett stays behind in New York to work in the music industry, they gamely keep the romance alive with webcams and frequent-flyer miles. But just when it seems the lovers will soon be reunited, they each score a big break that could separate them for good.. Tags: male nudity, sex, san francisco, waitress, newspaper, bar, nudity, airplane, male female relationship, writer, new york city, masturbation, phone sex, text messaging, intern"} +{"id": "2054", "title": "Mr. Holland's Opus", "year": 1995, "duration_min": 137, "rating": 6.9, "genres": "Music, Drama, Family", "genres_pipe": "|Music|Drama|Family|", "keywords": "composer, mentor, deaf-mute, musical, apprentice, private life, music, disabled", "tags_pipe": "|composer|mentor|deaf-mute|musical|apprentice|private life|music|disabled|", "overview": "In 1965, passionate musician Glenn Holland takes a day job as a high school music teacher, convinced it's just a small obstacle on the road to his true calling: writing a historic opus. As the decades roll by with the composition unwritten but generations of students inspired through his teaching, Holland must redefine his life's purpose.", "text_for_embedding": "Mr. Holland's Opus (1995). Genres: Music, Drama, Family. In 1965, passionate musician Glenn Holland takes a day job as a high school music teacher, convinced it's just a small obstacle on the road to his true calling: writing a historic opus. As the decades roll by with the composition unwritten but generations of students inspired through his teaching, Holland must redefine his life's purpose.. Tags: composer, mentor, deaf-mute, musical, apprentice, private life, music, disabled"} +{"id": "302156", "title": "Criminal", "year": 2016, "duration_min": 113, "rating": 5.7, "genres": "Action", "genres_pipe": "|Action|", "keywords": "cia, memory, convict, implant", "tags_pipe": "|cia|memory|convict|implant|", "overview": "Bill Pope is a CIA agent on a mission in London tracking down a shadowy hacker nicknamed \"The Dutchman.\" When he gets mysteriously ambushed and killed, an experimental procedure is used to transfer his memories into dangerous ex-convict Jericho Stewart. When he wakes up with the CIA agent's memories, his mission is to find The Dutchman and eliminate him before the hacker launches ICBM's and starts World War III. But complications soon arise and the mission turns personal.", "text_for_embedding": "Criminal (2016). Genres: Action. Bill Pope is a CIA agent on a mission in London tracking down a shadowy hacker nicknamed \"The Dutchman.\" When he gets mysteriously ambushed and killed, an experimental procedure is used to transfer his memories into dangerous ex-convict Jericho Stewart. When he wakes up with the CIA agent's memories, his mission is to find The Dutchman and eliminate him before the hacker launches ICBM's and starts World War III. But complications soon arise and the mission turns personal.. Tags: cia, memory, convict, implant"} +{"id": "606", "title": "Out of Africa", "year": 1985, "duration_min": 161, "rating": 7.0, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "dancing, train station, denmark, fire, cemetery, compass, lion, picnic, fireworks, grave, passion, farm worker, plantation, kenia, coffee plantation", "tags_pipe": "|dancing|train station|denmark|fire|cemetery|compass|lion|picnic|fireworks|grave|passion|farm worker|plantation|kenia|coffee plantation|", "overview": "Out of Africa tells the story of the life of Danish author Karen Blixen, who at the beginning of the 20th century moved to Africa to build a new life for herself. The film is based on the autobiographical novel by Karen Blixen from 1937.", "text_for_embedding": "Out of Africa (1985). Genres: Drama. Out of Africa tells the story of the life of Danish author Karen Blixen, who at the beginning of the 20th century moved to Africa to build a new life for herself. The film is based on the autobiographical novel by Karen Blixen from 1937.. Tags: dancing, train station, denmark, fire, cemetery, compass, lion, picnic, fireworks, grave, passion, farm worker, plantation, kenia, coffee plantation"} +{"id": "87502", "title": "Flight", "year": 2012, "duration_min": 138, "rating": 6.5, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "confession, airplane, f word, hangover, airplane crash, syringe, denial, porn actress, jesus freak, baseball stadium, perjury, national transportation safety board, flying upside down, narcissist, relapse", "tags_pipe": "|confession|airplane|f word|hangover|airplane crash|syringe|denial|porn actress|jesus freak|baseball stadium|perjury|national transportation safety board|flying upside down|narcissist|relapse|", "overview": "Commercial airline pilot Whip Whitaker has a problem with drugs and alcohol, though so far he's managed to complete his flights safely. His luck runs out when a disastrous mechanical malfunction sends his plane hurtling toward the ground. Whip pulls off a miraculous crash-landing that results in only six lives lost. Shaken to the core, Whip vows to get sober -- but when the crash investigation exposes his addiction, he finds himself in an even worse situation.", "text_for_embedding": "Flight (2012). Genres: Drama. Commercial airline pilot Whip Whitaker has a problem with drugs and alcohol, though so far he's managed to complete his flights safely. His luck runs out when a disastrous mechanical malfunction sends his plane hurtling toward the ground. Whip pulls off a miraculous crash-landing that results in only six lives lost. Shaken to the core, Whip vows to get sober -- but when the crash investigation exposes his addiction, he finds himself in an even worse situation.. Tags: confession, airplane, f word, hangover, airplane crash, syringe, denial, porn actress, jesus freak, baseball stadium, perjury, national transportation safety board, flying upside down, narcissist, relapse"} +{"id": "698", "title": "Moonraker", "year": 1979, "duration_min": 126, "rating": 5.9, "genres": "Action, Adventure, Thriller, Science Fiction", "genres_pipe": "|Action|Adventure|Thriller|Science Fiction|", "keywords": "venice, mass murder, space marine, space suit, marcus square, space battle, secret base, utopia, space travel, boat chase, astronaut, lasers, british secret service, weightlessness", "tags_pipe": "|venice|mass murder|space marine|space suit|marcus square|space battle|secret base|utopia|space travel|boat chase|astronaut|lasers|british secret service|weightlessness|", "overview": "During the transportation of a Space Shuttle a Boeing 747 crashes in the Atlantic Ocean yet when they go to look for the destroyed shuttle it is not there. James Bond investigates the missing mission space shuttle and soon learns that the shuttles owner Hugo Drax wants to kill all of mankind.", "text_for_embedding": "Moonraker (1979). Genres: Action, Adventure, Thriller, Science Fiction. During the transportation of a Space Shuttle a Boeing 747 crashes in the Atlantic Ocean yet when they go to look for the destroyed shuttle it is not there. James Bond investigates the missing mission space shuttle and soon learns that the shuttles owner Hugo Drax wants to kill all of mankind.. Tags: venice, mass murder, space marine, space suit, marcus square, space battle, secret base, utopia, space travel, boat chase, astronaut, lasers, british secret service, weightlessness"} +{"id": "120467", "title": "The Grand Budapest Hotel", "year": 2014, "duration_min": 99, "rating": 8.0, "genres": "Comedy, Drama", "genres_pipe": "|Comedy|Drama|", "keywords": "hotel, painting, wartime, gunfight, theft, mentor protégé relationship, european, hotel lobby, renaissance painting", "tags_pipe": "|hotel|painting|wartime|gunfight|theft|mentor protégé relationship|european|hotel lobby|renaissance painting|", "overview": "The Grand Budapest Hotel tells of a legendary concierge at a famous European hotel between the wars and his friendship with a young employee who becomes his trusted protégé. The story involves the theft and recovery of a priceless Renaissance painting, the battle for an enormous family fortune and the slow and then sudden upheavals that transformed Europe during the first half of the 20th century.", "text_for_embedding": "The Grand Budapest Hotel (2014). Genres: Comedy, Drama. The Grand Budapest Hotel tells of a legendary concierge at a famous European hotel between the wars and his friendship with a young employee who becomes his trusted protégé. The story involves the theft and recovery of a priceless Renaissance painting, the battle for an enormous family fortune and the slow and then sudden upheavals that transformed Europe during the first half of the 20th century.. Tags: hotel, painting, wartime, gunfight, theft, mentor protégé relationship, european, hotel lobby, renaissance painting"} +{"id": "11313", "title": "Hearts in Atlantis", "year": 2001, "duration_min": 101, "rating": 6.4, "genres": "Drama, Mystery", "genres_pipe": "|Drama|Mystery|", "keywords": "american football, billard, baseball bat, richard nixon, psychic power, american flag, wager, lingerie slip, single mother, moving, stranger, childhood, childhood friends, ferris wheel, straw hat", "tags_pipe": "|american football|billard|baseball bat|richard nixon|psychic power|american flag|wager|lingerie slip|single mother|moving|stranger|childhood|childhood friends|ferris wheel|straw hat|", "overview": "A widowed mother and her son change when a mysterious stranger enters their lives.", "text_for_embedding": "Hearts in Atlantis (2001). Genres: Drama, Mystery. A widowed mother and her son change when a mysterious stranger enters their lives.. Tags: american football, billard, baseball bat, richard nixon, psychic power, american flag, wager, lingerie slip, single mother, moving, stranger, childhood, childhood friends, ferris wheel, straw hat"} +{"id": "6488", "title": "Arachnophobia", "year": 1990, "duration_min": 103, "rating": 6.2, "genres": "Comedy, Horror", "genres_pipe": "|Comedy|Horror|", "keywords": "small town, outbreak, exterminator, spider bite, creature feature, spider queen, animal attack, spiders, invasive species, arachnophobia, animal horror, spider general", "tags_pipe": "|small town|outbreak|exterminator|spider bite|creature feature|spider queen|animal attack|spiders|invasive species|arachnophobia|animal horror|spider general|", "overview": "A large spider from the jungles of South America is accidentally transported in a crate with a dead body to America where it mates with a local spider. Soon after, the residents of a small California town disappear as the result of spider bites from the deadly spider offspring. It's up to a couple of doctors with the help of an insect exterminator to annihilate these eight legged freaks.", "text_for_embedding": "Arachnophobia (1990). Genres: Comedy, Horror. A large spider from the jungles of South America is accidentally transported in a crate with a dead body to America where it mates with a local spider. Soon after, the residents of a small California town disappear as the result of spider bites from the deadly spider offspring. It's up to a couple of doctors with the help of an insect exterminator to annihilate these eight legged freaks.. Tags: small town, outbreak, exterminator, spider bite, creature feature, spider queen, animal attack, spiders, invasive species, arachnophobia, animal horror, spider general"} +{"id": "10559", "title": "Frequency", "year": 2000, "duration_min": 118, "rating": 7.0, "genres": "Crime, Drama, Science Fiction, Thriller", "genres_pipe": "|Crime|Drama|Science Fiction|Thriller|", "keywords": "new york, mother, detective, baseball, radio, firemen, future, time, race against time, investigation, father, history, murder, paranormal, rescue", "tags_pipe": "|new york|mother|detective|baseball|radio|firemen|future|time|race against time|investigation|father|history|murder|paranormal|rescue|", "overview": "When a rare phenomenon gives police officer John Sullivan the chance to speak to his father, 30 years in the past, he takes the opportunity to prevent his dad's tragic death. After his actions inadvertently give rise to a series of brutal murders he and his father must find a way to fix the consequences of altering time.", "text_for_embedding": "Frequency (2000). Genres: Crime, Drama, Science Fiction, Thriller. When a rare phenomenon gives police officer John Sullivan the chance to speak to his father, 30 years in the past, he takes the opportunity to prevent his dad's tragic death. After his actions inadvertently give rise to a series of brutal murders he and his father must find a way to fix the consequences of altering time.. Tags: new york, mother, detective, baseball, radio, firemen, future, time, race against time, investigation, father, history, murder, paranormal, rescue"} +{"id": "296099", "title": "Vacation", "year": 2015, "duration_min": 99, "rating": 6.2, "genres": "Comedy", "genres_pipe": "|Comedy|", "keywords": "route 66, grand canyon, cow, vacation, road trip, sequel, dysfunctional family, family vacation, amusement park, trucker, roller coaster, theme park, airline pilot, bipolar disorder, plano texas", "tags_pipe": "|route 66|grand canyon|cow|vacation|road trip|sequel|dysfunctional family|family vacation|amusement park|trucker|roller coaster|theme park|airline pilot|bipolar disorder|plano texas|", "overview": "Hoping to bring his family closer together and to recreate his childhood vacation for his own kids, a grown up Rusty Griswold takes his wife and their two sons on a cross-country road trip to the coolest theme park in America, Walley World. Needless to say, things don't go quite as planned.", "text_for_embedding": "Vacation (2015). Genres: Comedy. Hoping to bring his family closer together and to recreate his childhood vacation for his own kids, a grown up Rusty Griswold takes his wife and their two sons on a cross-country road trip to the coolest theme park in America, Walley World. Needless to say, things don't go quite as planned.. Tags: route 66, grand canyon, cow, vacation, road trip, sequel, dysfunctional family, family vacation, amusement park, trucker, roller coaster, theme park, airline pilot, bipolar disorder, plano texas"} +{"id": "8012", "title": "Get Shorty", "year": 1995, "duration_min": 105, "rating": 6.4, "genres": "Comedy, Thriller, Crime", "genres_pipe": "|Comedy|Thriller|Crime|", "keywords": "gambling, miami, based on novel, job, murder, travel, mafia, money, debt, mobster, business, hollywood, gangster, crime, violence", "tags_pipe": "|gambling|miami|based on novel|job|murder|travel|mafia|money|debt|mobster|business|hollywood|gangster|crime|violence|", "overview": "Chili Palmer is a Miami mobster who gets sent by his boss, the psychopathic \"Bones\" Barboni, to collect a bad debt from Harry Zimm, a Hollywood producer who specializes in cheesy horror films. When Chili meets Harry's leading lady, the romantic sparks fly. After pitching his own life story as a movie idea, Chili learns that being a mobster and being a Hollywood producer really aren't all that different.", "text_for_embedding": "Get Shorty (1995). Genres: Comedy, Thriller, Crime. Chili Palmer is a Miami mobster who gets sent by his boss, the psychopathic \"Bones\" Barboni, to collect a bad debt from Harry Zimm, a Hollywood producer who specializes in cheesy horror films. When Chili meets Harry's leading lady, the romantic sparks fly. After pitching his own life story as a movie idea, Chili learns that being a mobster and being a Hollywood producer really aren't all that different.. Tags: gambling, miami, based on novel, job, murder, travel, mafia, money, debt, mobster, business, hollywood, gangster, crime, violence"} +{"id": "1574", "title": "Chicago", "year": 2002, "duration_min": 113, "rating": 6.9, "genres": "Action, Comedy, Crime, Drama, Music", "genres_pipe": "|Action|Comedy|Crime|Drama|Music|", "keywords": "chicago, based on stage musical, prison matron, jazz age, nude man murdered", "tags_pipe": "|chicago|based on stage musical|prison matron|jazz age|nude man murdered|", "overview": "Murderesses Velma Kelly and Roxie Hart find themselves on death row together and fight for the fame that will keep them from the gallows in 1920s Chicago.", "text_for_embedding": "Chicago (2002). Genres: Action, Comedy, Crime, Drama, Music. Murderesses Velma Kelly and Roxie Hart find themselves on death row together and fight for the fame that will keep them from the gallows in 1920s Chicago.. Tags: chicago, based on stage musical, prison matron, jazz age, nude man murdered"} +{"id": "9032", "title": "Big Daddy", "year": 1999, "duration_min": 93, "rating": 6.1, "genres": "Comedy, Drama", "genres_pipe": "|Comedy|Drama|", "keywords": "bachelor, law, vomit, syracuse university, law school, young boy, politically incorrect, wetting pants, central park, public urination, child's point of view, responsibility, immaturity", "tags_pipe": "|bachelor|law|vomit|syracuse university|law school|young boy|politically incorrect|wetting pants|central park|public urination|child's point of view|responsibility|immaturity|", "overview": "A lazy law school grad adopts a kid to impress his girlfriend, but everything doesn't go as planned and he becomes the unlikely foster father.", "text_for_embedding": "Big Daddy (1999). Genres: Comedy, Drama. A lazy law school grad adopts a kid to impress his girlfriend, but everything doesn't go as planned and he becomes the unlikely foster father.. Tags: bachelor, law, vomit, syracuse university, law school, young boy, politically incorrect, wetting pants, central park, public urination, child's point of view, responsibility, immaturity"} +{"id": "2770", "title": "American Pie 2", "year": 2001, "duration_min": 108, "rating": 6.0, "genres": "Comedy, Romance", "genres_pipe": "|Comedy|Romance|", "keywords": "sex, party, summer, beach house, group of friends, gross out comedy, tantra, mistaken for a special education student, superglue, sex comedy", "tags_pipe": "|sex|party|summer|beach house|group of friends|gross out comedy|tantra|mistaken for a special education student|superglue|sex comedy|", "overview": "The whole gang are back and as close as ever. They decide to get even closer by spending the summer together at a beach house. They decide to hold the biggest party ever to be seen, even if the preparation doesn't always go to plan. Especially when Stifler, Finch and Jim become more close to each other than they ever want to be and when Jim mistakes super glue for lubricant...", "text_for_embedding": "American Pie 2 (2001). Genres: Comedy, Romance. The whole gang are back and as close as ever. They decide to get even closer by spending the summer together at a beach house. They decide to hold the biggest party ever to be seen, even if the preparation doesn't always go to plan. Especially when Stifler, Finch and Jim become more close to each other than they ever want to be and when Jim mistakes super glue for lubricant.... Tags: sex, party, summer, beach house, group of friends, gross out comedy, tantra, mistaken for a special education student, superglue, sex comedy"} +{"id": "862", "title": "Toy Story", "year": 1995, "duration_min": 81, "rating": 7.7, "genres": "Animation, Comedy, Family", "genres_pipe": "|Animation|Comedy|Family|", "keywords": "jealousy, toy, boy, friendship, friends, rivalry, boy next door, new toy, toy comes to life", "tags_pipe": "|jealousy|toy|boy|friendship|friends|rivalry|boy next door|new toy|toy comes to life|", "overview": "Led by Woody, Andy's toys live happily in his room until Andy's birthday brings Buzz Lightyear onto the scene. Afraid of losing his place in Andy's heart, Woody plots against Buzz. But when circumstances separate Buzz and Woody from their owner, the duo eventually learns to put aside their differences.", "text_for_embedding": "Toy Story (1995). Genres: Animation, Comedy, Family. Led by Woody, Andy's toys live happily in his room until Andy's birthday brings Buzz Lightyear onto the scene. Afraid of losing his place in Andy's heart, Woody plots against Buzz. But when circumstances separate Buzz and Woody from their owner, the duo eventually learns to put aside their differences.. Tags: jealousy, toy, boy, friendship, friends, rivalry, boy next door, new toy, toy comes to life"} +{"id": "1637", "title": "Speed", "year": 1994, "duration_min": 116, "rating": 6.8, "genres": "Action, Adventure, Crime", "genres_pipe": "|Action|Adventure|Crime|", "keywords": "bomb, airport, bus, bus ride, highway, bomb planting", "tags_pipe": "|bomb|airport|bus|bus ride|highway|bomb planting|", "overview": "Los Angeles SWAT cop Jack Traven is up against bomb expert Howard Payne, who's after major ransom money. First it's a rigged elevator in a very tall building. Then it's a rigged bus--if it slows, it will blow, bad enough any day, but a nightmare in LA traffic. And that's still not the end.", "text_for_embedding": "Speed (1994). Genres: Action, Adventure, Crime. Los Angeles SWAT cop Jack Traven is up against bomb expert Howard Payne, who's after major ransom money. First it's a rigged elevator in a very tall building. Then it's a rigged bus--if it slows, it will blow, bad enough any day, but a nightmare in LA traffic. And that's still not the end.. Tags: bomb, airport, bus, bus ride, highway, bomb planting"} +{"id": "72570", "title": "The Vow", "year": 2012, "duration_min": 104, "rating": 7.0, "genres": "Drama, Romance", "genres_pipe": "|Drama|Romance|", "keywords": "coma, amnesia, based on true story, memory loss, car accident, romantic drama", "tags_pipe": "|coma|amnesia|based on true story|memory loss|car accident|romantic drama|", "overview": "Happy young married couple Paige and Leo are, well, happy. Then a car accident puts Paige into a life-threatening coma. Upon awakening she has lost the previous five years of memories, including those of her beloved Leo, her wedding, a confusing relationship with her parents, or the ending of her relationship with her ex-fiance. Despite these complications, Leo endeavors to win her heart again and rebuild their marriage.", "text_for_embedding": "The Vow (2012). Genres: Drama, Romance. Happy young married couple Paige and Leo are, well, happy. Then a car accident puts Paige into a life-threatening coma. Upon awakening she has lost the previous five years of memories, including those of her beloved Leo, her wedding, a confusing relationship with her parents, or the ending of her relationship with her ex-fiance. Despite these complications, Leo endeavors to win her heart again and rebuild their marriage.. Tags: coma, amnesia, based on true story, memory loss, car accident, romantic drama"} +{"id": "27569", "title": "Extraordinary Measures", "year": 2010, "duration_min": 105, "rating": 6.0, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "", "tags_pipe": "", "overview": "Working-class father John Crowley is finally on the fast track to corporate success when his two young children, Megan and Patrick, are diagnosed with Pompe disease - a condition that prevents the body from breaking down sugar. With the support of his wife, Aileen, John ditches his career and teams with unconventional specialist Dr. Robert Stonehill to found a bio-tech company and develop a cure in time to save the lives of Megan and Patrick. As Dr. Stonehill works tirelessly to prove the theories that made him the black sheep of the medical community, a powerful bond is forged between the two unlikely allies.", "text_for_embedding": "Extraordinary Measures (2010). Genres: Drama. Working-class father John Crowley is finally on the fast track to corporate success when his two young children, Megan and Patrick, are diagnosed with Pompe disease - a condition that prevents the body from breaking down sugar. With the support of his wife, Aileen, John ditches his career and teams with unconventional specialist Dr. Robert Stonehill to found a bio-tech company and develop a cure in time to save the lives of Megan and Patrick. As Dr. Stonehill works tirelessly to prove the theories that made him the black sheep of the medical community, a powerful bond is forged between the two unlikely allies.. Tags: "} +{"id": "10637", "title": "Remember the Titans", "year": 2000, "duration_min": 113, "rating": 7.4, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "ku klux klan, american football, trainer, sports team, race politics, coaction, apartheid, sport, high school, racial segregation, racist, based on true story, american football player, xenophobia, head coach", "tags_pipe": "|ku klux klan|american football|trainer|sports team|race politics|coaction|apartheid|sport|high school|racial segregation|racist|based on true story|american football player|xenophobia|head coach|", "overview": "After leading his football team to 15 winning seasons, coach Bill Yoast is demoted and replaced by Herman Boone – tough, opinionated and as different from the beloved Yoast as he could be. The two men learn to overcome their differences and turn a group of hostile young men into true champions.", "text_for_embedding": "Remember the Titans (2000). Genres: Drama. After leading his football team to 15 winning seasons, coach Bill Yoast is demoted and replaced by Herman Boone – tough, opinionated and as different from the beloved Yoast as he could be. The two men learn to overcome their differences and turn a group of hostile young men into true champions.. Tags: ku klux klan, american football, trainer, sports team, race politics, coaction, apartheid, sport, high school, racial segregation, racist, based on true story, american football player, xenophobia, head coach"} +{"id": "1669", "title": "The Hunt for Red October", "year": 1990, "duration_min": 134, "rating": 7.2, "genres": "Action, Adventure, Thriller", "genres_pipe": "|Action|Adventure|Thriller|", "keywords": "submarine, cold war, russian, defection, jack ryan", "tags_pipe": "|submarine|cold war|russian|defection|jack ryan|", "overview": "A new Soviet nuclear missile sub (a Boomer) heading out on her maiden voyage that is being tracked by a Los Angeles class American submarine suddenly goes silent and \"disappears\". This focuses the attention of both U.S. Intelligence and the U.S. Navy on the Russian Sub Commander . When it is determined that the silent Soviet Boomer may be headed for American coastal waters panic ensues. A CIA analyst, Jack Ryan, convinces the brass that the Boomer's commander may intend something other than a nuclear first strike in mind. A perilous and tense cat-and-mouse game ensues.", "text_for_embedding": "The Hunt for Red October (1990). Genres: Action, Adventure, Thriller. A new Soviet nuclear missile sub (a Boomer) heading out on her maiden voyage that is being tracked by a Los Angeles class American submarine suddenly goes silent and \"disappears\". This focuses the attention of both U.S. Intelligence and the U.S. Navy on the Russian Sub Commander . When it is determined that the silent Soviet Boomer may be headed for American coastal waters panic ensues. A CIA analyst, Jack Ryan, convinces the brass that the Boomer's commander may intend something other than a nuclear first strike in mind. A perilous and tense cat-and-mouse game ensues.. Tags: submarine, cold war, russian, defection, jack ryan"} +{"id": "132363", "title": "The Butler", "year": 2013, "duration_min": 132, "rating": 7.2, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "white house, butler, biography, civil rights", "tags_pipe": "|white house|butler|biography|civil rights|", "overview": "A look at the life of Cecil Gaines who served eight presidents as the White House's head butler from 1952 to 1986, and had a unique front-row seat as political and racial history was made.", "text_for_embedding": "The Butler (2013). Genres: Drama. A look at the life of Cecil Gaines who served eight presidents as the White House's head butler from 1952 to 1986, and had a unique front-row seat as political and racial history was made.. Tags: white house, butler, biography, civil rights"} +{"id": "9472", "title": "DodgeBall: A True Underdog Story", "year": 2004, "duration_min": 92, "rating": 6.2, "genres": "Comedy", "genres_pipe": "|Comedy|", "keywords": "underdog, competition, bank, bar, ball, cheerleader, diet, wife, sport, gymnasium, pleite, fitness-studio, love, mail order bride, cheerleading", "tags_pipe": "|underdog|competition|bank|bar|ball|cheerleader|diet|wife|sport|gymnasium|pleite|fitness-studio|love|mail order bride|cheerleading|", "overview": "When megalomaniacal White Goodman, the owner of a trendy, high-end fitness center, makes a move to take over the struggling local gym run by happy-go-lucky Pete La Fleur, there's only one way for La Fleur to fight back: dodgeball. Aided by a dodgeball guru and Goodman's attorney, La Fleur and his rag-tag team of underdogs launch a knock-down, drag-out battle in which the winner takes all.", "text_for_embedding": "DodgeBall: A True Underdog Story (2004). Genres: Comedy. When megalomaniacal White Goodman, the owner of a trendy, high-end fitness center, makes a move to take over the struggling local gym run by happy-go-lucky Pete La Fleur, there's only one way for La Fleur to fight back: dodgeball. Aided by a dodgeball guru and Goodman's attorney, La Fleur and his rag-tag team of underdogs launch a knock-down, drag-out battle in which the winner takes all.. Tags: underdog, competition, bank, bar, ball, cheerleader, diet, wife, sport, gymnasium, pleite, fitness-studio, love, mail order bride, cheerleading"} +{"id": "2907", "title": "The Addams Family", "year": 1991, "duration_min": 99, "rating": 6.7, "genres": "Horror, Comedy, Fantasy", "genres_pipe": "|Horror|Comedy|Fantasy|", "keywords": "dead wish, vampire, black humor, uncle, eccentric, werewolf, macabre, loan shark, accountant", "tags_pipe": "|dead wish|vampire|black humor|uncle|eccentric|werewolf|macabre|loan shark|accountant|", "overview": "Uncle Fester has been missing for 25 years. An evil doctor finds out and introduces a fake Fester in an attempt to get the Adams Family's money. The youngest daughter has some doubts about the new uncle Fester, but the fake uncle adapts very well to the strange family. Can the doctor carry out her evil plans and take over the Adams Family's fortune?", "text_for_embedding": "The Addams Family (1991). Genres: Horror, Comedy, Fantasy. Uncle Fester has been missing for 25 years. An evil doctor finds out and introduces a fake Fester in an attempt to get the Adams Family's money. The youngest daughter has some doubts about the new uncle Fester, but the fake uncle adapts very well to the strange family. Can the doctor carry out her evil plans and take over the Adams Family's fortune?. Tags: dead wish, vampire, black humor, uncle, eccentric, werewolf, macabre, loan shark, accountant"} +{"id": "9273", "title": "Ace Ventura: When Nature Calls", "year": 1995, "duration_min": 90, "rating": 6.1, "genres": "Crime, Comedy, Adventure", "genres_pipe": "|Crime|Comedy|Adventure|", "keywords": "africa, indigenous, human animal relationship, bat", "tags_pipe": "|africa|indigenous|human animal relationship|bat|", "overview": "Summoned from an ashram in Tibet, Ace finds himself on a perilous journey into the jungles of Africa to find Shikaka, the missing sacred animal of the friendly Wachati tribe. He must accomplish this before the wedding of the Wachati's Princess to the prince of the warrior Wachootoos. If Ace fails, the result will be a vicious tribal war.", "text_for_embedding": "Ace Ventura: When Nature Calls (1995). Genres: Crime, Comedy, Adventure. Summoned from an ashram in Tibet, Ace finds himself on a perilous journey into the jungles of Africa to find Shikaka, the missing sacred animal of the friendly Wachati tribe. He must accomplish this before the wedding of the Wachati's Princess to the prince of the warrior Wachootoos. If Ace fails, the result will be a vicious tribal war.. Tags: africa, indigenous, human animal relationship, bat"} +{"id": "9880", "title": "The Princess Diaries", "year": 2001, "duration_min": 115, "rating": 6.5, "genres": "Comedy, Family, Romance", "genres_pipe": "|Comedy|Family|Romance|", "keywords": "heir to the throne, grandmother granddaughter relationship, high school, princess, royalty, teenager, popularity, social outcast, based on young adult novel", "tags_pipe": "|heir to the throne|grandmother granddaughter relationship|high school|princess|royalty|teenager|popularity|social outcast|based on young adult novel|", "overview": "A socially awkward but very bright 15-year-old girl being raised by a single mom discovers that she is the princess of a small European country because of the recent death of her long-absent father, who, unknown to her, was the crown prince of Genovia. She must make a choice between continuing the life of a San Francisco teen or stepping up to the throne.", "text_for_embedding": "The Princess Diaries (2001). Genres: Comedy, Family, Romance. A socially awkward but very bright 15-year-old girl being raised by a single mom discovers that she is the princess of a small European country because of the recent death of her long-absent father, who, unknown to her, was the crown prince of Genovia. She must make a choice between continuing the life of a San Francisco teen or stepping up to the throne.. Tags: heir to the throne, grandmother granddaughter relationship, high school, princess, royalty, teenager, popularity, social outcast, based on young adult novel"} +{"id": "2925", "title": "The First Wives Club", "year": 1996, "duration_min": 102, "rating": 6.5, "genres": "Comedy", "genres_pipe": "|Comedy|", "keywords": "divorce, divorced woman, reunited friends", "tags_pipe": "|divorce|divorced woman|reunited friends|", "overview": "After years of helping their hubbies climb the ladder of success, three mid-life Manhattanites have been dumped for a newer, curvier model. But the trio is determined to turn their pain into gain. They come up with a cleverly devious plan to hit their exes where it really hurts - in the wallet!", "text_for_embedding": "The First Wives Club (1996). Genres: Comedy. After years of helping their hubbies climb the ladder of success, three mid-life Manhattanites have been dumped for a newer, curvier model. But the trio is determined to turn their pain into gain. They come up with a cleverly devious plan to hit their exes where it really hurts - in the wallet!. Tags: divorce, divorced woman, reunited friends"} +{"id": "807", "title": "Se7en", "year": 1995, "duration_min": 127, "rating": 8.1, "genres": "Crime, Mystery, Thriller", "genres_pipe": "|Crime|Mystery|Thriller|", "keywords": "self-fulfilling prophecy, detective, s.w.a.t., drug dealer, evisceration, lust and impulsiveness, rage and hate, pride and vanity, immoderateness, insomnia, investigation, pension, police, serial killer", "tags_pipe": "|self-fulfilling prophecy|detective|s.w.a.t.|drug dealer|evisceration|lust and impulsiveness|rage and hate|pride and vanity|immoderateness|insomnia|investigation|pension|police|serial killer|", "overview": "Two homicide detectives are on a desperate hunt for a serial killer whose crimes are based on the \"seven deadly sins\" in this dark and haunting film that takes viewers from the tortured remains of one victim to the next. The seasoned Det. Sommerset researches each sin in an effort to get inside the killer's mind, while his novice partner, Mills, scoffs at his efforts to unravel the case.", "text_for_embedding": "Se7en (1995). Genres: Crime, Mystery, Thriller. Two homicide detectives are on a desperate hunt for a serial killer whose crimes are based on the \"seven deadly sins\" in this dark and haunting film that takes viewers from the tortured remains of one victim to the next. The seasoned Det. Sommerset researches each sin in an effort to get inside the killer's mind, while his novice partner, Mills, scoffs at his efforts to unravel the case.. Tags: self-fulfilling prophecy, detective, s.w.a.t., drug dealer, evisceration, lust and impulsiveness, rage and hate, pride and vanity, immoderateness, insomnia, investigation, pension, police, serial killer"} +{"id": "17654", "title": "District 9", "year": 2009, "duration_min": 112, "rating": 7.3, "genres": "Science Fiction", "genres_pipe": "|Science Fiction|", "keywords": "slum, street gang, mutation, south africa, johannesburg, dystopia, genetics, government, satire, alien, prawn, mockumentary, alternate history, racism, metamorphosis", "tags_pipe": "|slum|street gang|mutation|south africa|johannesburg|dystopia|genetics|government|satire|alien|prawn|mockumentary|alternate history|racism|metamorphosis|", "overview": "Aliens land in South Africa and, with their ship totally disabled, have no way home. Years later, after living in a slum and wearing out their welcome the 'Non-Humans' are being moved to a new tent city overseen by Multi-National United (MNU).", "text_for_embedding": "District 9 (2009). Genres: Science Fiction. Aliens land in South Africa and, with their ship totally disabled, have no way home. Years later, after living in a slum and wearing out their welcome the 'Non-Humans' are being moved to a new tent city overseen by Multi-National United (MNU).. Tags: slum, street gang, mutation, south africa, johannesburg, dystopia, genetics, government, satire, alien, prawn, mockumentary, alternate history, racism, metamorphosis"} +{"id": "11836", "title": "The SpongeBob SquarePants Movie", "year": 2004, "duration_min": 87, "rating": 6.7, "genres": "Animation, Comedy, Family", "genres_pipe": "|Animation|Comedy|Family|", "keywords": "ocean, sea, star, water, freeze, spongebob", "tags_pipe": "|ocean|sea|star|water|freeze|spongebob|", "overview": "There's trouble brewing in Bikini Bottom. Someone has stolen King Neptune's crown, and it looks like Mr. Krab, SpongeBob's boss, is the culprit. Though he's just been passed over for the promotion of his dreams, SpongeBob stands by his boss, and along with his best pal Patrick, sets out on a treacherous mission to Shell City to reclaim the crown and save Mr. Krab's life.", "text_for_embedding": "The SpongeBob SquarePants Movie (2004). Genres: Animation, Comedy, Family. There's trouble brewing in Bikini Bottom. Someone has stolen King Neptune's crown, and it looks like Mr. Krab, SpongeBob's boss, is the culprit. Though he's just been passed over for the promotion of his dreams, SpongeBob stands by his boss, and along with his best pal Patrick, sets out on a treacherous mission to Shell City to reclaim the crown and save Mr. Krab's life.. Tags: ocean, sea, star, water, freeze, spongebob"} +{"id": "322", "title": "Mystic River", "year": 2003, "duration_min": 138, "rating": 7.6, "genres": "Thriller, Crime, Drama, Mystery", "genres_pipe": "|Thriller|Crime|Drama|Mystery|", "keywords": "child abuse, sexual abuse, loss of child, repayment, suppressed past, arbitrary law, boston, workers' quarter, reference to sprite, child", "tags_pipe": "|child abuse|sexual abuse|loss of child|repayment|suppressed past|arbitrary law|boston|workers' quarter|reference to sprite|child|", "overview": "A story about friendship and loyalty, guilt and vengeance, and the fateful affect the past has on the present.", "text_for_embedding": "Mystic River (2003). Genres: Thriller, Crime, Drama, Mystery. A story about friendship and loyalty, guilt and vengeance, and the fateful affect the past has on the present.. Tags: child abuse, sexual abuse, loss of child, repayment, suppressed past, arbitrary law, boston, workers' quarter, reference to sprite, child"} +{"id": "70", "title": "Million Dollar Baby", "year": 2004, "duration_min": 132, "rating": 7.7, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "transporter, suicide attempt, strong woman, boxer, dying and death, stroke of fate, training, advancement, sport, female protagonist, boxing trainer, determination", "tags_pipe": "|transporter|suicide attempt|strong woman|boxer|dying and death|stroke of fate|training|advancement|sport|female protagonist|boxing trainer|determination|", "overview": "Despondent over a painful estrangement from his daughter, trainer Frankie Dunn isn't prepared for boxer Maggie Fitzgerald to enter his life. But Maggie's determined to go pro and to convince Dunn and his cohort to help her.", "text_for_embedding": "Million Dollar Baby (2004). Genres: Drama. Despondent over a painful estrangement from his daughter, trainer Frankie Dunn isn't prepared for boxer Maggie Fitzgerald to enter his life. But Maggie's determined to go pro and to convince Dunn and his cohort to help her.. Tags: transporter, suicide attempt, strong woman, boxer, dying and death, stroke of fate, training, advancement, sport, female protagonist, boxing trainer, determination"} +{"id": "9535", "title": "Analyze This", "year": 1999, "duration_min": 103, "rating": 6.4, "genres": "Comedy, Crime", "genres_pipe": "|Comedy|Crime|", "keywords": "new york, mafia boss, wedding, psychiatrist", "tags_pipe": "|new york|mafia boss|wedding|psychiatrist|", "overview": "Countless wiseguy films are spoofed in this film that centers on the neuroses and angst of a powerful Mafia racketeer who suffers from panic attacks. When Paul Vitti needs help dealing with his role in the \"family,\" unlucky shrink Dr. Ben Sobel is given just days to resolve Vitti's emotional crisis and turn him into a happy, well-adjusted gangster.", "text_for_embedding": "Analyze This (1999). Genres: Comedy, Crime. Countless wiseguy films are spoofed in this film that centers on the neuroses and angst of a powerful Mafia racketeer who suffers from panic attacks. When Paul Vitti needs help dealing with his role in the \"family,\" unlucky shrink Dr. Ben Sobel is given just days to resolve Vitti's emotional crisis and turn him into a happy, well-adjusted gangster.. Tags: new york, mafia boss, wedding, psychiatrist"} +{"id": "11036", "title": "The Notebook", "year": 2004, "duration_min": 123, "rating": 7.7, "genres": "Romance, Drama", "genres_pipe": "|Romance|Drama|", "keywords": "poem, river, sadness, fight, love of one's life, dementia, class, secret love, tears, candle, mailbox", "tags_pipe": "|poem|river|sadness|fight|love of one's life|dementia|class|secret love|tears|candle|mailbox|", "overview": "An epic love story centered around an older man who reads aloud to a woman with Alzheimer's. From a faded notebook, the old man's words bring to life the story about a couple who is separated by World War II, and is then passionately reunited, seven years later, after they have taken different paths.", "text_for_embedding": "The Notebook (2004). Genres: Romance, Drama. An epic love story centered around an older man who reads aloud to a woman with Alzheimer's. From a faded notebook, the old man's words bring to life the story about a couple who is separated by World War II, and is then passionately reunited, seven years later, after they have taken different paths.. Tags: poem, river, sadness, fight, love of one's life, dementia, class, secret love, tears, candle, mailbox"} +{"id": "6557", "title": "27 Dresses", "year": 2008, "duration_min": 111, "rating": 6.1, "genres": "Comedy, Romance", "genres_pipe": "|Comedy|Romance|", "keywords": "lovesickness, newspaper, bar, sister sister relationship, new love, wedding planer, witness, bride, bridesmaid, sister, music, romantic comedy, sibling rivalry, reporter, wedding", "tags_pipe": "|lovesickness|newspaper|bar|sister sister relationship|new love|wedding planer|witness|bride|bridesmaid|sister|music|romantic comedy|sibling rivalry|reporter|wedding|", "overview": "Altruistic Jane finds herself facing her worst nightmare as her younger sister announces her engagement to the man Jane secretly adores.", "text_for_embedding": "27 Dresses (2008). Genres: Comedy, Romance. Altruistic Jane finds herself facing her worst nightmare as her younger sister announces her engagement to the man Jane secretly adores.. Tags: lovesickness, newspaper, bar, sister sister relationship, new love, wedding planer, witness, bride, bridesmaid, sister, music, romantic comedy, sibling rivalry, reporter, wedding"} +{"id": "18126", "title": "Hannah Montana: The Movie", "year": 2009, "duration_min": 102, "rating": 6.0, "genres": "Comedy, Drama, Family, Music, Romance", "genres_pipe": "|Comedy|Drama|Family|Music|Romance|", "keywords": "double life, pop star, musical, tennessee, teenage girl, teen movie, teenager, hometown, famous", "tags_pipe": "|double life|pop star|musical|tennessee|teenage girl|teen movie|teenager|hometown|famous|", "overview": "When Miley Stewart (aka pop-star Hannah Montana) gets too caught up in the superstar celebrity lifestyle, her dad decides it's time for a total change of scenery. But sweet nibblets! Miley must trade in all the glitz and glamour of Hollywood for some ol' blue jeans on the family farm in Tennessee, and question if she can be both Miley Stewart and Hannah Montana. With a little help from her friends – and awesome guest stars Taylor Swift, Rascal Flatts and Vanessa Williams – will she figure out whether to choose Hannah or Miley?", "text_for_embedding": "Hannah Montana: The Movie (2009). Genres: Comedy, Drama, Family, Music, Romance. When Miley Stewart (aka pop-star Hannah Montana) gets too caught up in the superstar celebrity lifestyle, her dad decides it's time for a total change of scenery. But sweet nibblets! Miley must trade in all the glitz and glamour of Hollywood for some ol' blue jeans on the family farm in Tennessee, and question if she can be both Miley Stewart and Hannah Montana. With a little help from her friends – and awesome guest stars Taylor Swift, Rascal Flatts and Vanessa Williams – will she figure out whether to choose Hannah or Miley?. Tags: double life, pop star, musical, tennessee, teenage girl, teen movie, teenager, hometown, famous"} +{"id": "16340", "title": "Rugrats in Paris: The Movie", "year": 2000, "duration_min": 78, "rating": 6.0, "genres": "Adventure, Animation, Comedy, Family", "genres_pipe": "|Adventure|Animation|Comedy|Family|", "keywords": "paris, invention", "tags_pipe": "|paris|invention|", "overview": "The Rugrats are back! There's Tommy the brave one, Chuckie the timid one, Phil and Lil the odd couple, Dil, and spoiled brat Angelica. This time they're wreaking havoc in Paris, France, where Tommy's dad Stu is summoned after yet another one of his inventions took a dump.", "text_for_embedding": "Rugrats in Paris: The Movie (2000). Genres: Adventure, Animation, Comedy, Family. The Rugrats are back! There's Tommy the brave one, Chuckie the timid one, Phil and Lil the odd couple, Dil, and spoiled brat Angelica. This time they're wreaking havoc in Paris, France, where Tommy's dad Stu is summoned after yet another one of his inventions took a dump.. Tags: paris, invention"} +{"id": "10333", "title": "The Prince of Tides", "year": 1991, "duration_min": 132, "rating": 5.9, "genres": "Drama, Romance", "genres_pipe": "|Drama|Romance|", "keywords": "american football, trainer, twin sister, suppressed past, psychiatrist, extramarital affair, woman director", "tags_pipe": "|american football|trainer|twin sister|suppressed past|psychiatrist|extramarital affair|woman director|", "overview": "A troubled man talks to his suicidal sister's psychiatrist about their family history and falls in love with her in the process.", "text_for_embedding": "The Prince of Tides (1991). Genres: Drama, Romance. A troubled man talks to his suicidal sister's psychiatrist about their family history and falls in love with her in the process.. Tags: american football, trainer, twin sister, suppressed past, psychiatrist, extramarital affair, woman director"} +{"id": "4476", "title": "Legends of the Fall", "year": 1994, "duration_min": 133, "rating": 7.2, "genres": "Adventure, Drama, Romance, War", "genres_pipe": "|Adventure|Drama|Romance|War|", "keywords": "brother brother relationship, montana, based on novel, world war i, journey round the world", "tags_pipe": "|brother brother relationship|montana|based on novel|world war i|journey round the world|", "overview": "An epic tale of three brothers and their father living in the remote wilderness of 1900s USA and how their lives are affected by nature, history, war, and love.", "text_for_embedding": "Legends of the Fall (1994). Genres: Adventure, Drama, Romance, War. An epic tale of three brothers and their father living in the remote wilderness of 1900s USA and how their lives are affected by nature, history, war, and love.. Tags: brother brother relationship, montana, based on novel, world war i, journey round the world"} +{"id": "22947", "title": "Up in the Air", "year": 2009, "duration_min": 109, "rating": 6.7, "genres": "Drama, Romance", "genres_pipe": "|Drama|Romance|", "keywords": "suitcase, business, omaha, on the road, downsizing, cross country, duringcreditsstinger", "tags_pipe": "|suitcase|business|omaha|on the road|downsizing|cross country|duringcreditsstinger|", "overview": "George Clooney plays the dry cynical character of Ryan Bingham, an executive who specializes in \"downsizing\". Ryan lives out of his suitcase, traveling the country for the sole purpose terminating unwanted employees day after day. Just as Ryan is about to reach his life-long goal of the ten million mile frequent flyer mark some major changes come his way. Changes that threaten to crack the cold heartless exterior that is Ryan Bingham.", "text_for_embedding": "Up in the Air (2009). Genres: Drama, Romance. George Clooney plays the dry cynical character of Ryan Bingham, an executive who specializes in \"downsizing\". Ryan lives out of his suitcase, traveling the country for the sole purpose terminating unwanted employees day after day. Just as Ryan is about to reach his life-long goal of the ten million mile frequent flyer mark some major changes come his way. Changes that threaten to crack the cold heartless exterior that is Ryan Bingham.. Tags: suitcase, business, omaha, on the road, downsizing, cross country, duringcreditsstinger"} +{"id": "2755", "title": "About Schmidt", "year": 2002, "duration_min": 125, "rating": 6.7, "genres": "Drama, Comedy", "genres_pipe": "|Drama|Comedy|", "keywords": "wife husband relationship, channel surfing, mullet, spiritual journey, life changing, pioneer village, family gathering", "tags_pipe": "|wife husband relationship|channel surfing|mullet|spiritual journey|life changing|pioneer village|family gathering|", "overview": "66-year-old Warren Schmidt is a retired insurance salesman and has no particular plans other than to drive around in the motor home his wife insisted they buy. He's not altogether bitter, but not happy either, as everything his wife does annoys him, and he disapproves of the man his daughter is about to marry. When his wife suddenly dies, he sets out to postpone the imminent marriage of his daughter to a man he doesn't like, while coping with discoveries about his late wife and himself in the process.", "text_for_embedding": "About Schmidt (2002). Genres: Drama, Comedy. 66-year-old Warren Schmidt is a retired insurance salesman and has no particular plans other than to drive around in the motor home his wife insisted they buy. He's not altogether bitter, but not happy either, as everything his wife does annoys him, and he disapproves of the man his daughter is about to marry. When his wife suddenly dies, he sets out to postpone the imminent marriage of his daughter to a man he doesn't like, while coping with discoveries about his late wife and himself in the process.. Tags: wife husband relationship, channel surfing, mullet, spiritual journey, life changing, pioneer village, family gathering"} +{"id": "82654", "title": "Warm Bodies", "year": 2013, "duration_min": 97, "rating": 6.4, "genres": "Horror, Comedy, Romance", "genres_pipe": "|Horror|Comedy|Romance|", "keywords": "post-apocalyptic, dystopia, zombie, zombie apocalypse, interspecies romance, based on young adult novel", "tags_pipe": "|post-apocalyptic|dystopia|zombie|zombie apocalypse|interspecies romance|based on young adult novel|", "overview": "After a zombie becomes involved with the girlfriend of one of his victims, their romance sets in motion a sequence of events that might transform the entire lifeless world.", "text_for_embedding": "Warm Bodies (2013). Genres: Horror, Comedy, Romance. After a zombie becomes involved with the girlfriend of one of his victims, their romance sets in motion a sequence of events that might transform the entire lifeless world.. Tags: post-apocalyptic, dystopia, zombie, zombie apocalypse, interspecies romance, based on young adult novel"} +{"id": "59967", "title": "Looper", "year": 2012, "duration_min": 118, "rating": 6.6, "genres": "Action, Thriller, Science Fiction", "genres_pipe": "|Action|Thriller|Science Fiction|", "keywords": "suicide, assassin, drug addiction, future, time travel, dystopia, retirement, boy, murder, organized crime, tragedy, execution, violence, criminal, drug addict", "tags_pipe": "|suicide|assassin|drug addiction|future|time travel|dystopia|retirement|boy|murder|organized crime|tragedy|execution|violence|criminal|drug addict|", "overview": "In the futuristic action thriller Looper, time travel will be invented but it will be illegal and only available on the black market. When the mob wants to get rid of someone, they will send their target 30 years into the past where a looper, a hired gun, like Joe is waiting to mop up. Joe is getting rich and life is good until the day the mob decides to close the loop, sending back Joe's future self for assassination.", "text_for_embedding": "Looper (2012). Genres: Action, Thriller, Science Fiction. In the futuristic action thriller Looper, time travel will be invented but it will be illegal and only available on the black market. When the mob wants to get rid of someone, they will send their target 30 years into the past where a looper, a hired gun, like Joe is waiting to mop up. Joe is getting rich and life is good until the day the mob decides to close the loop, sending back Joe's future self for assassination.. Tags: suicide, assassin, drug addiction, future, time travel, dystopia, retirement, boy, murder, organized crime, tragedy, execution, violence, criminal, drug addict"} +{"id": "16300", "title": "Down to Earth", "year": 2001, "duration_min": 87, "rating": 4.9, "genres": "Fantasy, Comedy, Science Fiction, Romance", "genres_pipe": "|Fantasy|Comedy|Science Fiction|Romance|", "keywords": "", "tags_pipe": "", "overview": "After dying before his time, an aspiring comic gets a second shot at life... by being reincarnated as a wealthy but un-likable businessman.", "text_for_embedding": "Down to Earth (2001). Genres: Fantasy, Comedy, Science Fiction, Romance. After dying before his time, an aspiring comic gets a second shot at life... by being reincarnated as a wealthy but un-likable businessman.. Tags: "} +{"id": "9598", "title": "Babe", "year": 1995, "duration_min": 89, "rating": 6.0, "genres": "Fantasy, Drama, Comedy, Family", "genres_pipe": "|Fantasy|Drama|Comedy|Family|", "keywords": "sheep, pig, affection, piglet, heroism, talking animal, separation, german shepherd, grandson, talking pig", "tags_pipe": "|sheep|pig|affection|piglet|heroism|talking animal|separation|german shepherd|grandson|talking pig|", "overview": "Babe is a little pig who doesn't quite know his place in the world. With a bunch of odd friends, like Ferdinand the duck who thinks he is a rooster and Fly the dog he calls mom, Babe realizes that he has the makings to become the greatest sheep pig of all time, and Farmer Hogget knows it. With the help of the sheep dogs Babe learns that a pig can be anything that he wants to be.", "text_for_embedding": "Babe (1995). Genres: Fantasy, Drama, Comedy, Family. Babe is a little pig who doesn't quite know his place in the world. With a bunch of odd friends, like Ferdinand the duck who thinks he is a rooster and Fly the dog he calls mom, Babe realizes that he has the makings to become the greatest sheep pig of all time, and Farmer Hogget knows it. With the help of the sheep dogs Babe learns that a pig can be anything that he wants to be.. Tags: sheep, pig, affection, piglet, heroism, talking animal, separation, german shepherd, grandson, talking pig"} +{"id": "82696", "title": "Hope Springs", "year": 2012, "duration_min": 100, "rating": 5.8, "genres": "Drama, Comedy, Romance", "genres_pipe": "|Drama|Comedy|Romance|", "keywords": "renewing wedding vows, marriage counselling", "tags_pipe": "|renewing wedding vows|marriage counselling|", "overview": "After thirty years of marriage, a middle-aged couple attends an intense, week-long counseling session to work on their relationship.", "text_for_embedding": "Hope Springs (2012). Genres: Drama, Comedy, Romance. After thirty years of marriage, a middle-aged couple attends an intense, week-long counseling session to work on their relationship.. Tags: renewing wedding vows, marriage counselling"} +{"id": "9870", "title": "Forgetting Sarah Marshall", "year": 2008, "duration_min": 111, "rating": 6.4, "genres": "Comedy, Romance, Drama", "genres_pipe": "|Comedy|Romance|Drama|", "keywords": "hawaii, one-night stand, beauty", "tags_pipe": "|hawaii|one-night stand|beauty|", "overview": "When Sarah Marshall dumps aspiring musician Peter Bretter for rock star Aldous Snow, Peter's world comes crashing down. His best friend suggests that Peter should get away from everything and to fly off to Hawaii to escape all his problems. After arriving in Hawaii and meeting the beautiful Rachel Jansen, Peter is shocked to see not only Aldous Snow in Hawaii, but also Sarah Marshall.", "text_for_embedding": "Forgetting Sarah Marshall (2008). Genres: Comedy, Romance, Drama. When Sarah Marshall dumps aspiring musician Peter Bretter for rock star Aldous Snow, Peter's world comes crashing down. His best friend suggests that Peter should get away from everything and to fly off to Hawaii to escape all his problems. After arriving in Hawaii and meeting the beautiful Rachel Jansen, Peter is shocked to see not only Aldous Snow in Hawaii, but also Sarah Marshall.. Tags: hawaii, one-night stand, beauty"} +{"id": "8292", "title": "Four Brothers", "year": 2005, "duration_min": 109, "rating": 6.7, "genres": "Action, Crime", "genres_pipe": "|Action|Crime|", "keywords": "brother brother relationship, robbery, arbitrary law, adoptive mother, revenge, murder, violence, detroit, duringcreditsstinger, interracial adoption", "tags_pipe": "|brother brother relationship|robbery|arbitrary law|adoptive mother|revenge|murder|violence|detroit|duringcreditsstinger|interracial adoption|", "overview": "Four adopted brothers return to their Detroit hometown when their mother is murdered and vow to exact revenge on the killers.", "text_for_embedding": "Four Brothers (2005). Genres: Action, Crime. Four adopted brothers return to their Detroit hometown when their mother is murdered and vow to exact revenge on the killers.. Tags: brother brother relationship, robbery, arbitrary law, adoptive mother, revenge, murder, violence, detroit, duringcreditsstinger, interracial adoption"} +{"id": "8780", "title": "Baby Mama", "year": 2008, "duration_min": 99, "rating": 5.8, "genres": "Comedy", "genres_pipe": "|Comedy|", "keywords": "pregnancy and birth, surrogate mother", "tags_pipe": "|pregnancy and birth|surrogate mother|", "overview": "A successful, single businesswoman who dreams of having a baby discovers she is infertile and hires a working class woman to be her unlikely surrogate.", "text_for_embedding": "Baby Mama (2008). Genres: Comedy. A successful, single businesswoman who dreams of having a baby discovers she is infertile and hires a working class woman to be her unlikely surrogate.. Tags: pregnancy and birth, surrogate mother"} +{"id": "9715", "title": "Hope Floats", "year": 1998, "duration_min": 114, "rating": 5.8, "genres": "Drama, Romance", "genres_pipe": "|Drama|Romance|", "keywords": "texas, telegram, despair, leaving one's family, funeral, costume, loss, high school, judgment, dog, pond", "tags_pipe": "|texas|telegram|despair|leaving one's family|funeral|costume|loss|high school|judgment|dog|pond|", "overview": "Birdee Pruitt has been humiliated on live television by her best friend, Connie, who's been sleeping with Birdee's husband, Bill. Birdee tries starting over with her daughter, Bernice, by returning to her small Texas hometown, but she's faced with petty old acquaintances who are thrilled to see Birdee unhappy -- except for her friend Justin. As he helps Birdee get back on her feet, love begins to blossom.", "text_for_embedding": "Hope Floats (1998). Genres: Drama, Romance. Birdee Pruitt has been humiliated on live television by her best friend, Connie, who's been sleeping with Birdee's husband, Bill. Birdee tries starting over with her daughter, Bernice, by returning to her small Texas hometown, but she's faced with petty old acquaintances who are thrilled to see Birdee unhappy -- except for her friend Justin. As he helps Birdee get back on her feet, love begins to blossom.. Tags: texas, telegram, despair, leaving one's family, funeral, costume, loss, high school, judgment, dog, pond"} +{"id": "10521", "title": "Bride Wars", "year": 2009, "duration_min": 89, "rating": 5.9, "genres": "Comedy", "genres_pipe": "|Comedy|", "keywords": "bride, friendship, engagement, rivalry, wedding, family feud", "tags_pipe": "|bride|friendship|engagement|rivalry|wedding|family feud|", "overview": "Two best friends become rivals when their respective weddings are accidentally booked for the same day.", "text_for_embedding": "Bride Wars (2009). Genres: Comedy. Two best friends become rivals when their respective weddings are accidentally booked for the same day.. Tags: bride, friendship, engagement, rivalry, wedding, family feud"} +{"id": "10762", "title": "Without a Paddle", "year": 2004, "duration_min": 95, "rating": 5.3, "genres": "Action, Adventure, Comedy, Thriller", "genres_pipe": "|Action|Adventure|Comedy|Thriller|", "keywords": "death of a friend, treasure hunt", "tags_pipe": "|death of a friend|treasure hunt|", "overview": "Three friends, whose lives have been drifting apart, reunite for the funeral of a fourth childhood friend. When looking through their childhood belongings, they discover a trunk which contained details on a quest their friend was attempting. It revealed that he was hot on the trail of the $200,000 that went missing with airplane hijacker D.B. Cooper in 1971. They decide to continue his journey, but do not understand the dangers they will soon encounter.", "text_for_embedding": "Without a Paddle (2004). Genres: Action, Adventure, Comedy, Thriller. Three friends, whose lives have been drifting apart, reunite for the funeral of a fourth childhood friend. When looking through their childhood belongings, they discover a trunk which contained details on a quest their friend was attempting. It revealed that he was hot on the trail of the $200,000 that went missing with airplane hijacker D.B. Cooper in 1971. They decide to continue his journey, but do not understand the dangers they will soon encounter.. Tags: death of a friend, treasure hunt"} +{"id": "10096", "title": "13 Going on 30", "year": 2004, "duration_min": 98, "rating": 6.3, "genres": "Comedy, Fantasy, Romance", "genres_pipe": "|Comedy|Fantasy|Romance|", "keywords": "new york, photographer, editor-in-chief, wish, michael jackson, child as an adult, best friends in love", "tags_pipe": "|new york|photographer|editor-in-chief|wish|michael jackson|child as an adult|best friends in love|", "overview": "After total humiliation at her thirteenth birthday party, Jenna Rink wants to just hide until she's thirty. With a little magic, her wish is granted, but it turns out that being thirty isn't as always as awesome as she thought it would be!", "text_for_embedding": "13 Going on 30 (2004). Genres: Comedy, Fantasy, Romance. After total humiliation at her thirteenth birthday party, Jenna Rink wants to just hide until she's thirty. With a little magic, her wish is granted, but it turns out that being thirty isn't as always as awesome as she thought it would be!. Tags: new york, photographer, editor-in-chief, wish, michael jackson, child as an adult, best friends in love"} +{"id": "59436", "title": "Midnight in Paris", "year": 2011, "duration_min": 94, "rating": 7.4, "genres": "Fantasy, Comedy, Romance", "genres_pipe": "|Fantasy|Comedy|Romance|", "keywords": "paris, painter, detective, based on novel, screenwriter, forbidden love, time travel, midnight, nostalgia, past, sculpture, hemingway", "tags_pipe": "|paris|painter|detective|based on novel|screenwriter|forbidden love|time travel|midnight|nostalgia|past|sculpture|hemingway|", "overview": "A romantic comedy about a family traveling to the French capital for business. The party includes a young engaged couple forced to confront the illusion that a life different from their own is better.", "text_for_embedding": "Midnight in Paris (2011). Genres: Fantasy, Comedy, Romance. A romantic comedy about a family traveling to the French capital for business. The party includes a young engaged couple forced to confront the illusion that a life different from their own is better.. Tags: paris, painter, detective, based on novel, screenwriter, forbidden love, time travel, midnight, nostalgia, past, sculpture, hemingway"} +{"id": "227783", "title": "The Nut Job", "year": 2014, "duration_min": 85, "rating": 5.5, "genres": "Animation, Comedy, Family, Adventure", "genres_pipe": "|Animation|Comedy|Family|Adventure|", "keywords": "squirrel, 3d", "tags_pipe": "|squirrel|3d|", "overview": "Surly, a curmudgeon, independent squirrel is banished from his park and forced to survive in the city. Lucky for him, he stumbles on the one thing that may be able to save his life, and the rest of park community, as they gear up for winter - Maury's Nut Store.", "text_for_embedding": "The Nut Job (2014). Genres: Animation, Comedy, Family, Adventure. Surly, a curmudgeon, independent squirrel is banished from his park and forced to survive in the city. Lucky for him, he stumbles on the one thing that may be able to save his life, and the rest of park community, as they gear up for winter - Maury's Nut Store.. Tags: squirrel, 3d"} +{"id": "4133", "title": "Blow", "year": 2001, "duration_min": 124, "rating": 7.4, "genres": "Crime, Drama", "genres_pipe": "|Crime|Drama|", "keywords": "1970s, war on drugs, drug addiction, drug traffic, drug smuggle, rise and fall", "tags_pipe": "|1970s|war on drugs|drug addiction|drug traffic|drug smuggle|rise and fall|", "overview": "A boy named George Jung grows up in a struggling family in the 1950's. His mother nags at her husband as he is trying to make a living for the family. It is finally revealed that George's father cannot make a living and the family goes bankrupt. George does not want the same thing to happen to him, and his friend Tuna, in the 1960's, suggests that he deal marijuana. He is a big hit in California in the 1960's, yet he goes to jail, where he finds out about the wonders of cocaine. As a result, when released, he gets rich by bringing cocaine to America. However, he soon pays the price.", "text_for_embedding": "Blow (2001). Genres: Crime, Drama. A boy named George Jung grows up in a struggling family in the 1950's. His mother nags at her husband as he is trying to make a living for the family. It is finally revealed that George's father cannot make a living and the family goes bankrupt. George does not want the same thing to happen to him, and his friend Tuna, in the 1960's, suggests that he deal marijuana. He is a big hit in California in the 1960's, yet he goes to jail, where he finds out about the wonders of cocaine. As a result, when released, he gets rich by bringing cocaine to America. However, he soon pays the price.. Tags: 1970s, war on drugs, drug addiction, drug traffic, drug smuggle, rise and fall"} +{"id": "10207", "title": "Message in a Bottle", "year": 1999, "duration_min": 131, "rating": 5.8, "genres": "Romance, Drama", "genres_pipe": "|Romance|Drama|", "keywords": "sailboat, anonymous letter, sailing, love letter, bottle", "tags_pipe": "|sailboat|anonymous letter|sailing|love letter|bottle|", "overview": "A woman finds a romantic letter in a bottle washed ashore and tracks down the author, a widowed shipbuilder whose wife died tragically early. As a deep and mutual attraction blossoms, the man struggles to make peace with his past so that he can move on and find happiness.", "text_for_embedding": "Message in a Bottle (1999). Genres: Romance, Drama. A woman finds a romantic letter in a bottle washed ashore and tracks down the author, a widowed shipbuilder whose wife died tragically early. As a deep and mutual attraction blossoms, the man struggles to make peace with his past so that he can move on and find happiness.. Tags: sailboat, anonymous letter, sailing, love letter, bottle"} +{"id": "172", "title": "Star Trek V: The Final Frontier", "year": 1989, "duration_min": 107, "rating": 5.6, "genres": "Science Fiction, Action, Adventure, Thriller", "genres_pipe": "|Science Fiction|Action|Adventure|Thriller|", "keywords": "federation, starfleet, uss enterprise-a, sha-ka-ree, loss of brother, self sacrifice, hostage, liberation of hostage, romulans, klingon, vulcan, space opera", "tags_pipe": "|federation|starfleet|uss enterprise-a|sha-ka-ree|loss of brother|self sacrifice|hostage|liberation of hostage|romulans|klingon|vulcan|space opera|", "overview": "Capt. Kirk and his crew must deal with Mr. Spock's half brother who kidnaps three diplomats and hijacks the Enterprise in his obsessive search for God.", "text_for_embedding": "Star Trek V: The Final Frontier (1989). Genres: Science Fiction, Action, Adventure, Thriller. Capt. Kirk and his crew must deal with Mr. Spock's half brother who kidnaps three diplomats and hijacks the Enterprise in his obsessive search for God.. Tags: federation, starfleet, uss enterprise-a, sha-ka-ree, loss of brother, self sacrifice, hostage, liberation of hostage, romulans, klingon, vulcan, space opera"} +{"id": "21972", "title": "Like Mike", "year": 2002, "duration_min": 99, "rating": 5.7, "genres": "Comedy, Drama, Family, Fantasy", "genres_pipe": "|Comedy|Drama|Family|Fantasy|", "keywords": "bet, lightning, sports team, sport, basketball, bullying, orphanage, teenager", "tags_pipe": "|bet|lightning|sports team|sport|basketball|bullying|orphanage|teenager|", "overview": "Calvin and his friends, who all live in an orphanage, find old shoes with the faded letters MJ connected to a powerline. One stormy night, they go to get the shoes when Calvin and the shoes are struck by lightning. Calvin now has unbelievable basketball powers and has the chance to play for the NBA.", "text_for_embedding": "Like Mike (2002). Genres: Comedy, Drama, Family, Fantasy. Calvin and his friends, who all live in an orphanage, find old shoes with the faded letters MJ connected to a powerline. One stormy night, they go to get the shoes when Calvin and the shoes are struck by lightning. Calvin now has unbelievable basketball powers and has the chance to play for the NBA.. Tags: bet, lightning, sports team, sport, basketball, bullying, orphanage, teenager"} +{"id": "36593", "title": "The Naked Gun 33⅓: The Final Insult", "year": 1994, "duration_min": 83, "rating": 6.3, "genres": "Comedy, Crime", "genres_pipe": "|Comedy|Crime|", "keywords": "undercover, spoof, state prison", "tags_pipe": "|undercover|spoof|state prison|", "overview": "Frank Drebin is persuaded out of retirement to go undercover in a state prison. There he is to find out what top terrorist, Rocco, has planned for when he escapes. Frank's wife, Jane, is desperate for a baby.. this adds to Frank's problems. A host of celebrities at the Academy awards ceremony are humiliated by Frank as he blunders his way trying to foil Rocco.", "text_for_embedding": "The Naked Gun 33⅓: The Final Insult (1994). Genres: Comedy, Crime. Frank Drebin is persuaded out of retirement to go undercover in a state prison. There he is to find out what top terrorist, Rocco, has planned for when he escapes. Frank's wife, Jane, is desperate for a baby.. this adds to Frank's problems. A host of celebrities at the Academy awards ceremony are humiliated by Frank as he blunders his way trying to foil Rocco.. Tags: undercover, spoof, state prison"} +{"id": "707", "title": "A View to a Kill", "year": 1985, "duration_min": 131, "rating": 6.0, "genres": "Adventure, Action, Thriller", "genres_pipe": "|Adventure|Action|Thriller|", "keywords": "paris, london england, france, england, san francisco, horse race, fire, helicopter, drug abuse, terrorist, secret identity, firemen, fire engine, villain, ascot", "tags_pipe": "|paris|london england|france|england|san francisco|horse race|fire|helicopter|drug abuse|terrorist|secret identity|firemen|fire engine|villain|ascot|", "overview": "A newly developed microchip designed by Zorin Industries for the British Government that can survive the electromagnetic radiation caused by a nuclear explosion has landed in the hands of the KGB. James Bond must find out how and why. His suspicions soon lead him to big industry leader Max Zorin.", "text_for_embedding": "A View to a Kill (1985). Genres: Adventure, Action, Thriller. A newly developed microchip designed by Zorin Industries for the British Government that can survive the electromagnetic radiation caused by a nuclear explosion has landed in the hands of the KGB. James Bond must find out how and why. His suspicions soon lead him to big industry leader Max Zorin.. Tags: paris, london england, france, england, san francisco, horse race, fire, helicopter, drug abuse, terrorist, secret identity, firemen, fire engine, villain, ascot"} +{"id": "533", "title": "The Curse of the Were-Rabbit", "year": 2005, "duration_min": 85, "rating": 6.8, "genres": "Adventure, Animation, Comedy, Family", "genres_pipe": "|Adventure|Animation|Comedy|Family|", "keywords": "competition, garden, vegetable, stop motion, animation, contest, dog, rabbit, pest control, giant vegetable, wallace & gromit", "tags_pipe": "|competition|garden|vegetable|stop motion|animation|contest|dog|rabbit|pest control|giant vegetable|wallace & gromit|", "overview": "Cheese-loving eccentric Wallace and his cunning canine pal, Gromit, investigate a mystery in Nick Park's animated adventure, in which the lovable inventor and his intrepid pup run a business ridding the town of garden pests. Using only humane methods that turn their home into a halfway house for evicted vermin, the pair stumble upon a mystery involving a voracious vegetarian monster that threatens to ruin the annual veggie-growing contest.", "text_for_embedding": "The Curse of the Were-Rabbit (2005). Genres: Adventure, Animation, Comedy, Family. Cheese-loving eccentric Wallace and his cunning canine pal, Gromit, investigate a mystery in Nick Park's animated adventure, in which the lovable inventor and his intrepid pup run a business ridding the town of garden pests. Using only humane methods that turn their home into a halfway house for evicted vermin, the pair stumble upon a mystery involving a voracious vegetarian monster that threatens to ruin the annual veggie-growing contest.. Tags: competition, garden, vegetable, stop motion, animation, contest, dog, rabbit, pest control, giant vegetable, wallace & gromit"} +{"id": "6023", "title": "P.S. I Love You", "year": 2007, "duration_min": 126, "rating": 6.9, "genres": "Drama, Romance", "genres_pipe": "|Drama|Romance|", "keywords": "job-hopping, irland, shoe seller, letter, dying and death, loss of husband", "tags_pipe": "|job-hopping|irland|shoe seller|letter|dying and death|loss of husband|", "overview": "A young widow discovers that her late husband has left her 10 messages intended to help ease her pain and start a new life.", "text_for_embedding": "P.S. I Love You (2007). Genres: Drama, Romance. A young widow discovers that her late husband has left her 10 messages intended to help ease her pain and start a new life.. Tags: job-hopping, irland, shoe seller, letter, dying and death, loss of husband"} +{"id": "6439", "title": "Racing Stripes", "year": 2005, "duration_min": 102, "rating": 5.1, "genres": "Comedy", "genres_pipe": "|Comedy|", "keywords": "love of animals, horse, identity crisis, farm, zebra", "tags_pipe": "|love of animals|horse|identity crisis|farm|zebra|", "overview": "Shattered illusions are hard to repair -- especially for a good-hearted zebra named Stripes who's spent his life on a Kentucky farm amidst the sorely mistaken notion that he's a debonair thoroughbred. Once he faces the fact that his stark stripes mark him as different, he decides he'll race anyway. And with help from the young girl who raised him, he just might end up in the winner's circle.", "text_for_embedding": "Racing Stripes (2005). Genres: Comedy. Shattered illusions are hard to repair -- especially for a good-hearted zebra named Stripes who's spent his life on a Kentucky farm amidst the sorely mistaken notion that he's a debonair thoroughbred. Once he faces the fact that his stark stripes mark him as different, he decides he'll race anyway. And with help from the young girl who raised him, he just might end up in the winner's circle.. Tags: love of animals, horse, identity crisis, farm, zebra"} +{"id": "4347", "title": "Atonement", "year": 2007, "duration_min": 123, "rating": 7.4, "genres": "Drama, Romance", "genres_pipe": "|Drama|Romance|", "keywords": "based on novel, sister sister relationship, flirt, loss of sister, new love, world war ii, book, mistake, innocence, author, redemption, summer", "tags_pipe": "|based on novel|sister sister relationship|flirt|loss of sister|new love|world war ii|book|mistake|innocence|author|redemption|summer|", "overview": "As a 13-year-old, fledgling writer Briony Tallis irrevocably changes the course of several lives when she accuses her older sister's lover of a crime he did not commit.", "text_for_embedding": "Atonement (2007). Genres: Drama, Romance. As a 13-year-old, fledgling writer Briony Tallis irrevocably changes the course of several lives when she accuses her older sister's lover of a crime he did not commit.. Tags: based on novel, sister sister relationship, flirt, loss of sister, new love, world war ii, book, mistake, innocence, author, redemption, summer"} +{"id": "37056", "title": "Letters to Juliet", "year": 2010, "duration_min": 105, "rating": 6.6, "genres": "Comedy, Drama, Romance", "genres_pipe": "|Comedy|Drama|Romance|", "keywords": "italy, letter, romantic comedy, american abroad, boyfriend girlfriend, italian stereotype, verona italy, quest", "tags_pipe": "|italy|letter|romantic comedy|american abroad|boyfriend girlfriend|italian stereotype|verona italy|quest|", "overview": "An American girl on vacation in Italy finds an unanswered \"letter to Juliet\" -- one of thousands of missives left at the fictional lover's Verona courtyard, which are typically answered by a the \"secretaries of Juliet\" -- and she goes on a quest to find the lovers referenced in the letter.", "text_for_embedding": "Letters to Juliet (2010). Genres: Comedy, Drama, Romance. An American girl on vacation in Italy finds an unanswered \"letter to Juliet\" -- one of thousands of missives left at the fictional lover's Verona courtyard, which are typically answered by a the \"secretaries of Juliet\" -- and she goes on a quest to find the lovers referenced in the letter.. Tags: italy, letter, romantic comedy, american abroad, boyfriend girlfriend, italian stereotype, verona italy, quest"} +{"id": "4105", "title": "Black Rain", "year": 1989, "duration_min": 125, "rating": 6.2, "genres": "Action, Thriller, Crime", "genres_pipe": "|Action|Thriller|Crime|", "keywords": "japan, yakuza, japanese mafia", "tags_pipe": "|japan|yakuza|japanese mafia|", "overview": "Two New York cops get involved in a gang war between members of the Yakuza, the Japanese Mafia. They arrest one of their killers and are ordered to escort him back to Japan. In Japan, however, he manages to escape. As they try to track him down, they get deeper and deeper into the Japanese Mafia scene and they have to learn that they can only win by playing the game the Japanese way.", "text_for_embedding": "Black Rain (1989). Genres: Action, Thriller, Crime. Two New York cops get involved in a gang war between members of the Yakuza, the Japanese Mafia. They arrest one of their killers and are ordered to escort him back to Japan. In Japan, however, he manages to escape. As they try to track him down, they get deeper and deeper into the Japanese Mafia scene and they have to learn that they can only win by playing the game the Japanese way.. Tags: japan, yakuza, japanese mafia"} +{"id": "76489", "title": "The Three Stooges", "year": 2012, "duration_min": 92, "rating": 4.9, "genres": "Comedy", "genres_pipe": "|Comedy|", "keywords": "duringcreditsstinger", "tags_pipe": "|duringcreditsstinger|", "overview": "While trying to save their childhood orphanage, Moe, Larry and Curly inadvertently stumble into a murder plot and wind up starring in a reality TV show.", "text_for_embedding": "The Three Stooges (2012). Genres: Comedy. While trying to save their childhood orphanage, Moe, Larry and Curly inadvertently stumble into a murder plot and wind up starring in a reality TV show.. Tags: duringcreditsstinger"} +{"id": "3933", "title": "Corpse Bride", "year": 2005, "duration_min": 77, "rating": 7.2, "genres": "Romance, Fantasy, Animation, Music", "genres_pipe": "|Romance|Fantasy|Animation|Music|", "keywords": "shyness, england, cheating, old town, grave, skeleton, musical, marriage, wedding ring, stop motion, animation, money, wedding, corpse, wedding ceremony", "tags_pipe": "|shyness|england|cheating|old town|grave|skeleton|musical|marriage|wedding ring|stop motion|animation|money|wedding|corpse|wedding ceremony|", "overview": "Set in a 19th-century european village, this stop-motion animation feature follows the story of Victor, a young man whisked away to the underworld and wed to a mysterious corpse bride, while his real bride Victoria waits bereft in the land of the living.", "text_for_embedding": "Corpse Bride (2005). Genres: Romance, Fantasy, Animation, Music. Set in a 19th-century european village, this stop-motion animation feature follows the story of Victor, a young man whisked away to the underworld and wed to a mysterious corpse bride, while his real bride Victoria waits bereft in the land of the living.. Tags: shyness, england, cheating, old town, grave, skeleton, musical, marriage, wedding ring, stop motion, animation, money, wedding, corpse, wedding ceremony"} +{"id": "9918", "title": "Glory Road", "year": 2006, "duration_min": 118, "rating": 7.2, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "basketball, racial segregation, teachers and students", "tags_pipe": "|basketball|racial segregation|teachers and students|", "overview": "In 1966, Texas Western coach Don Haskins led the first all-black starting line-up for a college basketball team to the NCAA national championship.", "text_for_embedding": "Glory Road (2006). Genres: Drama. In 1966, Texas Western coach Don Haskins led the first all-black starting line-up for a college basketball team to the NCAA national championship.. Tags: basketball, racial segregation, teachers and students"} +{"id": "273481", "title": "Sicario", "year": 2015, "duration_min": 121, "rating": 7.2, "genres": "Action, Crime, Drama, Mystery, Thriller", "genres_pipe": "|Action|Crime|Drama|Mystery|Thriller|", "keywords": "mexico, cia, smoking, texas, fbi, murder, dirty cop, soccer, drug, fbi agent, night vision, death of daughter, tunnel, el paso, moral dilemma", "tags_pipe": "|mexico|cia|smoking|texas|fbi|murder|dirty cop|soccer|drug|fbi agent|night vision|death of daughter|tunnel|el paso|moral dilemma|", "overview": "A young female FBI agent joins a secret CIA operation to take down a Mexican cartel boss, a job that ends up pushing her ethical and moral values to the limit.", "text_for_embedding": "Sicario (2015). Genres: Action, Crime, Drama, Mystery, Thriller. A young female FBI agent joins a secret CIA operation to take down a Mexican cartel boss, a job that ends up pushing her ethical and moral values to the limit.. Tags: mexico, cia, smoking, texas, fbi, murder, dirty cop, soccer, drug, fbi agent, night vision, death of daughter, tunnel, el paso, moral dilemma"} +{"id": "307081", "title": "Southpaw", "year": 2015, "duration_min": 123, "rating": 7.3, "genres": "Action, Drama", "genres_pipe": "|Action|Drama|", "keywords": "sport", "tags_pipe": "|sport|", "overview": "Billy \"The Great\" Hope, the reigning junior middleweight boxing champion, has an impressive career, a loving wife and daughter, and a lavish lifestyle. However, when tragedy strikes, Billy hits rock bottom, losing his family, his house and his manager. He soon finds an unlikely savior in Tick Willis, a former fighter who trains the city's toughest amateur boxers. With his future on the line, Hope fights to reclaim the trust of those he loves the most.", "text_for_embedding": "Southpaw (2015). Genres: Action, Drama. Billy \"The Great\" Hope, the reigning junior middleweight boxing champion, has an impressive career, a loving wife and daughter, and a lavish lifestyle. However, when tragedy strikes, Billy hits rock bottom, losing his family, his house and his manager. He soon finds an unlikely savior in Tick Willis, a former fighter who trains the city's toughest amateur boxers. With his future on the line, Hope fights to reclaim the trust of those he loves the most.. Tags: sport"} +{"id": "16871", "title": "Drag Me to Hell", "year": 2009, "duration_min": 99, "rating": 6.2, "genres": "Horror, Thriller", "genres_pipe": "|Horror|Thriller|", "keywords": "gypsy, work, gore, curse, psychologist, psychic, evil, loan officer, obituary, engagement ring, gypsies", "tags_pipe": "|gypsy|work|gore|curse|psychologist|psychic|evil|loan officer|obituary|engagement ring|gypsies|", "overview": "After denying a woman the extension she needs to keep her home, loan officer Christine Brown sees her once-promising life take a startling turn for the worse. Christine is convinced she's been cursed by a Gypsy, but her boyfriend is skeptical. Her only hope seems to lie in a psychic who claims he can help her lift the curse and keep her soul from being dragged straight to hell.", "text_for_embedding": "Drag Me to Hell (2009). Genres: Horror, Thriller. After denying a woman the extension she needs to keep her home, loan officer Christine Brown sees her once-promising life take a startling turn for the worse. Christine is convinced she's been cursed by a Gypsy, but her boyfriend is skeptical. Her only hope seems to lie in a psychic who claims he can help her lift the curse and keep her soul from being dragged straight to hell.. Tags: gypsy, work, gore, curse, psychologist, psychic, evil, loan officer, obituary, engagement ring, gypsies"} +{"id": "293863", "title": "The Age of Adaline", "year": 2015, "duration_min": 112, "rating": 7.4, "genres": "Fantasy, Drama, Romance", "genres_pipe": "|Fantasy|Drama|Romance|", "keywords": "san francisco, immortality, love, forever", "tags_pipe": "|san francisco|immortality|love|forever|", "overview": "After 29-year-old Adaline recovers from a nearly lethal accident, she inexplicably stops growing older. As the years stretch on and on, Adaline keeps her secret to herself until she meets a man who changes her life.", "text_for_embedding": "The Age of Adaline (2015). Genres: Fantasy, Drama, Romance. After 29-year-old Adaline recovers from a nearly lethal accident, she inexplicably stops growing older. As the years stretch on and on, Adaline keeps her secret to herself until she meets a man who changes her life.. Tags: san francisco, immortality, love, forever"} +{"id": "13156", "title": "Secondhand Lions", "year": 2003, "duration_min": 111, "rating": 6.9, "genres": "Comedy, Drama, Family", "genres_pipe": "|Comedy|Drama|Family|", "keywords": "texas, money, veteran", "tags_pipe": "|texas|money|veteran|", "overview": "\"Secondhand Lions\" follows the comedic adventures of an introverted boy left on the doorstep of a pair of reluctant, eccentric great-uncles, whose exotic remembrances stir the boy's spirit and re-ignite the men's lives.", "text_for_embedding": "Secondhand Lions (2003). Genres: Comedy, Drama, Family. \"Secondhand Lions\" follows the comedic adventures of an introverted boy left on the doorstep of a pair of reluctant, eccentric great-uncles, whose exotic remembrances stir the boy's spirit and re-ignite the men's lives.. Tags: texas, money, veteran"} +{"id": "41233", "title": "Step Up 3D", "year": 2010, "duration_min": 107, "rating": 6.6, "genres": "Drama, Romance", "genres_pipe": "|Drama|Romance|", "keywords": "musical, duringcreditsstinger, 3d", "tags_pipe": "|musical|duringcreditsstinger|3d|", "overview": "A tight-knit group of New York City street dancers, including Luke and Natalie, team up with NYU freshman Moose, and find themselves pitted against the world's best hip hop dancers in a high-stakes showdown that will change their lives forever.", "text_for_embedding": "Step Up 3D (2010). Genres: Drama, Romance. A tight-knit group of New York City street dancers, including Luke and Natalie, team up with NYU freshman Moose, and find themselves pitted against the world's best hip hop dancers in a high-stakes showdown that will change their lives forever.. Tags: musical, duringcreditsstinger, 3d"} +{"id": "9266", "title": "Blue Crush", "year": 2002, "duration_min": 104, "rating": 5.6, "genres": "Adventure", "genres_pipe": "|Adventure|", "keywords": "sea, surfer, hawaii, sport, job, american football player, pretty woman", "tags_pipe": "|sea|surfer|hawaii|sport|job|american football player|pretty woman|", "overview": "Nothing gets between Anne Marie and her board. Living in a beach shack with three roommates, she is up before dawn every morning to conquer the waves and count the days until the Pipe Masters competition. Having transplanted herself to Hawaii with no one's blessing but her own, Anne Marie finds all she needs in the adrenaline-charged surf scene - until pro quarterback Matt Tollman comes along...", "text_for_embedding": "Blue Crush (2002). Genres: Adventure. Nothing gets between Anne Marie and her board. Living in a beach shack with three roommates, she is up before dawn every morning to conquer the waves and count the days until the Pipe Masters competition. Having transplanted herself to Hawaii with no one's blessing but her own, Anne Marie finds all she needs in the adrenaline-charged surf scene - until pro quarterback Matt Tollman comes along.... Tags: sea, surfer, hawaii, sport, job, american football player, pretty woman"} +{"id": "1262", "title": "Stranger Than Fiction", "year": 2006, "duration_min": 113, "rating": 7.1, "genres": "Comedy, Drama, Fantasy, Romance", "genres_pipe": "|Comedy|Drama|Fantasy|Romance|", "keywords": "professor, literature, love, romantic comedy, author, fate, death, dying, novelist, publisher, what if", "tags_pipe": "|professor|literature|love|romantic comedy|author|fate|death|dying|novelist|publisher|what if|", "overview": "Everybody knows that your life is a story. But what if a story was your life? Harold Crick is your average IRS agent: monotonous, boring, and repetitive. But one day this all changes when Harold begins to hear an author inside his head narrating his life. But when the narration reveals he is going to die, Harold must find the author and convince them to change the ending.", "text_for_embedding": "Stranger Than Fiction (2006). Genres: Comedy, Drama, Fantasy, Romance. Everybody knows that your life is a story. But what if a story was your life? Harold Crick is your average IRS agent: monotonous, boring, and repetitive. But one day this all changes when Harold begins to hear an author inside his head narrating his life. But when the narration reveals he is going to die, Harold must find the author and convince them to change the ending.. Tags: professor, literature, love, romantic comedy, author, fate, death, dying, novelist, publisher, what if"} +{"id": "4513", "title": "30 Days of Night", "year": 2007, "duration_min": 113, "rating": 6.2, "genres": "Horror, Thriller", "genres_pipe": "|Horror|Thriller|", "keywords": "sunrise, winter, vampire, marriage crisis, alaska, based on graphic novel, blizzard, blood lust, polar night", "tags_pipe": "|sunrise|winter|vampire|marriage crisis|alaska|based on graphic novel|blizzard|blood lust|polar night|", "overview": "This is the story of an isolated Alaskan town that is plunged into darkness for a month each year when the sun sinks below the horizon. As the last rays of light fade, the town is attacked by a bloodthirsty gang of vampires bent on an uninterrupted orgy of destruction. Only the small town's husband-and-wife Sheriff team stand between the survivors and certain destruction.", "text_for_embedding": "30 Days of Night (2007). Genres: Horror, Thriller. This is the story of an isolated Alaskan town that is plunged into darkness for a month each year when the sun sinks below the horizon. As the last rays of light fade, the town is attacked by a bloodthirsty gang of vampires bent on an uninterrupted orgy of destruction. Only the small town's husband-and-wife Sheriff team stand between the survivors and certain destruction.. Tags: sunrise, winter, vampire, marriage crisis, alaska, based on graphic novel, blizzard, blood lust, polar night"} +{"id": "22970", "title": "The Cabin in the Woods", "year": 2012, "duration_min": 95, "rating": 6.5, "genres": "Horror, Thriller", "genres_pipe": "|Horror|Thriller|", "keywords": "cabin, plot twist, cabin in the woods, filmed killing, video wall, speaker phone, mounted animal head, young adult", "tags_pipe": "|cabin|plot twist|cabin in the woods|filmed killing|video wall|speaker phone|mounted animal head|young adult|", "overview": "Five college friends spend the weekend at a remote cabin in the woods, where they get more than they bargained for. Together, they must discover the truth behind the cabin in the woods.", "text_for_embedding": "The Cabin in the Woods (2012). Genres: Horror, Thriller. Five college friends spend the weekend at a remote cabin in the woods, where they get more than they bargained for. Together, they must discover the truth behind the cabin in the woods.. Tags: cabin, plot twist, cabin in the woods, filmed killing, video wall, speaker phone, mounted animal head, young adult"} +{"id": "7278", "title": "Meet the Spartans", "year": 2008, "duration_min": 84, "rating": 3.7, "genres": "Comedy", "genres_pipe": "|Comedy|", "keywords": "fight, queen, penguin, black hole, men, army, s.a.t., aftercreditsstinger, duringcreditsstinger", "tags_pipe": "|fight|queen|penguin|black hole|men|army|s.a.t.|aftercreditsstinger|duringcreditsstinger|", "overview": "From the creators of Scary Movie and Date Movie comes this tongue-in-cheek parody of the sword-and-sandal epics, dubbed Meet the Spartans. The 20th Century Fox production was written and directed by the filmmaking team of Jason Friedberg and Aaron Seltzer. Sure, Leonidas may have nothing more than a cape and some leather underwear to protect him from the razor-sharp swords of his Persian enemies,", "text_for_embedding": "Meet the Spartans (2008). Genres: Comedy. From the creators of Scary Movie and Date Movie comes this tongue-in-cheek parody of the sword-and-sandal epics, dubbed Meet the Spartans. The 20th Century Fox production was written and directed by the filmmaking team of Jason Friedberg and Aaron Seltzer. Sure, Leonidas may have nothing more than a cape and some leather underwear to protect him from the razor-sharp swords of his Persian enemies,. Tags: fight, queen, penguin, black hole, men, army, s.a.t., aftercreditsstinger, duringcreditsstinger"} +{"id": "9013", "title": "Midnight Run", "year": 1988, "duration_min": 126, "rating": 7.2, "genres": "Adventure, Comedy, Crime", "genres_pipe": "|Adventure|Comedy|Crime|", "keywords": "crooked lawyer, bail jumper, mafia accountant, stretch limousine, manhattan, new york city, southwestern u.s., bus station, police surveillance", "tags_pipe": "|crooked lawyer|bail jumper|mafia accountant|stretch limousine|manhattan, new york city|southwestern u.s.|bus station|police surveillance|", "overview": "An accountant embezzles $15 million of mob money, jumps bail and is chased by bounty hunters, the FBI, and the Mafia.", "text_for_embedding": "Midnight Run (1988). Genres: Adventure, Comedy, Crime. An accountant embezzles $15 million of mob money, jumps bail and is chased by bounty hunters, the FBI, and the Mafia.. Tags: crooked lawyer, bail jumper, mafia accountant, stretch limousine, manhattan, new york city, southwestern u.s., bus station, police surveillance"} +{"id": "865", "title": "The Running Man", "year": 1987, "duration_min": 101, "rating": 6.4, "genres": "Action, Science Fiction", "genres_pipe": "|Action|Science Fiction|", "keywords": "prison, chase, hunting human beings, game show, dystopia, dystopic future", "tags_pipe": "|prison|chase|hunting human beings|game show|dystopia|dystopic future|", "overview": "By 2017, the global economy has collapsed and American society has become a totalitarian police state, censoring all cultural activity. The government pacifies the populace by broadcasting a number of game shows in which convicted criminals fight for their lives, including the gladiator-style The Running Man, hosted by the ruthless Damon Killian, where “runners” attempt to evade “stalkers” and certain death for a chance to be pardoned and set free.", "text_for_embedding": "The Running Man (1987). Genres: Action, Science Fiction. By 2017, the global economy has collapsed and American society has become a totalitarian police state, censoring all cultural activity. The government pacifies the populace by broadcasting a number of game shows in which convicted criminals fight for their lives, including the gladiator-style The Running Man, hosted by the ruthless Damon Killian, where “runners” attempt to evade “stalkers” and certain death for a chance to be pardoned and set free.. Tags: prison, chase, hunting human beings, game show, dystopia, dystopic future"} +{"id": "10776", "title": "Little Shop of Horrors", "year": 1986, "duration_min": 94, "rating": 6.6, "genres": "Horror, Comedy, Music", "genres_pipe": "|Horror|Comedy|Music|", "keywords": "flower, solar eclipse, florist, assistant, plants, success, aggression by plant, investigation, nerd, blonde, carnivorous plant, remake, crush, based on play, motorcycle", "tags_pipe": "|flower|solar eclipse|florist|assistant|plants|success|aggression by plant|investigation|nerd|blonde|carnivorous plant|remake|crush|based on play|motorcycle|", "overview": "Seymour Krelborn is a nerdy orphan working at Mushnik's, a flower shop in urban Skid Row. He harbors a crush on fellow co-worker Audrey Fulquard, and is berated by Mr. Mushnik daily. One day as Seymour is seeking a new mysterious plant, he finds a very mysterious unidentified plant which he calls Audrey II. The plant seems to have a craving for blood and soon begins to sing for his supper.", "text_for_embedding": "Little Shop of Horrors (1986). Genres: Horror, Comedy, Music. Seymour Krelborn is a nerdy orphan working at Mushnik's, a flower shop in urban Skid Row. He harbors a crush on fellow co-worker Audrey Fulquard, and is berated by Mr. Mushnik daily. One day as Seymour is seeking a new mysterious plant, he finds a very mysterious unidentified plant which he calls Audrey II. The plant seems to have a craving for blood and soon begins to sing for his supper.. Tags: flower, solar eclipse, florist, assistant, plants, success, aggression by plant, investigation, nerd, blonde, carnivorous plant, remake, crush, based on play, motorcycle"} +{"id": "50456", "title": "Hanna", "year": 2011, "duration_min": 111, "rating": 6.5, "genres": "Action, Thriller, Adventure", "genres_pipe": "|Action|Thriller|Adventure|", "keywords": "assassin, self sacrifice, strip club, secret agent, training, british, road trip, dead animal, teenage girl, pistol, duringcreditsstinger", "tags_pipe": "|assassin|self sacrifice|strip club|secret agent|training|british|road trip|dead animal|teenage girl|pistol|duringcreditsstinger|", "overview": "A 16-year-old girl raised by her father to be the perfect assassin is dispatched on a mission across Europe. Tracked by a ruthless operatives, she faces startling revelations about her existence and questions about her humanity.", "text_for_embedding": "Hanna (2011). Genres: Action, Thriller, Adventure. A 16-year-old girl raised by her father to be the perfect assassin is dispatched on a mission across Europe. Tracked by a ruthless operatives, she faces startling revelations about her existence and questions about her humanity.. Tags: assassin, self sacrifice, strip club, secret agent, training, british, road trip, dead animal, teenage girl, pistol, duringcreditsstinger"} +{"id": "9823", "title": "Mortal Kombat: Annihilation", "year": 1997, "duration_min": 95, "rating": 3.8, "genres": "Action, Fantasy, Science Fiction", "genres_pipe": "|Action|Fantasy|Science Fiction|", "keywords": "martial arts, authority, tournament, battle, fighting, based on video game, hand to hand combat", "tags_pipe": "|martial arts|authority|tournament|battle|fighting|based on video game|hand to hand combat|", "overview": "A group of heroic warriors has only six days to save the planet in \"Mortal Kombat Annihilation.\" To succeed they must survive the most spectacular series of challenges any human, or god, has ever encountered as they battle an evil warlord bent on taking control of Earth. Sequel to the film \"Mortal Kombat,\" and based on the popular video game.", "text_for_embedding": "Mortal Kombat: Annihilation (1997). Genres: Action, Fantasy, Science Fiction. A group of heroic warriors has only six days to save the planet in \"Mortal Kombat Annihilation.\" To succeed they must survive the most spectacular series of challenges any human, or god, has ever encountered as they battle an evil warlord bent on taking control of Earth. Sequel to the film \"Mortal Kombat,\" and based on the popular video game.. Tags: martial arts, authority, tournament, battle, fighting, based on video game, hand to hand combat"} +{"id": "59861", "title": "Larry Crowne", "year": 2011, "duration_min": 98, "rating": 5.7, "genres": "Comedy, Romance, Drama", "genres_pipe": "|Comedy|Romance|Drama|", "keywords": "classroom, college, teacher, diner, loss of job, economics, yard sale, cell phone, scooter, back to school", "tags_pipe": "|classroom|college|teacher|diner|loss of job|economics|yard sale|cell phone|scooter|back to school|", "overview": "After losing his job, a middle-aged man reinvents himself by going back to college.", "text_for_embedding": "Larry Crowne (2011). Genres: Comedy, Romance, Drama. After losing his job, a middle-aged man reinvents himself by going back to college.. Tags: classroom, college, teacher, diner, loss of job, economics, yard sale, cell phone, scooter, back to school"} +{"id": "133805", "title": "Carrie", "year": 2013, "duration_min": 100, "rating": 5.8, "genres": "Drama, Horror", "genres_pipe": "|Drama|Horror|", "keywords": "terror, based on novel, power, telekinesis, high school, remake, revenge, murder, prank, prom, teenager, explosion, violence, religious, humiliation", "tags_pipe": "|terror|based on novel|power|telekinesis|high school|remake|revenge|murder|prank|prom|teenager|explosion|violence|religious|humiliation|", "overview": "A reimagining of the classic horror tale about Carrie White, a shy girl outcast by her peers and sheltered by her deeply religious mother, who unleashes telekinetic terror on her small town after being pushed too far at her senior prom.", "text_for_embedding": "Carrie (2013). Genres: Drama, Horror. A reimagining of the classic horror tale about Carrie White, a shy girl outcast by her peers and sheltered by her deeply religious mother, who unleashes telekinetic terror on her small town after being pushed too far at her senior prom.. Tags: terror, based on novel, power, telekinesis, high school, remake, revenge, murder, prank, prom, teenager, explosion, violence, religious, humiliation"} +{"id": "12763", "title": "Take the Lead", "year": 2006, "duration_min": 108, "rating": 6.6, "genres": "Music", "genres_pipe": "|Music|", "keywords": "dancing master, dance, musical, woman director", "tags_pipe": "|dancing master|dance|musical|woman director|", "overview": "A former professional dancer volunteers to teach dance in the New York public school system and, while his background first clashes with his students' tastes, together they create a completely new style of dance. Based on the story of ballroom dancer, Pierre Dulane.", "text_for_embedding": "Take the Lead (2006). Genres: Music. A former professional dancer volunteers to teach dance in the New York public school system and, while his background first clashes with his students' tastes, together they create a completely new style of dance. Based on the story of ballroom dancer, Pierre Dulane.. Tags: dancing master, dance, musical, woman director"} +{"id": "9766", "title": "Gridiron Gang", "year": 2006, "duration_min": 125, "rating": 6.5, "genres": "Action, Adventure, Crime, Drama", "genres_pipe": "|Action|Adventure|Crime|Drama|", "keywords": "competition, prisoner, probation assistant , sport, violence, american football player", "tags_pipe": "|competition|prisoner|probation assistant |sport|violence|american football player|", "overview": "Teenagers at a juvenile detention center, under the leadership of their counselor, gain self-esteem by playing football together.", "text_for_embedding": "Gridiron Gang (2006). Genres: Action, Adventure, Crime, Drama. Teenagers at a juvenile detention center, under the leadership of their counselor, gain self-esteem by playing football together.. Tags: competition, prisoner, probation assistant , sport, violence, american football player"} +{"id": "14034", "title": "What's the Worst That Could Happen?", "year": 2001, "duration_min": 94, "rating": 5.1, "genres": "Action, Comedy", "genres_pipe": "|Action|Comedy|", "keywords": "business man, master thief, thief, ring", "tags_pipe": "|business man|master thief|thief|ring|", "overview": "Thief Kevin Caffery attempts to rob from the home of rich businessman Max Fairbanks. But Fairbanks catches him and steals his cherished ring that his girlfriend gave him. Caffery is then bent on revenge and getting his ring back with the help of his partners.", "text_for_embedding": "What's the Worst That Could Happen? (2001). Genres: Action, Comedy. Thief Kevin Caffery attempts to rob from the home of rich businessman Max Fairbanks. But Fairbanks catches him and steals his cherished ring that his girlfriend gave him. Caffery is then bent on revenge and getting his ring back with the help of his partners.. Tags: business man, master thief, thief, ring"} +{"id": "12244", "title": "9", "year": 2009, "duration_min": 79, "rating": 6.6, "genres": "Action, Adventure, Animation, Science Fiction, Thriller", "genres_pipe": "|Action|Adventure|Animation|Science Fiction|Thriller|", "keywords": "man vs machine, hope, post-apocalyptic, dystopia, friendship, war, steampunk, coward, end of world, rag doll", "tags_pipe": "|man vs machine|hope|post-apocalyptic|dystopia|friendship|war|steampunk|coward|end of world|rag doll|", "overview": "When 9 first comes to life, he finds himself in a post-apocalyptic world. All humans are gone, and it is only by chance that he discovers a small community of others like him taking refuge from fearsome machines that roam the earth intent on their extinction. Despite being the neophyte of the group, 9 convinces the others that hiding will do them no good.", "text_for_embedding": "9 (2009). Genres: Action, Adventure, Animation, Science Fiction, Thriller. When 9 first comes to life, he finds himself in a post-apocalyptic world. All humans are gone, and it is only by chance that he discovers a small community of others like him taking refuge from fearsome machines that roam the earth intent on their extinction. Despite being the neophyte of the group, 9 convinces the others that hiding will do them no good.. Tags: man vs machine, hope, post-apocalyptic, dystopia, friendship, war, steampunk, coward, end of world, rag doll"} +{"id": "109421", "title": "Side Effects", "year": 2013, "duration_min": 106, "rating": 6.4, "genres": "Thriller, Crime, Drama", "genres_pipe": "|Thriller|Crime|Drama|", "keywords": "fraud, cover-up, murder, drug, prescription medication, professional reputation", "tags_pipe": "|fraud|cover-up|murder|drug|prescription medication|professional reputation|", "overview": "A woman turns to prescription medication as a way of handling her anxiety concerning her husband's upcoming release from prison.", "text_for_embedding": "Side Effects (2013). Genres: Thriller, Crime, Drama. A woman turns to prescription medication as a way of handling her anxiety concerning her husband's upcoming release from prison.. Tags: fraud, cover-up, murder, drug, prescription medication, professional reputation"} +{"id": "11137", "title": "The Prince & Me", "year": 2004, "duration_min": 111, "rating": 5.9, "genres": "Comedy, Romance", "genres_pipe": "|Comedy|Romance|", "keywords": "secret identity, wisconsin, prince, college, modesty, romantic comedy, student, falling in love, woman director, young adult", "tags_pipe": "|secret identity|wisconsin|prince|college|modesty|romantic comedy|student|falling in love|woman director|young adult|", "overview": "A fairy tale love-story about pre-med student Paige who falls in love with a Danish Prince \"Eddie\" who refused to follow the traditions of his parents and has come to the US to quench his thirst for rebellion. Paige and Edward come from two different worlds, but there is an undeniable attraction between them.", "text_for_embedding": "The Prince & Me (2004). Genres: Comedy, Romance. A fairy tale love-story about pre-med student Paige who falls in love with a Danish Prince \"Eddie\" who refused to follow the traditions of his parents and has come to the US to quench his thirst for rebellion. Paige and Edward come from two different worlds, but there is an undeniable attraction between them.. Tags: secret identity, wisconsin, prince, college, modesty, romantic comedy, student, falling in love, woman director, young adult"} +{"id": "51162", "title": "Winnie the Pooh", "year": 2011, "duration_min": 63, "rating": 6.8, "genres": "Animation, Family", "genres_pipe": "|Animation|Family|", "keywords": "owl, tiger, aftercreditsstinger, duringcreditsstinger", "tags_pipe": "|owl|tiger|aftercreditsstinger|duringcreditsstinger|", "overview": "During an ordinary day in Hundred Acre Wood, Winnie the Pooh sets out to find some honey. Misinterpreting a note from Christopher Robin, Pooh convinces Tigger, Rabbit, Piglet, Owl, Kanga, Roo, and Eeyore that their young friend has been captured by a creature named \"Backson\" and they set out to save him.", "text_for_embedding": "Winnie the Pooh (2011). Genres: Animation, Family. During an ordinary day in Hundred Acre Wood, Winnie the Pooh sets out to find some honey. Misinterpreting a note from Christopher Robin, Pooh convinces Tigger, Rabbit, Piglet, Owl, Kanga, Roo, and Eeyore that their young friend has been captured by a creature named \"Backson\" and they set out to save him.. Tags: owl, tiger, aftercreditsstinger, duringcreditsstinger"} +{"id": "10152", "title": "Dumb and Dumberer: When Harry Met Lloyd", "year": 2003, "duration_min": 85, "rating": 4.1, "genres": "Comedy", "genres_pipe": "|Comedy|", "keywords": "skateboarding, adoption, friendship, fate", "tags_pipe": "|skateboarding|adoption|friendship|fate|", "overview": "This wacky prequel to the 1994 blockbuster goes back to the lame-brained Harry and Lloyd's days as classmates at a Rhode Island high school, where the unprincipled principal puts the pair in remedial courses as part of a scheme to fleece the school.", "text_for_embedding": "Dumb and Dumberer: When Harry Met Lloyd (2003). Genres: Comedy. This wacky prequel to the 1994 blockbuster goes back to the lame-brained Harry and Lloyd's days as classmates at a Rhode Island high school, where the unprincipled principal puts the pair in remedial courses as part of a scheme to fleece the school.. Tags: skateboarding, adoption, friendship, fate"} +{"id": "9452", "title": "Bulworth", "year": 1998, "duration_min": 108, "rating": 6.3, "genres": "Comedy, Drama", "genres_pipe": "|Comedy|Drama|", "keywords": "mission of murder, politics, election campaign, liberal, swearing, political satire, hip hop culture", "tags_pipe": "|mission of murder|politics|election campaign|liberal|swearing|political satire|hip hop culture|", "overview": "A suicidally disillusioned liberal politician puts a contract out on himself and takes the opportunity to be bluntly honest with his voters by affecting the rhythms and speech of hip-hop music and culture.", "text_for_embedding": "Bulworth (1998). Genres: Comedy, Drama. A suicidally disillusioned liberal politician puts a contract out on himself and takes the opportunity to be bluntly honest with his voters by affecting the rhythms and speech of hip-hop music and culture.. Tags: mission of murder, politics, election campaign, liberal, swearing, political satire, hip hop culture"} +{"id": "239566", "title": "Get on Up", "year": 2014, "duration_min": 139, "rating": 6.4, "genres": "Drama, Music", "genres_pipe": "|Drama|Music|", "keywords": "biography, james brown", "tags_pipe": "|biography|james brown|", "overview": "A chronicle of James Brown's rise from extreme poverty to become one of the most influential musicians in history.", "text_for_embedding": "Get on Up (2014). Genres: Drama, Music. A chronicle of James Brown's rise from extreme poverty to become one of the most influential musicians in history.. Tags: biography, james brown"} +{"id": "53113", "title": "One True Thing", "year": 1998, "duration_min": 127, "rating": 6.2, "genres": "Drama, Romance", "genres_pipe": "|Drama|Romance|", "keywords": "dysfunctional family, cancer, death of parent", "tags_pipe": "|dysfunctional family|cancer|death of parent|", "overview": "A career woman reassesses her parents' lives after she is forced to care for her cancer-stricken mother.", "text_for_embedding": "One True Thing (1998). Genres: Drama, Romance. A career woman reassesses her parents' lives after she is forced to care for her cancer-stricken mother.. Tags: dysfunctional family, cancer, death of parent"} +{"id": "9271", "title": "Virtuosity", "year": 1995, "duration_min": 106, "rating": 5.4, "genres": "Action, Crime, Science Fiction, Thriller", "genres_pipe": "|Action|Crime|Science Fiction|Thriller|", "keywords": "artificial intelligence, android, hologram, computer program, virtual reality, ex-cop, visual effect, police training", "tags_pipe": "|artificial intelligence|android|hologram|computer program|virtual reality|ex-cop|visual effect|police training|", "overview": "The Law Enforcement Technology Advancement Centre (LETAC) has developed SID version 6.7: a Sadistic, Intelligent, and Dangerous virtual reality entity which is synthesized from the personalities of more than 150 serial killers, and only one man can stop him.", "text_for_embedding": "Virtuosity (1995). Genres: Action, Crime, Science Fiction, Thriller. The Law Enforcement Technology Advancement Centre (LETAC) has developed SID version 6.7: a Sadistic, Intelligent, and Dangerous virtual reality entity which is synthesized from the personalities of more than 150 serial killers, and only one man can stop him.. Tags: artificial intelligence, android, hologram, computer program, virtual reality, ex-cop, visual effect, police training"} +{"id": "4474", "title": "My Super Ex-Girlfriend", "year": 2006, "duration_min": 95, "rating": 4.8, "genres": "Fantasy, Drama, Action, Comedy, Crime, Science Fiction", "genres_pipe": "|Fantasy|Drama|Action|Comedy|Crime|Science Fiction|", "keywords": "new york, flying, ex-boyfriend, ex-girlfriend, disappointment, supernatural powers, shark", "tags_pipe": "|new york|flying|ex-boyfriend|ex-girlfriend|disappointment|supernatural powers|shark|", "overview": "When New York architect Matt Saunders dumps his new girlfriend Jenny Johnson - a smart, sexy and reluctant superhero known as G-Girl - she uses her powers to make his life a living hell!", "text_for_embedding": "My Super Ex-Girlfriend (2006). Genres: Fantasy, Drama, Action, Comedy, Crime, Science Fiction. When New York architect Matt Saunders dumps his new girlfriend Jenny Johnson - a smart, sexy and reluctant superhero known as G-Girl - she uses her powers to make his life a living hell!. Tags: new york, flying, ex-boyfriend, ex-girlfriend, disappointment, supernatural powers, shark"} +{"id": "184346", "title": "Deliver Us from Evil", "year": 2014, "duration_min": 118, "rating": 5.9, "genres": "Thriller, Crime, Horror", "genres_pipe": "|Thriller|Crime|Horror|", "keywords": "possessed, demon, occult, demonic possession", "tags_pipe": "|possessed|demon|occult|demonic possession|", "overview": "When a frightening wave of violence sweeps through New York City, troubled cop Sarchie fails to find a rational explanation for the bizarre crimes. However, his eyes are opened to a frightening alternate reality when renegade Jesuit priest, Mendoza convinces him that demonic possession may be to blame for the gruesome murders. Together, they wage a valiant supernatural struggle to rid the city of an otherworldly evil.", "text_for_embedding": "Deliver Us from Evil (2014). Genres: Thriller, Crime, Horror. When a frightening wave of violence sweeps through New York City, troubled cop Sarchie fails to find a rational explanation for the bizarre crimes. However, his eyes are opened to a frightening alternate reality when renegade Jesuit priest, Mendoza convinces him that demonic possession may be to blame for the gruesome murders. Together, they wage a valiant supernatural struggle to rid the city of an otherworldly evil.. Tags: possessed, demon, occult, demonic possession"} +{"id": "48340", "title": "Sanctum", "year": 2011, "duration_min": 108, "rating": 5.8, "genres": "Action, Thriller", "genres_pipe": "|Action|Thriller|", "keywords": "cave, water, adventure", "tags_pipe": "|cave|water|adventure|", "overview": "The 3-D action-thriller Sanctum, from executive producer James Cameron, follows a team of underwater cave divers on a treacherous expedition to the largest, most beautiful and least accessible cave system on Earth. When a tropical storm forces them deep into the caverns, they must fight raging water, deadly terrain and creeping panic as they search for an unknown escape route to the sea. Master diver Frank McGuire (Richard Roxburgh) has explored the South Pacific's Esa-ala Caves for months. But when his exit is cut off in a flash flood, Frank's team--including 17-year-old son Josh (Rhys Wakefield) and financier Carl Hurley (Ioan Gruffudd)--are forced to radically alter plans. With dwindling supplies, the crew must navigate an underwater labyrinth to make it out. Soon, they are confronted with the unavoidable question: Can they survive, or will they be trapped forever?", "text_for_embedding": "Sanctum (2011). Genres: Action, Thriller. The 3-D action-thriller Sanctum, from executive producer James Cameron, follows a team of underwater cave divers on a treacherous expedition to the largest, most beautiful and least accessible cave system on Earth. When a tropical storm forces them deep into the caverns, they must fight raging water, deadly terrain and creeping panic as they search for an unknown escape route to the sea. Master diver Frank McGuire (Richard Roxburgh) has explored the South Pacific's Esa-ala Caves for months. But when his exit is cut off in a flash flood, Frank's team--including 17-year-old son Josh (Rhys Wakefield) and financier Carl Hurley (Ioan Gruffudd)--are forced to radically alter plans. With dwindling supplies, the crew must navigate an underwater labyrinth to make it out. Soon, they are confronted with the unavoidable question: Can they survive, or will they be trapped forever?. Tags: cave, water, adventure"} +{"id": "14846", "title": "Little Black Book", "year": 2004, "duration_min": 111, "rating": 5.2, "genres": "Comedy, Romance, Drama", "genres_pipe": "|Comedy|Romance|Drama|", "keywords": "plan", "tags_pipe": "|plan|", "overview": "Determined to learn about her boyfriend's past relationships, Stacy -- who works for a talk show -- becomes a bona fide snoop. With her colleague, Barb, Stacy gets the names of Derek's ex-lovers and interviews them, supposedly for an upcoming show. But what she learns only adds to her confusion, and her plans begin to unravel when she befriends one of the women.", "text_for_embedding": "Little Black Book (2004). Genres: Comedy, Romance, Drama. Determined to learn about her boyfriend's past relationships, Stacy -- who works for a talk show -- becomes a bona fide snoop. With her colleague, Barb, Stacy gets the names of Derek's ex-lovers and interviews them, supposedly for an upcoming show. But what she learns only adds to her confusion, and her plans begin to unravel when she befriends one of the women.. Tags: plan"} +{"id": "72207", "title": "The Five-Year Engagement", "year": 2012, "duration_min": 124, "rating": 5.7, "genres": "Comedy", "genres_pipe": "|Comedy|", "keywords": "sex, san francisco, restaurant, frustration, chase, offer, engagement, love, psychologist, wedding, proposal, chef, ceremony, englishwoman, ring", "tags_pipe": "|sex|san francisco|restaurant|frustration|chase|offer|engagement|love|psychologist|wedding|proposal|chef|ceremony|englishwoman|ring|", "overview": "Exactly one year after Tom meets Violet, he surprises her with a wedding ring. By all accounts, Tom and Violet are destined for their happily ever after. However, this engaged couple just keep getting tripped up on the long walk down the aisle.", "text_for_embedding": "The Five-Year Engagement (2012). Genres: Comedy. Exactly one year after Tom meets Violet, he surprises her with a wedding ring. By all accounts, Tom and Violet are destined for their happily ever after. However, this engaged couple just keep getting tripped up on the long walk down the aisle.. Tags: sex, san francisco, restaurant, frustration, chase, offer, engagement, love, psychologist, wedding, proposal, chef, ceremony, englishwoman, ring"} +{"id": "16232", "title": "Mr. 3000", "year": 2004, "duration_min": 104, "rating": 5.0, "genres": "Comedy, Drama", "genres_pipe": "|Comedy|Drama|", "keywords": "baseball, sport", "tags_pipe": "|baseball|sport|", "overview": "Aging baseball star who goes by the nickname, Mr. 3000, finds out many years after retirement that he didn't quite reach 3,000 hits. Now at age 47 he's back to try and reach that goal.", "text_for_embedding": "Mr. 3000 (2004). Genres: Comedy, Drama. Aging baseball star who goes by the nickname, Mr. 3000, finds out many years after retirement that he didn't quite reach 3,000 hits. Now at age 47 he's back to try and reach that goal.. Tags: baseball, sport"} +{"id": "43539", "title": "The Next Three Days", "year": 2010, "duration_min": 133, "rating": 6.9, "genres": "Romance, Drama, Thriller, Crime", "genres_pipe": "|Romance|Drama|Thriller|Crime|", "keywords": "evidence, passport, argument, county jail, fingerprints, appeal, escape artist", "tags_pipe": "|evidence|passport|argument|county jail|fingerprints|appeal|escape artist|", "overview": "A married couple's life is turned upside down when the wife is accused of a murder. Lara Brennan is arrested for murdering her boss with whom she had an argument. It seems she was seen leaving the scene of the crime and her fingerprints were on the murder weapon. Her husband, John would spend the next few years trying to get her released, but there's no evidence that negates the evidence against her. And when the strain of being separated from her family, especially her son, gets to her, John decides to break her out. So he does a lot of research to find a way.", "text_for_embedding": "The Next Three Days (2010). Genres: Romance, Drama, Thriller, Crime. A married couple's life is turned upside down when the wife is accused of a murder. Lara Brennan is arrested for murdering her boss with whom she had an argument. It seems she was seen leaving the scene of the crime and her fingerprints were on the murder weapon. Her husband, John would spend the next few years trying to get her released, but there's no evidence that negates the evidence against her. And when the strain of being separated from her family, especially her son, gets to her, John decides to break her out. So he does a lot of research to find a way.. Tags: evidence, passport, argument, county jail, fingerprints, appeal, escape artist"} +{"id": "9920", "title": "Ultraviolet", "year": 2006, "duration_min": 87, "rating": 4.8, "genres": "Science Fiction, Action, Thriller", "genres_pipe": "|Science Fiction|Action|Thriller|", "keywords": "skyscraper, vampire, victim, dystopia, boy, doctor, violence, one woman army, hemophagia, stamina, totalitarian, antigen, cure, strength, biological warfare", "tags_pipe": "|skyscraper|vampire|victim|dystopia|boy|doctor|violence|one woman army|hemophagia|stamina|totalitarian|antigen|cure|strength|biological warfare|", "overview": "In the late 21st century, a subculture of humans have emerged who have been modified genetically by a vampire-like disease, giving them enhanced speed, incredible stamina and acute intelligence. As they are set apart from \"normal\" and \"healthy\" humans, the world is pushed to the brink of worldwide civil war aimed at the destruction of the \"diseased\" population. In the middle of this crossed-fire is - an infected woman - Ultraviolet, who finds herself protecting a nine-year-old boy who has been marked for death by the human government as he is believed to be a threat to humans.", "text_for_embedding": "Ultraviolet (2006). Genres: Science Fiction, Action, Thriller. In the late 21st century, a subculture of humans have emerged who have been modified genetically by a vampire-like disease, giving them enhanced speed, incredible stamina and acute intelligence. As they are set apart from \"normal\" and \"healthy\" humans, the world is pushed to the brink of worldwide civil war aimed at the destruction of the \"diseased\" population. In the middle of this crossed-fire is - an infected woman - Ultraviolet, who finds herself protecting a nine-year-old boy who has been marked for death by the human government as he is believed to be a threat to humans.. Tags: skyscraper, vampire, victim, dystopia, boy, doctor, violence, one woman army, hemophagia, stamina, totalitarian, antigen, cure, strength, biological warfare"} +{"id": "8978", "title": "Assault on Precinct 13", "year": 2005, "duration_min": 109, "rating": 6.0, "genres": "Thriller", "genres_pipe": "|Thriller|", "keywords": "drug abuse, mexican standoff, junkie, prison cell, snow storm, transport of prisoners, dying and death, molotow cocktail, new year's day, remake, deception, survival, shootout, police corruption, brutality", "tags_pipe": "|drug abuse|mexican standoff|junkie|prison cell|snow storm|transport of prisoners|dying and death|molotow cocktail|new year's day|remake|deception|survival|shootout|police corruption|brutality|", "overview": "On New Year's Eve, inside a police station that's about to be closed for good, officer Jake Roenick must cobble together a force made up cops and criminals to save themselves from a mob looking to kill mobster Marion Bishop.", "text_for_embedding": "Assault on Precinct 13 (2005). Genres: Thriller. On New Year's Eve, inside a police station that's about to be closed for good, officer Jake Roenick must cobble together a force made up cops and criminals to save themselves from a mob looking to kill mobster Marion Bishop.. Tags: drug abuse, mexican standoff, junkie, prison cell, snow storm, transport of prisoners, dying and death, molotow cocktail, new year's day, remake, deception, survival, shootout, police corruption, brutality"} +{"id": "11702", "title": "The Replacement Killers", "year": 1998, "duration_min": 87, "rating": 6.0, "genres": "Action, Drama, Crime, Thriller", "genres_pipe": "|Action|Drama|Crime|Thriller|", "keywords": "usa, china, assault rifle, sniper, chinatown, drug dealer, hitman, funeral, conscientious objector, revenge, on the run, fugitive, one man army, sunglasses, drug lord", "tags_pipe": "|usa|china|assault rifle|sniper|chinatown|drug dealer|hitman|funeral|conscientious objector|revenge|on the run|fugitive|one man army|sunglasses|drug lord|", "overview": "Hired assassin John Lee is asked by Chinatown crime boss Terence Wei to murder the young son of policeman Stan Zedkov. Lee has the boy in his sights, but his conscience gets the better of him, and he spares the child's life. Afraid that Wei will take revenge on his family in China, Lee seeks out expert forger Meg Coburn to obtain the passport he needs to get out of the country, but a band of replacement killers is soon on his trail.", "text_for_embedding": "The Replacement Killers (1998). Genres: Action, Drama, Crime, Thriller. Hired assassin John Lee is asked by Chinatown crime boss Terence Wei to murder the young son of policeman Stan Zedkov. Lee has the boy in his sights, but his conscience gets the better of him, and he spares the child's life. Afraid that Wei will take revenge on his family in China, Lee seeks out expert forger Meg Coburn to obtain the passport he needs to get out of the country, but a band of replacement killers is soon on his trail.. Tags: usa, china, assault rifle, sniper, chinatown, drug dealer, hitman, funeral, conscientious objector, revenge, on the run, fugitive, one man army, sunglasses, drug lord"} +{"id": "18550", "title": "Fled", "year": 1996, "duration_min": 98, "rating": 5.2, "genres": "Action, Comedy, Thriller", "genres_pipe": "|Action|Comedy|Thriller|", "keywords": "hacker, undercover agent, mafia, chain gang, fugitive, floppy disk", "tags_pipe": "|hacker|undercover agent|mafia|chain gang|fugitive|floppy disk|", "overview": "During a routine prison work detail, convict Piper is chained to Dodge, a cyberhacker, when gunfire breaks out. Apparently, the attack is related to stolen money that the Mafia is after, and some computer files that somebody wants desperately to bury. The pair, who don't exactly enjoy each other's company, escape and must work together if they are to reach Atlanta alive. Luckily, they meet a woman who may be willing to help them.", "text_for_embedding": "Fled (1996). Genres: Action, Comedy, Thriller. During a routine prison work detail, convict Piper is chained to Dodge, a cyberhacker, when gunfire breaks out. Apparently, the attack is related to stolen money that the Mafia is after, and some computer files that somebody wants desperately to bury. The pair, who don't exactly enjoy each other's company, escape and must work together if they are to reach Atlanta alive. Luckily, they meet a woman who may be willing to help them.. Tags: hacker, undercover agent, mafia, chain gang, fugitive, floppy disk"} +{"id": "8869", "title": "Eight Legged Freaks", "year": 2002, "duration_min": 99, "rating": 5.4, "genres": "Action, Comedy, Horror, Thriller", "genres_pipe": "|Action|Comedy|Horror|Thriller|", "keywords": "pick up, wetting pants, hockey mask, barbershop, perfume, aunt nephew relationship, straight razor, town meeting, forklift, contamination, spiders, animal horror", "tags_pipe": "|pick up|wetting pants|hockey mask|barbershop|perfume|aunt nephew relationship|straight razor|town meeting|forklift|contamination|spiders|animal horror|", "overview": "The residents of a rural mining town discover that an unfortunate chemical spill has caused hundreds of little spiders to mutate overnight to the size of SUVs. It's then up to mining engineer Chris McCormack and Sheriff Sam Parker to mobilize an eclectic group of townspeople, including the Sheriff's young son, Mike, her daughter, Ashley, and paranoid radio announcer Harlan, into battle against the bloodthirsty eight-legged beasts.", "text_for_embedding": "Eight Legged Freaks (2002). Genres: Action, Comedy, Horror, Thriller. The residents of a rural mining town discover that an unfortunate chemical spill has caused hundreds of little spiders to mutate overnight to the size of SUVs. It's then up to mining engineer Chris McCormack and Sheriff Sam Parker to mobilize an eclectic group of townspeople, including the Sheriff's young son, Mike, her daughter, Ashley, and paranoid radio announcer Harlan, into battle against the bloodthirsty eight-legged beasts.. Tags: pick up, wetting pants, hockey mask, barbershop, perfume, aunt nephew relationship, straight razor, town meeting, forklift, contamination, spiders, animal horror"} +{"id": "43347", "title": "Love & Other Drugs", "year": 2010, "duration_min": 112, "rating": 6.6, "genres": "Drama, Comedy, Romance", "genres_pipe": "|Drama|Comedy|Romance|", "keywords": "male nudity, female nudity, letter, love, viagra, sexual freedom, free spirit", "tags_pipe": "|male nudity|female nudity|letter|love|viagra|sexual freedom|free spirit|", "overview": "Maggie, an alluring free spirit who won't let anyone - or anything - tie her down. But she meets her match in Jamie, whose relentless and nearly infallible charm serve him well with the ladies and in the cutthroat world of pharmaceutical sales. Maggie and Jamie's evolving relationship takes them both by surprise, as they find themselves under the influence of the ultimate drug: love.", "text_for_embedding": "Love & Other Drugs (2010). Genres: Drama, Comedy, Romance. Maggie, an alluring free spirit who won't let anyone - or anything - tie her down. But she meets her match in Jamie, whose relentless and nearly infallible charm serve him well with the ladies and in the cutthroat world of pharmaceutical sales. Maggie and Jamie's evolving relationship takes them both by surprise, as they find themselves under the influence of the ultimate drug: love.. Tags: male nudity, female nudity, letter, love, viagra, sexual freedom, free spirit"} +{"id": "3489", "title": "88 Minutes", "year": 2007, "duration_min": 108, "rating": 5.7, "genres": "Crime, Mystery, Thriller", "genres_pipe": "|Crime|Mystery|Thriller|", "keywords": "fbi, professor, ladies' man, medical examiner, serial killer, lecture", "tags_pipe": "|fbi|professor|ladies' man|medical examiner|serial killer|lecture|", "overview": "\"88 Minutes\" focuses on a college professor (Pacino) who moonlights as a forensic psychiatrist for the FBI and receives a death threat claiming he has only 88 minutes to live.", "text_for_embedding": "88 Minutes (2007). Genres: Crime, Mystery, Thriller. \"88 Minutes\" focuses on a college professor (Pacino) who moonlights as a forensic psychiatrist for the FBI and receives a death threat claiming he has only 88 minutes to live.. Tags: fbi, professor, ladies' man, medical examiner, serial killer, lecture"} +{"id": "9701", "title": "North Country", "year": 2005, "duration_min": 126, "rating": 6.8, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "rape, secret, minnesota, witness, miner, insult, court, lawsuit, love, lesbian, battle, case, woman, woman director, landmark", "tags_pipe": "|rape|secret|minnesota|witness|miner|insult|court|lawsuit|love|lesbian|battle|case|woman|woman director|landmark|", "overview": "A fictionalized account of the first major successful sexual harassment case in the United States -- Jenson vs. Eveleth Mines, where a woman who endured a range of abuse while working as a miner filed and won the landmark 1984 lawsuit.", "text_for_embedding": "North Country (2005). Genres: Drama. A fictionalized account of the first major successful sexual harassment case in the United States -- Jenson vs. Eveleth Mines, where a woman who endured a range of abuse while working as a miner filed and won the landmark 1984 lawsuit.. Tags: rape, secret, minnesota, witness, miner, insult, court, lawsuit, love, lesbian, battle, case, woman, woman director, landmark"} +{"id": "2122", "title": "The Whole Ten Yards", "year": 2004, "duration_min": 98, "rating": 5.5, "genres": "Comedy, Thriller, Crime", "genres_pipe": "|Comedy|Thriller|Crime|", "keywords": "hitman", "tags_pipe": "|hitman|", "overview": "Jimmy 'The Tulip' Tudeski now spends his days compulsively cleaning his house and perfecting his culinary skills with his wife, Jill, a purported assassin who has yet to pull off a clean hit. Suddenly, an uninvited and unwelcome connection to their past unexpectedly shows up on Jimmy and Jill's doorstep; it's Oz, and he's begging them to help him rescue his wife, Cynthia.", "text_for_embedding": "The Whole Ten Yards (2004). Genres: Comedy, Thriller, Crime. Jimmy 'The Tulip' Tudeski now spends his days compulsively cleaning his house and perfecting his culinary skills with his wife, Jill, a purported assassin who has yet to pull off a clean hit. Suddenly, an uninvited and unwelcome connection to their past unexpectedly shows up on Jimmy and Jill's doorstep; it's Oz, and he's begging them to help him rescue his wife, Cynthia.. Tags: hitman"} +{"id": "37707", "title": "Splice", "year": 2009, "duration_min": 104, "rating": 5.5, "genres": "Horror, Thriller, Science Fiction", "genres_pipe": "|Horror|Thriller|Science Fiction|", "keywords": "dna, genetics, gene manipulation, genetic engineering, biological experiment", "tags_pipe": "|dna|genetics|gene manipulation|genetic engineering|biological experiment|", "overview": "Elsa and Clive, two young rebellious scientists, defy legal and ethical boundaries and forge ahead with a dangerous experiment: splicing together human and animal DNA to create a new organism. Named \"Dren\", the creature rapidly develops from a deformed female infant into a beautiful but dangerous winged human-chimera, who forges a bond with both of her creators - only to have that bond turn deadly.", "text_for_embedding": "Splice (2009). Genres: Horror, Thriller, Science Fiction. Elsa and Clive, two young rebellious scientists, defy legal and ethical boundaries and forge ahead with a dangerous experiment: splicing together human and animal DNA to create a new organism. Named \"Dren\", the creature rapidly develops from a deformed female infant into a beautiful but dangerous winged human-chimera, who forges a bond with both of her creators - only to have that bond turn deadly.. Tags: dna, genetics, gene manipulation, genetic engineering, biological experiment"} +{"id": "10658", "title": "Howard the Duck", "year": 1986, "duration_min": 110, "rating": 5.1, "genres": "Comedy, Fantasy, Science Fiction", "genres_pipe": "|Comedy|Fantasy|Science Fiction|", "keywords": "duck, physicist, extraterrestrial, anthropomorphism, alien invasion, alternative reality", "tags_pipe": "|duck|physicist|extraterrestrial|anthropomorphism|alien invasion|alternative reality|", "overview": "A scientific experiment unknowingly brings extraterrestrial life forms to the Earth through a laser beam. First is the cigar smoking drake Howard from the duck's planet. A few kids try to keep him from the greedy scientists and help him back to his planet. But then a much less friendly being arrives through the beam...", "text_for_embedding": "Howard the Duck (1986). Genres: Comedy, Fantasy, Science Fiction. A scientific experiment unknowingly brings extraterrestrial life forms to the Earth through a laser beam. First is the cigar smoking drake Howard from the duck's planet. A few kids try to keep him from the greedy scientists and help him back to his planet. But then a much less friendly being arrives through the beam.... Tags: duck, physicist, extraterrestrial, anthropomorphism, alien invasion, alternative reality"} +{"id": "13150", "title": "Pride and Glory", "year": 2008, "duration_min": 130, "rating": 6.3, "genres": "Thriller, Crime, Drama", "genres_pipe": "|Thriller|Crime|Drama|", "keywords": "megacity, brother-in-law, police", "tags_pipe": "|megacity|brother-in-law|police|", "overview": "A saga centered on a multi-generational family of New York City Police officers. The family's moral codes are tested when Ray Tierney, investigates a case that reveals an incendiary police corruption scandal involving his own brother-in-law. For Ray, the truth is revelatory, a Pandora's Box that threatens to upend not only the Tierney legacy but the entire NYPD.", "text_for_embedding": "Pride and Glory (2008). Genres: Thriller, Crime, Drama. A saga centered on a multi-generational family of New York City Police officers. The family's moral codes are tested when Ray Tierney, investigates a case that reveals an incendiary police corruption scandal involving his own brother-in-law. For Ray, the truth is revelatory, a Pandora's Box that threatens to upend not only the Tierney legacy but the entire NYPD.. Tags: megacity, brother-in-law, police"} +{"id": "9042", "title": "The Cave", "year": 2005, "duration_min": 97, "rating": 5.1, "genres": "Action, Adventure, Horror, Thriller", "genres_pipe": "|Action|Adventure|Horror|Thriller|", "keywords": "fall, burned alive, violence, diver, swimwear", "tags_pipe": "|fall|burned alive|violence|diver|swimwear|", "overview": "After a group of biologists discovers a huge network of unexplored caves in Romania and, believing it to be an undisturbed eco-system that has produced a new species, they hire the best American team of underwater cave explorers in the world. While exploring deeper into the underwater caves, a rockslide blocks their exit, and they soon discover a larger carnivorous creature has added them to its food chain.", "text_for_embedding": "The Cave (2005). Genres: Action, Adventure, Horror, Thriller. After a group of biologists discovers a huge network of unexplored caves in Romania and, believing it to be an undisturbed eco-system that has produced a new species, they hire the best American team of underwater cave explorers in the world. While exploring deeper into the underwater caves, a rockslide blocks their exit, and they soon discover a larger carnivorous creature has added them to its food chain.. Tags: fall, burned alive, violence, diver, swimwear"} +{"id": "17813", "title": "Alex & Emma", "year": 2003, "duration_min": 96, "rating": 5.0, "genres": "Comedy, Romance", "genres_pipe": "|Comedy|Romance|", "keywords": "gambling, sex, casino, based on novel, vandalism, lie, kiss, love, disappearance, writer, death, fortune", "tags_pipe": "|gambling|sex|casino|based on novel|vandalism|lie|kiss|love|disappearance|writer|death|fortune|", "overview": "Writer Alex Sheldon (Luke Wilson) must finish his novel within a month. If he doesn't, he won't get paid. And, if that happens, angry Mafia types to whom he owes money will come looking for him. In order to expedite things, Alex hires typist Emma Dinsmore (Kate Hudson) and begins dictating his novel. The book is about a doomed love affair between a character similar to Alex and a character named Polina Delacroix (Sophie Marceau). But, as Alex falls for Emma, his work takes a different turn.", "text_for_embedding": "Alex & Emma (2003). Genres: Comedy, Romance. Writer Alex Sheldon (Luke Wilson) must finish his novel within a month. If he doesn't, he won't get paid. And, if that happens, angry Mafia types to whom he owes money will come looking for him. In order to expedite things, Alex hires typist Emma Dinsmore (Kate Hudson) and begins dictating his novel. The book is about a doomed love affair between a character similar to Alex and a character named Polina Delacroix (Sophie Marceau). But, as Alex falls for Emma, his work takes a different turn.. Tags: gambling, sex, casino, based on novel, vandalism, lie, kiss, love, disappearance, writer, death, fortune"} +{"id": "11208", "title": "Wicker Park", "year": 2004, "duration_min": 114, "rating": 6.7, "genres": "Drama, Mystery, Romance, Thriller", "genres_pipe": "|Drama|Mystery|Romance|Thriller|", "keywords": "love of one's life, leave, look-alike, intrigue", "tags_pipe": "|love of one's life|leave|look-alike|intrigue|", "overview": "Matthew, a young advertising executive in Chicago, puts his life and a business trip to China on hold when he thinks he sees Lisa, the love of his life who left him without a word two years earlier, walking out of a restaurant one day.", "text_for_embedding": "Wicker Park (2004). Genres: Drama, Mystery, Romance, Thriller. Matthew, a young advertising executive in Chicago, puts his life and a business trip to China on hold when he thinks he sees Lisa, the love of his life who left him without a word two years earlier, walking out of a restaurant one day.. Tags: love of one's life, leave, look-alike, intrigue"} +{"id": "58151", "title": "Fright Night", "year": 2011, "duration_min": 106, "rating": 6.0, "genres": "Horror, Comedy", "genres_pipe": "|Horror|Comedy|", "keywords": "sunrise, vampire, suspicion, remake, suburbia", "tags_pipe": "|sunrise|vampire|suspicion|remake|suburbia|", "overview": "A teenager suspects his new neighbour is a vampire. Unable to convince anyone, he tries to enlist the help of a self-proclaimed vampire hunter and magician in this remake of the 1985 comedy-horror classic.", "text_for_embedding": "Fright Night (2011). Genres: Horror, Comedy. A teenager suspects his new neighbour is a vampire. Unable to convince anyone, he tries to enlist the help of a self-proclaimed vampire hunter and magician in this remake of the 1985 comedy-horror classic.. Tags: sunrise, vampire, suspicion, remake, suburbia"} +{"id": "11400", "title": "The New World", "year": 2005, "duration_min": 135, "rating": 6.4, "genres": "Drama, History, Romance", "genres_pipe": "|Drama|History|Romance|", "keywords": "chief, colonialism, new world", "tags_pipe": "|chief|colonialism|new world|", "overview": "A drama about explorer John Smith and the clash between Native Americans and English settlers in the 17th century.", "text_for_embedding": "The New World (2005). Genres: Drama, History, Romance. A drama about explorer John Smith and the clash between Native Americans and English settlers in the 17th century.. Tags: chief, colonialism, new world"} +{"id": "10350", "title": "Wing Commander", "year": 1999, "duration_min": 100, "rating": 4.0, "genres": "Action, Science Fiction", "genres_pipe": "|Action|Science Fiction|", "keywords": "fight, pilot, outer space, based on video game, space opera, space carrier", "tags_pipe": "|fight|pilot|outer space|based on video game|space opera|space carrier|", "overview": "The Hollywood version of the popular video game series \"Wing Commander\". Unlike other video games to feature film transitions, series creator Chris Roberts was heavily involved in the film's creation. This is the story of Christopher Blair and Todd \"Maniac\" Marshall as they arrive at the Tiger Claw and are soon forced to stop a Kilrathi fleet heading towards Earth.", "text_for_embedding": "Wing Commander (1999). Genres: Action, Science Fiction. The Hollywood version of the popular video game series \"Wing Commander\". Unlike other video games to feature film transitions, series creator Chris Roberts was heavily involved in the film's creation. This is the story of Christopher Blair and Todd \"Maniac\" Marshall as they arrive at the Tiger Claw and are soon forced to stop a Kilrathi fleet heading towards Earth.. Tags: fight, pilot, outer space, based on video game, space opera, space carrier"} +{"id": "28902", "title": "In Dreams", "year": 1999, "duration_min": 100, "rating": 5.4, "genres": "Drama, Thriller", "genres_pipe": "|Drama|Thriller|", "keywords": "based on novel, suicide attempt, dream, kidnapping, victim of murder, suspense, serial killer, hitchcockian", "tags_pipe": "|based on novel|suicide attempt|dream|kidnapping|victim of murder|suspense|serial killer|hitchcockian|", "overview": "Claire Cooper dreams strange things from time to time. One night, she dreams about a little girl being taken away by a stranger...", "text_for_embedding": "In Dreams (1999). Genres: Drama, Thriller. Claire Cooper dreams strange things from time to time. One night, she dreams about a little girl being taken away by a stranger.... Tags: based on novel, suicide attempt, dream, kidnapping, victim of murder, suspense, serial killer, hitchcockian"} +{"id": "14164", "title": "Dragonball Evolution", "year": 2009, "duration_min": 85, "rating": 2.9, "genres": "Action, Adventure, Fantasy, Science Fiction, Thriller", "genres_pipe": "|Action|Adventure|Fantasy|Science Fiction|Thriller|", "keywords": "karate, superhero, revenge, dragon, duringcreditsstinger", "tags_pipe": "|karate|superhero|revenge|dragon|duringcreditsstinger|", "overview": "The young warrior Son Goku sets out on a quest, racing against time and the vengeful King Piccolo, to collect a set of seven magical orbs that will grant their wielder unlimited power.", "text_for_embedding": "Dragonball Evolution (2009). Genres: Action, Adventure, Fantasy, Science Fiction, Thriller. The young warrior Son Goku sets out on a quest, racing against time and the vengeful King Piccolo, to collect a set of seven magical orbs that will grant their wielder unlimited power.. Tags: karate, superhero, revenge, dragon, duringcreditsstinger"} +{"id": "76640", "title": "The Last Stand", "year": 2013, "duration_min": 107, "rating": 5.7, "genres": "Action, Crime, Thriller", "genres_pipe": "|Action|Crime|Thriller|", "keywords": "sheriff, small town, hostage, prisoner, fbi, border, escape, car chase, convoy, machine gun, neo-western", "tags_pipe": "|sheriff|small town|hostage|prisoner|fbi|border|escape|car chase|convoy|machine gun|neo-western|", "overview": "Ray Owens is sheriff of the quiet US border town of Sommerton Junction after leaving the LAPD following a bungled operation. Following his escape from the FBI, a notorious drug baron, his gang, and a hostage are heading toward Sommerton Junction where the police are preparing to make a last stand to intercept them before they cross the border. Owens is reluctant to become involved but ultimately joins in with the law enforcement efforts", "text_for_embedding": "The Last Stand (2013). Genres: Action, Crime, Thriller. Ray Owens is sheriff of the quiet US border town of Sommerton Junction after leaving the LAPD following a bungled operation. Following his escape from the FBI, a notorious drug baron, his gang, and a hostage are heading toward Sommerton Junction where the police are preparing to make a last stand to intercept them before they cross the border. Owens is reluctant to become involved but ultimately joins in with the law enforcement efforts. Tags: sheriff, small town, hostage, prisoner, fbi, border, escape, car chase, convoy, machine gun, neo-western"} +{"id": "11058", "title": "Godsend", "year": 2004, "duration_min": 102, "rating": 4.7, "genres": "Drama, Horror, Science Fiction, Thriller", "genres_pipe": "|Drama|Horror|Science Fiction|Thriller|", "keywords": "schizophrenia, clone, loss of son, nightmare, doctor", "tags_pipe": "|schizophrenia|clone|loss of son|nightmare|doctor|", "overview": "A couple agree to have their deceased son cloned under the supervision of an enigmatic doctor, but bizarre things start to happen years after his rebirth.", "text_for_embedding": "Godsend (2004). Genres: Drama, Horror, Science Fiction, Thriller. A couple agree to have their deceased son cloned under the supervision of an enigmatic doctor, but bizarre things start to happen years after his rebirth.. Tags: schizophrenia, clone, loss of son, nightmare, doctor"} +{"id": "14844", "title": "Chasing Liberty", "year": 2004, "duration_min": 111, "rating": 6.1, "genres": "Comedy, Romance", "genres_pipe": "|Comedy|Romance|", "keywords": "venice, berlin, usa president, undercover, prague, romantic comedy, travel, lying, young adult, secret service agent, overprotective father", "tags_pipe": "|venice|berlin|usa president|undercover|prague|romantic comedy|travel|lying|young adult|secret service agent|overprotective father|", "overview": "The President's daughter, unable to experience life like a normal 18 year-old, escapes from her entourage of Secret Service agents while traveling in Europe. She falls in love with a handsome British stranger, who also happens to be working undercover for her father.", "text_for_embedding": "Chasing Liberty (2004). Genres: Comedy, Romance. The President's daughter, unable to experience life like a normal 18 year-old, escapes from her entourage of Secret Service agents while traveling in Europe. She falls in love with a handsome British stranger, who also happens to be working undercover for her father.. Tags: venice, berlin, usa president, undercover, prague, romantic comedy, travel, lying, young adult, secret service agent, overprotective father"} +{"id": "57089", "title": "Hoodwinked Too! Hood VS. Evil", "year": 2011, "duration_min": 86, "rating": 4.8, "genres": "Comedy, Animation, Family", "genres_pipe": "|Comedy|Animation|Family|", "keywords": "witch, wolf, little red riding hood, sequel, computer animation, goat, aftercreditsstinger, duringcreditsstinger", "tags_pipe": "|witch|wolf|little red riding hood|sequel|computer animation|goat|aftercreditsstinger|duringcreditsstinger|", "overview": "Red Riding Hood is training in the group of Sister Hoods, when she and the Wolf are called to examine the sudden mysterious disappearance of Hansel and Gretel.", "text_for_embedding": "Hoodwinked Too! Hood VS. Evil (2011). Genres: Comedy, Animation, Family. Red Riding Hood is training in the group of Sister Hoods, when she and the Wolf are called to examine the sudden mysterious disappearance of Hansel and Gretel.. Tags: witch, wolf, little red riding hood, sequel, computer animation, goat, aftercreditsstinger, duringcreditsstinger"} +{"id": "1947", "title": "An Unfinished Life", "year": 2005, "duration_min": 108, "rating": 6.7, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "loss of son, sheriff, wyoming, grandfather granddaughter relationship, violence against women", "tags_pipe": "|loss of son|sheriff|wyoming|grandfather granddaughter relationship|violence against women|", "overview": "Stoic and heartbroken, Einar Gilkyson quietly lives in the rugged Wyoming ranchlands alongside his only trusted friend, Mitch Bradley. Then, suddenly, the woman he blames for the death of his only son arrives at his door broke, desperate, and with a granddaughter he's never known. But even as buried anger and accusations resurface, the way is opened for unexpected connection, adventure, and forgiveness.", "text_for_embedding": "An Unfinished Life (2005). Genres: Drama. Stoic and heartbroken, Einar Gilkyson quietly lives in the rugged Wyoming ranchlands alongside his only trusted friend, Mitch Bradley. Then, suddenly, the woman he blames for the death of his only son arrives at his door broke, desperate, and with a granddaughter he's never known. But even as buried anger and accusations resurface, the way is opened for unexpected connection, adventure, and forgiveness.. Tags: loss of son, sheriff, wyoming, grandfather granddaughter relationship, violence against women"} +{"id": "8054", "title": "The Imaginarium of Doctor Parnassus", "year": 2009, "duration_min": 123, "rating": 6.3, "genres": "Adventure, Fantasy, Mystery", "genres_pipe": "|Adventure|Fantasy|Mystery|", "keywords": "circus, immortality, elderly, aftercreditsstinger, duringcreditsstinger", "tags_pipe": "|circus|immortality|elderly|aftercreditsstinger|duringcreditsstinger|", "overview": "A traveling theater company gives its audience much more than they were expecting.", "text_for_embedding": "The Imaginarium of Doctor Parnassus (2009). Genres: Adventure, Fantasy, Mystery. A traveling theater company gives its audience much more than they were expecting.. Tags: circus, immortality, elderly, aftercreditsstinger, duringcreditsstinger"} +{"id": "46829", "title": "Barney's Version", "year": 2010, "duration_min": 134, "rating": 7.2, "genres": "Comedy, Drama", "genres_pipe": "|Comedy|Drama|", "keywords": "suicide, jealousy, canada, independent film, politically incorrect", "tags_pipe": "|suicide|jealousy|canada|independent film|politically incorrect|", "overview": "The picaresque and touching story of the politically incorrect, fully lived life of the impulsive, irascible and fearlessly blunt Barney Panofsky.", "text_for_embedding": "Barney's Version (2010). Genres: Comedy, Drama. The picaresque and touching story of the politically incorrect, fully lived life of the impulsive, irascible and fearlessly blunt Barney Panofsky.. Tags: suicide, jealousy, canada, independent film, politically incorrect"} +{"id": "146238", "title": "Runner Runner", "year": 2013, "duration_min": 91, "rating": 5.5, "genres": "Crime, Thriller, Drama", "genres_pipe": "|Crime|Thriller|Drama|", "keywords": "gambling, casino, gambling debts, dirty cop, puerto rico", "tags_pipe": "|gambling|casino|gambling debts|dirty cop|puerto rico|", "overview": "When a poor college student who cracks an online poker game goes bust, he arranges a face-to-face with the man he thinks cheated him, a sly offshore entrepreneur.", "text_for_embedding": "Runner Runner (2013). Genres: Crime, Thriller, Drama. When a poor college student who cracks an online poker game goes bust, he arranges a face-to-face with the man he thinks cheated him, a sly offshore entrepreneur.. Tags: gambling, casino, gambling debts, dirty cop, puerto rico"} +{"id": "9989", "title": "Antitrust", "year": 2001, "duration_min": 108, "rating": 5.8, "genres": "Action, Crime, Drama", "genres_pipe": "|Action|Crime|Drama|", "keywords": "technology, garage, hacker, male friendship, microchip, minidisc, computer, company, friendship bracelet, suspense, business start-up, computer expert, childhood friends, betrayal by friend", "tags_pipe": "|technology|garage|hacker|male friendship|microchip|minidisc|computer|company|friendship bracelet|suspense|business start-up|computer expert|childhood friends|betrayal by friend|", "overview": "A computer programmer's dream job at a hot Portland-based firm turns nightmarish when he discovers his boss has a secret and ruthless means of dispatching anti-trust problems.", "text_for_embedding": "Antitrust (2001). Genres: Action, Crime, Drama. A computer programmer's dream job at a hot Portland-based firm turns nightmarish when he discovers his boss has a secret and ruthless means of dispatching anti-trust problems.. Tags: technology, garage, hacker, male friendship, microchip, minidisc, computer, company, friendship bracelet, suspense, business start-up, computer expert, childhood friends, betrayal by friend"} +{"id": "9665", "title": "Glory", "year": 1989, "duration_min": 122, "rating": 7.4, "genres": "War", "genres_pipe": "|War|", "keywords": "war, racism, battle, union soldier, confederate soldier, american civil war", "tags_pipe": "|war|racism|battle|union soldier|confederate soldier|american civil war|", "overview": "Robert Gould Shaw leads the US Civil War's first all-black volunteer company, fighting prejudices of both his own Union army and the Confederates.", "text_for_embedding": "Glory (1989). Genres: War. Robert Gould Shaw leads the US Civil War's first all-black volunteer company, fighting prejudices of both his own Union army and the Confederates.. Tags: war, racism, battle, union soldier, confederate soldier, american civil war"} +{"id": "311", "title": "Once Upon a Time in America", "year": 1984, "duration_min": 229, "rating": 8.2, "genres": "Drama, Crime", "genres_pipe": "|Drama|Crime|", "keywords": "life and death, corruption, street gang, rape, sadistic, lovesickness, sexual abuse, money laundering, opium", "tags_pipe": "|life and death|corruption|street gang|rape|sadistic|lovesickness|sexual abuse|money laundering|opium|", "overview": "A former Prohibition-era Jewish gangster returns to the Lower East Side of Manhattan over thirty years later, where he once again must confront the ghosts and regrets of his old life.", "text_for_embedding": "Once Upon a Time in America (1984). Genres: Drama, Crime. A former Prohibition-era Jewish gangster returns to the Lower East Side of Manhattan over thirty years later, where he once again must confront the ghosts and regrets of his old life.. Tags: life and death, corruption, street gang, rape, sadistic, lovesickness, sexual abuse, money laundering, opium"} +{"id": "102362", "title": "Dead Man Down", "year": 2013, "duration_min": 118, "rating": 5.9, "genres": "Thriller, Action, Crime, Drama", "genres_pipe": "|Thriller|Action|Crime|Drama|", "keywords": "revenge, new york city, mysterious woman, crime lord", "tags_pipe": "|revenge|new york city|mysterious woman|crime lord|", "overview": "In New York City, a crime lord's right-hand man is seduced by a woman seeking retribution.", "text_for_embedding": "Dead Man Down (2013). Genres: Thriller, Action, Crime, Drama. In New York City, a crime lord's right-hand man is seduced by a woman seeking retribution.. Tags: revenge, new york city, mysterious woman, crime lord"} +{"id": "11162", "title": "The Merchant of Venice", "year": 2004, "duration_min": 138, "rating": 6.7, "genres": "Drama, Romance", "genres_pipe": "|Drama|Romance|", "keywords": "venice, shakespeare, jew, ship, salesperson, meat, money, suitor, falling in love, credit, 16th century", "tags_pipe": "|venice|shakespeare|jew|ship|salesperson|meat|money|suitor|falling in love|credit|16th century|", "overview": "In 16th century Venice, when a merchant must default on a large loan from an abused Jewish moneylender for a friend with romantic ambitions, the bitterly vengeful creditor demands a gruesome payment instead.", "text_for_embedding": "The Merchant of Venice (2004). Genres: Drama, Romance. In 16th century Venice, when a merchant must default on a large loan from an abused Jewish moneylender for a friend with romantic ambitions, the bitterly vengeful creditor demands a gruesome payment instead.. Tags: venice, shakespeare, jew, ship, salesperson, meat, money, suitor, falling in love, credit, 16th century"} +{"id": "6016", "title": "The Good Thief", "year": 2003, "duration_min": 108, "rating": 6.0, "genres": "Crime, Drama, Thriller", "genres_pipe": "|Crime|Drama|Thriller|", "keywords": "casino, monte carlo, painting, caper, independent film, heist movie", "tags_pipe": "|casino|monte carlo|painting|caper|independent film|heist movie|", "overview": "A compulsive gambler plans the heist of his life - a priceless collection of art from the world-class Casino Riviera in Monte Carlo.", "text_for_embedding": "The Good Thief (2003). Genres: Crime, Drama, Thriller. A compulsive gambler plans the heist of his life - a priceless collection of art from the world-class Casino Riviera in Monte Carlo.. Tags: casino, monte carlo, painting, caper, independent film, heist movie"} +{"id": "17186", "title": "Supercross", "year": 2005, "duration_min": 80, "rating": 5.4, "genres": "Action, Adventure, Drama, Romance", "genres_pipe": "|Action|Adventure|Drama|Romance|", "keywords": "sport", "tags_pipe": "|sport|", "overview": "Faced with the suspicious death of their father, two brothers must motivate one another to get back on their bikes and take the Las Vegas Motocross Championships by storm.", "text_for_embedding": "Supercross (2005). Genres: Action, Adventure, Drama, Romance. Faced with the suspicious death of their father, two brothers must motivate one another to get back on their bikes and take the Las Vegas Motocross Championships by storm.. Tags: sport"} +{"id": "13967", "title": "Miss Potter", "year": 2006, "duration_min": 92, "rating": 6.3, "genres": "Drama, Family, Romance", "genres_pipe": "|Drama|Family|Romance|", "keywords": "loss of lover, mountain lake, author, rabbit", "tags_pipe": "|loss of lover|mountain lake|author|rabbit|", "overview": "The story of Beatrix Potter, the author of the beloved and best-selling children's book, \"The Tale of Peter Rabbit\", and her struggle for love, happiness and success.", "text_for_embedding": "Miss Potter (2006). Genres: Drama, Family, Romance. The story of Beatrix Potter, the author of the beloved and best-selling children's book, \"The Tale of Peter Rabbit\", and her struggle for love, happiness and success.. Tags: loss of lover, mountain lake, author, rabbit"} +{"id": "2008", "title": "The Promise", "year": 2005, "duration_min": 98, "rating": 5.0, "genres": "Fantasy, Drama, Action, Thriller, Romance", "genres_pipe": "|Fantasy|Drama|Action|Thriller|Romance|", "keywords": "servant, emperor, battle assignment", "tags_pipe": "|servant|emperor|battle assignment|", "overview": "An orphaned girl, driven by poverty at such a young age, makes a promise with an enchantress. In return for beauty and the admiration of every man, she will never be with the man she loves. This spell cannot be broken unless the impossible happens: snow falling in spring and the dead coming back to life. Now a grown and beautiful princess, she regrets her promise, for all of the men she's loved has always been met with tragedy. In love again with a man behind a red armor and a golden mask who rescues her from death, she is tormented by their inevitable parting. Meanwhile, Kunlun, the slave of a great general, is searching for the lost memories of a family he once had. Soon the fate of these two intertwine when the princess believes the general to be her hero, thus pulling him into this web of fate. What end will befallen our three characters? Are their fates already sealed by a higher power, or can they still choose a life they want?", "text_for_embedding": "The Promise (2005). Genres: Fantasy, Drama, Action, Thriller, Romance. An orphaned girl, driven by poverty at such a young age, makes a promise with an enchantress. In return for beauty and the admiration of every man, she will never be with the man she loves. This spell cannot be broken unless the impossible happens: snow falling in spring and the dead coming back to life. Now a grown and beautiful princess, she regrets her promise, for all of the men she's loved has always been met with tragedy. In love again with a man behind a red armor and a golden mask who rescues her from death, she is tormented by their inevitable parting. Meanwhile, Kunlun, the slave of a great general, is searching for the lost memories of a family he once had. Soon the fate of these two intertwine when the princess believes the general to be her hero, thus pulling him into this web of fate. What end will befallen our three characters? Are their fates already sealed by a higher power, or can they still choose a life they want?. Tags: servant, emperor, battle assignment"} +{"id": "9053", "title": "DOA: Dead or Alive", "year": 2006, "duration_min": 87, "rating": 5.0, "genres": "Adventure, Action, Thriller", "genres_pipe": "|Adventure|Action|Thriller|", "keywords": "competition, martial arts, kung fu, assassin, fight, island, karate, nerd, wrestling, bikini, ninja, tournament, explosion, violence, based on video game", "tags_pipe": "|competition|martial arts|kung fu|assassin|fight|island|karate|nerd|wrestling|bikini|ninja|tournament|explosion|violence|based on video game|", "overview": "Four beautiful rivals at an invitation-only martial-arts tournament join forces against a sinister threat. Princess Kasumi is an aristocratic warrior trained by martial-arts masters. Tina Armstrong is a wrestling superstar. Helena Douglas is an athlete with a tragic past. Christie Allen earns her keep as a thief and an assassin-for-hire.", "text_for_embedding": "DOA: Dead or Alive (2006). Genres: Adventure, Action, Thriller. Four beautiful rivals at an invitation-only martial-arts tournament join forces against a sinister threat. Princess Kasumi is an aristocratic warrior trained by martial-arts masters. Tina Armstrong is a wrestling superstar. Helena Douglas is an athlete with a tragic past. Christie Allen earns her keep as a thief and an assassin-for-hire.. Tags: competition, martial arts, kung fu, assassin, fight, island, karate, nerd, wrestling, bikini, ninja, tournament, explosion, violence, based on video game"} +{"id": "4512", "title": "The Assassination of Jesse James by the Coward Robert Ford", "year": 2007, "duration_min": 160, "rating": 7.0, "genres": "Action, Drama, Western", "genres_pipe": "|Action|Drama|Western|", "keywords": "killing, admiration, hold-up robbery, to shoot dead, idol, missouri, media, jesse james, cowardliness, family, coward", "tags_pipe": "|killing|admiration|hold-up robbery|to shoot dead|idol|missouri|media|jesse james|cowardliness|family|coward|", "overview": "Outlaw Jesse James is rumored be the 'fastest gun in the West'. An eager recruit into James' notorious gang, Robert Ford eventually grows jealous of the famed outlaw and, when Robert and his brother sense an opportunity to kill James, their murderous action elevates their target to near mythical status.", "text_for_embedding": "The Assassination of Jesse James by the Coward Robert Ford (2007). Genres: Action, Drama, Western. Outlaw Jesse James is rumored be the 'fastest gun in the West'. An eager recruit into James' notorious gang, Robert Ford eventually grows jealous of the famed outlaw and, when Robert and his brother sense an opportunity to kill James, their murderous action elevates their target to near mythical status.. Tags: killing, admiration, hold-up robbery, to shoot dead, idol, missouri, media, jesse james, cowardliness, family, coward"} +{"id": "76349", "title": "1911", "year": 2011, "duration_min": 125, "rating": 5.0, "genres": "Adventure, Drama, Action, History, War", "genres_pipe": "|Adventure|Drama|Action|History|War|", "keywords": "martial arts, sword, revolution, blood, gunfight, extreme violence, brutality, combat", "tags_pipe": "|martial arts|sword|revolution|blood|gunfight|extreme violence|brutality|combat|", "overview": "At the beginning of the 20th century, China is in a state of crisis. The country is split into warring factions, the citizens are starving, and recent political reforms have made matters worse, not better. The ruling Qing Dynasty, led by a seven-year-old emperor, and his ruthless mother, Empress Dowager Longyu is completely out of touch after 250 years of unquestioned power. Huang Xing has recently returned from Japan, where he has studied the art of modern warfare. When he finds his country falling apart, he feels he has no choice but to pick up the sword.", "text_for_embedding": "1911 (2011). Genres: Adventure, Drama, Action, History, War. At the beginning of the 20th century, China is in a state of crisis. The country is split into warring factions, the citizens are starving, and recent political reforms have made matters worse, not better. The ruling Qing Dynasty, led by a seven-year-old emperor, and his ruthless mother, Empress Dowager Longyu is completely out of touch after 250 years of unquestioned power. Huang Xing has recently returned from Japan, where he has studied the art of modern warfare. When he finds his country falling apart, he feels he has no choice but to pick up the sword.. Tags: martial arts, sword, revolution, blood, gunfight, extreme violence, brutality, combat"} +{"id": "31203", "title": "Little Nicholas", "year": 2009, "duration_min": 91, "rating": 5.9, "genres": "Comedy", "genres_pipe": "|Comedy|", "keywords": "", "tags_pipe": "", "overview": "Nicolas has a happy existence, parents who love him, a great group of friends with whom he has great fun, and all he wants is that nothing to changes... However, one day, he overhears a conversation that leads him to believe that his life might change forever, his mother is pregnant!. He panics and envisions the worst: soon a little brother will...", "text_for_embedding": "Little Nicholas (2009). Genres: Comedy. Nicolas has a happy existence, parents who love him, a great group of friends with whom he has great fun, and all he wants is that nothing to changes... However, one day, he overhears a conversation that leads him to believe that his life might change forever, his mother is pregnant!. He panics and envisions the worst: soon a little brother will.... Tags: "} +{"id": "265208", "title": "Wild Card", "year": 2015, "duration_min": 92, "rating": 5.4, "genres": "Thriller, Crime, Drama", "genres_pipe": "|Thriller|Crime|Drama|", "keywords": "gambling, bodyguard, remake", "tags_pipe": "|gambling|bodyguard|remake|", "overview": "When a Las Vegas bodyguard with lethal skills and a gambling problem gets in trouble with the mob, he has one last play… and it's all or nothing.", "text_for_embedding": "Wild Card (2015). Genres: Thriller, Crime, Drama. When a Las Vegas bodyguard with lethal skills and a gambling problem gets in trouble with the mob, he has one last play… and it's all or nothing.. Tags: gambling, bodyguard, remake"} +{"id": "45610", "title": "Machine Gun Preacher", "year": 2011, "duration_min": 129, "rating": 6.4, "genres": "Action, Thriller, Crime", "genres_pipe": "|Action|Thriller|Crime|", "keywords": "underage soldier, duringcreditsstinger", "tags_pipe": "|underage soldier|duringcreditsstinger|", "overview": "The true story of Sam Childers, a former drug-dealing biker who finds God and became a crusader for hundreds of Sudanese children who've been kidnapped and pressed into duty as soldiers.", "text_for_embedding": "Machine Gun Preacher (2011). Genres: Action, Thriller, Crime. The true story of Sam Childers, a former drug-dealing biker who finds God and became a crusader for hundreds of Sudanese children who've been kidnapped and pressed into duty as soldiers.. Tags: underage soldier, duringcreditsstinger"} +{"id": "50135", "title": "Animals United", "year": 2010, "duration_min": 93, "rating": 5.5, "genres": "Animation, Family, Comedy", "genres_pipe": "|Animation|Family|Comedy|", "keywords": "dam, shark, animal, hoover dam, crane the bird", "tags_pipe": "|dam|shark|animal|hoover dam|crane the bird|", "overview": "A group of animals waiting for the annual flood they rely on for food and water discover that the humans, who have been destroying their habitats have built a dam for a leisure resort. The animals endeavour to save the delta and send a message to the humans not to interfere with nature.", "text_for_embedding": "Animals United (2010). Genres: Animation, Family, Comedy. A group of animals waiting for the annual flood they rely on for food and water discover that the humans, who have been destroying their habitats have built a dam for a leisure resort. The animals endeavour to save the delta and send a message to the humans not to interfere with nature.. Tags: dam, shark, animal, hoover dam, crane the bird"} +{"id": "1874", "title": "Goodbye Bafana", "year": 2007, "duration_min": 140, "rating": 7.0, "genres": "History, Drama", "genres_pipe": "|History|Drama|", "keywords": "jail guard, prison cell, south africa, apartheid, nelson mandela, escape, xenophobia", "tags_pipe": "|jail guard|prison cell|south africa|apartheid|nelson mandela|escape|xenophobia|", "overview": "The true story of a white South African racist whose life was profoundly altered by the black prisoner he guarded for twenty years. The prisoner's name was Nelson Mandela.", "text_for_embedding": "Goodbye Bafana (2007). Genres: History, Drama. The true story of a white South African racist whose life was profoundly altered by the black prisoner he guarded for twenty years. The prisoner's name was Nelson Mandela.. Tags: jail guard, prison cell, south africa, apartheid, nelson mandela, escape, xenophobia"} +{"id": "271331", "title": "United Passions", "year": 2014, "duration_min": 110, "rating": 3.0, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "soccer", "tags_pipe": "|soccer|", "overview": "An epic, untold story that brings to life the inspiring saga of the World Cup and the three determined men who created it. Driven by their vision and passion, three men, overcame their doubts and fought obstacles and scandals to make the World Cup a reality. Spanning the tumultuous 20th Century, this timeless saga celebrates the event that became the most popular sporting event in the world.", "text_for_embedding": "United Passions (2014). Genres: Drama. An epic, untold story that brings to life the inspiring saga of the World Cup and the three determined men who created it. Driven by their vision and passion, three men, overcame their doubts and fought obstacles and scandals to make the World Cup a reality. Spanning the tumultuous 20th Century, this timeless saga celebrates the event that became the most popular sporting event in the world.. Tags: soccer"} +{"id": "215211", "title": "Grace of Monaco", "year": 2014, "duration_min": 103, "rating": 5.8, "genres": "Romance, Drama", "genres_pipe": "|Romance|Drama|", "keywords": "monaco, prince", "tags_pipe": "|monaco|prince|", "overview": "The story of former Hollywood star Grace Kelly's crisis of marriage and identity, during a political dispute between Monaco's Prince Rainier III and France's Charles De Gaulle, and a looming French invasion of Monaco in the early 1960s.", "text_for_embedding": "Grace of Monaco (2014). Genres: Romance, Drama. The story of former Hollywood star Grace Kelly's crisis of marriage and identity, during a political dispute between Monaco's Prince Rainier III and France's Charles De Gaulle, and a looming French invasion of Monaco in the early 1960s.. Tags: monaco, prince"} +{"id": "367961", "title": "Savva. Heart of the Warrior", "year": 2015, "duration_min": 85, "rating": 6.4, "genres": "Fantasy, Adventure, Animation", "genres_pipe": "|Fantasy|Adventure|Animation|", "keywords": "village, creature, battle, monkey, hyena", "tags_pipe": "|village|creature|battle|monkey|hyena|", "overview": "A fairytale about a grand life journey of a 10-year old boy Savva devoted to help his Mom and fellow village people to break free from the vicious hyenas.", "text_for_embedding": "Savva. Heart of the Warrior (2015). Genres: Fantasy, Adventure, Animation. A fairytale about a grand life journey of a 10-year old boy Savva devoted to help his Mom and fellow village people to break free from the vicious hyenas.. Tags: village, creature, battle, monkey, hyena"} +{"id": "10955", "title": "Ripley's Game", "year": 2002, "duration_min": 110, "rating": 6.6, "genres": "Crime, Thriller", "genres_pipe": "|Crime|Thriller|", "keywords": "berlin, male nudity, villa, milan, hitman, assignment, greed, insult, performance, russian mafia, party, woman director", "tags_pipe": "|berlin|male nudity|villa|milan|hitman|assignment|greed|insult|performance|russian mafia|party|woman director|", "overview": "Tom Ripley - cool, urbane, wealthy, and murderous - lives in a villa in the Veneto with Luisa, his harpsichord-playing girlfriend. A former business associate from Berlin's underworld pays a call asking Ripley's help in killing a rival. Ripley - ever a student of human nature - initiates a game to turn a mild and innocent local picture framer into a hit man. The artisan, Jonathan Trevanny, who's dying of cancer, has a wife, young son, and little to leave them. If Ripley draws Jonathan into the game, can Ripley maintain control? Does it stop at one killing? What if Ripley develops a conscience?", "text_for_embedding": "Ripley's Game (2002). Genres: Crime, Thriller. Tom Ripley - cool, urbane, wealthy, and murderous - lives in a villa in the Veneto with Luisa, his harpsichord-playing girlfriend. A former business associate from Berlin's underworld pays a call asking Ripley's help in killing a rival. Ripley - ever a student of human nature - initiates a game to turn a mild and innocent local picture framer into a hit man. The artisan, Jonathan Trevanny, who's dying of cancer, has a wife, young son, and little to leave them. If Ripley draws Jonathan into the game, can Ripley maintain control? Does it stop at one killing? What if Ripley develops a conscience?. Tags: berlin, male nudity, villa, milan, hitman, assignment, greed, insult, performance, russian mafia, party, woman director"} +{"id": "223702", "title": "Sausage Party", "year": 2016, "duration_min": 83, "rating": 5.6, "genres": "Adventure, Animation, Comedy, Fantasy", "genres_pipe": "|Adventure|Animation|Comedy|Fantasy|", "keywords": "supermarket, party, sausage, food, anthropomorphism, sex scene, musical number, adult animation, grocery store, gum", "tags_pipe": "|supermarket|party|sausage|food|anthropomorphism|sex scene|musical number|adult animation|grocery store|gum|", "overview": "Sausage Party, the first R-rated CG animated movie, is about one sausage leading a group of supermarket products on a quest to discover the truth about their existence and what really happens when they become chosen to leave the grocery store.", "text_for_embedding": "Sausage Party (2016). Genres: Adventure, Animation, Comedy, Fantasy. Sausage Party, the first R-rated CG animated movie, is about one sausage leading a group of supermarket products on a quest to discover the truth about their existence and what really happens when they become chosen to leave the grocery store.. Tags: supermarket, party, sausage, food, anthropomorphism, sex scene, musical number, adult animation, grocery store, gum"} +{"id": "254470", "title": "Pitch Perfect 2", "year": 2015, "duration_min": 115, "rating": 6.8, "genres": "Comedy, Music", "genres_pipe": "|Comedy|Music|", "keywords": "music, sequel, singer, male female relationship, audition, group of friends, duringcreditsstinger, singing competition, female musician, singing contest, woman director, acapella", "tags_pipe": "|music|sequel|singer|male female relationship|audition|group of friends|duringcreditsstinger|singing competition|female musician|singing contest|woman director|acapella|", "overview": "The Bellas are back, and they are better than ever. After being humiliated in front of none other than the President of the United States of America, the Bellas are taken out of the Aca-Circuit. In order to clear their name, and regain their status, the Bellas take on a seemingly impossible task: winning an international competition no American team has ever won. In order to accomplish this monumental task, they need to strengthen the bonds of friendship and sisterhood and blow away the competition with their amazing aca-magic! With all new friends and old rivals tagging along for the trip, the Bellas can hopefully accomplish their dreams.", "text_for_embedding": "Pitch Perfect 2 (2015). Genres: Comedy, Music. The Bellas are back, and they are better than ever. After being humiliated in front of none other than the President of the United States of America, the Bellas are taken out of the Aca-Circuit. In order to clear their name, and regain their status, the Bellas take on a seemingly impossible task: winning an international competition no American team has ever won. In order to accomplish this monumental task, they need to strengthen the bonds of friendship and sisterhood and blow away the competition with their amazing aca-magic! With all new friends and old rivals tagging along for the trip, the Bellas can hopefully accomplish their dreams.. Tags: music, sequel, singer, male female relationship, audition, group of friends, duringcreditsstinger, singing competition, female musician, singing contest, woman director, acapella"} +{"id": "69", "title": "Walk the Line", "year": 2005, "duration_min": 136, "rating": 7.3, "genres": "Drama, Music, Romance", "genres_pipe": "|Drama|Music|Romance|", "keywords": "germany, prison, music record, adultery, country music, guitar, loss of brother, concert, marriage, single, accident, 1960s", "tags_pipe": "|germany|prison|music record|adultery|country music|guitar|loss of brother|concert|marriage|single|accident|1960s|", "overview": "A chronicle of country music legend Johnny Cash's life, from his early days on an Arkansas cotton farm to his rise to fame with Sun Records in Memphis, where he recorded alongside Elvis Presley, Jerry Lee Lewis and Carl Perkins.", "text_for_embedding": "Walk the Line (2005). Genres: Drama, Music, Romance. A chronicle of country music legend Johnny Cash's life, from his early days on an Arkansas cotton farm to his rise to fame with Sun Records in Memphis, where he recorded alongside Elvis Presley, Jerry Lee Lewis and Carl Perkins.. Tags: germany, prison, music record, adultery, country music, guitar, loss of brother, concert, marriage, single, accident, 1960s"} +{"id": "4967", "title": "Keeping the Faith", "year": 2000, "duration_min": 127, "rating": 5.9, "genres": "Comedy", "genres_pipe": "|Comedy|", "keywords": "love triangle, rabbi, priest, catholicism", "tags_pipe": "|love triangle|rabbi|priest|catholicism|", "overview": "Best friends since they were kids, Rabbi Jacob Schram and Father Brian Finn are dynamic and popular young men living and working on New York's Upper West Side. When Anna Reilly, once their childhood friend and now grown into a beautiful corporate executive, suddenly returns to the city, she reenters Jake and Brian's lives and hearts with a vengeance. Sparks fly and an unusual and complicated love triangle ensues.", "text_for_embedding": "Keeping the Faith (2000). Genres: Comedy. Best friends since they were kids, Rabbi Jacob Schram and Father Brian Finn are dynamic and popular young men living and working on New York's Upper West Side. When Anna Reilly, once their childhood friend and now grown into a beautiful corporate executive, suddenly returns to the city, she reenters Jake and Brian's lives and hearts with a vengeance. Sparks fly and an unusual and complicated love triangle ensues.. Tags: love triangle, rabbi, priest, catholicism"} +{"id": "9449", "title": "The Borrowers", "year": 1997, "duration_min": 86, "rating": 5.8, "genres": "Adventure, Fantasy, Action, Comedy, Family", "genres_pipe": "|Adventure|Fantasy|Action|Comedy|Family|", "keywords": "dwarves, household, lawyer, little people, child's point of view, real estate", "tags_pipe": "|dwarves|household|lawyer|little people|child's point of view|real estate|", "overview": "The four-inch-tall Clock family secretly share a house with the normal-sized Lender family, \"borrowing\" such items as thread, safety pins, batteries and scraps of food. However, their peaceful co-existence is disturbed when evil lawyer Ocious P. Potter steals the will granting title to the house, which he plans to demolish in order to build apartments. The Lenders are forced to move, and the Clocks face the risk of being exposed to the normal-sized world.", "text_for_embedding": "The Borrowers (1997). Genres: Adventure, Fantasy, Action, Comedy, Family. The four-inch-tall Clock family secretly share a house with the normal-sized Lender family, \"borrowing\" such items as thread, safety pins, batteries and scraps of food. However, their peaceful co-existence is disturbed when evil lawyer Ocious P. Potter steals the will granting title to the house, which he plans to demolish in order to build apartments. The Lenders are forced to move, and the Clocks face the risk of being exposed to the normal-sized world.. Tags: dwarves, household, lawyer, little people, child's point of view, real estate"} +{"id": "11499", "title": "Frost/Nixon", "year": 2008, "duration_min": 122, "rating": 7.2, "genres": "Drama, History", "genres_pipe": "|Drama|History|", "keywords": "camera, lie, scandal, watergate scandal, richard nixon, reporter, writer", "tags_pipe": "|camera|lie|scandal|watergate scandal|richard nixon|reporter|writer|", "overview": "For three years after being forced from office, Nixon remained silent. But in summer 1977, the steely, cunning former commander-in-chief agreed to sit for one all-inclusive interview to confront the questions of his time in office and the Watergate scandal that ended his presidency. Nixon surprised everyone in selecting Frost as his televised confessor, intending to easily outfox the breezy British showman and secure a place in the hearts and minds of Americans. Likewise, Frost's team harboured doubts about their boss's ability to hold his own. But as the cameras rolled, a charged battle of wits resulted.", "text_for_embedding": "Frost/Nixon (2008). Genres: Drama, History. For three years after being forced from office, Nixon remained silent. But in summer 1977, the steely, cunning former commander-in-chief agreed to sit for one all-inclusive interview to confront the questions of his time in office and the Watergate scandal that ended his presidency. Nixon surprised everyone in selecting Frost as his televised confessor, intending to easily outfox the breezy British showman and secure a place in the hearts and minds of Americans. Likewise, Frost's team harboured doubts about their boss's ability to hold his own. But as the cameras rolled, a charged battle of wits resulted.. Tags: camera, lie, scandal, watergate scandal, richard nixon, reporter, writer"} +{"id": "4912", "title": "Confessions of a Dangerous Mind", "year": 2002, "duration_min": 113, "rating": 6.6, "genres": "Comedy, Crime, Drama, Romance, Thriller", "genres_pipe": "|Comedy|Crime|Drama|Romance|Thriller|", "keywords": "microfilm, biography, silencer, intrigue", "tags_pipe": "|microfilm|biography|silencer|intrigue|", "overview": "Television made him famous, but his biggest hits happened off screen. Television producer by day, CIA assassin by night, Chuck Barris was recruited by the CIA at the height of his TV career and trained to become a covert operative. Or so Barris said.", "text_for_embedding": "Confessions of a Dangerous Mind (2002). Genres: Comedy, Crime, Drama, Romance, Thriller. Television made him famous, but his biggest hits happened off screen. Television producer by day, CIA assassin by night, Chuck Barris was recruited by the CIA at the height of his TV career and trained to become a covert operative. Or so Barris said.. Tags: microfilm, biography, silencer, intrigue"} +{"id": "12771", "title": "Serving Sara", "year": 2002, "duration_min": 100, "rating": 5.0, "genres": "Comedy, Romance", "genres_pipe": "|Comedy|Romance|", "keywords": "wealth, falling in love, divorce, pretty woman, winery", "tags_pipe": "|wealth|falling in love|divorce|pretty woman|winery|", "overview": "Serving Sara is a 2002 romantic comedy film which stars Matthew Perry, Elizabeth Hurley and Bruce Campbell. Joe Tyler (Perry) is a process server who is given the assignment to serve Sara Moore (Hurley) with divorce papers.", "text_for_embedding": "Serving Sara (2002). Genres: Comedy, Romance. Serving Sara is a 2002 romantic comedy film which stars Matthew Perry, Elizabeth Hurley and Bruce Campbell. Joe Tyler (Perry) is a process server who is given the assignment to serve Sara Moore (Hurley) with divorce papers.. Tags: wealth, falling in love, divorce, pretty woman, winery"} +{"id": "323676", "title": "The Boss", "year": 2016, "duration_min": 91, "rating": 5.5, "genres": "Comedy", "genres_pipe": "|Comedy|", "keywords": "business woman, ex-con, duringcreditsstinger, girl scouts", "tags_pipe": "|business woman|ex-con|duringcreditsstinger|girl scouts|", "overview": "A titan of industry is sent to prison after she's caught for insider trading. When she emerges ready to rebrand herself as America's latest sweetheart, not everyone she screwed over is so quick to forgive and forget.", "text_for_embedding": "The Boss (2016). Genres: Comedy. A titan of industry is sent to prison after she's caught for insider trading. When she emerges ready to rebrand herself as America's latest sweetheart, not everyone she screwed over is so quick to forgive and forget.. Tags: business woman, ex-con, duringcreditsstinger, girl scouts"} +{"id": "12506", "title": "Cry Freedom", "year": 1987, "duration_min": 157, "rating": 6.9, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "journalist, 1970s, male friendship, south africa, apartheid", "tags_pipe": "|journalist|1970s|male friendship|south africa|apartheid|", "overview": "A dramatic story, based on actual events, about the friendship between two men struggling against apartheid in South Africa in the 1970s. Donald Woods is a white liberal journalist in South Africa who begins to follow the activities of Stephen Biko, a courageous and outspoken black anti-apartheid activist.", "text_for_embedding": "Cry Freedom (1987). Genres: Drama. A dramatic story, based on actual events, about the friendship between two men struggling against apartheid in South Africa in the 1970s. Donald Woods is a white liberal journalist in South Africa who begins to follow the activities of Stephen Biko, a courageous and outspoken black anti-apartheid activist.. Tags: journalist, 1970s, male friendship, south africa, apartheid"} +{"id": "24071", "title": "Mumford", "year": 1999, "duration_min": 112, "rating": 6.3, "genres": "Comedy, Drama, Romance", "genres_pipe": "|Comedy|Drama|Romance|", "keywords": "", "tags_pipe": "", "overview": "In the small town of Mumford, a psychologist of the same name moves in and quickly becomes very popular, despite a questionable past.", "text_for_embedding": "Mumford (1999). Genres: Comedy, Drama, Romance. In the small town of Mumford, a psychologist of the same name moves in and quickly becomes very popular, despite a questionable past.. Tags: "} +{"id": "11249", "title": "Seed of Chucky", "year": 2004, "duration_min": 87, "rating": 4.9, "genres": "Drama, Horror, Comedy", "genres_pipe": "|Drama|Horror|Comedy|", "keywords": "baby, puppet, filmdreh, murder, killer doll, body possession, killer toys, spectacle, toy comes to life", "tags_pipe": "|baby|puppet|filmdreh|murder|killer doll|body possession|killer toys|spectacle|toy comes to life|", "overview": "The killer doll is back! The all-new film is the fifth in the popular series of Chucky (\"Child's Play\") horror comedies. Making his directorial debut is the franchise creator and writer of all five films, Don Mancini. The film introduces Glen (voiced by \"The Lord of the Rings\" star Billy Boyd), the orphan doll offspring of the irrepressible devilish-doll-come-to-life Chucky (again voiced by series", "text_for_embedding": "Seed of Chucky (2004). Genres: Drama, Horror, Comedy. The killer doll is back! The all-new film is the fifth in the popular series of Chucky (\"Child's Play\") horror comedies. Making his directorial debut is the franchise creator and writer of all five films, Don Mancini. The film introduces Glen (voiced by \"The Lord of the Rings\" star Billy Boyd), the orphan doll offspring of the irrepressible devilish-doll-come-to-life Chucky (again voiced by series. Tags: baby, puppet, filmdreh, murder, killer doll, body possession, killer toys, spectacle, toy comes to life"} +{"id": "9667", "title": "The Jacket", "year": 2005, "duration_min": 103, "rating": 6.8, "genres": "Drama, Mystery, Thriller, Fantasy", "genres_pipe": "|Drama|Mystery|Thriller|Fantasy|", "keywords": "smoking, medicine, psychology, hallucination, human experimentation, time travel, war, love, psychologist, soldier, psychiatrist, medical experiment, dead, wrongful arrest, iraq veteran", "tags_pipe": "|smoking|medicine|psychology|hallucination|human experimentation|time travel|war|love|psychologist|soldier|psychiatrist|medical experiment|dead|wrongful arrest|iraq veteran|", "overview": "A military veteran goes on a journey into the future, where he can foresee his death and is left with questions that could save his life and those he loves.", "text_for_embedding": "The Jacket (2005). Genres: Drama, Mystery, Thriller, Fantasy. A military veteran goes on a journey into the future, where he can foresee his death and is left with questions that could save his life and those he loves.. Tags: smoking, medicine, psychology, hallucination, human experimentation, time travel, war, love, psychologist, soldier, psychiatrist, medical experiment, dead, wrongful arrest, iraq veteran"} +{"id": "812", "title": "Aladdin", "year": 1992, "duration_min": 90, "rating": 7.4, "genres": "Animation, Family, Comedy, Adventure, Fantasy, Romance", "genres_pipe": "|Animation|Family|Comedy|Adventure|Fantasy|Romance|", "keywords": "magic, musical, cartoon, princess, love, comedy, animation, monkey, arab, aftercreditsstinger, genie, animal sidekick", "tags_pipe": "|magic|musical|cartoon|princess|love|comedy|animation|monkey|arab|aftercreditsstinger|genie|animal sidekick|", "overview": "Princess Jasmine grows tired of being forced to remain in the palace and she sneaks out into the marketplace in disguise where she meets street-urchin Aladdin and the two fall in love, although she may only marry a prince. After being thrown in jail, Aladdin and becomes embroiled in a plot to find a mysterious lamp with which the evil Jafar hopes to rule the land.", "text_for_embedding": "Aladdin (1992). Genres: Animation, Family, Comedy, Adventure, Fantasy, Romance. Princess Jasmine grows tired of being forced to remain in the palace and she sneaks out into the marketplace in disguise where she meets street-urchin Aladdin and the two fall in love, although she may only marry a prince. After being thrown in jail, Aladdin and becomes embroiled in a plot to find a mysterious lamp with which the evil Jafar hopes to rule the land.. Tags: magic, musical, cartoon, princess, love, comedy, animation, monkey, arab, aftercreditsstinger, genie, animal sidekick"} +{"id": "277216", "title": "Straight Outta Compton", "year": 2015, "duration_min": 147, "rating": 7.7, "genres": "Drama, Music", "genres_pipe": "|Drama|Music|", "keywords": "brother brother relationship, aids, police brutality, rap music, hip-hop, wife husband relationship, vandalism, drug dealer, nightclub, freedom of speech, protest, rapper, recording contract, from rags to riches, assault", "tags_pipe": "|brother brother relationship|aids|police brutality|rap music|hip-hop|wife husband relationship|vandalism|drug dealer|nightclub|freedom of speech|protest|rapper|recording contract|from rags to riches|assault|", "overview": "In 1987, five young men, using brutally honest rhymes and hardcore beats, put their frustration and anger about life in the most dangerous place in America into the most powerful weapon they had: their music. Taking us back to where it all began, Straight Outta Compton tells the true story of how these cultural rebels—armed only with their lyrics, swagger, bravado and raw talent—stood up to the authorities that meant to keep them down and formed the world’s most dangerous group, N.W.A. And as they spoke the truth that no one had before and exposed life in the hood, their voice ignited a social revolution that is still reverberating today.", "text_for_embedding": "Straight Outta Compton (2015). Genres: Drama, Music. In 1987, five young men, using brutally honest rhymes and hardcore beats, put their frustration and anger about life in the most dangerous place in America into the most powerful weapon they had: their music. Taking us back to where it all began, Straight Outta Compton tells the true story of how these cultural rebels—armed only with their lyrics, swagger, bravado and raw talent—stood up to the authorities that meant to keep them down and formed the world’s most dangerous group, N.W.A. And as they spoke the truth that no one had before and exposed life in the hood, their voice ignited a social revolution that is still reverberating today.. Tags: brother brother relationship, aids, police brutality, rap music, hip-hop, wife husband relationship, vandalism, drug dealer, nightclub, freedom of speech, protest, rapper, recording contract, from rags to riches, assault"} +{"id": "87", "title": "Indiana Jones and the Temple of Doom", "year": 1984, "duration_min": 118, "rating": 7.1, "genres": "Adventure, Action", "genres_pipe": "|Adventure|Action|", "keywords": "riddle, treasure, heart, skeleton, treasure hunt, torture, violence, monkey, cult film, archaeologist, thuggee, conveyor belt, mine car, rope bridge, belching", "tags_pipe": "|riddle|treasure|heart|skeleton|treasure hunt|torture|violence|monkey|cult film|archaeologist|thuggee|conveyor belt|mine car|rope bridge|belching|", "overview": "After arriving in India, Indiana Jones is asked by a desperate village to find a mystical stone. He agrees – and stumbles upon a secret cult plotting a terrible plan in the catacombs of an ancient palace.", "text_for_embedding": "Indiana Jones and the Temple of Doom (1984). Genres: Adventure, Action. After arriving in India, Indiana Jones is asked by a desperate village to find a mystical stone. He agrees – and stumbles upon a secret cult plotting a terrible plan in the catacombs of an ancient palace.. Tags: riddle, treasure, heart, skeleton, treasure hunt, torture, violence, monkey, cult film, archaeologist, thuggee, conveyor belt, mine car, rope bridge, belching"} +{"id": "14444", "title": "The Rugrats Movie", "year": 1998, "duration_min": 79, "rating": 5.7, "genres": "Animation, Family", "genres_pipe": "|Animation|Family|", "keywords": "brother brother relationship, baby, home, pregnancy and birth, sequel, kids and family, comedy, pregnancy, aftercreditsstinger", "tags_pipe": "|brother brother relationship|baby|home|pregnancy and birth|sequel|kids and family|comedy|pregnancy|aftercreditsstinger|", "overview": "Tommy faces responsibility when Dil, his new baby brother, is born. As with all newborns, the child becomes a bane to Tommy and the rest of his gang. They decide to return Dil to where he came from, the hospital, but they get lost along the way. Can they find their way home and can Tommy and Dil learn to get along?", "text_for_embedding": "The Rugrats Movie (1998). Genres: Animation, Family. Tommy faces responsibility when Dil, his new baby brother, is born. As with all newborns, the child becomes a bane to Tommy and the rest of his gang. They decide to return Dil to where he came from, the hospital, but they get lost along the way. Can they find their way home and can Tommy and Dil learn to get along?. Tags: brother brother relationship, baby, home, pregnancy and birth, sequel, kids and family, comedy, pregnancy, aftercreditsstinger"} +{"id": "2043", "title": "Along Came a Spider", "year": 2001, "duration_min": 104, "rating": 6.1, "genres": "Crime, Mystery, Thriller, Action", "genres_pipe": "|Crime|Mystery|Thriller|Action|", "keywords": "psychology, police operation, police, psychologist", "tags_pipe": "|psychology|police operation|police|psychologist|", "overview": "When a teacher kidnaps a girl from a prestigious school, homicide detective, Alex Cross takes the case and teams up with young security agent, Jezzie Flannigan in hope of finding the girl and stopping the brutal psychopath. Every second counts as Alex and Jezzie attempt to track down the kidnapper before the spider claims another victim for its web.", "text_for_embedding": "Along Came a Spider (2001). Genres: Crime, Mystery, Thriller, Action. When a teacher kidnaps a girl from a prestigious school, homicide detective, Alex Cross takes the case and teams up with young security agent, Jezzie Flannigan in hope of finding the girl and stopping the brutal psychopath. Every second counts as Alex and Jezzie attempt to track down the kidnapper before the spider claims another victim for its web.. Tags: psychology, police operation, police, psychologist"} +{"id": "315664", "title": "Florence Foster Jenkins", "year": 2016, "duration_min": 110, "rating": 6.6, "genres": "Comedy, Drama", "genres_pipe": "|Comedy|Drama|", "keywords": "opera, biography, singing false", "tags_pipe": "|opera|biography|singing false|", "overview": "The story of Florence Foster Jenkins, a New York heiress, who dreamed of becoming an opera singer, despite having a terrible singing voice.", "text_for_embedding": "Florence Foster Jenkins (2016). Genres: Comedy, Drama. The story of Florence Foster Jenkins, a New York heiress, who dreamed of becoming an opera singer, despite having a terrible singing voice.. Tags: opera, biography, singing false"} +{"id": "1428", "title": "Once Upon a Time in Mexico", "year": 2003, "duration_min": 102, "rating": 6.2, "genres": "Action", "genres_pipe": "|Action|", "keywords": "corruption, cia", "tags_pipe": "|corruption|cia|", "overview": "Hitman \"El Mariachi\" becomes involved in international espionage involving a psychotic CIA agent and a corrupt Mexican general.", "text_for_embedding": "Once Upon a Time in Mexico (2003). Genres: Action. Hitman \"El Mariachi\" becomes involved in international espionage involving a psychotic CIA agent and a corrupt Mexican general.. Tags: corruption, cia"} +{"id": "562", "title": "Die Hard", "year": 1988, "duration_min": 131, "rating": 7.5, "genres": "Action, Thriller", "genres_pipe": "|Action|Thriller|", "keywords": "helicopter, journalist, based on novel, terrorist, skyscraper, christmas party, s.w.a.t., hostage, kidnapping, vault, fistfight, murder, heist, shootout, los angeles", "tags_pipe": "|helicopter|journalist|based on novel|terrorist|skyscraper|christmas party|s.w.a.t.|hostage|kidnapping|vault|fistfight|murder|heist|shootout|los angeles|", "overview": "NYPD cop, John McClane's plan to reconcile with his estranged wife is thrown for a serious loop when minutes after he arrives at her office, the entire building is overtaken by a group of terrorists. With little help from the LAPD, wisecracking McClane sets out to single-handedly rescue the hostages and bring the bad guys down.", "text_for_embedding": "Die Hard (1988). Genres: Action, Thriller. NYPD cop, John McClane's plan to reconcile with his estranged wife is thrown for a serious loop when minutes after he arrives at her office, the entire building is overtaken by a group of terrorists. With little help from the LAPD, wisecracking McClane sets out to single-handedly rescue the hostages and bring the bad guys down.. Tags: helicopter, journalist, based on novel, terrorist, skyscraper, christmas party, s.w.a.t., hostage, kidnapping, vault, fistfight, murder, heist, shootout, los angeles"} +{"id": "15373", "title": "Role Models", "year": 2008, "duration_min": 99, "rating": 6.4, "genres": "Comedy", "genres_pipe": "|Comedy|", "keywords": "camping, campsite, big brother, friends, community service, kids, duringcreditsstinger", "tags_pipe": "|camping|campsite|big brother|friends|community service|kids|duringcreditsstinger|", "overview": "Two salesmen trash a company truck on an energy drink-fueled bender. Upon their arrest, the court gives them a choice: do hard time or spend 150 service hours with a mentorship program. After one day with the kids, however, jail doesn't look half bad.", "text_for_embedding": "Role Models (2008). Genres: Comedy. Two salesmen trash a company truck on an energy drink-fueled bender. Upon their arrest, the court gives them a choice: do hard time or spend 150 service hours with a mentorship program. After one day with the kids, however, jail doesn't look half bad.. Tags: camping, campsite, big brother, friends, community service, kids, duringcreditsstinger"} +{"id": "318846", "title": "The Big Short", "year": 2015, "duration_min": 130, "rating": 7.3, "genres": "Comedy, Drama", "genres_pipe": "|Comedy|Drama|", "keywords": "bank, fraud, biography, wall street, finances, based on true story, animated sequence, breaking the fourth wall, loan, financial crisis, real estate, mortgage", "tags_pipe": "|bank|fraud|biography|wall street|finances|based on true story|animated sequence|breaking the fourth wall|loan|financial crisis|real estate|mortgage|", "overview": "The men who made millions from a global economic meltdown.", "text_for_embedding": "The Big Short (2015). Genres: Comedy, Drama. The men who made millions from a global economic meltdown.. Tags: bank, fraud, biography, wall street, finances, based on true story, animated sequence, breaking the fourth wall, loan, financial crisis, real estate, mortgage"} +{"id": "26320", "title": "Taking Woodstock", "year": 2009, "duration_min": 120, "rating": 6.2, "genres": "Music, Comedy, Drama", "genres_pipe": "|Music|Comedy|Drama|", "keywords": "music festival, independent film, catskills, dog tags", "tags_pipe": "|music festival|independent film|catskills|dog tags|", "overview": "The story of Elliot Tiber and his family, who inadvertently played a pivotal role in making the famed Woodstock Music and Arts Festival into the happening that it was. When Elliot hears that a neighboring town has pulled the permit on a hippie music festival, he calls the producers thinking he could drum up some much-needed business for his parents' run-down motel. Three weeks later, half a million people are on their way to his neighbor’s farm in White Lake, New York, and Elliot finds himself swept up in a generation-defining experience that would change his life–and American culture–forever.", "text_for_embedding": "Taking Woodstock (2009). Genres: Music, Comedy, Drama. The story of Elliot Tiber and his family, who inadvertently played a pivotal role in making the famed Woodstock Music and Arts Festival into the happening that it was. When Elliot hears that a neighboring town has pulled the permit on a hippie music festival, he calls the producers thinking he could drum up some much-needed business for his parents' run-down motel. Three weeks later, half a million people are on their way to his neighbor’s farm in White Lake, New York, and Elliot finds himself swept up in a generation-defining experience that would change his life–and American culture–forever.. Tags: music festival, independent film, catskills, dog tags"} +{"id": "14292", "title": "Miracle", "year": 2004, "duration_min": 135, "rating": 7.0, "genres": "Drama, History", "genres_pipe": "|Drama|History|", "keywords": "olympic games, sport, ice hockey, milwaukee wisconsin, st. paul minnesota, gas rationing, lake placid new york, aftercreditsstinger, duringcreditsstinger", "tags_pipe": "|olympic games|sport|ice hockey|milwaukee wisconsin|st. paul minnesota|gas rationing|lake placid new york|aftercreditsstinger|duringcreditsstinger|", "overview": "In 1980, the United States Ice Hockey team's coach, Herb Brooks, put a ragtag squad of college kids up against the legendary juggernaut from the Soviet Union at the Olympic Games. Despite the long odds, Team USA carried the pride of a nation yearning for a distraction from world events. With the world watching, the team rose to the occasion, prompting broadcaster Al Michaels' now famous question to the millions viewing at home: \"Do you believe in miracles?\" Yes!", "text_for_embedding": "Miracle (2004). Genres: Drama, History. In 1980, the United States Ice Hockey team's coach, Herb Brooks, put a ragtag squad of college kids up against the legendary juggernaut from the Soviet Union at the Olympic Games. Despite the long odds, Team USA carried the pride of a nation yearning for a distraction from world events. With the world watching, the team rose to the occasion, prompting broadcaster Al Michaels' now famous question to the millions viewing at home: \"Do you believe in miracles?\" Yes!. Tags: olympic games, sport, ice hockey, milwaukee wisconsin, st. paul minnesota, gas rationing, lake placid new york, aftercreditsstinger, duringcreditsstinger"} +{"id": "924", "title": "Dawn of the Dead", "year": 2004, "duration_min": 101, "rating": 6.8, "genres": "Fantasy, Horror, Action", "genres_pipe": "|Fantasy|Horror|Action|", "keywords": "refugee, mass murder, habor, car journey, department store, blackout, bus ride, pregnancy and birth, dying and death, bite, to shoot dead, lorry, munition, basement garage, guard", "tags_pipe": "|refugee|mass murder|habor|car journey|department store|blackout|bus ride|pregnancy and birth|dying and death|bite|to shoot dead|lorry|munition|basement garage|guard|", "overview": "A group of surviving people take refuge in a shopping center after the world has been over taken over by aggressive, flesh-eating zombies. A remake of the 1978 zombie film of the same name.", "text_for_embedding": "Dawn of the Dead (2004). Genres: Fantasy, Horror, Action. A group of surviving people take refuge in a shopping center after the world has been over taken over by aggressive, flesh-eating zombies. A remake of the 1978 zombie film of the same name.. Tags: refugee, mass murder, habor, car journey, department store, blackout, bus ride, pregnancy and birth, dying and death, bite, to shoot dead, lorry, munition, basement garage, guard"} +{"id": "2018", "title": "The Wedding Planner", "year": 2001, "duration_min": 103, "rating": 5.5, "genres": "Comedy", "genres_pipe": "|Comedy|", "keywords": "san francisco, marriage proposal, love of one's life, wedding planer, man of one's dreams, wine garden, wedding, sicilian, star crossed lovers, wedding day, meant for each other", "tags_pipe": "|san francisco|marriage proposal|love of one's life|wedding planer|man of one's dreams|wine garden|wedding|sicilian|star crossed lovers|wedding day|meant for each other|", "overview": "Mary Fiore, San Francisco's premiere wedding planner is rescued from an accident by the man of her dreams, pediatrician Steve Edison, only to find he is the fiancé of her latest client, wealthy Fran Donnolly. As Mary continues making the wedding arrangements, she and Steve are put into a string of uncomfortable situations that force them to face their mutual attraction.", "text_for_embedding": "The Wedding Planner (2001). Genres: Comedy. Mary Fiore, San Francisco's premiere wedding planner is rescued from an accident by the man of her dreams, pediatrician Steve Edison, only to find he is the fiancé of her latest client, wealthy Fran Donnolly. As Mary continues making the wedding arrangements, she and Steve are put into a string of uncomfortable situations that force them to face their mutual attraction.. Tags: san francisco, marriage proposal, love of one's life, wedding planer, man of one's dreams, wine garden, wedding, sicilian, star crossed lovers, wedding day, meant for each other"} +{"id": "192577", "title": "Space Pirate Captain Harlock", "year": 2013, "duration_min": 115, "rating": 6.5, "genres": "Animation, Science Fiction", "genres_pipe": "|Animation|Science Fiction|", "keywords": "", "tags_pipe": "", "overview": "Space Pirate Captain Harlock and his fearless crew face off against the space invaders who seek to conquer the planet Earth.", "text_for_embedding": "Space Pirate Captain Harlock (2013). Genres: Animation, Science Fiction. Space Pirate Captain Harlock and his fearless crew face off against the space invaders who seek to conquer the planet Earth.. Tags: "} +{"id": "9428", "title": "The Royal Tenenbaums", "year": 2001, "duration_min": 110, "rating": 7.4, "genres": "Comedy, Drama", "genres_pipe": "|Comedy|Drama|", "keywords": "forgiveness, child prodigy, terminal illness, dysfunctional family, cigarette smoking, family conflict", "tags_pipe": "|forgiveness|child prodigy|terminal illness|dysfunctional family|cigarette smoking|family conflict|", "overview": "An estranged family of former child prodigies reunites when their father announces he has a terminal illness.", "text_for_embedding": "The Royal Tenenbaums (2001). Genres: Comedy, Drama. An estranged family of former child prodigies reunites when their father announces he has a terminal illness.. Tags: forgiveness, child prodigy, terminal illness, dysfunctional family, cigarette smoking, family conflict"} +{"id": "2832", "title": "Identity", "year": 2003, "duration_min": 90, "rating": 7.1, "genres": "Mystery, Thriller", "genres_pipe": "|Mystery|Thriller|", "keywords": "weather, multiple character, scream, convict, psychopathy, rainstorm", "tags_pipe": "|weather|multiple character|scream|convict|psychopathy|rainstorm|", "overview": "Complete strangers stranded at a remote desert motel during a raging storm soon find themselves the target of a deranged murderer. As their numbers thin out, the travelers begin to turn on each other, as each tries to figure out who the killer is.", "text_for_embedding": "Identity (2003). Genres: Mystery, Thriller. Complete strangers stranded at a remote desert motel during a raging storm soon find themselves the target of a deranged murderer. As their numbers thin out, the travelers begin to turn on each other, as each tries to figure out who the killer is.. Tags: weather, multiple character, scream, convict, psychopathy, rainstorm"} +{"id": "137093", "title": "Last Vegas", "year": 2013, "duration_min": 105, "rating": 6.4, "genres": "Comedy", "genres_pipe": "|Comedy|", "keywords": "casino, male friendship, stag night, las vegas, elderly", "tags_pipe": "|casino|male friendship|stag night|las vegas|elderly|", "overview": "Three sixty-something friends take a break from their day-to-day lives to throw a bachelor party in Las Vegas for their last remaining single pal.", "text_for_embedding": "Last Vegas (2013). Genres: Comedy. Three sixty-something friends take a break from their day-to-day lives to throw a bachelor party in Las Vegas for their last remaining single pal.. Tags: casino, male friendship, stag night, las vegas, elderly"} +{"id": "699", "title": "For Your Eyes Only", "year": 1981, "duration_min": 127, "rating": 6.3, "genres": "Adventure, Action, Thriller", "genres_pipe": "|Adventure|Action|Thriller|", "keywords": "london england, submarine, england, sea, assassin, mountains, undercover, olympic games, drug traffic, secret mission, secret intelligence service, kgb, coral reef, ski jump, parrot", "tags_pipe": "|london england|submarine|england|sea|assassin|mountains|undercover|olympic games|drug traffic|secret mission|secret intelligence service|kgb|coral reef|ski jump|parrot|", "overview": "A British spy ship has sunk and on board was a hi-tech encryption device. James Bond is sent to find the device that holds British launching instructions before the enemy Soviets get to it first.", "text_for_embedding": "For Your Eyes Only (1981). Genres: Adventure, Action, Thriller. A British spy ship has sunk and on board was a hi-tech encryption device. James Bond is sent to find the device that holds British launching instructions before the enemy Soviets get to it first.. Tags: london england, submarine, england, sea, assassin, mountains, undercover, olympic games, drug traffic, secret mission, secret intelligence service, kgb, coral reef, ski jump, parrot"} +{"id": "9778", "title": "Serendipity", "year": 2001, "duration_min": 90, "rating": 6.6, "genres": "Comedy, Romance", "genres_pipe": "|Comedy|Romance|", "keywords": "soulmates, new love, book, dollar, fate, destiny", "tags_pipe": "|soulmates|new love|book|dollar|fate|destiny|", "overview": "Although strangers Sara and Jonathan are both already in relationships, they realize they have genuine chemistry after a chance encounter – but part company soon after. Years later, they each yearn to reunite, despite being destined for the altar. But to give true love a chance, they have to find one another again.", "text_for_embedding": "Serendipity (2001). Genres: Comedy, Romance. Although strangers Sara and Jonathan are both already in relationships, they realize they have genuine chemistry after a chance encounter – but part company soon after. Years later, they each yearn to reunite, despite being destined for the altar. But to give true love a chance, they have to find one another again.. Tags: soulmates, new love, book, dollar, fate, destiny"} +{"id": "8831", "title": "Timecop", "year": 1994, "duration_min": 99, "rating": 5.5, "genres": "Thriller, Science Fiction, Action, Crime", "genres_pipe": "|Thriller|Science Fiction|Action|Crime|", "keywords": "martial arts, time travel, science fiction, alternative reality", "tags_pipe": "|martial arts|time travel|science fiction|alternative reality|", "overview": "An officer for a security agency that regulates time travel, must fend for his life against a shady politician who has a tie to his past.", "text_for_embedding": "Timecop (1994). Genres: Thriller, Science Fiction, Action, Crime. An officer for a security agency that regulates time travel, must fend for his life against a shady politician who has a tie to his past.. Tags: martial arts, time travel, science fiction, alternative reality"} +{"id": "9398", "title": "Zoolander", "year": 2001, "duration_min": 89, "rating": 6.1, "genres": "Comedy", "genres_pipe": "|Comedy|", "keywords": "male model, time magazine, fashion show, fashion model, fictional awards show, lincoln assassination, coal mine", "tags_pipe": "|male model|time magazine|fashion show|fashion model|fictional awards show|lincoln assassination|coal mine|", "overview": "Clear the runway for Derek Zoolander, VH1's three-time male model of the year. His face falls when hippie-chic \"he's so hot right now\" Hansel scooters in to steal this year's award. The evil fashion guru Mugatu seizes the opportunity to turn Derek into a killing machine. Its a well-designed conspiracy and only with the help of Hansel and a few well-chosen accessories can Derek make the world safe.", "text_for_embedding": "Zoolander (2001). Genres: Comedy. Clear the runway for Derek Zoolander, VH1's three-time male model of the year. His face falls when hippie-chic \"he's so hot right now\" Hansel scooters in to steal this year's award. The evil fashion guru Mugatu seizes the opportunity to turn Derek into a killing machine. Its a well-designed conspiracy and only with the help of Hansel and a few well-chosen accessories can Derek make the world safe.. Tags: male model, time magazine, fashion show, fashion model, fictional awards show, lincoln assassination, coal mine"} +{"id": "112949", "title": "Safe Haven", "year": 2013, "duration_min": 115, "rating": 6.9, "genres": "Romance", "genres_pipe": "|Romance|", "keywords": "based on novel, small town, widower, single father, abusive husband", "tags_pipe": "|based on novel|small town|widower|single father|abusive husband|", "overview": "A young woman with a mysterious past lands in Southport, North Carolina where her bond with a widower forces her to confront the dark secret that haunts her.", "text_for_embedding": "Safe Haven (2013). Genres: Romance. A young woman with a mysterious past lands in Southport, North Carolina where her bond with a widower forces her to confront the dark secret that haunts her.. Tags: based on novel, small town, widower, single father, abusive husband"} +{"id": "10439", "title": "Hocus Pocus", "year": 1993, "duration_min": 96, "rating": 6.4, "genres": "Comedy, Family, Fantasy", "genres_pipe": "|Comedy|Family|Fantasy|", "keywords": "witch, halloween, salem, trick or treating, spellcasting", "tags_pipe": "|witch|halloween|salem|trick or treating|spellcasting|", "overview": "After 300 years of slumber, three sister witches are accidentally resurrected in Salem on Halloween night, and it us up to three kids and their newfound feline friend to put an end to the witches' reign of terror once and for all.", "text_for_embedding": "Hocus Pocus (1993). Genres: Comedy, Family, Fantasy. After 300 years of slumber, three sister witches are accidentally resurrected in Salem on Halloween night, and it us up to three kids and their newfound feline friend to put an end to the witches' reign of terror once and for all.. Tags: witch, halloween, salem, trick or treating, spellcasting"} +{"id": "3638", "title": "No Reservations", "year": 2007, "duration_min": 104, "rating": 6.1, "genres": "Comedy", "genres_pipe": "|Comedy|", "keywords": "italy, competition, loss of mother, loss of sister, new love, cook, cooking, restaurant, bars and restaurants, mother role, funeral, kitchen, perfectionist", "tags_pipe": "|italy|competition|loss of mother|loss of sister|new love|cook|cooking|restaurant|bars and restaurants|mother role|funeral|kitchen|perfectionist|", "overview": "Master chef Kate Armstrong runs her life and her kitchen with intimidating intensity. However, a recipe for disaster may be in the works when she becomes the guardian of her young niece while crossing forks with the brash sous-chef who just joined her staff. Though romance blooms in the face of rivalry, Kate needs to look outside the kitchen to find true happiness.", "text_for_embedding": "No Reservations (2007). Genres: Comedy. Master chef Kate Armstrong runs her life and her kitchen with intimidating intensity. However, a recipe for disaster may be in the works when she becomes the guardian of her young niece while crossing forks with the brash sous-chef who just joined her staff. Though romance blooms in the face of rivalry, Kate needs to look outside the kitchen to find true happiness.. Tags: italy, competition, loss of mother, loss of sister, new love, cook, cooking, restaurant, bars and restaurants, mother role, funeral, kitchen, perfectionist"} +{"id": "23483", "title": "Kick-Ass", "year": 2010, "duration_min": 117, "rating": 7.1, "genres": "Action, Crime", "genres_pipe": "|Action|Crime|", "keywords": "crime fighter, secret identity, comic book, superhero, murder, comedy, mafia, teenager, violence, realism, rookie, adaptation, young adult, kickass", "tags_pipe": "|crime fighter|secret identity|comic book|superhero|murder|comedy|mafia|teenager|violence|realism|rookie|adaptation|young adult|kickass|", "overview": "Dave Lizewski is an unnoticed high school student and comic book fan who one day decides to become a super-hero, even though he has no powers, training or meaningful reason to do so.", "text_for_embedding": "Kick-Ass (2010). Genres: Action, Crime. Dave Lizewski is an unnoticed high school student and comic book fan who one day decides to become a super-hero, even though he has no powers, training or meaningful reason to do so.. Tags: crime fighter, secret identity, comic book, superhero, murder, comedy, mafia, teenager, violence, realism, rookie, adaptation, young adult, kickass"} +{"id": "62206", "title": "30 Minutes or Less", "year": 2011, "duration_min": 83, "rating": 5.6, "genres": "Action, Adventure, Comedy", "genres_pipe": "|Action|Adventure|Comedy|", "keywords": "pizza delivery, adventure, pizza boy, number in title, comedy, aftercreditsstinger", "tags_pipe": "|pizza delivery|adventure|pizza boy|number in title|comedy|aftercreditsstinger|", "overview": "Two fledgling criminals kidnap a pizza delivery guy, strap a bomb to his chest, and advise him that he has mere hours to rob a bank or else...", "text_for_embedding": "30 Minutes or Less (2011). Genres: Action, Adventure, Comedy. Two fledgling criminals kidnap a pizza delivery guy, strap a bomb to his chest, and advise him that he has mere hours to rob a bank or else.... Tags: pizza delivery, adventure, pizza boy, number in title, comedy, aftercreditsstinger"} +{"id": "10577", "title": "Dracula 2000", "year": 2000, "duration_min": 99, "rating": 4.6, "genres": "Thriller, Horror", "genres_pipe": "|Thriller|Horror|", "keywords": "vampire, dracula, bite, blood, vlad, fang vamp", "tags_pipe": "|vampire|dracula|bite|blood|vlad|fang vamp|", "overview": "In the millenium version of this classic Gothic horror we find Abraham Van Helsing (Plummer), who has tangled with Count Dracula (Butler) in the past, working as an English antiques dealer. Simon (Miller) is a vampire hunter in training under his apprenticeship.", "text_for_embedding": "Dracula 2000 (2000). Genres: Thriller, Horror. In the millenium version of this classic Gothic horror we find Abraham Van Helsing (Plummer), who has tangled with Count Dracula (Butler) in the past, working as an English antiques dealer. Simon (Miller) is a vampire hunter in training under his apprenticeship.. Tags: vampire, dracula, bite, blood, vlad, fang vamp"} +{"id": "218778", "title": "Alexander and the Terrible, Horrible, No Good, Very Bad Day", "year": 2014, "duration_min": 81, "rating": 6.1, "genres": "Family, Comedy", "genres_pipe": "|Family|Comedy|", "keywords": "based on novel, job interview, bad luck, wish, one day, based on children's book, driver's test", "tags_pipe": "|based on novel|job interview|bad luck|wish|one day|based on children's book|driver's test|", "overview": "Alexander's day begins with gum stuck in his hair, followed by more calamities. Though he finds little sympathy from his family and begins to wonder if bad things only happen to him, his mom, dad, brother, and sister all find themselves living through their own terrible, horrible, no good, very bad day.", "text_for_embedding": "Alexander and the Terrible, Horrible, No Good, Very Bad Day (2014). Genres: Family, Comedy. Alexander's day begins with gum stuck in his hair, followed by more calamities. Though he finds little sympathy from his family and begins to wonder if bad things only happen to him, his mom, dad, brother, and sister all find themselves living through their own terrible, horrible, no good, very bad day.. Tags: based on novel, job interview, bad luck, wish, one day, based on children's book, driver's test"} +{"id": "4348", "title": "Pride & Prejudice", "year": 2005, "duration_min": 135, "rating": 7.7, "genres": "Drama, Romance", "genres_pipe": "|Drama|Romance|", "keywords": "bachelor, beautiful, prejudice, suitor, period drama, georgian, pride, 18th century, opposites attract", "tags_pipe": "|bachelor|beautiful|prejudice|suitor|period drama|georgian|pride|18th century|opposites attract|", "overview": "Pride & Prejudice is a humorous story of love and life among English gentility during the Georgian era. Mr. Bennet is an English gentleman living in Hertfordshire with his overbearing wife and five daughters. If Mr. Bennet dies their house will be inherited by a distant cousin whom they have never met, so the family's future happiness and security is dependent on the daughters making good marriages.", "text_for_embedding": "Pride & Prejudice (2005). Genres: Drama, Romance. Pride & Prejudice is a humorous story of love and life among English gentility during the Georgian era. Mr. Bennet is an English gentleman living in Hertfordshire with his overbearing wife and five daughters. If Mr. Bennet dies their house will be inherited by a distant cousin whom they have never met, so the family's future happiness and security is dependent on the daughters making good marriages.. Tags: bachelor, beautiful, prejudice, suitor, period drama, georgian, pride, 18th century, opposites attract"} +{"id": "78", "title": "Blade Runner", "year": 1982, "duration_min": 117, "rating": 7.9, "genres": "Science Fiction, Drama, Thriller", "genres_pipe": "|Science Fiction|Drama|Thriller|", "keywords": "artificial intelligence, man vs machine, cyborg, bounty hunter, android, dystopia, genetics, fugitive, cyberpunk, los angeles, tech noir, neo-noir", "tags_pipe": "|artificial intelligence|man vs machine|cyborg|bounty hunter|android|dystopia|genetics|fugitive|cyberpunk|los angeles|tech noir|neo-noir|", "overview": "In the smog-choked dystopian Los Angeles of 2019, blade runner Rick Deckard is called out of retirement to terminate a quartet of replicants who have escaped to Earth seeking their creator for a way to extend their short life spans.", "text_for_embedding": "Blade Runner (1982). Genres: Science Fiction, Drama, Thriller. In the smog-choked dystopian Los Angeles of 2019, blade runner Rick Deckard is called out of retirement to terminate a quartet of replicants who have escaped to Earth seeking their creator for a way to extend their short life spans.. Tags: artificial intelligence, man vs machine, cyborg, bounty hunter, android, dystopia, genetics, fugitive, cyberpunk, los angeles, tech noir, neo-noir"} +{"id": "11780", "title": "Rob Roy", "year": 1995, "duration_min": 139, "rating": 6.5, "genres": "Adventure", "genres_pipe": "|Adventure|", "keywords": "scotland, biography, 18th century, highlands, violent man", "tags_pipe": "|scotland|biography|18th century|highlands|violent man|", "overview": "In the highlands of Scotland in the 1700s, Rob Roy tries to lead his small town to a better future, by borrowing money from the local nobility to buy cattle to herd to market. When the money is stolen, Rob is forced into a Robin Hood lifestyle to defend his family and honour.", "text_for_embedding": "Rob Roy (1995). Genres: Adventure. In the highlands of Scotland in the 1700s, Rob Roy tries to lead his small town to a better future, by borrowing money from the local nobility to buy cattle to herd to market. When the money is stolen, Rob is forced into a Robin Hood lifestyle to defend his family and honour.. Tags: scotland, biography, 18th century, highlands, violent man"} +{"id": "192102", "title": "3 Days to Kill", "year": 2014, "duration_min": 113, "rating": 6.0, "genres": "Action, Drama, Thriller, Crime", "genres_pipe": "|Action|Drama|Thriller|Crime|", "keywords": "retirement, secret service, illegal drugs", "tags_pipe": "|retirement|secret service|illegal drugs|", "overview": "A dangerous international spy is determined to give up his high stakes life to finally build a closer relationship with his estranged wife and daughter. But first, he must complete one last mission - even if it means juggling the two toughest assignments yet: hunting down the world's most ruthless terrorist and looking after his teenage daughter for the first time in ten years, while his wife is out of town.", "text_for_embedding": "3 Days to Kill (2014). Genres: Action, Drama, Thriller, Crime. A dangerous international spy is determined to give up his high stakes life to finally build a closer relationship with his estranged wife and daughter. But first, he must complete one last mission - even if it means juggling the two toughest assignments yet: hunting down the world's most ruthless terrorist and looking after his teenage daughter for the first time in ten years, while his wife is out of town.. Tags: retirement, secret service, illegal drugs"} +{"id": "2001", "title": "We Own the Night", "year": 2007, "duration_min": 117, "rating": 6.5, "genres": "Drama, Crime, Thriller", "genres_pipe": "|Drama|Crime|Thriller|", "keywords": "new york, father son relationship, nightclub, gangster", "tags_pipe": "|new york|father son relationship|nightclub|gangster|", "overview": "A New York nightclub manager tries to save his brother and father from Russian mafia hitmen.", "text_for_embedding": "We Own the Night (2007). Genres: Drama, Crime, Thriller. A New York nightclub manager tries to save his brother and father from Russian mafia hitmen.. Tags: new york, father son relationship, nightclub, gangster"} +{"id": "10383", "title": "Lost Souls", "year": 2000, "duration_min": 97, "rating": 4.5, "genres": "Horror, Thriller", "genres_pipe": "|Horror|Thriller|", "keywords": "pedophilia, daughter, anti-christ, incest", "tags_pipe": "|pedophilia|daughter|anti-christ|incest|", "overview": "A small group of Catholics led by an ailing priest believe that Satan intends to become man, just as God did in the person of Jesus. The writings of a possessed mental patient lead them to Peter Kelson, a writer who studies serial killers. They think it's his body Satan will occupy. The youngest in the group, a teacher named Maya Larkin, goes to Peter to investigate further and to convince him to believe in the possibility of Evil incarnate. Other signs come to him as he and Maya them take a journey full of strange occurrences, self-discovery, and an ultimate showdown", "text_for_embedding": "Lost Souls (2000). Genres: Horror, Thriller. A small group of Catholics led by an ailing priest believe that Satan intends to become man, just as God did in the person of Jesus. The writings of a possessed mental patient lead them to Peter Kelson, a writer who studies serial killers. They think it's his body Satan will occupy. The youngest in the group, a teacher named Maya Larkin, goes to Peter to investigate further and to convince him to believe in the possibility of Evil incarnate. Other signs come to him as he and Maya them take a journey full of strange occurrences, self-discovery, and an ultimate showdown. Tags: pedophilia, daughter, anti-christ, incest"} +{"id": "11516", "title": "Winged Migration", "year": 2001, "duration_min": 98, "rating": 7.0, "genres": "Documentary", "genres_pipe": "|Documentary|", "keywords": "ocean, lake, bird, horse, parrot, owl, ornithology, egg, flight, arctic, crab, stork, pelican", "tags_pipe": "|ocean|lake|bird|horse|parrot|owl|ornithology|egg|flight|arctic|crab|stork|pelican|", "overview": "The cameras of Jacques Perrin fly with migratory birds: geese, storks, cranes. The film begins with spring in North America and the migration to the Arctic; the flight is a community event for each species. Once in the Arctic, it's family time: courtship, nests, eggs, fledglings, and first flight. Chicks must soon fly south. Bad weather, hunters, and pollution take their toll. Then, the cameras go", "text_for_embedding": "Winged Migration (2001). Genres: Documentary. The cameras of Jacques Perrin fly with migratory birds: geese, storks, cranes. The film begins with spring in North America and the migration to the Arctic; the flight is a community event for each species. Once in the Arctic, it's family time: courtship, nests, eggs, fledglings, and first flight. Chicks must soon fly south. Bad weather, hunters, and pollution take their toll. Then, the cameras go. Tags: ocean, lake, bird, horse, parrot, owl, ornithology, egg, flight, arctic, crab, stork, pelican"} +{"id": "10025", "title": "Just My Luck", "year": 2006, "duration_min": 103, "rating": 5.8, "genres": "Comedy, Drama, Family, Fantasy, Romance", "genres_pipe": "|Comedy|Drama|Family|Fantasy|Romance|", "keywords": "jinx, bad luck, kiss, romantic comedy, alcohol abuse, celebration, envy, luck, mysterious stranger, masquerade", "tags_pipe": "|jinx|bad luck|kiss|romantic comedy|alcohol abuse|celebration|envy|luck|mysterious stranger|masquerade|", "overview": "Manhattanite Ashley is known to many as the luckiest woman around. After a chance encounter with a down-and-out young man, however, she realizes that she's swapped her fortune for his.", "text_for_embedding": "Just My Luck (2006). Genres: Comedy, Drama, Family, Fantasy, Romance. Manhattanite Ashley is known to many as the luckiest woman around. After a chance encounter with a down-and-out young man, however, she realizes that she's swapped her fortune for his.. Tags: jinx, bad luck, kiss, romantic comedy, alcohol abuse, celebration, envy, luck, mysterious stranger, masquerade"} +{"id": "15198", "title": "Mystery, Alaska", "year": 1999, "duration_min": 119, "rating": 6.0, "genres": "Drama, Comedy", "genres_pipe": "|Drama|Comedy|", "keywords": "sport, ice hockey", "tags_pipe": "|sport|ice hockey|", "overview": "In Mystery, Alaska, life revolves around the legendary Saturday hockey game at the local pond. But everything changes when the hometown team unexpectedly gets booked in an exhibition match against the New York Rangers. When quirky small-towners, slick promoters and millionaire athletes come together.", "text_for_embedding": "Mystery, Alaska (1999). Genres: Drama, Comedy. In Mystery, Alaska, life revolves around the legendary Saturday hockey game at the local pond. But everything changes when the hometown team unexpectedly gets booked in an exhibition match against the New York Rangers. When quirky small-towners, slick promoters and millionaire athletes come together.. Tags: sport, ice hockey"} +{"id": "23172", "title": "The Spy Next Door", "year": 2010, "duration_min": 94, "rating": 5.5, "genres": "Action, Comedy, Family", "genres_pipe": "|Action|Comedy|Family|", "keywords": "duringcreditsstinger", "tags_pipe": "|duringcreditsstinger|", "overview": "Former CIA spy Bob Ho takes on his toughest assignment to date: looking after his girlfriend's three kids, who haven't exactly warmed to their mom's beau. And when one of the youngsters accidentally downloads a top-secret formula, Bob's longtime nemesis, a Russian terrorist, pays a visit to the family.", "text_for_embedding": "The Spy Next Door (2010). Genres: Action, Comedy, Family. Former CIA spy Bob Ho takes on his toughest assignment to date: looking after his girlfriend's three kids, who haven't exactly warmed to their mom's beau. And when one of the youngsters accidentally downloads a top-secret formula, Bob's longtime nemesis, a Russian terrorist, pays a visit to the family.. Tags: duringcreditsstinger"} +{"id": "17834", "title": "A Simple Wish", "year": 1997, "duration_min": 86, "rating": 5.5, "genres": "Adventure, Comedy, Family, Fantasy", "genres_pipe": "|Adventure|Comedy|Family|Fantasy|", "keywords": "magic, wish, kids, fairy godmother", "tags_pipe": "|magic|wish|kids|fairy godmother|", "overview": "Murray is a male fairy godmother, and he is trying to help 8-year-old Anabel to fulfil her \"simple wish\" - that her father Oliver, who is a cab driver, would win the leading role in a Broadway musical. Unfortunately, Murray's magic wand is broken and the fairies convention is threatened by evil witches Claudia and Boots.", "text_for_embedding": "A Simple Wish (1997). Genres: Adventure, Comedy, Family, Fantasy. Murray is a male fairy godmother, and he is trying to help 8-year-old Anabel to fulfil her \"simple wish\" - that her father Oliver, who is a cab driver, would win the leading role in a Broadway musical. Unfortunately, Murray's magic wand is broken and the fairies convention is threatened by evil witches Claudia and Boots.. Tags: magic, wish, kids, fairy godmother"} +{"id": "10016", "title": "Ghosts of Mars", "year": 2001, "duration_min": 98, "rating": 4.8, "genres": "Action, Horror, Science Fiction", "genres_pipe": "|Action|Horror|Science Fiction|", "keywords": "climbing up a wall, hung upside down, flashback within a flashback, cavern, battering, ram, ghost town", "tags_pipe": "|climbing up a wall|hung upside down|flashback within a flashback|cavern|battering|ram|ghost town|", "overview": "Melanie Ballard (Natasha Henstridge) is a hard nosed police chief in the year 2025. She and a police snatch squad are sent to Mars to apprehend a dangerous criminal James Williams (Ice Cube). Mars has been occupied by humans for some time and they have set up mining facilities. The mining activities on Mars have unleashed the spirits of alien beings who gradually possess the bodies of the workers. It soon turns out that catching the dangerous fugitive takes a back seat as the alien spirits begin to rid their planet of the 'invaders'.", "text_for_embedding": "Ghosts of Mars (2001). Genres: Action, Horror, Science Fiction. Melanie Ballard (Natasha Henstridge) is a hard nosed police chief in the year 2025. She and a police snatch squad are sent to Mars to apprehend a dangerous criminal James Williams (Ice Cube). Mars has been occupied by humans for some time and they have set up mining facilities. The mining activities on Mars have unleashed the spirits of alien beings who gradually possess the bodies of the workers. It soon turns out that catching the dangerous fugitive takes a back seat as the alien spirits begin to rid their planet of the 'invaders'.. Tags: climbing up a wall, hung upside down, flashback within a flashback, cavern, battering, ram, ghost town"} +{"id": "10317", "title": "Our Brand Is Crisis", "year": 2015, "duration_min": 108, "rating": 5.8, "genres": "Comedy, Drama", "genres_pipe": "|Comedy|Drama|", "keywords": "bolivia, woman, political campaign, south america, year 2002", "tags_pipe": "|bolivia|woman|political campaign|south america|year 2002|", "overview": "A feature film based on the documentary \"Our Brand Is Crisis\", which focuses on the use of American political campaign strategies in South America.", "text_for_embedding": "Our Brand Is Crisis (2015). Genres: Comedy, Drama. A feature film based on the documentary \"Our Brand Is Crisis\", which focuses on the use of American political campaign strategies in South America.. Tags: bolivia, woman, political campaign, south america, year 2002"} +{"id": "58431", "title": "Pride and Prejudice and Zombies", "year": 2016, "duration_min": 108, "rating": 5.5, "genres": "Romance, Horror, Comedy, Thriller", "genres_pipe": "|Romance|Horror|Comedy|Thriller|", "keywords": "based on novel, dystopia, shaolin, prejudice, zombie, pride, golddigger, regency period, parson, mashup", "tags_pipe": "|based on novel|dystopia|shaolin|prejudice|zombie|pride|golddigger|regency period|parson|mashup|", "overview": "A zombie outbreak has fallen upon the land in this reimagining of Jane Austen’s classic tale of the tangled relationships between lovers from different social classes in 19th century England. Feisty heroine Elizabeth Bennet (Lily James) is a master of martial arts and weaponry and the handsome Mr. Darcy (Sam Riley) is a fierce zombie killer, yet the epitome of upper class prejudice. As the zombie outbreak intensifies, they must swallow their pride and join forces on the blood-soaked battlefield in order to conquer the undead once and for all.", "text_for_embedding": "Pride and Prejudice and Zombies (2016). Genres: Romance, Horror, Comedy, Thriller. A zombie outbreak has fallen upon the land in this reimagining of Jane Austen’s classic tale of the tangled relationships between lovers from different social classes in 19th century England. Feisty heroine Elizabeth Bennet (Lily James) is a master of martial arts and weaponry and the handsome Mr. Darcy (Sam Riley) is a fierce zombie killer, yet the epitome of upper class prejudice. As the zombie outbreak intensifies, they must swallow their pride and join forces on the blood-soaked battlefield in order to conquer the undead once and for all.. Tags: based on novel, dystopia, shaolin, prejudice, zombie, pride, golddigger, regency period, parson, mashup"} +{"id": "9746", "title": "Kundun", "year": 1997, "duration_min": 134, "rating": 6.8, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "buddhism, china, mountains, buddhist monk, tibet, dalai lama, lhasa, buddha", "tags_pipe": "|buddhism|china|mountains|buddhist monk|tibet|dalai lama|lhasa|buddha|", "overview": "The Tibetans refer to the Dalai Lama as 'Kundun', which means 'The Presence'. He was forced to escape from his native home, Tibet, when communist China invaded and enforced an oppressive regime upon the peaceful nation. The Dalai Lama escaped to India in 1959 and has been living in exile in Dharamsala ever since.", "text_for_embedding": "Kundun (1997). Genres: Drama. The Tibetans refer to the Dalai Lama as 'Kundun', which means 'The Presence'. He was forced to escape from his native home, Tibet, when communist China invaded and enforced an oppressive regime upon the peaceful nation. The Dalai Lama escaped to India in 1959 and has been living in exile in Dharamsala ever since.. Tags: buddhism, china, mountains, buddhist monk, tibet, dalai lama, lhasa, buddha"} +{"id": "13092", "title": "How to Lose Friends & Alienate People", "year": 2008, "duration_min": 110, "rating": 6.2, "genres": "Comedy, Romance, Drama", "genres_pipe": "|Comedy|Romance|Drama|", "keywords": "failure, starlet", "tags_pipe": "|failure|starlet|", "overview": "A British writer struggles to fit in at a high-profile magazine in New York. Based on Toby Young's memoir \"How to Lose Friends & Alienate People\".", "text_for_embedding": "How to Lose Friends & Alienate People (2008). Genres: Comedy, Romance, Drama. A British writer struggles to fit in at a high-profile magazine in New York. Based on Toby Young's memoir \"How to Lose Friends & Alienate People\".. Tags: failure, starlet"} +{"id": "59859", "title": "Kick-Ass 2", "year": 2013, "duration_min": 103, "rating": 6.3, "genres": "Action, Adventure, Crime", "genres_pipe": "|Action|Adventure|Crime|", "keywords": "crime fighter, secret identity, marvel comic, superhero, aftercreditsstinger, teen superheroes", "tags_pipe": "|crime fighter|secret identity|marvel comic|superhero|aftercreditsstinger|teen superheroes|", "overview": "After Kick-Ass’ insane bravery inspires a new wave of self-made masked crusaders, he joins a patrol led by the Colonel Stars and Stripes. When these amateur superheroes are hunted down by Red Mist — reborn as The Mother Fucker — only the blade-wielding Hit-Girl can prevent their annihilation.", "text_for_embedding": "Kick-Ass 2 (2013). Genres: Action, Adventure, Crime. After Kick-Ass’ insane bravery inspires a new wave of self-made masked crusaders, he joins a patrol led by the Colonel Stars and Stripes. When these amateur superheroes are hunted down by Red Mist — reborn as The Mother Fucker — only the blade-wielding Hit-Girl can prevent their annihilation.. Tags: crime fighter, secret identity, marvel comic, superhero, aftercreditsstinger, teen superheroes"} +{"id": "13495", "title": "Alatriste", "year": 2006, "duration_min": 145, "rating": 5.6, "genres": "Action", "genres_pipe": "|Action|", "keywords": "", "tags_pipe": "", "overview": "In 17th century Spain Diego Alatriste, a brave and heroic soldier, is fighting in his King's army in the Flandes region. His best mate, Balboa, falls in a trap and, near to death, asks Diego to look after his son and teach him to be a soldier.", "text_for_embedding": "Alatriste (2006). Genres: Action. In 17th century Spain Diego Alatriste, a brave and heroic soldier, is fighting in his King's army in the Flandes region. His best mate, Balboa, falls in a trap and, near to death, asks Diego to look after his son and teach him to be a soldier.. Tags: "} +{"id": "254473", "title": "Brick Mansions", "year": 2014, "duration_min": 90, "rating": 5.7, "genres": "Action, Crime, Drama", "genres_pipe": "|Action|Crime|Drama|", "keywords": "martial arts, atomic bomb, ghetto, parkour, cops, remake, undercover cop, gangster, remake of french film", "tags_pipe": "|martial arts|atomic bomb|ghetto|parkour|cops|remake|undercover cop|gangster|remake of french film|", "overview": "In a dystopian Detroit, grand houses that once housed the wealthy are now homes of the city's most-dangerous criminals. Surrounding the area is a giant wall to keep the rest of Detroit safe. For undercover cop Damien Collier, every day is a battle against corruption as he struggles to bring his father's killer, Tremaine, to justice. Meanwhile, Damien and an ex-con named Lino work together to save the city from a plot to destroy it.", "text_for_embedding": "Brick Mansions (2014). Genres: Action, Crime, Drama. In a dystopian Detroit, grand houses that once housed the wealthy are now homes of the city's most-dangerous criminals. Surrounding the area is a giant wall to keep the rest of Detroit safe. For undercover cop Damien Collier, every day is a battle against corruption as he struggles to bring his father's killer, Tremaine, to justice. Meanwhile, Damien and an ex-con named Lino work together to save the city from a plot to destroy it.. Tags: martial arts, atomic bomb, ghetto, parkour, cops, remake, undercover cop, gangster, remake of french film"} +{"id": "700", "title": "Octopussy", "year": 1983, "duration_min": 131, "rating": 6.2, "genres": "Adventure, Action, Thriller", "genres_pipe": "|Adventure|Action|Thriller|", "keywords": "atomic bomb, eastern block, crocodile, secret intelligence service, kgb, snake charmer, hot air balloon, east berlin, british secret service", "tags_pipe": "|atomic bomb|eastern block|crocodile|secret intelligence service|kgb|snake charmer|hot air balloon|east berlin|british secret service|", "overview": "James Bond is sent to investigate after a fellow “00” agent is found dead with a priceless Farberge egg. James bond follows the mystery and uncovers a smuggling scandal and a Russian General who wants to provoke a new World War.", "text_for_embedding": "Octopussy (1983). Genres: Adventure, Action, Thriller. James Bond is sent to investigate after a fellow “00” agent is found dead with a priceless Farberge egg. James bond follows the mystery and uncovers a smuggling scandal and a Russian General who wants to provoke a new World War.. Tags: atomic bomb, eastern block, crocodile, secret intelligence service, kgb, snake charmer, hot air balloon, east berlin, british secret service"} +{"id": "4964", "title": "Knocked Up", "year": 2007, "duration_min": 129, "rating": 6.2, "genres": "Comedy, Romance, Drama", "genres_pipe": "|Comedy|Romance|Drama|", "keywords": "alcohol, one-night stand, bed, pregnancy and birth, condom, paternity, drug use, beard, unprotected sex, duringcreditsstinger", "tags_pipe": "|alcohol|one-night stand|bed|pregnancy and birth|condom|paternity|drug use|beard|unprotected sex|duringcreditsstinger|", "overview": "For fun loving party animal Ben Stone, the last thing he ever expected was for his one night stand to show up on his doorstep eight weeks later to tell him she's pregnant.", "text_for_embedding": "Knocked Up (2007). Genres: Comedy, Romance, Drama. For fun loving party animal Ben Stone, the last thing he ever expected was for his one night stand to show up on his doorstep eight weeks later to tell him she's pregnant.. Tags: alcohol, one-night stand, bed, pregnancy and birth, condom, paternity, drug use, beard, unprotected sex, duringcreditsstinger"} +{"id": "10024", "title": "My Sister's Keeper", "year": 2009, "duration_min": 109, "rating": 7.1, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "parents kids relationship, sister sister relationship, court case, in vitro fertilisation, medical examiner, kidney transplant ", "tags_pipe": "|parents kids relationship|sister sister relationship|court case|in vitro fertilisation|medical examiner|kidney transplant |", "overview": "Sara and Brian live an idyllic life with their young son and daughter. But their family is rocked by sudden, heartbreaking news that forces them to make a difficult and unorthodox choice in order to save their baby girl's life. The parents' desperate decision raises both ethical and moral questions and rips away at the foundation of their relationship. Their actions ultimately set off a court case that threatens to tear the family apart, while revealing surprising truths that challenge everyone's perceptions of love and loyalty and give new meaning to the definition of healing.", "text_for_embedding": "My Sister's Keeper (2009). Genres: Drama. Sara and Brian live an idyllic life with their young son and daughter. But their family is rocked by sudden, heartbreaking news that forces them to make a difficult and unorthodox choice in order to save their baby girl's life. The parents' desperate decision raises both ethical and moral questions and rips away at the foundation of their relationship. Their actions ultimately set off a court case that threatens to tear the family apart, while revealing surprising truths that challenge everyone's perceptions of love and loyalty and give new meaning to the definition of healing.. Tags: parents kids relationship, sister sister relationship, court case, in vitro fertilisation, medical examiner, kidney transplant "} +{"id": "13490", "title": "Welcome Home Roscoe Jenkins", "year": 2008, "duration_min": 114, "rating": 5.7, "genres": "Comedy, Drama", "genres_pipe": "|Comedy|Drama|", "keywords": "talk show", "tags_pipe": "|talk show|", "overview": "Martin Lawrence leads an all-star cast, including Cedric the Entertainer, Mo'Nique, and Mike Epps, in the hit comedy \"Welcome Home Roscoe Jenkins.\" When a celebrated TV show host (Lawrence) returns to his hometown in the South, his family is there to remind him that going home is no vacation! It's one outrageous predicament after another when big-city attitude and small-town values collide in this hysterical comedy critics are praising for its \"over-the-top hilarity!\" (Roger Moore, Orlando Sentinel).", "text_for_embedding": "Welcome Home Roscoe Jenkins (2008). Genres: Comedy, Drama. Martin Lawrence leads an all-star cast, including Cedric the Entertainer, Mo'Nique, and Mike Epps, in the hit comedy \"Welcome Home Roscoe Jenkins.\" When a celebrated TV show host (Lawrence) returns to his hometown in the South, his family is there to remind him that going home is no vacation! It's one outrageous predicament after another when big-city attitude and small-town values collide in this hysterical comedy critics are praising for its \"over-the-top hilarity!\" (Roger Moore, Orlando Sentinel).. Tags: talk show"} +{"id": "15927", "title": "A Passage to India", "year": 1984, "duration_min": 163, "rating": 6.9, "genres": "Drama, Adventure, History", "genres_pipe": "|Drama|Adventure|History|", "keywords": "doctor, india, english, magistrate, 1920s, mosque", "tags_pipe": "|doctor|india|english|magistrate|1920s|mosque|", "overview": "The film is set during the period of growing influence of the Indian independence movement in the British Raj. It begins with the arrival in India of a British woman, Miss Adela Quested (Judy Davis), who is joining her fiancé, a city magistrate named Ronny Heaslop (Nigel Havers). She and Ronny's mother, Mrs. Moore (Peggy Ashcroft), befriend an Indian doctor, Aziz H. Ahmed (Victor Banerjee).", "text_for_embedding": "A Passage to India (1984). Genres: Drama, Adventure, History. The film is set during the period of growing influence of the Indian independence movement in the British Raj. It begins with the arrival in India of a British woman, Miss Adela Quested (Judy Davis), who is joining her fiancé, a city magistrate named Ronny Heaslop (Nigel Havers). She and Ronny's mother, Mrs. Moore (Peggy Ashcroft), befriend an Indian doctor, Aziz H. Ahmed (Victor Banerjee).. Tags: doctor, india, english, magistrate, 1920s, mosque"} +{"id": "1259", "title": "Notes on a Scandal", "year": 2006, "duration_min": 92, "rating": 6.9, "genres": "Drama, Romance", "genres_pipe": "|Drama|Romance|", "keywords": "sex, adultery, based on novel, cat, infidelity, secret, obsession, blackmail, nudity, seduction, studio, friendship, stalker, love, loneliness", "tags_pipe": "|sex|adultery|based on novel|cat|infidelity|secret|obsession|blackmail|nudity|seduction|studio|friendship|stalker|love|loneliness|", "overview": "A veteran high school teacher befriends a younger art teacher, who is having an affair with one of her 15-year-old students. However, her intentions with this new \"friend\" also go well beyond platonic friendship.", "text_for_embedding": "Notes on a Scandal (2006). Genres: Drama, Romance. A veteran high school teacher befriends a younger art teacher, who is having an affair with one of her 15-year-old students. However, her intentions with this new \"friend\" also go well beyond platonic friendship.. Tags: sex, adultery, based on novel, cat, infidelity, secret, obsession, blackmail, nudity, seduction, studio, friendship, stalker, love, loneliness"} +{"id": "5125", "title": "Rendition", "year": 2007, "duration_min": 120, "rating": 6.2, "genres": "Drama, Thriller", "genres_pipe": "|Drama|Thriller|", "keywords": "anti terror, terror, cia, loss of son, police brutality, terrorist, loss of brother, war against terror, kidnapping, intelligence, despair, inhumanity, senator, plo, civil rights activist", "tags_pipe": "|anti terror|terror|cia|loss of son|police brutality|terrorist|loss of brother|war against terror|kidnapping|intelligence|despair|inhumanity|senator|plo|civil rights activist|", "overview": "When an Egyptian terrorism suspect \"disappears\" on a flight from Africa to Washington DC, his American wife and a CIA analyst find themselves caught up in a struggle to secure his release from a secret detention facility somewhere outside the US.", "text_for_embedding": "Rendition (2007). Genres: Drama, Thriller. When an Egyptian terrorism suspect \"disappears\" on a flight from Africa to Washington DC, his American wife and a CIA analyst find themselves caught up in a struggle to secure his release from a secret detention facility somewhere outside the US.. Tags: anti terror, terror, cia, loss of son, police brutality, terrorist, loss of brother, war against terror, kidnapping, intelligence, despair, inhumanity, senator, plo, civil rights activist"} +{"id": "174", "title": "Star Trek VI: The Undiscovered Country", "year": 1991, "duration_min": 113, "rating": 6.7, "genres": "Science Fiction, Action, Adventure, Thriller", "genres_pipe": "|Science Fiction|Action|Adventure|Thriller|", "keywords": "farewell, federation, starfleet, peace conference, uss enterprise-a, rura penthe, court case, peace contract, plan, klingon, space opera", "tags_pipe": "|farewell|federation|starfleet|peace conference|uss enterprise-a|rura penthe|court case|peace contract|plan|klingon|space opera|", "overview": "On the eve of retirement, Kirk and McCoy are charged with assassinating the Klingon High Chancellor and imprisoned. The Enterprise crew must help them escape to thwart a conspiracy aimed at sabotaging the last best hope for peace.", "text_for_embedding": "Star Trek VI: The Undiscovered Country (1991). Genres: Science Fiction, Action, Adventure, Thriller. On the eve of retirement, Kirk and McCoy are charged with assassinating the Klingon High Chancellor and imprisoned. The Enterprise crew must help them escape to thwart a conspiracy aimed at sabotaging the last best hope for peace.. Tags: farewell, federation, starfleet, peace conference, uss enterprise-a, rura penthe, court case, peace contract, plan, klingon, space opera"} +{"id": "9583", "title": "Divine Secrets of the Ya-Ya Sisterhood", "year": 2002, "duration_min": 116, "rating": 5.6, "genres": "Comedy, Drama, Romance", "genres_pipe": "|Comedy|Drama|Romance|", "keywords": "secret society, conciliation, marriage, mother daughter relationship, playwright, family feud, woman director", "tags_pipe": "|secret society|conciliation|marriage|mother daughter relationship|playwright|family feud|woman director|", "overview": "A mother and daughter dispute is resolved by the \"Yaya sisterhood\" - long time friends of the mother.", "text_for_embedding": "Divine Secrets of the Ya-Ya Sisterhood (2002). Genres: Comedy, Drama, Romance. A mother and daughter dispute is resolved by the \"Yaya sisterhood\" - long time friends of the mother.. Tags: secret society, conciliation, marriage, mother daughter relationship, playwright, family feud, woman director"} +{"id": "9437", "title": "Kiss the Girls", "year": 1997, "duration_min": 115, "rating": 6.2, "genres": "Drama, Mystery, Thriller, Crime", "genres_pipe": "|Drama|Mystery|Thriller|Crime|", "keywords": "washington d.c., covered investigation, investigation, north carolina, missing person", "tags_pipe": "|washington d.c.|covered investigation|investigation|north carolina|missing person|", "overview": "Forensic psychologist Alex Cross travels to North Carolina and teams with escaped kidnap victim Kate McTiernan to hunt down \"Casanova,\" a serial killer who abducts strong-willed women and forces them to submit to his demands. The trail leads to Los Angeles, where the duo discovers that the psychopath may not be working alone.", "text_for_embedding": "Kiss the Girls (1997). Genres: Drama, Mystery, Thriller, Crime. Forensic psychologist Alex Cross travels to North Carolina and teams with escaped kidnap victim Kate McTiernan to hunt down \"Casanova,\" a serial killer who abducts strong-willed women and forces them to submit to his demands. The trail leads to Los Angeles, where the duo discovers that the psychopath may not be working alone.. Tags: washington d.c., covered investigation, investigation, north carolina, missing person"} +{"id": "525", "title": "The Blues Brothers", "year": 1980, "duration_min": 133, "rating": 7.5, "genres": "Music, Comedy, Action, Crime", "genres_pipe": "|Music|Comedy|Action|Crime|", "keywords": "dancing, prison, chicago, country music, nun, jazz, car journey, blues, nazis, music, concert, music instrument, children's home, shopping mall, orphanage", "tags_pipe": "|dancing|prison|chicago|country music|nun|jazz|car journey|blues|nazis|music|concert|music instrument|children's home|shopping mall|orphanage|", "overview": "Jake Blues is just out of jail, and teams up with his brother, Elwood on a 'mission from God' to raise funds for the orphanage in which they grew up. The only thing they can do is do what they do best – play music – so they get their old band together and they're on their way, while getting in a bit of trouble here and there.", "text_for_embedding": "The Blues Brothers (1980). Genres: Music, Comedy, Action, Crime. Jake Blues is just out of jail, and teams up with his brother, Elwood on a 'mission from God' to raise funds for the orphanage in which they grew up. The only thing they can do is do what they do best – play music – so they get their old band together and they're on their way, while getting in a bit of trouble here and there.. Tags: dancing, prison, chicago, country music, nun, jazz, car journey, blues, nazis, music, concert, music instrument, children's home, shopping mall, orphanage"} +{"id": "10188", "title": "The Sisterhood of the Traveling Pants 2", "year": 2008, "duration_min": 117, "rating": 6.0, "genres": "Adventure, Comedy, Drama, Family", "genres_pipe": "|Adventure|Comedy|Drama|Family|", "keywords": "female friendship, best friend, summer vacation, woman director, young adult", "tags_pipe": "|female friendship|best friend|summer vacation|woman director|young adult|", "overview": "Four young women continue the journey toward adulthood that began with \"The Sisterhood of the Traveling Pants.\" Now three years later, these lifelong friends embark on separate paths for their first year of college and the summer beyond, but remain in touch by sharing their experiences with each other.", "text_for_embedding": "The Sisterhood of the Traveling Pants 2 (2008). Genres: Adventure, Comedy, Drama, Family. Four young women continue the journey toward adulthood that began with \"The Sisterhood of the Traveling Pants.\" Now three years later, these lifelong friends embark on separate paths for their first year of college and the summer beyond, but remain in touch by sharing their experiences with each other.. Tags: female friendship, best friend, summer vacation, woman director, young adult"} +{"id": "63574", "title": "Joyful Noise", "year": 2012, "duration_min": 117, "rating": 6.7, "genres": "Comedy, Music", "genres_pipe": "|Comedy|Music|", "keywords": "", "tags_pipe": "", "overview": "G.G. Sparrow faces off with her choir's newly appointed director, Vi Rose Hill, over the group's direction as they head into a national competition.", "text_for_embedding": "Joyful Noise (2012). Genres: Comedy, Music. G.G. Sparrow faces off with her choir's newly appointed director, Vi Rose Hill, over the group's direction as they head into a national competition.. Tags: "} +{"id": "245", "title": "About a Boy", "year": 2002, "duration_min": 101, "rating": 6.6, "genres": "Drama, Comedy, Romance", "genres_pipe": "|Drama|Comedy|Romance|", "keywords": "london england, rock and roll, single parent, rap music, bachelor, becoming an adult, friendship, single", "tags_pipe": "|london england|rock and roll|single parent|rap music|bachelor|becoming an adult|friendship|single|", "overview": "Will Freeman is a hip Londoner who one day realizes that his friends are all involved with the responsibilities of married life and that leaves him alone in the cold. Passing himself off as a single father, he starts to meet a string of single mums, confident in his ability to leave them behind when they start to ask for a commitment. But Will's hope of a continued bachelorhood is interrupted when he meets 12-year old Marcus, in many ways his complete opposite.", "text_for_embedding": "About a Boy (2002). Genres: Drama, Comedy, Romance. Will Freeman is a hip Londoner who one day realizes that his friends are all involved with the responsibilities of married life and that leaves him alone in the cold. Passing himself off as a single father, he starts to meet a string of single mums, confident in his ability to leave them behind when they start to ask for a commitment. But Will's hope of a continued bachelorhood is interrupted when he meets 12-year old Marcus, in many ways his complete opposite.. Tags: london england, rock and roll, single parent, rap music, bachelor, becoming an adult, friendship, single"} +{"id": "9825", "title": "Lake Placid", "year": 1999, "duration_min": 82, "rating": 5.5, "genres": "Horror, Comedy, Action, Science Fiction, Thriller", "genres_pipe": "|Horror|Comedy|Action|Science Fiction|Thriller|", "keywords": "diving, sheriff, lake, crocodile, deputy, paleontologist, cow, maine, decapitation, severed head, scientist, remote, tooth, bear attack, campfire", "tags_pipe": "|diving|sheriff|lake|crocodile|deputy|paleontologist|cow|maine|decapitation|severed head|scientist|remote|tooth|bear attack|campfire|", "overview": "When a man is eaten alive by an unknown creature, the local Game Warden teams up with a paleontologist from New York to find the beast. Add to the mix an eccentric philanthropist with a penchant for \"Crocs\", and here we go! This quiet, remote lake is suddenly the focus of an intense search for a crocodile with a taste for live animals...and people!", "text_for_embedding": "Lake Placid (1999). Genres: Horror, Comedy, Action, Science Fiction, Thriller. When a man is eaten alive by an unknown creature, the local Game Warden teams up with a paleontologist from New York to find the beast. Add to the mix an eccentric philanthropist with a penchant for \"Crocs\", and here we go! This quiet, remote lake is suddenly the focus of an intense search for a crocodile with a taste for live animals...and people!. Tags: diving, sheriff, lake, crocodile, deputy, paleontologist, cow, maine, decapitation, severed head, scientist, remote, tooth, bear attack, campfire"} +{"id": "186", "title": "Lucky Number Slevin", "year": 2006, "duration_min": 110, "rating": 7.4, "genres": "Drama, Thriller, Crime, Mystery", "genres_pipe": "|Drama|Thriller|Crime|Mystery|", "keywords": "assassination, assassin, identity, sniper, mistake in person, jew, gangster boss, gambling debts, boss, murder, sniper rifle, fbi agent, horse racing, gambler, slevin", "tags_pipe": "|assassination|assassin|identity|sniper|mistake in person|jew|gangster boss|gambling debts|boss|murder|sniper rifle|fbi agent|horse racing|gambler|slevin|", "overview": "Slevin is mistakenly put in the middle of a personal war between the city’s biggest criminal bosses. Under constant watch, Slevin must try not to get killed by an infamous assassin and come up with an idea of how to get out of his current dilemma. A film with many twists and turns.", "text_for_embedding": "Lucky Number Slevin (2006). Genres: Drama, Thriller, Crime, Mystery. Slevin is mistakenly put in the middle of a personal war between the city’s biggest criminal bosses. Under constant watch, Slevin must try not to get killed by an infamous assassin and come up with an idea of how to get out of his current dilemma. A film with many twists and turns.. Tags: assassination, assassin, identity, sniper, mistake in person, jew, gangster boss, gambling debts, boss, murder, sniper rifle, fbi agent, horse racing, gambler, slevin"} +{"id": "9549", "title": "The Right Stuff", "year": 1983, "duration_min": 193, "rating": 7.3, "genres": "Drama, History", "genres_pipe": "|Drama|History|", "keywords": "cold war, pilot, space travel, politics, historical figure, flight, astronaut, space race, sound barrier", "tags_pipe": "|cold war|pilot|space travel|politics|historical figure|flight|astronaut|space race|sound barrier|", "overview": "A chronicle of the original Mercury astronauts in the formation of America's space program: Alan Shepherd, the first American in space; Gus Grissom, the benighted astronaut for whom nothing works out as planned; John Glenn, the straight-arrow 'boy scout' of the bunch who was the first American to orbit the earth; and the remaining pilots: Deke Slayton, Scott Carpenter and Wally Schirra.", "text_for_embedding": "The Right Stuff (1983). Genres: Drama, History. A chronicle of the original Mercury astronauts in the formation of America's space program: Alan Shepherd, the first American in space; Gus Grissom, the benighted astronaut for whom nothing works out as planned; John Glenn, the straight-arrow 'boy scout' of the bunch who was the first American to orbit the earth; and the remaining pilots: Deke Slayton, Scott Carpenter and Wally Schirra.. Tags: cold war, pilot, space travel, politics, historical figure, flight, astronaut, space race, sound barrier"} +{"id": "61891", "title": "Anonymous", "year": 2011, "duration_min": 130, "rating": 6.3, "genres": "Drama, History, Thriller", "genres_pipe": "|Drama|History|Thriller|", "keywords": "shakespeare, anonymity, poet, play, political, duringcreditsstinger, false history", "tags_pipe": "|shakespeare|anonymity|poet|play|political|duringcreditsstinger|false history|", "overview": "Set against the backdrop of the succession of Queen Elizabeth I, and the Essex Rebellion against her, the story advances the theory that it was in fact Edward De Vere, Earl of Oxford who penned Shakespeare's plays.", "text_for_embedding": "Anonymous (2011). Genres: Drama, History, Thriller. Set against the backdrop of the succession of Queen Elizabeth I, and the Essex Rebellion against her, the story advances the theory that it was in fact Edward De Vere, Earl of Oxford who penned Shakespeare's plays.. Tags: shakespeare, anonymity, poet, play, political, duringcreditsstinger, false history"} +{"id": "34584", "title": "The NeverEnding Story", "year": 1984, "duration_min": 102, "rating": 7.0, "genres": "Drama, Family, Fantasy, Adventure", "genres_pipe": "|Drama|Family|Fantasy|Adventure|", "keywords": "based on novel, fictional place, wolf, mythology, magic, horse, book, fairy tale, bully, school, talking animal, reading, book store, fantasy world, giant", "tags_pipe": "|based on novel|fictional place|wolf|mythology|magic|horse|book|fairy tale|bully|school|talking animal|reading|book store|fantasy world|giant|", "overview": "While hiding from bullies in his school's attic, a young boy discovers the extraordinary land of Fantasia, through a magical book called The Neverending Story. The book tells the tale of Atreyu, a young warrior who, with the help of a luck dragon named Falkor, must save Fantasia from the destruction of The Nothing.", "text_for_embedding": "The NeverEnding Story (1984). Genres: Drama, Family, Fantasy, Adventure. While hiding from bullies in his school's attic, a young boy discovers the extraordinary land of Fantasia, through a magical book called The Neverending Story. The book tells the tale of Atreyu, a young warrior who, with the help of a luck dragon named Falkor, must save Fantasia from the destruction of The Nothing.. Tags: based on novel, fictional place, wolf, mythology, magic, horse, book, fairy tale, bully, school, talking animal, reading, book store, fantasy world, giant"} +{"id": "2666", "title": "Dark City", "year": 1998, "duration_min": 100, "rating": 7.2, "genres": "Mystery, Science Fiction", "genres_pipe": "|Mystery|Science Fiction|", "keywords": "soul, sleep, manipulation, future, dystopia, chaos, memory, duel, parallel world, tech noir, matrix, neo-noir, retrofuturism", "tags_pipe": "|soul|sleep|manipulation|future|dystopia|chaos|memory|duel|parallel world|tech noir|matrix|neo-noir|retrofuturism|", "overview": "A man struggles with memories of his past, including a wife he cannot remember, in a nightmarish world with no sun and run by beings with telekinetic powers who seek the souls of humans.", "text_for_embedding": "Dark City (1998). Genres: Mystery, Science Fiction. A man struggles with memories of his past, including a wife he cannot remember, in a nightmarish world with no sun and run by beings with telekinetic powers who seek the souls of humans.. Tags: soul, sleep, manipulation, future, dystopia, chaos, memory, duel, parallel world, tech noir, matrix, neo-noir, retrofuturism"} +{"id": "12783", "title": "The Duchess", "year": 2008, "duration_min": 110, "rating": 6.7, "genres": "Drama, History, Romance", "genres_pipe": "|Drama|History|Romance|", "keywords": "england, adultery, duke, gambling debts, marriage crisis", "tags_pipe": "|england|adultery|duke|gambling debts|marriage crisis|", "overview": "A chronicle of the life of 18th century aristocrat Georgiana, Duchess of Devonshire, who was reviled for her extravagant political and personal life.", "text_for_embedding": "The Duchess (2008). Genres: Drama, History, Romance. A chronicle of the life of 18th century aristocrat Georgiana, Duchess of Devonshire, who was reviled for her extravagant political and personal life.. Tags: england, adultery, duke, gambling debts, marriage crisis"} +{"id": "13155", "title": "Return to Oz", "year": 1985, "duration_min": 109, "rating": 6.7, "genres": "Adventure, Family, Fantasy", "genres_pipe": "|Adventure|Family|Fantasy|", "keywords": "wizard of oz", "tags_pipe": "|wizard of oz|", "overview": "Dorothy, saved from a psychiatric experiment by a mysterious girl, finds herself back in the land of her dreams, and makes delightful new friends, and dangerous new enemies.", "text_for_embedding": "Return to Oz (1985). Genres: Adventure, Family, Fantasy. Dorothy, saved from a psychiatric experiment by a mysterious girl, finds herself back in the land of her dreams, and makes delightful new friends, and dangerous new enemies.. Tags: wizard of oz"} +{"id": "42807", "title": "The Newton Boys", "year": 1998, "duration_min": 113, "rating": 5.9, "genres": "Crime, Action, Drama", "genres_pipe": "|Crime|Action|Drama|", "keywords": "bank robber, crime spree, western u.s.", "tags_pipe": "|bank robber|crime spree|western u.s.|", "overview": "Four Newton brothers are a poor farmer family in the 1920s. The oldest of them, Willis, one day realizes that there's no future in the fields and offers his brothers to become a bank robbers. Soon the family agrees. They become very famous robbers, and five years later execute the greatest train robbery in American history.", "text_for_embedding": "The Newton Boys (1998). Genres: Crime, Action, Drama. Four Newton brothers are a poor farmer family in the 1920s. The oldest of them, Willis, one day realizes that there's no future in the fields and offers his brothers to become a bank robbers. Soon the family agrees. They become very famous robbers, and five years later execute the greatest train robbery in American history.. Tags: bank robber, crime spree, western u.s."} +{"id": "28355", "title": "Case 39", "year": 2009, "duration_min": 109, "rating": 6.1, "genres": "Horror, Mystery, Thriller", "genres_pipe": "|Horror|Mystery|Thriller|", "keywords": "child abuse, detective, social worker, supernatural, murder, mental institution, youth, violence, danger, cityscape, drawn, falling elevator, pier, psychological, deadly", "tags_pipe": "|child abuse|detective|social worker|supernatural|murder|mental institution|youth|violence|danger|cityscape|drawn|falling elevator|pier|psychological|deadly|", "overview": "In her many years as a social worker, Emily Jenkins believes she has seen it all, until she meets 10-year-old Lilith and the girl's cruel parents. Emily's worst fears are confirmed when the parents try to harm the child, and so Emily assumes custody of Lilith while she looks for a foster family. However, Emily soon finds that dark forces surround the seemingly innocent girl, and the more she tries to protect Lilith, the more horrors she encounters.", "text_for_embedding": "Case 39 (2009). Genres: Horror, Mystery, Thriller. In her many years as a social worker, Emily Jenkins believes she has seen it all, until she meets 10-year-old Lilith and the girl's cruel parents. Emily's worst fears are confirmed when the parents try to harm the child, and so Emily assumes custody of Lilith while she looks for a foster family. However, Emily soon finds that dark forces surround the seemingly innocent girl, and the more she tries to protect Lilith, the more horrors she encounters.. Tags: child abuse, detective, social worker, supernatural, murder, mental institution, youth, violence, danger, cityscape, drawn, falling elevator, pier, psychological, deadly"} +{"id": "8080", "title": "Suspect Zero", "year": 2004, "duration_min": 99, "rating": 5.5, "genres": "Crime, Thriller", "genres_pipe": "|Crime|Thriller|", "keywords": "serial killer", "tags_pipe": "|serial killer|", "overview": "A killer is on the loose, and an FBI agent sifts through clues and learns that the bloodthirsty felon's victims of choice are other serial killers.", "text_for_embedding": "Suspect Zero (2004). Genres: Crime, Thriller. A killer is on the loose, and an FBI agent sifts through clues and learns that the bloodthirsty felon's victims of choice are other serial killers.. Tags: serial killer"} +{"id": "5126", "title": "Martian Child", "year": 2007, "duration_min": 106, "rating": 6.8, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "underdog, adoption, education, adoptive father, childhood trauma, alienation, alien", "tags_pipe": "|underdog|adoption|education|adoptive father|childhood trauma|alienation|alien|", "overview": "A recently-widowed, science fiction writer considers whether to adopt a hyper-imaginative 6-year-old abandoned and socially-rejected boy who says he's really from Mars.", "text_for_embedding": "Martian Child (2007). Genres: Drama. A recently-widowed, science fiction writer considers whether to adopt a hyper-imaginative 6-year-old abandoned and socially-rejected boy who says he's really from Mars.. Tags: underdog, adoption, education, adoptive father, childhood trauma, alienation, alien"} +{"id": "56288", "title": "Spy Kids: All the Time in the World", "year": 2011, "duration_min": 89, "rating": 4.4, "genres": "Family, Comedy, Action", "genres_pipe": "|Family|Comedy|Action|", "keywords": "spy, child hero, secret agent, espionage", "tags_pipe": "|spy|child hero|secret agent|espionage|", "overview": "Eight years after the third film, the OSS has become the world's top spy agency, while the Spy Kids department has since become defunct. A retired spy Marissa (Jessica Alba) is thrown back into the action along with her stepchildren when a maniacal Timekeeper (Jeremy Piven) attempts to take over the world. In order to save the world, Rebecca (Rowan Blanchard) and Cecil (Mason Cook) must team up with their hated stepmother. Carmen and Juni have since also grown up and will provide gadgets to them.", "text_for_embedding": "Spy Kids: All the Time in the World (2011). Genres: Family, Comedy, Action. Eight years after the third film, the OSS has become the world's top spy agency, while the Spy Kids department has since become defunct. A retired spy Marissa (Jessica Alba) is thrown back into the action along with her stepchildren when a maniacal Timekeeper (Jeremy Piven) attempts to take over the world. In order to save the world, Rebecca (Rowan Blanchard) and Cecil (Mason Cook) must team up with their hated stepmother. Carmen and Juni have since also grown up and will provide gadgets to them.. Tags: spy, child hero, secret agent, espionage"} +{"id": "303858", "title": "Money Monster", "year": 2016, "duration_min": 98, "rating": 6.5, "genres": "Thriller", "genres_pipe": "|Thriller|", "keywords": "bomb, sniper, tv show, hostage drama, police, hostage-taking, new york city, stock market, stock fraud, woman director, tv studio", "tags_pipe": "|bomb|sniper|tv show|hostage drama|police|hostage-taking|new york city|stock market|stock fraud|woman director|tv studio|", "overview": "Financial TV host Lee Gates and his producer Patty are put in an extreme situation when an irate investor takes over their studio.", "text_for_embedding": "Money Monster (2016). Genres: Thriller. Financial TV host Lee Gates and his producer Patty are put in an extreme situation when an irate investor takes over their studio.. Tags: bomb, sniper, tv show, hostage drama, police, hostage-taking, new york city, stock market, stock fraud, woman director, tv studio"} +{"id": "1613", "title": "The 51st State", "year": 2001, "duration_min": 93, "rating": 5.9, "genres": "Thriller, Action, Comedy, Crime", "genres_pipe": "|Thriller|Action|Comedy|Crime|", "keywords": "chemical, laxative, skinheads", "tags_pipe": "|chemical|laxative|skinheads|", "overview": "Elmo McElroy is a streetwise American master chemist who heads to England to sell his special new formula - a powerful, blue concoction guaranteed to take you to 'the 51st state.' McElroy's new product delivers a feeling 51 times more powerful than any thrill, any pleasure, any high in history. But his plans for a quick, profitable score go comically awry when he gets stuck in Liverpool with an unlikely escort and his ex-girlfriend and becomes entangled in a bizarre web of double-dealing and double-crosses.", "text_for_embedding": "The 51st State (2001). Genres: Thriller, Action, Comedy, Crime. Elmo McElroy is a streetwise American master chemist who heads to England to sell his special new formula - a powerful, blue concoction guaranteed to take you to 'the 51st state.' McElroy's new product delivers a feeling 51 times more powerful than any thrill, any pleasure, any high in history. But his plans for a quick, profitable score go comically awry when he gets stuck in Liverpool with an unlikely escort and his ex-girlfriend and becomes entangled in a bizarre web of double-dealing and double-crosses.. Tags: chemical, laxative, skinheads"} +{"id": "31582", "title": "Flawless", "year": 1999, "duration_min": 112, "rating": 5.9, "genres": "Comedy, Drama", "genres_pipe": "|Comedy|Drama|", "keywords": "independent film", "tags_pipe": "|independent film|", "overview": "An ultraconservative police officer suffers a debilitating stroke and is assigned to a rehabilitative program that includes singing lessons - with the drag queen next door.", "text_for_embedding": "Flawless (1999). Genres: Comedy, Drama. An ultraconservative police officer suffers a debilitating stroke and is assigned to a rehabilitative program that includes singing lessons - with the drag queen next door.. Tags: independent film"} +{"id": "16617", "title": "Mindhunters", "year": 2004, "duration_min": 106, "rating": 6.3, "genres": "Mystery, Thriller, Crime", "genres_pipe": "|Mystery|Thriller|Crime|", "keywords": "fbi, island, serial killer, series of murders", "tags_pipe": "|fbi|island|serial killer|series of murders|", "overview": "Trainees in the FBI's psychological profiling program must put their training into practice when they discover a killer in their midst.", "text_for_embedding": "Mindhunters (2004). Genres: Mystery, Thriller, Crime. Trainees in the FBI's psychological profiling program must put their training into practice when they discover a killer in their midst.. Tags: fbi, island, serial killer, series of murders"} +{"id": "8944", "title": "What Just Happened", "year": 2008, "duration_min": 104, "rating": 5.2, "genres": "Comedy, Drama", "genres_pipe": "|Comedy|Drama|", "keywords": "film producer, midlife crisis, independent film, divorce", "tags_pipe": "|film producer|midlife crisis|independent film|divorce|", "overview": "During the course of an ordinary week in Hollywood, movie producer Ben (Robert De Niro) must navigate his way through shark-infested waters as he struggles to complete his latest projects. A demanding studio boss (Catherine Keener) demands extensive changes to a movie starring Sean Penn, while another chief won't greenlight a project unless star Bruce Willis shaves his beard. Meanwhile, Ben tries to reconcile with his wife and maintain a relationship with his young daughter.", "text_for_embedding": "What Just Happened (2008). Genres: Comedy, Drama. During the course of an ordinary week in Hollywood, movie producer Ben (Robert De Niro) must navigate his way through shark-infested waters as he struggles to complete his latest projects. A demanding studio boss (Catherine Keener) demands extensive changes to a movie starring Sean Penn, while another chief won't greenlight a project unless star Bruce Willis shaves his beard. Meanwhile, Ben tries to reconcile with his wife and maintain a relationship with his young daughter.. Tags: film producer, midlife crisis, independent film, divorce"} +{"id": "41488", "title": "The Statement", "year": 2003, "duration_min": 120, "rating": 5.9, "genres": "Drama, Thriller", "genres_pipe": "|Drama|Thriller|", "keywords": "", "tags_pipe": "", "overview": "The film is set in France in the 1990s, the French were defeated by the Germans early in World War II, an armistice was signed in 1940 which effectively split France into a German occupied part in the North and a semi-independent part in the south which became known as Vichy France. In reality the Vichy government was a puppet regime controlled by the Germans. Part of the agreement was that the Vichy Government would assist with the 'cleansing' of Jews from France. The Vichy government formed a police force called the Milice, who worked with the Germans...", "text_for_embedding": "The Statement (2003). Genres: Drama, Thriller. The film is set in France in the 1990s, the French were defeated by the Germans early in World War II, an armistice was signed in 1940 which effectively split France into a German occupied part in the North and a semi-independent part in the south which became known as Vichy France. In reality the Vichy government was a puppet regime controlled by the Germans. Part of the agreement was that the Vichy Government would assist with the 'cleansing' of Jews from France. The Vichy government formed a police force called the Milice, who worked with the Germans.... Tags: "} +{"id": "37028", "title": "The Magic Flute", "year": 2006, "duration_min": 133, "rating": 6.9, "genres": "Comedy, Drama, Music", "genres_pipe": "|Comedy|Drama|Music|", "keywords": "fictional place, opera, musical", "tags_pipe": "|fictional place|opera|musical|", "overview": "During World War I, in an unnamed country, a soldier named Tamino is sent by the Queen of the Night to rescue her daughter Pamina from the clutches of the supposedly evil Sarastro. But all is not as it seems.", "text_for_embedding": "The Magic Flute (2006). Genres: Comedy, Drama, Music. During World War I, in an unnamed country, a soldier named Tamino is sent by the Queen of the Night to rescue her daughter Pamina from the clutches of the supposedly evil Sarastro. But all is not as it seems.. Tags: fictional place, opera, musical"} +{"id": "14560", "title": "Paul Blart: Mall Cop", "year": 2009, "duration_min": 91, "rating": 5.2, "genres": "Action, Adventure, Comedy, Family", "genres_pipe": "|Action|Adventure|Comedy|Family|", "keywords": "security guard, duringcreditsstinger", "tags_pipe": "|security guard|duringcreditsstinger|", "overview": "Mild-mannered Paul Blart (Kevin James) has always had huge dreams of becoming a State Trooper. Until then, he patrols the local mall as a security guard. With his closely cropped moustache, personal transporter and gung-ho attitude, only Blart seems to take his job seriously. All that changes when a team of thugs raids the mall and takes hostages. Untrained, unarmed and a super-size target, Blart has to become a real cop to save the day.", "text_for_embedding": "Paul Blart: Mall Cop (2009). Genres: Action, Adventure, Comedy, Family. Mild-mannered Paul Blart (Kevin James) has always had huge dreams of becoming a State Trooper. Until then, he patrols the local mall as a security guard. With his closely cropped moustache, personal transporter and gung-ho attitude, only Blart seems to take his job seriously. All that changes when a team of thugs raids the mall and takes hostages. Untrained, unarmed and a super-size target, Blart has to become a real cop to save the day.. Tags: security guard, duringcreditsstinger"} +{"id": "10330", "title": "Freaky Friday", "year": 2003, "duration_min": 97, "rating": 6.0, "genres": "Comedy", "genres_pipe": "|Comedy|", "keywords": "single parent, brother sister relationship, mistake in person, bride, talk show, body exchange, motherly love, high school, mother daughter relationship, wedding, psychiatrist, body-swap, music band, teen comedy, child as an adult", "tags_pipe": "|single parent|brother sister relationship|mistake in person|bride|talk show|body exchange|motherly love|high school|mother daughter relationship|wedding|psychiatrist|body-swap|music band|teen comedy|child as an adult|", "overview": "Mother and daughter bicker over everything -- what Anna wears, whom she likes and what she wants to do when she's older. In turn, Anna detests Tess's fiancé. When a magical fortune cookie switches their personalities, they each get a peek at how the other person feels, thinks and lives.", "text_for_embedding": "Freaky Friday (2003). Genres: Comedy. Mother and daughter bicker over everything -- what Anna wears, whom she likes and what she wants to do when she's older. In turn, Anna detests Tess's fiancé. When a magical fortune cookie switches their personalities, they each get a peek at how the other person feels, thinks and lives.. Tags: single parent, brother sister relationship, mistake in person, bride, talk show, body exchange, motherly love, high school, mother daughter relationship, wedding, psychiatrist, body-swap, music band, teen comedy, child as an adult"} +{"id": "6957", "title": "The 40 Year Old Virgin", "year": 2005, "duration_min": 116, "rating": 6.2, "genres": "Comedy, Romance", "genres_pipe": "|Comedy|Romance|", "keywords": "first time, virgin", "tags_pipe": "|first time|virgin|", "overview": "Andy Stitzer has a pleasant life with a nice apartment and a job stamping invoices at an electronics store. But at age 40, there's one thing Andy hasn't done, and it's really bothering his sex-obsessed male co-workers: Andy is still a virgin. Determined to help Andy get laid, the guys make it their mission to de-virginize him. But it all seems hopeless until Andy meets small business owner Trish, a single mom.", "text_for_embedding": "The 40 Year Old Virgin (2005). Genres: Comedy, Romance. Andy Stitzer has a pleasant life with a nice apartment and a job stamping invoices at an electronics store. But at age 40, there's one thing Andy hasn't done, and it's really bothering his sex-obsessed male co-workers: Andy is still a virgin. Determined to help Andy get laid, the guys make it their mission to de-virginize him. But it all seems hopeless until Andy meets small business owner Trish, a single mom.. Tags: first time, virgin"} +{"id": "1934", "title": "Shakespeare in Love", "year": 1998, "duration_min": 122, "rating": 6.8, "genres": "Romance, History", "genres_pipe": "|Romance|History|", "keywords": "shakespeare, love of one's life, oscar award, theatre play, theatre group, writer's block, theatre milieu, author, speculative, false history", "tags_pipe": "|shakespeare|love of one's life|oscar award|theatre play|theatre group|writer's block|theatre milieu|author|speculative|false history|", "overview": "Young Shakespeare is forced to stage his latest comedy, \"Romeo and Ethel, the Pirate's Daughter,\" before it's even written. When a lovely noblewoman auditions for a role, they fall into forbidden love -- and his play finds a new life (and title). As their relationship progresses, Shakespeare's comedy soon transforms into tragedy.", "text_for_embedding": "Shakespeare in Love (1998). Genres: Romance, History. Young Shakespeare is forced to stage his latest comedy, \"Romeo and Ethel, the Pirate's Daughter,\" before it's even written. When a lovely noblewoman auditions for a role, they fall into forbidden love -- and his play finds a new life (and title). As their relationship progresses, Shakespeare's comedy soon transforms into tragedy.. Tags: shakespeare, love of one's life, oscar award, theatre play, theatre group, writer's block, theatre milieu, author, speculative, false history"} +{"id": "169917", "title": "A Walk Among the Tombstones", "year": 2014, "duration_min": 113, "rating": 6.2, "genres": "Crime, Drama, Mystery, Thriller", "genres_pipe": "|Crime|Drama|Mystery|Thriller|", "keywords": "based on novel, murder, mafia, private investigator, new york city, alcoholic, kingpin, wife murder, matt scudder", "tags_pipe": "|based on novel|murder|mafia|private investigator|new york city|alcoholic|kingpin|wife murder|matt scudder|", "overview": "Private investigator Matthew Scudder is hired by a drug kingpin to find out who kidnapped and murdered his wife.", "text_for_embedding": "A Walk Among the Tombstones (2014). Genres: Crime, Drama, Mystery, Thriller. Private investigator Matthew Scudder is hired by a drug kingpin to find out who kidnapped and murdered his wife.. Tags: based on novel, murder, mafia, private investigator, new york city, alcoholic, kingpin, wife murder, matt scudder"} +{"id": "951", "title": "Kindergarten Cop", "year": 1990, "duration_min": 111, "rating": 5.8, "genres": "Comedy", "genres_pipe": "|Comedy|", "keywords": "crime fighter, cook, drug dealer, dying and death, kindergarten, kiss, police, teacher, children education", "tags_pipe": "|crime fighter|cook|drug dealer|dying and death|kindergarten|kiss|police|teacher|children education|", "overview": "Hard-edged cop John Kimble gets more than he bargained for when he goes undercover as a kindergarten teacher to get the goods on a brutal drug lord while at the same time protecting the man's young son. Pitted against a class of boisterous moppets whose antics try his patience and test his mettle, Kimble may have met his match … in more ways than one.", "text_for_embedding": "Kindergarten Cop (1990). Genres: Comedy. Hard-edged cop John Kimble gets more than he bargained for when he goes undercover as a kindergarten teacher to get the goods on a brutal drug lord while at the same time protecting the man's young son. Pitted against a class of boisterous moppets whose antics try his patience and test his mettle, Kimble may have met his match … in more ways than one.. Tags: crime fighter, cook, drug dealer, dying and death, kindergarten, kiss, police, teacher, children education"} +{"id": "10189", "title": "Pineapple Express", "year": 2008, "duration_min": 111, "rating": 6.6, "genres": "Action, Comedy", "genres_pipe": "|Action|Comedy|", "keywords": "smoking, marijuana, stoner, roach, lollipop, painting toenails, radio call in show, driving through a wall, seed, reference to pandora's box", "tags_pipe": "|smoking|marijuana|stoner|roach|lollipop|painting toenails|radio call in show|driving through a wall|seed|reference to pandora's box|", "overview": "A stoner and his dealer are forced to go on the run from the police after the pothead witnesses a cop commit a murder.", "text_for_embedding": "Pineapple Express (2008). Genres: Action, Comedy. A stoner and his dealer are forced to go on the run from the police after the pothead witnesses a cop commit a murder.. Tags: smoking, marijuana, stoner, roach, lollipop, painting toenails, radio call in show, driving through a wall, seed, reference to pandora's box"} +{"id": "9454", "title": "Ever After: A Cinderella Story", "year": 1998, "duration_min": 121, "rating": 6.8, "genres": "Drama, Romance, Comedy", "genres_pipe": "|Drama|Romance|Comedy|", "keywords": "france, child abuse, slavery, leonardo da vinci, prince, fairy tale, royalty, orphan, evil stepmother, step siblings, 16th century, brigands, gypsies, classism, bandits", "tags_pipe": "|france|child abuse|slavery|leonardo da vinci|prince|fairy tale|royalty|orphan|evil stepmother|step siblings|16th century|brigands|gypsies|classism|bandits|", "overview": "A unique 16th century woman, Danielle possesses a love of books, and can easily quote from Sir Thomas More’s Utopia. An intriguing mix of tomboyish athleticism and physical beauty, she has more than enough charm to capture the heart of a prince ... after beaning him with an apple.", "text_for_embedding": "Ever After: A Cinderella Story (1998). Genres: Drama, Romance, Comedy. A unique 16th century woman, Danielle possesses a love of books, and can easily quote from Sir Thomas More’s Utopia. An intriguing mix of tomboyish athleticism and physical beauty, she has more than enough charm to capture the heart of a prince ... after beaning him with an apple.. Tags: france, child abuse, slavery, leonardo da vinci, prince, fairy tale, royalty, orphan, evil stepmother, step siblings, 16th century, brigands, gypsies, classism, bandits"} +{"id": "2055", "title": "Open Range", "year": 2003, "duration_min": 139, "rating": 7.0, "genres": "Western", "genres_pipe": "|Western|", "keywords": "horse, beef, ranger", "tags_pipe": "|horse|beef|ranger|", "overview": "A former gunslinger is forced to take up arms again when he and his cattle crew are threatened by a corrupt lawman.", "text_for_embedding": "Open Range (2003). Genres: Western. A former gunslinger is forced to take up arms again when he and his cattle crew are threatened by a corrupt lawman.. Tags: horse, beef, ranger"} +{"id": "1551", "title": "Flatliners", "year": 1990, "duration_min": 115, "rating": 6.3, "genres": "Drama, Horror, Science Fiction, Thriller", "genres_pipe": "|Drama|Horror|Science Fiction|Thriller|", "keywords": "life and death, afterlife, swing, memory, medical student, confetti", "tags_pipe": "|life and death|afterlife|swing|memory|medical student|confetti|", "overview": "Five medical students want to find out if there is life after death. They plan to stop one of their hearts for a few seconds, thus simulating death, and then bring the person back to life. A science fiction thriller from the early 1990's with a star studded cast.", "text_for_embedding": "Flatliners (1990). Genres: Drama, Horror, Science Fiction, Thriller. Five medical students want to find out if there is life after death. They plan to stop one of their hearts for a few seconds, thus simulating death, and then bring the person back to life. A science fiction thriller from the early 1990's with a star studded cast.. Tags: life and death, afterlife, swing, memory, medical student, confetti"} +{"id": "5902", "title": "A Bridge Too Far", "year": 1977, "duration_min": 175, "rating": 6.9, "genres": "Drama, History, War", "genres_pipe": "|Drama|History|War|", "keywords": "netherlands, world war ii, panzer, british soldier", "tags_pipe": "|netherlands|world war ii|panzer|british soldier|", "overview": "Tells the story of operation Market Garden. A failed attempt by the allies in the latter stages of WWII to end the war quickly by securing three bridges in Holland allowing access over the Rhine into Germany. A combination of poor allied intelligence and the presence of two crack German panzer divisions meant that the final part of this operation (the bridge in Arnhem over the Rhine) was doomed to failure.", "text_for_embedding": "A Bridge Too Far (1977). Genres: Drama, History, War. Tells the story of operation Market Garden. A failed attempt by the allies in the latter stages of WWII to end the war quickly by securing three bridges in Holland allowing access over the Rhine into Germany. A combination of poor allied intelligence and the presence of two crack German panzer divisions meant that the final part of this operation (the bridge in Arnhem over the Rhine) was doomed to failure.. Tags: netherlands, world war ii, panzer, british soldier"} +{"id": "11460", "title": "Red Eye", "year": 2005, "duration_min": 85, "rating": 6.2, "genres": "Horror, Thriller", "genres_pipe": "|Horror|Thriller|", "keywords": "hostage, menace, hitman, airplane", "tags_pipe": "|hostage|menace|hitman|airplane|", "overview": "After attending the funeral of her grandmother in Dallas, the Lux Atlantic Hotel manager Lisa is waiting for a flight to Miami. Due to the bad weather and consequent flight delay, she meets in the airport bar Jack Rippner, who is also in the waiting list. They sit together in the plane, and Jack reveals that he wants Lisa to change the room in Lux of an important American politician to facilitate a terrorist attempt against him. Otherwise, Lisa's father will be killed by a hit man. Lisa has to decide what to do with the menacing man at her side.", "text_for_embedding": "Red Eye (2005). Genres: Horror, Thriller. After attending the funeral of her grandmother in Dallas, the Lux Atlantic Hotel manager Lisa is waiting for a flight to Miami. Due to the bad weather and consequent flight delay, she meets in the airport bar Jack Rippner, who is also in the waiting list. They sit together in the plane, and Jack reveals that he wants Lisa to change the room in Lux of an important American politician to facilitate a terrorist attempt against him. Otherwise, Lisa's father will be killed by a hit man. Lisa has to decide what to do with the menacing man at her side.. Tags: hostage, menace, hitman, airplane"} +{"id": "9358", "title": "Final Destination 2", "year": 2003, "duration_min": 90, "rating": 5.9, "genres": "Horror, Mystery", "genres_pipe": "|Horror|Mystery|", "keywords": "ambulance, premonition, hospital", "tags_pipe": "|ambulance|premonition|hospital|", "overview": "When Kimberly has a violent premonition of a highway pileup she blocks the freeway, keeping a few others meant to die, safe...Or are they? The survivors mysteriously start dying and it's up to Kimberly to stop it before she's next.", "text_for_embedding": "Final Destination 2 (2003). Genres: Horror, Mystery. When Kimberly has a violent premonition of a highway pileup she blocks the freeway, keeping a few others meant to die, safe...Or are they? The survivors mysteriously start dying and it's up to Kimberly to stop it before she's next.. Tags: ambulance, premonition, hospital"} +{"id": "134", "title": "O Brother, Where Art Thou?", "year": 2000, "duration_min": 106, "rating": 7.3, "genres": "Action, Adventure, Comedy", "genres_pipe": "|Action|Adventure|Comedy|", "keywords": "prophecy, southern usa, music record, country music, mississippi, seduction, musical, fraud", "tags_pipe": "|prophecy|southern usa|music record|country music|mississippi|seduction|musical|fraud|", "overview": "In the deep south during the 1930s, three escaped convicts search for hidden treasure while a relentless lawman pursues them. On their journey they come across many comical characters and incredible situations. Based upon Homer's 'Odyssey'.", "text_for_embedding": "O Brother, Where Art Thou? (2000). Genres: Action, Adventure, Comedy. In the deep south during the 1930s, three escaped convicts search for hidden treasure while a relentless lawman pursues them. On their journey they come across many comical characters and incredible situations. Based upon Homer's 'Odyssey'.. Tags: prophecy, southern usa, music record, country music, mississippi, seduction, musical, fraud"} +{"id": "22894", "title": "Legion", "year": 2010, "duration_min": 100, "rating": 5.2, "genres": "Horror", "genres_pipe": "|Horror|", "keywords": "angel, diner, religion, apocalypse, demon, desert, angels", "tags_pipe": "|angel|diner|religion|apocalypse|demon|desert|angels|", "overview": "When God loses faith in humankind, he sends his legion of angels to bring on the Apocalypse. Humanity's only hope for survival lies in a group of strangers trapped in an out-of-the-way, desert diner with the Archangel Michael.", "text_for_embedding": "Legion (2010). Genres: Horror. When God loses faith in humankind, he sends his legion of angels to bring on the Apocalypse. Humanity's only hope for survival lies in a group of strangers trapped in an out-of-the-way, desert diner with the Archangel Michael.. Tags: angel, diner, religion, apocalypse, demon, desert, angels"} +{"id": "134374", "title": "Pain & Gain", "year": 2013, "duration_min": 130, "rating": 6.1, "genres": "Thriller, Crime, Action", "genres_pipe": "|Thriller|Crime|Action|", "keywords": "miami, scam, crime, weight lifting, weightlifting, duringcreditsstinger", "tags_pipe": "|miami|scam|crime|weight lifting|weightlifting|duringcreditsstinger|", "overview": "Daniel Lugo, manager of the Sun Gym in 1990s Miami, decides that there is only one way to achieve his version of the American dream: extortion. To achieve his goal, he recruits musclemen Paul and Adrian as accomplices. After several failed attempts, they abduct rich businessman Victor Kershaw and convince him to sign over all his assets to them. But when Kershaw makes it out alive, authorities are reluctant to believe his story.", "text_for_embedding": "Pain & Gain (2013). Genres: Thriller, Crime, Action. Daniel Lugo, manager of the Sun Gym in 1990s Miami, decides that there is only one way to achieve his version of the American dream: extortion. To achieve his goal, he recruits musclemen Paul and Adrian as accomplices. After several failed attempts, they abduct rich businessman Victor Kershaw and convince him to sign over all his assets to them. But when Kershaw makes it out alive, authorities are reluctant to believe his story.. Tags: miami, scam, crime, weight lifting, weightlifting, duringcreditsstinger"} +{"id": "1901", "title": "In Good Company", "year": 2004, "duration_min": 109, "rating": 5.9, "genres": "Comedy, Drama, Romance", "genres_pipe": "|Comedy|Drama|Romance|", "keywords": "midlife crisis, daughter, bad boss", "tags_pipe": "|midlife crisis|daughter|bad boss|", "overview": "Dan Foreman is a seasoned advertisement sales executive at a high-ranking publication when a corporate takeover results in him being placed under naive supervisor Carter Duryea, who is half his age. Matters are made worse when Dan's new supervisor becomes romantically involved with his daughter an 18 year-old college student Alex.", "text_for_embedding": "In Good Company (2004). Genres: Comedy, Drama, Romance. Dan Foreman is a seasoned advertisement sales executive at a high-ranking publication when a corporate takeover results in him being placed under naive supervisor Carter Duryea, who is half his age. Matters are made worse when Dan's new supervisor becomes romantically involved with his daughter an 18 year-old college student Alex.. Tags: midlife crisis, daughter, bad boss"} +{"id": "15028", "title": "Clockstoppers", "year": 2002, "duration_min": 94, "rating": 4.9, "genres": "Adventure, Family, Science Fiction, Thriller", "genres_pipe": "|Adventure|Family|Science Fiction|Thriller|", "keywords": "time, airplane, youth, wristwatch", "tags_pipe": "|time|airplane|youth|wristwatch|", "overview": "Until now, Zak Gibbs' greatest challenge has been to find a way to buy a car. But when he discovers an odd wristwatch amidst his father's various inventions and slips it on -- something very strange happens. The world around him seems to come to a stop, everything and everybody frozen in time. Zak quickly learns how to manipulate the device and he and his quick-witted and beautiful new friend, Francesca, start to have some real fun.", "text_for_embedding": "Clockstoppers (2002). Genres: Adventure, Family, Science Fiction, Thriller. Until now, Zak Gibbs' greatest challenge has been to find a way to buy a car. But when he discovers an odd wristwatch amidst his father's various inventions and slips it on -- something very strange happens. The world around him seems to come to a stop, everything and everybody frozen in time. Zak quickly learns how to manipulate the device and he and his quick-witted and beautiful new friend, Francesca, start to have some real fun.. Tags: time, airplane, youth, wristwatch"} +{"id": "11509", "title": "Silverado", "year": 1985, "duration_min": 127, "rating": 7.1, "genres": "Action, Crime, Drama, Western", "genres_pipe": "|Action|Crime|Drama|Western|", "keywords": "sheriff, fight, horse, male friendship, two guns belt", "tags_pipe": "|sheriff|fight|horse|male friendship|two guns belt|", "overview": "Four unwitting heroes cross paths on their journey to the sleepy town of Silverado. Little do they know the town where their family and friends reside has been taken over by a corrupt sheriff and a murderous posse. It's up to the sharp-shooting foursome to save the day, but first they have to break each other out of jail, and learn who their real friends are.", "text_for_embedding": "Silverado (1985). Genres: Action, Crime, Drama, Western. Four unwitting heroes cross paths on their journey to the sleepy town of Silverado. Little do they know the town where their family and friends reside has been taken over by a corrupt sheriff and a murderous posse. It's up to the sharp-shooting foursome to save the day, but first they have to break each other out of jail, and learn who their real friends are.. Tags: sheriff, fight, horse, male friendship, two guns belt"} +{"id": "7445", "title": "Brothers", "year": 2009, "duration_min": 104, "rating": 6.8, "genres": "Drama, Thriller, War", "genres_pipe": "|Drama|Thriller|War|", "keywords": "brother brother relationship, brother-in-law, loss of husband, war in afghanistan, sister-in-law", "tags_pipe": "|brother brother relationship|brother-in-law|loss of husband|war in afghanistan|sister-in-law|", "overview": "When his helicopter goes down during his fourth tour of duty in Afghanistan, Marine Sam Cahill is presumed dead. Back home, brother Tommy steps in to look over Sam’s wife, Grace, and two children. Sam’s surprise homecoming triggers domestic mayhem.", "text_for_embedding": "Brothers (2009). Genres: Drama, Thriller, War. When his helicopter goes down during his fourth tour of duty in Afghanistan, Marine Sam Cahill is presumed dead. Back home, brother Tommy steps in to look over Sam’s wife, Grace, and two children. Sam’s surprise homecoming triggers domestic mayhem.. Tags: brother brother relationship, brother-in-law, loss of husband, war in afghanistan, sister-in-law"} +{"id": "17047", "title": "Agent Cody Banks 2: Destination London", "year": 2004, "duration_min": 100, "rating": 5.2, "genres": "Comedy", "genres_pipe": "|Comedy|", "keywords": "london england, cia, teenage hero, teen spy, cia agent", "tags_pipe": "|london england|cia|teenage hero|teen spy|cia agent|", "overview": "With all-new gadgets, high-flying action, exciting chases and a wisecracking new handler, Derek (Anthony Anderson), Cody has to retrieve the device before the world's leaders fall under the evil control of a diabolical villain.", "text_for_embedding": "Agent Cody Banks 2: Destination London (2004). Genres: Comedy. With all-new gadgets, high-flying action, exciting chases and a wisecracking new handler, Derek (Anthony Anderson), Cody has to retrieve the device before the world's leaders fall under the evil control of a diabolical villain.. Tags: london england, cia, teenage hero, teen spy, cia agent"} +{"id": "62838", "title": "New Year's Eve", "year": 2011, "duration_min": 118, "rating": 5.7, "genres": "Comedy, Romance", "genres_pipe": "|Comedy|Romance|", "keywords": "new year's eve, illustrator, caterer, pedicab, ticket, videoconferencing, multiple storylines, duringcreditsstinger", "tags_pipe": "|new year's eve|illustrator|caterer|pedicab|ticket|videoconferencing|multiple storylines|duringcreditsstinger|", "overview": "The lives of several couples and singles in New York intertwine over the course of New Year's Eve.", "text_for_embedding": "New Year's Eve (2011). Genres: Comedy, Romance. The lives of several couples and singles in New York intertwine over the course of New Year's Eve.. Tags: new year's eve, illustrator, caterer, pedicab, ticket, videoconferencing, multiple storylines, duringcreditsstinger"} +{"id": "2057", "title": "Original Sin", "year": 2001, "duration_min": 118, "rating": 5.8, "genres": "Drama, Thriller, Mystery, Romance", "genres_pipe": "|Drama|Thriller|Mystery|Romance|", "keywords": "women, sex, cuba, eroticism, lover (female), passion, coffee grower, sin, denunciation", "tags_pipe": "|women|sex|cuba|eroticism|lover (female)|passion|coffee grower|sin|denunciation|", "overview": "A young man is plunged into a life of subterfuge, deceit and mistaken identity in pursuit of a femme fatale whose heart is never quite within his grasp", "text_for_embedding": "Original Sin (2001). Genres: Drama, Thriller, Mystery, Romance. A young man is plunged into a life of subterfuge, deceit and mistaken identity in pursuit of a femme fatale whose heart is never quite within his grasp. Tags: women, sex, cuba, eroticism, lover (female), passion, coffee grower, sin, denunciation"} +{"id": "70436", "title": "The Raven", "year": 2012, "duration_min": 111, "rating": 6.1, "genres": "Crime, Thriller, Mystery", "genres_pipe": "|Crime|Thriller|Mystery|", "keywords": "poison, blackmail, masked ball, historical figure, buried alive, serial killer, deadline, edgar allan poe, newspaper review, baltimore maryland, newspaper office, hard times, life imitates art, pendulum", "tags_pipe": "|poison|blackmail|masked ball|historical figure|buried alive|serial killer|deadline|edgar allan poe|newspaper review|baltimore maryland|newspaper office|hard times|life imitates art|pendulum|", "overview": "A fictionalized account of the last days of Edgar Allan Poe's life, in which the poet is in pursuit of a serial killer whose murders mirror those in the writer's stories.", "text_for_embedding": "The Raven (2012). Genres: Crime, Thriller, Mystery. A fictionalized account of the last days of Edgar Allan Poe's life, in which the poet is in pursuit of a serial killer whose murders mirror those in the writer's stories.. Tags: poison, blackmail, masked ball, historical figure, buried alive, serial killer, deadline, edgar allan poe, newspaper review, baltimore maryland, newspaper office, hard times, life imitates art, pendulum"} +{"id": "16784", "title": "Welcome to Mooseport", "year": 2004, "duration_min": 110, "rating": 4.8, "genres": "Comedy", "genres_pipe": "|Comedy|", "keywords": "", "tags_pipe": "", "overview": "A US president (Gene Hackman) who has retired after two terms in office returns to his hometown of Mooseport, Maine and decides to run for Mayor against another local candidate (Ray Romano).", "text_for_embedding": "Welcome to Mooseport (2004). Genres: Comedy. A US president (Gene Hackman) who has retired after two terms in office returns to his hometown of Mooseport, Maine and decides to run for Mayor against another local candidate (Ray Romano).. Tags: "} +{"id": "8011", "title": "Highlander: The Final Dimension", "year": 1994, "duration_min": 99, "rating": 4.5, "genres": "Action, Fantasy, Science Fiction", "genres_pipe": "|Action|Fantasy|Science Fiction|", "keywords": "japan, new york, scotland, morocco, good and bad", "tags_pipe": "|japan|new york|scotland|morocco|good and bad|", "overview": "Starts off in the 15th century, with Connor McLeod (Christopher Lambert) training with another immortal swordsman, the Japanese sorcerer Nakano (Mako). When an evil immortal named Kane (Mario Van Peebles) kills the old wizard, the resulting battle leaves him buried in an underground cave. When Kane resurfaces in the 20th century to create havoc, it's up to McLeod to stop him.", "text_for_embedding": "Highlander: The Final Dimension (1994). Genres: Action, Fantasy, Science Fiction. Starts off in the 15th century, with Connor McLeod (Christopher Lambert) training with another immortal swordsman, the Japanese sorcerer Nakano (Mako). When an evil immortal named Kane (Mario Van Peebles) kills the old wizard, the resulting battle leaves him buried in an underground cave. When Kane resurfaces in the 20th century to create havoc, it's up to McLeod to stop him.. Tags: japan, new york, scotland, morocco, good and bad"} +{"id": "31640", "title": "Blood and Wine", "year": 1996, "duration_min": 101, "rating": 5.5, "genres": "Crime, Drama, Thriller", "genres_pipe": "|Crime|Drama|Thriller|", "keywords": "robbery, gun, fight, love, murder, heist, theft, diamond, neo-noir", "tags_pipe": "|robbery|gun|fight|love|murder|heist|theft|diamond|neo-noir|", "overview": "A man who has failed as a father and husband commits a heist to make money for his fledging business, but things become complicated when his wife interferes.", "text_for_embedding": "Blood and Wine (1996). Genres: Crime, Drama, Thriller. A man who has failed as a father and husband commits a heist to make money for his fledging business, but things become complicated when his wife interferes.. Tags: robbery, gun, fight, love, murder, heist, theft, diamond, neo-noir"} +{"id": "9092", "title": "Snow White: A Tale of Terror", "year": 1997, "duration_min": 100, "rating": 6.0, "genres": "Fantasy, Horror", "genres_pipe": "|Fantasy|Horror|", "keywords": "jealousy, toxication, castle, step mother, fairy-tale figure, apple, middle ages, mirror, nobility", "tags_pipe": "|jealousy|toxication|castle|step mother|fairy-tale figure|apple|middle ages|mirror|nobility|", "overview": "Based somewhat more authentically on the Grimm Brothers' story of a young woman who is unliked by her stepmother, the film includes the talking mirror, a poisoned apple, and some ruffian gold (not diamond) miners (and they aren't dwarfs or cute). It takes place at the time of the Crusades, and depicts the attitudes of the wealthy and the peasant classes toward one another.", "text_for_embedding": "Snow White: A Tale of Terror (1997). Genres: Fantasy, Horror. Based somewhat more authentically on the Grimm Brothers' story of a young woman who is unliked by her stepmother, the film includes the talking mirror, a poisoned apple, and some ruffian gold (not diamond) miners (and they aren't dwarfs or cute). It takes place at the time of the Crusades, and depicts the attitudes of the wealthy and the peasant classes toward one another.. Tags: jealousy, toxication, castle, step mother, fairy-tale figure, apple, middle ages, mirror, nobility"} +{"id": "2779", "title": "The Curse of the Jade Scorpion", "year": 2001, "duration_min": 103, "rating": 6.5, "genres": "Comedy, Crime, Mystery, Romance, Thriller", "genres_pipe": "|Comedy|Crime|Mystery|Romance|Thriller|", "keywords": "hypnosis, independent film", "tags_pipe": "|hypnosis|independent film|", "overview": "CW Briggs is a veteran insurance investigator, with many successes. Betty Ann Fitzgerald is a new employee in the company he works for, with the task of reorganizing the office. They don't like each other - or at least that's what they think. During a night out with the rest of the office employees, they go to watch Voltan, a magician who secretly hypnotizes both of them.", "text_for_embedding": "The Curse of the Jade Scorpion (2001). Genres: Comedy, Crime, Mystery, Romance, Thriller. CW Briggs is a veteran insurance investigator, with many successes. Betty Ann Fitzgerald is a new employee in the company he works for, with the task of reorganizing the office. They don't like each other - or at least that's what they think. During a night out with the rest of the office employees, they go to watch Voltan, a magician who secretly hypnotizes both of them.. Tags: hypnosis, independent film"} +{"id": "316002", "title": "Accidental Love", "year": 2015, "duration_min": 100, "rating": 3.9, "genres": "Romance, Comedy", "genres_pipe": "|Romance|Comedy|", "keywords": "one-night stand, romantic comedy, accidental love", "tags_pipe": "|one-night stand|romantic comedy|accidental love|", "overview": "A small town waitress gets a nail accidentally lodged in her head causing unpredictable behavior that leads her to Washington, DC. Sparks fly when she meets a clueless young senator who takes up her cause - but what happens when love interferes with what you stand for?", "text_for_embedding": "Accidental Love (2015). Genres: Romance, Comedy. A small town waitress gets a nail accidentally lodged in her head causing unpredictable behavior that leads her to Washington, DC. Sparks fly when she meets a clueless young senator who takes up her cause - but what happens when love interferes with what you stand for?. Tags: one-night stand, romantic comedy, accidental love"} +{"id": "36355", "title": "Flipper", "year": 1996, "duration_min": 95, "rating": 5.3, "genres": "Adventure, Family", "genres_pipe": "|Adventure|Family|", "keywords": "dolphin, florida, florida keys, summer", "tags_pipe": "|dolphin|florida|florida keys|summer|", "overview": "Sandy Ricks is sent by his mom to Coral Key, a rustic island in the Florida keys, to spend the summer with his uncle Porter Ricks. Sandy dislikes everything about his new environment until a new friend comes into his life, a dolphin named Flipper, that brings uncle and nephew together and leads Sandy on the summer adventure of a lifetime.", "text_for_embedding": "Flipper (1996). Genres: Adventure, Family. Sandy Ricks is sent by his mom to Coral Key, a rustic island in the Florida keys, to spend the summer with his uncle Porter Ricks. Sandy dislikes everything about his new environment until a new friend comes into his life, a dolphin named Flipper, that brings uncle and nephew together and leads Sandy on the summer adventure of a lifetime.. Tags: dolphin, florida, florida keys, summer"} +{"id": "238615", "title": "Self/less", "year": 2015, "duration_min": 116, "rating": 6.3, "genres": "Science Fiction, Mystery, Thriller", "genres_pipe": "|Science Fiction|Mystery|Thriller|", "keywords": "lie, immortality, terminal illness, laboratory, cancer, doctor, body-swap, death, rich, false memory, soul transference, rich man, mind transfer, host body, body snatching", "tags_pipe": "|lie|immortality|terminal illness|laboratory|cancer|doctor|body-swap|death|rich|false memory|soul transference|rich man|mind transfer|host body|body snatching|", "overview": "An extremely wealthy elderly man dying from cancer undergoes a radical medical procedure that transfers his consciousness to the body of a healthy young man but everything may not be as good as it seems when he starts to uncover the mystery of the body's origins and the secret organization that will kill to keep its secrets.", "text_for_embedding": "Self/less (2015). Genres: Science Fiction, Mystery, Thriller. An extremely wealthy elderly man dying from cancer undergoes a radical medical procedure that transfers his consciousness to the body of a healthy young man but everything may not be as good as it seems when he starts to uncover the mystery of the body's origins and the secret organization that will kill to keep its secrets.. Tags: lie, immortality, terminal illness, laboratory, cancer, doctor, body-swap, death, rich, false memory, soul transference, rich man, mind transfer, host body, body snatching"} +{"id": "1985", "title": "The Constant Gardener", "year": 2005, "duration_min": 129, "rating": 6.8, "genres": "Drama, Mystery, Thriller", "genres_pipe": "|Drama|Mystery|Thriller|", "keywords": "aids, diplomat, nairobi, politician, pharmaceutical industry, cancer, morgue, genocide in rwanda", "tags_pipe": "|aids|diplomat|nairobi|politician|pharmaceutical industry|cancer|morgue|genocide in rwanda|", "overview": "Justin Quayle is a low-level British diplomat who has always gone about his work very quietly, not causing any problems. But after his radical wife Tessa is killed he becomes determined to find out why, thrusting himself into the middle of a very dangerous conspiracy.", "text_for_embedding": "The Constant Gardener (2005). Genres: Drama, Mystery, Thriller. Justin Quayle is a low-level British diplomat who has always gone about his work very quietly, not causing any problems. But after his radical wife Tessa is killed he becomes determined to find out why, thrusting himself into the middle of a very dangerous conspiracy.. Tags: aids, diplomat, nairobi, politician, pharmaceutical industry, cancer, morgue, genocide in rwanda"} +{"id": "615", "title": "The Passion of the Christ", "year": 2004, "duration_min": 127, "rating": 6.9, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "christianity, jewry, roman empire, jesus christ, suffering, apostle, last supper, roman, bible, mission, torture", "tags_pipe": "|christianity|jewry|roman empire|jesus christ|suffering|apostle|last supper|roman|bible|mission|torture|", "overview": "\"The Passion of the Christ\" is a film about the last 12 hours in the life of Jesus. Director Mel Gibson received much criticism from critics and audiences for his explicit depiction of and focus on violence and on christs suffering, especially on the part of the jewish community. The films languages are Arabic, Latin and Hebrew and its actors are laymen which was controversially received as well.", "text_for_embedding": "The Passion of the Christ (2004). Genres: Drama. \"The Passion of the Christ\" is a film about the last 12 hours in the life of Jesus. Director Mel Gibson received much criticism from critics and audiences for his explicit depiction of and focus on violence and on christs suffering, especially on the part of the jewish community. The films languages are Arabic, Latin and Hebrew and its actors are laymen which was controversially received as well.. Tags: christianity, jewry, roman empire, jesus christ, suffering, apostle, last supper, roman, bible, mission, torture"} +{"id": "788", "title": "Mrs. Doubtfire", "year": 1993, "duration_min": 125, "rating": 7.0, "genres": "Comedy, Drama, Family", "genres_pipe": "|Comedy|Drama|Family|", "keywords": "san francisco, parents kids relationship, restaurant, nanny, mask, custody battle, fake identity", "tags_pipe": "|san francisco|parents kids relationship|restaurant|nanny|mask|custody battle|fake identity|", "overview": "Loving but irresponsible dad Daniel Hillard, estranged from his exasperated spouse, is crushed by a court order allowing only weekly visits with his kids. When Daniel learns his ex needs a housekeeper, he gets the job -- disguised as an English nanny. Soon he becomes not only his children's best pal but the kind of parent he should have been from the start.", "text_for_embedding": "Mrs. Doubtfire (1993). Genres: Comedy, Drama, Family. Loving but irresponsible dad Daniel Hillard, estranged from his exasperated spouse, is crushed by a court order allowing only weekly visits with his kids. When Daniel learns his ex needs a housekeeper, he gets the job -- disguised as an English nanny. Soon he becomes not only his children's best pal but the kind of parent he should have been from the start.. Tags: san francisco, parents kids relationship, restaurant, nanny, mask, custody battle, fake identity"} +{"id": "380", "title": "Rain Man", "year": 1988, "duration_min": 133, "rating": 7.6, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "individual, mentally disabled, autism, loss of father, yuppie, car dealer, egocentrism, travel, convertible, psychiatrist, duringcreditsstinger, savant", "tags_pipe": "|individual|mentally disabled|autism|loss of father|yuppie|car dealer|egocentrism|travel|convertible|psychiatrist|duringcreditsstinger|savant|", "overview": "Selfish yuppie Charlie Babbitt's father left a fortune to his savant brother Raymond and a pittance to Charlie; they travel cross-country.", "text_for_embedding": "Rain Man (1988). Genres: Drama. Selfish yuppie Charlie Babbitt's father left a fortune to his savant brother Raymond and a pittance to Charlie; they travel cross-country.. Tags: individual, mentally disabled, autism, loss of father, yuppie, car dealer, egocentrism, travel, convertible, psychiatrist, duringcreditsstinger, savant"} +{"id": "13223", "title": "Gran Torino", "year": 2008, "duration_min": 116, "rating": 7.8, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "rape, war veteran, immigration, priest, gang, old man, teenager, gangster, detroit, widower, car, hmong", "tags_pipe": "|rape|war veteran|immigration|priest|gang|old man|teenager|gangster|detroit|widower|car|hmong|", "overview": "Walt Kowalski is a widower who holds onto his prejudices despite the changes in his Michigan neighborhood and the world around him. Kowalski is a grumpy, tough-minded, unhappy old man who can't get along with either his kids or his neighbors. He is a Korean War veteran whose prize possession is a 1972 Gran Torino he keeps in mint condition. When his neighbor Thao, a young Hmong teenager under pressure from his gang member cousin, tries to steal his Gran Torino, Kowalski sets out to reform the youth. Drawn against his will into the life of Thao's family, Kowalski is soon taking steps to protect them from the gangs that infest their neighborhood.", "text_for_embedding": "Gran Torino (2008). Genres: Drama. Walt Kowalski is a widower who holds onto his prejudices despite the changes in his Michigan neighborhood and the world around him. Kowalski is a grumpy, tough-minded, unhappy old man who can't get along with either his kids or his neighbors. He is a Korean War veteran whose prize possession is a 1972 Gran Torino he keeps in mint condition. When his neighbor Thao, a young Hmong teenager under pressure from his gang member cousin, tries to steal his Gran Torino, Kowalski sets out to reform the youth. Drawn against his will into the life of Thao's family, Kowalski is soon taking steps to protect them from the gangs that infest their neighborhood.. Tags: rape, war veteran, immigration, priest, gang, old man, teenager, gangster, detroit, widower, car, hmong"} +{"id": "10523", "title": "W.", "year": 2008, "duration_min": 131, "rating": 6.1, "genres": "Drama, History", "genres_pipe": "|Drama|History|", "keywords": "usa, white house, usa president, george w. bush, president, iraq war", "tags_pipe": "|usa|white house|usa president|george w. bush|president|iraq war|", "overview": "Whether you love him or hate him, there is no question that George W. Bush is one of the most controversial public figures in recent memory. W takes viewers through Bush’s eventful life -- his struggles and triumphs, how he found both his wife and his faith, and of course the critical days leading up to Bush’s decision to invade Iraq.", "text_for_embedding": "W. (2008). Genres: Drama, History. Whether you love him or hate him, there is no question that George W. Bush is one of the most controversial public figures in recent memory. W takes viewers through Bush’s eventful life -- his struggles and triumphs, how he found both his wife and his faith, and of course the critical days leading up to Bush’s decision to invade Iraq.. Tags: usa, white house, usa president, george w. bush, president, iraq war"} +{"id": "8681", "title": "Taken", "year": 2008, "duration_min": 93, "rating": 7.2, "genres": "Action, Thriller", "genres_pipe": "|Action|Thriller|", "keywords": "paris, kidnapping, human trafficking, rescue, prostitution, albanian, missing daughter, ex cia agent", "tags_pipe": "|paris|kidnapping|human trafficking|rescue|prostitution|albanian|missing daughter|ex cia agent|", "overview": "While vacationing with a friend in Paris, an American girl is kidnapped by a gang of human traffickers intent on selling her into forced prostitution. Working against the clock, her ex-spy father must pull out all the stops to save her. But with his best years possibly behind him, the job may be more than he can handle.", "text_for_embedding": "Taken (2008). Genres: Action, Thriller. While vacationing with a friend in Paris, an American girl is kidnapped by a gang of human traffickers intent on selling her into forced prostitution. Working against the clock, her ex-spy father must pull out all the stops to save her. But with his best years possibly behind him, the job may be more than he can handle.. Tags: paris, kidnapping, human trafficking, rescue, prostitution, albanian, missing daughter, ex cia agent"} +{"id": "239571", "title": "The Best of Me", "year": 2014, "duration_min": 117, "rating": 7.2, "genres": "Drama, Romance", "genres_pipe": "|Drama|Romance|", "keywords": "high school sweetheart", "tags_pipe": "|high school sweetheart|", "overview": "A pair of former high school sweethearts reunite after many years when they return to visit their small hometown.", "text_for_embedding": "The Best of Me (2014). Genres: Drama, Romance. A pair of former high school sweethearts reunite after many years when they return to visit their small hometown.. Tags: high school sweetheart"} +{"id": "619", "title": "The Bodyguard", "year": 1992, "duration_min": 129, "rating": 6.1, "genres": "Thriller, Action, Drama, Music, Romance", "genres_pipe": "|Thriller|Action|Drama|Music|Romance|", "keywords": "sister sister relationship, anonymous letter, diva, bodyguard, oscar award, los angeles", "tags_pipe": "|sister sister relationship|anonymous letter|diva|bodyguard|oscar award|los angeles|", "overview": "A former Secret Service agent grudgingly takes an assignment to protect a pop idol who's threatened by a crazed fan. At first, the safety-obsessed bodyguard and the self-indulgent diva totally clash. But before long, all that tension sparks fireworks of another sort, and the love-averse tough guy is torn between duty and romance.", "text_for_embedding": "The Bodyguard (1992). Genres: Thriller, Action, Drama, Music, Romance. A former Secret Service agent grudgingly takes an assignment to protect a pop idol who's threatened by a crazed fan. At first, the safety-obsessed bodyguard and the self-indulgent diva totally clash. But before long, all that tension sparks fireworks of another sort, and the love-averse tough guy is torn between duty and romance.. Tags: sister sister relationship, anonymous letter, diva, bodyguard, oscar award, los angeles"} +{"id": "424", "title": "Schindler's List", "year": 1993, "duration_min": 195, "rating": 8.3, "genres": "Drama, History, War", "genres_pipe": "|Drama|History|War|", "keywords": "factory, concentration camp, hero, holocaust, world war ii, nazis, defense industry, biography, the holocaust", "tags_pipe": "|factory|concentration camp|hero|holocaust|world war ii|nazis|defense industry|biography|the holocaust|", "overview": "The true story of how businessman Oskar Schindler saved over a thousand Jewish lives from the Nazis while they worked as slaves in his factory during World War II.", "text_for_embedding": "Schindler's List (1993). Genres: Drama, History, War. The true story of how businessman Oskar Schindler saved over a thousand Jewish lives from the Nazis while they worked as slaves in his factory during World War II.. Tags: factory, concentration camp, hero, holocaust, world war ii, nazis, defense industry, biography, the holocaust"} +{"id": "50014", "title": "The Help", "year": 2011, "duration_min": 146, "rating": 7.8, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "mississippi, based on novel, exploitation, racial segregation, racism, writer, maid, moral courage, ressentiment, southern belle, racial issues, 1960s, newspaper columnist", "tags_pipe": "|mississippi|based on novel|exploitation|racial segregation|racism|writer|maid|moral courage|ressentiment|southern belle|racial issues|1960s|newspaper columnist|", "overview": "Aibileen Clark is a middle-aged African-American maid who has spent her life raising white children and has recently lost her only son; Minny Jackson is an African-American maid who has often offended her employers despite her family's struggles with money and her desperate need for jobs; and Eugenia \"Skeeter\" Phelan is a young white woman who has recently moved back home after graduating college to find out her childhood maid has mysteriously disappeared. These three stories intertwine to explain how life in Jackson, Mississippi revolves around \"the help\"; yet they are always kept at a certain distance because of racial lines.", "text_for_embedding": "The Help (2011). Genres: Drama. Aibileen Clark is a middle-aged African-American maid who has spent her life raising white children and has recently lost her only son; Minny Jackson is an African-American maid who has often offended her employers despite her family's struggles with money and her desperate need for jobs; and Eugenia \"Skeeter\" Phelan is a young white woman who has recently moved back home after graduating college to find out her childhood maid has mysteriously disappeared. These three stories intertwine to explain how life in Jackson, Mississippi revolves around \"the help\"; yet they are always kept at a certain distance because of racial lines.. Tags: mississippi, based on novel, exploitation, racial segregation, racism, writer, maid, moral courage, ressentiment, southern belle, racial issues, 1960s, newspaper columnist"} +{"id": "162903", "title": "The Fifth Estate", "year": 2013, "duration_min": 128, "rating": 5.7, "genres": "Drama, Thriller", "genres_pipe": "|Drama|Thriller|", "keywords": "journalist, biography, internet, information leak, activist", "tags_pipe": "|journalist|biography|internet|information leak|activist|", "overview": "A look at the relationship between WikiLeaks founder Julian Assange and his early supporter and eventual colleague Daniel Domscheit-Berg, and how the website's growth and influence led to an irreparable rift between the two friends.", "text_for_embedding": "The Fifth Estate (2013). Genres: Drama, Thriller. A look at the relationship between WikiLeaks founder Julian Assange and his early supporter and eventual colleague Daniel Domscheit-Berg, and how the website's growth and influence led to an irreparable rift between the two friends.. Tags: journalist, biography, internet, information leak, activist"} +{"id": "11024", "title": "Scooby-Doo 2: Monsters Unleashed", "year": 2004, "duration_min": 93, "rating": 5.4, "genres": "Mystery, Fantasy, Adventure, Comedy", "genres_pipe": "|Mystery|Fantasy|Adventure|Comedy|", "keywords": "detective, monster, engine, based on tv series, dog", "tags_pipe": "|detective|monster|engine|based on tv series|dog|", "overview": "When Mystery, Inc. are guests of honor at the grand opening of the Coolsville Museum of Criminology, a masked villain shows up and creates havoc before stealing the costumes of the gang's most notorious villains...Could it be that their nemesis, mad scientist Jonathan Jacobo has returned and is trying to recreate their deadliest foes?", "text_for_embedding": "Scooby-Doo 2: Monsters Unleashed (2004). Genres: Mystery, Fantasy, Adventure, Comedy. When Mystery, Inc. are guests of honor at the grand opening of the Coolsville Museum of Criminology, a masked villain shows up and creates havoc before stealing the costumes of the gang's most notorious villains...Could it be that their nemesis, mad scientist Jonathan Jacobo has returned and is trying to recreate their deadliest foes?. Tags: detective, monster, engine, based on tv series, dog"} +{"id": "208763", "title": "Forbidden Kingdom", "year": 2014, "duration_min": 127, "rating": 4.9, "genres": "Thriller, Adventure, Mystery, Fantasy", "genres_pipe": "|Thriller|Adventure|Mystery|Fantasy|", "keywords": "monster, mystic, church, demon, witchcraft, science, dark fantasy, 3d", "tags_pipe": "|monster|mystic|church|demon|witchcraft|science|dark fantasy|3d|", "overview": "Early 18th century. Cartographer Jonathan Green undertakes a scientific voyage from Europe to the East. Having passed through Transylvania and crossed the Carpathian Mountains, he finds himself in a small village lost in impassible woods. Nothing but chance and heavy fog could bring him to this cursed place. People who live here do not resemble any other people which the traveler saw before that. The villagers, having dug a deep moat to fend themselves from the rest of the world, share a naive belief that they could save themselves from evil, failing to understand that evil has made its nest in their souls and is waiting for an opportunity to gush out upon the world.", "text_for_embedding": "Forbidden Kingdom (2014). Genres: Thriller, Adventure, Mystery, Fantasy. Early 18th century. Cartographer Jonathan Green undertakes a scientific voyage from Europe to the East. Having passed through Transylvania and crossed the Carpathian Mountains, he finds himself in a small village lost in impassible woods. Nothing but chance and heavy fog could bring him to this cursed place. People who live here do not resemble any other people which the traveler saw before that. The villagers, having dug a deep moat to fend themselves from the rest of the world, share a naive belief that they could save themselves from evil, failing to understand that evil has made its nest in their souls and is waiting for an opportunity to gush out upon the world.. Tags: monster, mystic, church, demon, witchcraft, science, dark fantasy, 3d"} +{"id": "6466", "title": "Freddy vs. Jason", "year": 2003, "duration_min": 97, "rating": 5.8, "genres": "Horror", "genres_pipe": "|Horror|", "keywords": "murder, marijuana, teenager, bad dream", "tags_pipe": "|murder|marijuana|teenager|bad dream|", "overview": "Evil dream-demon Freddy Krueger devises a plan to manipulate the unstoppable Jason Vorhees into hacking up the teenagers of Elm Street in an effort to make people remember the name Freddy Krueger, thus freeing him from limbo.", "text_for_embedding": "Freddy vs. Jason (2003). Genres: Horror. Evil dream-demon Freddy Krueger devises a plan to manipulate the unstoppable Jason Vorhees into hacking up the teenagers of Elm Street in an effort to make people remember the name Freddy Krueger, thus freeing him from limbo.. Tags: murder, marijuana, teenager, bad dream"} +{"id": "254024", "title": "The Face of an Angel", "year": 2014, "duration_min": 100, "rating": 4.7, "genres": "Thriller, Drama", "genres_pipe": "|Thriller|Drama|", "keywords": "murder investigation", "tags_pipe": "|murder investigation|", "overview": "Both a journalist and a documentary filmmaker chase the story of a murder and its prime suspect.", "text_for_embedding": "The Face of an Angel (2014). Genres: Thriller, Drama. Both a journalist and a documentary filmmaker chase the story of a murder and its prime suspect.. Tags: murder investigation"} +{"id": "12589", "title": "Jimmy Neutron: Boy Genius", "year": 2001, "duration_min": 83, "rating": 5.6, "genres": "Action, Adventure, Animation, Comedy, Family, Fantasy, Science Fiction", "genres_pipe": "|Action|Adventure|Animation|Comedy|Family|Fantasy|Science Fiction|", "keywords": "showdown, gi, villain, genius, alien, rescue, miniaturization, robot, battle, laser gun, spear, boy genius", "tags_pipe": "|showdown|gi|villain|genius|alien|rescue|miniaturization|robot|battle|laser gun|spear|boy genius|", "overview": "Jimmy Neutron is a boy genius and way ahead of his friends, but when it comes to being cool, he's a little behind. All until one day when his parents, and parents all over Earth are kidnapped by aliens, it's up to him to lead all the children of the world to rescue their parents.", "text_for_embedding": "Jimmy Neutron: Boy Genius (2001). Genres: Action, Adventure, Animation, Comedy, Family, Fantasy, Science Fiction. Jimmy Neutron is a boy genius and way ahead of his friends, but when it comes to being cool, he's a little behind. All until one day when his parents, and parents all over Earth are kidnapped by aliens, it's up to him to lead all the children of the world to rescue their parents.. Tags: showdown, gi, villain, genius, alien, rescue, miniaturization, robot, battle, laser gun, spear, boy genius"} +{"id": "7191", "title": "Cloverfield", "year": 2008, "duration_min": 85, "rating": 6.4, "genres": "Action, Thriller, Science Fiction", "genres_pipe": "|Action|Thriller|Science Fiction|", "keywords": "helicopter, monster, skyscraper, fight, camcorder, panic, chaos, supernatural, quarantine, friends, alien, rescue, survival, disaster, escape", "tags_pipe": "|helicopter|monster|skyscraper|fight|camcorder|panic|chaos|supernatural|quarantine|friends|alien|rescue|survival|disaster|escape|", "overview": "Five young New Yorkers throw their friend a going-away party the night that a monster the size of a skyscraper descends upon the city. Told from the point of view of their video camera, the film is a document of their attempt to survive the most surreal, horrifying event of their lives.", "text_for_embedding": "Cloverfield (2008). Genres: Action, Thriller, Science Fiction. Five young New Yorkers throw their friend a going-away party the night that a monster the size of a skyscraper descends upon the city. Told from the point of view of their video camera, the film is a document of their attempt to survive the most surreal, horrifying event of their lives.. Tags: helicopter, monster, skyscraper, fight, camcorder, panic, chaos, supernatural, quarantine, friends, alien, rescue, survival, disaster, escape"} +{"id": "1497", "title": "Teenage Mutant Ninja Turtles II: The Secret of the Ooze", "year": 1991, "duration_min": 88, "rating": 5.8, "genres": "Science Fiction, Adventure, Action, Comedy, Family", "genres_pipe": "|Science Fiction|Adventure|Action|Comedy|Family|", "keywords": "crime fighter, fight, mutant, turtle, ninja, reporter, new york city", "tags_pipe": "|crime fighter|fight|mutant|turtle|ninja|reporter|new york city|", "overview": "The Turtles and the Shredder battle once again, this time for the last cannister of the ooze that created the Turtles, which Shredder wants to create an army of new mutants.", "text_for_embedding": "Teenage Mutant Ninja Turtles II: The Secret of the Ooze (1991). Genres: Science Fiction, Adventure, Action, Comedy, Family. The Turtles and the Shredder battle once again, this time for the last cannister of the ooze that created the Turtles, which Shredder wants to create an army of new mutants.. Tags: crime fighter, fight, mutant, turtle, ninja, reporter, new york city"} +{"id": "117", "title": "The Untouchables", "year": 1987, "duration_min": 119, "rating": 7.6, "genres": "Crime, Drama, History, Thriller", "genres_pipe": "|Crime|Drama|History|Thriller|", "keywords": "white suit, al capone, tough cop, treasury agent, untouchable, tax evasion, jury tampering, rule of law, rooftop chase, cutting face while shaving, 1930s", "tags_pipe": "|white suit|al capone|tough cop|treasury agent|untouchable|tax evasion|jury tampering|rule of law|rooftop chase|cutting face while shaving|1930s|", "overview": "Young Treasury Agent Elliot Ness arrives in Chicago and is determined to take down Al Capone, but it's not going to be easy because Capone has the police in his pocket. Ness meets Jimmy Malone, a veteran patrolman and probably the most honorable one on the force. He asks Malone to help him get Capone, but Malone warns him that if he goes after Capone, he is going to war.", "text_for_embedding": "The Untouchables (1987). Genres: Crime, Drama, History, Thriller. Young Treasury Agent Elliot Ness arrives in Chicago and is determined to take down Al Capone, but it's not going to be easy because Capone has the police in his pocket. Ness meets Jimmy Malone, a veteran patrolman and probably the most honorable one on the force. He asks Malone to help him get Capone, but Malone warns him that if he goes after Capone, he is going to war.. Tags: white suit, al capone, tough cop, treasury agent, untouchable, tax evasion, jury tampering, rule of law, rooftop chase, cutting face while shaving, 1930s"} +{"id": "6977", "title": "No Country for Old Men", "year": 2007, "duration_min": 122, "rating": 7.7, "genres": "Crime, Drama, Thriller", "genres_pipe": "|Crime|Drama|Thriller|", "keywords": "texas, drug traffic, hitman, united states–mexico barrier, suspense", "tags_pipe": "|texas|drug traffic|hitman|united states–mexico barrier|suspense|", "overview": "Llewelyn Moss stumbles upon dead bodies, $2 million and a hoard of heroin in a Texas desert, but methodical killer Anton Chigurh comes looking for it, with local sheriff Ed Tom Bell hot on his trail. The roles of prey and predator blur as the violent pursuit of money and justice collide.", "text_for_embedding": "No Country for Old Men (2007). Genres: Crime, Drama, Thriller. Llewelyn Moss stumbles upon dead bodies, $2 million and a hoard of heroin in a Texas desert, but methodical killer Anton Chigurh comes looking for it, with local sheriff Ed Tom Bell hot on his trail. The roles of prey and predator blur as the violent pursuit of money and justice collide.. Tags: texas, drug traffic, hitman, united states–mexico barrier, suspense"} +{"id": "168530", "title": "Ride Along", "year": 2014, "duration_min": 99, "rating": 6.1, "genres": "Action, Comedy", "genres_pipe": "|Action|Comedy|", "keywords": "police operation, police officer, brother-in-law brother-in-law relationship, duringcreditsstinger, black men", "tags_pipe": "|police operation|police officer|brother-in-law brother-in-law relationship|duringcreditsstinger|black men|", "overview": "For the past two years, high-school security guard Ben has been trying to show decorated APD detective James that he's more than just a video-game junkie who's unworthy of James' sister, Angela. When Ben finally gets accepted into the academy, he thinks he's earned the seasoned policeman's respect and asks for his blessing to marry Angela. Knowing that a ride along will demonstrate if Ben has what it takes to take care of his sister, James invites him on a shift designed to scare the hell out of the trainee. But when the wild night leads them to the most notorious criminal in the city, James will find that his new partner's rapid-fire mouth is just as dangerous as the bullets speeding at it.", "text_for_embedding": "Ride Along (2014). Genres: Action, Comedy. For the past two years, high-school security guard Ben has been trying to show decorated APD detective James that he's more than just a video-game junkie who's unworthy of James' sister, Angela. When Ben finally gets accepted into the academy, he thinks he's earned the seasoned policeman's respect and asks for his blessing to marry Angela. Knowing that a ride along will demonstrate if Ben has what it takes to take care of his sister, James invites him on a shift designed to scare the hell out of the trainee. But when the wild night leads them to the most notorious criminal in the city, James will find that his new partner's rapid-fire mouth is just as dangerous as the bullets speeding at it.. Tags: police operation, police officer, brother-in-law brother-in-law relationship, duringcreditsstinger, black men"} +{"id": "634", "title": "Bridget Jones's Diary", "year": 2001, "duration_min": 97, "rating": 6.5, "genres": "Comedy, Romance, Drama", "genres_pipe": "|Comedy|Romance|Drama|", "keywords": "holiday, london england, england, alcohol, sex, lovesickness, telecaster, birthday, christmas party, news broadcast, sexual frustration, diary, cigarette, daughter, mother daughter relationship", "tags_pipe": "|holiday|london england|england|alcohol|sex|lovesickness|telecaster|birthday|christmas party|news broadcast|sexual frustration|diary|cigarette|daughter|mother daughter relationship|", "overview": "A chaotic Bridget Jones meets a snobbish lawyer, and he soon enters her world of imperfections.", "text_for_embedding": "Bridget Jones's Diary (2001). Genres: Comedy, Romance, Drama. A chaotic Bridget Jones meets a snobbish lawyer, and he soon enters her world of imperfections.. Tags: holiday, london england, england, alcohol, sex, lovesickness, telecaster, birthday, christmas party, news broadcast, sexual frustration, diary, cigarette, daughter, mother daughter relationship"} +{"id": "392", "title": "Chocolat", "year": 2000, "duration_min": 121, "rating": 6.8, "genres": "Comedy, Drama, Romance", "genres_pipe": "|Comedy|Drama|Romance|", "keywords": "chocolate, mayor, praline, single, mother daughter relationship", "tags_pipe": "|chocolate|mayor|praline|single|mother daughter relationship|", "overview": "A fable of emotional liberation and chocolate. A mother and daughter move to a small French town where they open a chocolate shop. The town, religious and morally strict, is against them as they represent free-thinking and indulgence. When a group of Boat Gypsies float down the river the prejudices of the Mayor leads to a crisis.", "text_for_embedding": "Chocolat (2000). Genres: Comedy, Drama, Romance. A fable of emotional liberation and chocolate. A mother and daughter move to a small French town where they open a chocolate shop. The town, religious and morally strict, is against them as they represent free-thinking and indulgence. When a group of Boat Gypsies float down the river the prejudices of the Mayor leads to a crisis.. Tags: chocolate, mayor, praline, single, mother daughter relationship"} +{"id": "10327", "title": "Legally Blonde 2: Red, White & Blonde", "year": 2003, "duration_min": 95, "rating": 5.1, "genres": "Comedy", "genres_pipe": "|Comedy|", "keywords": "washington d.c., boston, chambers of a barrister, tierversuch, lawyer", "tags_pipe": "|washington d.c.|boston|chambers of a barrister|tierversuch|lawyer|", "overview": "After Elle Woods, the eternally perky, fashionably adventurous, famously blonde Harvard Law grad gets fired by her law firm because of her opposition to animal testing, she takes her fight to Washington. As an aide for Congresswoman Victoria Rudd, she pushes for a bill to ban testing once and for all, but it's her building's doorman who advises her on how to get her way on the Hill.", "text_for_embedding": "Legally Blonde 2: Red, White & Blonde (2003). Genres: Comedy. After Elle Woods, the eternally perky, fashionably adventurous, famously blonde Harvard Law grad gets fired by her law firm because of her opposition to animal testing, she takes her fight to Washington. As an aide for Congresswoman Victoria Rudd, she pushes for a bill to ban testing once and for all, but it's her building's doorman who advises her on how to get her way on the Hill.. Tags: washington d.c., boston, chambers of a barrister, tierversuch, lawyer"} +{"id": "88042", "title": "Parental Guidance", "year": 2012, "duration_min": 104, "rating": 5.7, "genres": "Comedy", "genres_pipe": "|Comedy|", "keywords": "", "tags_pipe": "", "overview": "Artie and Diane agree to look after their three grandkids when their type-A helicopter parents need to leave town for work. Problems arise when the kids' 21st-century behavior collides with Artie and Diane's old-school methods.", "text_for_embedding": "Parental Guidance (2012). Genres: Comedy. Artie and Diane agree to look after their three grandkids when their type-A helicopter parents need to leave town for work. Problems arise when the kids' 21st-century behavior collides with Artie and Diane's old-school methods.. Tags: "} +{"id": "41630", "title": "No Strings Attached", "year": 2011, "duration_min": 107, "rating": 6.1, "genres": "Comedy, Romance", "genres_pipe": "|Comedy|Romance|", "keywords": "father son relationship, casual meeting, student of medicine, friends, valentine, male female relationship, open relationship, sexual humor, best friend, casual sex, best friends in love, duringcreditsstinger, fling, father son conflict, friends with benefit", "tags_pipe": "|father son relationship|casual meeting|student of medicine|friends|valentine|male female relationship|open relationship|sexual humor|best friend|casual sex|best friends in love|duringcreditsstinger|fling|father son conflict|friends with benefit|", "overview": "Emma is a busy doctor who sets up a seemingly perfect arrangement when she offers her best friend Adam a relationship with one rule: No strings attached. But when a fling becomes a thing, can sex friends stay best friends?", "text_for_embedding": "No Strings Attached (2011). Genres: Comedy, Romance. Emma is a busy doctor who sets up a seemingly perfect arrangement when she offers her best friend Adam a relationship with one rule: No strings attached. But when a fling becomes a thing, can sex friends stay best friends?. Tags: father son relationship, casual meeting, student of medicine, friends, valentine, male female relationship, open relationship, sexual humor, best friend, casual sex, best friends in love, duringcreditsstinger, fling, father son conflict, friends with benefit"} +{"id": "11969", "title": "Tombstone", "year": 1993, "duration_min": 130, "rating": 7.4, "genres": "Action, Adventure, Drama, History, Western", "genres_pipe": "|Action|Adventure|Drama|History|Western|", "keywords": "retirement, wyatt earp, right and justice, historical figure", "tags_pipe": "|retirement|wyatt earp|right and justice|historical figure|", "overview": "Legendary marshal Wyatt Earp, now a weary gunfighter, joins his brothers Morgan and Virgil to pursue their collective fortune in the thriving mining town of Tombstone. But Earp is forced to don a badge again and get help from his notorious pal Doc Holliday when a gang of renegade brigands and rustlers begins terrorizing the town.", "text_for_embedding": "Tombstone (1993). Genres: Action, Adventure, Drama, History, Western. Legendary marshal Wyatt Earp, now a weary gunfighter, joins his brothers Morgan and Virgil to pursue their collective fortune in the thriving mining town of Tombstone. But Earp is forced to don a badge again and get help from his notorious pal Doc Holliday when a gang of renegade brigands and rustlers begins terrorizing the town.. Tags: retirement, wyatt earp, right and justice, historical figure"} +{"id": "2085", "title": "Romeo Must Die", "year": 2000, "duration_min": 115, "rating": 6.0, "genres": "Action, Crime, Thriller", "genres_pipe": "|Action|Crime|Thriller|", "keywords": "martial arts, hip-hop, oakland, asian, asian man, asian lead", "tags_pipe": "|martial arts|hip-hop|oakland|asian|asian man|asian lead|", "overview": "Two warring gang families (one African-American, the other Chinese) maneuver for bragging rights to the Oakland, California, docks. Hang SIng and Trish O'Day uncover a trail of deceit that leaves most of the warring factions dead … or worse!", "text_for_embedding": "Romeo Must Die (2000). Genres: Action, Crime, Thriller. Two warring gang families (one African-American, the other Chinese) maneuver for bragging rights to the Oakland, California, docks. Hang SIng and Trish O'Day uncover a trail of deceit that leaves most of the warring factions dead … or worse!. Tags: martial arts, hip-hop, oakland, asian, asian man, asian lead"} +{"id": "794", "title": "The Omen", "year": 1976, "duration_min": 111, "rating": 7.2, "genres": "Horror, Thriller", "genres_pipe": "|Horror|Thriller|", "keywords": "monk, prophecy, ambassador, nanny, rottweiler, devil's son, revelation, aggression by animal, photography, paranormal phenomena, cowardliness, archaeologist", "tags_pipe": "|monk|prophecy|ambassador|nanny|rottweiler|devil's son|revelation|aggression by animal|photography|paranormal phenomena|cowardliness|archaeologist|", "overview": "Immediately after their miscarriage, the US diplomat Robert Thorn adopts the newborn Damien without the knowledge of his wife. Yet what he doesn’t know is that their new son is the son of the devil. A classic horror film with Gregory Peck from 1976.", "text_for_embedding": "The Omen (1976). Genres: Horror, Thriller. Immediately after their miscarriage, the US diplomat Robert Thorn adopts the newborn Damien without the knowledge of his wife. Yet what he doesn’t know is that their new son is the son of the devil. A classic horror film with Gregory Peck from 1976.. Tags: monk, prophecy, ambassador, nanny, rottweiler, devil's son, revelation, aggression by animal, photography, paranormal phenomena, cowardliness, archaeologist"} +{"id": "9286", "title": "Final Destination 3", "year": 2006, "duration_min": 93, "rating": 5.8, "genres": "Horror, Mystery", "genres_pipe": "|Horror|Mystery|", "keywords": "beheading, dying and death, stroke of fate", "tags_pipe": "|beheading|dying and death|stroke of fate|", "overview": "A student's premonition of a deadly rollercoaster ride saves her life and a lucky few, but not from death itself – which seeks out those who escaped their fate.", "text_for_embedding": "Final Destination 3 (2006). Genres: Horror, Mystery. A student's premonition of a deadly rollercoaster ride saves her life and a lucky few, but not from death itself – which seeks out those who escaped their fate.. Tags: beheading, dying and death, stroke of fate"} +{"id": "77877", "title": "The Lucky One", "year": 2012, "duration_min": 101, "rating": 6.8, "genres": "Drama, Romance", "genres_pipe": "|Drama|Romance|", "keywords": "based on novel, wife husband relationship, photo, kennel, playing chess, bomb explosion, iraq veteran", "tags_pipe": "|based on novel|wife husband relationship|photo|kennel|playing chess|bomb explosion|iraq veteran|", "overview": "U.S. Marine Sergeant Logan Thibault returns from his third tour of duty in Iraq, with the one thing he credits with keeping him alive-a photograph he found of a woman he doesn't even know. Learning her name is Beth and where she lives, he shows up at her door, and ends up taking a job at her family-run local kennel. Despite her initial mistrust and the complications in her life, a romance develops between them, giving Logan hope that Beth could be much more than his good luck charm.", "text_for_embedding": "The Lucky One (2012). Genres: Drama, Romance. U.S. Marine Sergeant Logan Thibault returns from his third tour of duty in Iraq, with the one thing he credits with keeping him alive-a photograph he found of a woman he doesn't even know. Learning her name is Beth and where she lives, he shows up at her door, and ends up taking a job at her family-run local kennel. Despite her initial mistrust and the complications in her life, a romance develops between them, giving Logan hope that Beth could be much more than his good luck charm.. Tags: based on novel, wife husband relationship, photo, kennel, playing chess, bomb explosion, iraq veteran"} +{"id": "1265", "title": "Bridge to Terabithia", "year": 2007, "duration_min": 96, "rating": 7.0, "genres": "Adventure, Drama, Family", "genres_pipe": "|Adventure|Drama|Family|", "keywords": "brother sister relationship, friendship, bullying, neighbor, school, drawing, based on children's book, school bus, imagination, creek, clubhouse, reality vs fantasy, outsider, fantasy world, overflowing with imagination", "tags_pipe": "|brother sister relationship|friendship|bullying|neighbor|school|drawing|based on children's book|school bus|imagination|creek|clubhouse|reality vs fantasy|outsider|fantasy world|overflowing with imagination|", "overview": "Jesse Aarons trained all summer to become the fastest runner in school, so he's very upset when newcomer Leslie Burke outruns him and everyone else. Despite this and other differences, including that she's rich, he's poor, and she's a city girl, he's a country boy, the two become fast friends. Together, they create Terabithia, a land of monsters, trolls, ogres, and giants and rule as king and queen.", "text_for_embedding": "Bridge to Terabithia (2007). Genres: Adventure, Drama, Family. Jesse Aarons trained all summer to become the fastest runner in school, so he's very upset when newcomer Leslie Burke outruns him and everyone else. Despite this and other differences, including that she's rich, he's poor, and she's a city girl, he's a country boy, the two become fast friends. Together, they create Terabithia, a land of monsters, trolls, ogres, and giants and rule as king and queen.. Tags: brother sister relationship, friendship, bullying, neighbor, school, drawing, based on children's book, school bus, imagination, creek, clubhouse, reality vs fantasy, outsider, fantasy world, overflowing with imagination"} +{"id": "866", "title": "Finding Neverland", "year": 2004, "duration_min": 106, "rating": 7.2, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "london england, scotland, parents kids relationship, becoming an adult, fantasy, mother role, childhood memory, success, widow, theatre play, stroke of fate, costume, peter pan, theatre group, adventure", "tags_pipe": "|london england|scotland|parents kids relationship|becoming an adult|fantasy|mother role|childhood memory|success|widow|theatre play|stroke of fate|costume|peter pan|theatre group|adventure|", "overview": "Finding Neverland is an amusing drama about how the story of Peter Pan and Neverland came to be. During a writing slump play writer J.M. Barrie meets the widowed Sylvia and her three children who soon become an important part of Barrie’s life and the inspiration that lead him to create his masterpiece “Peter Pan.”", "text_for_embedding": "Finding Neverland (2004). Genres: Drama. Finding Neverland is an amusing drama about how the story of Peter Pan and Neverland came to be. During a writing slump play writer J.M. Barrie meets the widowed Sylvia and her three children who soon become an important part of Barrie’s life and the inspiration that lead him to create his masterpiece “Peter Pan.”. Tags: london england, scotland, parents kids relationship, becoming an adult, fantasy, mother role, childhood memory, success, widow, theatre play, stroke of fate, costume, peter pan, theatre group, adventure"} +{"id": "175555", "title": "A Madea Christmas", "year": 2013, "duration_min": 100, "rating": 7.0, "genres": "Comedy, Drama", "genres_pipe": "|Comedy|Drama|", "keywords": "christmas", "tags_pipe": "|christmas|", "overview": "Madea dispenses her unique form of holiday spirit on rural town when she's coaxed into helping a friend pay her daughter a surprise visit in the country for Christmas.", "text_for_embedding": "A Madea Christmas (2013). Genres: Comedy, Drama. Madea dispenses her unique form of holiday spirit on rural town when she's coaxed into helping a friend pay her daughter a surprise visit in the country for Christmas.. Tags: christmas"} +{"id": "75174", "title": "The Grey", "year": 2012, "duration_min": 117, "rating": 6.4, "genres": "Action, Drama, Thriller", "genres_pipe": "|Action|Drama|Thriller|", "keywords": "alcohol, isolation, wolf, wilderness, forest, stranded, alaska, survival, airplane crash, fear, howling, death, animal killing, freezing, animal attack", "tags_pipe": "|alcohol|isolation|wolf|wilderness|forest|stranded|alaska|survival|airplane crash|fear|howling|death|animal killing|freezing|animal attack|", "overview": "An oil drilling team struggles to survive after a plane crash strands them in the wilds of Alaska. Hunting them is a pack of wolves that sees them as intruders.", "text_for_embedding": "The Grey (2012). Genres: Action, Drama, Thriller. An oil drilling team struggles to survive after a plane crash strands them in the wilds of Alaska. Hunting them is a pack of wolves that sees them as intruders.. Tags: alcohol, isolation, wolf, wilderness, forest, stranded, alaska, survival, airplane crash, fear, howling, death, animal killing, freezing, animal attack"} +{"id": "11096", "title": "Hide and Seek", "year": 2005, "duration_min": 101, "rating": 6.1, "genres": "Horror, Mystery, Thriller", "genres_pipe": "|Horror|Mystery|Thriller|", "keywords": "house, imaginary friend, suspense, loss of wife", "tags_pipe": "|house|imaginary friend|suspense|loss of wife|", "overview": "David Callaway tries to piece together his life in the wake of his wife's suicide and has been left to raise his nine-year-old daughter, Emily on his own. David is at first amused to discover that Emily has created an imaginary friend named 'Charlie', but it isn't long before 'Charlie' develops a sinister and violent side, and as David struggles with his daughter's growing emotional problems, he comes to the frightening realisation that 'Charlie' isn't just a figment of Emily's imagination.", "text_for_embedding": "Hide and Seek (2005). Genres: Horror, Mystery, Thriller. David Callaway tries to piece together his life in the wake of his wife's suicide and has been left to raise his nine-year-old daughter, Emily on his own. David is at first amused to discover that Emily has created an imaginary friend named 'Charlie', but it isn't long before 'Charlie' develops a sinister and violent side, and as David struggles with his daughter's growing emotional problems, he comes to the frightening realisation that 'Charlie' isn't just a figment of Emily's imagination.. Tags: house, imaginary friend, suspense, loss of wife"} +{"id": "8699", "title": "Anchorman: The Legend of Ron Burgundy", "year": 2004, "duration_min": 94, "rating": 6.7, "genres": "Comedy", "genres_pipe": "|Comedy|", "keywords": "journalism, sexism, ladder, panda, tv show in film, mustache, misogynist, newsroom, teleprompter, gang warfare, aftercreditsstinger, duringcreditsstinger, news spoof", "tags_pipe": "|journalism|sexism|ladder|panda|tv show in film|mustache|misogynist|newsroom|teleprompter|gang warfare|aftercreditsstinger|duringcreditsstinger|news spoof|", "overview": "It's the 1970s, and San Diego super-sexist anchorman Ron Burgundy is the top dog in local TV, but that's all about to change when ambitious reporter Veronica Corningstone arrives as a new employee at his station.", "text_for_embedding": "Anchorman: The Legend of Ron Burgundy (2004). Genres: Comedy. It's the 1970s, and San Diego super-sexist anchorman Ron Burgundy is the top dog in local TV, but that's all about to change when ambitious reporter Veronica Corningstone arrives as a new employee at his station.. Tags: journalism, sexism, ladder, panda, tv show in film, mustache, misogynist, newsroom, teleprompter, gang warfare, aftercreditsstinger, duringcreditsstinger, news spoof"} +{"id": "769", "title": "GoodFellas", "year": 1990, "duration_min": 145, "rating": 8.2, "genres": "Drama, Crime", "genres_pipe": "|Drama|Crime|", "keywords": "prison, based on novel, florida, 1970s, mass murder, irish-american, drug traffic, biography, based on true story, murder, organized crime, gore, mafia, gangster, new york city", "tags_pipe": "|prison|based on novel|florida|1970s|mass murder|irish-american|drug traffic|biography|based on true story|murder|organized crime|gore|mafia|gangster|new york city|", "overview": "The true story of Henry Hill, a half-Irish, half-Sicilian Brooklyn kid who is adopted by neighbourhood gangsters at an early age and climbs the ranks of a Mafia family under the guidance of Jimmy Conway.", "text_for_embedding": "GoodFellas (1990). Genres: Drama, Crime. The true story of Henry Hill, a half-Irish, half-Sicilian Brooklyn kid who is adopted by neighbourhood gangsters at an early age and climbs the ranks of a Mafia family under the guidance of Jimmy Conway.. Tags: prison, based on novel, florida, 1970s, mass murder, irish-american, drug traffic, biography, based on true story, murder, organized crime, gore, mafia, gangster, new york city"} +{"id": "10923", "title": "Agent Cody Banks", "year": 2003, "duration_min": 102, "rating": 5.0, "genres": "Action", "genres_pipe": "|Action|", "keywords": "spy, cia, killer robot, delinquent, teen spy", "tags_pipe": "|spy|cia|killer robot|delinquent|teen spy|", "overview": "Recruited by the U.S. government to be a special agent, nerdy teenager Cody Banks must get closer to cute classmate Natalie in order to learn about an evil plan hatched by her father. But despite the agent persona, Cody struggles with teen angst.", "text_for_embedding": "Agent Cody Banks (2003). Genres: Action. Recruited by the U.S. government to be a special agent, nerdy teenager Cody Banks must get closer to cute classmate Natalie in order to learn about an evil plan hatched by her father. But despite the agent persona, Cody struggles with teen angst.. Tags: spy, cia, killer robot, delinquent, teen spy"} +{"id": "11283", "title": "Nanny McPhee", "year": 2005, "duration_min": 97, "rating": 6.4, "genres": "Fantasy, Comedy, Family", "genres_pipe": "|Fantasy|Comedy|Family|", "keywords": "loss of mother, nanny, education, wizardry, children, single father", "tags_pipe": "|loss of mother|nanny|education|wizardry|children|single father|", "overview": "Widower Cedric Brown (Colin Firth) hires Nanny McPhee (Emma Thompson) to care for his seven rambunctious children, who have chased away all previous nannies. Taunted by Simon (Thomas Sangster) and his siblings, Nanny McPhee uses mystical powers to instill discipline. And when the children's great-aunt and benefactor, Lady Adelaide Stitch (Angela Lansbury), threatens to separate the kids, the family pulls together under the guidance of Nanny McPhee.", "text_for_embedding": "Nanny McPhee (2005). Genres: Fantasy, Comedy, Family. Widower Cedric Brown (Colin Firth) hires Nanny McPhee (Emma Thompson) to care for his seven rambunctious children, who have chased away all previous nannies. Taunted by Simon (Thomas Sangster) and his siblings, Nanny McPhee uses mystical powers to instill discipline. And when the children's great-aunt and benefactor, Lady Adelaide Stitch (Angela Lansbury), threatens to separate the kids, the family pulls together under the guidance of Nanny McPhee.. Tags: loss of mother, nanny, education, wizardry, children, single father"} +{"id": "111", "title": "Scarface", "year": 1983, "duration_min": 170, "rating": 8.0, "genres": "Action, Crime, Drama, Thriller", "genres_pipe": "|Action|Crime|Drama|Thriller|", "keywords": "miami, corruption, capitalism, cuba, prohibition, brother sister relationship, loss of sister, cocaine, cult film, bitterness", "tags_pipe": "|miami|corruption|capitalism|cuba|prohibition|brother sister relationship|loss of sister|cocaine|cult film|bitterness|", "overview": "After getting a green card in exchange for assassinating a Cuban government official, Tony Montana stakes a claim on the drug trade in Miami. Viciously murdering anyone who stands in his way, Tony eventually becomes the biggest drug lord in the state, controlling nearly all the cocaine that comes through Miami. But increased pressure from the police, wars with Colombian drug cartels and his own drug-fueled paranoia serve to fuel the flames of his eventual downfall.", "text_for_embedding": "Scarface (1983). Genres: Action, Crime, Drama, Thriller. After getting a green card in exchange for assassinating a Cuban government official, Tony Montana stakes a claim on the drug trade in Miami. Viciously murdering anyone who stands in his way, Tony eventually becomes the biggest drug lord in the state, controlling nearly all the cocaine that comes through Miami. But increased pressure from the police, wars with Colombian drug cartels and his own drug-fueled paranoia serve to fuel the flames of his eventual downfall.. Tags: miami, corruption, capitalism, cuba, prohibition, brother sister relationship, loss of sister, cocaine, cult film, bitterness"} +{"id": "11676", "title": "Nothing to Lose", "year": 1997, "duration_min": 97, "rating": 6.3, "genres": "Action, Adventure, Comedy", "genres_pipe": "|Action|Adventure|Comedy|", "keywords": "rap music, infidelity, security camera, loss, crook, sociopath, revenge, artifact, f word, racism, criminal, on the road, desert, security guard, shoplifting", "tags_pipe": "|rap music|infidelity|security camera|loss|crook|sociopath|revenge|artifact|f word|racism|criminal|on the road|desert|security guard|shoplifting|", "overview": "Advertising executive Nick Beame learns that his wife is sleeping with his employer. In a state of despair, he encounters a bumbling thief whose attempted carjacking goes awry when Nick takes him on an involuntary joyride. Soon the betrayed businessman and the incompetent crook strike up a partnership and develop a robbery-revenge scheme. But it turns out that some other criminals in the area don't appreciate the competition.", "text_for_embedding": "Nothing to Lose (1997). Genres: Action, Adventure, Comedy. Advertising executive Nick Beame learns that his wife is sleeping with his employer. In a state of despair, he encounters a bumbling thief whose attempted carjacking goes awry when Nick takes him on an involuntary joyride. Soon the betrayed businessman and the incompetent crook strike up a partnership and develop a robbery-revenge scheme. But it turns out that some other criminals in the area don't appreciate the competition.. Tags: rap music, infidelity, security camera, loss, crook, sociopath, revenge, artifact, f word, racism, criminal, on the road, desert, security guard, shoplifting"} +{"id": "746", "title": "The Last Emperor", "year": 1987, "duration_min": 163, "rating": 7.4, "genres": "Drama, History", "genres_pipe": "|Drama|History|", "keywords": "buddhism, japan, suicide, china, suicide attempt, war crimes, becoming an adult, isolation, war on drugs, revolution, emperor, arranged marriage, manchuria, dynasty, reeducation camp", "tags_pipe": "|buddhism|japan|suicide|china|suicide attempt|war crimes|becoming an adult|isolation|war on drugs|revolution|emperor|arranged marriage|manchuria|dynasty|reeducation camp|", "overview": "A dramatic history of Pu Yi, the last of the Emperors of China, from his lofty birth and brief reign in the Forbidden City, the object of worship by half a billion people; through his abdication, his decline and dissolute lifestyle; his exploitation by the invading Japanese, and finally to his obscure existence as just another peasant worker in the People's Republic.", "text_for_embedding": "The Last Emperor (1987). Genres: Drama, History. A dramatic history of Pu Yi, the last of the Emperors of China, from his lofty birth and brief reign in the Forbidden City, the object of worship by half a billion people; through his abdication, his decline and dissolute lifestyle; his exploitation by the invading Japanese, and finally to his obscure existence as just another peasant worker in the People's Republic.. Tags: buddhism, japan, suicide, china, suicide attempt, war crimes, becoming an adult, isolation, war on drugs, revolution, emperor, arranged marriage, manchuria, dynasty, reeducation camp"} +{"id": "77866", "title": "Contraband", "year": 2012, "duration_min": 109, "rating": 6.1, "genres": "Thriller, Action, Drama, Crime", "genres_pipe": "|Thriller|Action|Drama|Crime|", "keywords": "head wound, criminal, security guard, contraband", "tags_pipe": "|head wound|criminal|security guard|contraband|", "overview": "When his brother-in-law runs afoul of a drug lord, family man Chris Farraday turns to a skill he abandoned long ago – smuggling – to repay the debt. But the job goes wrong, and Farraday finds himself wanted by cops, crooks and killers alike.", "text_for_embedding": "Contraband (2012). Genres: Thriller, Action, Drama, Crime. When his brother-in-law runs afoul of a drug lord, family man Chris Farraday turns to a skill he abandoned long ago – smuggling – to repay the debt. But the job goes wrong, and Farraday finds himself wanted by cops, crooks and killers alike.. Tags: head wound, criminal, security guard, contraband"} +{"id": "9416", "title": "Money Talks", "year": 1997, "duration_min": 97, "rating": 5.9, "genres": "Action, Adventure, Comedy", "genres_pipe": "|Action|Adventure|Comedy|", "keywords": "prison, diamant, liberation of prisoners, transport of prisoners, interview, arrest", "tags_pipe": "|prison|diamant|liberation of prisoners|transport of prisoners|interview|arrest|", "overview": "Money Talks is a 1997 American comedy film directed by Brett Ratner. Sought by police and criminals, a small-time huckster makes a deal with a TV newsman for protection.", "text_for_embedding": "Money Talks (1997). Genres: Action, Adventure, Comedy. Money Talks is a 1997 American comedy film directed by Brett Ratner. Sought by police and criminals, a small-time huckster makes a deal with a TV newsman for protection.. Tags: prison, diamant, liberation of prisoners, transport of prisoners, interview, arrest"} +{"id": "7345", "title": "There Will Be Blood", "year": 2007, "duration_min": 158, "rating": 7.9, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "brother brother relationship, deaf-mute, american dream, fanatic, pipeline, petrol, father, step father, oil, money, killer, alcoholic", "tags_pipe": "|brother brother relationship|deaf-mute|american dream|fanatic|pipeline|petrol|father|step father|oil|money|killer|alcoholic|", "overview": "When ruthless oil prospector, Daniel Plainview learns of oil-rich land in California that can be bought cheaply, he moves his operation there and begins manipulating and exploiting the local landowners into selling him their property. Using his young adopted son to project the image of a caring family man, Plainview gains the cooperation of almost all the locals with lofty promises to build schools and cultivate the land to make their community flourish. Over time, Plainview's gradual accumulation of wealth and power causes his true self to surface, and he begins to slowly alienate himself from everyone in his life.", "text_for_embedding": "There Will Be Blood (2007). Genres: Drama. When ruthless oil prospector, Daniel Plainview learns of oil-rich land in California that can be bought cheaply, he moves his operation there and begins manipulating and exploiting the local landowners into selling him their property. Using his young adopted son to project the image of a caring family man, Plainview gains the cooperation of almost all the locals with lofty promises to build schools and cultivate the land to make their community flourish. Over time, Plainview's gradual accumulation of wealth and power causes his true self to surface, and he begins to slowly alienate himself from everyone in his life.. Tags: brother brother relationship, deaf-mute, american dream, fanatic, pipeline, petrol, father, step father, oil, money, killer, alcoholic"} +{"id": "14317", "title": "The Wild Thornberrys Movie", "year": 2002, "duration_min": 85, "rating": 5.8, "genres": "Animation, Adventure, Family", "genres_pipe": "|Animation|Adventure|Family|", "keywords": "sister sister relationship, safari, wildlife, baboon, chimpanzee, woman director", "tags_pipe": "|sister sister relationship|safari|wildlife|baboon|chimpanzee|woman director|", "overview": "Eliza and Debbie are two sisters who don't always get along. But their relationship is put to the test when Debbie's life is in danger, and Eliza might have to give up her power to talk to animals....", "text_for_embedding": "The Wild Thornberrys Movie (2002). Genres: Animation, Adventure, Family. Eliza and Debbie are two sisters who don't always get along. But their relationship is put to the test when Debbie's life is in danger, and Eliza might have to give up her power to talk to animals..... Tags: sister sister relationship, safari, wildlife, baboon, chimpanzee, woman director"} +{"id": "20694", "title": "Rugrats Go Wild", "year": 2003, "duration_min": 84, "rating": 5.6, "genres": "Animation, Family", "genres_pipe": "|Animation|Family|", "keywords": "kids and family", "tags_pipe": "|kids and family|", "overview": "Rugrats Go Wild is a 2003 crossover animated film, with two animated Nickelodeon television series Rugrats and The Wild Thornberrys.The film was produced by Klasky Csupo and released in theaters on June 13, 2003 by Paramount Pictures and Nickelodeon Movies. It also makes this the Rugrats series finale, after the show ceased production. As there are currently no further Rugrats movies in production, Rugrats Go Wild stands as the final Rugrats film. It is the only Nickelodeon film to be a crossover. Although it is a crossover film, it is primarily a Rugrats movie as the main plot focuses on the those characters.The Rugrats family vacation takes an exotic detour when their boat capsizes and they become shipwrecked on a deserted tropical island. With the jungle as their new backyard, the babies reace wildly from one dangerous adventure to the next…soon to discover that someone else is on the island. It's The Wild Thornberrys...on an island adventure of their own!", "text_for_embedding": "Rugrats Go Wild (2003). Genres: Animation, Family. Rugrats Go Wild is a 2003 crossover animated film, with two animated Nickelodeon television series Rugrats and The Wild Thornberrys.The film was produced by Klasky Csupo and released in theaters on June 13, 2003 by Paramount Pictures and Nickelodeon Movies. It also makes this the Rugrats series finale, after the show ceased production. As there are currently no further Rugrats movies in production, Rugrats Go Wild stands as the final Rugrats film. It is the only Nickelodeon film to be a crossover. Although it is a crossover film, it is primarily a Rugrats movie as the main plot focuses on the those characters.The Rugrats family vacation takes an exotic detour when their boat capsizes and they become shipwrecked on a deserted tropical island. With the jungle as their new backyard, the babies reace wildly from one dangerous adventure to the next…soon to discover that someone else is on the island. It's The Wild Thornberrys...on an island adventure of their own!. Tags: kids and family"} +{"id": "12277", "title": "Undercover Brother", "year": 2002, "duration_min": 86, "rating": 5.5, "genres": "Action, Comedy", "genres_pipe": "|Action|Comedy|", "keywords": "usa president, double life, policy and organisations, undercover, intelligence, partner, duringcreditsstinger", "tags_pipe": "|usa president|double life|policy and organisations|undercover|intelligence|partner|duringcreditsstinger|", "overview": "An Afro-American organization, the B.R.O.T.H.E.R.H.O.O.D., is in permanent fight against a white organization \"The Man\" defending the values of the black people in North America. When the Afro-American candidate Gen. Warren Boutwell behaves strangely in his presidential campaign, Undercover Brother is hired to work undercover for \"The Man\" and find what happened with the potential candidate.", "text_for_embedding": "Undercover Brother (2002). Genres: Action, Comedy. An Afro-American organization, the B.R.O.T.H.E.R.H.O.O.D., is in permanent fight against a white organization \"The Man\" defending the values of the black people in North America. When the Afro-American candidate Gen. Warren Boutwell behaves strangely in his presidential campaign, Undercover Brother is hired to work undercover for \"The Man\" and find what happened with the potential candidate.. Tags: usa president, double life, policy and organisations, undercover, intelligence, partner, duringcreditsstinger"} +{"id": "9779", "title": "The Sisterhood of the Traveling Pants", "year": 2005, "duration_min": 119, "rating": 6.3, "genres": "Drama, Comedy", "genres_pipe": "|Drama|Comedy|", "keywords": "holiday, female friendship, jeans, coming of age, teenage girl, summer, based on young adult novel", "tags_pipe": "|holiday|female friendship|jeans|coming of age|teenage girl|summer|based on young adult novel|", "overview": "Four best friends (Tibby, Lena, Carmen & Bridget) who buy a mysterious pair of pants that fits each of them, despite their differing sizes, and makes whoever wears them feel fabulous. When faced with the prospect of spending their first summer apart, the pals decide they'll swap the pants so that each girl in turn can enjoy the magic.", "text_for_embedding": "The Sisterhood of the Traveling Pants (2005). Genres: Drama, Comedy. Four best friends (Tibby, Lena, Carmen & Bridget) who buy a mysterious pair of pants that fits each of them, despite their differing sizes, and makes whoever wears them feel fabulous. When faced with the prospect of spending their first summer apart, the pals decide they'll swap the pants so that each girl in turn can enjoy the magic.. Tags: holiday, female friendship, jeans, coming of age, teenage girl, summer, based on young adult novel"} +{"id": "2140", "title": "Kiss of the Dragon", "year": 2001, "duration_min": 98, "rating": 6.4, "genres": "Action, Crime, Thriller", "genres_pipe": "|Action|Crime|Thriller|", "keywords": "paris, prostitute, drug", "tags_pipe": "|paris|prostitute|drug|", "overview": "Liu Jian, an elite Chinese police officer, comes to Paris to arrest a Chinese drug lord. When Jian is betrayed by a French officer and framed for murder, he must go into hiding and find new allies.", "text_for_embedding": "Kiss of the Dragon (2001). Genres: Action, Crime, Thriller. Liu Jian, an elite Chinese police officer, comes to Paris to arrest a Chinese drug lord. When Jian is betrayed by a French officer and framed for murder, he must go into hiding and find new allies.. Tags: paris, prostitute, drug"} +{"id": "12620", "title": "The House Bunny", "year": 2008, "duration_min": 97, "rating": 5.6, "genres": "Romance, Comedy", "genres_pipe": "|Romance|Comedy|", "keywords": "virgin, nudity, college, costume, yoga, bikini, party, playboy, jail, sorority, pregnancy, model, car wash, fraternity, pledge", "tags_pipe": "|virgin|nudity|college|costume|yoga|bikini|party|playboy|jail|sorority|pregnancy|model|car wash|fraternity|pledge|", "overview": "Shelley is living a carefree life until a rival gets her tossed out of the Playboy Mansion. With nowhere to go, fate delivers her to the sorority girls from Zeta Alpha Zeta. Unless they can sign a new pledge class, the seven socially clueless women will lose their house to the scheming girls of Phi Iota Mu. In order to accomplish their goal, they need Shelley to teach them the ways of makeup and men; at the same time, Shelley needs some of what the Zetas have - a sense of individuality. The combination leads all the girls to learn how to stop pretending and start being themselves.", "text_for_embedding": "The House Bunny (2008). Genres: Romance, Comedy. Shelley is living a carefree life until a rival gets her tossed out of the Playboy Mansion. With nowhere to go, fate delivers her to the sorority girls from Zeta Alpha Zeta. Unless they can sign a new pledge class, the seven socially clueless women will lose their house to the scheming girls of Phi Iota Mu. In order to accomplish their goal, they need Shelley to teach them the ways of makeup and men; at the same time, Shelley needs some of what the Zetas have - a sense of individuality. The combination leads all the girls to learn how to stop pretending and start being themselves.. Tags: virgin, nudity, college, costume, yoga, bikini, party, playboy, jail, sorority, pregnancy, model, car wash, fraternity, pledge"} +{"id": "14177", "title": "Beauty Shop", "year": 2005, "duration_min": 105, "rating": 5.4, "genres": "Comedy, Romance", "genres_pipe": "|Comedy|Romance|", "keywords": "", "tags_pipe": "", "overview": "You thought you'd heard it all in the barbershop, but you haven't heard anything yet - the women get their own chance to shampoo, shine, and speak their minds in Beauty Shop.", "text_for_embedding": "Beauty Shop (2005). Genres: Comedy, Romance. You thought you'd heard it all in the barbershop, but you haven't heard anything yet - the women get their own chance to shampoo, shine, and speak their minds in Beauty Shop.. Tags: "} +{"id": "198185", "title": "Million Dollar Arm", "year": 2014, "duration_min": 124, "rating": 6.6, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "baseball, sport, duringcreditsstinger", "tags_pipe": "|baseball|sport|duringcreditsstinger|", "overview": "In a last-ditch effort to save his career, sports agent JB Bernstein (Jon Hamm) dreams up a wild game plan to find Major League Baseball’s next great pitcher from a pool of cricket players in India. He soon discovers two young men who can throw a fastball but know nothing about the game of baseball. Or America. It’s an incredible and touching journey that will change them all — especially JB, who learns valuable lessons about teamwork, commitment and family.", "text_for_embedding": "Million Dollar Arm (2014). Genres: Drama. In a last-ditch effort to save his career, sports agent JB Bernstein (Jon Hamm) dreams up a wild game plan to find Major League Baseball’s next great pitcher from a pool of cricket players in India. He soon discovers two young men who can throw a fastball but know nothing about the game of baseball. Or America. It’s an incredible and touching journey that will change them all — especially JB, who learns valuable lessons about teamwork, commitment and family.. Tags: baseball, sport, duringcreditsstinger"} +{"id": "227156", "title": "The Giver", "year": 2014, "duration_min": 94, "rating": 6.4, "genres": "Drama, Science Fiction", "genres_pipe": "|Drama|Science Fiction|", "keywords": "dystopia, black and white, based on young adult novel", "tags_pipe": "|dystopia|black and white|based on young adult novel|", "overview": "In a seemingly perfect community, without war, pain, suffering, differences or choice, a young boy is chosen to learn from an elderly man about the true pain and pleasure of the \"real\" world.", "text_for_embedding": "The Giver (2014). Genres: Drama, Science Fiction. In a seemingly perfect community, without war, pain, suffering, differences or choice, a young boy is chosen to learn from an elderly man about the true pain and pleasure of the \"real\" world.. Tags: dystopia, black and white, based on young adult novel"} +{"id": "10735", "title": "What a Girl Wants", "year": 2003, "duration_min": 105, "rating": 5.8, "genres": "Comedy", "genres_pipe": "|Comedy|", "keywords": "london england, england, daughter, politician, teenage girl, father daughter relationship, american abroad, teen comedy, woman director", "tags_pipe": "|london england|england|daughter|politician|teenage girl|father daughter relationship|american abroad|teen comedy|woman director|", "overview": "An American girl, Daphne, heads to Europe in search of the father she's never met. But instead of finding a British version of her bohemian mother, she learns the love of her mom's life is an uptight politician. The only problem now is that her long-lost dad is engaged to a fiercely territorial social climber with a daughter who makes Daphne's life miserable.", "text_for_embedding": "What a Girl Wants (2003). Genres: Comedy. An American girl, Daphne, heads to Europe in search of the father she's never met. But instead of finding a British version of her bohemian mother, she learns the love of her mom's life is an uptight politician. The only problem now is that her long-lost dad is engaged to a fiercely territorial social climber with a daughter who makes Daphne's life miserable.. Tags: london england, england, daughter, politician, teenage girl, father daughter relationship, american abroad, teen comedy, woman director"} +{"id": "11351", "title": "Jeepers Creepers 2", "year": 2003, "duration_min": 104, "rating": 5.5, "genres": "Horror, Thriller", "genres_pipe": "|Horror|Thriller|", "keywords": "father son relationship, scarecrow, peasant, farm, immortality, mythical creature, father", "tags_pipe": "|father son relationship|scarecrow|peasant|farm|immortality|mythical creature|father|", "overview": "After 23 horrifying days of gorging on human flesh, an ancient creature known as the Creeper embarks on a final voracious feeding frenzy, terrorizing a group of varsity basketball players, cheerleaders and coaches stranded on a remote highway when their bus breaks down. The terrified group is forced to come together and do battle against the winged creature hell-bent on completing its grizzly ritual.", "text_for_embedding": "Jeepers Creepers 2 (2003). Genres: Horror, Thriller. After 23 horrifying days of gorging on human flesh, an ancient creature known as the Creeper embarks on a final voracious feeding frenzy, terrorizing a group of varsity basketball players, cheerleaders and coaches stranded on a remote highway when their bus breaks down. The terrified group is forced to come together and do battle against the winged creature hell-bent on completing its grizzly ritual.. Tags: father son relationship, scarecrow, peasant, farm, immortality, mythical creature, father"} +{"id": "10030", "title": "Good Luck Chuck", "year": 2007, "duration_min": 101, "rating": 5.5, "genres": "Comedy, Drama, Romance", "genres_pipe": "|Comedy|Drama|Romance|", "keywords": "sex, aquarium, nudity, one-night stand, bride, man-woman relation, love, curse, wedding, dentist, based on short story, duringcreditsstinger", "tags_pipe": "|sex|aquarium|nudity|one-night stand|bride|man-woman relation|love|curse|wedding|dentist|based on short story|duringcreditsstinger|", "overview": "Cursed since childhood, dentist Charlie Kagan cannot find the right woman. Even worse, he learns that each of his ex-girlfriends finds true love with the man she meets after her relationship with him ends. Hearing of Charlie's reputation as a good-luck charm, women from all over line up for a quick tryst. But when Charlie meets the woman of his dreams, he must find a way to break the curse or risk losing her to the next man she meets.", "text_for_embedding": "Good Luck Chuck (2007). Genres: Comedy, Drama, Romance. Cursed since childhood, dentist Charlie Kagan cannot find the right woman. Even worse, he learns that each of his ex-girlfriends finds true love with the man she meets after her relationship with him ends. Hearing of Charlie's reputation as a good-luck charm, women from all over line up for a quick tryst. But when Charlie meets the woman of his dreams, he must find a way to break the curse or risk losing her to the next man she meets.. Tags: sex, aquarium, nudity, one-night stand, bride, man-woman relation, love, curse, wedding, dentist, based on short story, duringcreditsstinger"} +{"id": "10623", "title": "Cradle 2 the Grave", "year": 2003, "duration_min": 101, "rating": 5.8, "genres": "Action, Crime, Drama", "genres_pipe": "|Action|Crime|Drama|", "keywords": "robbery, diamant, intelligence, bank robber, thief, bank robbery, financial transactions, hoodlum", "tags_pipe": "|robbery|diamant|intelligence|bank robber|thief|bank robbery|financial transactions|hoodlum|", "overview": "Gang leader Tony pulls off a major diamond heist with his crew, but cop-turned-criminal Ling knows who has the loot and responds by kidnapping Tony's daughter and holding her for ransom. Unfortunately, Tony's lost the diamonds as well. As he frantically searches for his daughter and the jewels, Tony pairs with a high-kicking government agent who once worked with Ling and seeks revenge on him.", "text_for_embedding": "Cradle 2 the Grave (2003). Genres: Action, Crime, Drama. Gang leader Tony pulls off a major diamond heist with his crew, but cop-turned-criminal Ling knows who has the loot and responds by kidnapping Tony's daughter and holding her for ransom. Unfortunately, Tony's lost the diamonds as well. As he frantically searches for his daughter and the jewels, Tony pairs with a high-kicking government agent who once worked with Ling and seeks revenge on him.. Tags: robbery, diamant, intelligence, bank robber, thief, bank robbery, financial transactions, hoodlum"} +{"id": "590", "title": "The Hours", "year": 2002, "duration_min": 114, "rating": 7.0, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "london england, suicide, gay, poetry, aids, drowning, depression, home, way of life, self-destruction, province, literature, empowerment, country life, family's daily life", "tags_pipe": "|london england|suicide|gay|poetry|aids|drowning|depression|home|way of life|self-destruction|province|literature|empowerment|country life|family's daily life|", "overview": "\"The Hours\" is the story of three women searching for more potent, meaningful lives. Each is alive at a different time and place, all are linked by their yearnings and their fears. Their stories intertwine, and finally come together in a surprising, transcendent moment of shared recognition.", "text_for_embedding": "The Hours (2002). Genres: Drama. \"The Hours\" is the story of three women searching for more potent, meaningful lives. Each is alive at a different time and place, all are linked by their yearnings and their fears. Their stories intertwine, and finally come together in a surprising, transcendent moment of shared recognition.. Tags: london england, suicide, gay, poetry, aids, drowning, depression, home, way of life, self-destruction, province, literature, empowerment, country life, family's daily life"} +{"id": "9655", "title": "She's the Man", "year": 2006, "duration_min": 105, "rating": 6.4, "genres": "Comedy, Drama, Family, Romance", "genres_pipe": "|Comedy|Drama|Family|Romance|", "keywords": "roommate, twin sister, sport, boarding school, twin brother, mistaken identity, soccer, teenager, teen comedy, tomboy, fake identity, disguised voice, the big game", "tags_pipe": "|roommate|twin sister|sport|boarding school|twin brother|mistaken identity|soccer|teenager|teen comedy|tomboy|fake identity|disguised voice|the big game|", "overview": "Viola Johnson is in a real jam. Complications threaten her scheme to pose as her twin brother, Sebastian, and take his place at a new boarding school. She falls in love with her handsome roommate, Duke, who loves beautiful Olivia, who has fallen for Sebastian! As if that were not enough, Viola's twin returns from London ahead of schedule but has no idea that his sister has already replaced him on campus.", "text_for_embedding": "She's the Man (2006). Genres: Comedy, Drama, Family, Romance. Viola Johnson is in a real jam. Complications threaten her scheme to pose as her twin brother, Sebastian, and take his place at a new boarding school. She falls in love with her handsome roommate, Duke, who loves beautiful Olivia, who has fallen for Sebastian! As if that were not enough, Viola's twin returns from London ahead of schedule but has no idea that his sister has already replaced him on campus.. Tags: roommate, twin sister, sport, boarding school, twin brother, mistaken identity, soccer, teenager, teen comedy, tomboy, fake identity, disguised voice, the big game"} +{"id": "1268", "title": "Mr. Bean's Holiday", "year": 2007, "duration_min": 90, "rating": 6.1, "genres": "Family, Comedy", "genres_pipe": "|Family|Comedy|", "keywords": "holiday, france, film director, chaos, clumsy fellow, to drop brick, aftercreditsstinger", "tags_pipe": "|holiday|france|film director|chaos|clumsy fellow|to drop brick|aftercreditsstinger|", "overview": "Mr. Bean wins a trip to Cannes where he unwittingly separates a young boy from his father and must help the two reunite. On the way he discovers France, bicycling and true love, among other things.", "text_for_embedding": "Mr. Bean's Holiday (2007). Genres: Family, Comedy. Mr. Bean wins a trip to Cannes where he unwittingly separates a young boy from his father and must help the two reunite. On the way he discovers France, bicycling and true love, among other things.. Tags: holiday, france, film director, chaos, clumsy fellow, to drop brick, aftercreditsstinger"} +{"id": "11237", "title": "Anacondas: The Hunt for the Blood Orchid", "year": 2004, "duration_min": 97, "rating": 4.9, "genres": "Adventure, Action, Horror, Science Fiction, Thriller", "genres_pipe": "|Adventure|Action|Horror|Science Fiction|Thriller|", "keywords": "snake, expedition, traitor, research, orchid, jungle, animal horror", "tags_pipe": "|snake|expedition|traitor|research|orchid|jungle|animal horror|", "overview": "The blood orchid - A rare flower that holds the secret of eternal life and a fortune to the pharmaceutical company that finds it. Led by a two-fisted soldier of fortune, a scientific expedition is sent deep into the jungles of Borneo to locate and bring back samples of the legendary plant. Battling their way upriver, the explorers brave poisonous insects, ferocious crocodiles and savage headhunters, unaware they're being stalked by an even greater danger: a nest of giant anacondas, voracious, fifty-foot-long flesh-eaters who'll stop at nothing to protect their breeding ground, the blood orchid's home.", "text_for_embedding": "Anacondas: The Hunt for the Blood Orchid (2004). Genres: Adventure, Action, Horror, Science Fiction, Thriller. The blood orchid - A rare flower that holds the secret of eternal life and a fortune to the pharmaceutical company that finds it. Led by a two-fisted soldier of fortune, a scientific expedition is sent deep into the jungles of Borneo to locate and bring back samples of the legendary plant. Battling their way upriver, the explorers brave poisonous insects, ferocious crocodiles and savage headhunters, unaware they're being stalked by an even greater danger: a nest of giant anacondas, voracious, fifty-foot-long flesh-eaters who'll stop at nothing to protect their breeding ground, the blood orchid's home.. Tags: snake, expedition, traitor, research, orchid, jungle, animal horror"} +{"id": "190955", "title": "Blood Ties", "year": 2013, "duration_min": 128, "rating": 6.0, "genres": "Thriller, Crime, Drama", "genres_pipe": "|Thriller|Crime|Drama|", "keywords": "", "tags_pipe": "", "overview": "Two brothers, on either side of the law, face off over organized crime in Brooklyn during the 1970s.", "text_for_embedding": "Blood Ties (2013). Genres: Thriller, Crime, Drama. Two brothers, on either side of the law, face off over organized crime in Brooklyn during the 1970s.. Tags: "} +{"id": "5123", "title": "August Rush", "year": 2007, "duration_min": 114, "rating": 7.1, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "date, loss of son, love at first sight, child labour, guitar, loss of child, lover (female), love of one's life, harmonica, lie, choir, church choir, rock star, cello, forbidden love", "tags_pipe": "|date|loss of son|love at first sight|child labour|guitar|loss of child|lover (female)|love of one's life|harmonica|lie|choir|church choir|rock star|cello|forbidden love|", "overview": "A drama with fairy tale elements, where an orphaned musical prodigy uses his gift as a clue to finding his birth parents.", "text_for_embedding": "August Rush (2007). Genres: Drama. A drama with fairy tale elements, where an orphaned musical prodigy uses his gift as a clue to finding his birth parents.. Tags: date, loss of son, love at first sight, child labour, guitar, loss of child, lover (female), love of one's life, harmonica, lie, choir, church choir, rock star, cello, forbidden love"} +{"id": "4518", "title": "Elizabeth", "year": 1998, "duration_min": 124, "rating": 7.1, "genres": "Drama, History", "genres_pipe": "|Drama|History|", "keywords": "duke, historical figure, treason, catholic, protestant", "tags_pipe": "|duke|historical figure|treason|catholic|protestant|", "overview": "The story of the ascension to the throne and the early reign of Queen Elizabeth the First, the endless attempts by her council to marry her off, the Catholic hatred of her and her romance with Lord Robert Dudley.", "text_for_embedding": "Elizabeth (1998). Genres: Drama, History. The story of the ascension to the throne and the early reign of Queen Elizabeth the First, the endless attempts by her council to marry her off, the Catholic hatred of her and her romance with Lord Robert Dudley.. Tags: duke, historical figure, treason, catholic, protestant"} +{"id": "11932", "title": "Bride of Chucky", "year": 1998, "duration_min": 89, "rating": 5.5, "genres": "Horror, Comedy", "genres_pipe": "|Horror|Comedy|", "keywords": "route 66, puppet, evil doll, killer doll, killer toys, toy comes to life, chucky", "tags_pipe": "|route 66|puppet|evil doll|killer doll|killer toys|toy comes to life|chucky|", "overview": "Chucky hooks up with another murderous doll, the bridal gown-clad Tiffany, for a Route 66 murder spree with their unwitting hosts.", "text_for_embedding": "Bride of Chucky (1998). Genres: Horror, Comedy. Chucky hooks up with another murderous doll, the bridal gown-clad Tiffany, for a Route 66 murder spree with their unwitting hosts.. Tags: route 66, puppet, evil doll, killer doll, killer toys, toy comes to life, chucky"} +{"id": "11165", "title": "Tora! Tora! Tora!", "year": 1970, "duration_min": 144, "rating": 6.9, "genres": "History, Action, Drama, Adventure, War", "genres_pipe": "|History|Action|Drama|Adventure|War|", "keywords": "japan, world war ii, pearl harbor, soldier, imperial japan", "tags_pipe": "|japan|world war ii|pearl harbor|soldier|imperial japan|", "overview": "In the summer of 1941, the United States and Japan seem on the brink of war after constant embargos and failed diplomacy come to no end. \"Tora! Tora! Tora!\", named after the code words use by the lead Japanese pilot to indicate they had surprised the Americans, covers the days leading up to the attack on Pearl Harbor, which plunged America into the Second World War.", "text_for_embedding": "Tora! Tora! Tora! (1970). Genres: History, Action, Drama, Adventure, War. In the summer of 1941, the United States and Japan seem on the brink of war after constant embargos and failed diplomacy come to no end. \"Tora! Tora! Tora!\", named after the code words use by the lead Japanese pilot to indicate they had surprised the Americans, covers the days leading up to the attack on Pearl Harbor, which plunged America into the Second World War.. Tags: japan, world war ii, pearl harbor, soldier, imperial japan"} +{"id": "6116", "title": "Spice World", "year": 1997, "duration_min": 93, "rating": 4.7, "genres": "Adventure, Fantasy, Drama, Comedy, Music", "genres_pipe": "|Adventure|Fantasy|Drama|Comedy|Music|", "keywords": "pop, pop culture, pop star", "tags_pipe": "|pop|pop culture|pop star|", "overview": "The film follows the Spice Girls and their entourage (mostly fictional characters) - manager Clifford, his assistant Deborah, filmmaker Piers (who is trying to shoot a documentary on \"the real Spice Girls\") and others in their everyday life.", "text_for_embedding": "Spice World (1997). Genres: Adventure, Fantasy, Drama, Comedy, Music. The film follows the Spice Girls and their entourage (mostly fictional characters) - manager Clifford, his assistant Deborah, filmmaker Piers (who is trying to shoot a documentary on \"the real Spice Girls\") and others in their everyday life.. Tags: pop, pop culture, pop star"} +{"id": "57431", "title": "The Sitter", "year": 2011, "duration_min": 81, "rating": 5.4, "genres": "Comedy", "genres_pipe": "|Comedy|", "keywords": "babysitter, duringcreditsstinger", "tags_pipe": "|babysitter|duringcreditsstinger|", "overview": "Noah, is not your typical entertain-the-kids-no-matter-how-boring-it-is kind of sitter. He's reluctant to take a sitting gig; he'd rather, well, be doing anything else, especially if it involves slacking. When Noah is watching the neighbor's kid he gets a booty call from his girlfriend in the city. To hook up with her, Noah takes to the streets, but his urban adventure spins out of control as he finds himself on the run from a maniacal drug lord.", "text_for_embedding": "The Sitter (2011). Genres: Comedy. Noah, is not your typical entertain-the-kids-no-matter-how-boring-it-is kind of sitter. He's reluctant to take a sitting gig; he'd rather, well, be doing anything else, especially if it involves slacking. When Noah is watching the neighbor's kid he gets a booty call from his girlfriend in the city. To hook up with her, Noah takes to the streets, but his urban adventure spins out of control as he finds himself on the run from a maniacal drug lord.. Tags: babysitter, duringcreditsstinger"} +{"id": "21724", "title": "Dance Flick", "year": 2009, "duration_min": 83, "rating": 4.7, "genres": "Action, Comedy, Music", "genres_pipe": "|Action|Comedy|Music|", "keywords": "rap music, hip-hop", "tags_pipe": "|rap music|hip-hop|", "overview": "Street dancer, Thomas Uncles is from the wrong side of the tracks, but his bond with the beautiful Megan White might help the duo realize their dreams as they enter in the mother of all dance battles.", "text_for_embedding": "Dance Flick (2009). Genres: Action, Comedy, Music. Street dancer, Thomas Uncles is from the wrong side of the tracks, but his bond with the beautiful Megan White might help the duo realize their dreams as they enter in the mother of all dance battles.. Tags: rap music, hip-hop"} +{"id": "278", "title": "The Shawshank Redemption", "year": 1994, "duration_min": 142, "rating": 8.5, "genres": "Drama, Crime", "genres_pipe": "|Drama|Crime|", "keywords": "prison, corruption, police brutality, prison cell, delinquent, parole board, escape from prison, wrongful imprisonment, framed for murder, 1940s", "tags_pipe": "|prison|corruption|police brutality|prison cell|delinquent|parole board|escape from prison|wrongful imprisonment|framed for murder|1940s|", "overview": "Framed in the 1940s for the double murder of his wife and her lover, upstanding banker Andy Dufresne begins a new life at the Shawshank prison, where he puts his accounting skills to work for an amoral warden. During his long stretch in prison, Dufresne comes to be admired by the other inmates -- including an older prisoner named Red -- for his integrity and unquenchable sense of hope.", "text_for_embedding": "The Shawshank Redemption (1994). Genres: Drama, Crime. Framed in the 1940s for the double murder of his wife and her lover, upstanding banker Andy Dufresne begins a new life at the Shawshank prison, where he puts his accounting skills to work for an amoral warden. During his long stretch in prison, Dufresne comes to be admired by the other inmates -- including an older prisoner named Red -- for his integrity and unquenchable sense of hope.. Tags: prison, corruption, police brutality, prison cell, delinquent, parole board, escape from prison, wrongful imprisonment, framed for murder, 1940s"} +{"id": "9290", "title": "Crocodile Dundee in Los Angeles", "year": 2001, "duration_min": 92, "rating": 4.7, "genres": "Adventure, Comedy", "genres_pipe": "|Adventure|Comedy|", "keywords": "crocodile, traffic jam, los angeles, stolen painting", "tags_pipe": "|crocodile|traffic jam|los angeles|stolen painting|", "overview": "After settling in the tiny Australian town of Walkabout Creek with his significant other and his young son, Mick \"Crocodile\" Dundee is thrown for a loop when a prestigious Los Angeles newspaper offers his honey a job. The family migrates back to the United States, and Croc and son soon find themselves learning some lessons about American life -- many of them inadvertent", "text_for_embedding": "Crocodile Dundee in Los Angeles (2001). Genres: Adventure, Comedy. After settling in the tiny Australian town of Walkabout Creek with his significant other and his young son, Mick \"Crocodile\" Dundee is thrown for a loop when a prestigious Los Angeles newspaper offers his honey a job. The family migrates back to the United States, and Croc and son soon find themselves learning some lessons about American life -- many of them inadvertent. Tags: crocodile, traffic jam, los angeles, stolen painting"} +{"id": "11543", "title": "Kingpin", "year": 1996, "duration_min": 113, "rating": 6.7, "genres": "Comedy", "genres_pipe": "|Comedy|", "keywords": "sport, handicap, sexual favor, star spangled banner, bowling team, hair loss, biblical interpretation, comb over, female stripper, inflatable doll, combover, unlikely lovers, kingpin, carriage, lancaster, pa", "tags_pipe": "|sport|handicap|sexual favor|star spangled banner|bowling team|hair loss|biblical interpretation|comb over|female stripper|inflatable doll|combover|unlikely lovers|kingpin|carriage|lancaster, pa|", "overview": "After bowler Roy Munson swindles the wrong crowd and is left with a hook for a hand, he settles into impoverished obscurity. That is, until he uncovers the next big thing: an Amish kid named Ishmael. So, the corrupt and the hopelessly naïve hit the circuit intent on settling an old score with Big Ern.", "text_for_embedding": "Kingpin (1996). Genres: Comedy. After bowler Roy Munson swindles the wrong crowd and is left with a hook for a hand, he settles into impoverished obscurity. That is, until he uncovers the next big thing: an Amish kid named Ishmael. So, the corrupt and the hopelessly naïve hit the circuit intent on settling an old score with Big Ern.. Tags: sport, handicap, sexual favor, star spangled banner, bowling team, hair loss, biblical interpretation, comb over, female stripper, inflatable doll, combover, unlikely lovers, kingpin, carriage, lancaster, pa"} +{"id": "284536", "title": "The Gambler", "year": 2014, "duration_min": 111, "rating": 5.7, "genres": "Thriller, Crime, Drama", "genres_pipe": "|Thriller|Crime|Drama|", "keywords": "gambling, gun, professor, beating, gambler, loan shark", "tags_pipe": "|gambling|gun|professor|beating|gambler|loan shark|", "overview": "Literature professor Jim Bennett leads a secret life as a high-stakes gambler. Always a risk-taker, Bennett bets it all when he borrows from a gangster and offers his own life as collateral. Staying one step ahead, he pits his creditor against the operator of an illicit gambling ring while garnering the attention of Frank, a paternalistic loan shark. As his relationship with a student deepens, Bennett must risk everything for a second chance.", "text_for_embedding": "The Gambler (2014). Genres: Thriller, Crime, Drama. Literature professor Jim Bennett leads a secret life as a high-stakes gambler. Always a risk-taker, Bennett bets it all when he borrows from a gangster and offers his own life as collateral. Staying one step ahead, he pits his creditor against the operator of an illicit gambling ring while garnering the attention of Frank, a paternalistic loan shark. As his relationship with a student deepens, Bennett must risk everything for a second chance.. Tags: gambling, gun, professor, beating, gambler, loan shark"} +{"id": "152737", "title": "August: Osage County", "year": 2013, "duration_min": 121, "rating": 6.9, "genres": "Comedy, Drama", "genres_pipe": "|Comedy|Drama|", "keywords": "suicide, drug addiction, funeral, dysfunctional family, based on play, midwest, southern, bleak comedy, mental disorders", "tags_pipe": "|suicide|drug addiction|funeral|dysfunctional family|based on play|midwest|southern|bleak comedy|mental disorders|", "overview": "A look at the lives of the strong-willed women of the Weston family, whose paths have diverged until a family crisis brings them back to the Midwest house they grew up in, and to the dysfunctional woman who raised them.", "text_for_embedding": "August: Osage County (2013). Genres: Comedy, Drama. A look at the lives of the strong-willed women of the Weston family, whose paths have diverged until a family crisis brings them back to the Midwest house they grew up in, and to the dysfunctional woman who raised them.. Tags: suicide, drug addiction, funeral, dysfunctional family, based on play, midwest, southern, bleak comedy, mental disorders"} +{"id": "13374", "title": "Ice Princess", "year": 2005, "duration_min": 98, "rating": 5.9, "genres": "Drama, Comedy, Family", "genres_pipe": "|Drama|Comedy|Family|", "keywords": "sport, figure skating, teenage girl, teen movie, teenager", "tags_pipe": "|sport|figure skating|teenage girl|teen movie|teenager|", "overview": "With the help of her coach, her parents, and the boy who drives the Zamboni machine, nothing can stop Casey (Trachtenberg) from realizing her dream to be a champion figure skater.", "text_for_embedding": "Ice Princess (2005). Genres: Drama, Comedy, Family. With the help of her coach, her parents, and the boy who drives the Zamboni machine, nothing can stop Casey (Trachtenberg) from realizing her dream to be a champion figure skater.. Tags: sport, figure skating, teenage girl, teen movie, teenager"} +{"id": "8976", "title": "A Lot Like Love", "year": 2005, "duration_min": 107, "rating": 6.5, "genres": "Comedy", "genres_pipe": "|Comedy|", "keywords": "new york, shyness, career, flight, romantic comedy, travel, male female relationship, los angeles", "tags_pipe": "|new york|shyness|career|flight|romantic comedy|travel|male female relationship|los angeles|", "overview": "On a flight from Los Angeles to New York, Oliver and Emily make a connection, only to decide that they are poorly suited to be together. Over the next seven years, however, they are reunited time and time again, they go from being acquaintances to close friends to ... lovers?", "text_for_embedding": "A Lot Like Love (2005). Genres: Comedy. On a flight from Los Angeles to New York, Oliver and Emily make a connection, only to decide that they are poorly suited to be together. Over the next seven years, however, they are reunited time and time again, they go from being acquaintances to close friends to ... lovers?. Tags: new york, shyness, career, flight, romantic comedy, travel, male female relationship, los angeles"} +{"id": "319888", "title": "Eddie the Eagle", "year": 2016, "duration_min": 106, "rating": 7.2, "genres": "Comedy, Drama, History", "genres_pipe": "|Comedy|Drama|History|", "keywords": "underdog, olympic games, ski jump, biography, sport, based on true story, britain, skiing, feel good", "tags_pipe": "|underdog|olympic games|ski jump|biography|sport|based on true story|britain|skiing|feel good|", "overview": "Inspired by true events, Eddie the Eagle is a feel-good story about Michael \"Eddie\" Edwards (Taron Egerton), an unlikely but courageous British ski-jumper who never stopped believing in himself - even as an entire nation was counting him out. With the help of a rebellious and charismatic coach (played by Hugh Jackman), Eddie takes on the establishment and wins the hearts of sports fans around the world by making an improbable and historic showing at the 1988 Calgary Winter Olympics.", "text_for_embedding": "Eddie the Eagle (2016). Genres: Comedy, Drama, History. Inspired by true events, Eddie the Eagle is a feel-good story about Michael \"Eddie\" Edwards (Taron Egerton), an unlikely but courageous British ski-jumper who never stopped believing in himself - even as an entire nation was counting him out. With the help of a rebellious and charismatic coach (played by Hugh Jackman), Eddie takes on the establishment and wins the hearts of sports fans around the world by making an improbable and historic showing at the 1988 Calgary Winter Olympics.. Tags: underdog, olympic games, ski jump, biography, sport, based on true story, britain, skiing, feel good"} +{"id": "9469", "title": "He Got Game", "year": 1998, "duration_min": 136, "rating": 6.7, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "prison, father son relationship, homicide, begnadigung, release from prison, forgiveness, college, basketball, independent film", "tags_pipe": "|prison|father son relationship|homicide|begnadigung|release from prison|forgiveness|college|basketball|independent film|", "overview": "A basketball player's father must try to convince him to go to a college so he can get a shorter sentence.", "text_for_embedding": "He Got Game (1998). Genres: Drama. A basketball player's father must try to convince him to go to a college so he can get a shorter sentence.. Tags: prison, father son relationship, homicide, begnadigung, release from prison, forgiveness, college, basketball, independent film"} +{"id": "1909", "title": "Don Juan DeMarco", "year": 1994, "duration_min": 97, "rating": 6.2, "genres": "Romance, Drama, Comedy", "genres_pipe": "|Romance|Drama|Comedy|", "keywords": "sex addiction, love, mental institution, patient, psychiatrist, don juan", "tags_pipe": "|sex addiction|love|mental institution|patient|psychiatrist|don juan|", "overview": "John Arnold DeMarco is a man who believes he is Don Juan, the greatest lover in the world. Clad in a cape and mask, DeMarco undergoes psychiatric treatment with Dr. Jack Mickler to cure him of his apparent delusion. But the psychiatric sessions have an unexpected effect on the psychiatric staff and, most profoundly, Dr Mickler, who rekindles the romance in his complacent marriage.", "text_for_embedding": "Don Juan DeMarco (1994). Genres: Romance, Drama, Comedy. John Arnold DeMarco is a man who believes he is Don Juan, the greatest lover in the world. Clad in a cape and mask, DeMarco undergoes psychiatric treatment with Dr. Jack Mickler to cure him of his apparent delusion. But the psychiatric sessions have an unexpected effect on the psychiatric staff and, most profoundly, Dr Mickler, who rekindles the romance in his complacent marriage.. Tags: sex addiction, love, mental institution, patient, psychiatrist, don juan"} +{"id": "22971", "title": "Dear John", "year": 2010, "duration_min": 115, "rating": 6.6, "genres": "Drama, Romance, War", "genres_pipe": "|Drama|Romance|War|", "keywords": "based on novel, army, love, u.s. soldier", "tags_pipe": "|based on novel|army|love|u.s. soldier|", "overview": "Sergeant John Tyree is home on a 2 week leave from Germany. He meets Savannah after he dives into the ocean to retrieve Savannah's purse that had fallen off the pier. John falls in love with Savannah who is a student on spring break helping build a house for Habitat for Humanity. A romance occurs and Savannah falls deeply in love with John. She promises to write John overseas until he returns.", "text_for_embedding": "Dear John (2010). Genres: Drama, Romance, War. Sergeant John Tyree is home on a 2 week leave from Germany. He meets Savannah after he dives into the ocean to retrieve Savannah's purse that had fallen off the pier. John falls in love with Savannah who is a student on spring break helping build a house for Habitat for Humanity. A romance occurs and Savannah falls deeply in love with John. She promises to write John overseas until he returns.. Tags: based on novel, army, love, u.s. soldier"} +{"id": "34813", "title": "The Losers", "year": 2010, "duration_min": 97, "rating": 6.2, "genres": "Action, Adventure, Crime, Mystery, Thriller", "genres_pipe": "|Action|Adventure|Crime|Mystery|Thriller|", "keywords": "hospital, black ops, reference to macgyver, sucked into jet engine", "tags_pipe": "|hospital|black ops|reference to macgyver|sucked into jet engine|", "overview": "A tale of double cross and revenge, centered upon the members of an elite U.S. Special Forces unit sent into the Bolivian jungle on a search and destroy mission. The team-Clay, Jensen, Roque, Pooch and Cougar -find themselves the target of a lethal betrayal instigated from inside by a powerful enemy known only as Max. Presumed dead, the group makes plans to even the score when they're joined by the mysterious Aisha, a beautiful operative with her own agenda. Working together, they must remain deep undercover while tracking the heavily-guarded Max, a ruthless man bent on embroiling the world in a new high-tech global war.", "text_for_embedding": "The Losers (2010). Genres: Action, Adventure, Crime, Mystery, Thriller. A tale of double cross and revenge, centered upon the members of an elite U.S. Special Forces unit sent into the Bolivian jungle on a search and destroy mission. The team-Clay, Jensen, Roque, Pooch and Cougar -find themselves the target of a lethal betrayal instigated from inside by a powerful enemy known only as Max. Presumed dead, the group makes plans to even the score when they're joined by the mysterious Aisha, a beautiful operative with her own agenda. Working together, they must remain deep undercover while tracking the heavily-guarded Max, a ruthless man bent on embroiling the world in a new high-tech global war.. Tags: hospital, black ops, reference to macgyver, sucked into jet engine"} +{"id": "46261", "title": "Don't Be Afraid of the Dark", "year": 2010, "duration_min": 99, "rating": 5.4, "genres": "Fantasy, Horror, Thriller", "genres_pipe": "|Fantasy|Horror|Thriller|", "keywords": "monster, remake, creature, bathtub, teeth, old house, scary little people", "tags_pipe": "|monster|remake|creature|bathtub|teeth|old house|scary little people|", "overview": "A young girl sent to live with her father and his new girlfriend discovers creatures in her new home who want to claim her as one of their own.", "text_for_embedding": "Don't Be Afraid of the Dark (2010). Genres: Fantasy, Horror, Thriller. A young girl sent to live with her father and his new girlfriend discovers creatures in her new home who want to claim her as one of their own.. Tags: monster, remake, creature, bathtub, teeth, old house, scary little people"} +{"id": "10431", "title": "War", "year": 2007, "duration_min": 103, "rating": 6.0, "genres": "Action, Thriller, Crime", "genres_pipe": "|Action|Thriller|Crime|", "keywords": "fbi, revenge, fbi agent", "tags_pipe": "|fbi|revenge|fbi agent|", "overview": "FBI agent Jack Crawford is out for revenge when his partner is killed and all clues point to the mysterious assassin Rogue. But when Rogue turns up years later to take care of some unfinished business, he triggers a violent clash of rival gangs. Will the truth come out before it's too late? And when the dust settles, who will remain standing?", "text_for_embedding": "War (2007). Genres: Action, Thriller, Crime. FBI agent Jack Crawford is out for revenge when his partner is killed and all clues point to the mysterious assassin Rogue. But when Rogue turns up years later to take care of some unfinished business, he triggers a violent clash of rival gangs. Will the truth come out before it's too late? And when the dust settles, who will remain standing?. Tags: fbi, revenge, fbi agent"} +{"id": "8051", "title": "Punch-Drunk Love", "year": 2002, "duration_min": 95, "rating": 6.9, "genres": "Comedy, Drama, Romance", "genres_pipe": "|Comedy|Drama|Romance|", "keywords": "shyness, brother sister relationship, business man", "tags_pipe": "|shyness|brother sister relationship|business man|", "overview": "A beleaguered small-business owner gets a harmonium and embarks on a romantic journey with a mysterious woman.", "text_for_embedding": "Punch-Drunk Love (2002). Genres: Comedy, Drama, Romance. A beleaguered small-business owner gets a harmonium and embarks on a romantic journey with a mysterious woman.. Tags: shyness, brother sister relationship, business man"} +{"id": "9352", "title": "EuroTrip", "year": 2004, "duration_min": 93, "rating": 6.5, "genres": "Comedy", "genres_pipe": "|Comedy|", "keywords": "paris, berlin, alcohol, sex, nudity, adventure, pen pals, travel, nudism, marijuana, teenager, duringcreditsstinger", "tags_pipe": "|paris|berlin|alcohol|sex|nudity|adventure|pen pals|travel|nudism|marijuana|teenager|duringcreditsstinger|", "overview": "When Scott learns that his longtime cyber-buddy from Berlin is a gorgeous young woman, he and his friends embark on a trip across Europe.", "text_for_embedding": "EuroTrip (2004). Genres: Comedy. When Scott learns that his longtime cyber-buddy from Berlin is a gorgeous young woman, he and his friends embark on a trip across Europe.. Tags: paris, berlin, alcohol, sex, nudity, adventure, pen pals, travel, nudism, marijuana, teenager, duringcreditsstinger"} +{"id": "10167", "title": "Half Past Dead", "year": 2002, "duration_min": 98, "rating": 4.6, "genres": "Crime, Action, Thriller", "genres_pipe": "|Crime|Action|Thriller|", "keywords": "resistance, undercover, alcatraz, stolen money", "tags_pipe": "|resistance|undercover|alcatraz|stolen money|", "overview": "This movie tells the story of a man who goes undercover in a hi-tech prison to find out information to help prosecute those who killed his wife. While there he stumbles onto a plot involving a death-row inmate and his $200 million stash of gold.", "text_for_embedding": "Half Past Dead (2002). Genres: Crime, Action, Thriller. This movie tells the story of a man who goes undercover in a hi-tech prison to find out information to help prosecute those who killed his wife. While there he stumbles onto a plot involving a death-row inmate and his $200 million stash of gold.. Tags: resistance, undercover, alcatraz, stolen money"} +{"id": "18147", "title": "Unaccompanied Minors", "year": 2006, "duration_min": 90, "rating": 5.4, "genres": "Comedy, Family", "genres_pipe": "|Comedy|Family|", "keywords": "holiday", "tags_pipe": "|holiday|", "overview": "Five disparate kids snowed in at the airport on Christmas Eve learn some lessons about friendship when they launch a bid to get back to their families and outsmart a disgruntled airport official who wants to keep them grounded.", "text_for_embedding": "Unaccompanied Minors (2006). Genres: Comedy, Family. Five disparate kids snowed in at the airport on Christmas Eve learn some lessons about friendship when they launch a bid to get back to their families and outsmart a disgruntled airport official who wants to keep them grounded.. Tags: holiday"} +{"id": "17170", "title": "Bright Lights, Big City", "year": 1988, "duration_min": 107, "rating": 4.7, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "magazine, writer, drug, fashion show", "tags_pipe": "|magazine|writer|drug|fashion show|", "overview": "A young kid from Kansas moves to New York to work on a magazine. He gets caught up in the world of drink and drugs, and starts a steady decline. The only hope is the cousin of one of his drinking partners, can she pull him through it ?", "text_for_embedding": "Bright Lights, Big City (1988). Genres: Drama. A young kid from Kansas moves to New York to work on a magazine. He gets caught up in the world of drink and drugs, and starts a steady decline. The only hope is the cousin of one of his drinking partners, can she pull him through it ?. Tags: magazine, writer, drug, fashion show"} +{"id": "18975", "title": "The Adventures of Pinocchio", "year": 1996, "duration_min": 90, "rating": 5.0, "genres": "Animation, Family, Fantasy", "genres_pipe": "|Animation|Family|Fantasy|", "keywords": "italy, father son relationship, pinocchio, love, school, crime, having fun, poor people, boys", "tags_pipe": "|italy|father son relationship|pinocchio|love|school|crime|having fun|poor people|boys|", "overview": "One of puppet-maker Geppetto's creations comes magically to life. This puppet, Pinocchio, has one major desire and that is to become a real boy someday. In order to accomplish this goal he has to learn to act responsibly. This film shows you the adventures on which he learns valuable lessons.", "text_for_embedding": "The Adventures of Pinocchio (1996). Genres: Animation, Family, Fantasy. One of puppet-maker Geppetto's creations comes magically to life. This puppet, Pinocchio, has one major desire and that is to become a real boy someday. In order to accomplish this goal he has to learn to act responsibly. This film shows you the adventures on which he learns valuable lessons.. Tags: italy, father son relationship, pinocchio, love, school, crime, having fun, poor people, boys"} +{"id": "15487", "title": "The Greatest Game Ever Played", "year": 2005, "duration_min": 120, "rating": 6.9, "genres": "Drama, Family", "genres_pipe": "|Drama|Family|", "keywords": "sport", "tags_pipe": "|sport|", "overview": "A biopic of 20-year-old Francis Ouimet who defeated his golfing idol and 1900 US Open Champion, Harry Vardon.", "text_for_embedding": "The Greatest Game Ever Played (2005). Genres: Drama, Family. A biopic of 20-year-old Francis Ouimet who defeated his golfing idol and 1900 US Open Champion, Harry Vardon.. Tags: sport"} +{"id": "22825", "title": "The Box", "year": 2009, "duration_min": 115, "rating": 5.4, "genres": "Thriller, Science Fiction", "genres_pipe": "|Thriller|Science Fiction|", "keywords": "experiment, homicide, key, sacrifice, research, test, decision, police, control, stalker, murder, alien, gift, conspiracy, money", "tags_pipe": "|experiment|homicide|key|sacrifice|research|test|decision|police|control|stalker|murder|alien|gift|conspiracy|money|", "overview": "Norma and Arthur Lewis, a suburban couple with a young child, receive a simple wooden box as a gift, which bears fatal and irrevocable consequences. A mysterious stranger delivers the message that the box promises to bestow upon its owner $1 million with the press of a button. However pressing this button will simultaneously cause the death of another human being somewhere in the world; someone they don't know. With just 24 hours to have the box in their possession, Norma and Arthur find themselves in the cross-hairs of a startling moral dilemma and must face the true nature of their humanity.", "text_for_embedding": "The Box (2009). Genres: Thriller, Science Fiction. Norma and Arthur Lewis, a suburban couple with a young child, receive a simple wooden box as a gift, which bears fatal and irrevocable consequences. A mysterious stranger delivers the message that the box promises to bestow upon its owner $1 million with the press of a button. However pressing this button will simultaneously cause the death of another human being somewhere in the world; someone they don't know. With just 24 hours to have the box in their possession, Norma and Arthur find themselves in the cross-hairs of a startling moral dilemma and must face the true nature of their humanity.. Tags: experiment, homicide, key, sacrifice, research, test, decision, police, control, stalker, murder, alien, gift, conspiracy, money"} +{"id": "11152", "title": "The Ruins", "year": 2008, "duration_min": 91, "rating": 5.6, "genres": "Drama, Horror", "genres_pipe": "|Drama|Horror|", "keywords": "maya civilization, carnivorous plant, cancún, ruins", "tags_pipe": "|maya civilization|carnivorous plant|cancún|ruins|", "overview": "A group of friends whose leisurely Mexican holiday takes a turn for the worse when they, along with a fellow tourist embark on a remote archaeological dig in the jungle, where something evil lives among the ruins", "text_for_embedding": "The Ruins (2008). Genres: Drama, Horror. A group of friends whose leisurely Mexican holiday takes a turn for the worse when they, along with a fellow tourist embark on a remote archaeological dig in the jungle, where something evil lives among the ruins. Tags: maya civilization, carnivorous plant, cancún, ruins"} +{"id": "1831", "title": "The Next Best Thing", "year": 2000, "duration_min": 108, "rating": 4.3, "genres": "Comedy", "genres_pipe": "|Comedy|", "keywords": "gay, parents kids relationship, custody battle, flush, yoga, single, best friend, los angeles, single father, co-parenting", "tags_pipe": "|gay|parents kids relationship|custody battle|flush|yoga|single|best friend|los angeles|single father|co-parenting|", "overview": "A comedy-drama about best friends - one a straight woman, Abbie, the other a gay man, Robert - who decide to have a child together. Five years later, Abbie falls in love with a straight man and wants to move away with her and Robert's little boy Sam, and a nasty custody battle ensues.", "text_for_embedding": "The Next Best Thing (2000). Genres: Comedy. A comedy-drama about best friends - one a straight woman, Abbie, the other a gay man, Robert - who decide to have a child together. Five years later, Abbie falls in love with a straight man and wants to move away with her and Robert's little boy Sam, and a nasty custody battle ensues.. Tags: gay, parents kids relationship, custody battle, flush, yoga, single, best friend, los angeles, single father, co-parenting"} +{"id": "43931", "title": "My Soul to Take", "year": 2010, "duration_min": 107, "rating": 5.2, "genres": "Drama, Horror, Mystery, Thriller", "genres_pipe": "|Drama|Horror|Mystery|Thriller|", "keywords": "soul, serial killer, slasher, teenager, 3d", "tags_pipe": "|soul|serial killer|slasher|teenager|3d|", "overview": "A serial killer returns to his hometown to stalk seven children who share the same birthday as the date he was allegedly put to rest.", "text_for_embedding": "My Soul to Take (2010). Genres: Drama, Horror, Mystery, Thriller. A serial killer returns to his hometown to stalk seven children who share the same birthday as the date he was allegedly put to rest.. Tags: soul, serial killer, slasher, teenager, 3d"} +{"id": "10591", "title": "The Girl Next Door", "year": 2004, "duration_min": 108, "rating": 6.3, "genres": "Comedy", "genres_pipe": "|Comedy|", "keywords": "porn actor, pornographic video, high school, school party, blonde, girl next door", "tags_pipe": "|porn actor|pornographic video|high school|school party|blonde|girl next door|", "overview": "Exceptionally ambitious high schooler Matthew has aspirations for a career in politics when he falls in love with his gorgeous 19-year-old neighbor, Danielle. But Matthew's bright future is jeopardized when he finds Danielle was once a porn star. As Danielle's past catches up with her, Matthew's love for her forces him to re-evaluate his goals.", "text_for_embedding": "The Girl Next Door (2004). Genres: Comedy. Exceptionally ambitious high schooler Matthew has aspirations for a career in politics when he falls in love with his gorgeous 19-year-old neighbor, Danielle. But Matthew's bright future is jeopardized when he finds Danielle was once a porn star. As Danielle's past catches up with her, Matthew's love for her forces him to re-evaluate his goals.. Tags: porn actor, pornographic video, high school, school party, blonde, girl next door"} +{"id": "10861", "title": "Maximum Risk", "year": 1996, "duration_min": 100, "rating": 5.2, "genres": "Action, Adventure, Thriller", "genres_pipe": "|Action|Adventure|Thriller|", "keywords": "mistake in person, dying and death, twin brother, russian mafia", "tags_pipe": "|mistake in person|dying and death|twin brother|russian mafia|", "overview": "A policeman takes his twin brother's place and inherits his problems and a beautiful girlfriend. He is forced to kickbox his way from France to the U.S. and back while playing footsie with the FBI and Russian mafia. Not just muscles with a badge, the policeman must find the answers to some tough questions, none harder than what the heck is an accordian player doing in a sauna.", "text_for_embedding": "Maximum Risk (1996). Genres: Action, Adventure, Thriller. A policeman takes his twin brother's place and inherits his problems and a beautiful girlfriend. He is forced to kickbox his way from France to the U.S. and back while playing footsie with the FBI and Russian mafia. Not just muscles with a badge, the policeman must find the answers to some tough questions, none harder than what the heck is an accordian player doing in a sauna.. Tags: mistake in person, dying and death, twin brother, russian mafia"} +{"id": "12770", "title": "Stealing Harvard", "year": 2002, "duration_min": 85, "rating": 4.4, "genres": "Action, Comedy, Drama", "genres_pipe": "|Action|Comedy|Drama|", "keywords": "robbery, fool, studies, house, uncle, independent film, money", "tags_pipe": "|robbery|fool|studies|house|uncle|independent film|money|", "overview": "John and his girlfriend have vowed to marry once they save $30,000 for their dream house. But the minute they achieve their financial goal, John finds out his niece has been accepted at Harvard, and he's reminded of his promise to pay for her tuition (nearly $30,000). John's friend Duff convinces him to turn to petty crime to make the payment … but Duff's hare-brained schemes spin quickly out of control.", "text_for_embedding": "Stealing Harvard (2002). Genres: Action, Comedy, Drama. John and his girlfriend have vowed to marry once they save $30,000 for their dream house. But the minute they achieve their financial goal, John finds out his niece has been accepted at Harvard, and he's reminded of his promise to pay for her tuition (nearly $30,000). John's friend Duff convinces him to turn to petty crime to make the payment … but Duff's hare-brained schemes spin quickly out of control.. Tags: robbery, fool, studies, house, uncle, independent film, money"} +{"id": "276907", "title": "Legend", "year": 2015, "duration_min": 131, "rating": 6.7, "genres": "Crime, Thriller", "genres_pipe": "|Crime|Thriller|", "keywords": "biography, based on true story, gangster, twins", "tags_pipe": "|biography|based on true story|gangster|twins|", "overview": "Suave, charming and volatile, Reggie Kray and his unstable twin brother Ronnie start to leave their mark on the London underworld in the 1960s. Using violence to get what they want, the siblings orchestrate robberies and murders while running nightclubs and protection rackets. With police Detective Leonard \"Nipper\" Read hot on their heels, the brothers continue their rapid rise to power and achieve tabloid notoriety.", "text_for_embedding": "Legend (2015). Genres: Crime, Thriller. Suave, charming and volatile, Reggie Kray and his unstable twin brother Ronnie start to leave their mark on the London underworld in the 1960s. Using violence to get what they want, the siblings orchestrate robberies and murders while running nightclubs and protection rackets. With police Detective Leonard \"Nipper\" Read hot on their heels, the brothers continue their rapid rise to power and achieve tabloid notoriety.. Tags: biography, based on true story, gangster, twins"} +{"id": "10074", "title": "Hot Rod", "year": 2007, "duration_min": 88, "rating": 6.3, "genres": "Action, Comedy", "genres_pipe": "|Action|Comedy|", "keywords": "stuntman, step father, swimming pool, aftercreditsstinger", "tags_pipe": "|stuntman|step father|swimming pool|aftercreditsstinger|", "overview": "For Rod Kimball, performing stunts is a way of life, even though he is rather accident-prone. Poor Rod cannot even get any respect from his stepfather, Frank, who beats him up in weekly sparring matches. When Frank falls ill, Rod devises his most outrageous stunt yet to raise money for Frank's operation -- and then Rod will kick Frank's butt.", "text_for_embedding": "Hot Rod (2007). Genres: Action, Comedy. For Rod Kimball, performing stunts is a way of life, even though he is rather accident-prone. Poor Rod cannot even get any respect from his stepfather, Frank, who beats him up in weekly sparring matches. When Frank falls ill, Rod devises his most outrageous stunt yet to raise money for Frank's operation -- and then Rod will kick Frank's butt.. Tags: stuntman, step father, swimming pool, aftercreditsstinger"} +{"id": "65055", "title": "Shark Night", "year": 2011, "duration_min": 91, "rating": 4.9, "genres": "Horror, Thriller", "genres_pipe": "|Horror|Thriller|", "keywords": "shark attack, louisiana, dirty cop, shark, aftercreditsstinger", "tags_pipe": "|shark attack|louisiana|dirty cop|shark|aftercreditsstinger|", "overview": "A weekend at a lake house in the Louisiana Gulf turns into a nightmare for seven vacationers as they are subjected to fresh-water shark attacks.", "text_for_embedding": "Shark Night (2011). Genres: Horror, Thriller. A weekend at a lake house in the Louisiana Gulf turns into a nightmare for seven vacationers as they are subjected to fresh-water shark attacks.. Tags: shark attack, louisiana, dirty cop, shark, aftercreditsstinger"} +{"id": "10397", "title": "Angela's Ashes", "year": 1999, "duration_min": 145, "rating": 7.0, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "emigration, irish-american, hunger, socially deprived family, famine, alcoholism, brooklyn new york city", "tags_pipe": "|emigration|irish-american|hunger|socially deprived family|famine|alcoholism|brooklyn new york city|", "overview": "Based on the best selling autobiography by Irish expat Frank McCourt, Angela's Ashes follows the experiences of young Frankie and his family as they try against all odds to escape the poverty endemic in the slums of pre-war Limerick. The film opens with the family in Brooklyn, but following the death of one of Frankie's siblings, they return home, only to find the situation there even worse. Prejudice against Frankie's Northern Irish father makes his search for employment in the Republic difficult despite his having fought for the IRA, and when he does find money, he spends the money on drink.", "text_for_embedding": "Angela's Ashes (1999). Genres: Drama. Based on the best selling autobiography by Irish expat Frank McCourt, Angela's Ashes follows the experiences of young Frankie and his family as they try against all odds to escape the poverty endemic in the slums of pre-war Limerick. The film opens with the family in Brooklyn, but following the death of one of Frankie's siblings, they return home, only to find the situation there even worse. Prejudice against Frankie's Northern Irish father makes his search for employment in the Republic difficult despite his having fought for the IRA, and when he does find money, he spends the money on drink.. Tags: emigration, irish-american, hunger, socially deprived family, famine, alcoholism, brooklyn new york city"} +{"id": "200505", "title": "Draft Day", "year": 2014, "duration_min": 109, "rating": 6.5, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "sport, duringcreditsstinger", "tags_pipe": "|sport|duringcreditsstinger|", "overview": "At the NFL Draft, general manager Sonny Weaver has the opportunity to rebuild his team when he trades for the number one pick. He must decide what he's willing to sacrifice on a life-changing day for a few hundred young men with NFL dreams.", "text_for_embedding": "Draft Day (2014). Genres: Drama. At the NFL Draft, general manager Sonny Weaver has the opportunity to rebuild his team when he trades for the number one pick. He must decide what he's willing to sacrifice on a life-changing day for a few hundred young men with NFL dreams.. Tags: sport, duringcreditsstinger"} +{"id": "11954", "title": "Lifeforce", "year": 1985, "duration_min": 116, "rating": 6.2, "genres": "Fantasy, Horror, Science Fiction, Thriller", "genres_pipe": "|Fantasy|Horror|Science Fiction|Thriller|", "keywords": "space marine, vampire, flying saucer, comet, alien, halley's comet", "tags_pipe": "|space marine|vampire|flying saucer|comet|alien|halley's comet|", "overview": "A space shuttle mission investigating Halley's Comet brings back a malevolent race of space vampires who transform most of London's population into zombies. The only survivor of the expedition and British authorities attempt to capture a mysterious but beautiful alien woman who appears responsible.", "text_for_embedding": "Lifeforce (1985). Genres: Fantasy, Horror, Science Fiction, Thriller. A space shuttle mission investigating Halley's Comet brings back a malevolent race of space vampires who transform most of London's population into zombies. The only survivor of the expedition and British authorities attempt to capture a mysterious but beautiful alien woman who appears responsible.. Tags: space marine, vampire, flying saucer, comet, alien, halley's comet"} +{"id": "60309", "title": "The Conspirator", "year": 2010, "duration_min": 122, "rating": 6.2, "genres": "Crime, Drama, History", "genres_pipe": "|Crime|Drama|History|", "keywords": "president, history, conspiracy, lawyer, trial, boarding house, military tribunal, historical, union, private club", "tags_pipe": "|president|history|conspiracy|lawyer|trial|boarding house|military tribunal|historical|union|private club|", "overview": "Mary Surratt is the lone female charged as a co-conspirator in the assassination trial of Abraham Lincoln. As the whole nation turns against her, she is forced to rely on her reluctant lawyer to uncover the truth and save her life.", "text_for_embedding": "The Conspirator (2010). Genres: Crime, Drama, History. Mary Surratt is the lone female charged as a co-conspirator in the assassination trial of Abraham Lincoln. As the whole nation turns against her, she is forced to rely on her reluctant lawyer to uncover the truth and save her life.. Tags: president, history, conspiracy, lawyer, trial, boarding house, military tribunal, historical, union, private club"} +{"id": "9787", "title": "Lords of Dogtown", "year": 2005, "duration_min": 107, "rating": 7.0, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "skateboarding, success, independent film, woman director", "tags_pipe": "|skateboarding|success|independent film|woman director|", "overview": "The film follows the surf and skateboarding trends that originated in Venice, California during the 1970s.", "text_for_embedding": "Lords of Dogtown (2005). Genres: Drama. The film follows the surf and skateboarding trends that originated in Venice, California during the 1970s.. Tags: skateboarding, success, independent film, woman director"} +{"id": "293646", "title": "The 33", "year": 2015, "duration_min": 120, "rating": 6.0, "genres": "Drama, History", "genres_pipe": "|Drama|History|", "keywords": "mining, chile, based on true story, survival, woman director, mining accident", "tags_pipe": "|mining|chile|based on true story|survival|woman director|mining accident|", "overview": "Based on a true story about the collapse at the mine in San Jose, Chile that left 33 miners isolated underground for 69 days.", "text_for_embedding": "The 33 (2015). Genres: Drama, History. Based on a true story about the collapse at the mine in San Jose, Chile that left 33 miners isolated underground for 69 days.. Tags: mining, chile, based on true story, survival, woman director, mining accident"} +{"id": "6978", "title": "Big Trouble in Little China", "year": 1986, "duration_min": 99, "rating": 7.1, "genres": "Action, Adventure, Comedy, Fantasy", "genres_pipe": "|Action|Adventure|Comedy|Fantasy|", "keywords": "kung fu, chinatown, magic, mystery", "tags_pipe": "|kung fu|chinatown|magic|mystery|", "overview": "When trucker, Jack Burton agreed to take his friend, Wang Chi to pick up his fiancee at the airport, he never expected to get involved in a supernatural battle between good and evil. Wang's fiancee has emerald green eyes, which make her a perfect target for immortal sorcerer, Lo Pan and his three invincible cronies. Lo Pan must marry a girl with green eyes so he can regain his physical form.", "text_for_embedding": "Big Trouble in Little China (1986). Genres: Action, Adventure, Comedy, Fantasy. When trucker, Jack Burton agreed to take his friend, Wang Chi to pick up his fiancee at the airport, he never expected to get involved in a supernatural battle between good and evil. Wang's fiancee has emerald green eyes, which make her a perfect target for immortal sorcerer, Lo Pan and his three invincible cronies. Lo Pan must marry a girl with green eyes so he can regain his physical form.. Tags: kung fu, chinatown, magic, mystery"} +{"id": "133698", "title": "Fly Me to the Moon", "year": 2012, "duration_min": 104, "rating": 5.6, "genres": "Comedy, Romance", "genres_pipe": "|Comedy|Romance|", "keywords": "", "tags_pipe": "", "overview": "Successful woman in love tries to break her family curse of every first marriage ending in divorce, by dashing to the alter with a random stranger before marrying her boyfriend.", "text_for_embedding": "Fly Me to the Moon (2012). Genres: Comedy, Romance. Successful woman in love tries to break her family curse of every first marriage ending in divorce, by dashing to the alter with a random stranger before marrying her boyfriend.. Tags: "} +{"id": "59440", "title": "Warrior", "year": 2011, "duration_min": 140, "rating": 7.7, "genres": "Action, Drama", "genres_pipe": "|Action|Drama|", "keywords": "bank, training, beating, mixed martial arts, teacher, muscleman, combat, alcoholic, gym, exercise", "tags_pipe": "|bank|training|beating|mixed martial arts|teacher|muscleman|combat|alcoholic|gym|exercise|", "overview": "The inspirational story of an estranged family that finds redemption in the unlikeliest of places…the MMA ring. Tommy Riordan (Tom Hardy), an ex-marine with a tragic past, returns home and enlists his father (Nick Nolte), a recovering alcoholic and former wrestling coach, to train him for “Sparta”, the biggest MMA tournament ever held. But when Tommy’s underdog brother, Brendan (Joel Edgerton), fights his way into the tournament, the two brothers must finally confront each other and the forces that pulled them apart. What ensues is the most gut-wrenching, soul-stirring, and unforgettable battle of their lives.", "text_for_embedding": "Warrior (2011). Genres: Action, Drama. The inspirational story of an estranged family that finds redemption in the unlikeliest of places…the MMA ring. Tommy Riordan (Tom Hardy), an ex-marine with a tragic past, returns home and enlists his father (Nick Nolte), a recovering alcoholic and former wrestling coach, to train him for “Sparta”, the biggest MMA tournament ever held. But when Tommy’s underdog brother, Brendan (Joel Edgerton), fights his way into the tournament, the two brothers must finally confront each other and the forces that pulled them apart. What ensues is the most gut-wrenching, soul-stirring, and unforgettable battle of their lives.. Tags: bank, training, beating, mixed martial arts, teacher, muscleman, combat, alcoholic, gym, exercise"} +{"id": "1770", "title": "Michael Collins", "year": 1996, "duration_min": 132, "rating": 6.7, "genres": "Drama, Thriller", "genres_pipe": "|Drama|Thriller|", "keywords": "civil war, fight, presidential election, freedom fighter, chinese civil war, ireland", "tags_pipe": "|civil war|fight|presidential election|freedom fighter|chinese civil war|ireland|", "overview": "Michael Collins plays a crucial role in the establishment of the Irish Free State in the 1920s, but becomes vilified by those hoping to create a completely independent Irish republic.", "text_for_embedding": "Michael Collins (1996). Genres: Drama, Thriller. Michael Collins plays a crucial role in the establishment of the Irish Free State in the 1920s, but becomes vilified by those hoping to create a completely independent Irish republic.. Tags: civil war, fight, presidential election, freedom fighter, chinese civil war, ireland"} +{"id": "10655", "title": "Gettysburg", "year": 1993, "duration_min": 254, "rating": 6.6, "genres": "War, Drama, History", "genres_pipe": "|War|Drama|History|", "keywords": "civil war, independence, troops, army, battle, union soldier, confederate soldier, american civil war", "tags_pipe": "|civil war|independence|troops|army|battle|union soldier|confederate soldier|american civil war|", "overview": "Summer 1863. The Confederacy pushes north into Pennsylvania. Union divisions converge to face them. The two great armies clash at Gettysburg, site of a theology school. For three days, through such legendary actions as Little Round Top and Pickett's Charge, the fate of \"one nation, indivisible\" hangs in the balance.", "text_for_embedding": "Gettysburg (1993). Genres: War, Drama, History. Summer 1863. The Confederacy pushes north into Pennsylvania. Union divisions converge to face them. The two great armies clash at Gettysburg, site of a theology school. For three days, through such legendary actions as Little Round Top and Pickett's Charge, the fate of \"one nation, indivisible\" hangs in the balance.. Tags: civil war, independence, troops, army, battle, union soldier, confederate soldier, american civil war"} +{"id": "8988", "title": "Stop-Loss", "year": 2008, "duration_min": 113, "rating": 6.1, "genres": "Drama, War", "genres_pipe": "|Drama|War|", "keywords": "post traumatic stress disorder, iraq war veteran, u.s. soldier, woman director", "tags_pipe": "|post traumatic stress disorder|iraq war veteran|u.s. soldier|woman director|", "overview": "A veteran soldier returns from his completed tour of duty in Iraq, only to find his life turned upside down when he is arbitrarily ordered to return to field duty by the Army.", "text_for_embedding": "Stop-Loss (2008). Genres: Drama, War. A veteran soldier returns from his completed tour of duty in Iraq, only to find his life turned upside down when he is arbitrarily ordered to return to field duty by the Army.. Tags: post traumatic stress disorder, iraq war veteran, u.s. soldier, woman director"} +{"id": "15992", "title": "Abandon", "year": 2002, "duration_min": 99, "rating": 4.6, "genres": "Drama, Mystery, Thriller", "genres_pipe": "|Drama|Mystery|Thriller|", "keywords": "alcohol, detective, dancer, nightmare, college, job, party, elite, suspense, drug, boyfriend, thesis, pressure", "tags_pipe": "|alcohol|detective|dancer|nightmare|college|job|party|elite|suspense|drug|boyfriend|thesis|pressure|", "overview": "A psychological thriller about a senior at one of America's most prestigious universities. Under enormous pressure to complete her thesis and earn a top job at one of the world's most competitive consulting firms, Katie is still coping with the sudden unexplained disappearance of her first love two years prior. As the investigation continues, Katie is forced to choose between past passions and new possibilities, even as new facts are uncovered.", "text_for_embedding": "Abandon (2002). Genres: Drama, Mystery, Thriller. A psychological thriller about a senior at one of America's most prestigious universities. Under enormous pressure to complete her thesis and earn a top job at one of the world's most competitive consulting firms, Katie is still coping with the sudden unexplained disappearance of her first love two years prior. As the investigation continues, Katie is forced to choose between past passions and new possibilities, even as new facts are uncovered.. Tags: alcohol, detective, dancer, nightmare, college, job, party, elite, suspense, drug, boyfriend, thesis, pressure"} +{"id": "17707", "title": "Brokedown Palace", "year": 1999, "duration_min": 100, "rating": 6.2, "genres": "Drama, Thriller", "genres_pipe": "|Drama|Thriller|", "keywords": "holiday, prison, thailand, drug, injustice", "tags_pipe": "|holiday|prison|thailand|drug|injustice|", "overview": "Best friends Alice and Darlene take a trip to Thailand after graduating high school. In Thailand, they meet a captivating Australian man, who calls himself Nick Parks. Darlene is particularly smitten with Nick and convinces Alice to take Nick up on his offer to treat the two of them to what amounts to a day trip to Hong Kong. In the airport, the girls are seized by the police and shocked to discover that one of their bags contains heroin.", "text_for_embedding": "Brokedown Palace (1999). Genres: Drama, Thriller. Best friends Alice and Darlene take a trip to Thailand after graduating high school. In Thailand, they meet a captivating Australian man, who calls himself Nick Parks. Darlene is particularly smitten with Nick and convinces Alice to take Nick up on his offer to treat the two of them to what amounts to a day trip to Hong Kong. In the airport, the girls are seized by the police and shocked to discover that one of their bags contains heroin.. Tags: holiday, prison, thailand, drug, injustice"} +{"id": "77883", "title": "The Possession", "year": 2012, "duration_min": 92, "rating": 5.8, "genres": "Horror, Thriller", "genres_pipe": "|Horror|Thriller|", "keywords": "", "tags_pipe": "", "overview": "A young girl buys an antique box at a yard sale, unaware that inside the collectible lives a malicious ancient spirit. The girl's father teams with his ex-wife to find a way to end the curse upon their child.", "text_for_embedding": "The Possession (2012). Genres: Horror, Thriller. A young girl buys an antique box at a yard sale, unaware that inside the collectible lives a malicious ancient spirit. The girl's father teams with his ex-wife to find a way to end the curse upon their child.. Tags: "} +{"id": "40001", "title": "Mrs. Winterbourne", "year": 1996, "duration_min": 105, "rating": 5.3, "genres": "Comedy, Romance, Drama", "genres_pipe": "|Comedy|Romance|Drama|", "keywords": "role reversal, mistaken identity, train wreck", "tags_pipe": "|role reversal|mistaken identity|train wreck|", "overview": "Connie Doyle is eighteen and pregnant her boyfriend has kicked her out. She accidentaly ends up on a train where she meets Hugh Winterbourne and his wife Patricia who is pregnant. The train wrecks and she wakes up in the hosptial to find out that it's been assumed that she's Patricia. Hugh's mother takes her in and she falls in love with Hugh's brother Bill. Just when she thinks everything is going her way, her ex-boyfriend shows up.", "text_for_embedding": "Mrs. Winterbourne (1996). Genres: Comedy, Romance, Drama. Connie Doyle is eighteen and pregnant her boyfriend has kicked her out. She accidentaly ends up on a train where she meets Hugh Winterbourne and his wife Patricia who is pregnant. The train wrecks and she wakes up in the hosptial to find out that it's been assumed that she's Patricia. Hugh's mother takes her in and she falls in love with Hugh's brother Bill. Just when she thinks everything is going her way, her ex-boyfriend shows up.. Tags: role reversal, mistaken identity, train wreck"} +{"id": "64639", "title": "Straw Dogs", "year": 2011, "duration_min": 110, "rating": 5.5, "genres": "Drama, Thriller", "genres_pipe": "|Drama|Thriller|", "keywords": "southern usa, rape, bar, wife husband relationship, barn, machismo, rifle, home invasion", "tags_pipe": "|southern usa|rape|bar|wife husband relationship|barn|machismo|rifle|home invasion|", "overview": "L.A. screenwriter David Sumner relocates with his wife, Amy, to her hometown in the deep South. There, while tensions build between them, a brewing conflict with locals becomes a threat to them both.", "text_for_embedding": "Straw Dogs (2011). Genres: Drama, Thriller. L.A. screenwriter David Sumner relocates with his wife, Amy, to her hometown in the deep South. There, while tensions build between them, a brewing conflict with locals becomes a threat to them both.. Tags: southern usa, rape, bar, wife husband relationship, barn, machismo, rifle, home invasion"} +{"id": "9903", "title": "The Hoax", "year": 2006, "duration_min": 116, "rating": 6.4, "genres": "Comedy, Drama", "genres_pipe": "|Comedy|Drama|", "keywords": "flying, 1970s, false identity, biography", "tags_pipe": "|flying|1970s|false identity|biography|", "overview": "In what would cause a fantastic media frenzy, Clifford Irving sells his bogus biography of Howard Hughes to a premiere publishing house in the early 1970s.", "text_for_embedding": "The Hoax (2006). Genres: Comedy, Drama. In what would cause a fantastic media frenzy, Clifford Irving sells his bogus biography of Howard Hughes to a premiere publishing house in the early 1970s.. Tags: flying, 1970s, false identity, biography"} +{"id": "21338", "title": "Stone Cold", "year": 1991, "duration_min": 92, "rating": 5.7, "genres": "Action, Crime, Thriller", "genres_pipe": "|Action|Crime|Thriller|", "keywords": "undercover, fbi, biker, cop, motorcycle gang", "tags_pipe": "|undercover|fbi|biker|cop|motorcycle gang|", "overview": "Joe Huff (Brian Bosworth) is a tough, loner cop with a flair for infiltrating dangerous biker gangs. The FBI blackmail Joe into an undercover operation that entails infiltrating \"The Brotherhood\" - a powerful Mississippi biker gang linked in the murder of government officials as well as dealing drugs with the mafia.", "text_for_embedding": "Stone Cold (1991). Genres: Action, Crime, Thriller. Joe Huff (Brian Bosworth) is a tough, loner cop with a flair for infiltrating dangerous biker gangs. The FBI blackmail Joe into an undercover operation that entails infiltrating \"The Brotherhood\" - a powerful Mississippi biker gang linked in the murder of government officials as well as dealing drugs with the mafia.. Tags: undercover, fbi, biker, cop, motorcycle gang"} +{"id": "20766", "title": "The Road", "year": 2009, "duration_min": 111, "rating": 6.8, "genres": "Adventure, Drama", "genres_pipe": "|Adventure|Drama|", "keywords": "post-apocalyptic, dystopia, paternity, duringcreditsstinger", "tags_pipe": "|post-apocalyptic|dystopia|paternity|duringcreditsstinger|", "overview": "A father and his son walk alone through burned America. Nothing moves in the ravaged landscape save the ash on the wind and water. It is cold enough to crack stones, and, when the snow falls it is gray. The sky is dark. Their destination is the warmer south, although they don't know what, if anything, awaits them there.", "text_for_embedding": "The Road (2009). Genres: Adventure, Drama. A father and his son walk alone through burned America. Nothing moves in the ravaged landscape save the ash on the wind and water. It is cold enough to crack stones, and, when the snow falls it is gray. The sky is dark. Their destination is the warmer south, although they don't know what, if anything, awaits them there.. Tags: post-apocalyptic, dystopia, paternity, duringcreditsstinger"} +{"id": "24264", "title": "Sheena", "year": 1984, "duration_min": 117, "rating": 5.0, "genres": "Action, Adventure, Comedy, Fantasy, Science Fiction", "genres_pipe": "|Action|Adventure|Comedy|Fantasy|Science Fiction|", "keywords": "africa, mercenary, adventure, female hero, jungle girl", "tags_pipe": "|africa|mercenary|adventure|female hero|jungle girl|", "overview": "Sheena's white parents are killed while on Safari. She is raised by the mystical witch woman of an African tribe. When her foster mother is framed for the murder of a political leader, Sheena and a newsman, Vic Casey are forced to flee while pursued by the mercenaries hired by the real killer, who hopes to assume power. Sheena's ability to talk to the animals and knowledge of jungle lore give them a chance against the high tech weapons of the mercenaries.", "text_for_embedding": "Sheena (1984). Genres: Action, Adventure, Comedy, Fantasy, Science Fiction. Sheena's white parents are killed while on Safari. She is raised by the mystical witch woman of an African tribe. When her foster mother is framed for the murder of a political leader, Sheena and a newsman, Vic Casey are forced to flee while pursued by the mercenaries hired by the real killer, who hopes to assume power. Sheena's ability to talk to the animals and knowledge of jungle lore give them a chance against the high tech weapons of the mercenaries.. Tags: africa, mercenary, adventure, female hero, jungle girl"} +{"id": "19803", "title": "Underclassman", "year": 2005, "duration_min": 95, "rating": 5.5, "genres": "Action, Comedy", "genres_pipe": "|Action|Comedy|", "keywords": "police, high school, undercover cop", "tags_pipe": "|police|high school|undercover cop|", "overview": "A young detective goes undercover at an elite private school to destroy an international stolen car ring.", "text_for_embedding": "Underclassman (2005). Genres: Action, Comedy. A young detective goes undercover at an elite private school to destroy an international stolen car ring.. Tags: police, high school, undercover cop"} +{"id": "20309", "title": "Say It Isn't So", "year": 2001, "duration_min": 95, "rating": 4.8, "genres": "Comedy, Romance", "genres_pipe": "|Comedy|Romance|", "keywords": "", "tags_pipe": "", "overview": "Boy meets girl; boy falls in love (and had wild, non-stop sex) with girl; boy loses girl... when they discover they are brother and sister! But when he learns that he's the victim of the ultimate case of mistaken identity, the lovesick young man -- whom everyone still thinks is after some taboo thrills -- must race across the country to stop her from marrying another man.", "text_for_embedding": "Say It Isn't So (2001). Genres: Comedy, Romance. Boy meets girl; boy falls in love (and had wild, non-stop sex) with girl; boy loses girl... when they discover they are brother and sister! But when he learns that he's the victim of the ultimate case of mistaken identity, the lovesick young man -- whom everyone still thinks is after some taboo thrills -- must race across the country to stop her from marrying another man.. Tags: "} +{"id": "9912", "title": "The World's Fastest Indian", "year": 2005, "duration_min": 127, "rating": 7.3, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "new zealand, utah, life's dream, independent film, motorcycle, motorcycle racing, trailer, mortgage", "tags_pipe": "|new zealand|utah|life's dream|independent film|motorcycle|motorcycle racing|trailer|mortgage|", "overview": "The life story of New Zealander Burt Munro, who spent years building a 1920 Indian motorcycle -- a bike which helped him set the land-speed world record at Utah's Bonneville Salt Flats in 1967.", "text_for_embedding": "The World's Fastest Indian (2005). Genres: Drama. The life story of New Zealander Burt Munro, who spent years building a 1920 Indian motorcycle -- a bike which helped him set the land-speed world record at Utah's Bonneville Salt Flats in 1967.. Tags: new zealand, utah, life's dream, independent film, motorcycle, motorcycle racing, trailer, mortgage"} +{"id": "9067", "title": "Tank Girl", "year": 1995, "duration_min": 98, "rating": 5.5, "genres": "Action, Comedy, Fantasy, Science Fiction", "genres_pipe": "|Action|Comedy|Fantasy|Science Fiction|", "keywords": "destroy, dystopia, reincarnation, desert, artial arts, woman director", "tags_pipe": "|destroy|dystopia|reincarnation|desert|artial arts|woman director|", "overview": "Based on the British cult comic-strip, our tank-riding anti-heroine fights a mega-corporation, which controls the world's water supply.", "text_for_embedding": "Tank Girl (1995). Genres: Action, Comedy, Fantasy, Science Fiction. Based on the British cult comic-strip, our tank-riding anti-heroine fights a mega-corporation, which controls the world's water supply.. Tags: destroy, dystopia, reincarnation, desert, artial arts, woman director"} +{"id": "27360", "title": "King's Ransom", "year": 2005, "duration_min": 95, "rating": 5.1, "genres": "Comedy, Crime", "genres_pipe": "|Comedy|Crime|", "keywords": "caper, action", "tags_pipe": "|caper|action|", "overview": "Hoping to foil his own gold-digging wife's plan, a loathsome businessman arranges his own kidnapping, only to realize that there are plenty of other people interested in his wealth as well.", "text_for_embedding": "King's Ransom (2005). Genres: Comedy, Crime. Hoping to foil his own gold-digging wife's plan, a loathsome businessman arranges his own kidnapping, only to realize that there are plenty of other people interested in his wealth as well.. Tags: caper, action"} +{"id": "8338", "title": "Blindness", "year": 2008, "duration_min": 121, "rating": 6.4, "genres": "Drama, Mystery, Science Fiction, Thriller", "genres_pipe": "|Drama|Mystery|Science Fiction|Thriller|", "keywords": "fight, blindness and impaired vision, asylum, leader, society, eye specialist, uprising, doomsday, plague", "tags_pipe": "|fight|blindness and impaired vision|asylum|leader|society|eye specialist|uprising|doomsday|plague|", "overview": "When a sudden plague of blindness devastates a city, a small group of the afflicted band together to triumphantly overcome the horrific conditions of their imposed quarantine.", "text_for_embedding": "Blindness (2008). Genres: Drama, Mystery, Science Fiction, Thriller. When a sudden plague of blindness devastates a city, a small group of the afflicted band together to triumphantly overcome the horrific conditions of their imposed quarantine.. Tags: fight, blindness and impaired vision, asylum, leader, society, eye specialist, uprising, doomsday, plague"} +{"id": "168705", "title": "BloodRayne", "year": 2005, "duration_min": 95, "rating": 3.5, "genres": "Action, Adventure, Fantasy, Horror", "genres_pipe": "|Action|Adventure|Fantasy|Horror|", "keywords": "vampire, vampire hunter, based on video game, romania", "tags_pipe": "|vampire|vampire hunter|based on video game|romania|", "overview": "In eighteenth century Romania, Rayne, a dhampir (half-human, half-vampire), prone to fits of blind blood rage but saddled with a compunction for humans, strives to avenge her mother's rape by her father, Kagan, King of Vampires. Two vampire hunters, Sebastian and Vladimir, from the Brimstone Society persuade her to join their cause.", "text_for_embedding": "BloodRayne (2005). Genres: Action, Adventure, Fantasy, Horror. In eighteenth century Romania, Rayne, a dhampir (half-human, half-vampire), prone to fits of blind blood rage but saddled with a compunction for humans, strives to avenge her mother's rape by her father, Kagan, King of Vampires. Two vampire hunters, Sebastian and Vladimir, from the Brimstone Society persuade her to join their cause.. Tags: vampire, vampire hunter, based on video game, romania"} +{"id": "72113", "title": "Carnage", "year": 2011, "duration_min": 80, "rating": 7.0, "genres": "Comedy, Drama", "genres_pipe": "|Comedy|Drama|", "keywords": "flat, mobile phone, hamster, insult, dark comedy, writer, tulips, meeting, puke, pants, liberal", "tags_pipe": "|flat|mobile phone|hamster|insult|dark comedy|writer|tulips|meeting|puke|pants|liberal|", "overview": "After 11-year-old Zachary Cowan strikes his classmate across the face with a stick after an argument, the victim's parents invite Zachary's parents to their Brooklyn apartment to deal with the incident in a civilized manner.", "text_for_embedding": "Carnage (2011). Genres: Comedy, Drama. After 11-year-old Zachary Cowan strikes his classmate across the face with a stick after an argument, the victim's parents invite Zachary's parents to their Brooklyn apartment to deal with the incident in a civilized manner.. Tags: flat, mobile phone, hamster, insult, dark comedy, writer, tulips, meeting, puke, pants, liberal"} +{"id": "9729", "title": "Where the Truth Lies", "year": 2005, "duration_min": 107, "rating": 5.9, "genres": "Drama, Mystery, Thriller", "genres_pipe": "|Drama|Mystery|Thriller|", "keywords": "sex, journalist, journalism, 1970s, entertainer, one-night stand, extramarital affair, sex party", "tags_pipe": "|sex|journalist|journalism|1970s|entertainer|one-night stand|extramarital affair|sex party|", "overview": "An ambitious reporter probes the reasons behind the sudden split of a 1950s comedy team.", "text_for_embedding": "Where the Truth Lies (2005). Genres: Drama, Mystery, Thriller. An ambitious reporter probes the reasons behind the sudden split of a 1950s comedy team.. Tags: sex, journalist, journalism, 1970s, entertainer, one-night stand, extramarital affair, sex party"} +{"id": "94352", "title": "Cirque du Soleil: Worlds Away", "year": 2012, "duration_min": 91, "rating": 6.1, "genres": "Fantasy, Family", "genres_pipe": "|Fantasy|Family|", "keywords": "clown, music, mimes, cirque du soleil, carnies, aerialist", "tags_pipe": "|clown|music|mimes|cirque du soleil|carnies|aerialist|", "overview": "An original story featuring performances by Cirque du Soleil. A young woman is entranced by an Aerialist. When they fall into the dreamlike world of Cirque du Soleil and are separated, they travel through the different tent worlds trying to find each other.", "text_for_embedding": "Cirque du Soleil: Worlds Away (2012). Genres: Fantasy, Family. An original story featuring performances by Cirque du Soleil. A young woman is entranced by an Aerialist. When they fall into the dreamlike world of Cirque du Soleil and are separated, they travel through the different tent worlds trying to find each other.. Tags: clown, music, mimes, cirque du soleil, carnies, aerialist"} +{"id": "22256", "title": "Without Limits", "year": 1998, "duration_min": 117, "rating": 6.2, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "running, olympic games, sport, athlete", "tags_pipe": "|running|olympic games|sport|athlete|", "overview": "The film follows the life of famous 1970s runner Steve Prefontaine from his youth days in Oregon to the University of Oregon where he worked with the legendary coach Bill Bowerman, later to Olympics in Munich and his early death at 24 in a car crash.", "text_for_embedding": "Without Limits (1998). Genres: Drama. The film follows the life of famous 1970s runner Steve Prefontaine from his youth days in Oregon to the University of Oregon where he worked with the legendary coach Bill Bowerman, later to Olympics in Munich and his early death at 24 in a car crash.. Tags: running, olympic games, sport, athlete"} +{"id": "12404", "title": "Me and Orson Welles", "year": 2009, "duration_min": 114, "rating": 6.6, "genres": "Comedy, Drama, Romance", "genres_pipe": "|Comedy|Drama|Romance|", "keywords": "new york, based on novel, historical figure, theater, 1930s", "tags_pipe": "|new york|based on novel|historical figure|theater|1930s|", "overview": "New York, 1937. A teenager hired to star in Orson Welles' production of Julius Caesar becomes attracted to a career-driven production assistant.", "text_for_embedding": "Me and Orson Welles (2009). Genres: Comedy, Drama, Romance. New York, 1937. A teenager hired to star in Orson Welles' production of Julius Caesar becomes attracted to a career-driven production assistant.. Tags: new york, based on novel, historical figure, theater, 1930s"} +{"id": "152742", "title": "The Best Offer", "year": 2013, "duration_min": 124, "rating": 7.7, "genres": "Drama, Romance, Crime, Mystery", "genres_pipe": "|Drama|Romance|Crime|Mystery|", "keywords": "painting, auctioneer, confidence game, fine art, honey pot", "tags_pipe": "|painting|auctioneer|confidence game|fine art|honey pot|", "overview": "Virgil Oldman is a world renowned antiques expert and auctioneer. An eccentric genius, he leads a solitary life, going to extreme lengths to keep his distance from the messiness of human relationships. When appointed by the beautiful but emotionally damaged Claire to oversee the valuation and sale of her family’s priceless art collection, Virgil allows himself to form an attachment to her – and soon he is engulfed by a passion which will rock his bland existence to the core.", "text_for_embedding": "The Best Offer (2013). Genres: Drama, Romance, Crime, Mystery. Virgil Oldman is a world renowned antiques expert and auctioneer. An eccentric genius, he leads a solitary life, going to extreme lengths to keep his distance from the messiness of human relationships. When appointed by the beautiful but emotionally damaged Claire to oversee the valuation and sale of her family’s priceless art collection, Virgil allows himself to form an attachment to her – and soon he is engulfed by a passion which will rock his bland existence to the core.. Tags: painting, auctioneer, confidence game, fine art, honey pot"} +{"id": "11699", "title": "The Bad Lieutenant: Port of Call - New Orleans", "year": 2009, "duration_min": 122, "rating": 6.0, "genres": "Drama, Crime", "genres_pipe": "|Drama|Crime|", "keywords": "police brutality, organized crime, policeman, illegal drugs, murder investigation, corrupt cop", "tags_pipe": "|police brutality|organized crime|policeman|illegal drugs|murder investigation|corrupt cop|", "overview": "Terrence McDonagh, a New Orleans Police sergeant, who starts out as a good cop, receiving a medal and a promotion to lieutenant for heroism during Hurricane Katrina. During his heroic act, McDonagh injures his back and later becomes addicted to prescription pain medication. McDonagh finds himself involved with a drug dealer who is suspected of murdering a family of African immigrants.", "text_for_embedding": "The Bad Lieutenant: Port of Call - New Orleans (2009). Genres: Drama, Crime. Terrence McDonagh, a New Orleans Police sergeant, who starts out as a good cop, receiving a medal and a promotion to lieutenant for heroism during Hurricane Katrina. During his heroic act, McDonagh injures his back and later becomes addicted to prescription pain medication. McDonagh finds himself involved with a drug dealer who is suspected of murdering a family of African immigrants.. Tags: police brutality, organized crime, policeman, illegal drugs, murder investigation, corrupt cop"} +{"id": "49953", "title": "A Turtle's Tale: Sammy's Adventures", "year": 2010, "duration_min": 88, "rating": 5.6, "genres": "Animation, Family", "genres_pipe": "|Animation|Family|", "keywords": "global warming, sea turtle, 3d", "tags_pipe": "|global warming|sea turtle|3d|", "overview": "A sea turtle who was hatched in 1959 spends the next 50 years traveling the world while it is being changed by global warming. Born on a Baja, California beach in 1959, new hatchling Sammy must do what his fellow newborn sea turtles are doing: race across the beach to the ocean before they are captured by a seagull or crab. Thus begins Sammy's incredible fifty-year ocean journey. Along the way he meets his best friend, a fellow turtle named Ray, and overcomes obstacles both natural and man-made while trying to fulfill his dream of travelling around the world. Throughout his voyage, Sammy never forgets about Shelly - the turtle he saved on his first day and loves passionately from afar. Based on the actual trajectory of a sea turtle's life, the film illustrates the dangers humans pose to the species' survival. The film combines entertainment with an important environmental message.", "text_for_embedding": "A Turtle's Tale: Sammy's Adventures (2010). Genres: Animation, Family. A sea turtle who was hatched in 1959 spends the next 50 years traveling the world while it is being changed by global warming. Born on a Baja, California beach in 1959, new hatchling Sammy must do what his fellow newborn sea turtles are doing: race across the beach to the ocean before they are captured by a seagull or crab. Thus begins Sammy's incredible fifty-year ocean journey. Along the way he meets his best friend, a fellow turtle named Ray, and overcomes obstacles both natural and man-made while trying to fulfill his dream of travelling around the world. Throughout his voyage, Sammy never forgets about Shelly - the turtle he saved on his first day and loves passionately from afar. Based on the actual trajectory of a sea turtle's life, the film illustrates the dangers humans pose to the species' survival. The film combines entertainment with an important environmental message.. Tags: global warming, sea turtle, 3d"} +{"id": "48034", "title": "Little White Lies", "year": 2010, "duration_min": 154, "rating": 7.1, "genres": "Comedy, Drama", "genres_pipe": "|Comedy|Drama|", "keywords": "american football, country house, motorboat, male female relationship, thirty something, beach house, organic food, weasel, group of friends, reprimand, declaration of love, parent child relationship, texting, low tide, forced", "tags_pipe": "|american football|country house|motorboat|male female relationship|thirty something|beach house|organic food|weasel|group of friends|reprimand|declaration of love|parent child relationship|texting|low tide|forced|", "overview": "Despite a traumatic event, a group of friends decide to go ahead with their annual beach vacation. Their relationships, convictions, sense of guilt and friendship are sorely tested. They are finally forced to own up to the little white lies they've been telling each other.", "text_for_embedding": "Little White Lies (2010). Genres: Comedy, Drama. Despite a traumatic event, a group of friends decide to go ahead with their annual beach vacation. Their relationships, convictions, sense of guilt and friendship are sorely tested. They are finally forced to own up to the little white lies they've been telling each other.. Tags: american football, country house, motorboat, male female relationship, thirty something, beach house, organic food, weasel, group of friends, reprimand, declaration of love, parent child relationship, texting, low tide, forced"} +{"id": "39845", "title": "Love Ranch", "year": 2010, "duration_min": 117, "rating": 6.0, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "independent film", "tags_pipe": "|independent film|", "overview": "Story of a couple that starts the first legal brothel in Nevada and a boxer they own a piece of.", "text_for_embedding": "Love Ranch (2010). Genres: Drama. Story of a couple that starts the first legal brothel in Nevada and a boxer they own a piece of.. Tags: independent film"} +{"id": "25353", "title": "The True Story of Puss 'n Boots", "year": 2009, "duration_min": 82, "rating": 3.8, "genres": "Family, Adventure, Animation", "genres_pipe": "|Family|Adventure|Animation|", "keywords": "cat, surrealism, cartoon cat", "tags_pipe": "|cat|surrealism|cartoon cat|", "overview": "A free adaptation of Charles Perrault's famous Puss'n Boots, \"The True Story of Puss'n Boots\" is a story for young and old for the first time on cinema screens.", "text_for_embedding": "The True Story of Puss 'n Boots (2009). Genres: Family, Adventure, Animation. A free adaptation of Charles Perrault's famous Puss'n Boots, \"The True Story of Puss'n Boots\" is a story for young and old for the first time on cinema screens.. Tags: cat, surrealism, cartoon cat"} +{"id": "36696", "title": "Space Dogs", "year": 2010, "duration_min": 85, "rating": 6.3, "genres": "Family, Animation", "genres_pipe": "|Family|Animation|", "keywords": "russia, space mission, space, outer space, dog", "tags_pipe": "|russia|space mission|space|outer space|dog|", "overview": "Belka, the amazing flying dog is unexpectedly hurdled into the streets of Moscow when the rocket she is in malfunctions during one of her circus routines. Fortunately the crash leads her to meet a streetwise dog named Strelka and her irredeemable rat friend Venya. Together with other amusing friends found along the way, the three find themselves in a space program-training center where they get sent away in a rocket, leaving planet Earth...", "text_for_embedding": "Space Dogs (2010). Genres: Family, Animation. Belka, the amazing flying dog is unexpectedly hurdled into the streets of Moscow when the rocket she is in malfunctions during one of her circus routines. Fortunately the crash leads her to meet a streetwise dog named Strelka and her irredeemable rat friend Venya. Together with other amusing friends found along the way, the three find themselves in a space program-training center where they get sent away in a rocket, leaving planet Earth.... Tags: russia, space mission, space, outer space, dog"} +{"id": "109091", "title": "The Counselor", "year": 2013, "duration_min": 117, "rating": 5.0, "genres": "Thriller, Crime, Drama", "genres_pipe": "|Thriller|Crime|Drama|", "keywords": "poetry, lawyer, drug smuggling, drug trafficking, red dress", "tags_pipe": "|poetry|lawyer|drug smuggling|drug trafficking|red dress|", "overview": "A rich and successful lawyer named Counselor is about to get married to his fiancée but soon meets up with the middle-man known as Westray who tells him his drug trafficking plan has taken a horrible twist and now he must protect himself and his soon bride-to-be lover as the truth of the drug business uncovers and targets become chosen.", "text_for_embedding": "The Counselor (2013). Genres: Thriller, Crime, Drama. A rich and successful lawyer named Counselor is about to get married to his fiancée but soon meets up with the middle-man known as Westray who tells him his drug trafficking plan has taken a horrible twist and now he must protect himself and his soon bride-to-be lover as the truth of the drug business uncovers and targets become chosen.. Tags: poetry, lawyer, drug smuggling, drug trafficking, red dress"} +{"id": "38543", "title": "Ironclad", "year": 2011, "duration_min": 121, "rating": 6.2, "genres": "Romance, Adventure, Action, History", "genres_pipe": "|Romance|Adventure|Action|History|", "keywords": "ambush, hero, fight, castle, battlefield, duel, king, order of the templars", "tags_pipe": "|ambush|hero|fight|castle|battlefield|duel|king|order of the templars|", "overview": "In the year 1215, the rebel barons of England have forced their despised King John to put his royal seal on the Magna Carta, a seminal document that upheld the rights of free men. Yet within months of pledging himself to the great charter, the King reneged on his word and assembled a mercenary army on the south coast of England with the intention of bringing the barons and the country back under his tyrannical rule. Barring his way stood the mighty Rochester castle, a place that would become the symbol of the rebel's momentous struggle for justice and freedom.", "text_for_embedding": "Ironclad (2011). Genres: Romance, Adventure, Action, History. In the year 1215, the rebel barons of England have forced their despised King John to put his royal seal on the Magna Carta, a seminal document that upheld the rights of free men. Yet within months of pledging himself to the great charter, the King reneged on his word and assembled a mercenary army on the south coast of England with the intention of bringing the barons and the country back under his tyrannical rule. Barring his way stood the mighty Rochester castle, a place that would become the symbol of the rebel's momentous struggle for justice and freedom.. Tags: ambush, hero, fight, castle, battlefield, duel, king, order of the templars"} +{"id": "33157", "title": "Waterloo", "year": 1970, "duration_min": 128, "rating": 7.0, "genres": "History, Action, Drama", "genres_pipe": "|History|Action|Drama|", "keywords": "biography, napoleon bonaparte, waterloo", "tags_pipe": "|biography|napoleon bonaparte|waterloo|", "overview": "After defeating France and imprisoning Napoleon on Elba, ending two decades of war, Europe is shocked to find Napoleon has escaped and has caused the French Army to defect from the King back to him. The best of the British generals, the Duke of Wellington, beat Napolean's best generals in Spain and Portugal, but now must beat Napoleon himself with an Anglo Allied army.", "text_for_embedding": "Waterloo (1970). Genres: History, Action, Drama. After defeating France and imprisoning Napoleon on Elba, ending two decades of war, Europe is shocked to find Napoleon has escaped and has caused the French Army to defect from the King back to him. The best of the British generals, the Duke of Wellington, beat Napolean's best generals in Spain and Portugal, but now must beat Napoleon himself with an Anglo Allied army.. Tags: biography, napoleon bonaparte, waterloo"} +{"id": "290864", "title": "Kung Fu Jungle", "year": 2014, "duration_min": 100, "rating": 6.5, "genres": "Crime, Action, Thriller", "genres_pipe": "|Crime|Action|Thriller|", "keywords": "martial arts, kung fu, serial killer", "tags_pipe": "|martial arts|kung fu|serial killer|", "overview": "A martial arts instructor working at a police academy gets imprisoned after killing a man by accident. But when a vicious killer starts targeting martial arts masters, the instructor offers to help the police in return for his freedom.", "text_for_embedding": "Kung Fu Jungle (2014). Genres: Crime, Action, Thriller. A martial arts instructor working at a police academy gets imprisoned after killing a man by accident. But when a vicious killer starts targeting martial arts masters, the instructor offers to help the police in return for his freedom.. Tags: martial arts, kung fu, serial killer"} +{"id": "242166", "title": "Red Sky", "year": 2014, "duration_min": 100, "rating": 4.1, "genres": "Action, Thriller", "genres_pipe": "|Action|Thriller|", "keywords": "love triangle, middle east, fight, kidnapping, missile, pilot, honor, betrayal, mission, conspiracy, attack, explosion, combat, jet, military", "tags_pipe": "|love triangle|middle east|fight|kidnapping|missile|pilot|honor|betrayal|mission|conspiracy|attack|explosion|combat|jet|military|", "overview": "Disgraced Top Gun fighter pilot Butch Masters leads a rogue squad in recovery of a WMD. Masters must navigate a fractured friendship, a love triangle, and must take to the skies to reclaim his military and personal honor.", "text_for_embedding": "Red Sky (2014). Genres: Action, Thriller. Disgraced Top Gun fighter pilot Butch Masters leads a rogue squad in recovery of a WMD. Masters must navigate a fractured friendship, a love triangle, and must take to the skies to reclaim his military and personal honor.. Tags: love triangle, middle east, fight, kidnapping, missile, pilot, honor, betrayal, mission, conspiracy, attack, explosion, combat, jet, military"} +{"id": "859", "title": "Dangerous Liaisons", "year": 1988, "duration_min": 119, "rating": 7.0, "genres": "Drama, Romance", "genres_pipe": "|Drama|Romance|", "keywords": "lovesickness, sexuality, cheating, cynic, ladykiller, fiancé, arranged marriage, passion, seduction, love letter, boredom, courtly life, french revolution, lover, plan", "tags_pipe": "|lovesickness|sexuality|cheating|cynic|ladykiller|fiancé|arranged marriage|passion|seduction|love letter|boredom|courtly life|french revolution|lover|plan|", "overview": "Dangerous Liaisons is the film based on the novel of the same name by Choderlos de Laclos set in 18th century France. Marquise de Merteuil’s asks her ex-lover Vicomte de Valmont to seduce the future wife of another ex-lover of hers in return for one last night with her. Yet things don’t go as planned in this love triangle drama.", "text_for_embedding": "Dangerous Liaisons (1988). Genres: Drama, Romance. Dangerous Liaisons is the film based on the novel of the same name by Choderlos de Laclos set in 18th century France. Marquise de Merteuil’s asks her ex-lover Vicomte de Valmont to seduce the future wife of another ex-lover of hers in return for one last night with her. Yet things don’t go as planned in this love triangle drama.. Tags: lovesickness, sexuality, cheating, cynic, ladykiller, fiancé, arranged marriage, passion, seduction, love letter, boredom, courtly life, french revolution, lover, plan"} +{"id": "83770", "title": "On the Road", "year": 2012, "duration_min": 137, "rating": 5.5, "genres": "Adventure, Drama", "genres_pipe": "|Adventure|Drama|", "keywords": "based on novel, cemetery, narration, nudity, funeral, song, friendship, road trip, marijuana, snow, cigarette smoking, writer, photograph, on the road, sex scene", "tags_pipe": "|based on novel|cemetery|narration|nudity|funeral|song|friendship|road trip|marijuana|snow|cigarette smoking|writer|photograph|on the road|sex scene|", "overview": "Dean and Sal are the portrait of the Beat Generation. Their search for \"It\" results in a fast paced, energetic roller coaster ride with highs and lows throughout the U.S.", "text_for_embedding": "On the Road (2012). Genres: Adventure, Drama. Dean and Sal are the portrait of the Beat Generation. Their search for \"It\" results in a fast paced, energetic roller coaster ride with highs and lows throughout the U.S.. Tags: based on novel, cemetery, narration, nudity, funeral, song, friendship, road trip, marijuana, snow, cigarette smoking, writer, photograph, on the road, sex scene"} +{"id": "168", "title": "Star Trek IV: The Voyage Home", "year": 1986, "duration_min": 119, "rating": 6.9, "genres": "Science Fiction, Adventure", "genres_pipe": "|Science Fiction|Adventure|", "keywords": "saving the world, san francisco, uss enterprise-a, time travel, whale, marine biologist, vulcan, space opera", "tags_pipe": "|saving the world|san francisco|uss enterprise-a|time travel|whale|marine biologist|vulcan|space opera|", "overview": "Fugitives of the Federation for their daring rescue of Spock from the doomed Genesis Planet, Admiral Kirk (William Shatner) and his crew begin their journey home to face justice for their actions. But as they near Earth, they find it at the mercy of a mysterious alien presence whose signals are slowly destroying the planet. In a desperate attempt to answer the call of the probe, Kirk and his crew race back to the late twentieth century. However they soon find the world they once knew to be more alien than anything they've encountered in the far reaches of the galaxy!", "text_for_embedding": "Star Trek IV: The Voyage Home (1986). Genres: Science Fiction, Adventure. Fugitives of the Federation for their daring rescue of Spock from the doomed Genesis Planet, Admiral Kirk (William Shatner) and his crew begin their journey home to face justice for their actions. But as they near Earth, they find it at the mercy of a mysterious alien presence whose signals are slowly destroying the planet. In a desperate attempt to answer the call of the probe, Kirk and his crew race back to the late twentieth century. However they soon find the world they once knew to be more alien than anything they've encountered in the far reaches of the galaxy!. Tags: saving the world, san francisco, uss enterprise-a, time travel, whale, marine biologist, vulcan, space opera"} +{"id": "1246", "title": "Rocky Balboa", "year": 2006, "duration_min": 102, "rating": 6.5, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "philadelphia, transporter, fight, love of one's life, publicity, boxer, grave, tombstone, tv station, boxing match, comeback, training, restaurant owner, world champion, challenger", "tags_pipe": "|philadelphia|transporter|fight|love of one's life|publicity|boxer|grave|tombstone|tv station|boxing match|comeback|training|restaurant owner|world champion|challenger|", "overview": "When he loses a highly publicized virtual boxing match to ex-champ Rocky Balboa, reigning heavyweight titleholder, Mason Dixon retaliates by challenging Rocky to a nationally televised, 10-round exhibition bout. To the surprise of his son and friends, Rocky agrees to come out of retirement and face an opponent who's faster, stronger and thirty years his junior.", "text_for_embedding": "Rocky Balboa (2006). Genres: Drama. When he loses a highly publicized virtual boxing match to ex-champ Rocky Balboa, reigning heavyweight titleholder, Mason Dixon retaliates by challenging Rocky to a nationally televised, 10-round exhibition bout. To the surprise of his son and friends, Rocky agrees to come out of retirement and face an opponent who's faster, stronger and thirty years his junior.. Tags: philadelphia, transporter, fight, love of one's life, publicity, boxer, grave, tombstone, tv station, boxing match, comeback, training, restaurant owner, world champion, challenger"} +{"id": "4233", "title": "Scream 2", "year": 1997, "duration_min": 120, "rating": 6.1, "genres": "Horror, Mystery", "genres_pipe": "|Horror|Mystery|", "keywords": "film festivals, slaughter, slasher", "tags_pipe": "|film festivals|slaughter|slasher|", "overview": "Two years after the terrifying events that occurred in Woodsboro, Sidney is now attending Windsor College in Cincinnati, and Gale Weathers' best selling book on Sidney's life has now been made into a major motion picture. When two college students are killed in a theatre while watching the new film 'Stab', Sidney knows deep down that history is repeating itself.", "text_for_embedding": "Scream 2 (1997). Genres: Horror, Mystery. Two years after the terrifying events that occurred in Woodsboro, Sidney is now attending Windsor College in Cincinnati, and Gale Weathers' best selling book on Sidney's life has now been made into a major motion picture. When two college students are killed in a theatre while watching the new film 'Stab', Sidney knows deep down that history is repeating itself.. Tags: film festivals, slaughter, slasher"} +{"id": "174751", "title": "Jane Got a Gun", "year": 2016, "duration_min": 98, "rating": 5.4, "genres": "Action, Drama, Western", "genres_pipe": "|Action|Drama|Western|", "keywords": "", "tags_pipe": "", "overview": "After her outlaw husband returns home shot with eight bullets and barely alive, Jane reluctantly reaches out to an ex-lover who she hasn't seen in over ten years to help her defend her farm when the time comes that her husband's gang eventually tracks him down to finish the job.", "text_for_embedding": "Jane Got a Gun (2016). Genres: Action, Drama, Western. After her outlaw husband returns home shot with eight bullets and barely alive, Jane reluctantly reaches out to an ex-lover who she hasn't seen in over ten years to help her defend her farm when the time comes that her husband's gang eventually tracks him down to finish the job.. Tags: "} +{"id": "184098", "title": "Think Like a Man Too", "year": 2014, "duration_min": 105, "rating": 6.4, "genres": "Comedy, Romance", "genres_pipe": "|Comedy|Romance|", "keywords": "", "tags_pipe": "", "overview": "All the couples are back for a wedding in Las Vegas, but plans for a romantic weekend go awry when their various misadventures get them into some compromising situations that threaten to derail the big event.", "text_for_embedding": "Think Like a Man Too (2014). Genres: Comedy, Romance. All the couples are back for a wedding in Las Vegas, but plans for a romantic weekend go awry when their various misadventures get them into some compromising situations that threaten to derail the big event.. Tags: "} +{"id": "2069", "title": "The Whole Nine Yards", "year": 2000, "duration_min": 98, "rating": 6.2, "genres": "Comedy, Crime", "genres_pipe": "|Comedy|Crime|", "keywords": "bounty, gangster boss, montreal, gangster, dentist, hoodlum", "tags_pipe": "|bounty|gangster boss|montreal|gangster|dentist|hoodlum|", "overview": "A mobster named Jimmy the Tulip agrees to cooperate with an FBI investigation in order to stay out of prison; he's relocated by the authorities to a life of suburban anonymity as part of a witness protection program. It's not long before a couple of his new neighbors figure out his true identity and come knocking to see if he'd be up for one more hit, suburban style.", "text_for_embedding": "The Whole Nine Yards (2000). Genres: Comedy, Crime. A mobster named Jimmy the Tulip agrees to cooperate with an FBI investigation in order to stay out of prison; he's relocated by the authorities to a life of suburban anonymity as part of a witness protection program. It's not long before a couple of his new neighbors figure out his true identity and come knocking to see if he'd be up for one more hit, suburban style.. Tags: bounty, gangster boss, montreal, gangster, dentist, hoodlum"} +{"id": "1788", "title": "Footloose", "year": 1984, "duration_min": 107, "rating": 6.4, "genres": "Drama, Family, Music, Romance", "genres_pipe": "|Drama|Family|Music|Romance|", "keywords": "dancing, dancer, dance, music, dance teacher", "tags_pipe": "|dancing|dancer|dance|music|dance teacher|", "overview": "When teenager Ren and his family move from big-city Chicago to a small town in the West, he's in for a real case of culture shock.", "text_for_embedding": "Footloose (1984). Genres: Drama, Family, Music, Romance. When teenager Ren and his family move from big-city Chicago to a small town in the West, he's in for a real case of culture shock.. Tags: dancing, dancer, dance, music, dance teacher"} +{"id": "11635", "title": "Old School", "year": 2003, "duration_min": 91, "rating": 6.6, "genres": "Comedy", "genres_pipe": "|Comedy|", "keywords": "sex doll, streaking, mouth to mouth resuscitation", "tags_pipe": "|sex doll|streaking|mouth to mouth resuscitation|", "overview": "Three friends attempt to recapture their glory days by opening up a fraternity near their alma mater.", "text_for_embedding": "Old School (2003). Genres: Comedy. Three friends attempt to recapture their glory days by opening up a fraternity near their alma mater.. Tags: sex doll, streaking, mouth to mouth resuscitation"} +{"id": "177", "title": "The Fisher King", "year": 1991, "duration_min": 137, "rating": 7.2, "genres": "Comedy, Drama", "genres_pipe": "|Comedy|Drama|", "keywords": "holy grail, homeless person, loss of lover, mental disease, sense of guilt, suppressed past, yuppie, cynic, fantasy, self-discovery, housebreaking, forgiveness, gun rampage, talk show, legend", "tags_pipe": "|holy grail|homeless person|loss of lover|mental disease|sense of guilt|suppressed past|yuppie|cynic|fantasy|self-discovery|housebreaking|forgiveness|gun rampage|talk show|legend|", "overview": "Two troubled men face their terrible destinies and events of their past as they join together on a mission to find the Holy Grail and thus to save themselves.", "text_for_embedding": "The Fisher King (1991). Genres: Comedy, Drama. Two troubled men face their terrible destinies and events of their past as they join together on a mission to find the Holy Grail and thus to save themselves.. Tags: holy grail, homeless person, loss of lover, mental disease, sense of guilt, suppressed past, yuppie, cynic, fantasy, self-discovery, housebreaking, forgiveness, gun rampage, talk show, legend"} +{"id": "3600", "title": "I Still Know What You Did Last Summer", "year": 1998, "duration_min": 100, "rating": 5.1, "genres": "Horror, Mystery, Thriller", "genres_pipe": "|Horror|Mystery|Thriller|", "keywords": "competition, island, radio, bahamas, college, knife, fisherman, vacation, revenge, murder, marijuana, resort, blood, slasher, storm", "tags_pipe": "|competition|island|radio|bahamas|college|knife|fisherman|vacation|revenge|murder|marijuana|resort|blood|slasher|storm|", "overview": "Unfinished business with coed Julie James brings the murderer to the Bahamas to terrorize her and her friends, Karla, Tyrell and Will, during a vacation. Can Ray Bronson who survived a bloody attack alongside Julie two summers ago, get to the island in time to save everyone?", "text_for_embedding": "I Still Know What You Did Last Summer (1998). Genres: Horror, Mystery, Thriller. Unfinished business with coed Julie James brings the murderer to the Bahamas to terrorize her and her friends, Karla, Tyrell and Will, during a vacation. Can Ray Bronson who survived a bloody attack alongside Julie two summers ago, get to the island in time to save everyone?. Tags: competition, island, radio, bahamas, college, knife, fisherman, vacation, revenge, murder, marijuana, resort, blood, slasher, storm"} +{"id": "2621", "title": "Return to Me", "year": 2000, "duration_min": 115, "rating": 6.1, "genres": "Romance, Comedy, Drama", "genres_pipe": "|Romance|Comedy|Drama|", "keywords": "transplantation, love of one's life, veterinarian, woman director", "tags_pipe": "|transplantation|love of one's life|veterinarian|woman director|", "overview": "It took a lot of cajoling to get Bob (Duchovny), a recently widowed architect, to go on a blind date at a quirky Irish-Italian eatery. Once there, he's smitten instantly not with his date but with the sharp-witted waitress, Grace (Driver). Everything seems to be going great until an unbelievable truth is revealed, one that could easily break both of their hearts for good.", "text_for_embedding": "Return to Me (2000). Genres: Romance, Comedy, Drama. It took a lot of cajoling to get Bob (Duchovny), a recently widowed architect, to go on a blind date at a quirky Irish-Italian eatery. Once there, he's smitten instantly not with his date but with the sharp-witted waitress, Grace (Driver). Everything seems to be going great until an unbelievable truth is revealed, one that could easily break both of their hearts for good.. Tags: transplantation, love of one's life, veterinarian, woman director"} +{"id": "10358", "title": "Zack and Miri Make a Porno", "year": 2008, "duration_min": 102, "rating": 6.1, "genres": "Comedy", "genres_pipe": "|Comedy|", "keywords": "pornography, love of one's life, platonic love, pornographic video, best friend, sex comedy, best friends in love, aftercreditsstinger, duringcreditsstinger", "tags_pipe": "|pornography|love of one's life|platonic love|pornographic video|best friend|sex comedy|best friends in love|aftercreditsstinger|duringcreditsstinger|", "overview": "Lifelong platonic friends Zack and Miri look to solve their respective cash-flow problems by making an adult film together. As the cameras roll, however, the duo begin to sense that they may have more feelings for each other than they previously thought.", "text_for_embedding": "Zack and Miri Make a Porno (2008). Genres: Comedy. Lifelong platonic friends Zack and Miri look to solve their respective cash-flow problems by making an adult film together. As the cameras roll, however, the duo begin to sense that they may have more feelings for each other than they previously thought.. Tags: pornography, love of one's life, platonic love, pornographic video, best friend, sex comedy, best friends in love, aftercreditsstinger, duringcreditsstinger"} +{"id": "10480", "title": "Nurse Betty", "year": 2000, "duration_min": 108, "rating": 5.9, "genres": "Comedy, Crime, Thriller", "genres_pipe": "|Comedy|Crime|Thriller|", "keywords": "independent film, native american, violence, soap opera, used car dealer, nurse uniform, female bartender, tv production, heart specialist, formosa cafe hollywood, tv writer, murderer duo", "tags_pipe": "|independent film|native american|violence|soap opera|used car dealer|nurse uniform|female bartender|tv production|heart specialist|formosa cafe hollywood|tv writer|murderer duo|", "overview": "What happens when a person decides that life is merely a state of mind? If you're Betty, a small-town waitress and soap opera fan from Fair Oaks, Kansas, you refuse to believe that you can't be with the love of your life just because he doesn't really exist. After all, life is no excuse for not living. Traumatized by a savage event, Betty enters into a fugue state that allows -- even encourages -- her to keep functioning... in a kind of alternate reality.", "text_for_embedding": "Nurse Betty (2000). Genres: Comedy, Crime, Thriller. What happens when a person decides that life is merely a state of mind? If you're Betty, a small-town waitress and soap opera fan from Fair Oaks, Kansas, you refuse to believe that you can't be with the love of your life just because he doesn't really exist. After all, life is no excuse for not living. Traumatized by a savage event, Betty enters into a fugue state that allows -- even encourages -- her to keep functioning... in a kind of alternate reality.. Tags: independent film, native american, violence, soap opera, used car dealer, nurse uniform, female bartender, tv production, heart specialist, formosa cafe hollywood, tv writer, murderer duo"} +{"id": "10313", "title": "The Men Who Stare at Goats", "year": 2009, "duration_min": 93, "rating": 5.9, "genres": "Comedy, War", "genres_pipe": "|Comedy|War|", "keywords": "vietnam veteran, kuwait, new age, staring contest, drug use, paranoid fantasy, hippie lifestyle", "tags_pipe": "|vietnam veteran|kuwait|new age|staring contest|drug use|paranoid fantasy|hippie lifestyle|", "overview": "A reporter in Iraq might just have the story of a lifetime when he meets Lyn Cassady, a guy who claims to be a former member of the U.S. Army's New Earth Army, a unit that employs paranormal powers in their missions.", "text_for_embedding": "The Men Who Stare at Goats (2009). Genres: Comedy, War. A reporter in Iraq might just have the story of a lifetime when he meets Lyn Cassady, a guy who claims to be a former member of the U.S. Army's New Earth Army, a unit that employs paranormal powers in their missions.. Tags: vietnam veteran, kuwait, new age, staring contest, drug use, paranoid fantasy, hippie lifestyle"} +{"id": "18828", "title": "Double Take", "year": 2001, "duration_min": 88, "rating": 5.5, "genres": "Adventure, Drama, Action, Comedy, Romance", "genres_pipe": "|Adventure|Drama|Action|Comedy|Romance|", "keywords": "mexico, cia, fbi, train", "tags_pipe": "|mexico|cia|fbi|train|", "overview": "The governor of a Mexican state is assassinated. Soon after, junior executive Daryl Chase's life turns upside down: after he flags a huge transfer of funds from a Mexican account as probably illegal, he's attacked in his apartment, rescued by a CIA agent, finds his secretary shot dead, and witnesses two cops get killed. He calls the CIA guy who tells him to grab the next train to Mexico. Leaving M", "text_for_embedding": "Double Take (2001). Genres: Adventure, Drama, Action, Comedy, Romance. The governor of a Mexican state is assassinated. Soon after, junior executive Daryl Chase's life turns upside down: after he flags a huge transfer of funds from a Mexican account as probably illegal, he's attacked in his apartment, rescued by a CIA agent, finds his secretary shot dead, and witnesses two cops get killed. He calls the CIA guy who tells him to grab the next train to Mexico. Leaving M. Tags: mexico, cia, fbi, train"} +{"id": "3558", "title": "Girl, Interrupted", "year": 1999, "duration_min": 127, "rating": 7.6, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "based on novel, suicide attempt, puberty, biography, borderline personality disorder", "tags_pipe": "|based on novel|suicide attempt|puberty|biography|borderline personality disorder|", "overview": "Set in the changing world of the late 1960's, Susanna Kaysen's prescribed \"short rest\" from a psychiatrist she had met only once becomes a strange, unknown journey into Alice's Wonderland, where she struggles with the thin line between normal and crazy. Susanna soon realizes how hard it is to get out once she has been committed, and she ultimately has to choose between the world of people who belong inside or the difficult world of reality outside.", "text_for_embedding": "Girl, Interrupted (1999). Genres: Drama. Set in the changing world of the late 1960's, Susanna Kaysen's prescribed \"short rest\" from a psychiatrist she had met only once becomes a strange, unknown journey into Alice's Wonderland, where she struggles with the thin line between normal and crazy. Susanna soon realizes how hard it is to get out once she has been committed, and she ultimately has to choose between the world of people who belong inside or the difficult world of reality outside.. Tags: based on novel, suicide attempt, puberty, biography, borderline personality disorder"} +{"id": "13476", "title": "Win a Date with Tad Hamilton!", "year": 2004, "duration_min": 95, "rating": 5.5, "genres": "Comedy, Romance", "genres_pipe": "|Comedy|Romance|", "keywords": "celebrity, romantic comedy, male female relationship, movie star", "tags_pipe": "|celebrity|romantic comedy|male female relationship|movie star|", "overview": "A small-town girl wins a date with a Hollywood star through a contest. When the date goes better than expected, a love triangle forms between the girl, the celebrity, and the girl's best friend.", "text_for_embedding": "Win a Date with Tad Hamilton! (2004). Genres: Comedy, Romance. A small-town girl wins a date with a Hollywood star through a contest. When the date goes better than expected, a love triangle forms between the girl, the celebrity, and the girl's best friend.. Tags: celebrity, romantic comedy, male female relationship, movie star"} +{"id": "10208", "title": "Muppets from Space", "year": 1999, "duration_min": 87, "rating": 5.8, "genres": "Fantasy, Comedy, Science Fiction, Family", "genres_pipe": "|Fantasy|Comedy|Science Fiction|Family|", "keywords": "puppet, the muppets", "tags_pipe": "|puppet|the muppets|", "overview": "When Gonzo's breakfast cereal tells him that he's the descendant of aliens from another planet, his attempts at extraterrestrial communication get him kidnapped by a secret government agency, prompting the Muppets to spring into action. It's hard to believe Gonzo's story at first, but Kermit and friends soon find themselves on an epic journey into outer space filled with plenty of intergalactic misadventures.", "text_for_embedding": "Muppets from Space (1999). Genres: Fantasy, Comedy, Science Fiction, Family. When Gonzo's breakfast cereal tells him that he's the descendant of aliens from another planet, his attempts at extraterrestrial communication get him kidnapped by a secret government agency, prompting the Muppets to spring into action. It's hard to believe Gonzo's story at first, but Kermit and friends soon find themselves on an epic journey into outer space filled with plenty of intergalactic misadventures.. Tags: puppet, the muppets"} +{"id": "24961", "title": "The Wiz", "year": 1978, "duration_min": 134, "rating": 5.9, "genres": "Adventure, Family, Fantasy, Music", "genres_pipe": "|Adventure|Family|Fantasy|Music|", "keywords": "melancholy, little dog, based on stage musical, based on film, wizard", "tags_pipe": "|melancholy|little dog|based on stage musical|based on film|wizard|", "overview": "A Thanksgiving dinner brings a host of family together in a Harlem apartment, where a 24-year-old schoolteacher named Dorothy Gale (Diana Ross) lives with her Aunt Em (Theresa Merritt) and Uncle Henry (Stanley Greene). Extremely introverted, she has, as Aunt Em teases her, \"never been south of 125th Street\", and refuses to move out and on with her life.", "text_for_embedding": "The Wiz (1978). Genres: Adventure, Family, Fantasy, Music. A Thanksgiving dinner brings a host of family together in a Harlem apartment, where a 24-year-old schoolteacher named Dorothy Gale (Diana Ross) lives with her Aunt Em (Theresa Merritt) and Uncle Henry (Stanley Greene). Extremely introverted, she has, as Aunt Em teases her, \"never been south of 125th Street\", and refuses to move out and on with her life.. Tags: melancholy, little dog, based on stage musical, based on film, wizard"} +{"id": "20697", "title": "Ready to Rumble", "year": 2000, "duration_min": 107, "rating": 4.7, "genres": "Action, Comedy, Drama", "genres_pipe": "|Action|Comedy|Drama|", "keywords": "wrestling, sport", "tags_pipe": "|wrestling|sport|", "overview": "Two slacker wrestling fans are devastated by the ousting of their favorite character by an unscrupulous promoter.", "text_for_embedding": "Ready to Rumble (2000). Genres: Action, Comedy, Drama. Two slacker wrestling fans are devastated by the ousting of their favorite character by an unscrupulous promoter.. Tags: wrestling, sport"} +{"id": "20761", "title": "Play It to the Bone", "year": 1999, "duration_min": 124, "rating": 5.7, "genres": "Comedy, Drama", "genres_pipe": "|Comedy|Drama|", "keywords": "sport", "tags_pipe": "|sport|", "overview": "Two aging fighters in LA, friends, get a call from a Vegas promoter because his undercard fighters for a Mike Tyson bout that night are suddenly unavailable. He wants them to box each other. They agree as long as the winner gets a shot at the middleweight title. They enlist Grace, Cesar's current and Vinnie's ex girlfriend, to drive them to Vegas.", "text_for_embedding": "Play It to the Bone (1999). Genres: Comedy, Drama. Two aging fighters in LA, friends, get a call from a Vegas promoter because his undercard fighters for a Mike Tyson bout that night are suddenly unavailable. He wants them to box each other. They agree as long as the winner gets a shot at the middleweight title. They enlist Grace, Cesar's current and Vinnie's ex girlfriend, to drive them to Vegas.. Tags: sport"} +{"id": "70868", "title": "I Don't Know How She Does It", "year": 2011, "duration_min": 89, "rating": 5.0, "genres": "Romance, Comedy", "genres_pipe": "|Romance|Comedy|", "keywords": "pregnancy, family vacation, widower, working mum, in-laws", "tags_pipe": "|pregnancy|family vacation|widower|working mum|in-laws|", "overview": "A comedy centered on the life of Kate Reddy, a finance executive who is the breadwinner for her husband and two kids.", "text_for_embedding": "I Don't Know How She Does It (2011). Genres: Romance, Comedy. A comedy centered on the life of Kate Reddy, a finance executive who is the breadwinner for her husband and two kids.. Tags: pregnancy, family vacation, widower, working mum, in-laws"} +{"id": "43593", "title": "Piranha 3D", "year": 2010, "duration_min": 88, "rating": 5.3, "genres": "Comedy, Horror", "genres_pipe": "|Comedy|Horror|", "keywords": "yacht, movie in movie, scuba diving, piranha, spring break, man eaten by monster, 3d", "tags_pipe": "|yacht|movie in movie|scuba diving|piranha|spring break|man eaten by monster|3d|", "overview": "Each year the population of sleepy Lake Victoria, Arizona explodes from 5,000 to 50,000 residents for the annual Spring Break celebration. But then, an earthquake opens an underwater chasm, releasing an enormous swarm of ancient Piranha that have been dormant for thousands of years, now with a taste for human flesh. This year, there's something more to worry about than the usual hangovers and complaints from locals, a new type of terror is about to be cut loose on Lake Victoria.", "text_for_embedding": "Piranha 3D (2010). Genres: Comedy, Horror. Each year the population of sleepy Lake Victoria, Arizona explodes from 5,000 to 50,000 residents for the annual Spring Break celebration. But then, an earthquake opens an underwater chasm, releasing an enormous swarm of ancient Piranha that have been dormant for thousands of years, now with a taste for human flesh. This year, there's something more to worry about than the usual hangovers and complaints from locals, a new type of terror is about to be cut loose on Lake Victoria.. Tags: yacht, movie in movie, scuba diving, piranha, spring break, man eaten by monster, 3d"} +{"id": "6478", "title": "Beyond the Sea", "year": 2004, "duration_min": 118, "rating": 6.5, "genres": "Drama, Music", "genres_pipe": "|Drama|Music|", "keywords": "musical, perfectionist, rowboat, courtship", "tags_pipe": "|musical|perfectionist|rowboat|courtship|", "overview": "Based on the life and career of legendary entertainer, Bobby Darin, the biopic moves back and forth between his childhood and adulthood, to tell the tale of his remarkable life. Kevin Spacey did his own singing for Beyond the Sea, recreating Bobby Darin's vocal style with uncanny accuracy.", "text_for_embedding": "Beyond the Sea (2004). Genres: Drama, Music. Based on the life and career of legendary entertainer, Bobby Darin, the biopic moves back and forth between his childhood and adulthood, to tell the tale of his remarkable life. Kevin Spacey did his own singing for Beyond the Sea, recreating Bobby Darin's vocal style with uncanny accuracy.. Tags: musical, perfectionist, rowboat, courtship"} +{"id": "40688", "title": "Meet the Deedles", "year": 1998, "duration_min": 93, "rating": 4.1, "genres": "Animation, Comedy, Family", "genres_pipe": "|Animation|Comedy|Family|", "keywords": "", "tags_pipe": "", "overview": "Two surfers end up as Yellowstone park rangers and have to stop a former ranger who is out for revenge.", "text_for_embedding": "Meet the Deedles (1998). Genres: Animation, Comedy, Family. Two surfers end up as Yellowstone park rangers and have to stop a former ranger who is out for revenge.. Tags: "} +{"id": "26672", "title": "The Thief and the Cobbler", "year": 1993, "duration_min": 72, "rating": 6.8, "genres": "Adventure, Fantasy, Animation, Science Fiction, Family", "genres_pipe": "|Adventure|Fantasy|Animation|Science Fiction|Family|", "keywords": "prophecy, witch, princess, battle, desert, troubled production, unfinished film", "tags_pipe": "|prophecy|witch|princess|battle|desert|troubled production|unfinished film|", "overview": "It is written among the limitless constellations of the celestial heavens, and in the depths of the emerald seas, and upon every grain of sand in the vast deserts, that the world which we see is an outward and visible dream, of an inward and invisible reality ... Once upon a time there was a golden city. In the center of the golden city, atop the tallest minaret, were three golden balls. The ancients had prophesied that if the three golden balls were ever taken away, harmony would yield to discord, and the city would fall to destruction and death. But... the mystics had also foretold that the city might be saved by the simplest soul with the smallest and simplest of things. In the city there dwelt a lowly shoemaker, who was known as Tack the Cobbler. Also in the city... existed a Thief, who shall be ... nameless.", "text_for_embedding": "The Thief and the Cobbler (1993). Genres: Adventure, Fantasy, Animation, Science Fiction, Family. It is written among the limitless constellations of the celestial heavens, and in the depths of the emerald seas, and upon every grain of sand in the vast deserts, that the world which we see is an outward and visible dream, of an inward and invisible reality ... Once upon a time there was a golden city. In the center of the golden city, atop the tallest minaret, were three golden balls. The ancients had prophesied that if the three golden balls were ever taken away, harmony would yield to discord, and the city would fall to destruction and death. But... the mystics had also foretold that the city might be saved by the simplest soul with the smallest and simplest of things. In the city there dwelt a lowly shoemaker, who was known as Tack the Cobbler. Also in the city... existed a Thief, who shall be ... nameless.. Tags: prophecy, witch, princess, battle, desert, troubled production, unfinished film"} +{"id": "45881", "title": "The Bridge of San Luis Rey", "year": 2004, "duration_min": 120, "rating": 5.4, "genres": "Romance, Drama", "genres_pipe": "|Romance|Drama|", "keywords": "based on novel, bridge, peru, period drama, 18th century, woman director, collapse", "tags_pipe": "|based on novel|bridge|peru|period drama|18th century|woman director|collapse|", "overview": "The Bridge of San Luis Rey is American author Thornton Wilder's second novel, first published in 1927 to worldwide acclaim. It tells the story of several interrelated people who die in the collapse of an Inca rope-fiber suspension bridge in Peru, and the events that lead up to their being on the bridge.[ A friar who has witnessed the tragic accident then goes about inquiring into the lives of the victims, seeking some sort of cosmic answer to the question of why each had to die. The novel won the Pulitzer Prize in 1928.", "text_for_embedding": "The Bridge of San Luis Rey (2004). Genres: Romance, Drama. The Bridge of San Luis Rey is American author Thornton Wilder's second novel, first published in 1927 to worldwide acclaim. It tells the story of several interrelated people who die in the collapse of an Inca rope-fiber suspension bridge in Peru, and the events that lead up to their being on the bridge.[ A friar who has witnessed the tragic accident then goes about inquiring into the lives of the victims, seeking some sort of cosmic answer to the question of why each had to die. The novel won the Pulitzer Prize in 1928.. Tags: based on novel, bridge, peru, period drama, 18th century, woman director, collapse"} +{"id": "41283", "title": "Faster", "year": 2010, "duration_min": 98, "rating": 6.1, "genres": "Crime, Drama, Action, Thriller", "genres_pipe": "|Crime|Drama|Action|Thriller|", "keywords": "", "tags_pipe": "", "overview": "Driver (Dwayne Johnson) has spent the last 10 years in prison planning revenge for the murder of his brother. Now that Driver is free to carry out his deadly plan only two men stand in his way- Billy Bob Thornton plays a veteran cop and Oliver Jackson-Cohen, a crazy hitman. With those two close on his trail, Driver races to carry out his mission as the mystery surrounding his brothers murder deepens.", "text_for_embedding": "Faster (2010). Genres: Crime, Drama, Action, Thriller. Driver (Dwayne Johnson) has spent the last 10 years in prison planning revenge for the murder of his brother. Now that Driver is free to carry out his deadly plan only two men stand in his way- Billy Bob Thornton plays a veteran cop and Oliver Jackson-Cohen, a crazy hitman. With those two close on his trail, Driver races to carry out his mission as the mystery surrounding his brothers murder deepens.. Tags: "} +{"id": "4935", "title": "Howl's Moving Castle", "year": 2004, "duration_min": 119, "rating": 8.2, "genres": "Fantasy, Animation, Adventure", "genres_pipe": "|Fantasy|Animation|Adventure|", "keywords": "flying, witch, rain, castle, scarecrow, body exchange, hatter, bakery, demon, anime", "tags_pipe": "|flying|witch|rain|castle|scarecrow|body exchange|hatter|bakery|demon|anime|", "overview": "When Sophie, a shy young woman, is cursed with an old body by a spiteful witch, her only chance of breaking the spell lies with a self-indulgent yet insecure young wizard and his companions in his legged, walking home.", "text_for_embedding": "Howl's Moving Castle (2004). Genres: Fantasy, Animation, Adventure. When Sophie, a shy young woman, is cursed with an old body by a spiteful witch, her only chance of breaking the spell lies with a self-indulgent yet insecure young wizard and his companions in his legged, walking home.. Tags: flying, witch, rain, castle, scarecrow, body exchange, hatter, bakery, demon, anime"} +{"id": "19908", "title": "Zombieland", "year": 2009, "duration_min": 88, "rating": 7.2, "genres": "Comedy, Horror", "genres_pipe": "|Comedy|Horror|", "keywords": "washington d.c., sister sister relationship, post-apocalyptic, road trip, blood splatter, parody, survival, zombie, violence, survival horror, amusement park, twinkie, body count, zombification, disposing of a dead body", "tags_pipe": "|washington d.c.|sister sister relationship|post-apocalyptic|road trip|blood splatter|parody|survival|zombie|violence|survival horror|amusement park|twinkie|body count|zombification|disposing of a dead body|", "overview": "Columbus has made a habit of running from what scares him. Tallahassee doesn't have fears. If he did, he'd kick their ever-living ass. In a world overrun by zombies, these two are perfectly evolved survivors. But now, they're about to stare down the most terrifying prospect of all: each other.", "text_for_embedding": "Zombieland (2009). Genres: Comedy, Horror. Columbus has made a habit of running from what scares him. Tallahassee doesn't have fears. If he did, he'd kick their ever-living ass. In a world overrun by zombies, these two are perfectly evolved survivors. But now, they're about to stare down the most terrifying prospect of all: each other.. Tags: washington d.c., sister sister relationship, post-apocalyptic, road trip, blood splatter, parody, survival, zombie, violence, survival horror, amusement park, twinkie, body count, zombification, disposing of a dead body"} +{"id": "10663", "title": "The Waterboy", "year": 1998, "duration_min": 90, "rating": 5.9, "genres": "Comedy", "genres_pipe": "|Comedy|", "keywords": "sport, social outcast, ridicule, lawn mower, deserted by husband, low self esteem, black and white to color", "tags_pipe": "|sport|social outcast|ridicule|lawn mower|deserted by husband|low self esteem|black and white to color|", "overview": "Bobby Boucher is a water boy for a struggling college football team. The coach discovers Boucher's hidden rage makes him a tackling machine whose bone-crushing power might vault his team into the playoffs.", "text_for_embedding": "The Waterboy (1998). Genres: Comedy. Bobby Boucher is a water boy for a struggling college football team. The coach discovers Boucher's hidden rage makes him a tackling machine whose bone-crushing power might vault his team into the playoffs.. Tags: sport, social outcast, ridicule, lawn mower, deserted by husband, low self esteem, black and white to color"} +{"id": "1891", "title": "The Empire Strikes Back", "year": 1980, "duration_min": 124, "rating": 8.2, "genres": "Adventure, Action, Science Fiction", "genres_pipe": "|Adventure|Action|Science Fiction|", "keywords": "rebel, android, asteroid, space battle, snow storm, space colony, spaceship, lightsaber, jedi, good vs evil, rebellion, the force, space opera, stormtrooper, wookie", "tags_pipe": "|rebel|android|asteroid|space battle|snow storm|space colony|spaceship|lightsaber|jedi|good vs evil|rebellion|the force|space opera|stormtrooper|wookie|", "overview": "The epic saga continues as Luke Skywalker, in hopes of defeating the evil Galactic Empire, learns the ways of the Jedi from aging master Yoda. But Darth Vader is more determined than ever to capture Luke. Meanwhile, rebel leader Princess Leia, cocky Han Solo, Chewbacca, and droids C-3PO and R2-D2 are thrown into various stages of capture, betrayal and despair.", "text_for_embedding": "The Empire Strikes Back (1980). Genres: Adventure, Action, Science Fiction. The epic saga continues as Luke Skywalker, in hopes of defeating the evil Galactic Empire, learns the ways of the Jedi from aging master Yoda. But Darth Vader is more determined than ever to capture Luke. Meanwhile, rebel leader Princess Leia, cocky Han Solo, Chewbacca, and droids C-3PO and R2-D2 are thrown into various stages of capture, betrayal and despair.. Tags: rebel, android, asteroid, space battle, snow storm, space colony, spaceship, lightsaber, jedi, good vs evil, rebellion, the force, space opera, stormtrooper, wookie"} +{"id": "9737", "title": "Bad Boys", "year": 1995, "duration_min": 118, "rating": 6.5, "genres": "Action, Comedy, Crime, Thriller", "genres_pipe": "|Action|Comedy|Crime|Thriller|", "keywords": "miami, detective, handcuffs, airport, mexican standoff, strip club, witness protection, car crash, internal affairs, gunfight, explosion, brutality, foot chase, car chase, drug lord", "tags_pipe": "|miami|detective|handcuffs|airport|mexican standoff|strip club|witness protection|car crash|internal affairs|gunfight|explosion|brutality|foot chase|car chase|drug lord|", "overview": "Marcus Burnett is a hen-pecked family man. Mike Lowry is a foot-loose and fancy free ladies' man. Both are Miami policemen, and both have 72 hours to reclaim a consignment of drugs stolen from under their station's nose. To complicate matters, in order to get the assistance of the sole witness to a murder, they have to pretend to be each other.", "text_for_embedding": "Bad Boys (1995). Genres: Action, Comedy, Crime, Thriller. Marcus Burnett is a hen-pecked family man. Mike Lowry is a foot-loose and fancy free ladies' man. Both are Miami policemen, and both have 72 hours to reclaim a consignment of drugs stolen from under their station's nose. To complicate matters, in order to get the assistance of the sole witness to a murder, they have to pretend to be each other.. Tags: miami, detective, handcuffs, airport, mexican standoff, strip club, witness protection, car crash, internal affairs, gunfight, explosion, brutality, foot chase, car chase, drug lord"} +{"id": "37137", "title": "The Naked Gun 2½: The Smell of Fear", "year": 1991, "duration_min": 85, "rating": 6.6, "genres": "Comedy, Crime", "genres_pipe": "|Comedy|Crime|", "keywords": "washington d.c., usa president, spoof, the white house", "tags_pipe": "|washington d.c.|usa president|spoof|the white house|", "overview": "Bumbling cop Frank Drebin is out to foil the big boys in the energy industry, who intend to suppress technology that will put them out of business.", "text_for_embedding": "The Naked Gun 2½: The Smell of Fear (1991). Genres: Comedy, Crime. Bumbling cop Frank Drebin is out to foil the big boys in the energy industry, who intend to suppress technology that will put them out of business.. Tags: washington d.c., usa president, spoof, the white house"} +{"id": "9532", "title": "Final Destination", "year": 2000, "duration_min": 98, "rating": 6.4, "genres": "Horror", "genres_pipe": "|Horror|", "keywords": "omen, airplane accident, corpse, death, near-death experience", "tags_pipe": "|omen|airplane accident|corpse|death|near-death experience|", "overview": "After a teenager has a terrifying vision of him and his friends dying in a plane crash, he prevents the accident only to have Death hunt them down, one by one.", "text_for_embedding": "Final Destination (2000). Genres: Horror. After a teenager has a terrifying vision of him and his friends dying in a plane crash, he prevents the accident only to have Death hunt them down, one by one.. Tags: omen, airplane accident, corpse, death, near-death experience"} +{"id": "10316", "title": "The Ides of March", "year": 2011, "duration_min": 101, "rating": 6.5, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "ohio, politics, dirty tricks, presidential campaign, endorsement, campaign speech, presidential debate", "tags_pipe": "|ohio|politics|dirty tricks|presidential campaign|endorsement|campaign speech|presidential debate|", "overview": "Dirty tricks stand to soil an ambitious young press spokesman's idealism in a cutthroat presidential campaign where 'victory' is relative.", "text_for_embedding": "The Ides of March (2011). Genres: Drama. Dirty tricks stand to soil an ambitious young press spokesman's idealism in a cutthroat presidential campaign where 'victory' is relative.. Tags: ohio, politics, dirty tricks, presidential campaign, endorsement, campaign speech, presidential debate"} +{"id": "2787", "title": "Pitch Black", "year": 2000, "duration_min": 108, "rating": 6.7, "genres": "Thriller, Science Fiction, Action", "genres_pipe": "|Thriller|Science Fiction|Action|", "keywords": "darkness, dystopia, comet, alien life-form, survival, eclipse, flask, corps", "tags_pipe": "|darkness|dystopia|comet|alien life-form|survival|eclipse|flask|corps|", "overview": "When their ship crash-lands on a remote planet, the marooned passengers soon learn that escaped convict Riddick isn't the only thing they have to fear. Deadly creatures lurk in the shadows, waiting to attack in the dark, and the planet is rapidly plunging into the utter blackness of a total eclipse. With the body count rising, the doomed survivors are forced to turn to Riddick with his eerie eyes to guide them through the darkness to safety. With time running out, there's only one rule: Stay in the light.", "text_for_embedding": "Pitch Black (2000). Genres: Thriller, Science Fiction, Action. When their ship crash-lands on a remote planet, the marooned passengers soon learn that escaped convict Riddick isn't the only thing they have to fear. Deadly creatures lurk in the shadows, waiting to attack in the dark, and the planet is rapidly plunging into the utter blackness of a total eclipse. With the body count rising, the doomed survivors are forced to turn to Riddick with his eerie eyes to guide them through the darkness to safety. With time running out, there's only one rule: Stay in the light.. Tags: darkness, dystopia, comet, alien life-form, survival, eclipse, flask, corps"} +{"id": "12658", "title": "Someone Like You...", "year": 2001, "duration_min": 97, "rating": 6.0, "genres": "Comedy, Romance", "genres_pipe": "|Comedy|Romance|", "keywords": "feminism, cohabitant, tv show, man-woman relation, man between two women", "tags_pipe": "|feminism|cohabitant|tv show|man-woman relation|man between two women|", "overview": "Jane Goodale has everything going for her. She's a producer on a popular daytime talk show, and is in a hot romance with the show's dashing executive producer Ray. But when the relationship goes terribly awry, Jane begins an extensive study of the male animal, including her womanizing roommate Eddie. Jane puts her studies and romantic misadventure to use as a pseudonymous sex columnist -- and becomes a sensation.", "text_for_embedding": "Someone Like You... (2001). Genres: Comedy, Romance. Jane Goodale has everything going for her. She's a producer on a popular daytime talk show, and is in a hot romance with the show's dashing executive producer Ray. But when the relationship goes terribly awry, Jane begins an extensive study of the male animal, including her womanizing roommate Eddie. Jane puts her studies and romantic misadventure to use as a pseudonymous sex columnist -- and becomes a sensation.. Tags: feminism, cohabitant, tv show, man-woman relation, man between two women"} +{"id": "152601", "title": "Her", "year": 2013, "duration_min": 126, "rating": 7.9, "genres": "Romance, Science Fiction, Drama", "genres_pipe": "|Romance|Science Fiction|Drama|", "keywords": "artificial intelligence, computer, love, loneliness, transhumanism, heartbreak, near future, singularity, bittersweet", "tags_pipe": "|artificial intelligence|computer|love|loneliness|transhumanism|heartbreak|near future|singularity|bittersweet|", "overview": "In the not so distant future, Theodore, a lonely writer purchases a newly developed operating system designed to meet the user's every needs. To Theordore's surprise, a romantic relationship develops between him and his operating system. This unconventional love story blends science fiction and romance in a sweet tale that explores the nature of love and the ways that technology isolates and connects us all.", "text_for_embedding": "Her (2013). Genres: Romance, Science Fiction, Drama. In the not so distant future, Theodore, a lonely writer purchases a newly developed operating system designed to meet the user's every needs. To Theordore's surprise, a romantic relationship develops between him and his operating system. This unconventional love story blends science fiction and romance in a sweet tale that explores the nature of love and the ways that technology isolates and connects us all.. Tags: artificial intelligence, computer, love, loneliness, transhumanism, heartbreak, near future, singularity, bittersweet"} +{"id": "10866", "title": "Joy Ride", "year": 2001, "duration_min": 97, "rating": 6.3, "genres": "Mystery, Thriller, Drama", "genres_pipe": "|Mystery|Thriller|Drama|", "keywords": "colorado, friendship, stalker, pokies, truck driver, cb radio, strange", "tags_pipe": "|colorado|friendship|stalker|pokies|truck driver|cb radio|strange|", "overview": "Three young people on a road trip from Colorado to New Jersey talk to a trucker on their CB radio, then must escape when he turns out to be a psychotic killer.", "text_for_embedding": "Joy Ride (2001). Genres: Mystery, Thriller, Drama. Three young people on a road trip from Colorado to New Jersey talk to a trucker on their CB radio, then must escape when he turns out to be a psychotic killer.. Tags: colorado, friendship, stalker, pokies, truck driver, cb radio, strange"} +{"id": "227707", "title": "The Adventurer: The Curse of the Midas Box", "year": 2013, "duration_min": 99, "rating": 5.1, "genres": "Fantasy, Adventure, Family", "genres_pipe": "|Fantasy|Adventure|Family|", "keywords": "london england, based on novel, key, adventure, supernatural, steampunk", "tags_pipe": "|london england|based on novel|key|adventure|supernatural|steampunk|", "overview": "17-year-old Mariah Mundi's life is turned upside down when his parents vanish and his younger brother is kidnapped. Following a trail of clues to the darkly majestic Prince Regent Hotel, Mariah discovers a hidden realm of child-stealing monsters, deadly secrets and a long-lost artifact that grants limitless wealth – but also devastating supernatural power. With the fate of his world, and his family at stake, Mariah will risk everything to unravel the Curse of the Midas Box.", "text_for_embedding": "The Adventurer: The Curse of the Midas Box (2013). Genres: Fantasy, Adventure, Family. 17-year-old Mariah Mundi's life is turned upside down when his parents vanish and his younger brother is kidnapped. Following a trail of clues to the darkly majestic Prince Regent Hotel, Mariah discovers a hidden realm of child-stealing monsters, deadly secrets and a long-lost artifact that grants limitless wealth – but also devastating supernatural power. With the fate of his world, and his family at stake, Mariah will risk everything to unravel the Curse of the Midas Box.. Tags: london england, based on novel, key, adventure, supernatural, steampunk"} +{"id": "21349", "title": "Anywhere But Here", "year": 1999, "duration_min": 114, "rating": 5.9, "genres": "Drama, Comedy, Romance", "genres_pipe": "|Drama|Comedy|Romance|", "keywords": "dream", "tags_pipe": "|dream|", "overview": "In this adaptation of the Mona Simpson novel, single mother Adele August is bad with money, and even worse when it comes to making decisions. Her straight-laced daughter, Ann, is a successful high school student with Ivy League aspirations. When Adele decides to pack up and move the two of them from the Midwest to Beverly Hills, Calif., to pursue her dreams of Hollywood success, Ann grows frustrated with her mother's irresponsible and impulsive ways.", "text_for_embedding": "Anywhere But Here (1999). Genres: Drama, Comedy, Romance. In this adaptation of the Mona Simpson novel, single mother Adele August is bad with money, and even worse when it comes to making decisions. Her straight-laced daughter, Ann, is a successful high school student with Ivy League aspirations. When Adele decides to pack up and move the two of them from the Midwest to Beverly Hills, Calif., to pursue her dreams of Hollywood success, Ann grows frustrated with her mother's irresponsible and impulsive ways.. Tags: dream"} +{"id": "19150", "title": "The Crew", "year": 2000, "duration_min": 88, "rating": 6.4, "genres": "Action, Comedy", "genres_pipe": "|Action|Comedy|", "keywords": "", "tags_pipe": "", "overview": "Four retired mobsters plan one last crime to save their retirement home.", "text_for_embedding": "The Crew (2000). Genres: Action, Comedy. Four retired mobsters plan one last crime to save their retirement home.. Tags: "} +{"id": "70435", "title": "Haywire", "year": 2011, "duration_min": 93, "rating": 5.6, "genres": "Action, Thriller", "genres_pipe": "|Action|Thriller|", "keywords": "mercenary, secret agent, rescue, foot chase, spanish", "tags_pipe": "|mercenary|secret agent|rescue|foot chase|spanish|", "overview": "Mallory Kane is a highly trained operative who works for a government security contractor in the dirtiest, most dangerous corners of the world. After successfully freeing a Chinese journalist held hostage, she is double crossed and left for dead by someone close to her in her own agency. Suddenly the target of skilled assassins who know her every move, Mallory must find the truth in order to stay alive.", "text_for_embedding": "Haywire (2011). Genres: Action, Thriller. Mallory Kane is a highly trained operative who works for a government security contractor in the dirtiest, most dangerous corners of the world. After successfully freeing a Chinese journalist held hostage, she is double crossed and left for dead by someone close to her in her own agency. Suddenly the target of skilled assassins who know her every move, Mallory must find the truth in order to stay alive.. Tags: mercenary, secret agent, rescue, foot chase, spanish"} +{"id": "580", "title": "Jaws: The Revenge", "year": 1987, "duration_min": 89, "rating": 3.5, "genres": "Adventure, Thriller", "genres_pipe": "|Adventure|Thriller|", "keywords": "shark attack, bahamas, dying and death, aggression by animal, sequel, revenge, underwater, shark, great white shark, animal attack, caribbean, christmas, banana boat", "tags_pipe": "|shark attack|bahamas|dying and death|aggression by animal|sequel|revenge|underwater|shark|great white shark|animal attack|caribbean|christmas|banana boat|", "overview": "After another deadly shark attack, Ellen Brody decides she has had enough of New England's Amity Island and moves to the Caribbean to join her son, Michael, and his family. But a great white shark has followed her there, hungry for more lives.", "text_for_embedding": "Jaws: The Revenge (1987). Genres: Adventure, Thriller. After another deadly shark attack, Ellen Brody decides she has had enough of New England's Amity Island and moves to the Caribbean to join her son, Michael, and his family. But a great white shark has followed her there, hungry for more lives.. Tags: shark attack, bahamas, dying and death, aggression by animal, sequel, revenge, underwater, shark, great white shark, animal attack, caribbean, christmas, banana boat"} +{"id": "9819", "title": "Marvin's Room", "year": 1996, "duration_min": 98, "rating": 6.6, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "sister sister relationship, sister, leukemia, reunion, cancer, bone marrow transplant", "tags_pipe": "|sister sister relationship|sister|leukemia|reunion|cancer|bone marrow transplant|", "overview": "A leukemia patient attempts to end a 20-year feud with her sister to get her bone marrow.", "text_for_embedding": "Marvin's Room (1996). Genres: Drama. A leukemia patient attempts to end a 20-year feud with her sister to get her bone marrow.. Tags: sister sister relationship, sister, leukemia, reunion, cancer, bone marrow transplant"} +{"id": "13579", "title": "The Longshots", "year": 2008, "duration_min": 94, "rating": 6.5, "genres": "Drama, Family", "genres_pipe": "|Drama|Family|", "keywords": "", "tags_pipe": "", "overview": "The true story of Jasmine Plummer who, at the age of eleven, became the first female to play in Pop Warner football tournament in its 56-year history.", "text_for_embedding": "The Longshots (2008). Genres: Drama, Family. The true story of Jasmine Plummer who, at the age of eleven, became the first female to play in Pop Warner football tournament in its 56-year history.. Tags: "} +{"id": "20024", "title": "The End of the Affair", "year": 1999, "duration_min": 102, "rating": 6.6, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "bomb, sex, jealousy, infidelity, obsession, world war ii, passion, romance, cheating wife, church", "tags_pipe": "|bomb|sex|jealousy|infidelity|obsession|world war ii|passion|romance|cheating wife|church|", "overview": "On a rainy London night in 1946, novelist Maurice Bendrix has a chance meeting with Henry Miles, husband of his ex-mistress Sarah, who abruptly ended their affair two years before. Bendrix's obsession with Sarah is rekindled; he succumbs to his own jealousy and arranges to have her followed.", "text_for_embedding": "The End of the Affair (1999). Genres: Drama. On a rainy London night in 1946, novelist Maurice Bendrix has a chance meeting with Henry Miles, husband of his ex-mistress Sarah, who abruptly ended their affair two years before. Bendrix's obsession with Sarah is rekindled; he succumbs to his own jealousy and arranges to have her followed.. Tags: bomb, sex, jealousy, infidelity, obsession, world war ii, passion, romance, cheating wife, church"} +{"id": "2453", "title": "Harley Davidson and the Marlboro Man", "year": 1991, "duration_min": 98, "rating": 6.1, "genres": "Action, Thriller", "genres_pipe": "|Action|Thriller|", "keywords": "corruption, harley davidson, drug dealer, los angeles, las vegas", "tags_pipe": "|corruption|harley davidson|drug dealer|los angeles|las vegas|", "overview": "It's the lawless future, and renegade biker Harley Davidson (Mickey Rourke) and his surly cowboy buddy, Marlboro (Don Johnson), learn that a corrupt bank is about to foreclose on their friend's bar to further an expanding empire. Harley and Marlboro decide to help by robbing the crooked bank. But when they accidentally filch a drug shipment, they find themselves on the run from criminal financiers and the mob in this rugged action adventure.", "text_for_embedding": "Harley Davidson and the Marlboro Man (1991). Genres: Action, Thriller. It's the lawless future, and renegade biker Harley Davidson (Mickey Rourke) and his surly cowboy buddy, Marlboro (Don Johnson), learn that a corrupt bank is about to foreclose on their friend's bar to further an expanding empire. Harley and Marlboro decide to help by robbing the crooked bank. But when they accidentally filch a drug shipment, they find themselves on the run from criminal financiers and the mob in this rugged action adventure.. Tags: corruption, harley davidson, drug dealer, los angeles, las vegas"} +{"id": "6973", "title": "In the Valley of Elah", "year": 2007, "duration_min": 124, "rating": 6.6, "genres": "History, Drama, Thriller, Crime, Mystery", "genres_pipe": "|History|Drama|Thriller|Crime|Mystery|", "keywords": "father son relationship, detective, war crimes, patriotism, homicide, investigation, iraq, military service, police, cover-up, disappearance, murder investigation", "tags_pipe": "|father son relationship|detective|war crimes|patriotism|homicide|investigation|iraq|military service|police|cover-up|disappearance|murder investigation|", "overview": "A career officer and his wife work with a police detective to uncover the truth behind their son's disappearance following his return from a tour of duty in Iraq.", "text_for_embedding": "In the Valley of Elah (2007). Genres: History, Drama, Thriller, Crime, Mystery. A career officer and his wife work with a police detective to uncover the truth behind their son's disappearance following his return from a tour of duty in Iraq.. Tags: father son relationship, detective, war crimes, patriotism, homicide, investigation, iraq, military service, police, cover-up, disappearance, murder investigation"} +{"id": "11156", "title": "Coco Before Chanel", "year": 2009, "duration_min": 110, "rating": 6.6, "genres": "Drama, History", "genres_pipe": "|Drama|History|", "keywords": "fashion designer, woman director", "tags_pipe": "|fashion designer|woman director|", "overview": "2009 biopic about the early life of Coco Chanel. Several years after leaving the orphanage, to which her father never returned for her, Gabrielle Chanel finds herself working in a provincial bar both. She's both a seamstress for the performers and a singer, earning the nickname Coco from the song she sings nightly with her sister. A liaison with Baron Balsan gives her an entree into French society and a chance to develop her gift for designing.", "text_for_embedding": "Coco Before Chanel (2009). Genres: Drama, History. 2009 biopic about the early life of Coco Chanel. Several years after leaving the orphanage, to which her father never returned for her, Gabrielle Chanel finds herself working in a provincial bar both. She's both a seamstress for the performers and a singer, earning the nickname Coco from the song she sings nightly with her sister. A liaison with Baron Balsan gives her an entree into French society and a chance to develop her gift for designing.. Tags: fashion designer, woman director"} +{"id": "354110", "title": "Forsaken", "year": 2015, "duration_min": 90, "rating": 5.8, "genres": "Western, Drama", "genres_pipe": "|Western|Drama|", "keywords": "", "tags_pipe": "", "overview": "John Henry returns to his hometown in hopes of repairing his relationship with his estranged father, but a local gang is terrorizing the town. John Henry is the only one who can stop them, however he has abandoned both his gun and reputation as a fearless quick-draw killer.", "text_for_embedding": "Forsaken (2015). Genres: Western, Drama. John Henry returns to his hometown in hopes of repairing his relationship with his estranged father, but a local gang is terrorizing the town. John Henry is the only one who can stop them, however he has abandoned both his gun and reputation as a fearless quick-draw killer.. Tags: "} +{"id": "22215", "title": "Cheri", "year": 2009, "duration_min": 86, "rating": 5.9, "genres": "Drama, Comedy, Romance", "genres_pipe": "|Drama|Comedy|Romance|", "keywords": "", "tags_pipe": "", "overview": "A sumptuous dramatic comedy set in late 19th Century France, during the Belle Epoque, a period of social and cultural excess in European upper classes which ended only as the First World War erupted.", "text_for_embedding": "Cheri (2009). Genres: Drama, Comedy, Romance. A sumptuous dramatic comedy set in late 19th Century France, during the Belle Epoque, a period of social and cultural excess in European upper classes which ended only as the First World War erupted.. Tags: "} +{"id": "11632", "title": "Vanity Fair", "year": 2004, "duration_min": 141, "rating": 5.5, "genres": "Drama, Romance", "genres_pipe": "|Drama|Romance|", "keywords": "london england, british empire, lover, advancement, aristocrat, woman director", "tags_pipe": "|london england|british empire|lover|advancement|aristocrat|woman director|", "overview": "Beautiful, funny, passionate, and calculating, Becky is the orphaned daughter of a starving English artist and a French chorus girl. She yearns for a more glamorous life than her birthright promises and resolves to conquer English society by any means possible. A mere ascension into the heights of society is simply not enough. So Becky finds a patron in the powerful Marquess of Steyne whose whims enable Becky to realise her dreams. But is the ultimate cost too high for her?", "text_for_embedding": "Vanity Fair (2004). Genres: Drama, Romance. Beautiful, funny, passionate, and calculating, Becky is the orphaned daughter of a starving English artist and a French chorus girl. She yearns for a more glamorous life than her birthright promises and resolves to conquer English society by any means possible. A mere ascension into the heights of society is simply not enough. So Becky finds a patron in the powerful Marquess of Steyne whose whims enable Becky to realise her dreams. But is the ultimate cost too high for her?. Tags: london england, british empire, lover, advancement, aristocrat, woman director"} +{"id": "30596", "title": "Bodyguards and Assassins", "year": 2009, "duration_min": 139, "rating": 6.5, "genres": "Drama, Action, History", "genres_pipe": "|Drama|Action|History|", "keywords": "assassination, martial arts, sword, blood splatter, impalement, beaten to death, hong kong, head bashed in, extreme violence, violent death, hook, bloody fight, throat slitting, violence", "tags_pipe": "|assassination|martial arts|sword|blood splatter|impalement|beaten to death|hong kong|head bashed in|extreme violence|violent death|hook|bloody fight|throat slitting|violence|", "overview": "In 1905, revolutionist Sun Yat-Sen visits Hong Kong to discuss plans with Tongmenghui members to overthrow the Qing dynasty. But when they find out that assassins have been sent to kill him, they assemble a group of protectors to prevent any attacks.", "text_for_embedding": "Bodyguards and Assassins (2009). Genres: Drama, Action, History. In 1905, revolutionist Sun Yat-Sen visits Hong Kong to discuss plans with Tongmenghui members to overthrow the Qing dynasty. But when they find out that assassins have been sent to kill him, they assemble a group of protectors to prevent any attacks.. Tags: assassination, martial arts, sword, blood splatter, impalement, beaten to death, hong kong, head bashed in, extreme violence, violent death, hook, bloody fight, throat slitting, violence"} +{"id": "3021", "title": "1408", "year": 2007, "duration_min": 104, "rating": 6.5, "genres": "Horror, Thriller", "genres_pipe": "|Horror|Thriller|", "keywords": "suicide, new york, hotel, fire, hotel room, wife husband relationship, suicide attempt, window, door, haunted house, research, ghost world, painting, telephone, loss of daughter", "tags_pipe": "|suicide|new york|hotel|fire|hotel room|wife husband relationship|suicide attempt|window|door|haunted house|research|ghost world|painting|telephone|loss of daughter|", "overview": "A man who specializes in debunking paranormal occurrences checks into the fabled room 1408 in the Dolphin Hotel. Soon after settling in, he confronts genuine terror.", "text_for_embedding": "1408 (2007). Genres: Horror, Thriller. A man who specializes in debunking paranormal occurrences checks into the fabled room 1408 in the Dolphin Hotel. Soon after settling in, he confronts genuine terror.. Tags: suicide, new york, hotel, fire, hotel room, wife husband relationship, suicide attempt, window, door, haunted house, research, ghost world, painting, telephone, loss of daughter"} +{"id": "957", "title": "Spaceballs", "year": 1987, "duration_min": 96, "rating": 6.7, "genres": "Comedy, Science Fiction", "genres_pipe": "|Comedy|Science Fiction|", "keywords": "android, lasergun, swordplay, temple, space marine, space battle, space travel, space mission, galaxy, comb, altar, magnet beam, jam, speed of light, plastic surgery", "tags_pipe": "|android|lasergun|swordplay|temple|space marine|space battle|space travel|space mission|galaxy|comb|altar|magnet beam|jam|speed of light|plastic surgery|", "overview": "When the nefarious Dark Helmet hatches a plan to snatch Princess Vespa and steal her planet's air, space-bum-for-hire Lone Starr and his clueless sidekick fly to the rescue. Along the way, they meet Yogurt, who puts Lone Starr wise to the power of \"The Schwartz.\" Can he master it in time to save the day?", "text_for_embedding": "Spaceballs (1987). Genres: Comedy, Science Fiction. When the nefarious Dark Helmet hatches a plan to snatch Princess Vespa and steal her planet's air, space-bum-for-hire Lone Starr and his clueless sidekick fly to the rescue. Along the way, they meet Yogurt, who puts Lone Starr wise to the power of \"The Schwartz.\" Can he master it in time to save the day?. Tags: android, lasergun, swordplay, temple, space marine, space battle, space travel, space mission, galaxy, comb, altar, magnet beam, jam, speed of light, plastic surgery"} +{"id": "256917", "title": "The Water Diviner", "year": 2014, "duration_min": 112, "rating": 6.8, "genres": "War, Drama", "genres_pipe": "|War|Drama|", "keywords": "istanbul, australia, post world war i, farmer, missing in action, missing son, gallipoli campaign, inspired by true events", "tags_pipe": "|istanbul|australia|post world war i|farmer|missing in action|missing son|gallipoli campaign|inspired by true events|", "overview": "In 1919, Australian farmer Joshua Connor travels to Turkey to discover the fate of his three sons, reported missing in action. Holding on to hope, Joshua must travel across the war-torn landscape to find the truth and his own peace.", "text_for_embedding": "The Water Diviner (2014). Genres: War, Drama. In 1919, Australian farmer Joshua Connor travels to Turkey to discover the fate of his three sons, reported missing in action. Holding on to hope, Joshua must travel across the war-torn landscape to find the truth and his own peace.. Tags: istanbul, australia, post world war i, farmer, missing in action, missing son, gallipoli campaign, inspired by true events"} +{"id": "251", "title": "Ghost", "year": 1990, "duration_min": 127, "rating": 6.9, "genres": "Fantasy, Drama, Thriller, Mystery, Romance", "genres_pipe": "|Fantasy|Drama|Thriller|Mystery|Romance|", "keywords": "corruption, fortune teller, money transfer, money laundering, pottery, afterlife, spiritism", "tags_pipe": "|corruption|fortune teller|money transfer|money laundering|pottery|afterlife|spiritism|", "overview": "Sam Wheat is a banker, Molly Jensen is an artist, and the two are madly in love. However, when Sam is murdered by his friend and corrupt business partner Carl Bruner over a shady business deal, he is left to roam the earth as a powerless spirit. When he learns of Carl's betrayal, Sam must seek the help of psychic Oda Mae Brown to set things right and protect Molly from Carl and his goons.", "text_for_embedding": "Ghost (1990). Genres: Fantasy, Drama, Thriller, Mystery, Romance. Sam Wheat is a banker, Molly Jensen is an artist, and the two are madly in love. However, when Sam is murdered by his friend and corrupt business partner Carl Bruner over a shady business deal, he is left to roam the earth as a powerless spirit. When he learns of Carl's betrayal, Sam must seek the help of psychic Oda Mae Brown to set things right and protect Molly from Carl and his goons.. Tags: corruption, fortune teller, money transfer, money laundering, pottery, afterlife, spiritism"} +{"id": "544", "title": "There's Something About Mary", "year": 1998, "duration_min": 119, "rating": 6.5, "genres": "Romance, Comedy", "genres_pipe": "|Romance|Comedy|", "keywords": "surgeon, stalker, romantic comedy, dream girl, taboo, screwball comedy, frisbee, troubadour, gross out comedy, intellectual disability", "tags_pipe": "|surgeon|stalker|romantic comedy|dream girl|taboo|screwball comedy|frisbee|troubadour|gross out comedy|intellectual disability|", "overview": "Having never fully recovered from a prom date that became a total disaster, a man finally gets a chance to reunite with his old prom date, only to run up against other suitors including the sleazy detective he hired to find her.", "text_for_embedding": "There's Something About Mary (1998). Genres: Romance, Comedy. Having never fully recovered from a prom date that became a total disaster, a man finally gets a chance to reunite with his old prom date, only to run up against other suitors including the sleazy detective he hired to find her.. Tags: surgeon, stalker, romantic comedy, dream girl, taboo, screwball comedy, frisbee, troubadour, gross out comedy, intellectual disability"} +{"id": "11395", "title": "The Santa Clause", "year": 1994, "duration_min": 97, "rating": 6.3, "genres": "Fantasy, Drama, Comedy, Family", "genres_pipe": "|Fantasy|Drama|Comedy|Family|", "keywords": "holiday, christmas party, santa claus, deal, christmas tree, christmas", "tags_pipe": "|holiday|christmas party|santa claus|deal|christmas tree|christmas|", "overview": "Scott Calvin is an ordinary man, who accidentally causes Santa Claus to fall from his roof on Christmas Eve and is knocked unconscious. When he and his young son finish Santa's trip and deliveries, they go to the North Pole, where Scott learns he must become the new Santa and convince those he loves that he is indeed, Father Christmas.", "text_for_embedding": "The Santa Clause (1994). Genres: Fantasy, Drama, Comedy, Family. Scott Calvin is an ordinary man, who accidentally causes Santa Claus to fall from his roof on Christmas Eve and is knocked unconscious. When he and his young son finish Santa's trip and deliveries, they go to the North Pole, where Scott learns he must become the new Santa and convince those he loves that he is indeed, Father Christmas.. Tags: holiday, christmas party, santa claus, deal, christmas tree, christmas"} +{"id": "14635", "title": "The Rookie", "year": 2002, "duration_min": 127, "rating": 6.5, "genres": "Drama, Family", "genres_pipe": "|Drama|Family|", "keywords": "father son relationship, baseball, sports team, sport, life's dream, growing up", "tags_pipe": "|father son relationship|baseball|sports team|sport|life's dream|growing up|", "overview": "Jim Morris never made it out of the minor leagues before a shoulder injury ended his pitching career twelve years ago. Now a married-with-children high-school chemistry teacher and baseball coach in Texas, Jim's team makes a deal with him: if they win the district championship, Jim will try out with a major-league organization. The bet proves incentive enough for the team, and they go from worst to first, making it to state for the first time in the history of the school. Jim, forced to live up to his end of the deal, is nearly laughed off the try-out field--until he gets onto the mound, where he confounds the scouts (and himself) by clocking successive 98 mph fastballs, good enough for a minor-league contract with the Tampa Bay Devil Rays. Jim's still got a lot of pitches to throw before he makes it to The Show, but with his big-league dreams revived, there's no telling where he could go.", "text_for_embedding": "The Rookie (2002). Genres: Drama, Family. Jim Morris never made it out of the minor leagues before a shoulder injury ended his pitching career twelve years ago. Now a married-with-children high-school chemistry teacher and baseball coach in Texas, Jim's team makes a deal with him: if they win the district championship, Jim will try out with a major-league organization. The bet proves incentive enough for the team, and they go from worst to first, making it to state for the first time in the history of the school. Jim, forced to live up to his end of the deal, is nearly laughed off the try-out field--until he gets onto the mound, where he confounds the scouts (and himself) by clocking successive 98 mph fastballs, good enough for a minor-league contract with the Tampa Bay Devil Rays. Jim's still got a lot of pitches to throw before he makes it to The Show, but with his big-league dreams revived, there's no telling where he could go.. Tags: father son relationship, baseball, sports team, sport, life's dream, growing up"} +{"id": "13680", "title": "The Game Plan", "year": 2007, "duration_min": 110, "rating": 6.0, "genres": "Comedy, Family", "genres_pipe": "|Comedy|Family|", "keywords": "american football, bachelor, sports team, sport, aerobics, tween girl, publicist", "tags_pipe": "|american football|bachelor|sports team|sport|aerobics|tween girl|publicist|", "overview": "Bachelor football star Joe Kingman seems to have it all. He is wealthy and carefree, and his team is on the way to capturing a championship. Suddenly, he is tackled by some unexpected news: He has a young daughter, the result of a last fling with his ex-wife. Joe must learn to balance his personal and professional lives with the needs of his child.", "text_for_embedding": "The Game Plan (2007). Genres: Comedy, Family. Bachelor football star Joe Kingman seems to have it all. He is wealthy and carefree, and his team is on the way to capturing a championship. Suddenly, he is tackled by some unexpected news: He has a young daughter, the result of a last fling with his ex-wife. Joe must learn to balance his personal and professional lives with the needs of his child.. Tags: american football, bachelor, sports team, sport, aerobics, tween girl, publicist"} +{"id": "688", "title": "The Bridges of Madison County", "year": 1995, "duration_min": 135, "rating": 7.3, "genres": "Drama, Romance", "genres_pipe": "|Drama|Romance|", "keywords": "farewell, adultery, love at first sight, photographer, wife husband relationship, iowa, love of one's life, mother role, bridge, housewife, love letter, peasant, marriage crisis, photography, unsociability", "tags_pipe": "|farewell|adultery|love at first sight|photographer|wife husband relationship|iowa|love of one's life|mother role|bridge|housewife|love letter|peasant|marriage crisis|photography|unsociability|", "overview": "Photographer Robert Kincaid wanders into the life of housewife Francesca Johnson for four days in the 1960s.", "text_for_embedding": "The Bridges of Madison County (1995). Genres: Drama, Romance. Photographer Robert Kincaid wanders into the life of housewife Francesca Johnson for four days in the 1960s.. Tags: farewell, adultery, love at first sight, photographer, wife husband relationship, iowa, love of one's life, mother role, bridge, housewife, love letter, peasant, marriage crisis, photography, unsociability"} +{"id": "11090", "title": "The Animal", "year": 2001, "duration_min": 84, "rating": 4.6, "genres": "Action, Comedy", "genres_pipe": "|Action|Comedy|", "keywords": "dream, employee, car crash, scientist, police officer, organ donation, aftercreditsstinger, virility", "tags_pipe": "|dream|employee|car crash|scientist|police officer|organ donation|aftercreditsstinger|virility|", "overview": "When loser Marvin Mange is involved in a horrible car accident, he's brought back to life by a deranged scientist as half man and half animal. His newfound powers are awesome -- but their adverse side effects could take over his life. Now, Marvin must fight to control his crazy primal urges around his new squeeze, Rianna, and his rival, Sgt. Sisk, who both think he's one cool cat.", "text_for_embedding": "The Animal (2001). Genres: Action, Comedy. When loser Marvin Mange is involved in a horrible car accident, he's brought back to life by a deranged scientist as half man and half animal. His newfound powers are awesome -- but their adverse side effects could take over his life. Now, Marvin must fight to control his crazy primal urges around his new squeeze, Rianna, and his rival, Sgt. Sisk, who both think he's one cool cat.. Tags: dream, employee, car crash, scientist, police officer, organ donation, aftercreditsstinger, virility"} +{"id": "783", "title": "Gandhi", "year": 1982, "duration_min": 191, "rating": 7.4, "genres": "Drama, History", "genres_pipe": "|Drama|History|", "keywords": "muslim, indian lead, demonstration, world war ii, imprisonment, release from prison, south africa, bravery, hunger strike, colony, morning prayer, hindu, independence, british army, political negotiations", "tags_pipe": "|muslim|indian lead|demonstration|world war ii|imprisonment|release from prison|south africa|bravery|hunger strike|colony|morning prayer|hindu|independence|british army|political negotiations|", "overview": "In the early years of the 20th century, Mohandas K. Gandhi, a British-trained lawyer, forsakes all worldly possessions to take up the cause of Indian independence. Faced with armed resistance from the British government, Gandhi adopts a policy of 'passive resistance', endeavouring to win freedom for his people without resorting to bloodshed.", "text_for_embedding": "Gandhi (1982). Genres: Drama, History. In the early years of the 20th century, Mohandas K. Gandhi, a British-trained lawyer, forsakes all worldly possessions to take up the cause of Indian independence. Faced with armed resistance from the British government, Gandhi adopts a policy of 'passive resistance', endeavouring to win freedom for his people without resorting to bloodshed.. Tags: muslim, indian lead, demonstration, world war ii, imprisonment, release from prison, south africa, bravery, hunger strike, colony, morning prayer, hindu, independence, british army, political negotiations"} +{"id": "228194", "title": "The Hundred-Foot Journey", "year": 2014, "duration_min": 122, "rating": 7.3, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "france, based on novel, indian lead, restaurant, family", "tags_pipe": "|france|based on novel|indian lead|restaurant|family|", "overview": "A story centered around an Indian family who moves to France and opens a restaurant across the street from a Michelin-starred French restaurant.", "text_for_embedding": "The Hundred-Foot Journey (2014). Genres: Drama. A story centered around an Indian family who moves to France and opens a restaurant across the street from a Michelin-starred French restaurant.. Tags: france, based on novel, indian lead, restaurant, family"} +{"id": "1642", "title": "The Net", "year": 1995, "duration_min": 114, "rating": 5.6, "genres": "Crime, Drama, Mystery, Thriller, Action", "genres_pipe": "|Crime|Drama|Mystery|Thriller|Action|", "keywords": "cheating, new identity, computer virus, chase, computer, stalking", "tags_pipe": "|cheating|new identity|computer virus|chase|computer|stalking|", "overview": "Angela Bennett is a freelance software engineer who lives in a world of computer technology. When a cyber friend asks Bennett to debug a new game, she inadvertently becomes involved in a conspiracy that will soon turn her life upside down. While on vacation in Mexico, her purse is stolen. She soon finds that people and events may not be what they seem as she becomes the target of an assassination. Her vacation is ruined. She gets a new passport at the U.S. Embassy in Mexico but it has the wrong name, Ruth Marx. When she returns to the U.S. to sort things out, she discovers that Ruth Marx has an unsavory past and a lengthy police record. To make matters worse, another person has assumed her real identity ...", "text_for_embedding": "The Net (1995). Genres: Crime, Drama, Mystery, Thriller, Action. Angela Bennett is a freelance software engineer who lives in a world of computer technology. When a cyber friend asks Bennett to debug a new game, she inadvertently becomes involved in a conspiracy that will soon turn her life upside down. While on vacation in Mexico, her purse is stolen. She soon finds that people and events may not be what they seem as she becomes the target of an assassination. Her vacation is ruined. She gets a new passport at the U.S. Embassy in Mexico but it has the wrong name, Ruth Marx. When she returns to the U.S. to sort things out, she discovers that Ruth Marx has an unsavory past and a lengthy police record. To make matters worse, another person has assumed her real identity .... Tags: cheating, new identity, computer virus, chase, computer, stalking"} +{"id": "10950", "title": "I Am Sam", "year": 2001, "duration_min": 132, "rating": 7.2, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "foster parents, pro bono, new baby, social services, learning, coffee shop manager, pizza hut, children's book, locked door, mentally handicapped man, child custody, woman director", "tags_pipe": "|foster parents|pro bono|new baby|social services|learning|coffee shop manager|pizza hut|children's book|locked door|mentally handicapped man|child custody|woman director|", "overview": "Sam has the mental capacity of a 7-year-old. He has a daughter with a homeless woman who abandons them when they leave the hospital, leaving Sam to raise Lucy on his own. But as Lucy grows up, Sam's limitations start to become a problem and the authorities take her away. Sam shames high-priced lawyer Rita into taking his case pro bono and in turn teaches her the value of love and family.", "text_for_embedding": "I Am Sam (2001). Genres: Drama. Sam has the mental capacity of a 7-year-old. He has a daughter with a homeless woman who abandons them when they leave the hospital, leaving Sam to raise Lucy on his own. But as Lucy grows up, Sam's limitations start to become a problem and the authorities take her away. Sam shames high-priced lawyer Rita into taking his case pro bono and in turn teaches her the value of love and family.. Tags: foster parents, pro bono, new baby, social services, learning, coffee shop manager, pizza hut, children's book, locked door, mentally handicapped man, child custody, woman director"} +{"id": "235260", "title": "Son of God", "year": 2014, "duration_min": 138, "rating": 5.9, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "biography, resurrection", "tags_pipe": "|biography|resurrection|", "overview": "The life story of Jesus is told from his humble birth through his teachings, crucifixion and ultimate resurrection.", "text_for_embedding": "Son of God (2014). Genres: Drama. The life story of Jesus is told from his humble birth through his teachings, crucifixion and ultimate resurrection.. Tags: biography, resurrection"} +{"id": "277", "title": "Underworld", "year": 2003, "duration_min": 121, "rating": 6.6, "genres": "Fantasy, Action, Thriller", "genres_pipe": "|Fantasy|Action|Thriller|", "keywords": "budapest, subway, love of one's life, vampire, bite, descendant, hostility, shootout, werewolf, blunt, fang vamp", "tags_pipe": "|budapest|subway|love of one's life|vampire|bite|descendant|hostility|shootout|werewolf|blunt|fang vamp|", "overview": "Vampires and werewolves have waged a nocturnal war against each other for centuries. But all bets are off when a female vampire warrior named Selene, who's famous for her strength and werewolf-hunting prowess, becomes smitten with a peace-loving male werewolf, Michael, who wants to end the war.", "text_for_embedding": "Underworld (2003). Genres: Fantasy, Action, Thriller. Vampires and werewolves have waged a nocturnal war against each other for centuries. But all bets are off when a female vampire warrior named Selene, who's famous for her strength and werewolf-hunting prowess, becomes smitten with a peace-loving male werewolf, Michael, who wants to end the war.. Tags: budapest, subway, love of one's life, vampire, bite, descendant, hostility, shootout, werewolf, blunt, fang vamp"} +{"id": "8999", "title": "Derailed", "year": 2005, "duration_min": 108, "rating": 6.1, "genres": "Drama, Thriller", "genres_pipe": "|Drama|Thriller|", "keywords": "prison, chicago, rape, based on novel, hotel room, wife husband relationship, anonymous letter, blackmail, family's daily life, letter, business man, relationship problems, man between two women, revenge, deception", "tags_pipe": "|prison|chicago|rape|based on novel|hotel room|wife husband relationship|anonymous letter|blackmail|family's daily life|letter|business man|relationship problems|man between two women|revenge|deception|", "overview": "When two married business executives having an affair are blackmailed by a violent criminal, they are forced to turn the tables on him to save their families.", "text_for_embedding": "Derailed (2005). Genres: Drama, Thriller. When two married business executives having an affair are blackmailed by a violent criminal, they are forced to turn the tables on him to save their families.. Tags: prison, chicago, rape, based on novel, hotel room, wife husband relationship, anonymous letter, blackmail, family's daily life, letter, business man, relationship problems, man between two women, revenge, deception"} +{"id": "11323", "title": "The Informant!", "year": 2009, "duration_min": 108, "rating": 6.0, "genres": "Drama, Comedy, Crime", "genres_pipe": "|Drama|Comedy|Crime|", "keywords": "agriculture, company, witness to murder", "tags_pipe": "|agriculture|company|witness to murder|", "overview": "A rising star at agri-industry giant Archer Daniels Midland (ADM), Mark Whitacre suddenly turns whistleblower. Even as he exposes his company’s multi-national price-fixing conspiracy to the FBI, Whitacre envisions himself being hailed as a hero of the common man and handed a promotion.", "text_for_embedding": "The Informant! (2009). Genres: Drama, Comedy, Crime. A rising star at agri-industry giant Archer Daniels Midland (ADM), Mark Whitacre suddenly turns whistleblower. Even as he exposes his company’s multi-national price-fixing conspiracy to the FBI, Whitacre envisions himself being hailed as a hero of the common man and handed a promotion.. Tags: agriculture, company, witness to murder"} +{"id": "10445", "title": "Shadowlands", "year": 1993, "duration_min": 131, "rating": 6.8, "genres": "Drama, Romance", "genres_pipe": "|Drama|Romance|", "keywords": "bachelor, stroke of fate, brother, oxford, author, falling in love", "tags_pipe": "|bachelor|stroke of fate|brother|oxford|author|falling in love|", "overview": "C.S. Lewis, a world-renowned writer and professor, leads a passionless life until he meets spirited poet Joy Gresham", "text_for_embedding": "Shadowlands (1993). Genres: Drama, Romance. C.S. Lewis, a world-renowned writer and professor, leads a passionless life until he meets spirited poet Joy Gresham. Tags: bachelor, stroke of fate, brother, oxford, author, falling in love"} +{"id": "11453", "title": "Deuce Bigalow: European Gigolo", "year": 2005, "duration_min": 83, "rating": 4.7, "genres": "Comedy", "genres_pipe": "|Comedy|", "keywords": "painter, amsterdam, dolphin, europe, pimp, fetish, gigolo, wig, snorkel, whistle", "tags_pipe": "|painter|amsterdam|dolphin|europe|pimp|fetish|gigolo|wig|snorkel|whistle|", "overview": "Deuce Bigalow goes to Amsterdam after a little accident including two irritating kids and a bunch of aggressive dolphins. There he meets up with his old friend T.J. Hicks. But a mysterious killer starts killing some of Amsterdam's finest gigolos and T.J. is mistaken for the extremely gay murderer. Deuce must enter the gigolo industry again to find the real murderer and clear T.J.'s name.", "text_for_embedding": "Deuce Bigalow: European Gigolo (2005). Genres: Comedy. Deuce Bigalow goes to Amsterdam after a little accident including two irritating kids and a bunch of aggressive dolphins. There he meets up with his old friend T.J. Hicks. But a mysterious killer starts killing some of Amsterdam's finest gigolos and T.J. is mistaken for the extremely gay murderer. Deuce must enter the gigolo industry again to find the real murderer and clear T.J.'s name.. Tags: painter, amsterdam, dolphin, europe, pimp, fetish, gigolo, wig, snorkel, whistle"} +{"id": "146239", "title": "Delivery Man", "year": 2013, "duration_min": 105, "rating": 6.2, "genres": "Comedy", "genres_pipe": "|Comedy|", "keywords": "remake, sperm donor", "tags_pipe": "|remake|sperm donor|", "overview": "An affable underachiever finds out he's fathered 533 children through anonymous donations to a fertility clinic 20 years ago. Now he must decide whether or not to come forward when 142 of them file a lawsuit to reveal his identity.", "text_for_embedding": "Delivery Man (2013). Genres: Comedy. An affable underachiever finds out he's fathered 533 children through anonymous donations to a fertility clinic 20 years ago. Now he must decide whether or not to come forward when 142 of them file a lawsuit to reveal his identity.. Tags: remake, sperm donor"} +{"id": "205588", "title": "Our Kind of Traitor", "year": 2016, "duration_min": 108, "rating": 6.0, "genres": "Thriller", "genres_pipe": "|Thriller|", "keywords": "based on novel, woman director", "tags_pipe": "|based on novel|woman director|", "overview": "A young Oxford academic and his attorney girlfriend holiday on Antigua. They bump into a Russian millionaire who owns a peninsula and a diamond watch. He wants a game of tennis. What else he wants propels the lovers on a tortuous journey to the City of London and its unholy alliance with Britain's intelligence establishment, to Paris and the Alps.", "text_for_embedding": "Our Kind of Traitor (2016). Genres: Thriller. A young Oxford academic and his attorney girlfriend holiday on Antigua. They bump into a Russian millionaire who owns a peninsula and a diamond watch. He wants a game of tennis. What else he wants propels the lovers on a tortuous journey to the City of London and its unholy alliance with Britain's intelligence establishment, to Paris and the Alps.. Tags: based on novel, woman director"} +{"id": "10878", "title": "Saving Silverman", "year": 2001, "duration_min": 90, "rating": 5.4, "genres": "Comedy, Crime, Romance", "genres_pipe": "|Comedy|Crime|Romance|", "keywords": "female nudity, harassment, male friendship, dark comedy, director cameo, duringcreditsstinger", "tags_pipe": "|female nudity|harassment|male friendship|dark comedy|director cameo|duringcreditsstinger|", "overview": "A pair of buddies conspire to save their best friend from marrying the wrong woman, a cold-hearted beauty who snatches him from them and breaks up their Neil Diamond cover band.", "text_for_embedding": "Saving Silverman (2001). Genres: Comedy, Crime, Romance. A pair of buddies conspire to save their best friend from marrying the wrong woman, a cold-hearted beauty who snatches him from them and breaks up their Neil Diamond cover band.. Tags: female nudity, harassment, male friendship, dark comedy, director cameo, duringcreditsstinger"} +{"id": "82650", "title": "Diary of a Wimpy Kid: Dog Days", "year": 2012, "duration_min": 94, "rating": 6.0, "genres": "Comedy, Family", "genres_pipe": "|Comedy|Family|", "keywords": "best friend, sweet sixteen, duringcreditsstinger", "tags_pipe": "|best friend|sweet sixteen|duringcreditsstinger|", "overview": "School is out and Greg is ready for the days of summer, when all his plans go wrong. What on earth is he going to do all summer?", "text_for_embedding": "Diary of a Wimpy Kid: Dog Days (2012). Genres: Comedy, Family. School is out and Greg is ready for the days of summer, when all his plans go wrong. What on earth is he going to do all summer?. Tags: best friend, sweet sixteen, duringcreditsstinger"} +{"id": "10279", "title": "Summer of Sam", "year": 1999, "duration_min": 142, "rating": 6.3, "genres": "Thriller, Drama, Crime, Romance", "genres_pipe": "|Thriller|Drama|Crime|Romance|", "keywords": "distrust, intolerance, punk rock, italian american, summer, bigotry, bronx", "tags_pipe": "|distrust|intolerance|punk rock|italian american|summer|bigotry|bronx|", "overview": "Spike Lee's take on the \"Son of Sam\" murders in New York City during the summer of 1977 centering on the residents of an Italian-American South Bronx neighborhood who live in fear and distrust of one another.", "text_for_embedding": "Summer of Sam (1999). Genres: Thriller, Drama, Crime, Romance. Spike Lee's take on the \"Son of Sam\" murders in New York City during the summer of 1977 centering on the residents of an Italian-American South Bronx neighborhood who live in fear and distrust of one another.. Tags: distrust, intolerance, punk rock, italian american, summer, bigotry, bronx"} +{"id": "2294", "title": "Jay and Silent Bob Strike Back", "year": 2001, "duration_min": 104, "rating": 6.4, "genres": "Comedy", "genres_pipe": "|Comedy|", "keywords": "film making, jay and silent bob, self mocking, character is subject of comic, reference to prince valiant, indiana jones spoof scene, monkey actor, view askew, gigantic hand, animal experimentation", "tags_pipe": "|film making|jay and silent bob|self mocking|character is subject of comic|reference to prince valiant|indiana jones spoof scene|monkey actor|view askew|gigantic hand|animal experimentation|", "overview": "When Jay and Silent Bob learn that their comic-book alter egos, Bluntman and Chronic, have been sold to Hollywood as part of a big-screen movie that leaves them out of any royalties, the pair travels to Tinseltown to sabotage the production.", "text_for_embedding": "Jay and Silent Bob Strike Back (2001). Genres: Comedy. When Jay and Silent Bob learn that their comic-book alter egos, Bluntman and Chronic, have been sold to Hollywood as part of a big-screen movie that leaves them out of any royalties, the pair travels to Tinseltown to sabotage the production.. Tags: film making, jay and silent bob, self mocking, character is subject of comic, reference to prince valiant, indiana jones spoof scene, monkey actor, view askew, gigantic hand, animal experimentation"} +{"id": "2176", "title": "The Glass House", "year": 2001, "duration_min": 106, "rating": 5.4, "genres": "Drama, Thriller", "genres_pipe": "|Drama|Thriller|", "keywords": "california, brother sister relationship, loss of parents, suspense, psychological thriller, orphan, car accident", "tags_pipe": "|california|brother sister relationship|loss of parents|suspense|psychological thriller|orphan|car accident|", "overview": "After the parents of Ruby and her younger brother, Rhett, are killed in a car crash, their parents' best friends, Erin and Terry Glass, become their guardians. The children hear promises of a world of opulence and California fun -- all they have to do is move into the Glasses' gated house. Before very long, though, Ruby suspects that Erin and Terry may not be the ideal guardians they seemed to be.", "text_for_embedding": "The Glass House (2001). Genres: Drama, Thriller. After the parents of Ruby and her younger brother, Rhett, are killed in a car crash, their parents' best friends, Erin and Terry Glass, become their guardians. The children hear promises of a world of opulence and California fun -- all they have to do is move into the Glasses' gated house. Before very long, though, Ruby suspects that Erin and Terry may not be the ideal guardians they seemed to be.. Tags: california, brother sister relationship, loss of parents, suspense, psychological thriller, orphan, car accident"} +{"id": "270487", "title": "Hail, Caesar!", "year": 2016, "duration_min": 106, "rating": 5.7, "genres": "Comedy, Drama, Mystery", "genres_pipe": "|Comedy|Drama|Mystery|", "keywords": "journalist, cat, ransom, kidnapping, ancient rome, movie in movie, hollywood, period drama", "tags_pipe": "|journalist|cat|ransom|kidnapping|ancient rome|movie in movie|hollywood|period drama|", "overview": "Tells the comedic tale of Eddie Mannix, a fixer who worked for the Hollywood studios in the 1950s. The story finds him at work when a star mysteriously disappears in the middle of filming.", "text_for_embedding": "Hail, Caesar! (2016). Genres: Comedy, Drama, Mystery. Tells the comedic tale of Eddie Mannix, a fixer who worked for the Hollywood studios in the 1950s. The story finds him at work when a star mysteriously disappears in the middle of filming.. Tags: journalist, cat, ransom, kidnapping, ancient rome, movie in movie, hollywood, period drama"} +{"id": "19366", "title": "Josie and the Pussycats", "year": 2001, "duration_min": 98, "rating": 5.3, "genres": "Comedy, Music", "genres_pipe": "|Comedy|Music|", "keywords": "manager, pop, secret, small town, garage, musician, music, friendship, industry, fame, conspiracy, subliminal , rock band, culture, woman director", "tags_pipe": "|manager|pop|secret|small town|garage|musician|music|friendship|industry|fame|conspiracy|subliminal |rock band|culture|woman director|", "overview": "Josie, Melody and Val are three small-town girl musicians determined to take their rock band out of their garage and straight to the top, while remaining true to their look, style and sound. They get a record deal which brings fame and fortune but soon realize they are pawns of two people who want to control the youth of America. They must clear their names, even if it means losing fame and fortune.", "text_for_embedding": "Josie and the Pussycats (2001). Genres: Comedy, Music. Josie, Melody and Val are three small-town girl musicians determined to take their rock band out of their garage and straight to the top, while remaining true to their look, style and sound. They get a record deal which brings fame and fortune but soon realize they are pawns of two people who want to control the youth of America. They must clear their names, even if it means losing fame and fortune.. Tags: manager, pop, secret, small town, garage, musician, music, friendship, industry, fame, conspiracy, subliminal , rock band, culture, woman director"} +{"id": "204082", "title": "Homefront", "year": 2013, "duration_min": 100, "rating": 6.4, "genres": "Action, Thriller", "genres_pipe": "|Action|Thriller|", "keywords": "based on novel, drug dealer, ex-cop, rural setting, undercover cop, methamphetamine, motorcycle gang, drug, revenge motive, father daughter relationship, lousiana bayou", "tags_pipe": "|based on novel|drug dealer|ex-cop|rural setting|undercover cop|methamphetamine|motorcycle gang|drug|revenge motive|father daughter relationship|lousiana bayou|", "overview": "Phil Broker is a former DEA agent who has gone through a crisis after his action against a biker gang went horribly wrong and it cost the life of his boss' son. He is recently widowed and is left with a 9-years-old daughter,Maddy. He decides to quit the turbulent and demanding life of thrill for Maddy's sake and retires to a small town. His daughter fights off a boy who was bullying her at school and this sets in motion a round of events that end in his direct confrontation with the local Meth drug lord. His past history with the biker gang also enters the arena, making matters more complex. But he has a mission in his mind to protect his daughter and he is ready to pay any cost that it demands.", "text_for_embedding": "Homefront (2013). Genres: Action, Thriller. Phil Broker is a former DEA agent who has gone through a crisis after his action against a biker gang went horribly wrong and it cost the life of his boss' son. He is recently widowed and is left with a 9-years-old daughter,Maddy. He decides to quit the turbulent and demanding life of thrill for Maddy's sake and retires to a small town. His daughter fights off a boy who was bullying her at school and this sets in motion a round of events that end in his direct confrontation with the local Meth drug lord. His past history with the biker gang also enters the arena, making matters more complex. But he has a mission in his mind to protect his daughter and he is ready to pay any cost that it demands.. Tags: based on novel, drug dealer, ex-cop, rural setting, undercover cop, methamphetamine, motorcycle gang, drug, revenge motive, father daughter relationship, lousiana bayou"} +{"id": "24100", "title": "The Little Vampire", "year": 2000, "duration_min": 95, "rating": 6.1, "genres": "Family, Horror", "genres_pipe": "|Family|Horror|", "keywords": "based on novel, vampire, bite, independent film, fang vamp", "tags_pipe": "|based on novel|vampire|bite|independent film|fang vamp|", "overview": "Based on the popular books, the story tells of Tony who wants a friend to add some adventure to his life. What he gets is Rudolph, a vampire kid with a good appetite. The two end up inseparable, but their fun is cut short when all the hopes of the vampire race could be gone forever in single night. With Tony's access to the daytime world, he helps them to find what they've always wanted.", "text_for_embedding": "The Little Vampire (2000). Genres: Family, Horror. Based on the popular books, the story tells of Tony who wants a friend to add some adventure to his life. What he gets is Rudolph, a vampire kid with a good appetite. The two end up inseparable, but their fun is cut short when all the hopes of the vampire race could be gone forever in single night. With Tony's access to the daytime world, he helps them to find what they've always wanted.. Tags: based on novel, vampire, bite, independent film, fang vamp"} +{"id": "1599", "title": "I Heart Huckabees", "year": 2004, "duration_min": 106, "rating": 6.2, "genres": "Comedy, Romance", "genres_pipe": "|Comedy|Romance|", "keywords": "sex, detective, jealousy, humor, protest, wife, celebrity, rivalry, independent film, religion, universe, anger, nature, husband, existentialism", "tags_pipe": "|sex|detective|jealousy|humor|protest|wife|celebrity|rivalry|independent film|religion|universe|anger|nature|husband|existentialism|", "overview": "A husband-and-wife team play detective, but not in the traditional sense. Instead, the happy duo helps others solve their existential issues, the kind that keep you up at night, wondering what it all means.", "text_for_embedding": "I Heart Huckabees (2004). Genres: Comedy, Romance. A husband-and-wife team play detective, but not in the traditional sense. Instead, the happy duo helps others solve their existential issues, the kind that keep you up at night, wondering what it all means.. Tags: sex, detective, jealousy, humor, protest, wife, celebrity, rivalry, independent film, religion, universe, anger, nature, husband, existentialism"} +{"id": "5550", "title": "RoboCop 3", "year": 1993, "duration_min": 104, "rating": 4.2, "genres": "Action, Adventure, Crime, Science Fiction, Thriller", "genres_pipe": "|Action|Adventure|Crime|Science Fiction|Thriller|", "keywords": "cyborg, dystopia, police, sequel, cyberpunk, policeman, robocop", "tags_pipe": "|cyborg|dystopia|police|sequel|cyberpunk|policeman|robocop|", "overview": "The mega corporation Omni Consumer Products is still bent on creating their pet project, Delta City, to replace the rotting city of Detroit. Unfortunately, the inhabitants of the area have no intention of abandoning their homes simply for desires of the company. To this end, OCP have decided to force them to leave by employing a ruthless mercenary army to attack and harass them. An underground resistance begins and in this fight, Robocop must decide where his loyalties lie.", "text_for_embedding": "RoboCop 3 (1993). Genres: Action, Adventure, Crime, Science Fiction, Thriller. The mega corporation Omni Consumer Products is still bent on creating their pet project, Delta City, to replace the rotting city of Detroit. Unfortunately, the inhabitants of the area have no intention of abandoning their homes simply for desires of the company. To this end, OCP have decided to force them to leave by employing a ruthless mercenary army to attack and harass them. An underground resistance begins and in this fight, Robocop must decide where his loyalties lie.. Tags: cyborg, dystopia, police, sequel, cyberpunk, policeman, robocop"} +{"id": "30379", "title": "Megiddo: The Omega Code 2", "year": 2001, "duration_min": 104, "rating": 3.6, "genres": "Action, Science Fiction, Thriller", "genres_pipe": "|Action|Science Fiction|Thriller|", "keywords": "dystopia", "tags_pipe": "|dystopia|", "overview": "Stone (the Antichrist) becomes President of the European Union and uses his seat of power to dissolve the United Nations and create a one world government called the World Union.", "text_for_embedding": "Megiddo: The Omega Code 2 (2001). Genres: Action, Science Fiction, Thriller. Stone (the Antichrist) becomes President of the European Union and uses his seat of power to dissolve the United Nations and create a one world government called the World Union.. Tags: dystopia"} +{"id": "42586", "title": "Darling Lili", "year": 1970, "duration_min": 107, "rating": 4.9, "genres": "Drama, Comedy, Thriller, Music, Romance", "genres_pipe": "|Drama|Comedy|Thriller|Music|Romance|", "keywords": "spy, uncle", "tags_pipe": "|spy|uncle|", "overview": "Set in Paris during World War I. Lili Smith/Schmidt is a German spy being requested to go under cover to help Germany during the war, to try and find out their plans. Her \"uncle\" wishes her to fulfill the operation, whereas one of his colleagues believed she is not capable of performing such an operation as she is British. She soon finds herself following Major William Larrabee's every move and spending all her time either with him or thinking of him. Her \"uncle\" realises she's in love with him but Lili is not facing that she is. Things & people are coming between her true fate. But what is it...", "text_for_embedding": "Darling Lili (1970). Genres: Drama, Comedy, Thriller, Music, Romance. Set in Paris during World War I. Lili Smith/Schmidt is a German spy being requested to go under cover to help Germany during the war, to try and find out their plans. Her \"uncle\" wishes her to fulfill the operation, whereas one of his colleagues believed she is not capable of performing such an operation as she is British. She soon finds herself following Major William Larrabee's every move and spending all her time either with him or thinking of him. Her \"uncle\" realises she's in love with him but Lili is not facing that she is. Things & people are coming between her true fate. But what is it.... Tags: spy, uncle"} +{"id": "17709", "title": "Dudley Do-Right", "year": 1999, "duration_min": 77, "rating": 3.8, "genres": "Comedy, Family, Romance", "genres_pipe": "|Comedy|Family|Romance|", "keywords": "based on cartoon, mountie", "tags_pipe": "|based on cartoon|mountie|", "overview": "Based on the 60's-era cartoon of the same name. Royal Canadian Mountie Dudley Do-right is busy keeping the peace in his small mountain town when his old rival, Snidely Whiplash, comes up with a plot to buy all the property in town, then start a phony gold rush by seeding the river with gold nuggets. Can this well-meaning (though completely incompetent) Mountie stop Whiplash's evil plan?", "text_for_embedding": "Dudley Do-Right (1999). Genres: Comedy, Family, Romance. Based on the 60's-era cartoon of the same name. Royal Canadian Mountie Dudley Do-right is busy keeping the peace in his small mountain town when his old rival, Snidely Whiplash, comes up with a plot to buy all the property in town, then start a phony gold rush by seeding the river with gold nuggets. Can this well-meaning (though completely incompetent) Mountie stop Whiplash's evil plan?. Tags: based on cartoon, mountie"} +{"id": "287948", "title": "The Transporter Refueled", "year": 2015, "duration_min": 96, "rating": 5.2, "genres": "Thriller, Action, Crime", "genres_pipe": "|Thriller|Action|Crime|", "keywords": "transporter, sequel, suspense, car, bank heist, action", "tags_pipe": "|transporter|sequel|suspense|car|bank heist|action|", "overview": "The fast-paced action movie is again set in the criminal underworld in France, where Frank Martin is known as The Transporter, because he is the best driver and mercenary money can buy. In this installment, he meets Anna and they attempt to take down a group of ruthless Russian human traffickers who also have kidnapped Frank’s father.", "text_for_embedding": "The Transporter Refueled (2015). Genres: Thriller, Action, Crime. The fast-paced action movie is again set in the criminal underworld in France, where Frank Martin is known as The Transporter, because he is the best driver and mercenary money can buy. In this installment, he meets Anna and they attempt to take down a group of ruthless Russian human traffickers who also have kidnapped Frank’s father.. Tags: transporter, sequel, suspense, car, bank heist, action"} +{"id": "7548", "title": "The Libertine", "year": 2004, "duration_min": 114, "rating": 5.9, "genres": "Drama, Romance", "genres_pipe": "|Drama|Romance|", "keywords": "london england, sex, dying and death, poet, theatre milieu, monolog, monkey, alcoholic", "tags_pipe": "|london england|sex|dying and death|poet|theatre milieu|monolog|monkey|alcoholic|", "overview": "The story of John Wilmot, a.k.a. the Earl of Rochester, a 17th century poet who famously drank and debauched his way to an early grave, only to earn posthumous critical acclaim for his life's work.", "text_for_embedding": "The Libertine (2004). Genres: Drama, Romance. The story of John Wilmot, a.k.a. the Earl of Rochester, a 17th century poet who famously drank and debauched his way to an early grave, only to earn posthumous critical acclaim for his life's work.. Tags: london england, sex, dying and death, poet, theatre milieu, monolog, monkey, alcoholic"} +{"id": "9075", "title": "Black Book", "year": 2006, "duration_min": 145, "rating": 7.2, "genres": "Drama, Thriller, War", "genres_pipe": "|Drama|Thriller|War|", "keywords": "in love with enemy, netherlands, world war ii, prosecution", "tags_pipe": "|in love with enemy|netherlands|world war ii|prosecution|", "overview": "In the Nazi-occupied Netherlands during World War II, a Jewish singer infiltrates the regional Gestapo headquarters for the Dutch resistance.", "text_for_embedding": "Black Book (2006). Genres: Drama, Thriller, War. In the Nazi-occupied Netherlands during World War II, a Jewish singer infiltrates the regional Gestapo headquarters for the Dutch resistance.. Tags: in love with enemy, netherlands, world war ii, prosecution"} +{"id": "11661", "title": "Joyeux Noël", "year": 2005, "duration_min": 116, "rating": 7.2, "genres": "Romance, Drama, History, War, Music", "genres_pipe": "|Romance|Drama|History|War|Music|", "keywords": "holiday, world war i, hostility, singer, singing, christmas", "tags_pipe": "|holiday|world war i|hostility|singer|singing|christmas|", "overview": "In 1914, World War I, the bloodiest war ever at that time in human history, was well under way. However on Christmas Eve, numerous sections of the Western Front called an informal, and unauthorized, truce where the various front-line soldiers of the conflict peacefully met each other in No Man's Land to share a precious pause in the carnage with a fleeting brotherhood.", "text_for_embedding": "Joyeux Noël (2005). Genres: Romance, Drama, History, War, Music. In 1914, World War I, the bloodiest war ever at that time in human history, was well under way. However on Christmas Eve, numerous sections of the Western Front called an informal, and unauthorized, truce where the various front-line soldiers of the conflict peacefully met each other in No Man's Land to share a precious pause in the carnage with a fleeting brotherhood.. Tags: holiday, world war i, hostility, singer, singing, christmas"} +{"id": "109513", "title": "Hit & Run", "year": 2012, "duration_min": 100, "rating": 5.5, "genres": "Action, Comedy, Romance", "genres_pipe": "|Action|Comedy|Romance|", "keywords": "witness protection, getaway driver, duringcreditsstinger", "tags_pipe": "|witness protection|getaway driver|duringcreditsstinger|", "overview": "Former getaway driver Charlie Bronson jeopardizes his Witness Protection Plan identity in order to help his girlfriend get to Los Angeles. The feds and Charlie's former gang chase them on the road.", "text_for_embedding": "Hit & Run (2012). Genres: Action, Comedy, Romance. Former getaway driver Charlie Bronson jeopardizes his Witness Protection Plan identity in order to help his girlfriend get to Los Angeles. The feds and Charlie's former gang chase them on the road.. Tags: witness protection, getaway driver, duringcreditsstinger"} +{"id": "12085", "title": "Mad Money", "year": 2008, "duration_min": 104, "rating": 5.9, "genres": "Action, Comedy, Crime", "genres_pipe": "|Action|Comedy|Crime|", "keywords": "gang, hoodlum, woman director", "tags_pipe": "|gang|hoodlum|woman director|", "overview": "Three female employees of the Federal Reserve plot to steal money that is about to be destroyed.", "text_for_embedding": "Mad Money (2008). Genres: Action, Comedy, Crime. Three female employees of the Federal Reserve plot to steal money that is about to be destroyed.. Tags: gang, hoodlum, woman director"} +{"id": "204922", "title": "Before I Go to Sleep", "year": 2014, "duration_min": 92, "rating": 6.2, "genres": "Mystery, Thriller", "genres_pipe": "|Mystery|Thriller|", "keywords": "amnesia, therapist, aggression, hospital, flashback", "tags_pipe": "|amnesia|therapist|aggression|hospital|flashback|", "overview": "A woman wakes up every day, remembering nothing as a result of a traumatic accident in her past. One day, new terrifying truths emerge that force her to question everyone around her.", "text_for_embedding": "Before I Go to Sleep (2014). Genres: Mystery, Thriller. A woman wakes up every day, remembering nothing as a result of a traumatic accident in her past. One day, new terrifying truths emerge that force her to question everyone around her.. Tags: amnesia, therapist, aggression, hospital, flashback"} +{"id": "38985", "title": "Sorcerer", "year": 1977, "duration_min": 121, "rating": 7.4, "genres": "Action, Thriller, Adventure", "genres_pipe": "|Action|Thriller|Adventure|", "keywords": "dynamite, car journey, nicaragua, criminal, bandit, explosives, latin america, rope bridge, transport, nitroglycerin, oil company, existentialism, dangerous mission", "tags_pipe": "|dynamite|car journey|nicaragua|criminal|bandit|explosives|latin america|rope bridge|transport|nitroglycerin|oil company|existentialism|dangerous mission|", "overview": "Four exiled international criminals on the run hide out in a remote Nicaraguan village whose economy is dependent on an oil company. An oil well 200 miles away catches fire and can be extinguished only with explosives. The criminals are given a chance to earn a great deal of money by transporting highly volatile and sensitive explosives through hazardous and rugged terrain full of obstacles and danger.", "text_for_embedding": "Sorcerer (1977). Genres: Action, Thriller, Adventure. Four exiled international criminals on the run hide out in a remote Nicaraguan village whose economy is dependent on an oil company. An oil well 200 miles away catches fire and can be extinguished only with explosives. The criminals are given a chance to earn a great deal of money by transporting highly volatile and sensitive explosives through hazardous and rugged terrain full of obstacles and danger.. Tags: dynamite, car journey, nicaragua, criminal, bandit, explosives, latin america, rope bridge, transport, nitroglycerin, oil company, existentialism, dangerous mission"} +{"id": "44113", "title": "Stone", "year": 2010, "duration_min": 105, "rating": 5.2, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "prison, fire, manipulation, seduction, vegetarian, playground, deception, arson, parole, arsonist, convict, house fire", "tags_pipe": "|prison|fire|manipulation|seduction|vegetarian|playground|deception|arson|parole|arsonist|convict|house fire|", "overview": "Parole officer Jack Mabry has only a few weeks left before retirement and wishes to finish out the cases he's been assigned. One such case is that of Gerald 'Stone' Creeson, a convicted arsonist who is up for parole. Jack is initially reluctant to indulge Stone in the coarse banter he wishes to pursue and feels little sympathy for the prisoner's pleads for an early release. Seeing little hope in convincing Jack himself, Stone arranges for his wife to seduce the officer, but motives and intentions steadily blur amidst the passions and buried secrets of the corrupted players in this deadly game of deception.", "text_for_embedding": "Stone (2010). Genres: Drama. Parole officer Jack Mabry has only a few weeks left before retirement and wishes to finish out the cases he's been assigned. One such case is that of Gerald 'Stone' Creeson, a convicted arsonist who is up for parole. Jack is initially reluctant to indulge Stone in the coarse banter he wishes to pursue and feels little sympathy for the prisoner's pleads for an early release. Seeing little hope in convincing Jack himself, Stone arranges for his wife to seduce the officer, but motives and intentions steadily blur amidst the passions and buried secrets of the corrupted players in this deadly game of deception.. Tags: prison, fire, manipulation, seduction, vegetarian, playground, deception, arson, parole, arsonist, convict, house fire"} +{"id": "21494", "title": "Moliere", "year": 2007, "duration_min": 115, "rating": 6.7, "genres": "Romance, Drama, Comedy", "genres_pipe": "|Romance|Drama|Comedy|", "keywords": "playwright", "tags_pipe": "|playwright|", "overview": "Molière, a down-and-out actor-cum-playwright up to his ears in debt. When the wealthy Jourdain offers to cover that debt (so that Molière's theatrical talents might help Jourdain win the heart of a certain widowed marquise), hilarity ensues.", "text_for_embedding": "Moliere (2007). Genres: Romance, Drama, Comedy. Molière, a down-and-out actor-cum-playwright up to his ears in debt. When the wealthy Jourdain offers to cover that debt (so that Molière's theatrical talents might help Jourdain win the heart of a certain widowed marquise), hilarity ensues.. Tags: playwright"} +{"id": "164457", "title": "Out of the Furnace", "year": 2013, "duration_min": 116, "rating": 6.5, "genres": "Thriller, Drama, Crime", "genres_pipe": "|Thriller|Drama|Crime|", "keywords": "prison, brother brother relationship, drug dealer, brother, revenge, drug use, car accident, justice, family, bare knuckle fighting, rust belt, neo-noir, manslaughter, social decay, ptsd", "tags_pipe": "|prison|brother brother relationship|drug dealer|brother|revenge|drug use|car accident|justice|family|bare knuckle fighting|rust belt|neo-noir|manslaughter|social decay|ptsd|", "overview": "Two brothers live in the economically-depressed Rust Belt, when a cruel twist of fate lands one in prison. His brother is then lured into one of the most violent crime rings in the Northeast.", "text_for_embedding": "Out of the Furnace (2013). Genres: Thriller, Drama, Crime. Two brothers live in the economically-depressed Rust Belt, when a cruel twist of fate lands one in prison. His brother is then lured into one of the most violent crime rings in the Northeast.. Tags: prison, brother brother relationship, drug dealer, brother, revenge, drug use, car accident, justice, family, bare knuckle fighting, rust belt, neo-noir, manslaughter, social decay, ptsd"} +{"id": "4566", "title": "Michael Clayton", "year": 2007, "duration_min": 119, "rating": 6.5, "genres": "Drama, Mystery, Crime", "genres_pipe": "|Drama|Mystery|Crime|", "keywords": "killing, restaurant, chambers of a barrister, scandal, pretended suicide, lawsuit, car bomb, business ethics, crooked lawyer", "tags_pipe": "|killing|restaurant|chambers of a barrister|scandal|pretended suicide|lawsuit|car bomb|business ethics|crooked lawyer|", "overview": "A law firm brings in its 'fixer' to remedy the situation after a lawyer has a breakdown while representing a chemical company that he knows is guilty in a multi-billion dollar class action suit.", "text_for_embedding": "Michael Clayton (2007). Genres: Drama, Mystery, Crime. A law firm brings in its 'fixer' to remedy the situation after a lawyer has a breakdown while representing a chemical company that he knows is guilty in a multi-billion dollar class action suit.. Tags: killing, restaurant, chambers of a barrister, scandal, pretended suicide, lawsuit, car bomb, business ethics, crooked lawyer"} +{"id": "17795", "title": "My Fellow Americans", "year": 1996, "duration_min": 101, "rating": 6.3, "genres": "Comedy, Drama", "genres_pipe": "|Comedy|Drama|", "keywords": "white house, usa president, national security agency (nsa), danger, sable, writ", "tags_pipe": "|white house|usa president|national security agency (nsa)|danger|sable|writ|", "overview": "They used to run the country. Now they're running for their lives! Two on-the-lam former Presidents of the United States. Framed in a scandal by the current President and pursued by armed agents, the two squabbling political foes plunge into a desperately frantic search for the evidence that will establish their innocence.", "text_for_embedding": "My Fellow Americans (1996). Genres: Comedy, Drama. They used to run the country. Now they're running for their lives! Two on-the-lam former Presidents of the United States. Framed in a scandal by the current President and pursued by armed agents, the two squabbling political foes plunge into a desperately frantic search for the evidence that will establish their innocence.. Tags: white house, usa president, national security agency (nsa), danger, sable, writ"} +{"id": "1073", "title": "Arlington Road", "year": 1999, "duration_min": 117, "rating": 7.0, "genres": "Drama, Thriller, Mystery", "genres_pipe": "|Drama|Thriller|Mystery|", "keywords": "bomb, terrorist, fbi, professor, paranoia, college, wife, politics, army, murder, suspense, neighbor, agent, blueprint, classified", "tags_pipe": "|bomb|terrorist|fbi|professor|paranoia|college|wife|politics|army|murder|suspense|neighbor|agent|blueprint|classified|", "overview": "Threats from sinister foreign nationals aren't the only thing to fear. Bedraggled college professor Michael Faraday has been vexed (and increasingly paranoid) since his wife's accidental death in a botched FBI operation. But all that takes a backseat when a seemingly all-American couple set up house next door.", "text_for_embedding": "Arlington Road (1999). Genres: Drama, Thriller, Mystery. Threats from sinister foreign nationals aren't the only thing to fear. Bedraggled college professor Michael Faraday has been vexed (and increasingly paranoid) since his wife's accidental death in a botched FBI operation. But all that takes a backseat when a seemingly all-American couple set up house next door.. Tags: bomb, terrorist, fbi, professor, paranoia, college, wife, politics, army, murder, suspense, neighbor, agent, blueprint, classified"} +{"id": "153158", "title": "Underdogs", "year": 2013, "duration_min": 106, "rating": 6.0, "genres": "Animation, Adventure, Romance", "genres_pipe": "|Animation|Adventure|Romance|", "keywords": "soccer", "tags_pipe": "|soccer|", "overview": "In the small village where Amadeo lives there is no one good enough to challenge his skills at Table Football. But, while Amadeo may be a genius as a table football player in real life he's a loser. He's in love with Lara, his childhood friend, but he's so shy that he can't bring himself to confess his love for her. So he just hangs out in his quaint, timeless village. When Amadeo beats the village bully Flash at Table Football. The scene is set for an epic rivalry. Consumed with anger Flash vows to get even and 10 years later he returns as an International Superstar, a Football Icon and Galatico determined to wreak his revenge.", "text_for_embedding": "Underdogs (2013). Genres: Animation, Adventure, Romance. In the small village where Amadeo lives there is no one good enough to challenge his skills at Table Football. But, while Amadeo may be a genius as a table football player in real life he's a loser. He's in love with Lara, his childhood friend, but he's so shy that he can't bring himself to confess his love for her. So he just hangs out in his quaint, timeless village. When Amadeo beats the village bully Flash at Table Football. The scene is set for an epic rivalry. Consumed with anger Flash vows to get even and 10 years later he returns as an International Superstar, a Football Icon and Galatico determined to wreak his revenge.. Tags: soccer"} +{"id": "81836", "title": "To Rome with Love", "year": 2012, "duration_min": 111, "rating": 5.6, "genres": "Romance, Comedy", "genres_pipe": "|Romance|Comedy|", "keywords": "rome, expatriate, episodic", "tags_pipe": "|rome|expatriate|episodic|", "overview": "Four tales unfold in the Eternal City: While vacationing in Rome, architect John encounters a young man whose romantic woes remind him of a painful incident from his own youth; retired opera director Jerry discovers a mortician with an amazing voice, and he seizes the opportunity to rejuvenate his own flagging career; a young couple have separate romantic interludes; a spotlight shines on an ordinary man.", "text_for_embedding": "To Rome with Love (2012). Genres: Romance, Comedy. Four tales unfold in the Eternal City: While vacationing in Rome, architect John encounters a young man whose romantic woes remind him of a painful incident from his own youth; retired opera director Jerry discovers a mortician with an amazing voice, and he seizes the opportunity to rejuvenate his own flagging career; a young couple have separate romantic interludes; a spotlight shines on an ordinary man.. Tags: rome, expatriate, episodic"} +{"id": "10724", "title": "Firefox", "year": 1982, "duration_min": 136, "rating": 5.5, "genres": "Science Fiction, Action, Adventure, Thriller", "genres_pipe": "|Science Fiction|Action|Adventure|Thriller|", "keywords": "flying, pilot, kampfjet, false identity, assault, suspense", "tags_pipe": "|flying|pilot|kampfjet|false identity|assault|suspense|", "overview": "The Soviets have developed a revolutionary new jet fighter, called \"Firefox\". Naturally, the British are worried that the jet will be used as a first-strike weapon, as rumours say that the jet is indetectable on radar. They send ex-Vietnam War pilot Mitchell Gant on a covert mission into the Soviet Union to steal Firefox.", "text_for_embedding": "Firefox (1982). Genres: Science Fiction, Action, Adventure, Thriller. The Soviets have developed a revolutionary new jet fighter, called \"Firefox\". Naturally, the British are worried that the jet will be used as a first-strike weapon, as rumours say that the jet is indetectable on radar. They send ex-Vietnam War pilot Mitchell Gant on a covert mission into the Soviet Union to steal Firefox.. Tags: flying, pilot, kampfjet, false identity, assault, suspense"} +{"id": "9473", "title": "South Park: Bigger, Longer & Uncut", "year": 1999, "duration_min": 81, "rating": 7.1, "genres": "Animation, Comedy, Music", "genres_pipe": "|Animation|Comedy|Music|", "keywords": "gay, mount rushmore national memorial, swear word, mephisto, hell, world supremacy, elementary school, saddam hussein, blood splatter, atheist, sequel, surrealism, friends who hate each other, satan, based on tv series", "tags_pipe": "|gay|mount rushmore national memorial|swear word|mephisto|hell|world supremacy|elementary school|saddam hussein|blood splatter|atheist|sequel|surrealism|friends who hate each other|satan|based on tv series|", "overview": "When the four boys see an R-rated movie featuring Canadians Terrance and Philip, they are pronounced \"corrupted\", and their parents pressure the United States to wage war against Canada.", "text_for_embedding": "South Park: Bigger, Longer & Uncut (1999). Genres: Animation, Comedy, Music. When the four boys see an R-rated movie featuring Canadians Terrance and Philip, they are pronounced \"corrupted\", and their parents pressure the United States to wage war against Canada.. Tags: gay, mount rushmore national memorial, swear word, mephisto, hell, world supremacy, elementary school, saddam hussein, blood splatter, atheist, sequel, surrealism, friends who hate each other, satan, based on tv series"} +{"id": "2196", "title": "Death at a Funeral", "year": 2007, "duration_min": 90, "rating": 6.9, "genres": "Comedy, Drama", "genres_pipe": "|Comedy|Drama|", "keywords": "brother brother relationship, farewell, father son relationship, age difference, parents kids relationship, secret, sadness, coffin, funeral, gathering, surprise, lsd, studies, hallucinogen, drug trip", "tags_pipe": "|brother brother relationship|farewell|father son relationship|age difference|parents kids relationship|secret|sadness|coffin|funeral|gathering|surprise|lsd|studies|hallucinogen|drug trip|", "overview": "Chaos ensues when a man tries to expose a dark secret regarding a recently deceased patriarch of a dysfunctional British family.", "text_for_embedding": "Death at a Funeral (2007). Genres: Comedy, Drama. Chaos ensues when a man tries to expose a dark secret regarding a recently deceased patriarch of a dysfunctional British family.. Tags: brother brother relationship, farewell, father son relationship, age difference, parents kids relationship, secret, sadness, coffin, funeral, gathering, surprise, lsd, studies, hallucinogen, drug trip"} +{"id": "1499", "title": "Teenage Mutant Ninja Turtles III", "year": 1993, "duration_min": 96, "rating": 5.1, "genres": "Action, Adventure, Comedy, Family, Fantasy, Science Fiction", "genres_pipe": "|Action|Adventure|Comedy|Family|Fantasy|Science Fiction|", "keywords": "japan, time travel, ninja", "tags_pipe": "|japan|time travel|ninja|", "overview": "The four turtles travel back in time to the days of the legendary and deadly samurai in ancient Japan, where they train to perfect the art of becoming one. The turtles also assist a small village in an uprising.", "text_for_embedding": "Teenage Mutant Ninja Turtles III (1993). Genres: Action, Adventure, Comedy, Family, Fantasy, Science Fiction. The four turtles travel back in time to the days of the legendary and deadly samurai in ancient Japan, where they train to perfect the art of becoming one. The turtles also assist a small village in an uprising.. Tags: japan, time travel, ninja"} +{"id": "20857", "title": "Hardball", "year": 2001, "duration_min": 106, "rating": 6.3, "genres": "Comedy, Romance", "genres_pipe": "|Comedy|Romance|", "keywords": "gay", "tags_pipe": "|gay|", "overview": "An aimless young man who is scalping tickets, gambling and drinking, agrees to coach a Little League team from the Cabrini Green housing project in Chicago as a condition of getting a loan from a friend.", "text_for_embedding": "Hardball (2001). Genres: Comedy, Romance. An aimless young man who is scalping tickets, gambling and drinking, agrees to coach a Little League team from the Cabrini Green housing project in Chicago as a condition of getting a loan from a friend.. Tags: gay"} +{"id": "82693", "title": "Silver Linings Playbook", "year": 2012, "duration_min": 122, "rating": 6.9, "genres": "Drama, Comedy, Romance", "genres_pipe": "|Drama|Comedy|Romance|", "keywords": "dancing, philadelphia, running, based on novel, depression, letter, friendship, neighbor, mental illness, ex-wife, institutionalization, bipolar, philadelphia eagles", "tags_pipe": "|dancing|philadelphia|running|based on novel|depression|letter|friendship|neighbor|mental illness|ex-wife|institutionalization|bipolar|philadelphia eagles|", "overview": "After spending eight months in a mental institution, a former teacher moves back in with his parents and tries to reconcile with his ex-wife.", "text_for_embedding": "Silver Linings Playbook (2012). Genres: Drama, Comedy, Romance. After spending eight months in a mental institution, a former teacher moves back in with his parents and tries to reconcile with his ex-wife.. Tags: dancing, philadelphia, running, based on novel, depression, letter, friendship, neighbor, mental illness, ex-wife, institutionalization, bipolar, philadelphia eagles"} +{"id": "1646", "title": "Freedom Writers", "year": 2007, "duration_min": 123, "rating": 7.5, "genres": "Crime, Drama", "genres_pipe": "|Crime|Drama|", "keywords": "black people, based on novel, holocaust, ghetto, diary, principal witness , biography, daughter, high school, racial segregation, anne frank, school excursion, idealism, violence in schools, racial tension", "tags_pipe": "|black people|based on novel|holocaust|ghetto|diary|principal witness |biography|daughter|high school|racial segregation|anne frank|school excursion|idealism|violence in schools|racial tension|", "overview": "A young teacher inspires her class of at-risk students to learn tolerance, apply themselves, and pursue education beyond high school.", "text_for_embedding": "Freedom Writers (2007). Genres: Crime, Drama. A young teacher inspires her class of at-risk students to learn tolerance, apply themselves, and pursue education beyond high school.. Tags: black people, based on novel, holocaust, ghetto, diary, principal witness , biography, daughter, high school, racial segregation, anne frank, school excursion, idealism, violence in schools, racial tension"} +{"id": "44944", "title": "For Colored Girls", "year": 2010, "duration_min": 134, "rating": 7.0, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "female nudity, poem, rape, love, domestic violence, womanhood", "tags_pipe": "|female nudity|poem|rape|love|domestic violence|womanhood|", "overview": "About existence from the perspective of 20 nameless black females. Each of the women portray one of the characters represented in the collection of twenty poems, revealing different issues that impact women in general and women of color in particular.", "text_for_embedding": "For Colored Girls (2010). Genres: Drama. About existence from the perspective of 20 nameless black females. Each of the women portray one of the characters represented in the collection of twenty poems, revealing different issues that impact women in general and women of color in particular.. Tags: female nudity, poem, rape, love, domestic violence, womanhood"} +{"id": "4108", "title": "The Transporter", "year": 2002, "duration_min": 92, "rating": 6.6, "genres": "Action, Crime, Thriller", "genres_pipe": "|Action|Crime|Thriller|", "keywords": "car journey, transportation, auto, human trafficking", "tags_pipe": "|car journey|transportation|auto|human trafficking|", "overview": "Former Special Forces officer, Frank Martin will deliver anything to anyone for the right price, and his no-questions-asked policy puts him in high demand. But when he realizes his latest cargo is alive, it sets in motion a dangerous chain of events. The bound and gagged Lai is being smuggled to France by a shady American businessman, and Frank works to save her as his own illegal activities are uncovered by a French detective.", "text_for_embedding": "The Transporter (2002). Genres: Action, Crime, Thriller. Former Special Forces officer, Frank Martin will deliver anything to anyone for the right price, and his no-questions-asked policy puts him in high demand. But when he realizes his latest cargo is alive, it sets in motion a dangerous chain of events. The bound and gagged Lai is being smuggled to France by a shady American businessman, and Frank works to save her as his own illegal activities are uncovered by a French detective.. Tags: car journey, transportation, auto, human trafficking"} +{"id": "8456", "title": "Never Back Down", "year": 2008, "duration_min": 115, "rating": 6.4, "genres": "Drama, Action", "genres_pipe": "|Drama|Action|", "keywords": "rebel, martial arts, underground, fight, training, champion, sport, high school, party, revenge, blood, nemesis, violence, club, brawl", "tags_pipe": "|rebel|martial arts|underground|fight|training|champion|sport|high school|party|revenge|blood|nemesis|violence|club|brawl|", "overview": "Rebellious Jake Tyler is lured into an ultimate underground fight Scene at his new high school, after receiving threats to the safety of his friends and family Jake decides to seek the mentoring of a veteran fighter who trains him for one final no-holds-barred elimination fight with his nemesis and local martial arts champion Ryan McCarthy.", "text_for_embedding": "Never Back Down (2008). Genres: Drama, Action. Rebellious Jake Tyler is lured into an ultimate underground fight Scene at his new high school, after receiving threats to the safety of his friends and family Jake decides to seek the mentoring of a veteran fighter who trains him for one final no-holds-barred elimination fight with his nemesis and local martial arts champion Ryan McCarthy.. Tags: rebel, martial arts, underground, fight, training, champion, sport, high school, party, revenge, blood, nemesis, violence, club, brawl"} +{"id": "7341", "title": "The Rage: Carrie 2", "year": 1999, "duration_min": 104, "rating": 5.1, "genres": "Horror, Thriller, Science Fiction", "genres_pipe": "|Horror|Thriller|Science Fiction|", "keywords": "suicide, male nudity, female nudity, fire, nudity, asylum, telekinesis, high school, swimming pool, party, sequel, murder, prom, teacher, decapitation", "tags_pipe": "|suicide|male nudity|female nudity|fire|nudity|asylum|telekinesis|high school|swimming pool|party|sequel|murder|prom|teacher|decapitation|", "overview": "After the suicide of her only friend, Rachel has never felt more on the outside. The one person who reached out to her, Jessie, also happens to be part of the popular crowd that lives to torment outsiders like her. But Rachel has something else that separates her from the rest, a secret amazing ability to move things with her mind. Sue Snell, the only survivor of Carrie White's rampage twenty-two years ago, may hold the key to helping Rachel come to terms with her awesome, but unwanted power. But as Rachel slowly learns to trust, a terrible trap is being laid for her. And making her angry could prove to be fatal.", "text_for_embedding": "The Rage: Carrie 2 (1999). Genres: Horror, Thriller, Science Fiction. After the suicide of her only friend, Rachel has never felt more on the outside. The one person who reached out to her, Jessie, also happens to be part of the popular crowd that lives to torment outsiders like her. But Rachel has something else that separates her from the rest, a secret amazing ability to move things with her mind. Sue Snell, the only survivor of Carrie White's rampage twenty-two years ago, may hold the key to helping Rachel come to terms with her awesome, but unwanted power. But as Rachel slowly learns to trust, a terrible trap is being laid for her. And making her angry could prove to be fatal.. Tags: suicide, male nudity, female nudity, fire, nudity, asylum, telekinesis, high school, swimming pool, party, sequel, murder, prom, teacher, decapitation"} +{"id": "19255", "title": "Away We Go", "year": 2009, "duration_min": 98, "rating": 6.7, "genres": "Drama, Comedy, Romance", "genres_pipe": "|Drama|Comedy|Romance|", "keywords": "interracial relationship, dead father, reference to bob dylan, biracial, bedtime story, unmarried couple, medical illustrator, disguised voice, reference to huckleberry finn, student protest, sonogram, expectant grandmother, dead parents, testicles", "tags_pipe": "|interracial relationship|dead father|reference to bob dylan|biracial|bedtime story|unmarried couple|medical illustrator|disguised voice|reference to huckleberry finn|student protest|sonogram|expectant grandmother|dead parents|testicles|", "overview": "Verona and Burt have moved to Colorado to be close to Burt's parents but, with Veronica expecting their first child, Burt’s parents decide to move to Belgium, now leaving them in a place they hate and without a support structure in place. They set off on a whirlwind tour of of disparate locations where they have friends or relatives, sampling not only different cities and climates but also different families. Along the way they realize that the journey is less about discovering where they want to live and more about figuring out what type of parents they want to be.", "text_for_embedding": "Away We Go (2009). Genres: Drama, Comedy, Romance. Verona and Burt have moved to Colorado to be close to Burt's parents but, with Veronica expecting their first child, Burt’s parents decide to move to Belgium, now leaving them in a place they hate and without a support structure in place. They set off on a whirlwind tour of of disparate locations where they have friends or relatives, sampling not only different cities and climates but also different families. Along the way they realize that the journey is less about discovering where they want to live and more about figuring out what type of parents they want to be.. Tags: interracial relationship, dead father, reference to bob dylan, biracial, bedtime story, unmarried couple, medical illustrator, disguised voice, reference to huckleberry finn, student protest, sonogram, expectant grandmother, dead parents, testicles"} +{"id": "10187", "title": "Swing Vote", "year": 2008, "duration_min": 120, "rating": 5.8, "genres": "Drama, Comedy", "genres_pipe": "|Drama|Comedy|", "keywords": "usa president, presidential election, fox news", "tags_pipe": "|usa president|presidential election|fox news|", "overview": "In a remarkable turn of events, the result of the presidential election comes down to one man's vote.", "text_for_embedding": "Swing Vote (2008). Genres: Drama, Comedy. In a remarkable turn of events, the result of the presidential election comes down to one man's vote.. Tags: usa president, presidential election, fox news"} +{"id": "31005", "title": "Moonlight Mile", "year": 2002, "duration_min": 117, "rating": 6.5, "genres": "Romance, Drama", "genres_pipe": "|Romance|Drama|", "keywords": "", "tags_pipe": "", "overview": "As he copes with the death of his fiancee along with her parents, a young man must figure out what he wants out of life.", "text_for_embedding": "Moonlight Mile (2002). Genres: Romance, Drama. As he copes with the death of his fiancee along with her parents, a young man must figure out what he wants out of life.. Tags: "} +{"id": "49517", "title": "Tinker Tailor Soldier Spy", "year": 2011, "duration_min": 127, "rating": 6.6, "genres": "Drama, Thriller, Mystery", "genres_pipe": "|Drama|Thriller|Mystery|", "keywords": "spy, cold war, spying, espionage, mole, british spy", "tags_pipe": "|spy|cold war|spying|espionage|mole|british spy|", "overview": "Recently-retired MI6 agent, George Smiley is doing his best to adjust to a life outside the secret service until a disgraced agent reappears with information concerning a mole at the heart of the service. Smiley is drawn back into the murky field of espionage, tasked with investigating which of his trusted former colleagues has chosen to betray him and their country. Smiley narrows his search to four suspects – all experienced, skilled and successful agents – but past histories, rivalries and friendships make it far from easy to pinpoint the man who is eating away at the heart of the British establishment.", "text_for_embedding": "Tinker Tailor Soldier Spy (2011). Genres: Drama, Thriller, Mystery. Recently-retired MI6 agent, George Smiley is doing his best to adjust to a life outside the secret service until a disgraced agent reappears with information concerning a mole at the heart of the service. Smiley is drawn back into the murky field of espionage, tasked with investigating which of his trusted former colleagues has chosen to betray him and their country. Smiley narrows his search to four suspects – all experienced, skilled and successful agents – but past histories, rivalries and friendships make it far from easy to pinpoint the man who is eating away at the heart of the British establishment.. Tags: spy, cold war, spying, espionage, mole, british spy"} +{"id": "44857", "title": "Molly", "year": 1999, "duration_min": 102, "rating": 5.5, "genres": "Drama, Comedy, Romance", "genres_pipe": "|Drama|Comedy|Romance|", "keywords": "", "tags_pipe": "", "overview": "Molly McKay is a profoundly autistic twenty-something woman who has lived in an institution from a young age following her parents' death in a car accident. When the institution must close due budget cuts, Molly is left in the charge of her neurotypical, older brother, Buck McKay, an advertising executive and perennial bachelor. Buck allows her to undergo an experimental medical treatment, with unexpectedly drastic results.", "text_for_embedding": "Molly (1999). Genres: Drama, Comedy, Romance. Molly McKay is a profoundly autistic twenty-something woman who has lived in an institution from a young age following her parents' death in a car accident. When the institution must close due budget cuts, Molly is left in the charge of her neurotypical, older brother, Buck McKay, an advertising executive and perennial bachelor. Buck allows her to undergo an experimental medical treatment, with unexpectedly drastic results.. Tags: "} +{"id": "50780", "title": "The Beaver", "year": 2011, "duration_min": 91, "rating": 6.3, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "puppet, woman director", "tags_pipe": "|puppet|woman director|", "overview": "Suffering from a severe case of depression, toy company CEO Walter Black (Mel Gibson) begins using a beaver hand puppet to help him open up to his family. With his father seemingly going insane, adolescent son Porter (Anton Yelchin) pushes for his parents to get a divorce. Jodie Foster directs and co-stars as Walter's wife in this dark comedy that also features Riley Thomas Stewart and Jennifer Lawrence.", "text_for_embedding": "The Beaver (2011). Genres: Drama. Suffering from a severe case of depression, toy company CEO Walter Black (Mel Gibson) begins using a beaver hand puppet to help him open up to his family. With his father seemingly going insane, adolescent son Porter (Anton Yelchin) pushes for his parents to get a divorce. Jodie Foster directs and co-stars as Walter's wife in this dark comedy that also features Riley Thomas Stewart and Jennifer Lawrence.. Tags: puppet, woman director"} +{"id": "16363", "title": "The Best Little Whorehouse in Texas", "year": 1982, "duration_min": 114, "rating": 5.9, "genres": "Comedy", "genres_pipe": "|Comedy|", "keywords": "brothel, corset, crusader, musical, governor, tv reporter, madame, busty, cat house, based on stage musical, based on adaptation, based on article, swearing", "tags_pipe": "|brothel|corset|crusader|musical|governor|tv reporter|madame|busty|cat house|based on stage musical|based on adaptation|based on article|swearing|", "overview": "The town sheriff and a madame team up to stop a television evangelist from shutting down the local whorehouse, the famed \"Chicken Ranch.\"", "text_for_embedding": "The Best Little Whorehouse in Texas (1982). Genres: Comedy. The town sheriff and a madame team up to stop a television evangelist from shutting down the local whorehouse, the famed \"Chicken Ranch.\". Tags: brothel, corset, crusader, musical, governor, tv reporter, madame, busty, cat house, based on stage musical, based on adaptation, based on article, swearing"} +{"id": "1946", "title": "eXistenZ", "year": 1999, "duration_min": 97, "rating": 6.7, "genres": "Action, Thriller, Science Fiction, Horror", "genres_pipe": "|Action|Thriller|Science Fiction|Horror|", "keywords": "video game, hacker, bodyguard, pop star, virtual reality, dystopia, virtual fight", "tags_pipe": "|video game|hacker|bodyguard|pop star|virtual reality|dystopia|virtual fight|", "overview": "A game designer on the run from assassins must play her latest virtual reality creation with a marketing trainee to determine if the game has been damaged.", "text_for_embedding": "eXistenZ (1999). Genres: Action, Thriller, Science Fiction, Horror. A game designer on the run from assassins must play her latest virtual reality creation with a marketing trainee to determine if the game has been damaged.. Tags: video game, hacker, bodyguard, pop star, virtual reality, dystopia, virtual fight"} +{"id": "85", "title": "Raiders of the Lost Ark", "year": 1981, "duration_min": 115, "rating": 7.7, "genres": "Adventure, Action", "genres_pipe": "|Adventure|Action|", "keywords": "saving the world, riddle, nepal, himalaya, cairo, moses, egypt, whip, treasure, medallion, leather jacket, nazis, hat, mediterranean, ark of the covenant", "tags_pipe": "|saving the world|riddle|nepal|himalaya|cairo|moses|egypt|whip|treasure|medallion|leather jacket|nazis|hat|mediterranean|ark of the covenant|", "overview": "When Dr. Indiana Jones – the tweed-suited professor who just happens to be a celebrated archaeologist – is hired by the government to locate the legendary Ark of the Covenant, he finds himself up against the entire Nazi regime.", "text_for_embedding": "Raiders of the Lost Ark (1981). Genres: Adventure, Action. When Dr. Indiana Jones – the tweed-suited professor who just happens to be a celebrated archaeologist – is hired by the government to locate the legendary Ark of the Covenant, he finds himself up against the entire Nazi regime.. Tags: saving the world, riddle, nepal, himalaya, cairo, moses, egypt, whip, treasure, medallion, leather jacket, nazis, hat, mediterranean, ark of the covenant"} +{"id": "772", "title": "Home Alone 2: Lost in New York", "year": 1992, "duration_min": 120, "rating": 6.3, "genres": "Comedy, Family, Adventure, Crime", "genres_pipe": "|Comedy|Family|Adventure|Crime|", "keywords": "holiday, new york, new york city, christmas", "tags_pipe": "|holiday|new york|new york city|christmas|", "overview": "Instead of flying to Florida with his folks, Kevin ends up alone in New York, where he gets a hotel room with his dad's credit card—despite problems from a clerk and meddling bellboy. But when Kevin runs into his old nemeses, the Wet Bandits, he's determined to foil their plans to rob a toy store on Christmas eve.", "text_for_embedding": "Home Alone 2: Lost in New York (1992). Genres: Comedy, Family, Adventure, Crime. Instead of flying to Florida with his folks, Kevin ends up alone in New York, where he gets a hotel room with his dad's credit card—despite problems from a clerk and meddling bellboy. But when Kevin runs into his old nemeses, the Wet Bandits, he's determined to foil their plans to rob a toy store on Christmas eve.. Tags: holiday, new york, new york city, christmas"} +{"id": "840", "title": "Close Encounters of the Third Kind", "year": 1977, "duration_min": 135, "rating": 7.2, "genres": "Science Fiction, Drama", "genres_pipe": "|Science Fiction|Drama|", "keywords": "indiana, obsession, extraterrestrial technology, evacuation, blackout, flying saucer, secret base, light, contact, beguilement, exchange, ufo, alien, vision, missing person", "tags_pipe": "|indiana|obsession|extraterrestrial technology|evacuation|blackout|flying saucer|secret base|light|contact|beguilement|exchange|ufo|alien|vision|missing person|", "overview": "After an encounter with UFOs, a line worker feels undeniably drawn to an isolated area in the wilderness where something spectacular is about to happen.", "text_for_embedding": "Close Encounters of the Third Kind (1977). Genres: Science Fiction, Drama. After an encounter with UFOs, a line worker feels undeniably drawn to an isolated area in the wilderness where something spectacular is about to happen.. Tags: indiana, obsession, extraterrestrial technology, evacuation, blackout, flying saucer, secret base, light, contact, beguilement, exchange, ufo, alien, vision, missing person"} +{"id": "9682", "title": "Pulse", "year": 2006, "duration_min": 90, "rating": 5.0, "genres": "Horror, Thriller", "genres_pipe": "|Horror|Thriller|", "keywords": "suicide, hacker, death of a friend, website, remake", "tags_pipe": "|suicide|hacker|death of a friend|website|remake|", "overview": "When their computer hacker friend accidentally channels a mysterious wireless signal, a group of co-eds rally to stop a terrifying evil from taking over the world.", "text_for_embedding": "Pulse (2006). Genres: Horror, Thriller. When their computer hacker friend accidentally channels a mysterious wireless signal, a group of co-eds rally to stop a terrifying evil from taking over the world.. Tags: suicide, hacker, death of a friend, website, remake"} +{"id": "96", "title": "Beverly Hills Cop II", "year": 1987, "duration_min": 100, "rating": 6.1, "genres": "Action, Comedy, Crime", "genres_pipe": "|Action|Comedy|Crime|", "keywords": "smuggling of arms, detective, intensive care, undercover, strip club, armored car, investigation, police, swimming pool, sequel, shootout, gunfight, los angeles, explosion, violence", "tags_pipe": "|smuggling of arms|detective|intensive care|undercover|strip club|armored car|investigation|police|swimming pool|sequel|shootout|gunfight|los angeles|explosion|violence|", "overview": "Detroit cop, Axel Foley heads for the land of sunshine and palm trees to find out who shot police Captain Andrew Bogomil. Thanks to a couple of old friends, Axel's investigation uncovers a series of robberies masterminded by a heartless weapons kingpin – and the chase is on.", "text_for_embedding": "Beverly Hills Cop II (1987). Genres: Action, Comedy, Crime. Detroit cop, Axel Foley heads for the land of sunshine and palm trees to find out who shot police Captain Andrew Bogomil. Thanks to a couple of old friends, Axel's investigation uncovers a series of robberies masterminded by a heartless weapons kingpin – and the chase is on.. Tags: smuggling of arms, detective, intensive care, undercover, strip club, armored car, investigation, police, swimming pool, sequel, shootout, gunfight, los angeles, explosion, violence"} +{"id": "10678", "title": "Bringing Down the House", "year": 2003, "duration_min": 105, "rating": 5.4, "genres": "Comedy", "genres_pipe": "|Comedy|", "keywords": "prison, ex-boyfriend, support, escape, lawyer", "tags_pipe": "|prison|ex-boyfriend|support|escape|lawyer|", "overview": "Straight-laced lawyer, Peter Sanderson (Steve Martin) meets and falls in love with online chat friend \"Lawyer-Girl\", Charlene Morton (Queen Latifah), only to discover she's a convicted bank robber. Charlene escapes from jail and comes looking for Peter to help clear her name.", "text_for_embedding": "Bringing Down the House (2003). Genres: Comedy. Straight-laced lawyer, Peter Sanderson (Steve Martin) meets and falls in love with online chat friend \"Lawyer-Girl\", Charlene Morton (Queen Latifah), only to discover she's a convicted bank robber. Charlene escapes from jail and comes looking for Peter to help clear her name.. Tags: prison, ex-boyfriend, support, escape, lawyer"} +{"id": "274", "title": "The Silence of the Lambs", "year": 1991, "duration_min": 119, "rating": 8.1, "genres": "Crime, Drama, Thriller", "genres_pipe": "|Crime|Drama|Thriller|", "keywords": "based on novel, psychopath, horror, suspense, serial killer, psychological thriller, cannibal, fbi agent, animal in cast credits, cannibalism", "tags_pipe": "|based on novel|psychopath|horror|suspense|serial killer|psychological thriller|cannibal|fbi agent|animal in cast credits|cannibalism|", "overview": "FBI trainee, Clarice Starling ventures into a maximum-security asylum to pick the diseased brain of Hannibal Lecter, a psychiatrist turned homicidal cannibal. Starling needs clues to help her capture a serial killer. but her Faustian relationship with Lecter soon leads to his escape, and now two deranged killers are on the loose.", "text_for_embedding": "The Silence of the Lambs (1991). Genres: Crime, Drama, Thriller. FBI trainee, Clarice Starling ventures into a maximum-security asylum to pick the diseased brain of Hannibal Lecter, a psychiatrist turned homicidal cannibal. Starling needs clues to help her capture a serial killer. but her Faustian relationship with Lecter soon leads to his escape, and now two deranged killers are on the loose.. Tags: based on novel, psychopath, horror, suspense, serial killer, psychological thriller, cannibal, fbi agent, animal in cast credits, cannibalism"} +{"id": "8872", "title": "Wayne's World", "year": 1992, "duration_min": 94, "rating": 6.5, "genres": "Music, Comedy", "genres_pipe": "|Music|Comedy|", "keywords": "tv show, heavy metal, television producer, woman director", "tags_pipe": "|tv show|heavy metal|television producer|woman director|", "overview": "When a sleazy TV exec offers Wayne and Garth a fat contract to tape their late-night public access show at his network, they can't believe their good fortune. But they soon discover the road from basement to big-time is a gnarly one, fraught with danger, temptation and ragin' party opportunities.", "text_for_embedding": "Wayne's World (1992). Genres: Music, Comedy. When a sleazy TV exec offers Wayne and Garth a fat contract to tape their late-night public access show at his network, they can't believe their good fortune. But they soon discover the road from basement to big-time is a gnarly one, fraught with danger, temptation and ragin' party opportunities.. Tags: tv show, heavy metal, television producer, woman director"} +{"id": "16290", "title": "Jackass 3D", "year": 2010, "duration_min": 94, "rating": 6.4, "genres": "Comedy, Documentary, Action", "genres_pipe": "|Comedy|Documentary|Action|", "keywords": "pain, stunts, stuntman, stupidity, comedy, duringcreditsstinger, 3d", "tags_pipe": "|pain|stunts|stuntman|stupidity|comedy|duringcreditsstinger|3d|", "overview": "Jackass 3D is a 3-D film and the third movie of the Jackass series. It follows the same premise as the first two movies, as well as the TV series. It is a compilation of various pranks, stunts and skits. Before the movie begins, a brief introduction is made by Beavis and Butt-head explaining the 3D technology behind the movie. The intro features the cast lining up and then being attacked by various objects in slow-motion. The movie marks the 10th anniversary of the franchise, started in 2000.", "text_for_embedding": "Jackass 3D (2010). Genres: Comedy, Documentary, Action. Jackass 3D is a 3-D film and the third movie of the Jackass series. It follows the same premise as the first two movies, as well as the TV series. It is a compilation of various pranks, stunts and skits. Before the movie begins, a brief introduction is made by Beavis and Butt-head explaining the 3D technology behind the movie. The intro features the cast lining up and then being attacked by various objects in slow-motion. The movie marks the 10th anniversary of the franchise, started in 2000.. Tags: pain, stunts, stuntman, stupidity, comedy, duringcreditsstinger, 3d"} +{"id": "579", "title": "Jaws 2", "year": 1978, "duration_min": 116, "rating": 5.9, "genres": "Horror, Thriller", "genres_pipe": "|Horror|Thriller|", "keywords": "mayor, island, police chief, sailing, boat accident, dying and death, panic, current, aggression by animal, sequel, rescue, teenager, shark, great white shark, high-tension current", "tags_pipe": "|mayor|island|police chief|sailing|boat accident|dying and death|panic|current|aggression by animal|sequel|rescue|teenager|shark|great white shark|high-tension current|", "overview": "Police chief Brody must protect the citizens of Amity after a second monstrous shark begins terrorizing the waters.", "text_for_embedding": "Jaws 2 (1978). Genres: Horror, Thriller. Police chief Brody must protect the citizens of Amity after a second monstrous shark begins terrorizing the waters.. Tags: mayor, island, police chief, sailing, boat accident, dying and death, panic, current, aggression by animal, sequel, rescue, teenager, shark, great white shark, high-tension current"} +{"id": "14405", "title": "Beverly Hills Chihuahua", "year": 2008, "duration_min": 91, "rating": 4.9, "genres": "Adventure, Comedy, Family", "genres_pipe": "|Adventure|Comedy|Family|", "keywords": "dog dirt, chihuahua, pinata, potted plant, duringcreditsstinger", "tags_pipe": "|dog dirt|chihuahua|pinata|potted plant|duringcreditsstinger|", "overview": "A pampered Beverly Hills chihuahua named Chloe who, while on vacation in Mexico with her owner Viv's niece, Rachel, gets lost and must rely on her friends to help her get back home before she is caught by a dognapper who wants to ransom her.", "text_for_embedding": "Beverly Hills Chihuahua (2008). Genres: Adventure, Comedy, Family. A pampered Beverly Hills chihuahua named Chloe who, while on vacation in Mexico with her owner Viv's niece, Rachel, gets lost and must rely on her friends to help her get back home before she is caught by a dognapper who wants to ransom her.. Tags: dog dirt, chihuahua, pinata, potted plant, duringcreditsstinger"} +{"id": "138843", "title": "The Conjuring", "year": 2013, "duration_min": 112, "rating": 7.4, "genres": "Horror, Thriller", "genres_pipe": "|Horror|Thriller|", "keywords": "sister sister relationship, exorcism, rhode island, based on true story, farmhouse, paranormal investigation, ghost, supernatural power, paranormal investigator, annabelle", "tags_pipe": "|sister sister relationship|exorcism|rhode island|based on true story|farmhouse|paranormal investigation|ghost|supernatural power|paranormal investigator|annabelle|", "overview": "Paranormal investigators Ed and Lorraine Warren work to help a family terrorized by a dark presence in their farmhouse. Forced to confront a powerful entity, the Warrens find themselves caught in the most terrifying case of their lives.", "text_for_embedding": "The Conjuring (2013). Genres: Horror, Thriller. Paranormal investigators Ed and Lorraine Warren work to help a family terrorized by a dark presence in their farmhouse. Forced to confront a powerful entity, the Warrens find themselves caught in the most terrifying case of their lives.. Tags: sister sister relationship, exorcism, rhode island, based on true story, farmhouse, paranormal investigation, ghost, supernatural power, paranormal investigator, annabelle"} +{"id": "11637", "title": "Are We There Yet?", "year": 2005, "duration_min": 95, "rating": 5.2, "genres": "Adventure, Comedy, Family, Romance", "genres_pipe": "|Adventure|Comedy|Family|Romance|", "keywords": "car journey, macho, road trip, children, pretty woman, trouble", "tags_pipe": "|car journey|macho|road trip|children|pretty woman|trouble|", "overview": "The fledgling romance between Nick, a playboy bachelor, and Suzanne, a divorced mother of two, is threatened by a particularly harrowing New Years Eve. When Suzanne's work keeps her in Vancouver for the holiday, Nick offers to bring her kids to the city from Portland, Oregon. The kids, who have never liked any of the men their mom dates, are determined to turn the trip into a nightmare for Nick.", "text_for_embedding": "Are We There Yet? (2005). Genres: Adventure, Comedy, Family, Romance. The fledgling romance between Nick, a playboy bachelor, and Suzanne, a divorced mother of two, is threatened by a particularly harrowing New Years Eve. When Suzanne's work keeps her in Vancouver for the holiday, Nick offers to bring her kids to the city from Portland, Oregon. The kids, who have never liked any of the men their mom dates, are determined to turn the trip into a nightmare for Nick.. Tags: car journey, macho, road trip, children, pretty woman, trouble"} +{"id": "226486", "title": "Tammy", "year": 2014, "duration_min": 97, "rating": 5.0, "genres": "Comedy", "genres_pipe": "|Comedy|", "keywords": "", "tags_pipe": "", "overview": "After losing her job and learning that her husband has been unfaithful, a woman hits the road with her profane, hard-drinking grandmother.", "text_for_embedding": "Tammy (2014). Genres: Comedy. After losing her job and learning that her husband has been unfaithful, a woman hits the road with her profane, hard-drinking grandmother.. Tags: "} +{"id": "1584", "title": "School of Rock", "year": 2003, "duration_min": 108, "rating": 6.7, "genres": "Comedy, Music", "genres_pipe": "|Comedy|Music|", "keywords": "rock and roll, rock, high school, music band", "tags_pipe": "|rock and roll|rock|high school|music band|", "overview": "Fired from his band and hard up for cash, guitarist and vocalist Dewey Finn finagles his way into a job as a fourth-grade substitute teacher at a private school, where he secretly begins teaching his students the finer points of rock 'n' roll. The school's hard-nosed principal is rightly suspicious of Finn's activities. But Finn's roommate remains in the dark about what he's doing.", "text_for_embedding": "School of Rock (2003). Genres: Comedy, Music. Fired from his band and hard up for cash, guitarist and vocalist Dewey Finn finagles his way into a job as a fourth-grade substitute teacher at a private school, where he secretly begins teaching his students the finer points of rock 'n' roll. The school's hard-nosed principal is rightly suspicious of Finn's activities. But Finn's roommate remains in the dark about what he's doing.. Tags: rock and roll, rock, high school, music band"} +{"id": "9312", "title": "Mortal Kombat", "year": 1995, "duration_min": 101, "rating": 5.4, "genres": "Action, Fantasy", "genres_pipe": "|Action|Fantasy|", "keywords": "martial arts, monster, island, gore, sorcerer, tournament, violence, based on video game, hand to hand combat", "tags_pipe": "|martial arts|monster|island|gore|sorcerer|tournament|violence|based on video game|hand to hand combat|", "overview": "For nine generations an evil sorcerer has been victorious in hand-to-hand battle against his mortal enemies. If he wins a tenth Mortal Kombat tournament, desolation and evil will reign over the multiverse forever. To save Earth, three warriors must overcome seemingly insurmountable odds, their own inner demons, and superhuman foes in this action/adventure movie based on one of the most popular video games of all time.", "text_for_embedding": "Mortal Kombat (1995). Genres: Action, Fantasy. For nine generations an evil sorcerer has been victorious in hand-to-hand battle against his mortal enemies. If he wins a tenth Mortal Kombat tournament, desolation and evil will reign over the multiverse forever. To save Earth, three warriors must overcome seemingly insurmountable odds, their own inner demons, and superhuman foes in this action/adventure movie based on one of the most popular video games of all time.. Tags: martial arts, monster, island, gore, sorcerer, tournament, violence, based on video game, hand to hand combat"} +{"id": "12153", "title": "White Chicks", "year": 2004, "duration_min": 109, "rating": 6.3, "genres": "Comedy", "genres_pipe": "|Comedy|", "keywords": "undercover, fbi, fish out of water, high society, buddy cop, crossdressing", "tags_pipe": "|undercover|fbi|fish out of water|high society|buddy cop|crossdressing|", "overview": "Two FBI agent brothers, Marcus and Kevin Copeland, accidentally foil a drug bust. As punishment, they are forced to escort a pair of socialites to the Hamptons, where they're going to be used as bait for a kidnapper. But when the girls realize the FBI's plan, they refuse to go. Left without options, Marcus and Kevin decide to pose as the sisters, transforming themselves from African-American men into a pair of blonde, white women.", "text_for_embedding": "White Chicks (2004). Genres: Comedy. Two FBI agent brothers, Marcus and Kevin Copeland, accidentally foil a drug bust. As punishment, they are forced to escort a pair of socialites to the Hamptons, where they're going to be used as bait for a kidnapper. But when the girls realize the FBI's plan, they refuse to go. Left without options, Marcus and Kevin decide to pose as the sisters, transforming themselves from African-American men into a pair of blonde, white women.. Tags: undercover, fbi, fish out of water, high society, buddy cop, crossdressing"} +{"id": "65057", "title": "The Descendants", "year": 2011, "duration_min": 115, "rating": 6.7, "genres": "Comedy, Drama", "genres_pipe": "|Comedy|Drama|", "keywords": "hawaii, father-in-law, daughter, cheating wife, beach house, boating accident, estate, dying mother, beautiful girl, teenage daughter, trustee, trust fund, wild girl, wild child, realtor", "tags_pipe": "|hawaii|father-in-law|daughter|cheating wife|beach house|boating accident|estate|dying mother|beautiful girl|teenage daughter|trustee|trust fund|wild girl|wild child|realtor|", "overview": "With his wife Elizabeth on life support after a boating accident, Hawaiian land baron, Matt King takes his daughters on a trip from Oahu to Kauai to confront the young real estate broker, who was having an affair with Elizabeth before her misfortune.", "text_for_embedding": "The Descendants (2011). Genres: Comedy, Drama. With his wife Elizabeth on life support after a boating accident, Hawaiian land baron, Matt King takes his daughters on a trip from Oahu to Kauai to confront the young real estate broker, who was having an affair with Elizabeth before her misfortune.. Tags: hawaii, father-in-law, daughter, cheating wife, beach house, boating accident, estate, dying mother, beautiful girl, teenage daughter, trustee, trust fund, wild girl, wild child, realtor"} +{"id": "8326", "title": "Holes", "year": 2003, "duration_min": 117, "rating": 6.7, "genres": "Adventure, Family, Drama, Comedy", "genres_pipe": "|Adventure|Family|Drama|Comedy|", "keywords": "curse, suitor, false accusations, reference to annabel lee, digging, baseball player, mountain climbing", "tags_pipe": "|curse|suitor|false accusations|reference to annabel lee|digging|baseball player|mountain climbing|", "overview": "Stanley's family is cursed with bad luck. Unfairly sentenced to months of detention at Camp Green Lake, he and his campmates are forced by the warden to dig holes in order to build character. What they don't know is that they are digging holes in order to search for a lost treasure hidden somewhere in the camp.", "text_for_embedding": "Holes (2003). Genres: Adventure, Family, Drama, Comedy. Stanley's family is cursed with bad luck. Unfairly sentenced to months of detention at Camp Green Lake, he and his campmates are forced by the warden to dig holes in order to build character. What they don't know is that they are digging holes in order to search for a lost treasure hidden somewhere in the camp.. Tags: curse, suitor, false accusations, reference to annabel lee, digging, baseball player, mountain climbing"} +{"id": "35690", "title": "The Last Song", "year": 2010, "duration_min": 107, "rating": 6.9, "genres": "Drama, Family, Romance", "genres_pipe": "|Drama|Family|Romance|", "keywords": "brother sister relationship, new love, daughter, summer vacation, woman director", "tags_pipe": "|brother sister relationship|new love|daughter|summer vacation|woman director|", "overview": "A drama centered on a rebellious girl who is sent to a Southern beach town for the summer to stay with her father. Through their mutual love of music, the estranged duo learn to reconnect.", "text_for_embedding": "The Last Song (2010). Genres: Drama, Family, Romance. A drama centered on a rebellious girl who is sent to a Southern beach town for the summer to stay with her father. Through their mutual love of music, the estranged duo learn to reconnect.. Tags: brother sister relationship, new love, daughter, summer vacation, woman director"} +{"id": "76203", "title": "12 Years a Slave", "year": 2013, "duration_min": 134, "rating": 7.9, "genres": "Drama, History", "genres_pipe": "|Drama|History|", "keywords": "whip, kidnapping, slavery, plantation, night shift, violin player, physical abuse, cotton, slave owner, 19th century, sold into slavery, abolitionist", "tags_pipe": "|whip|kidnapping|slavery|plantation|night shift|violin player|physical abuse|cotton|slave owner|19th century|sold into slavery|abolitionist|", "overview": "In the pre-Civil War United States, Solomon Northup, a free black man from upstate New York, is abducted and sold into slavery. Facing cruelty as well as unexpected kindnesses Solomon struggles not only to stay alive, but to retain his dignity. In the twelfth year of his unforgettable odyssey, Solomon’s chance meeting with a Canadian abolitionist will forever alter his life.", "text_for_embedding": "12 Years a Slave (2013). Genres: Drama, History. In the pre-Civil War United States, Solomon Northup, a free black man from upstate New York, is abducted and sold into slavery. Facing cruelty as well as unexpected kindnesses Solomon struggles not only to stay alive, but to retain his dignity. In the twelfth year of his unforgettable odyssey, Solomon’s chance meeting with a Canadian abolitionist will forever alter his life.. Tags: whip, kidnapping, slavery, plantation, night shift, violin player, physical abuse, cotton, slave owner, 19th century, sold into slavery, abolitionist"} +{"id": "13497", "title": "Drumline", "year": 2002, "duration_min": 118, "rating": 6.2, "genres": "Drama, Romance, Comedy, Music", "genres_pipe": "|Drama|Romance|Comedy|Music|", "keywords": "music rehearsal, fraternity initiation, television broadcast, white male pretending to be black, sorority party, push ups", "tags_pipe": "|music rehearsal|fraternity initiation|television broadcast|white male pretending to be black|sorority party|push ups|", "overview": "A fish-out-of-water comedy about a talented street drummer from Harlem who enrolls in a Southern university, expecting to lead its marching band's drumline to victory. He initially flounders in his new world, before realizing that it takes more than talent to reach the top.", "text_for_embedding": "Drumline (2002). Genres: Drama, Romance, Comedy, Music. A fish-out-of-water comedy about a talented street drummer from Harlem who enrolls in a Southern university, expecting to lead its marching band's drumline to victory. He initially flounders in his new world, before realizing that it takes more than talent to reach the top.. Tags: music rehearsal, fraternity initiation, television broadcast, white male pretending to be black, sorority party, push ups"} +{"id": "35688", "title": "Why Did I Get Married Too?", "year": 2010, "duration_min": 121, "rating": 6.1, "genres": "Comedy, Romance", "genres_pipe": "|Comedy|Romance|", "keywords": "", "tags_pipe": "", "overview": "Four couples reunite for their annual vacation in order to socialize and to spend time analyzing their marriages. Their intimate week in the Bahamas is disrupted by the arrival of an ex-husband determined to win back his recently remarried wife.", "text_for_embedding": "Why Did I Get Married Too? (2010). Genres: Comedy, Romance. Four couples reunite for their annual vacation in order to socialize and to spend time analyzing their marriages. Their intimate week in the Bahamas is disrupted by the arrival of an ex-husband determined to win back his recently remarried wife.. Tags: "} +{"id": "162", "title": "Edward Scissorhands", "year": 1990, "duration_min": 105, "rating": 7.5, "genres": "Fantasy, Drama, Romance", "genres_pipe": "|Fantasy|Drama|Romance|", "keywords": "underdog, love at first sight, hairdresser, small town, scissors, inventor, burglar, unsociability", "tags_pipe": "|underdog|love at first sight|hairdresser|small town|scissors|inventor|burglar|unsociability|", "overview": "A small suburban town receives a visit from a castaway unfinished science experiment named Edward.", "text_for_embedding": "Edward Scissorhands (1990). Genres: Fantasy, Drama, Romance. A small suburban town receives a visit from a castaway unfinished science experiment named Edward.. Tags: underdog, love at first sight, hairdresser, small town, scissors, inventor, burglar, unsociability"} +{"id": "296096", "title": "Me Before You", "year": 2016, "duration_min": 110, "rating": 7.6, "genres": "Drama, Romance", "genres_pipe": "|Drama|Romance|", "keywords": "england, based on novel, depression, small town, wheelchair, caretaker, caregiver, disabled, twenty something, woman director, romantic drama, dead end job, accident", "tags_pipe": "|england|based on novel|depression|small town|wheelchair|caretaker|caregiver|disabled|twenty something|woman director|romantic drama|dead end job|accident|", "overview": "A small town girl is caught between dead-end jobs. A high-profile, successful man becomes wheelchair bound following an accident. The man decides his life is not worth living until the girl is hired for six months to be his new caretaker. Worlds apart and trapped together by circumstance, the two get off to a rocky start. But the girl becomes determined to prove to the man that life is worth living and as they embark on a series of adventures together, each finds their world changing in ways neither of them could begin to imagine.", "text_for_embedding": "Me Before You (2016). Genres: Drama, Romance. A small town girl is caught between dead-end jobs. A high-profile, successful man becomes wheelchair bound following an accident. The man decides his life is not worth living until the girl is hired for six months to be his new caretaker. Worlds apart and trapped together by circumstance, the two get off to a rocky start. But the girl becomes determined to prove to the man that life is worth living and as they embark on a series of adventures together, each finds their world changing in ways neither of them could begin to imagine.. Tags: england, based on novel, depression, small town, wheelchair, caretaker, caregiver, disabled, twenty something, woman director, romantic drama, dead end job, accident"} +{"id": "103370", "title": "Madea's Witness Protection", "year": 2012, "duration_min": 114, "rating": 5.9, "genres": "Drama, Comedy, Crime", "genres_pipe": "|Drama|Comedy|Crime|", "keywords": "", "tags_pipe": "", "overview": "A Wall Street investment banker who has been set up as the linchpin of his company's mob-backed Ponzi scheme is relocated with his family to Aunt Madea's southern home.", "text_for_embedding": "Madea's Witness Protection (2012). Genres: Drama, Comedy, Crime. A Wall Street investment banker who has been set up as the linchpin of his company's mob-backed Ponzi scheme is relocated with his family to Aunt Madea's southern home.. Tags: "} +{"id": "1051", "title": "The French Connection", "year": 1971, "duration_min": 104, "rating": 7.4, "genres": "Action, Crime, Thriller", "genres_pipe": "|Action|Crime|Thriller|", "keywords": "police brutality, marseille, night life, attempted murder, drug dealer, drug mule, gangster boss, drug smuggle, undercover agent, hijacking of train, herion", "tags_pipe": "|police brutality|marseille|night life|attempted murder|drug dealer|drug mule|gangster boss|drug smuggle|undercover agent|hijacking of train|herion|", "overview": "Tough narcotics detective 'Popeye' Doyle is in hot pursuit of a suave French drug dealer who may be the key to a huge heroin-smuggling operation.", "text_for_embedding": "The French Connection (1971). Genres: Action, Crime, Thriller. Tough narcotics detective 'Popeye' Doyle is in hot pursuit of a suave French drug dealer who may be the key to a huge heroin-smuggling operation.. Tags: police brutality, marseille, night life, attempted murder, drug dealer, drug mule, gangster boss, drug smuggle, undercover agent, hijacking of train, herion"} +{"id": "376659", "title": "Bad Moms", "year": 2016, "duration_min": 100, "rating": 6.3, "genres": "Comedy", "genres_pipe": "|Comedy|", "keywords": "alcohol, bar, party, divorce, family, hit and run, bathroom humor", "tags_pipe": "|alcohol|bar|party|divorce|family|hit and run|bathroom humor|", "overview": "When three overworked and under-appreciated moms are pushed beyond their limits, they ditch their conventional responsibilities for a jolt of long overdue freedom, fun, and comedic self-indulgence.", "text_for_embedding": "Bad Moms (2016). Genres: Comedy. When three overworked and under-appreciated moms are pushed beyond their limits, they ditch their conventional responsibilities for a jolt of long overdue freedom, fun, and comedic self-indulgence.. Tags: alcohol, bar, party, divorce, family, hit and run, bathroom humor"} +{"id": "10073", "title": "Date Movie", "year": 2006, "duration_min": 83, "rating": 3.6, "genres": "Comedy", "genres_pipe": "|Comedy|", "keywords": "date, diary, parents-in-law, bridegroom, wedding", "tags_pipe": "|date|diary|parents-in-law|bridegroom|wedding|", "overview": "Spoof of romantic comedies which focuses on a man (Campbell), his crush (Hannigan), his parents (Coolidge, Willard), and her father (Griffin).", "text_for_embedding": "Date Movie (2006). Genres: Comedy. Spoof of romantic comedies which focuses on a man (Campbell), his crush (Hannigan), his parents (Coolidge, Willard), and her father (Griffin).. Tags: date, diary, parents-in-law, bridegroom, wedding"} +{"id": "16690", "title": "Return to Never Land", "year": 2002, "duration_min": 72, "rating": 6.1, "genres": "Adventure, Fantasy, Animation, Family", "genres_pipe": "|Adventure|Fantasy|Animation|Family|", "keywords": "animation", "tags_pipe": "|animation|", "overview": "The classic tale of 'Peter Pan' continues in Disney's sequel 'Return to Never Land'. In 1940 on a world besieged by World War II, Wendy, now grown up, has two children, one of them is her daughter, Jane.", "text_for_embedding": "Return to Never Land (2002). Genres: Adventure, Fantasy, Animation, Family. The classic tale of 'Peter Pan' continues in Disney's sequel 'Return to Never Land'. In 1940 on a world besieged by World War II, Wendy, now grown up, has two children, one of them is her daughter, Jane.. Tags: animation"} +{"id": "273895", "title": "Selma", "year": 2014, "duration_min": 127, "rating": 7.4, "genres": "History, Drama", "genres_pipe": "|History|Drama|", "keywords": "alabama, martin luther king, president, black american, civil rights, protest march, woman director, selma", "tags_pipe": "|alabama|martin luther king|president|black american|civil rights|protest march|woman director|selma|", "overview": "\"Selma,\" as in Alabama, the place where segregation in the South was at its worst, leading to a march that ended in violence, forcing a famous statement by President Lyndon B. Johnson that ultimately led to the signing of the Civil Rights Act.", "text_for_embedding": "Selma (2014). Genres: History, Drama. \"Selma,\" as in Alabama, the place where segregation in the South was at its worst, leading to a march that ended in violence, forcing a famous statement by President Lyndon B. Johnson that ultimately led to the signing of the Civil Rights Act.. Tags: alabama, martin luther king, president, black american, civil rights, protest march, woman director, selma"} +{"id": "14873", "title": "The Jungle Book 2", "year": 2003, "duration_min": 72, "rating": 5.6, "genres": "Family, Animation, Adventure", "genres_pipe": "|Family|Animation|Adventure|", "keywords": "river, musical, tiger, village, feral child, sequel, bear, jungle, orphan, vulture, gong, lost, shake, mango", "tags_pipe": "|river|musical|tiger|village|feral child|sequel|bear|jungle|orphan|vulture|gong|lost|shake|mango|", "overview": "Mowgli, missing the jungle and his old friends, runs away from the man village unaware of the danger he's in by going back to the wild.", "text_for_embedding": "The Jungle Book 2 (2003). Genres: Family, Animation, Adventure. Mowgli, missing the jungle and his old friends, runs away from the man village unaware of the danger he's in by going back to the wild.. Tags: river, musical, tiger, village, feral child, sequel, bear, jungle, orphan, vulture, gong, lost, shake, mango"} +{"id": "8968", "title": "Boogeyman", "year": 2005, "duration_min": 89, "rating": 4.6, "genres": "Thriller, Horror, Drama, Mystery", "genres_pipe": "|Thriller|Horror|Drama|Mystery|", "keywords": "nightmare, hallucination, childhood trauma, break-up, hometown, psychotherapy", "tags_pipe": "|nightmare|hallucination|childhood trauma|break-up|hometown|psychotherapy|", "overview": "Every culture has one – the horrible monster fueling young children's nightmares. But for Tim, the Boogeyman still lives in his memories as a creature that devoured his father 16 years earlier. Is the Boogeyman real? Or did Tim make him up to explain why his father abandoned his family?", "text_for_embedding": "Boogeyman (2005). Genres: Thriller, Horror, Drama, Mystery. Every culture has one – the horrible monster fueling young children's nightmares. But for Tim, the Boogeyman still lives in his memories as a creature that devoured his father 16 years earlier. Is the Boogeyman real? Or did Tim make him up to explain why his father abandoned his family?. Tags: nightmare, hallucination, childhood trauma, break-up, hometown, psychotherapy"} +{"id": "9963", "title": "Premonition", "year": 2007, "duration_min": 96, "rating": 5.8, "genres": "Thriller, Drama, Mystery", "genres_pipe": "|Thriller|Drama|Mystery|", "keywords": "deja vu, dying and death, time travel, loss of husband, car crash", "tags_pipe": "|deja vu|dying and death|time travel|loss of husband|car crash|", "overview": "A depressed housewife who learns her husband was killed in a car accident the day previously, awakens the next morning to find him alive and well at home, and then awakens the day after to a world in which he is still dead.", "text_for_embedding": "Premonition (2007). Genres: Thriller, Drama, Mystery. A depressed housewife who learns her husband was killed in a car accident the day previously, awakens the next morning to find him alive and well at home, and then awakens the day after to a world in which he is still dead.. Tags: deja vu, dying and death, time travel, loss of husband, car crash"} +{"id": "15655", "title": "The Tigger Movie", "year": 2000, "duration_min": 77, "rating": 6.3, "genres": "Animation, Family", "genres_pipe": "|Animation|Family|", "keywords": "owl, donkey, tiger, piglet, bear, rabbit, woman director", "tags_pipe": "|owl|donkey|tiger|piglet|bear|rabbit|woman director|", "overview": "As it happens, everybody - Pooh, Piglet, Eeyore, Roo, Rabbit, Owl - is busy preparing a suitable winter home for Eeyore. When everything they do seems to get undone by Tigger's exuberant bouncing, Rabbit suggest Tigger go outside and find other tiggers to bounce with - a notion Tigger finds ridiculous because, after all, he's \"the onliest one\" Or is he?", "text_for_embedding": "The Tigger Movie (2000). Genres: Animation, Family. As it happens, everybody - Pooh, Piglet, Eeyore, Roo, Rabbit, Owl - is busy preparing a suitable winter home for Eeyore. When everything they do seems to get undone by Tigger's exuberant bouncing, Rabbit suggest Tigger go outside and find other tiggers to bounce with - a notion Tigger finds ridiculous because, after all, he's \"the onliest one\" Or is he?. Tags: owl, donkey, tiger, piglet, bear, rabbit, woman director"} +{"id": "21208", "title": "Orphan", "year": 2009, "duration_min": 123, "rating": 6.7, "genres": "Horror, Thriller, Mystery", "genres_pipe": "|Horror|Thriller|Mystery|", "keywords": "nun, deaf-mute, orphan, all girl, troubled marriage, aftercreditsstinger, duringcreditsstinger", "tags_pipe": "|nun|deaf-mute|orphan|all girl|troubled marriage|aftercreditsstinger|duringcreditsstinger|", "overview": "A married couple with a rocky past adopt 9-year old, Esther to fill the void created by a recently-stillborn baby. However, Esther is not quite who she seems.", "text_for_embedding": "Orphan (2009). Genres: Horror, Thriller, Mystery. A married couple with a rocky past adopt 9-year old, Esther to fill the void created by a recently-stillborn baby. However, Esther is not quite who she seems.. Tags: nun, deaf-mute, orphan, all girl, troubled marriage, aftercreditsstinger, duringcreditsstinger"} +{"id": "272878", "title": "Max", "year": 2015, "duration_min": 111, "rating": 6.8, "genres": "Adventure, Drama, Family", "genres_pipe": "|Adventure|Drama|Family|", "keywords": "afghanistan, war, based on true story, rescue, betrayal, dog, grieving", "tags_pipe": "|afghanistan|war|based on true story|rescue|betrayal|dog|grieving|", "overview": "A dog that helped soldiers in Afghanistan returns to the U.S. and is adopted by his handler's family after suffering a traumatic experience.", "text_for_embedding": "Max (2015). Genres: Adventure, Drama, Family. A dog that helped soldiers in Afghanistan returns to the U.S. and is adopted by his handler's family after suffering a traumatic experience.. Tags: afghanistan, war, based on true story, rescue, betrayal, dog, grieving"} +{"id": "9760", "title": "Epic Movie", "year": 2007, "duration_min": 86, "rating": 3.2, "genres": "Action, Adventure, Comedy", "genres_pipe": "|Action|Adventure|Comedy|", "keywords": "", "tags_pipe": "", "overview": "When Edward, Peter, Lucy and Susan each follow their own path, they end up finding themselves at Willy's Chocolate factory. Walking through a wardrobe, they discover the world of Gnarnia, which is ruled by the White Bitch. Meeting up with characters such as Harry Potter and Captain Jack Swallows, the newly reunited family must team up with Aslo, a wise-but-horny lion to stop the white bitch's army", "text_for_embedding": "Epic Movie (2007). Genres: Action, Adventure, Comedy. When Edward, Peter, Lucy and Susan each follow their own path, they end up finding themselves at Willy's Chocolate factory. Walking through a wardrobe, they discover the world of Gnarnia, which is ruled by the White Bitch. Meeting up with characters such as Harry Potter and Captain Jack Swallows, the newly reunited family must team up with Aslo, a wise-but-horny lion to stop the white bitch's army. Tags: "} +{"id": "314365", "title": "Spotlight", "year": 2015, "duration_min": 128, "rating": 7.8, "genres": "Drama, Thriller, History", "genres_pipe": "|Drama|Thriller|History|", "keywords": "child abuse, journalism, judge, florida, boston, pedophilia, court, cover-up, priest, lawyer, catholic, catholic church, catholicism, september 11 2001, investigative journalism", "tags_pipe": "|child abuse|journalism|judge|florida|boston|pedophilia|court|cover-up|priest|lawyer|catholic|catholic church|catholicism|september 11 2001|investigative journalism|", "overview": "The true story of how The Boston Globe uncovered the massive scandal of child abuse and the cover-up within the local Catholic Archdiocese, shaking the entire Catholic Church to its core.", "text_for_embedding": "Spotlight (2015). Genres: Drama, Thriller, History. The true story of how The Boston Globe uncovered the massive scandal of child abuse and the cover-up within the local Catholic Archdiocese, shaking the entire Catholic Church to its core.. Tags: child abuse, journalism, judge, florida, boston, pedophilia, court, cover-up, priest, lawyer, catholic, catholic church, catholicism, september 11 2001, investigative journalism"} +{"id": "13279", "title": "Lakeview Terrace", "year": 2008, "duration_min": 110, "rating": 5.9, "genres": "Drama, Crime, Thriller", "genres_pipe": "|Drama|Crime|Thriller|", "keywords": "vandalism, harassment, neighbor, house party, shot to death, pregnancy, urination, interracial couple, lapd, air conditioner", "tags_pipe": "|vandalism|harassment|neighbor|house party|shot to death|pregnancy|urination|interracial couple|lapd|air conditioner|", "overview": "A young interracial couple has just moved into their California dream home when they become the target of their next-door neighbor, who disapproves of their relationship. A tightly wound LAPD officer has appointed himself the watchdog of the neighborhood. His nightly foot patrols and overly watchful eyes bring comfort to some, but he becomes increasingly aggressive to the newlyweds. These persistent intrusions into their lives cause the couple to fight back.", "text_for_embedding": "Lakeview Terrace (2008). Genres: Drama, Crime, Thriller. A young interracial couple has just moved into their California dream home when they become the target of their next-door neighbor, who disapproves of their relationship. A tightly wound LAPD officer has appointed himself the watchdog of the neighborhood. His nightly foot patrols and overly watchful eyes bring comfort to some, but he becomes increasingly aggressive to the newlyweds. These persistent intrusions into their lives cause the couple to fight back.. Tags: vandalism, harassment, neighbor, house party, shot to death, pregnancy, urination, interracial couple, lapd, air conditioner"} +{"id": "1975", "title": "The Grudge 2", "year": 2006, "duration_min": 102, "rating": 5.2, "genres": "Horror, Thriller", "genres_pipe": "|Horror|Thriller|", "keywords": "remake, little boy, curse", "tags_pipe": "|remake|little boy|curse|", "overview": "In Tokyo, a young woman is exposed to the same mysterious curse that afflicted her sister. The supernatural force, which fills a person with rage before spreading to its next victim, brings together a group of previously unrelated people who attempt to unlock its secret to save their lives.", "text_for_embedding": "The Grudge 2 (2006). Genres: Horror, Thriller. In Tokyo, a young woman is exposed to the same mysterious curse that afflicted her sister. The supernatural force, which fills a person with rage before spreading to its next victim, brings together a group of previously unrelated people who attempt to unlock its secret to save their lives.. Tags: remake, little boy, curse"} +{"id": "33644", "title": "How Stella Got Her Groove Back", "year": 1998, "duration_min": 124, "rating": 6.0, "genres": "Comedy, Drama, Romance", "genres_pipe": "|Comedy|Drama|Romance|", "keywords": "black people, age difference, jamaica, vacation, female protagonist", "tags_pipe": "|black people|age difference|jamaica|vacation|female protagonist|", "overview": "Through good times and bad, Stella and Delilah have always had each other. Now, Stella's so busy building a life that she's forgotten how to really live. But Delilah is about to change all that. What starts as a quick trip to Jamaica, end as an exhilarating voyage of self discovery as Stella learns to open her heart and find love - even if it's with a man 20 years her junior.", "text_for_embedding": "How Stella Got Her Groove Back (1998). Genres: Comedy, Drama, Romance. Through good times and bad, Stella and Delilah have always had each other. Now, Stella's so busy building a life that she's forgotten how to really live. But Delilah is about to change all that. What starts as a quick trip to Jamaica, end as an exhilarating voyage of self discovery as Stella learns to open her heart and find love - even if it's with a man 20 years her junior.. Tags: black people, age difference, jamaica, vacation, female protagonist"} +{"id": "1649", "title": "Bill & Ted's Bogus Journey", "year": 1991, "duration_min": 98, "rating": 5.9, "genres": "Adventure, Comedy, Family, Fantasy, Science Fiction", "genres_pipe": "|Adventure|Comedy|Family|Fantasy|Science Fiction|", "keywords": "future, dying and death, heaven, time travel, heavy metal, diabolical ego, afterlife, metal, robot, devil, doppelganger, seance", "tags_pipe": "|future|dying and death|heaven|time travel|heavy metal|diabolical ego|afterlife|metal|robot|devil|doppelganger|seance|", "overview": "Amiable slackers Bill and Ted are once again roped into a fantastical adventure when De Nomolos, a villain from the future, sends evil robot duplicates of the two lads to terminate and replace them. The robot doubles actually succeed in killing Bill and Ted, but the two are determined to escape the afterlife, challenging the Grim Reaper to a series of games in order to return to the land of the living.", "text_for_embedding": "Bill & Ted's Bogus Journey (1991). Genres: Adventure, Comedy, Family, Fantasy, Science Fiction. Amiable slackers Bill and Ted are once again roped into a fantastical adventure when De Nomolos, a villain from the future, sends evil robot duplicates of the two lads to terminate and replace them. The robot doubles actually succeed in killing Bill and Ted, but the two are determined to escape the afterlife, challenging the Grim Reaper to a series of games in order to return to the land of the living.. Tags: future, dying and death, heaven, time travel, heavy metal, diabolical ego, afterlife, metal, robot, devil, doppelganger, seance"} +{"id": "9895", "title": "Man of the Year", "year": 2006, "duration_min": 115, "rating": 5.8, "genres": "Comedy, Drama, Romance, Thriller", "genres_pipe": "|Comedy|Drama|Romance|Thriller|", "keywords": "usa president, presidential election, comedian", "tags_pipe": "|usa president|presidential election|comedian|", "overview": "The irreverent host of a political satire talk show decides to run for president and expose corruption in Washington. His stunt goes further than he expects when he actually wins the election, but a software engineer suspects that a computer glitch is responsible for his surprising victory.", "text_for_embedding": "Man of the Year (2006). Genres: Comedy, Drama, Romance, Thriller. The irreverent host of a political satire talk show decides to run for president and expose corruption in Washington. His stunt goes further than he expects when he actually wins the election, but a software engineer suspects that a computer glitch is responsible for his surprising victory.. Tags: usa president, presidential election, comedian"} +{"id": "9570", "title": "The Black Hole", "year": 1979, "duration_min": 98, "rating": 6.1, "genres": "Adventure, Family, Science Fiction, Action", "genres_pipe": "|Adventure|Family|Science Fiction|Action|", "keywords": "killer robot, space marine, ghost ship, black hole", "tags_pipe": "|killer robot|space marine|ghost ship|black hole|", "overview": "The explorer craft U.S.S. Palomino is returning to Earth after a fruitless 18-month search for extra-terrestrial life when the crew comes upon a supposedly lost ship, the magnificent U.S.S. Cygnus, hovering near a black hole. The ship is controlled by Dr. Hans Reinhardt and his monstrous robot companion, Maximillian. But the initial wonderment and awe the Palomino crew feel for the ship and its resistance to the power of the black hole turn to horror as they uncover Reinhardt's plans.", "text_for_embedding": "The Black Hole (1979). Genres: Adventure, Family, Science Fiction, Action. The explorer craft U.S.S. Palomino is returning to Earth after a fruitless 18-month search for extra-terrestrial life when the crew comes upon a supposedly lost ship, the magnificent U.S.S. Cygnus, hovering near a black hole. The ship is controlled by Dr. Hans Reinhardt and his monstrous robot companion, Maximillian. But the initial wonderment and awe the Palomino crew feel for the ship and its resistance to the power of the black hole turn to horror as they uncover Reinhardt's plans.. Tags: killer robot, space marine, ghost ship, black hole"} +{"id": "27579", "title": "The American", "year": 2010, "duration_min": 104, "rating": 5.8, "genres": "Crime, Drama, Thriller", "genres_pipe": "|Crime|Drama|Thriller|", "keywords": "prostitute, sweden, suspense, priest, very little dialogue", "tags_pipe": "|prostitute|sweden|suspense|priest|very little dialogue|", "overview": "Dispatched to a small Italian town to await further orders, assassin Jack embarks on a double life that may be more relaxing than is good for him.", "text_for_embedding": "The American (2010). Genres: Crime, Drama, Thriller. Dispatched to a small Italian town to await further orders, assassin Jack embarks on a double life that may be more relaxing than is good for him.. Tags: prostitute, sweden, suspense, priest, very little dialogue"} +{"id": "16052", "title": "Selena", "year": 1997, "duration_min": 127, "rating": 7.0, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "musical, tejano, elopement, bustier, fan club", "tags_pipe": "|musical|tejano|elopement|bustier|fan club|", "overview": "In this biographical drama, Selena Quintanilla is born into a musical Mexican-American family in Texas. Her father, Abraham, realizes that his young daughter is talented and begins performing with her at small venues. She finds success and falls for her guitarist, Chris Perez, who draws the ire of her father. Seeking mainstream stardom, Selena begins recording an English-language album which, tragically, she would never complete.", "text_for_embedding": "Selena (1997). Genres: Drama. In this biographical drama, Selena Quintanilla is born into a musical Mexican-American family in Texas. Her father, Abraham, realizes that his young daughter is talented and begins performing with her at small venues. She finds success and falls for her guitarist, Chris Perez, who draws the ire of her father. Seeking mainstream stardom, Selena begins recording an English-language album which, tragically, she would never complete.. Tags: musical, tejano, elopement, bustier, fan club"} +{"id": "40264", "title": "Vampires Suck", "year": 2010, "duration_min": 82, "rating": 4.2, "genres": "Horror, Comedy", "genres_pipe": "|Horror|Comedy|", "keywords": "vampire, high school, prom, spoof, horror spoof, teenager, duringcreditsstinger", "tags_pipe": "|vampire|high school|prom|spoof|horror spoof|teenager|duringcreditsstinger|", "overview": "Becca, an anxious, non-vampire teen is torn between two boys. Before she can choose, Becca must get around her controlling father, who embarrasses Becca by treating her like a child. Meanwhile, Becca's friends contend with their own romantic issues - all of which collide at the prom.", "text_for_embedding": "Vampires Suck (2010). Genres: Horror, Comedy. Becca, an anxious, non-vampire teen is torn between two boys. Before she can choose, Becca must get around her controlling father, who embarrasses Becca by treating her like a child. Meanwhile, Becca's friends contend with their own romantic issues - all of which collide at the prom.. Tags: vampire, high school, prom, spoof, horror spoof, teenager, duringcreditsstinger"} +{"id": "1164", "title": "Babel", "year": 2006, "duration_min": 143, "rating": 6.9, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "terror, loss of mother, gun, morocco, deaf-mute, san diego, ecstasy, illegal immigration, first time, nanny, daughter, bullet wound, ensemble cast", "tags_pipe": "|terror|loss of mother|gun|morocco|deaf-mute|san diego|ecstasy|illegal immigration|first time|nanny|daughter|bullet wound|ensemble cast|", "overview": "Tragedy strikes a married couple on vacation in the Moroccan desert, touching off an interlocking story involving four different families.", "text_for_embedding": "Babel (2006). Genres: Drama. Tragedy strikes a married couple on vacation in the Moroccan desert, touching off an interlocking story involving four different families.. Tags: terror, loss of mother, gun, morocco, deaf-mute, san diego, ecstasy, illegal immigration, first time, nanny, daughter, bullet wound, ensemble cast"} +{"id": "239678", "title": "This Is Where I Leave You", "year": 2014, "duration_min": 103, "rating": 6.5, "genres": "Drama, Comedy", "genres_pipe": "|Drama|Comedy|", "keywords": "based on novel, funeral, dysfunctional family, death of father, man child, family, mourning, grieving", "tags_pipe": "|based on novel|funeral|dysfunctional family|death of father|man child|family|mourning|grieving|", "overview": "When their father passes away, four grown, world-weary siblings return to their childhood home and are requested -- with an admonition -- to stay there together for a week, along with their free-speaking mother and a collection of spouses, exes and might-have-beens. As the brothers and sisters re-examine their shared history and the status of each tattered relationship among those who know and love them best, they reconnect in hysterically funny and emotionally significant ways.", "text_for_embedding": "This Is Where I Leave You (2014). Genres: Drama, Comedy. When their father passes away, four grown, world-weary siblings return to their childhood home and are requested -- with an admonition -- to stay there together for a week, along with their free-speaking mother and a collection of spouses, exes and might-have-beens. As the brothers and sisters re-examine their shared history and the status of each tattered relationship among those who know and love them best, they reconnect in hysterically funny and emotionally significant ways.. Tags: based on novel, funeral, dysfunctional family, death of father, man child, family, mourning, grieving"} +{"id": "14359", "title": "Doubt", "year": 2008, "duration_min": 104, "rating": 7.0, "genres": "Drama, Mystery", "genres_pipe": "|Drama|Mystery|", "keywords": "sexual abuse, boy, wine, gift, janitor, singing, pedophile, gossip, compassion, tolerance, 1960s", "tags_pipe": "|sexual abuse|boy|wine|gift|janitor|singing|pedophile|gossip|compassion|tolerance|1960s|", "overview": "In 1964, a Catholic school nun questions a priest's ambiguous relationship with a troubled young student, suspecting him of abuse. He denies the charges, and much of the film's quick-fire dialogue tackles themes of religion, morality, and authority.", "text_for_embedding": "Doubt (2008). Genres: Drama, Mystery. In 1964, a Catholic school nun questions a priest's ambiguous relationship with a troubled young student, suspecting him of abuse. He denies the charges, and much of the film's quick-fire dialogue tackles themes of religion, morality, and authority.. Tags: sexual abuse, boy, wine, gift, janitor, singing, pedophile, gossip, compassion, tolerance, 1960s"} +{"id": "3989", "title": "Team America: World Police", "year": 2004, "duration_min": 98, "rating": 6.6, "genres": "Music, Adventure, Animation, Action, Comedy", "genres_pipe": "|Music|Adventure|Animation|Action|Comedy|", "keywords": "paris, france, cairo, capitalism, loss of lover, egypt, war against terror, shotgun, patriotism, pentagon, american dream, destroy, shipwreck, louvre, american way of life", "tags_pipe": "|paris|france|cairo|capitalism|loss of lover|egypt|war against terror|shotgun|patriotism|pentagon|american dream|destroy|shipwreck|louvre|american way of life|", "overview": "Team America World Police follows an international police force dedicated to maintaining global stability. Learning that dictator Kim Jong il is out to destroy the world, the team recruits Broadway star Gary Johnston to go undercover. With the help of Team America, Gary manages to uncover the plan to destroy the world. Will Team America be able to save it in time? It stars… Samuel L Jackson, Tim Robbins, Sean Penn, Michael Moore, Helen Hunt, Matt Damon, Susan Sarandon, George Clooney, Danny Glover, Ethan Hawke, Alec Baldwin… or does it?", "text_for_embedding": "Team America: World Police (2004). Genres: Music, Adventure, Animation, Action, Comedy. Team America World Police follows an international police force dedicated to maintaining global stability. Learning that dictator Kim Jong il is out to destroy the world, the team recruits Broadway star Gary Johnston to go undercover. With the help of Team America, Gary manages to uncover the plan to destroy the world. Will Team America be able to save it in time? It stars… Samuel L Jackson, Tim Robbins, Sean Penn, Michael Moore, Helen Hunt, Matt Damon, Susan Sarandon, George Clooney, Danny Glover, Ethan Hawke, Alec Baldwin… or does it?. Tags: paris, france, cairo, capitalism, loss of lover, egypt, war against terror, shotgun, patriotism, pentagon, american dream, destroy, shipwreck, louvre, american way of life"} +{"id": "76617", "title": "Texas Chainsaw 3D", "year": 2013, "duration_min": 92, "rating": 5.3, "genres": "Horror, Thriller", "genres_pipe": "|Horror|Thriller|", "keywords": "sequel, gore, leatherface, slasher, chainsaw, aftercreditsstinger, duringcreditsstinger", "tags_pipe": "|sequel|gore|leatherface|slasher|chainsaw|aftercreditsstinger|duringcreditsstinger|", "overview": "A young woman learns that she has inherited a Texas estate from her deceased grandmother. After embarking on a road trip with friends to uncover her roots, she finds she is the sole owner of a lavish, isolated Victorian mansion. But her newfound wealth comes at a price as she stumbles upon a horror that awaits her in the mansion’s dank cellars.", "text_for_embedding": "Texas Chainsaw 3D (2013). Genres: Horror, Thriller. A young woman learns that she has inherited a Texas estate from her deceased grandmother. After embarking on a road trip with friends to uncover her roots, she finds she is the sole owner of a lavish, isolated Victorian mansion. But her newfound wealth comes at a price as she stumbles upon a horror that awaits her in the mansion’s dank cellars.. Tags: sequel, gore, leatherface, slasher, chainsaw, aftercreditsstinger, duringcreditsstinger"} +{"id": "1710", "title": "Copycat", "year": 1995, "duration_min": 124, "rating": 6.4, "genres": "Drama, Thriller", "genres_pipe": "|Drama|Thriller|", "keywords": "police brutality, psychology, police operation, police protection, serial killer, psychologist, cowardliness", "tags_pipe": "|police brutality|psychology|police operation|police protection|serial killer|psychologist|cowardliness|", "overview": "An agoraphobic psychologist and a female detective must work together to take down a serial killer who copies serial killers from the past.", "text_for_embedding": "Copycat (1995). Genres: Drama, Thriller. An agoraphobic psychologist and a female detective must work together to take down a serial killer who copies serial killers from the past.. Tags: police brutality, psychology, police operation, police protection, serial killer, psychologist, cowardliness"} +{"id": "4258", "title": "Scary Movie 5", "year": 2013, "duration_min": 86, "rating": 4.6, "genres": "Comedy", "genres_pipe": "|Comedy|", "keywords": "sequel, parody, spoof, aftercreditsstinger, duringcreditsstinger", "tags_pipe": "|sequel|parody|spoof|aftercreditsstinger|duringcreditsstinger|", "overview": "Home with their newly-formed family, happy parents Dan and Jody are haunted by sinister, paranormal activities. Determined to expel the insidious force, they install security cameras and discover their family is being stalked by an evil dead demon.", "text_for_embedding": "Scary Movie 5 (2013). Genres: Comedy. Home with their newly-formed family, happy parents Dan and Jody are haunted by sinister, paranormal activities. Determined to expel the insidious force, they install security cameras and discover their family is being stalked by an evil dead demon.. Tags: sequel, parody, spoof, aftercreditsstinger, duringcreditsstinger"} +{"id": "20391", "title": "Paint Your Wagon", "year": 1969, "duration_min": 158, "rating": 6.2, "genres": "Drama, Action, Comedy, Western, Music", "genres_pipe": "|Drama|Action|Comedy|Western|Music|", "keywords": "mining, prospector", "tags_pipe": "|mining|prospector|", "overview": "A Michigan farmer and a prospector form a partnership in the California gold country. Their adventures include buying and sharing a wife, hijacking a stage, kidnapping six prostitutes, and turning their mining camp into a boom town. Along the way there is plenty of drinking, gambling, and singing. They even find time to do some creative gold mining.", "text_for_embedding": "Paint Your Wagon (1969). Genres: Drama, Action, Comedy, Western, Music. A Michigan farmer and a prospector form a partnership in the California gold country. Their adventures include buying and sharing a wife, hijacking a stage, kidnapping six prostitutes, and turning their mining camp into a boom town. Along the way there is plenty of drinking, gambling, and singing. They even find time to do some creative gold mining.. Tags: mining, prospector"} +{"id": "10139", "title": "Milk", "year": 2008, "duration_min": 128, "rating": 7.1, "genres": "History, Drama", "genres_pipe": "|History|Drama|", "keywords": "gay, san francisco, homophobia, mayor, biography, politics, politician, election campaign, homosexuality, morality, election, candlelight vigil, mayoral campaign", "tags_pipe": "|gay|san francisco|homophobia|mayor|biography|politics|politician|election campaign|homosexuality|morality|election|candlelight vigil|mayoral campaign|", "overview": "The story of California's first openly gay elected official, Harvey Milk, who became an outspoken agent for change, seeking equal rights and opportunities for all. His great love for the city and its people brought him backing from young and old, straight and gay, alike – at a time when prejudice and violence against gays was openly accepted as the norm.", "text_for_embedding": "Milk (2008). Genres: History, Drama. The story of California's first openly gay elected official, Harvey Milk, who became an outspoken agent for change, seeking equal rights and opportunities for all. His great love for the city and its people brought him backing from young and old, straight and gay, alike – at a time when prejudice and violence against gays was openly accepted as the norm.. Tags: gay, san francisco, homophobia, mayor, biography, politics, politician, election campaign, homosexuality, morality, election, candlelight vigil, mayoral campaign"} +{"id": "335778", "title": "Risen", "year": 2016, "duration_min": 107, "rating": 5.7, "genres": "Action", "genres_pipe": "|Action|", "keywords": "christianity, jesus christ, apostle, crucifixion, jerusalem, ancient rome, faith, resurrection, dead body, judaism, religious, tomb", "tags_pipe": "|christianity|jesus christ|apostle|crucifixion|jerusalem|ancient rome|faith|resurrection|dead body|judaism|religious|tomb|", "overview": "Follows the epic Biblical story of the Resurrection, as told through the eyes of a non-believer. Clavius, a powerful Roman Military Tribune, and his aide Lucius, are tasked with solving the mystery of what happened to Jesus in the weeks following the crucifixion, in order to disprove the rumors of a risen Messiah and prevent an uprising in Jerusalem.", "text_for_embedding": "Risen (2016). Genres: Action. Follows the epic Biblical story of the Resurrection, as told through the eyes of a non-believer. Clavius, a powerful Roman Military Tribune, and his aide Lucius, are tasked with solving the mystery of what happened to Jesus in the weeks following the crucifixion, in order to disprove the rumors of a risen Messiah and prevent an uprising in Jerusalem.. Tags: christianity, jesus christ, apostle, crucifixion, jerusalem, ancient rome, faith, resurrection, dead body, judaism, religious, tomb"} +{"id": "9645", "title": "Ghost Ship", "year": 2002, "duration_min": 91, "rating": 5.3, "genres": "Horror, Mystery, Thriller", "genres_pipe": "|Horror|Mystery|Thriller|", "keywords": "cruise, pilot, ghost ship", "tags_pipe": "|cruise|pilot|ghost ship|", "overview": "After discovering a passenger ship missing since 1962 floating adrift on the Bering Sea, salvagers claim the vessel as their own. Once they begin towing the ghost ship towards harbor, a series of bizarre occurrences happen and the group becomes trapped inside the ship, which they soon learn is inhabited by a demonic creature.", "text_for_embedding": "Ghost Ship (2002). Genres: Horror, Mystery, Thriller. After discovering a passenger ship missing since 1962 floating adrift on the Bering Sea, salvagers claim the vessel as their own. Once they begin towing the ghost ship towards harbor, a series of bizarre occurrences happen and the group becomes trapped inside the ship, which they soon learn is inhabited by a demonic creature.. Tags: cruise, pilot, ghost ship"} +{"id": "55465", "title": "A Very Harold & Kumar Christmas", "year": 2011, "duration_min": 108, "rating": 6.0, "genres": "Comedy", "genres_pipe": "|Comedy|", "keywords": "holiday, indian lead, beer, christmas tree, cannabis, sequel, vulgarity, drug, asian, 3d, beer pong", "tags_pipe": "|holiday|indian lead|beer|christmas tree|cannabis|sequel|vulgarity|drug|asian|3d|beer pong|", "overview": "Six years have elapsed since Guantanamo Bay, leaving Harold and Kumar estranged from one another with very different families, friends and lives. But when Kumar arrives on Harold's doorstep during the holiday season with a mysterious package in hand, he inadvertently burns down Harold's father-in-law's beloved Christmas tree. To fix the problem, Harold and Kumar embark on a mission through New York City to find the perfect Christmas tree, once again stumbling into trouble at every single turn.", "text_for_embedding": "A Very Harold & Kumar Christmas (2011). Genres: Comedy. Six years have elapsed since Guantanamo Bay, leaving Harold and Kumar estranged from one another with very different families, friends and lives. But when Kumar arrives on Harold's doorstep during the holiday season with a mysterious package in hand, he inadvertently burns down Harold's father-in-law's beloved Christmas tree. To fix the problem, Harold and Kumar embark on a mission through New York City to find the perfect Christmas tree, once again stumbling into trouble at every single turn.. Tags: holiday, indian lead, beer, christmas tree, cannabis, sequel, vulgarity, drug, asian, 3d, beer pong"} +{"id": "617", "title": "Wild Things", "year": 1998, "duration_min": 108, "rating": 6.3, "genres": "Crime, Drama, Mystery", "genres_pipe": "|Crime|Drama|Mystery|", "keywords": "upper class, poison, sailboat, rape, sexual abuse, florida, eroticism, blackmail, lolita, cheerleader, court case, planned murder, sailing, pretended murder, seduction", "tags_pipe": "|upper class|poison|sailboat|rape|sexual abuse|florida|eroticism|blackmail|lolita|cheerleader|court case|planned murder|sailing|pretended murder|seduction|", "overview": "When teen-socialite Kelly Van Ryan (Richards) and troubled bad girl Suzie Toller (Campbell) accuse guidance counselor Sam Lombardo (Dillon) of rape, he's suspended by the school, rejected by the town, and fighting to get his life back. One cop (Bacon) suspects conspiracy, but nothing is what it seems...", "text_for_embedding": "Wild Things (1998). Genres: Crime, Drama, Mystery. When teen-socialite Kelly Van Ryan (Richards) and troubled bad girl Suzie Toller (Campbell) accuse guidance counselor Sam Lombardo (Dillon) of rape, he's suspended by the school, rejected by the town, and fighting to get his life back. One cop (Bacon) suspects conspiracy, but nothing is what it seems.... Tags: upper class, poison, sailboat, rape, sexual abuse, florida, eroticism, blackmail, lolita, cheerleader, court case, planned murder, sailing, pretended murder, seduction"} +{"id": "19904", "title": "The Stepfather", "year": 2009, "duration_min": 101, "rating": 5.4, "genres": "Horror, Thriller, Mystery", "genres_pipe": "|Horror|Thriller|Mystery|", "keywords": "step father, remake", "tags_pipe": "|step father|remake|", "overview": "Michael Harding (Penn Badgley) returns home from military school to find his mother (Sela Ward) happily in love and living with her new boyfriend, David (Dylan Walsh). As the two men get to know each other, Michael becomes more and more suspicious of the man who is always there with a helpful hand. Is he really the man of her dreams or could David be hiding a dark side?", "text_for_embedding": "The Stepfather (2009). Genres: Horror, Thriller, Mystery. Michael Harding (Penn Badgley) returns home from military school to find his mother (Sela Ward) happily in love and living with her new boyfriend, David (Dylan Walsh). As the two men get to know each other, Michael becomes more and more suspicious of the man who is always there with a helpful hand. Is he really the man of her dreams or could David be hiding a dark side?. Tags: step father, remake"} +{"id": "48289", "title": "The Debt", "year": 2010, "duration_min": 113, "rating": 6.3, "genres": "Drama, Thriller", "genres_pipe": "|Drama|Thriller|", "keywords": "beach, mossad, secret agent, insane asylum, lye, syringe, lost of friend", "tags_pipe": "|beach|mossad|secret agent|insane asylum|lye|syringe|lost of friend|", "overview": "Rachel Singer is a former Mossad agent who tried to capture a notorious Nazi war criminal – the Surgeon of Birkenau – in a secret Israeli mission that ended with his death on the streets of East Berlin. Now, 30 years later, a man claiming to be the doctor has surfaced, and Rachel must return to Eastern Europe to uncover the truth. Overwhelmed by haunting memories of her younger self and her two fellow agents, the still-celebrated heroine must relive the trauma of those events and confront the debt she has incurred.", "text_for_embedding": "The Debt (2010). Genres: Drama, Thriller. Rachel Singer is a former Mossad agent who tried to capture a notorious Nazi war criminal – the Surgeon of Birkenau – in a secret Israeli mission that ended with his death on the streets of East Berlin. Now, 30 years later, a man claiming to be the doctor has surfaced, and Rachel must return to Eastern Europe to uncover the truth. Overwhelmed by haunting memories of her younger self and her two fellow agents, the still-celebrated heroine must relive the trauma of those events and confront the debt she has incurred.. Tags: beach, mossad, secret agent, insane asylum, lye, syringe, lost of friend"} +{"id": "243", "title": "High Fidelity", "year": 2000, "duration_min": 113, "rating": 7.0, "genres": "Comedy, Drama, Romance, Music", "genres_pipe": "|Comedy|Drama|Romance|Music|", "keywords": "chicago, music record, rock and roll, record store, soul, disc jockey, pop, bruce frederick joseph springsteen, record collection", "tags_pipe": "|chicago|music record|rock and roll|record store|soul|disc jockey|pop|bruce frederick joseph springsteen|record collection|", "overview": "When record store owner Rob Gordon gets dumped by his girlfriend, Laura, because he hasn't changed since they met, he revisits his top five breakups of all time in an attempt to figure out what went wrong. As Rob seeks out his former lovers to find out why they left, he keeps up his efforts to win Laura back.", "text_for_embedding": "High Fidelity (2000). Genres: Comedy, Drama, Romance, Music. When record store owner Rob Gordon gets dumped by his girlfriend, Laura, because he hasn't changed since they met, he revisits his top five breakups of all time in an attempt to figure out what went wrong. As Rob seeks out his former lovers to find out why they left, he keeps up his efforts to win Laura back.. Tags: chicago, music record, rock and roll, record store, soul, disc jockey, pop, bruce frederick joseph springsteen, record collection"} +{"id": "6933", "title": "One Missed Call", "year": 2008, "duration_min": 87, "rating": 4.7, "genres": "Horror, Mystery, Thriller", "genres_pipe": "|Horror|Mystery|Thriller|", "keywords": "candy, loss of sister, mobile phone, answering machine, dying and death, victim, death of a friend, sms, asthma, friendship, police, delusion, remake, cowardliness, train", "tags_pipe": "|candy|loss of sister|mobile phone|answering machine|dying and death|victim|death of a friend|sms|asthma|friendship|police|delusion|remake|cowardliness|train|", "overview": "Several people start receiving voice-mails from their future selves -- messages which include the date, time, and some of the details of their deaths.", "text_for_embedding": "One Missed Call (2008). Genres: Horror, Mystery, Thriller. Several people start receiving voice-mails from their future selves -- messages which include the date, time, and some of the details of their deaths.. Tags: candy, loss of sister, mobile phone, answering machine, dying and death, victim, death of a friend, sms, asthma, friendship, police, delusion, remake, cowardliness, train"} +{"id": "17182", "title": "Eye for an Eye", "year": 1996, "duration_min": 101, "rating": 5.8, "genres": "Drama, Thriller", "genres_pipe": "|Drama|Thriller|", "keywords": "rape, gun, self-defense, grieving parents", "tags_pipe": "|rape|gun|self-defense|grieving parents|", "overview": "It's fire and brimstone time as grieving mother Karen McCann takes justice into her own hands when a kangaroo court in Los Angeles fails to convict Robert Doob, the monster who raped and murdered her 17-year-old daughter.", "text_for_embedding": "Eye for an Eye (1996). Genres: Drama, Thriller. It's fire and brimstone time as grieving mother Karen McCann takes justice into her own hands when a kangaroo court in Los Angeles fails to convict Robert Doob, the monster who raped and murdered her 17-year-old daughter.. Tags: rape, gun, self-defense, grieving parents"} +{"id": "8848", "title": "The Bank Job", "year": 2008, "duration_min": 112, "rating": 6.6, "genres": "Thriller, Crime, Drama", "genres_pipe": "|Thriller|Crime|Drama|", "keywords": "infidelity, subway, car dealer, vault, mannequin, bahamas, strip club, wife, offer, photography, london underground, based on true story, extortion, double cross, walkie talkie", "tags_pipe": "|infidelity|subway|car dealer|vault|mannequin|bahamas|strip club|wife|offer|photography|london underground|based on true story|extortion|double cross|walkie talkie|", "overview": "Terry is a small-time car dealer trying to leave his shady past behind and start a family. Martine is a beautiful model from Terry's old neighbourhood who knows that Terry is no angel. When Martine proposes a foolproof plan to rob a bank, Terry recognises the danger but realises this may be the opportunity of a lifetime. As the resourceful band of thieves burrows its way into a safe-deposit vault at a Lloyds Bank, they quickly realise that, besides millions in riches, the boxes also contain secrets that implicate everyone from London's most notorious underworld gangsters to powerful government figures, and even the Royal Family. Although the heist makes headlines throughout Britain for several days, a government gag order eventually brings all reporting of the case to an immediate halt.", "text_for_embedding": "The Bank Job (2008). Genres: Thriller, Crime, Drama. Terry is a small-time car dealer trying to leave his shady past behind and start a family. Martine is a beautiful model from Terry's old neighbourhood who knows that Terry is no angel. When Martine proposes a foolproof plan to rob a bank, Terry recognises the danger but realises this may be the opportunity of a lifetime. As the resourceful band of thieves burrows its way into a safe-deposit vault at a Lloyds Bank, they quickly realise that, besides millions in riches, the boxes also contain secrets that implicate everyone from London's most notorious underworld gangsters to powerful government figures, and even the Royal Family. Although the heist makes headlines throughout Britain for several days, a government gag order eventually brings all reporting of the case to an immediate halt.. Tags: infidelity, subway, car dealer, vault, mannequin, bahamas, strip club, wife, offer, photography, london underground, based on true story, extortion, double cross, walkie talkie"} +{"id": "38", "title": "Eternal Sunshine of the Spotless Mind", "year": 2004, "duration_min": 108, "rating": 7.9, "genres": "Science Fiction, Drama, Romance", "genres_pipe": "|Science Fiction|Drama|Romance|", "keywords": "deja vu, regret, jealousy, amnesia, dream, operation, relationship problems, love, memory, brainwashing, relationship, heartbreak, nonlinear timeline, love story, bittersweet", "tags_pipe": "|deja vu|regret|jealousy|amnesia|dream|operation|relationship problems|love|memory|brainwashing|relationship|heartbreak|nonlinear timeline|love story|bittersweet|", "overview": "Joel Barish, heartbroken that his girlfriend underwent a procedure to erase him from her memory, decides to do the same. However, as he watches his memories of her fade away, he realises that he still loves her, and may be too late to correct his mistake.", "text_for_embedding": "Eternal Sunshine of the Spotless Mind (2004). Genres: Science Fiction, Drama, Romance. Joel Barish, heartbroken that his girlfriend underwent a procedure to erase him from her memory, decides to do the same. However, as he watches his memories of her fade away, he realises that he still loves her, and may be too late to correct his mistake.. Tags: deja vu, regret, jealousy, amnesia, dream, operation, relationship problems, love, memory, brainwashing, relationship, heartbreak, nonlinear timeline, love story, bittersweet"} +{"id": "38303", "title": "You Again", "year": 2010, "duration_min": 105, "rating": 6.0, "genres": "Comedy, Romance", "genres_pipe": "|Comedy|Romance|", "keywords": "brother sister relationship, marriage, bully, duringcreditsstinger", "tags_pipe": "|brother sister relationship|marriage|bully|duringcreditsstinger|", "overview": "History -- make that high school -- may repeat itself when Marni learns that Joanna, the mean girl from her past, is set to be her sister-in-law. Before the wedding bells toll, Marni must show her brother that a tiger doesn't change its stripes. On Marni's side is her mother, while Joanna's backed by her wealthy aunt.", "text_for_embedding": "You Again (2010). Genres: Comedy, Romance. History -- make that high school -- may repeat itself when Marni learns that Joanna, the mean girl from her past, is set to be her sister-in-law. Before the wedding bells toll, Marni must show her brother that a tiger doesn't change its stripes. On Marni's side is her mother, while Joanna's backed by her wealthy aunt.. Tags: brother sister relationship, marriage, bully, duringcreditsstinger"} +{"id": "1266", "title": "Street Kings", "year": 2008, "duration_min": 109, "rating": 6.3, "genres": "Action, Crime, Drama, Thriller", "genres_pipe": "|Action|Crime|Drama|Thriller|", "keywords": "police, los angeles", "tags_pipe": "|police|los angeles|", "overview": "Tom Ludlow is a disillusioned L.A. Police Officer, rarely playing by the rules and haunted by the death of his wife. When evidence implicates him in the execution of a fellow officer, he is forced to go up against the cop culture he's been a part of his entire career, ultimately leading him to question the loyalties of everyone around him.", "text_for_embedding": "Street Kings (2008). Genres: Action, Crime, Drama, Thriller. Tom Ludlow is a disillusioned L.A. Police Officer, rarely playing by the rules and haunted by the death of his wife. When evidence implicates him in the execution of a fellow officer, he is forced to go up against the cop culture he's been a part of his entire career, ultimately leading him to question the loyalties of everyone around him.. Tags: police, los angeles"} +{"id": "107985", "title": "The World's End", "year": 2013, "duration_min": 109, "rating": 6.7, "genres": "Comedy, Action, Science Fiction", "genres_pipe": "|Comedy|Action|Science Fiction|", "keywords": "end of the world, apocalypse, trilogy, homage", "tags_pipe": "|end of the world|apocalypse|trilogy|homage|", "overview": "Five friends who reunite in an attempt to top their epic pub crawl from 20 years earlier unwittingly become humankind's only hope for survival.", "text_for_embedding": "The World's End (2013). Genres: Comedy, Action, Science Fiction. Five friends who reunite in an attempt to top their epic pub crawl from 20 years earlier unwittingly become humankind's only hope for survival.. Tags: end of the world, apocalypse, trilogy, homage"} +{"id": "14043", "title": "Nancy Drew", "year": 2007, "duration_min": 99, "rating": 5.8, "genres": "Action, Adventure, Crime, Family, Mystery, Thriller", "genres_pipe": "|Action|Adventure|Crime|Family|Mystery|Thriller|", "keywords": "california, detective, based on novel, dream, kidnapping, chase, party, murder, rescue, escape, hollywood, teenager, explosion, surveillance, flashback", "tags_pipe": "|california|detective|based on novel|dream|kidnapping|chase|party|murder|rescue|escape|hollywood|teenager|explosion|surveillance|flashback|", "overview": "Intrepid teenage private eye Nancy Drew heads to Tinseltown with her father to investigate the unsolved murder of a movie star in this old-fashioned whodunit based on Carolyn Keene's popular series of books for young adults. But can the small-town girl cut through the Hollywood hype to solve the case?", "text_for_embedding": "Nancy Drew (2007). Genres: Action, Adventure, Crime, Family, Mystery, Thriller. Intrepid teenage private eye Nancy Drew heads to Tinseltown with her father to investigate the unsolved murder of a movie star in this old-fashioned whodunit based on Carolyn Keene's popular series of books for young adults. But can the small-town girl cut through the Hollywood hype to solve the case?. Tags: california, detective, based on novel, dream, kidnapping, chase, party, murder, rescue, escape, hollywood, teenager, explosion, surveillance, flashback"} +{"id": "19901", "title": "Daybreakers", "year": 2009, "duration_min": 98, "rating": 6.0, "genres": "Fantasy, Horror, Action, Thriller, Science Fiction", "genres_pipe": "|Fantasy|Horror|Action|Thriller|Science Fiction|", "keywords": "female nudity, sunrise, waitress, experiment, rain, sunlight, vampire, dystopia, beautiful woman, slow motion scene, undead, decapitation, scientist, epidemic, night creatures", "tags_pipe": "|female nudity|sunrise|waitress|experiment|rain|sunlight|vampire|dystopia|beautiful woman|slow motion scene|undead|decapitation|scientist|epidemic|night creatures|", "overview": "In the year 2019, a plague has transformed almost every human into vampires. Faced with a dwindling blood supply, the fractured dominant race plots their survival; meanwhile, a researcher works with a covert band of vampires on a way to save humankind.", "text_for_embedding": "Daybreakers (2009). Genres: Fantasy, Horror, Action, Thriller, Science Fiction. In the year 2019, a plague has transformed almost every human into vampires. Faced with a dwindling blood supply, the fractured dominant race plots their survival; meanwhile, a researcher works with a covert band of vampires on a way to save humankind.. Tags: female nudity, sunrise, waitress, experiment, rain, sunlight, vampire, dystopia, beautiful woman, slow motion scene, undead, decapitation, scientist, epidemic, night creatures"} +{"id": "34016", "title": "She's Out of My League", "year": 2010, "duration_min": 104, "rating": 5.9, "genres": "Comedy, Romance", "genres_pipe": "|Comedy|Romance|", "keywords": "confidence, romantic comedy, dating, insecurity, airport security, unlikely lovers, twenty something, duringcreditsstinger", "tags_pipe": "|confidence|romantic comedy|dating|insecurity|airport security|unlikely lovers|twenty something|duringcreditsstinger|", "overview": "When he starts dating drop-dead gorgeous Molly, insecure airport security agent Kirk can't believe it. As his friends and family share their doubts about the relationship lasting, Kirk does everything he can to avoid losing Molly forever.", "text_for_embedding": "She's Out of My League (2010). Genres: Comedy, Romance. When he starts dating drop-dead gorgeous Molly, insecure airport security agent Kirk can't believe it. As his friends and family share their doubts about the relationship lasting, Kirk does everything he can to avoid losing Molly forever.. Tags: confidence, romantic comedy, dating, insecurity, airport security, unlikely lovers, twenty something, duringcreditsstinger"} +{"id": "59860", "title": "Monte Carlo", "year": 2011, "duration_min": 109, "rating": 6.0, "genres": "Adventure, Comedy, Romance", "genres_pipe": "|Adventure|Comedy|Romance|", "keywords": "monte carlo, mistaken identity, look-alike, young woman, texan, american abroad", "tags_pipe": "|monte carlo|mistaken identity|look-alike|young woman|texan|american abroad|", "overview": "Three young women vacationing in Paris find themselves whisked away to Monte Carlo after one of the girls is mistaken for a British heiress.", "text_for_embedding": "Monte Carlo (2011). Genres: Adventure, Comedy, Romance. Three young women vacationing in Paris find themselves whisked away to Monte Carlo after one of the girls is mistaken for a British heiress.. Tags: monte carlo, mistaken identity, look-alike, young woman, texan, american abroad"} +{"id": "10069", "title": "Stay Alive", "year": 2006, "duration_min": 100, "rating": 5.3, "genres": "Horror, Thriller", "genres_pipe": "|Horror|Thriller|", "keywords": "video game, hacker, virtual reality, virtual fight, baroness", "tags_pipe": "|video game|hacker|virtual reality|virtual fight|baroness|", "overview": "After the mysterious, brutal death of an old friend, a group of teenagers find themselves in possession of \"Stay Alive,\" an ultra-realistic 3-D videogame based on the spine-chilling true story of a 17th century noblewoman, known as \"The Blood Countess.\" The gamers don't know anything about the game other than they're not supposed to have it... and they're dying to play it. Not able to resist temptation, the kids begin to play the grisly game but soon make a chilling connection -- they are each being murdered one-by-one in the same way as the characters they played in the game. As the line between the game world and the real world disappears, the teens must find a way to defeat the vicious and merciless Blood Countess, all the while trying to... stay alive.", "text_for_embedding": "Stay Alive (2006). Genres: Horror, Thriller. After the mysterious, brutal death of an old friend, a group of teenagers find themselves in possession of \"Stay Alive,\" an ultra-realistic 3-D videogame based on the spine-chilling true story of a 17th century noblewoman, known as \"The Blood Countess.\" The gamers don't know anything about the game other than they're not supposed to have it... and they're dying to play it. Not able to resist temptation, the kids begin to play the grisly game but soon make a chilling connection -- they are each being murdered one-by-one in the same way as the characters they played in the game. As the line between the game world and the real world disappears, the teens must find a way to defeat the vicious and merciless Blood Countess, all the while trying to... stay alive.. Tags: video game, hacker, virtual reality, virtual fight, baroness"} +{"id": "9588", "title": "Quigley Down Under", "year": 1990, "duration_min": 119, "rating": 6.5, "genres": "Romance, Action, Adventure, Western, Drama", "genres_pipe": "|Romance|Action|Adventure|Western|Drama|", "keywords": "australian, chase", "tags_pipe": "|australian|chase|", "overview": "American Matt Quigley answers Australian land baron Elliott Marston's ad for a sharpshooter to kill the dingoes on his property. But when Quigley finds out that Marston's real target is the aborigines, Quigley hits the road. Now, even American expatriate Crazy Cora can't keep Quigley safe in his cat-and-mouse game with the homicidal Marston.", "text_for_embedding": "Quigley Down Under (1990). Genres: Romance, Action, Adventure, Western, Drama. American Matt Quigley answers Australian land baron Elliott Marston's ad for a sharpshooter to kill the dingoes on his property. But when Quigley finds out that Marston's real target is the aborigines, Quigley hits the road. Now, even American expatriate Crazy Cora can't keep Quigley safe in his cat-and-mouse game with the homicidal Marston.. Tags: australian, chase"} +{"id": "12819", "title": "Alpha and Omega", "year": 2010, "duration_min": 88, "rating": 5.3, "genres": "Family, Animation", "genres_pipe": "|Family|Animation|", "keywords": "wolf, arranged marriage, forbidden love, road trip, park, park ranger, howling, social status", "tags_pipe": "|wolf|arranged marriage|forbidden love|road trip|park|park ranger|howling|social status|", "overview": "Two mismatched wolves embark on a cross-country quest to get back home and restore peace in their pack after being relocated thousands of miles away by well-meaning park rangers. Quick-witted Humphrey (voice of Justin Long) likes to frolic with friends and play video games with squirrels; disciplined Kate (voice of Hayden Panettiere) likes to call the shots and hunt caribou. Normally, an omega wolf like Humphrey would never stand a chance with an alpha wolf like Kate, but when they're both transported halfway across the country they must work together to get back to their natural habitat. And it won't be easy either, because the one thing Humphrey and Kate can agree on is that they don't have anything in common. Perhaps by working together toward a common goal, however, the two contentious traveling companions will finally realize that even lone wolves can use a helping paw every once in a while.", "text_for_embedding": "Alpha and Omega (2010). Genres: Family, Animation. Two mismatched wolves embark on a cross-country quest to get back home and restore peace in their pack after being relocated thousands of miles away by well-meaning park rangers. Quick-witted Humphrey (voice of Justin Long) likes to frolic with friends and play video games with squirrels; disciplined Kate (voice of Hayden Panettiere) likes to call the shots and hunt caribou. Normally, an omega wolf like Humphrey would never stand a chance with an alpha wolf like Kate, but when they're both transported halfway across the country they must work together to get back to their natural habitat. And it won't be easy either, because the one thing Humphrey and Kate can agree on is that they don't have anything in common. Perhaps by working together toward a common goal, however, the two contentious traveling companions will finally realize that even lone wolves can use a helping paw every once in a while.. Tags: wolf, arranged marriage, forbidden love, road trip, park, park ranger, howling, social status"} +{"id": "9954", "title": "The Covenant", "year": 2006, "duration_min": 97, "rating": 5.2, "genres": "Action, Adventure, Fantasy, Horror, Science Fiction, Thriller", "genres_pipe": "|Action|Adventure|Fantasy|Horror|Science Fiction|Thriller|", "keywords": "magic, male friendship, college, supernatural powers, teenager", "tags_pipe": "|magic|male friendship|college|supernatural powers|teenager|", "overview": "Four young men who belong to a supernatural legacy are forced to battle a fifth power long thought to have died out. Another great force they must contend with is the jealousy and suspicion that threatens to tear them apart.", "text_for_embedding": "The Covenant (2006). Genres: Action, Adventure, Fantasy, Horror, Science Fiction, Thriller. Four young men who belong to a supernatural legacy are forced to battle a fifth power long thought to have died out. Another great force they must contend with is the jealousy and suspicion that threatens to tear them apart.. Tags: magic, male friendship, college, supernatural powers, teenager"} +{"id": "10115", "title": "Stick It", "year": 2006, "duration_min": 105, "rating": 6.3, "genres": "Comedy, Drama", "genres_pipe": "|Comedy|Drama|", "keywords": "gymnastics, trainer, puberty, training, sport, teenager, woman director", "tags_pipe": "|gymnastics|trainer|puberty|training|sport|teenager|woman director|", "overview": "Haley is a naturally gifted athlete but, with her social behavior, the teen seems intent on squandering her abilities. After a final brush with the law, a judge sentences her to an elite gymnastics academy run by a legendary, hard-nosed coach. Once there, Haley's rebellious attitude wins her both friends and enemies.", "text_for_embedding": "Stick It (2006). Genres: Comedy, Drama. Haley is a naturally gifted athlete but, with her social behavior, the teen seems intent on squandering her abilities. After a final brush with the law, a judge sentences her to an elite gymnastics academy run by a legendary, hard-nosed coach. Once there, Haley's rebellious attitude wins her both friends and enemies.. Tags: gymnastics, trainer, puberty, training, sport, teenager, woman director"} +{"id": "25132", "title": "Shorts", "year": 2009, "duration_min": 89, "rating": 5.1, "genres": "Comedy, Family", "genres_pipe": "|Comedy|Family|", "keywords": "", "tags_pipe": "", "overview": "A young boy's discovery of a colorful, wish-granting rock causes chaos in the suburban town of Black Falls when jealous kids and scheming adults alike set out to get their hands on it.", "text_for_embedding": "Shorts (2009). Genres: Comedy, Family. A young boy's discovery of a colorful, wish-granting rock causes chaos in the suburban town of Black Falls when jealous kids and scheming adults alike set out to get their hands on it.. Tags: "} +{"id": "577", "title": "To Die For", "year": 1995, "duration_min": 106, "rating": 6.7, "genres": "Fantasy, Drama, Comedy, Thriller", "genres_pipe": "|Fantasy|Drama|Comedy|Thriller|", "keywords": "adultery, winter, obsession, television, new hampshire, narcissistic personality disorder", "tags_pipe": "|adultery|winter|obsession|television|new hampshire|narcissistic personality disorder|", "overview": "Susan wants to work in television and will therefore do anything it takes, even if it means killing her husband. A very dark comedy from independent director Gus Van Sant with a brilliant Nicole Kidman in the leading role.", "text_for_embedding": "To Die For (1995). Genres: Fantasy, Drama, Comedy, Thriller. Susan wants to work in television and will therefore do anything it takes, even if it means killing her husband. A very dark comedy from independent director Gus Van Sant with a brilliant Nicole Kidman in the leading role.. Tags: adultery, winter, obsession, television, new hampshire, narcissistic personality disorder"} +{"id": "328387", "title": "Nerve", "year": 2016, "duration_min": 96, "rating": 7.1, "genres": "Mystery, Adventure, Crime", "genres_pipe": "|Mystery|Adventure|Crime|", "keywords": "based on novel, technology, internet, hacking, teenager, new york city, game, adaptation, dare, cellphone video, based on young adult novel, smartphone, taking a risk", "tags_pipe": "|based on novel|technology|internet|hacking|teenager|new york city|game|adaptation|dare|cellphone video|based on young adult novel|smartphone|taking a risk|", "overview": "Industrious high school senior, Vee Delmonico, has had it with living life on the sidelines. When pressured by friends to join the popular online game Nerve, Vee decides to sign up for just one dare in what seems like harmless fun. But as she finds herself caught up in the thrill of the adrenaline-fueled competition partnered with a mysterious stranger, the game begins to take a sinister turn with increasingly dangerous acts, leading her into a high stakes finale that will determine her entire future.", "text_for_embedding": "Nerve (2016). Genres: Mystery, Adventure, Crime. Industrious high school senior, Vee Delmonico, has had it with living life on the sidelines. When pressured by friends to join the popular online game Nerve, Vee decides to sign up for just one dare in what seems like harmless fun. But as she finds herself caught up in the thrill of the adrenaline-fueled competition partnered with a mysterious stranger, the game begins to take a sinister turn with increasingly dangerous acts, leading her into a high stakes finale that will determine her entire future.. Tags: based on novel, technology, internet, hacking, teenager, new york city, game, adaptation, dare, cellphone video, based on young adult novel, smartphone, taking a risk"} +{"id": "12690", "title": "Appaloosa", "year": 2008, "duration_min": 115, "rating": 6.3, "genres": "Drama, Western, Crime", "genres_pipe": "|Drama|Western|Crime|", "keywords": "small town, rancher", "tags_pipe": "|small town|rancher|", "overview": "Two friends hired to police a small town that is suffering under the rule of a rancher find their job complicated by the arrival of a young widow.", "text_for_embedding": "Appaloosa (2008). Genres: Drama, Western, Crime. Two friends hired to police a small town that is suffering under the rule of a rancher find their job complicated by the arrival of a young widow.. Tags: small town, rancher"} +{"id": "9945", "title": "Vampires", "year": 1998, "duration_min": 108, "rating": 5.8, "genres": "Action, Drama, Fantasy, Horror, Thriller", "genres_pipe": "|Action|Drama|Fantasy|Horror|Thriller|", "keywords": "based on novel, new mexico, party, vampire hunter, revenge, priest, church, skull, team, crucifix, cross, relic, vampire slayer, turning into a vampire, drinking blood", "tags_pipe": "|based on novel|new mexico|party|vampire hunter|revenge|priest|church|skull|team|crucifix|cross|relic|vampire slayer|turning into a vampire|drinking blood|", "overview": "The church enlists a team of vampire-hunters to hunt down and destroy a group of vampires searching for an ancient relic that will allow them to exist in sunlight.", "text_for_embedding": "Vampires (1998). Genres: Action, Drama, Fantasy, Horror, Thriller. The church enlists a team of vampire-hunters to hunt down and destroy a group of vampires searching for an ancient relic that will allow them to exist in sunlight.. Tags: based on novel, new mexico, party, vampire hunter, revenge, priest, church, skull, team, crucifix, cross, relic, vampire slayer, turning into a vampire, drinking blood"} +{"id": "539", "title": "Psycho", "year": 1960, "duration_min": 109, "rating": 8.2, "genres": "Drama, Horror, Thriller", "genres_pipe": "|Drama|Horror|Thriller|", "keywords": "hotel, clerk, arizona, shower, rain, motel, money, secretary, corpse, murderer, theft, private detective, proto-slasher", "tags_pipe": "|hotel|clerk|arizona|shower|rain|motel|money|secretary|corpse|murderer|theft|private detective|proto-slasher|", "overview": "When larcenous real estate clerk Marion Crane goes on the lam with a wad of cash and hopes of starting a new life, she ends up at the notorious Bates Motel, where manager Norman Bates cares for his housebound mother. The place seems quirky, but fine… until Marion decides to take a shower.", "text_for_embedding": "Psycho (1960). Genres: Drama, Horror, Thriller. When larcenous real estate clerk Marion Crane goes on the lam with a wad of cash and hopes of starting a new life, she ends up at the notorious Bates Motel, where manager Norman Bates cares for his housebound mother. The place seems quirky, but fine… until Marion decides to take a shower.. Tags: hotel, clerk, arizona, shower, rain, motel, money, secretary, corpse, murderer, theft, private detective, proto-slasher"} +{"id": "13596", "title": "My Best Friend's Girl", "year": 2008, "duration_min": 101, "rating": 5.4, "genres": "Romance, Comedy", "genres_pipe": "|Romance|Comedy|", "keywords": "date, sex, bar, test, friendship, insult, stripper, blonde, liar, wedding, lap dance, duringcreditsstinger", "tags_pipe": "|date|sex|bar|test|friendship|insult|stripper|blonde|liar|wedding|lap dance|duringcreditsstinger|", "overview": "When Dustin's girlfriend, Alexis, breaks up with him, he employs his best buddy, Tank, to take her out on the worst rebound date imaginable in the hopes that it will send her running back into his arms. But when Tank begins to really fall for Alexis, he finds himself in an impossible position.", "text_for_embedding": "My Best Friend's Girl (2008). Genres: Romance, Comedy. When Dustin's girlfriend, Alexis, breaks up with him, he employs his best buddy, Tank, to take her out on the worst rebound date imaginable in the hopes that it will send her running back into his arms. But when Tank begins to really fall for Alexis, he finds himself in an impossible position.. Tags: date, sex, bar, test, friendship, insult, stripper, blonde, liar, wedding, lap dance, duringcreditsstinger"} +{"id": "226857", "title": "Endless Love", "year": 2014, "duration_min": 103, "rating": 6.7, "genres": "Drama, Romance", "genres_pipe": "|Drama|Romance|", "keywords": "teenage romance", "tags_pipe": "|teenage romance|", "overview": "A privileged girl and a charismatic boy's instant desire sparks a love affair made only more reckless by parents trying to keep them apart.", "text_for_embedding": "Endless Love (2014). Genres: Drama, Romance. A privileged girl and a charismatic boy's instant desire sparks a love affair made only more reckless by parents trying to keep them apart.. Tags: teenage romance"} +{"id": "13159", "title": "Georgia Rule", "year": 2007, "duration_min": 113, "rating": 5.6, "genres": "Comedy, Drama, Romance", "genres_pipe": "|Comedy|Drama|Romance|", "keywords": "grandmother granddaughter relationship, promiscuity, mother daughter relationship, summer, teenager, rural, veterinary clinic, rebellious teenager", "tags_pipe": "|grandmother granddaughter relationship|promiscuity|mother daughter relationship|summer|teenager|rural|veterinary clinic|rebellious teenager|", "overview": "Georgia Rule follows a rebellious, uncontrollable teenager who is hauled off by her dysfunctional mother to spend the summer with her grandmother. Her journey will lead all three women to revelations of buried family secrets and an understanding that - regardless what happens - the ties that bind can never be broken.", "text_for_embedding": "Georgia Rule (2007). Genres: Comedy, Drama, Romance. Georgia Rule follows a rebellious, uncontrollable teenager who is hauled off by her dysfunctional mother to spend the summer with her grandmother. Her journey will lead all three women to revelations of buried family secrets and an understanding that - regardless what happens - the ties that bind can never be broken.. Tags: grandmother granddaughter relationship, promiscuity, mother daughter relationship, summer, teenager, rural, veterinary clinic, rebellious teenager"} +{"id": "47941", "title": "Under the Rainbow", "year": 1981, "duration_min": 98, "rating": 4.9, "genres": "Comedy", "genres_pipe": "|Comedy|", "keywords": "", "tags_pipe": "", "overview": "In World War II era Los Angeles, the manager of the Culver Hotel leaves his nephew in charge for a weekend. The nephew changes the name to the Hotel Rainbow and overbooks with royalty, assassins, secret agents, Japanese tourists, and munchkins (from the cast of _Wizard of Oz, The (1939)_ ). Secret Service agent Bruce Thorpe and casting director Annie Clark find romance amidst the intrigue and confusion.", "text_for_embedding": "Under the Rainbow (1981). Genres: Comedy. In World War II era Los Angeles, the manager of the Culver Hotel leaves his nephew in charge for a weekend. The nephew changes the name to the Hotel Rainbow and overbooks with royalty, assassins, secret agents, Japanese tourists, and munchkins (from the cast of _Wizard of Oz, The (1939)_ ). Secret Service agent Bruce Thorpe and casting director Annie Clark find romance amidst the intrigue and confusion.. Tags: "} +{"id": "526", "title": "Ladyhawke", "year": 1985, "duration_min": 121, "rating": 6.8, "genres": "Adventure, Drama, Fantasy, Romance", "genres_pipe": "|Adventure|Drama|Fantasy|Romance|", "keywords": "moon, monk, swordplay, bishop, cathedral, falcon, twilight, solar eclipse, thief", "tags_pipe": "|moon|monk|swordplay|bishop|cathedral|falcon|twilight|solar eclipse|thief|", "overview": "Captain Etienne Navarre is a man on whose shoulders lies a cruel curse. Punished for loving each other, Navarre must become a wolf by night whilst his lover, Lady Isabeau, takes the form of a hawk by day. Together, with the thief Philippe Gaston, they must try to overthrow the corrupt Bishop and in doing so break the spell.", "text_for_embedding": "Ladyhawke (1985). Genres: Adventure, Drama, Fantasy, Romance. Captain Etienne Navarre is a man on whose shoulders lies a cruel curse. Punished for loving each other, Navarre must become a wolf by night whilst his lover, Lady Isabeau, takes the form of a hawk by day. Together, with the thief Philippe Gaston, they must try to overthrow the corrupt Bishop and in doing so break the spell.. Tags: moon, monk, swordplay, bishop, cathedral, falcon, twilight, solar eclipse, thief"} +{"id": "22796", "title": "Simon Birch", "year": 1998, "duration_min": 114, "rating": 6.5, "genres": "Comedy, Drama, Family", "genres_pipe": "|Comedy|Drama|Family|", "keywords": "illegitimate son", "tags_pipe": "|illegitimate son|", "overview": "Simon Birch tells the story of Joe and Simon's heart-warming journey of friendship. Simon Birch was born with a condition that makes him much smaller than all the other kids in town. Now, due to his condition, Simon thinks God made him this way for a reason and highly believes in God. Together, Joe and Simon go on a journey of trust and friendship to find the answers to many things. Their friendship is put to the test when some unfortunate events happen.", "text_for_embedding": "Simon Birch (1998). Genres: Comedy, Drama, Family. Simon Birch tells the story of Joe and Simon's heart-warming journey of friendship. Simon Birch was born with a condition that makes him much smaller than all the other kids in town. Now, due to his condition, Simon thinks God made him this way for a reason and highly believes in God. Together, Joe and Simon go on a journey of trust and friendship to find the answers to many things. Their friendship is put to the test when some unfortunate events happen.. Tags: illegitimate son"} +{"id": "2355", "title": "Reign Over Me", "year": 2007, "duration_min": 124, "rating": 7.1, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "confidence, trauma, leaving one's family, childhood memory, airplane, war on terror, music, loss of daughter, alone, cowardliness, family", "tags_pipe": "|confidence|trauma|leaving one's family|childhood memory|airplane|war on terror|music|loss of daughter|alone|cowardliness|family|", "overview": "A man who lost his family in the September 11 attack on New York City runs into his old college roommate. Rekindling the friendship is the one thing that appears able to help the man recover from his grief.", "text_for_embedding": "Reign Over Me (2007). Genres: Drama. A man who lost his family in the September 11 attack on New York City runs into his old college roommate. Rekindling the friendship is the one thing that appears able to help the man recover from his grief.. Tags: confidence, trauma, leaving one's family, childhood memory, airplane, war on terror, music, loss of daughter, alone, cowardliness, family"} +{"id": "5915", "title": "Into the Wild", "year": 2007, "duration_min": 148, "rating": 7.8, "genres": "Adventure, Drama", "genres_pipe": "|Adventure|Drama|", "keywords": "male nudity, parents kids relationship, camping, cutting the cord, self-discovery, wilderness, biography, based on true story, pubic hair, alaska, journey", "tags_pipe": "|male nudity|parents kids relationship|camping|cutting the cord|self-discovery|wilderness|biography|based on true story|pubic hair|alaska|journey|", "overview": "The true story of top student and athlete, Christopher McCandless, who after graduating from Emory University in 1992, abandoned his possessions, gave his entire $24,000 savings account to charity and hitchhiked to Alaska to live in the wilderness.", "text_for_embedding": "Into the Wild (2007). Genres: Adventure, Drama. The true story of top student and athlete, Christopher McCandless, who after graduating from Emory University in 1992, abandoned his possessions, gave his entire $24,000 savings account to charity and hitchhiked to Alaska to live in the wilderness.. Tags: male nudity, parents kids relationship, camping, cutting the cord, self-discovery, wilderness, biography, based on true story, pubic hair, alaska, journey"} +{"id": "9842", "title": "School for Scoundrels", "year": 2006, "duration_min": 100, "rating": 5.6, "genres": "Comedy, Drama, Romance", "genres_pipe": "|Comedy|Drama|Romance|", "keywords": "date, competition, lovesickness, mentor, traffic policeman", "tags_pipe": "|date|competition|lovesickness|mentor|traffic policeman|", "overview": "A young guy short on luck, enrolls in a class to build confidence to help win over the girl of his dreams, which becomes complicated when his teacher has the same agenda.", "text_for_embedding": "School for Scoundrels (2006). Genres: Comedy, Drama, Romance. A young guy short on luck, enrolls in a class to build confidence to help win over the girl of his dreams, which becomes complicated when his teacher has the same agenda.. Tags: date, competition, lovesickness, mentor, traffic policeman"} +{"id": "61012", "title": "Silent Hill: Revelation 3D", "year": 2012, "duration_min": 94, "rating": 5.0, "genres": "Thriller, Horror, Mystery", "genres_pipe": "|Thriller|Horror|Mystery|", "keywords": "female protagonist, another dimension, based on video game, mall, occult ritual, dark carnival, occult torture, aftercreditsstinger, 3d", "tags_pipe": "|female protagonist|another dimension|based on video game|mall|occult ritual|dark carnival|occult torture|aftercreditsstinger|3d|", "overview": "Heather Mason and her father have been on the run, always one step ahead of dangerous forces that she doesn't fully understand, Now on the eve of her 18th birthday, plagued by horrific nightmares and the disappearance of her father, Heather discovers she's not who she thinks she is. The revelation leads her deeper into a demonic world that threatens to trap her forever.", "text_for_embedding": "Silent Hill: Revelation 3D (2012). Genres: Thriller, Horror, Mystery. Heather Mason and her father have been on the run, always one step ahead of dangerous forces that she doesn't fully understand, Now on the eve of her 18th birthday, plagued by horrific nightmares and the disappearance of her father, Heather discovers she's not who she thinks she is. The revelation leads her deeper into a demonic world that threatens to trap her forever.. Tags: female protagonist, another dimension, based on video game, mall, occult ritual, dark carnival, occult torture, aftercreditsstinger, 3d"} +{"id": "755", "title": "From Dusk Till Dawn", "year": 1996, "duration_min": 108, "rating": 6.9, "genres": "Horror, Action, Thriller, Crime", "genres_pipe": "|Horror|Action|Thriller|Crime|", "keywords": "dancing, brother brother relationship, sexual obsession, showdown, sheriff, eroticism, nudity, bank robber, vampire, holy water, siege, stripper, priest, explosion, extreme violence", "tags_pipe": "|dancing|brother brother relationship|sexual obsession|showdown|sheriff|eroticism|nudity|bank robber|vampire|holy water|siege|stripper|priest|explosion|extreme violence|", "overview": "Seth Gecko and his younger brother Richard are on the run after a bloody bank robbery in Texas. They escape across the border into Mexico and will be home-free the next morning, when they pay off the local kingpin. They just have to survive 'from dusk till dawn' at the rendezvous point, which turns out to be a Hell of a strip joint.", "text_for_embedding": "From Dusk Till Dawn (1996). Genres: Horror, Action, Thriller, Crime. Seth Gecko and his younger brother Richard are on the run after a bloody bank robbery in Texas. They escape across the border into Mexico and will be home-free the next morning, when they pay off the local kingpin. They just have to survive 'from dusk till dawn' at the rendezvous point, which turns out to be a Hell of a strip joint.. Tags: dancing, brother brother relationship, sexual obsession, showdown, sheriff, eroticism, nudity, bank robber, vampire, holy water, siege, stripper, priest, explosion, extreme violence"} +{"id": "13682", "title": "Pooh's Heffalump Movie", "year": 2005, "duration_min": 68, "rating": 6.4, "genres": "Animation, Family", "genres_pipe": "|Animation|Family|", "keywords": "", "tags_pipe": "", "overview": "Who or what exactly is a Heffalump? The lovable residents of the Hundred Acre Wood -- Winnie the Pooh, Rabbit, Tigger, Eeyore, Kanga and the rest of the pack -- embark on a journey of discovery in search of the elusive Heffalump. But as is always the case, this unusual road trip opens their eyes to so much more than just the creature they're seeking.", "text_for_embedding": "Pooh's Heffalump Movie (2005). Genres: Animation, Family. Who or what exactly is a Heffalump? The lovable residents of the Hundred Acre Wood -- Winnie the Pooh, Rabbit, Tigger, Eeyore, Kanga and the rest of the pack -- embark on a journey of discovery in search of the elusive Heffalump. But as is always the case, this unusual road trip opens their eyes to so much more than just the creature they're seeking.. Tags: "} +{"id": "9089", "title": "Home for the Holidays", "year": 1995, "duration_min": 103, "rating": 6.3, "genres": "Comedy, Drama, Romance", "genres_pipe": "|Comedy|Drama|Romance|", "keywords": "baltimore, thanksgiving, family clan, family conflict, generations conflict, woman director", "tags_pipe": "|baltimore|thanksgiving|family clan|family conflict|generations conflict|woman director|", "overview": "After losing her job, making out with her soon to be ex-boss, and finding out that her daughter plans to spend Thanksgiving with her boyfriend, Claudia Larson has to face spending the holiday with her family. She wonders if she can survive their crazy antics.", "text_for_embedding": "Home for the Holidays (1995). Genres: Comedy, Drama, Romance. After losing her job, making out with her soon to be ex-boss, and finding out that her daughter plans to spend Thanksgiving with her boyfriend, Claudia Larson has to face spending the holiday with her family. She wonders if she can survive their crazy antics.. Tags: baltimore, thanksgiving, family clan, family conflict, generations conflict, woman director"} +{"id": "9470", "title": "Kung Fu Hustle", "year": 2004, "duration_min": 99, "rating": 7.2, "genres": "Action, Comedy, Crime, Fantasy", "genres_pipe": "|Action|Comedy|Crime|Fantasy|", "keywords": "kung fu, magic, mafia, defense, gangster, policeman, anarchic comedy", "tags_pipe": "|kung fu|magic|mafia|defense|gangster|policeman|anarchic comedy|", "overview": "Set in Canton, China in the 1940s, the story revolves in a town ruled by the Axe Gang, Sing who desperately wants to become a member. He stumbles into a slum ruled by eccentric landlords who turns out to be the greatest kung-fu masters in disguise. Sing's actions eventually cause the Axe Gang and the slumlords to engage in an explosive kung-fu battle. Only one side will win and only one hero will emerge as the greatest kung-fu master of all.", "text_for_embedding": "Kung Fu Hustle (2004). Genres: Action, Comedy, Crime, Fantasy. Set in Canton, China in the 1940s, the story revolves in a town ruled by the Axe Gang, Sing who desperately wants to become a member. He stumbles into a slum ruled by eccentric landlords who turns out to be the greatest kung-fu masters in disguise. Sing's actions eventually cause the Axe Gang and the slumlords to engage in an explosive kung-fu battle. Only one side will win and only one hero will emerge as the greatest kung-fu master of all.. Tags: kung fu, magic, mafia, defense, gangster, policeman, anarchic comedy"} +{"id": "18357", "title": "The Country Bears", "year": 2002, "duration_min": 88, "rating": 4.3, "genres": "Adventure, Comedy, Family", "genres_pipe": "|Adventure|Comedy|Family|", "keywords": "human animal relationship, musical, clowning, bear, social satire, aftercreditsstinger, duringcreditsstinger", "tags_pipe": "|human animal relationship|musical|clowning|bear|social satire|aftercreditsstinger|duringcreditsstinger|", "overview": "For Beary Barrington, The Country Bears' young #1 fan, fitting in with his all-too-human family is proving im-paws-ible. When he runs away to find Country Bear Hall and his heroes, he discovers the venue that made them famous is near foreclosure. Beary hightails it over the river and through the woods to get the Bears in the Band back together for an all-out reunion concert to save Country Bear Hall.", "text_for_embedding": "The Country Bears (2002). Genres: Adventure, Comedy, Family. For Beary Barrington, The Country Bears' young #1 fan, fitting in with his all-too-human family is proving im-paws-ible. When he runs away to find Country Bear Hall and his heroes, he discovers the venue that made them famous is near foreclosure. Beary hightails it over the river and through the woods to get the Bears in the Band back together for an all-out reunion concert to save Country Bear Hall.. Tags: human animal relationship, musical, clowning, bear, social satire, aftercreditsstinger, duringcreditsstinger"} +{"id": "7979", "title": "The Kite Runner", "year": 2007, "duration_min": 128, "rating": 7.3, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "1970s, afghanistan, hang gliding, war in afghanistan, taliban, cowardice, best friend, cowardliness, child", "tags_pipe": "|1970s|afghanistan|hang gliding|war in afghanistan|taliban|cowardice|best friend|cowardliness|child|", "overview": "After spending years in California, Amir returns to his homeland in Afghanistan to help his old friend Hassan, whose son is in trouble.", "text_for_embedding": "The Kite Runner (2007). Genres: Drama. After spending years in California, Amir returns to his homeland in Afghanistan to help his old friend Hassan, whose son is in trouble.. Tags: 1970s, afghanistan, hang gliding, war in afghanistan, taliban, cowardice, best friend, cowardliness, child"} +{"id": "470", "title": "21 Grams", "year": 2003, "duration_min": 124, "rating": 7.2, "genres": "Drama, Crime, Thriller", "genres_pipe": "|Drama|Crime|Thriller|", "keywords": "life and death, transplantation, suicide attempt, desperation, loss of family, ex-detainee, sadness, rage and hate, car crash", "tags_pipe": "|life and death|transplantation|suicide attempt|desperation|loss of family|ex-detainee|sadness|rage and hate|car crash|", "overview": "This is the story of three gentle persons: Paul Rivers an ailing mathematician lovelessly married to an English émigré, Christina Peck, an upper-middle-class suburban housewife, happily married and mother of two little girls, and Jack Jordan, an ex-convict who has found in his Christian faith the strength to raise a family. They will be brought together by a terrible accident that will change their lives. By the final frame, none of them will be the same as they will learn harsh truths about love, faith, courage, desire and guilt, and how chance can change our worlds irretrievably, forever.", "text_for_embedding": "21 Grams (2003). Genres: Drama, Crime, Thriller. This is the story of three gentle persons: Paul Rivers an ailing mathematician lovelessly married to an English émigré, Christina Peck, an upper-middle-class suburban housewife, happily married and mother of two little girls, and Jack Jordan, an ex-convict who has found in his Christian faith the strength to raise a family. They will be brought together by a terrible accident that will change their lives. By the final frame, none of them will be the same as they will learn harsh truths about love, faith, courage, desire and guilt, and how chance can change our worlds irretrievably, forever.. Tags: life and death, transplantation, suicide attempt, desperation, loss of family, ex-detainee, sadness, rage and hate, car crash"} +{"id": "15644", "title": "Paparazzi", "year": 2004, "duration_min": 84, "rating": 5.8, "genres": "Action, Drama, Thriller", "genres_pipe": "|Action|Drama|Thriller|", "keywords": "independent film", "tags_pipe": "|independent film|", "overview": "A rising Hollywood actor decides to take personal revenge against a group of four persistent photographers to make them pay for almost causing a personal tragedy involving his wife and son.", "text_for_embedding": "Paparazzi (2004). Genres: Action, Drama, Thriller. A rising Hollywood actor decides to take personal revenge against a group of four persistent photographers to make them pay for almost causing a personal tragedy involving his wife and son.. Tags: independent film"} +{"id": "9582", "title": "A Guy Thing", "year": 2003, "duration_min": 101, "rating": 5.3, "genres": "Comedy, Romance", "genres_pipe": "|Comedy|Romance|", "keywords": "infidelity, bachelor, blackmail, fantasy, truth, party, liar, friends, misunderstanding, wedding, fiancée", "tags_pipe": "|infidelity|bachelor|blackmail|fantasy|truth|party|liar|friends|misunderstanding|wedding|fiancée|", "overview": "Paul Morse is a good guy. When his friends throw him a wild bachelor party, he just wants to keep his conscience clean -- which is why he's shocked when he wakes up in bed with a beautiful girl named Becky and can't remember the night before. Desperate to keep his fiancée, Karen, from finding out what may or may not be the truth, he tells her a teensy lie. Soon his lies are spiraling out of control and his life is a series of comical misunderstandings.", "text_for_embedding": "A Guy Thing (2003). Genres: Comedy, Romance. Paul Morse is a good guy. When his friends throw him a wild bachelor party, he just wants to keep his conscience clean -- which is why he's shocked when he wakes up in bed with a beautiful girl named Becky and can't remember the night before. Desperate to keep his fiancée, Karen, from finding out what may or may not be the truth, he tells her a teensy lie. Soon his lies are spiraling out of control and his life is a series of comical misunderstandings.. Tags: infidelity, bachelor, blackmail, fantasy, truth, party, liar, friends, misunderstanding, wedding, fiancée"} +{"id": "10642", "title": "Loser", "year": 2000, "duration_min": 98, "rating": 5.0, "genres": "Drama, Comedy, Romance, Family", "genres_pipe": "|Drama|Comedy|Romance|Family|", "keywords": "college, lost and found, older brother younger sister, woman director, young adult, college student", "tags_pipe": "|college|lost and found|older brother younger sister|woman director|young adult|college student|", "overview": "On a university scholarship, a good natured student from the midwest gets a crash course in city life while dealing with three evil roommates. He befriends a virtually homeless college student whom he falls for, but she's dating a nasty professor.", "text_for_embedding": "Loser (2000). Genres: Drama, Comedy, Romance, Family. On a university scholarship, a good natured student from the midwest gets a crash course in city life while dealing with three evil roommates. He befriends a virtually homeless college student whom he falls for, but she's dating a nasty professor.. Tags: college, lost and found, older brother younger sister, woman director, young adult, college student"} +{"id": "22074", "title": "Capitalism: A Love Story", "year": 2009, "duration_min": 120, "rating": 7.0, "genres": "Documentary", "genres_pipe": "|Documentary|", "keywords": "usa, capitalism, capitalist, wall street, criticism and blame, banking, money, economics, corporation", "tags_pipe": "|usa|capitalism|capitalist|wall street|criticism and blame|banking|money|economics|corporation|", "overview": "Michael Moore's Capitalism: A Love Story comes home to the issue he's been examining throughout his career: the disastrous impact of corporate dominance on the everyday lives of Americans (and by default, the rest of the world).", "text_for_embedding": "Capitalism: A Love Story (2009). Genres: Documentary. Michael Moore's Capitalism: A Love Story comes home to the issue he's been examining throughout his career: the disastrous impact of corporate dominance on the everyday lives of Americans (and by default, the rest of the world).. Tags: usa, capitalism, capitalist, wall street, criticism and blame, banking, money, economics, corporation"} +{"id": "2428", "title": "The Greatest Story Ever Told", "year": 1965, "duration_min": 199, "rating": 6.5, "genres": "Drama, History", "genres_pipe": "|Drama|History|", "keywords": "jesus christ, biography, epic", "tags_pipe": "|jesus christ|biography|epic|", "overview": "All-star epic retelling of Christ's life.", "text_for_embedding": "The Greatest Story Ever Told (1965). Genres: Drama, History. All-star epic retelling of Christ's life.. Tags: jesus christ, biography, epic"} +{"id": "290751", "title": "Secret in Their Eyes", "year": 2015, "duration_min": 111, "rating": 6.2, "genres": "Crime, Drama, Mystery", "genres_pipe": "|Crime|Drama|Mystery|", "keywords": "fbi, missing child", "tags_pipe": "|fbi|missing child|", "overview": "A tight-knit team of FBI investigators, along with their District Attorney supervisor, is suddenly torn apart when they discover that one of their own teenage daughters has been brutally murdered.", "text_for_embedding": "Secret in Their Eyes (2015). Genres: Crime, Drama, Mystery. A tight-knit team of FBI investigators, along with their District Attorney supervisor, is suddenly torn apart when they discover that one of their own teenage daughters has been brutally murdered.. Tags: fbi, missing child"} +{"id": "13805", "title": "Disaster Movie", "year": 2008, "duration_min": 87, "rating": 3.0, "genres": "Action, Comedy", "genres_pipe": "|Action|Comedy|", "keywords": "natural disaster, violence, mortal danger, duringcreditsstinger", "tags_pipe": "|natural disaster|violence|mortal danger|duringcreditsstinger|", "overview": "In DISASTER MOVIE, the filmmaking team behind the hits \"Scary Movie,\" \"Date Movie,\" \"Epic Movie\" and \"Meet The Spartans\" this time puts its unique, inimitable stamp on one of the biggest and most bloated movie genres of all time -- the disaster film.", "text_for_embedding": "Disaster Movie (2008). Genres: Action, Comedy. In DISASTER MOVIE, the filmmaking team behind the hits \"Scary Movie,\" \"Date Movie,\" \"Epic Movie\" and \"Meet The Spartans\" this time puts its unique, inimitable stamp on one of the biggest and most bloated movie genres of all time -- the disaster film.. Tags: natural disaster, violence, mortal danger, duringcreditsstinger"} +{"id": "4597", "title": "Armored", "year": 2009, "duration_min": 88, "rating": 5.5, "genres": "Action, Crime, Drama, Thriller", "genres_pipe": "|Action|Crime|Drama|Thriller|", "keywords": "robbery, homeless person, bank, armored car, truck, heist", "tags_pipe": "|robbery|homeless person|bank|armored car|truck|heist|", "overview": "A crew of officers at an armored transport security firm risk their lives when they embark on the ultimate heist against their own company. Armed with a seemingly fool-proof plan, the men plan on making off with a fortune with harm to none. But when an unexpected witness interferes, the plan quickly unravels and all bets are off.", "text_for_embedding": "Armored (2009). Genres: Action, Crime, Drama, Thriller. A crew of officers at an armored transport security firm risk their lives when they embark on the ultimate heist against their own company. Armed with a seemingly fool-proof plan, the men plan on making off with a fortune with harm to none. But when an unexpected witness interferes, the plan quickly unravels and all bets are off.. Tags: robbery, homeless person, bank, armored car, truck, heist"} +{"id": "9414", "title": "The Man Who Knew Too Little", "year": 1997, "duration_min": 97, "rating": 6.5, "genres": "Comedy, Thriller, Crime, Action", "genres_pipe": "|Comedy|Thriller|Crime|Action|", "keywords": "london england, bomb, brother brother relationship, helicopter, based on novel, bank, tv show, theatre milieu, mistaken identity, escape, agent", "tags_pipe": "|london england|bomb|brother brother relationship|helicopter|based on novel|bank|tv show|theatre milieu|mistaken identity|escape|agent|", "overview": "An American gets a ticket for an audience participation game in London, then gets involved in a case of mistaken identity. As an international plot unravels around him, he thinks it's all part of the act.", "text_for_embedding": "The Man Who Knew Too Little (1997). Genres: Comedy, Thriller, Crime, Action. An American gets a ticket for an audience participation game in London, then gets involved in a case of mistaken identity. As an international plot unravels around him, he thinks it's all part of the act.. Tags: london england, bomb, brother brother relationship, helicopter, based on novel, bank, tv show, theatre milieu, mistaken identity, escape, agent"} +{"id": "63492", "title": "What's Your Number?", "year": 2011, "duration_min": 106, "rating": 6.2, "genres": "Comedy, Romance", "genres_pipe": "|Comedy|Romance|", "keywords": "based on novel, loser, magazine, womanizer, mission, search, boyfriend, husband, fired, past relationship", "tags_pipe": "|based on novel|loser|magazine|womanizer|mission|search|boyfriend|husband|fired|past relationship|", "overview": "Ally Darling (Anna Faris) is realizing she's a little lost in life. Her latest romance has just fizzled out, and she's just been fired from her marketing job. Then she reads an eye-opening magazine article that warns that 96 percent of women who've been with 20 or more lovers are unlikely to find a husband. Determined to turn her life around and prove the article wrong, Ally embarks on a mission to find the perfect mate from among her numerous ex-boyfriends.", "text_for_embedding": "What's Your Number? (2011). Genres: Comedy, Romance. Ally Darling (Anna Faris) is realizing she's a little lost in life. Her latest romance has just fizzled out, and she's just been fired from her marketing job. Then she reads an eye-opening magazine article that warns that 96 percent of women who've been with 20 or more lovers are unlikely to find a husband. Determined to turn her life around and prove the article wrong, Ally embarks on a mission to find the perfect mate from among her numerous ex-boyfriends.. Tags: based on novel, loser, magazine, womanizer, mission, search, boyfriend, husband, fired, past relationship"} +{"id": "81796", "title": "Lockout", "year": 2012, "duration_min": 95, "rating": 5.8, "genres": "Action, Thriller, Science Fiction", "genres_pipe": "|Action|Thriller|Science Fiction|", "keywords": "usa president, anti hero, dementia, future, space, convict, interrogation, space station, collision in space, year 2079", "tags_pipe": "|usa president|anti hero|dementia|future|space|convict|interrogation|space station|collision in space|year 2079|", "overview": "Set in the near future, Lockout follows a falsely convicted ex-government agent , whose one chance at obtaining freedom lies in the dangerous mission of rescuing the President's daughter from rioting convicts at an outer space maximum security prison.", "text_for_embedding": "Lockout (2012). Genres: Action, Thriller, Science Fiction. Set in the near future, Lockout follows a falsely convicted ex-government agent , whose one chance at obtaining freedom lies in the dangerous mission of rescuing the President's daughter from rioting convicts at an outer space maximum security prison.. Tags: usa president, anti hero, dementia, future, space, convict, interrogation, space station, collision in space, year 2079"} +{"id": "10710", "title": "Envy", "year": 2004, "duration_min": 99, "rating": 4.8, "genres": "Comedy", "genres_pipe": "|Comedy|", "keywords": "jealousy, inventor, neighbor, best friend, milliionaire, dog, envy, golden egg", "tags_pipe": "|jealousy|inventor|neighbor|best friend|milliionaire|dog|envy|golden egg|", "overview": "A man becomes increasingly jealous of his friend's newfound success.", "text_for_embedding": "Envy (2004). Genres: Comedy. A man becomes increasingly jealous of his friend's newfound success.. Tags: jealousy, inventor, neighbor, best friend, milliionaire, dog, envy, golden egg"} +{"id": "15092", "title": "Crank: High Voltage", "year": 2009, "duration_min": 96, "rating": 5.9, "genres": "Action, Thriller, Crime", "genres_pipe": "|Action|Thriller|Crime|", "keywords": "female nudity, prostitute, horse race, heart, strip club, electric shock, godzilla, sequel, tourette syndrome, gang, shootout, public sex, cigarette smoking, mansion, electrocution", "tags_pipe": "|female nudity|prostitute|horse race|heart|strip club|electric shock|godzilla|sequel|tourette syndrome|gang|shootout|public sex|cigarette smoking|mansion|electrocution|", "overview": "Chelios faces a Chinese mobster who has stolen his nearly indestructible heart and replaced it with a battery-powered ticker that requires regular jolts of electricity to keep working.", "text_for_embedding": "Crank: High Voltage (2009). Genres: Action, Thriller, Crime. Chelios faces a Chinese mobster who has stolen his nearly indestructible heart and replaced it with a battery-powered ticker that requires regular jolts of electricity to keep working.. Tags: female nudity, prostitute, horse race, heart, strip club, electric shock, godzilla, sequel, tourette syndrome, gang, shootout, public sex, cigarette smoking, mansion, electrocution"} +{"id": "11382", "title": "Bullets Over Broadway", "year": 1994, "duration_min": 98, "rating": 7.0, "genres": "Action, Comedy, Thriller", "genres_pipe": "|Action|Comedy|Thriller|", "keywords": "lover (female), talent, mafia boss, author", "tags_pipe": "|lover (female)|talent|mafia boss|author|", "overview": "Set in 1920's New York City, this movie tells the story of idealistic young playwright David Shayne. Producer Julian Marx finally finds funding for the project from gangster Nick Valenti. The catch is that Nick's girl friend Olive Neal gets the part of a psychiatrist, and Olive is a bimbo who could never pass for a psychiatrist as well as being a dreadful actress. Agreeing to this first compromise is the first step to Broadway's complete seduction of David, who neglects longtime girl friend Ellen. Meanwhile David puts up with Warner Purcell, the leading man who is a compulsive eater, Helen Sinclair, the grand dame who wants her part jazzed up, and Cheech, Olive's interfering hitman / bodyguard. Eventually, the playwright must decide whether art or life is more important.", "text_for_embedding": "Bullets Over Broadway (1994). Genres: Action, Comedy, Thriller. Set in 1920's New York City, this movie tells the story of idealistic young playwright David Shayne. Producer Julian Marx finally finds funding for the project from gangster Nick Valenti. The catch is that Nick's girl friend Olive Neal gets the part of a psychiatrist, and Olive is a bimbo who could never pass for a psychiatrist as well as being a dreadful actress. Agreeing to this first compromise is the first step to Broadway's complete seduction of David, who neglects longtime girl friend Ellen. Meanwhile David puts up with Warner Purcell, the leading man who is a compulsive eater, Helen Sinclair, the grand dame who wants her part jazzed up, and Cheech, Olive's interfering hitman / bodyguard. Eventually, the playwright must decide whether art or life is more important.. Tags: lover (female), talent, mafia boss, author"} +{"id": "15005", "title": "One Night with the King", "year": 2006, "duration_min": 123, "rating": 6.1, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "based on novel, persia, queen, esther", "tags_pipe": "|based on novel|persia|queen|esther|", "overview": "This amazing biblical drama chronicles the brave and historic legend of Hadassah, a Jewish orphan with exceptional beauty who rises to become Queen Esther of Persia and saves Persian Jews from genocide. By revealing her heritage to the king, Esther thwarts the evil prime minister's plan to annihilate all Jews in the Persian Empire. The annual festival of Purim is inspired by her heroism.", "text_for_embedding": "One Night with the King (2006). Genres: Drama. This amazing biblical drama chronicles the brave and historic legend of Hadassah, a Jewish orphan with exceptional beauty who rises to become Queen Esther of Persia and saves Persian Jews from genocide. By revealing her heritage to the king, Esther thwarts the evil prime minister's plan to annihilate all Jews in the Persian Empire. The annual festival of Purim is inspired by her heroism.. Tags: based on novel, persia, queen, esther"} +{"id": "8198", "title": "The Quiet American", "year": 2002, "duration_min": 101, "rating": 6.4, "genres": "Drama, Action, Thriller, Romance", "genres_pipe": "|Drama|Action|Thriller|Romance|", "keywords": "terror, journalist, lover (female), saigon, indochina", "tags_pipe": "|terror|journalist|lover (female)|saigon|indochina|", "overview": "A stylish political thriller where love and war collide in Southeast Asia. Set in early 1950s Vietnam, a young American becomes entangled in a dangerous love triangle when he falls for the beautiful mistress of a British journalist. As war is waged around them, these three only sink deeper into a world of drugs, passion, and betrayal where nothing is as it seems.", "text_for_embedding": "The Quiet American (2002). Genres: Drama, Action, Thriller, Romance. A stylish political thriller where love and war collide in Southeast Asia. Set in early 1950s Vietnam, a young American becomes entangled in a dangerous love triangle when he falls for the beautiful mistress of a British journalist. As war is waged around them, these three only sink deeper into a world of drugs, passion, and betrayal where nothing is as it seems.. Tags: terror, journalist, lover (female), saigon, indochina"} +{"id": "6963", "title": "The Weather Man", "year": 2005, "duration_min": 101, "rating": 6.0, "genres": "Comedy, Drama", "genres_pipe": "|Comedy|Drama|", "keywords": "new york, chicago, midlife crisis, television, daughter, father, weatherman, terminal illness, wettermann", "tags_pipe": "|new york|chicago|midlife crisis|television|daughter|father|weatherman|terminal illness|wettermann|", "overview": "A Chicago weather man, separated from his wife and children, debates whether professional and personal success are mutually exclusive.", "text_for_embedding": "The Weather Man (2005). Genres: Comedy, Drama. A Chicago weather man, separated from his wife and children, debates whether professional and personal success are mutually exclusive.. Tags: new york, chicago, midlife crisis, television, daughter, father, weatherman, terminal illness, wettermann"} +{"id": "15070", "title": "Undisputed", "year": 2002, "duration_min": 96, "rating": 6.1, "genres": "Action, Adventure, Drama, Thriller", "genres_pipe": "|Action|Adventure|Drama|Thriller|", "keywords": "sport", "tags_pipe": "|sport|", "overview": "Monroe Hutchens is the heavyweight champion of Sweetwater, a maximum security prison. He was convicted to a life sentence due to a passionate crime. Iceman Chambers is the heavyweight champion, who lost his title due to a rape conviction to ten years in Sweetwater. WHen these two giants collide in the same prison, they fight against each other disputing who is the real champion.", "text_for_embedding": "Undisputed (2002). Genres: Action, Adventure, Drama, Thriller. Monroe Hutchens is the heavyweight champion of Sweetwater, a maximum security prison. He was convicted to a life sentence due to a passionate crime. Iceman Chambers is the heavyweight champion, who lost his title due to a rape conviction to ten years in Sweetwater. WHen these two giants collide in the same prison, they fight against each other disputing who is the real champion.. Tags: sport"} +{"id": "12797", "title": "Ghost Town", "year": 2008, "duration_min": 102, "rating": 6.4, "genres": "Comedy, Fantasy, Romance", "genres_pipe": "|Comedy|Fantasy|Romance|", "keywords": "dying and death, misanthrope, lecture, cardiopulmonery resuscitation", "tags_pipe": "|dying and death|misanthrope|lecture|cardiopulmonery resuscitation|", "overview": "Dentist, Bertram Pincus is a man whose people skills leave much to be desired. When Pincus dies unexpectedly, but is miraculously revived after seven minutes, he wakes up to discover that he now has the annoying ability to see ghosts.", "text_for_embedding": "Ghost Town (2008). Genres: Comedy, Fantasy, Romance. Dentist, Bertram Pincus is a man whose people skills leave much to be desired. When Pincus dies unexpectedly, but is miraculously revived after seven minutes, he wakes up to discover that he now has the annoying ability to see ghosts.. Tags: dying and death, misanthrope, lecture, cardiopulmonery resuscitation"} +{"id": "17134", "title": "12 Rounds", "year": 2009, "duration_min": 108, "rating": 5.7, "genres": "Action, Adventure, Drama, Thriller", "genres_pipe": "|Action|Adventure|Drama|Thriller|", "keywords": "police, cops, cat and mouse, family, revenge drama", "tags_pipe": "|police|cops|cat and mouse|family|revenge drama|", "overview": "When New Orleans cop Danny Fisher prevents a brilliant thief from successfully carrying out his latest heist, the thief's girlfriend is accidentally killed. Hungry for revenge, the criminal mastermind breaks out of prison and kidnaps Danny's fiancee. To save her, Danny must successfully navigate his way through an elaborate series of tasks and puzzles, or else watch the love of his life die.", "text_for_embedding": "12 Rounds (2009). Genres: Action, Adventure, Drama, Thriller. When New Orleans cop Danny Fisher prevents a brilliant thief from successfully carrying out his latest heist, the thief's girlfriend is accidentally killed. Hungry for revenge, the criminal mastermind breaks out of prison and kidnaps Danny's fiancee. To save her, Danny must successfully navigate his way through an elaborate series of tasks and puzzles, or else watch the love of his life die.. Tags: police, cops, cat and mouse, family, revenge drama"} +{"id": "41402", "title": "Let Me In", "year": 2010, "duration_min": 116, "rating": 6.7, "genres": "Drama, Horror, Mystery", "genres_pipe": "|Drama|Horror|Mystery|", "keywords": "vampire, child vampire, remake, bully, young boy, biting, dead boy, hammer horror, 1980s", "tags_pipe": "|vampire|child vampire|remake|bully|young boy|biting|dead boy|hammer horror|1980s|", "overview": "A bullied young boy befriends a young female vampire who lives in secrecy with her guardian. A remake of the movie “Let The Right One In” which was an adaptation of a book.", "text_for_embedding": "Let Me In (2010). Genres: Drama, Horror, Mystery. A bullied young boy befriends a young female vampire who lives in secrecy with her guardian. A remake of the movie “Let The Right One In” which was an adaptation of a book.. Tags: vampire, child vampire, remake, bully, young boy, biting, dead boy, hammer horror, 1980s"} +{"id": "18885", "title": "3 Ninjas Kick Back", "year": 1994, "duration_min": 93, "rating": 4.5, "genres": "Adventure, Action, Comedy, Family", "genres_pipe": "|Adventure|Action|Comedy|Family|", "keywords": "underdog, hero, friendship, treasure hunt, friends, revenge, rivalry, good vs evil, youth, danger, escapade, young heroes, siblings relations, vigilantism, heroic mission", "tags_pipe": "|underdog|hero|friendship|treasure hunt|friends|revenge|rivalry|good vs evil|youth|danger|escapade|young heroes|siblings relations|vigilantism|heroic mission|", "overview": "During a championship baseball match, the three brothers hear that their grandfather in Japan is in trouble, and head out to help him, conceding the match. When they arrive in Japan, they must use all their powers to defend him against his ancient enemy, who has returned to exact revenge.", "text_for_embedding": "3 Ninjas Kick Back (1994). Genres: Adventure, Action, Comedy, Family. During a championship baseball match, the three brothers hear that their grandfather in Japan is in trouble, and head out to help him, conceding the match. When they arrive in Japan, they must use all their powers to defend him against his ancient enemy, who has returned to exact revenge.. Tags: underdog, hero, friendship, treasure hunt, friends, revenge, rivalry, good vs evil, youth, danger, escapade, young heroes, siblings relations, vigilantism, heroic mission"} +{"id": "4953", "title": "Be Kind Rewind", "year": 2008, "duration_min": 102, "rating": 6.2, "genres": "Drama, Comedy", "genres_pipe": "|Drama|Comedy|", "keywords": "camcorder, videoband, delusion, nuclear power plant, video store", "tags_pipe": "|camcorder|videoband|delusion|nuclear power plant|video store|", "overview": "A man whose brain becomes magnetized unintentionally destroys every tape in his friend's video store. In order to satisfy the store's most loyal renter, an aging woman with signs of dementia, the two men set out to remake the lost films.", "text_for_embedding": "Be Kind Rewind (2008). Genres: Drama, Comedy. A man whose brain becomes magnetized unintentionally destroys every tape in his friend's video store. In order to satisfy the store's most loyal renter, an aging woman with signs of dementia, the two men set out to remake the lost films.. Tags: camcorder, videoband, delusion, nuclear power plant, video store"} +{"id": "10773", "title": "Mrs Henderson Presents", "year": 2005, "duration_min": 103, "rating": 6.4, "genres": "Comedy, Drama", "genres_pipe": "|Comedy|Drama|", "keywords": "world war ii, widow, musical, theatre milieu, nacktrevue, variety", "tags_pipe": "|world war ii|widow|musical|theatre milieu|nacktrevue|variety|", "overview": "Eccentric 70-year-old widow purchases the Windmill Theatre in London as a post-widowhood hobby. After starting an innovative continuous variety review, which is copied by other theaters, they begin to lose money. Mrs Henderson suggests they add female nudity similar to the Moulin Rouge in Paris", "text_for_embedding": "Mrs Henderson Presents (2005). Genres: Comedy, Drama. Eccentric 70-year-old widow purchases the Windmill Theatre in London as a post-widowhood hobby. After starting an innovative continuous variety review, which is copied by other theaters, they begin to lose money. Mrs Henderson suggests they add female nudity similar to the Moulin Rouge in Paris. Tags: world war ii, widow, musical, theatre milieu, nacktrevue, variety"} +{"id": "146198", "title": "Triple 9", "year": 2016, "duration_min": 115, "rating": 5.6, "genres": "Action, Thriller", "genres_pipe": "|Action|Thriller|", "keywords": "heist, betrayal, dirty cop", "tags_pipe": "|heist|betrayal|dirty cop|", "overview": "A gang of criminals and corrupt cops plan the murder of a police officer in order to pull off their biggest heist yet across town.", "text_for_embedding": "Triple 9 (2016). Genres: Action, Thriller. A gang of criminals and corrupt cops plan the murder of a police officer in order to pull off their biggest heist yet across town.. Tags: heist, betrayal, dirty cop"} +{"id": "2639", "title": "Deconstructing Harry", "year": 1997, "duration_min": 96, "rating": 7.3, "genres": "Comedy, Drama", "genres_pipe": "|Comedy|Drama|", "keywords": "new york, writer's block, insanity, independent film, author", "tags_pipe": "|new york|writer's block|insanity|independent film|author|", "overview": "This film tells the story of a successful writer called Harry Block, played by Allen himself, who draws inspiration from people he knows in real-life, and from events that happened to him, sometimes causing these people to become alienated from him as a result.", "text_for_embedding": "Deconstructing Harry (1997). Genres: Comedy, Drama. This film tells the story of a successful writer called Harry Block, played by Allen himself, who draws inspiration from people he knows in real-life, and from events that happened to him, sometimes causing these people to become alienated from him as a result.. Tags: new york, writer's block, insanity, independent film, author"} +{"id": "10563", "title": "Three to Tango", "year": 1999, "duration_min": 98, "rating": 5.4, "genres": "Comedy, Romance", "genres_pipe": "|Comedy|Romance|", "keywords": "gay, dance, architect, artist, tango, business man, spying, partnership, chief executive officer, deception, business partner, affair", "tags_pipe": "|gay|dance|architect|artist|tango|business man|spying|partnership|chief executive officer|deception|business partner|affair|", "overview": "Oscar and Peter land a career-making opportunity when a Chicago tycoon chooses them to compete for the design of a cultural center. The tycoon mistakenly believes that Oscar is gay and has him spy on his mistress Amy. Oscar goes along with it and ends up falling in love with Amy.", "text_for_embedding": "Three to Tango (1999). Genres: Comedy, Romance. Oscar and Peter land a career-making opportunity when a Chicago tycoon chooses them to compete for the design of a cultural center. The tycoon mistakenly believes that Oscar is gay and has him spy on his mistress Amy. Oscar goes along with it and ends up falling in love with Amy.. Tags: gay, dance, architect, artist, tango, business man, spying, partnership, chief executive officer, deception, business partner, affair"} +{"id": "295964", "title": "Burnt", "year": 2015, "duration_min": 100, "rating": 6.3, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "london england, cook, restaurant, diva, career, kitchen, redemption, drug, drug addict, chef, come back", "tags_pipe": "|london england|cook|restaurant|diva|career|kitchen|redemption|drug|drug addict|chef|come back|", "overview": "Adam Jones is a Chef who destroyed his career with drugs and diva behavior. He cleans up and returns to London, determined to redeem himself by spearheading a top restaurant that can gain three Michelin stars.", "text_for_embedding": "Burnt (2015). Genres: Drama. Adam Jones is a Chef who destroyed his career with drugs and diva behavior. He cleans up and returns to London, determined to redeem himself by spearheading a top restaurant that can gain three Michelin stars.. Tags: london england, cook, restaurant, diva, career, kitchen, redemption, drug, drug addict, chef, come back"} +{"id": "5971", "title": "We're No Angels", "year": 1989, "duration_min": 106, "rating": 5.6, "genres": "Comedy, Crime, Drama", "genres_pipe": "|Comedy|Crime|Drama|", "keywords": "prison, prisoner, independent film", "tags_pipe": "|prison|prisoner|independent film|", "overview": "Two escaped cons only prayer to escape is to pass themselves off as priests and pass by the police blockade at the border into the safety of Canada.", "text_for_embedding": "We're No Angels (1989). Genres: Comedy, Crime, Drama. Two escaped cons only prayer to escape is to pass themselves off as priests and pass by the police blockade at the border into the safety of Canada.. Tags: prison, prisoner, independent film"} +{"id": "9716", "title": "Everyone Says I Love You", "year": 1996, "duration_min": 101, "rating": 6.5, "genres": "Music, Comedy, Romance", "genres_pipe": "|Music|Comedy|Romance|", "keywords": "paris, venice, adultery, robbery, lovesickness, dancer, airport, broken engagement, infidelity, montmartre, winter, marriage proposal, new love, restaurant, gondola", "tags_pipe": "|paris|venice|adultery|robbery|lovesickness|dancer|airport|broken engagement|infidelity|montmartre|winter|marriage proposal|new love|restaurant|gondola|", "overview": "A New York girl sets her father up with a beautiful woman in a shaky marriage while her half sister gets engaged.", "text_for_embedding": "Everyone Says I Love You (1996). Genres: Music, Comedy, Romance. A New York girl sets her father up with a beautiful woman in a shaky marriage while her half sister gets engaged.. Tags: paris, venice, adultery, robbery, lovesickness, dancer, airport, broken engagement, infidelity, montmartre, winter, marriage proposal, new love, restaurant, gondola"} +{"id": "11835", "title": "Death Sentence", "year": 2007, "duration_min": 105, "rating": 6.5, "genres": "Action, Crime, Drama, Thriller", "genres_pipe": "|Action|Crime|Drama|Thriller|", "keywords": "loss of son, repayment, revenge, murder, gang, police officer killed, hospital, extreme violence, justice, hoodlum, semiautomatic pistol, finger gun", "tags_pipe": "|loss of son|repayment|revenge|murder|gang|police officer killed|hospital|extreme violence|justice|hoodlum|semiautomatic pistol|finger gun|", "overview": "Nick Hume is a mild-mannered executive with a perfect life, until one gruesome night he witnesses something that changes him forever. Transformed by grief, Hume eventually comes to the disturbing conclusion that no length is too great when protecting his family.", "text_for_embedding": "Death Sentence (2007). Genres: Action, Crime, Drama, Thriller. Nick Hume is a mild-mannered executive with a perfect life, until one gruesome night he witnesses something that changes him forever. Transformed by grief, Hume eventually comes to the disturbing conclusion that no length is too great when protecting his family.. Tags: loss of son, repayment, revenge, murder, gang, police officer killed, hospital, extreme violence, justice, hoodlum, semiautomatic pistol, finger gun"} +{"id": "26171", "title": "Everybody's Fine", "year": 2009, "duration_min": 99, "rating": 6.5, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "family relationships, doctor, retired, visit, widower, duringcreditsstinger, heart trouble", "tags_pipe": "|family relationships|doctor|retired|visit|widower|duringcreditsstinger|heart trouble|", "overview": "Eight months after the death of his wife, Frank Goode looks forward to a reunion with his four adult children. When all of them cancel their visits at the last minute, Frank, against the advice of his doctor, sets out on a road trip to reconnect with his offspring. As he visits each one in turn, Frank finds that his children's lives are not quite as picture-perfect as they've made them out to be.", "text_for_embedding": "Everybody's Fine (2009). Genres: Drama. Eight months after the death of his wife, Frank Goode looks forward to a reunion with his four adult children. When all of them cancel their visits at the last minute, Frank, against the advice of his doctor, sets out on a road trip to reconnect with his offspring. As he visits each one in turn, Frank finds that his children's lives are not quite as picture-perfect as they've made them out to be.. Tags: family relationships, doctor, retired, visit, widower, duringcreditsstinger, heart trouble"} +{"id": "31117", "title": "Superbabies: Baby Geniuses 2", "year": 2004, "duration_min": 88, "rating": 1.9, "genres": "Comedy, Family", "genres_pipe": "|Comedy|Family|", "keywords": "baby, baseball, scientific study, computer, genius, mind control, good vs evil, baby geniuses", "tags_pipe": "|baby|baseball|scientific study|computer|genius|mind control|good vs evil|baby geniuses|", "overview": "Following on from the plot of the last movie, babies can communicate with each other using 'baby talk', and have an innate knowledge of the secrets of the universe. The baby geniuses become involved in a scheme by media mogul Bill Biscane (Jon Voight). Helping the geniuses is a legendary superbaby named Kahuna. He joins up with several other babies in an attempt to stop Biscane, who intends to use a state-of-the-art satellite system to control the world's population.", "text_for_embedding": "Superbabies: Baby Geniuses 2 (2004). Genres: Comedy, Family. Following on from the plot of the last movie, babies can communicate with each other using 'baby talk', and have an innate knowledge of the secrets of the universe. The baby geniuses become involved in a scheme by media mogul Bill Biscane (Jon Voight). Helping the geniuses is a legendary superbaby named Kahuna. He joins up with several other babies in an attempt to stop Biscane, who intends to use a state-of-the-art satellite system to control the world's population.. Tags: baby, baseball, scientific study, computer, genius, mind control, good vs evil, baby geniuses"} +{"id": "9074", "title": "The Man", "year": 2005, "duration_min": 83, "rating": 5.4, "genres": "Action, Comedy, Crime", "genres_pipe": "|Action|Comedy|Crime|", "keywords": "mistake in person, false identity, arms dealer, cop, police officer, dentist", "tags_pipe": "|mistake in person|false identity|arms dealer|cop|police officer|dentist|", "overview": "Special Agent Derrick Vann is a man out to get the man who killed his partner but a case of mistaken identity leads him to Andy Fidler, a salesman with too many questions and a knack of getting in Vanns way", "text_for_embedding": "The Man (2005). Genres: Action, Comedy, Crime. Special Agent Derrick Vann is a man out to get the man who killed his partner but a case of mistaken identity leads him to Andy Fidler, a salesman with too many questions and a knack of getting in Vanns way. Tags: mistake in person, false identity, arms dealer, cop, police officer, dentist"} +{"id": "14396", "title": "Code Name: The Cleaner", "year": 2007, "duration_min": 84, "rating": 4.7, "genres": "Action, Comedy, Crime", "genres_pipe": "|Action|Comedy|Crime|", "keywords": "", "tags_pipe": "", "overview": "Cedric the Entertainer plays Jake, a seemingly regular guy who has no idea who he is after being hit over the head by mysterious assailants. When he finds himself entangled in a government conspiracy, Jake and his pursuers become convinced that he is an undercover agent.", "text_for_embedding": "Code Name: The Cleaner (2007). Genres: Action, Comedy, Crime. Cedric the Entertainer plays Jake, a seemingly regular guy who has no idea who he is after being hit over the head by mysterious assailants. When he finds himself entangled in a government conspiracy, Jake and his pursuers become convinced that he is an undercover agent.. Tags: "} +{"id": "15673", "title": "Connie and Carla", "year": 2004, "duration_min": 98, "rating": 6.4, "genres": "Comedy", "genres_pipe": "|Comedy|", "keywords": "gay, drag queen, mistaken identity", "tags_pipe": "|gay|drag queen|mistaken identity|", "overview": "After accidentally witnessing a mafia hit in the Windy City, gal pals Connie and Carla skip town for L.A., where they go way undercover as singers working the city's dinner theater circuit ... as drag queens. Now, it's not enough that they become big hits on the scene; things get extra-weird when Connie meets Jeff -- a guy she'd like to be a woman with", "text_for_embedding": "Connie and Carla (2004). Genres: Comedy. After accidentally witnessing a mafia hit in the Windy City, gal pals Connie and Carla skip town for L.A., where they go way undercover as singers working the city's dinner theater circuit ... as drag queens. Now, it's not enough that they become big hits on the scene; things get extra-weird when Connie meets Jeff -- a guy she'd like to be a woman with. Tags: gay, drag queen, mistaken identity"} +{"id": "42618", "title": "Sweet Charity", "year": 1969, "duration_min": 149, "rating": 6.5, "genres": "Comedy, Drama, Music, Romance", "genres_pipe": "|Comedy|Drama|Music|Romance|", "keywords": "broken engagement, charity, celebrity, tragic love, dancehall girl, based on stage musical, based on film", "tags_pipe": "|broken engagement|charity|celebrity|tragic love|dancehall girl|based on stage musical|based on film|", "overview": "Taxi dancer Charity continues to have Faith in the human race despite apparently endless disappointments at its hands, and Hope that she will finally meet the nice young man to romance her away from her sleazy life. Maybe, just maybe, handsome Oscar will be the one to do it.", "text_for_embedding": "Sweet Charity (1969). Genres: Comedy, Drama, Music, Romance. Taxi dancer Charity continues to have Faith in the human race despite apparently endless disappointments at its hands, and Hope that she will finally meet the nice young man to romance her away from her sleazy life. Maybe, just maybe, handsome Oscar will be the one to do it.. Tags: broken engagement, charity, celebrity, tragic love, dancehall girl, based on stage musical, based on film"} +{"id": "171274", "title": "Inherent Vice", "year": 2014, "duration_min": 148, "rating": 6.5, "genres": "Comedy, Romance, Crime, Drama, Mystery", "genres_pipe": "|Comedy|Romance|Crime|Drama|Mystery|", "keywords": "based on novel, 1970s, private investigator, smoking marijuana, los angeles, 1960s", "tags_pipe": "|based on novel|1970s|private investigator|smoking marijuana|los angeles|1960s|", "overview": "In Los Angeles at the turn of the 1970s, drug-fueled detective Larry \"Doc\" Sportello investigates the disappearance of an ex-girlfriend.", "text_for_embedding": "Inherent Vice (2014). Genres: Comedy, Romance, Crime, Drama, Mystery. In Los Angeles at the turn of the 1970s, drug-fueled detective Larry \"Doc\" Sportello investigates the disappearance of an ex-girlfriend.. Tags: based on novel, 1970s, private investigator, smoking marijuana, los angeles, 1960s"} +{"id": "24432", "title": "Doogal", "year": 2006, "duration_min": 85, "rating": 3.2, "genres": "Family", "genres_pipe": "|Family|", "keywords": "", "tags_pipe": "", "overview": "This is the story of Doogal, an adorable candy-loving mutt who goes on a mission to save the world.", "text_for_embedding": "Doogal (2006). Genres: Family. This is the story of Doogal, an adorable candy-loving mutt who goes on a mission to save the world.. Tags: "} +{"id": "109417", "title": "Battle of the Year", "year": 2013, "duration_min": 110, "rating": 5.9, "genres": "Music, Drama", "genres_pipe": "|Music|Drama|", "keywords": "musical, 3d", "tags_pipe": "|musical|3d|", "overview": "A down-on-his-luck coach is hired to prepare a team of the best American dancers for an international tournament that attracts all the best crews from around the world, but the Americans haven't won in fifteen years.", "text_for_embedding": "Battle of the Year (2013). Genres: Music, Drama. A down-on-his-luck coach is hired to prepare a team of the best American dancers for an international tournament that attracts all the best crews from around the world, but the Americans haven't won in fifteen years.. Tags: musical, 3d"} +{"id": "13948", "title": "An American Carol", "year": 2008, "duration_min": 83, "rating": 4.1, "genres": "Comedy, Fantasy", "genres_pipe": "|Comedy|Fantasy|", "keywords": "terrorist, parody, documentary filmmaker, sattire", "tags_pipe": "|terrorist|parody|documentary filmmaker|sattire|", "overview": "In An American Carol a cynical, Anti-American Hollywood filmmaker sets out on a crusade to abolish the 4th of July holiday. He is visited by three spirits who take him on a hilarious journey in an attempt to show him the true meaning of America.", "text_for_embedding": "An American Carol (2008). Genres: Comedy, Fantasy. In An American Carol a cynical, Anti-American Hollywood filmmaker sets out on a crusade to abolish the 4th of July holiday. He is visited by three spirits who take him on a hilarious journey in an attempt to show him the true meaning of America.. Tags: terrorist, parody, documentary filmmaker, sattire"} +{"id": "106747", "title": "Machete Kills", "year": 2013, "duration_min": 107, "rating": 5.3, "genres": "Action, Crime, Thriller", "genres_pipe": "|Action|Crime|Thriller|", "keywords": "mexico, white house, nuclear missile, machete, outer space", "tags_pipe": "|mexico|white house|nuclear missile|machete|outer space|", "overview": "Ex-Federale agent Machete is recruited by the President of the United States for a mission which would be impossible for any mortal man – he must take down a madman revolutionary and an eccentric billionaire arms dealer who has hatched a plan to spread war and anarchy across the planet.", "text_for_embedding": "Machete Kills (2013). Genres: Action, Crime, Thriller. Ex-Federale agent Machete is recruited by the President of the United States for a mission which would be impossible for any mortal man – he must take down a madman revolutionary and an eccentric billionaire arms dealer who has hatched a plan to spread war and anarchy across the planet.. Tags: mexico, white house, nuclear missile, machete, outer space"} +{"id": "10929", "title": "Willard", "year": 2003, "duration_min": 100, "rating": 5.8, "genres": "Horror", "genres_pipe": "|Horror|", "keywords": "bad boss, evil mother, revenge, humiliation, obedience", "tags_pipe": "|bad boss|evil mother|revenge|humiliation|obedience|", "overview": "Desperate for companionship, the repressed Willard befriends a group of rats that inhabit his late father's deteriorating mansion. In these furry creatures, Willard finds temporary refuge from daily abuse at the hands of his bedridden mother and his father's old partner, Frank. Soon it becomes clear that the brood of rodents is ready and willing to exact a vicious, deadly revenge on anyone who dares to bully their sensitive new master.", "text_for_embedding": "Willard (2003). Genres: Horror. Desperate for companionship, the repressed Willard befriends a group of rats that inhabit his late father's deteriorating mansion. In these furry creatures, Willard finds temporary refuge from daily abuse at the hands of his bedridden mother and his father's old partner, Frank. Soon it becomes clear that the brood of rodents is ready and willing to exact a vicious, deadly revenge on anyone who dares to bully their sensitive new master.. Tags: bad boss, evil mother, revenge, humiliation, obedience"} +{"id": "14220", "title": "Strange Wilderness", "year": 2008, "duration_min": 87, "rating": 4.7, "genres": "Comedy", "genres_pipe": "|Comedy|", "keywords": "tv show, bigfoot", "tags_pipe": "|tv show|bigfoot|", "overview": "With the ratings dropping for a wilderness-themed TV show, two animal fans go to the Andes in search of Bigfoot.", "text_for_embedding": "Strange Wilderness (2008). Genres: Comedy. With the ratings dropping for a wilderness-themed TV show, two animal fans go to the Andes in search of Bigfoot.. Tags: tv show, bigfoot"} +{"id": "46435", "title": "Topsy-Turvy", "year": 1999, "duration_min": 160, "rating": 6.7, "genres": "Comedy, Drama, Music", "genres_pipe": "|Comedy|Drama|Music|", "keywords": "prostitute, musical, biography, telephone call, cigar smoking, drink,  gilbert and sullivan, gilbert and sullivan's princess ida, piano duet, lyricist, exhibition", "tags_pipe": "|prostitute|musical|biography|telephone call|cigar smoking|drink| gilbert and sullivan|gilbert and sullivan's princess ida|piano duet|lyricist|exhibition|", "overview": "After their production \"Princess Ida\" meets with less-than-stunning reviews, the relationship between Gilbert and Sullivan is strained to breaking. Their friends and associates attempt to get the two to work together again, which opens the way to \"The Mikado,\" one of the duo's greatest successes.", "text_for_embedding": "Topsy-Turvy (1999). Genres: Comedy, Drama, Music. After their production \"Princess Ida\" meets with less-than-stunning reviews, the relationship between Gilbert and Sullivan is strained to breaking. Their friends and associates attempt to get the two to work together again, which opens the way to \"The Mikado,\" one of the duo's greatest successes.. Tags: prostitute, musical, biography, telephone call, cigar smoking, drink,  gilbert and sullivan, gilbert and sullivan's princess ida, piano duet, lyricist, exhibition"} +{"id": "256962", "title": "Little Boy", "year": 2015, "duration_min": 106, "rating": 7.0, "genres": "Comedy, Drama, War", "genres_pipe": "|Comedy|Drama|War|", "keywords": "japanese, world war ii, spirituality", "tags_pipe": "|japanese|world war ii|spirituality|", "overview": "An eight-year-old boy is willing to do whatever it takes to end World War II so he can bring his father home. The story reveals the indescribable love a father has for his little boy and the love a son has for his father.", "text_for_embedding": "Little Boy (2015). Genres: Comedy, Drama, War. An eight-year-old boy is willing to do whatever it takes to end World War II so he can bring his father home. The story reveals the indescribable love a father has for his little boy and the love a son has for his father.. Tags: japanese, world war ii, spirituality"} +{"id": "48231", "title": "A Dangerous Method", "year": 2011, "duration_min": 99, "rating": 6.2, "genres": "Drama, Thriller", "genres_pipe": "|Drama|Thriller|", "keywords": "based on novel, psychoanalysis, sigmund freud, biography, spanking, based on play, cigar smoking, cheating husband, based on true events", "tags_pipe": "|based on novel|psychoanalysis|sigmund freud|biography|spanking|based on play|cigar smoking|cheating husband|based on true events|", "overview": "Seduced by the challenge of an impossible case, the driven Dr. Carl Jung takes the unbalanced yet beautiful Sabina Spielrein as his patient. Jung’s weapon is the method of his master, the renowned Sigmund Freud. Both men fall under Sabina’s spell.", "text_for_embedding": "A Dangerous Method (2011). Genres: Drama, Thriller. Seduced by the challenge of an impossible case, the driven Dr. Carl Jung takes the unbalanced yet beautiful Sabina Spielrein as his patient. Jung’s weapon is the method of his master, the renowned Sigmund Freud. Both men fall under Sabina’s spell.. Tags: based on novel, psychoanalysis, sigmund freud, biography, spanking, based on play, cigar smoking, cheating husband, based on true events"} +{"id": "3509", "title": "A Scanner Darkly", "year": 2006, "duration_min": 100, "rating": 6.8, "genres": "Animation, Science Fiction, Thriller", "genres_pipe": "|Animation|Science Fiction|Thriller|", "keywords": "california, detective, based on novel, dream, undercover, cocaine, brain, exam, future, test, dystopia, assignment, cyberpunk, drug, surveillance", "tags_pipe": "|california|detective|based on novel|dream|undercover|cocaine|brain|exam|future|test|dystopia|assignment|cyberpunk|drug|surveillance|", "overview": "An undercover cop in a not-too-distant future becomes involved with a dangerous new drug and begins to lose his own identity as a result.", "text_for_embedding": "A Scanner Darkly (2006). Genres: Animation, Science Fiction, Thriller. An undercover cop in a not-too-distant future becomes involved with a dangerous new drug and begins to lose his own identity as a result.. Tags: california, detective, based on novel, dream, undercover, cocaine, brain, exam, future, test, dystopia, assignment, cyberpunk, drug, surveillance"} +{"id": "82684", "title": "Chasing Mavericks", "year": 2012, "duration_min": 117, "rating": 7.0, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "wave, surfing, sport, mentor protégé relationship, santa cruz california", "tags_pipe": "|wave|surfing|sport|mentor protégé relationship|santa cruz california|", "overview": "Surfer Jay Moriarity sets out to ride the Northern California break known as Mavericks.", "text_for_embedding": "Chasing Mavericks (2012). Genres: Drama. Surfer Jay Moriarity sets out to ride the Northern California break known as Mavericks.. Tags: wave, surfing, sport, mentor protégé relationship, santa cruz california"} +{"id": "12142", "title": "Alone in the Dark", "year": 2005, "duration_min": 96, "rating": 3.1, "genres": "Action, Fantasy, Horror, Thriller", "genres_pipe": "|Action|Fantasy|Horror|Thriller|", "keywords": "detective, monster, professor, island, museum, darkness, alien life-form, paranormal, artifact, slow motion scene, flashback sequence, zombie, based on video game, occultism", "tags_pipe": "|detective|monster|professor|island|museum|darkness|alien life-form|paranormal|artifact|slow motion scene|flashback sequence|zombie|based on video game|occultism|", "overview": "Edward Carnby is a private investigator specializing in unexplainable supernatural phenomena. His cases delve into the dark corners of the world, searching for truth in the occult remnants of ancient civilizations. Now, the greatest mystery of his past is about to become the most dangerous case he has ever faced.", "text_for_embedding": "Alone in the Dark (2005). Genres: Action, Fantasy, Horror, Thriller. Edward Carnby is a private investigator specializing in unexplainable supernatural phenomena. His cases delve into the dark corners of the world, searching for truth in the occult remnants of ancient civilizations. Now, the greatest mystery of his past is about to become the most dangerous case he has ever faced.. Tags: detective, monster, professor, island, museum, darkness, alien life-form, paranormal, artifact, slow motion scene, flashback sequence, zombie, based on video game, occultism"} +{"id": "23367", "title": "Bandslam", "year": 2009, "duration_min": 111, "rating": 5.4, "genres": "Comedy, Drama, Family, Music", "genres_pipe": "|Comedy|Drama|Family|Music|", "keywords": "new jersey, musical, battle of the bands, teenager, rock band", "tags_pipe": "|new jersey|musical|battle of the bands|teenager|rock band|", "overview": "A high school social outcast and the popular girl bond through a shared love of music.", "text_for_embedding": "Bandslam (2009). Genres: Comedy, Drama, Family, Music. A high school social outcast and the popular girl bond through a shared love of music.. Tags: new jersey, musical, battle of the bands, teenager, rock band"} +{"id": "10740", "title": "Birth", "year": 2004, "duration_min": 100, "rating": 5.9, "genres": "Drama, Mystery, Thriller", "genres_pipe": "|Drama|Mystery|Thriller|", "keywords": "loss of husband, reincarnation, friends, little boy, independent film, wedding", "tags_pipe": "|loss of husband|reincarnation|friends|little boy|independent film|wedding|", "overview": "It took Anna 10 years to recover from the death of her husband, Sean, but now she's on the verge of marrying her boyfriend, Joseph, and finally moving on. However, on the night of her engagement party, a young boy named Sean turns up, saying he is her dead husband reincarnated. At first she ignores the child, but his knowledge of her former husband's life is uncanny, leading her to believe that he might be telling the truth.", "text_for_embedding": "Birth (2004). Genres: Drama, Mystery, Thriller. It took Anna 10 years to recover from the death of her husband, Sean, but now she's on the verge of marrying her boyfriend, Joseph, and finally moving on. However, on the night of her engagement party, a young boy named Sean turns up, saying he is her dead husband reincarnated. At first she ignores the child, but his knowledge of her former husband's life is uncanny, leading her to believe that he might be telling the truth.. Tags: loss of husband, reincarnation, friends, little boy, independent film, wedding"} +{"id": "241239", "title": "A Most Violent Year", "year": 2014, "duration_min": 125, "rating": 6.5, "genres": "Crime, Drama, Thriller", "genres_pipe": "|Crime|Drama|Thriller|", "keywords": "corruption, capitalism, winter, american dream, immigrant, business ethics, truck, oil, lawyer, new york city, loan shark, coat, tunnel, 1980s, husband wife relationship", "tags_pipe": "|corruption|capitalism|winter|american dream|immigrant|business ethics|truck|oil|lawyer|new york city|loan shark|coat|tunnel|1980s|husband wife relationship|", "overview": "A thriller set in New York City during the winter of 1981, statistically one of the most violent years in the city's history, and centered on a the lives of an immigrant and his family trying to expand their business and capitalize on opportunities as the rampant violence, decay, and corruption of the day drag them in and threaten to destroy all they have built.", "text_for_embedding": "A Most Violent Year (2014). Genres: Crime, Drama, Thriller. A thriller set in New York City during the winter of 1981, statistically one of the most violent years in the city's history, and centered on a the lives of an immigrant and his family trying to expand their business and capitalize on opportunities as the rampant violence, decay, and corruption of the day drag them in and threaten to destroy all they have built.. Tags: corruption, capitalism, winter, american dream, immigrant, business ethics, truck, oil, lawyer, new york city, loan shark, coat, tunnel, 1980s, husband wife relationship"} +{"id": "14582", "title": "Passchendaele", "year": 2008, "duration_min": 114, "rating": 6.3, "genres": "Drama, Romance, War, History", "genres_pipe": "|Drama|Romance|War|History|", "keywords": "nurse, battle, platoon, veteran, recruitment", "tags_pipe": "|nurse|battle|platoon|veteran|recruitment|", "overview": "Sergeant Michael Dunne fights in the 10th Battalion, AKA The \"Fighting Tenth\" with the 1st Canadian Division and participated in all major Canadian battles of the war, and set the record for highest number of individual bravery awards for a single battle", "text_for_embedding": "Passchendaele (2008). Genres: Drama, Romance, War, History. Sergeant Michael Dunne fights in the 10th Battalion, AKA The \"Fighting Tenth\" with the 1st Canadian Division and participated in all major Canadian battles of the war, and set the record for highest number of individual bravery awards for a single battle. Tags: nurse, battle, platoon, veteran, recruitment"} +{"id": "14914", "title": "Flash of Genius", "year": 2008, "duration_min": 119, "rating": 6.3, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "biography", "tags_pipe": "|biography|", "overview": "In this David vs. Goliath drama based on a true story, college professor Robert Kearns (Greg Kinnear) goes up against the giants of the auto industry when they fail to give him credit for inventing intermittent windshield wipers. Kearns doggedly pursues recognition for his invention, as well as the much-deserved financial rewards for the sake of his wife (Lauren Graham) and six kids.", "text_for_embedding": "Flash of Genius (2008). Genres: Drama. In this David vs. Goliath drama based on a true story, college professor Robert Kearns (Greg Kinnear) goes up against the giants of the auto industry when they fail to give him credit for inventing intermittent windshield wipers. Kearns doggedly pursues recognition for his invention, as well as the much-deserved financial rewards for the sake of his wife (Lauren Graham) and six kids.. Tags: biography"} +{"id": "3902", "title": "I'm Not There.", "year": 2007, "duration_min": 135, "rating": 6.6, "genres": "Drama, Music", "genres_pipe": "|Drama|Music|", "keywords": "rock and roll, music style, success, john f. kennedy, advancement, bob dylan, rock, biography, music, beatnik, motor-bike accident", "tags_pipe": "|rock and roll|music style|success|john f. kennedy|advancement|bob dylan|rock|biography|music|beatnik|motor-bike accident|", "overview": "Six actors portray six personas of music legend Bob Dylan in scenes depicting various stages of his life, chronicling his rise from unknown folksinger to international icon and revealing how Dylan constantly reinvented himself.", "text_for_embedding": "I'm Not There. (2007). Genres: Drama, Music. Six actors portray six personas of music legend Bob Dylan in scenes depicting various stages of his life, chronicling his rise from unknown folksinger to international icon and revealing how Dylan constantly reinvented himself.. Tags: rock and roll, music style, success, john f. kennedy, advancement, bob dylan, rock, biography, music, beatnik, motor-bike accident"} +{"id": "77948", "title": "The Cold Light of Day", "year": 2012, "duration_min": 93, "rating": 4.8, "genres": "Action, Thriller", "genres_pipe": "|Action|Thriller|", "keywords": "kidnapping, spying, government", "tags_pipe": "|kidnapping|spying|government|", "overview": "A young American uncovers a conspiracy during his attempt to save his family, that was kidnapped while on vacation in Spain.", "text_for_embedding": "The Cold Light of Day (2012). Genres: Action, Thriller. A young American uncovers a conspiracy during his attempt to save his family, that was kidnapped while on vacation in Spain.. Tags: kidnapping, spying, government"} +{"id": "21755", "title": "The Brothers Bloom", "year": 2008, "duration_min": 114, "rating": 6.8, "genres": "Adventure, Comedy, Drama, Romance", "genres_pipe": "|Adventure|Comedy|Drama|Romance|", "keywords": "con man, estafa", "tags_pipe": "|con man|estafa|", "overview": "The Brothers Bloom are the best con men in the world, swindling millionaires with complex scenarios of lust and intrigue. Now they've decided to take on one last job – showing a beautiful and eccentric heiress the time of her life with a romantic adventure that takes them around the world.", "text_for_embedding": "The Brothers Bloom (2008). Genres: Adventure, Comedy, Drama, Romance. The Brothers Bloom are the best con men in the world, swindling millionaires with complex scenarios of lust and intrigue. Now they've decided to take on one last job – showing a beautiful and eccentric heiress the time of her life with a romantic adventure that takes them around the world.. Tags: con man, estafa"} +{"id": "4960", "title": "Synecdoche, New York", "year": 2008, "duration_min": 124, "rating": 7.4, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "new york, man-woman relation, writer", "tags_pipe": "|new york|man-woman relation|writer|", "overview": "A theater director struggles with his work, and the women in his life, as he attempts to create a life-size replica of New York inside a warehouse as part of his new play.", "text_for_embedding": "Synecdoche, New York (2008). Genres: Drama. A theater director struggles with his work, and the women in his life, as he attempts to create a life-size replica of New York inside a warehouse as part of his new play.. Tags: new york, man-woman relation, writer"} +{"id": "128", "title": "Princess Mononoke", "year": 1997, "duration_min": 134, "rating": 8.2, "genres": "Adventure, Fantasy, Animation", "genres_pipe": "|Adventure|Fantasy|Animation|", "keywords": "fight, wolf, village and town, iron, pan, wild boar, territory, friendship, princess, good vs evil, anime", "tags_pipe": "|fight|wolf|village and town|iron|pan|wild boar|territory|friendship|princess|good vs evil|anime|", "overview": "Ashitaka, a prince of the disappearing Ainu tribe, is cursed by a demonized boar god and must journey to the west to find a cure. Along the way, he encounters San, a young human woman fighting to protect the forest, and Lady Eboshi, who is trying to destroy it. Ashitaka must find a way to bring balance to this conflict.", "text_for_embedding": "Princess Mononoke (1997). Genres: Adventure, Fantasy, Animation. Ashitaka, a prince of the disappearing Ainu tribe, is cursed by a demonized boar god and must journey to the west to find a cure. Along the way, he encounters San, a young human woman fighting to protect the forest, and Lady Eboshi, who is trying to destroy it. Ashitaka must find a way to bring balance to this conflict.. Tags: fight, wolf, village and town, iron, pan, wild boar, territory, friendship, princess, good vs evil, anime"} +{"id": "14652", "title": "Bon voyage", "year": 2003, "duration_min": 114, "rating": 5.7, "genres": "Comedy, Drama, Foreign", "genres_pipe": "|Comedy|Drama|Foreign|", "keywords": "", "tags_pipe": "", "overview": "Isabelle Adjani and Gerard Depardieu star in director Jean-Paul Rappenau's amusing farce set on the eve of World War II, which follows the intersecting lives of four Parisians as they cope with the impending invasion of their city by German forces. As the French government braces for impact, the lives of a young writer, a vain movie star, a French politician and a young scientist are examined as they attempt to deal with war and evade German spies.", "text_for_embedding": "Bon voyage (2003). Genres: Comedy, Drama, Foreign. Isabelle Adjani and Gerard Depardieu star in director Jean-Paul Rappenau's amusing farce set on the eve of World War II, which follows the intersecting lives of four Parisians as they cope with the impending invasion of their city by German forces. As the French government braces for impact, the lives of a young writer, a vain movie star, a French politician and a young scientist are examined as they attempt to deal with war and evade German spies.. Tags: "} +{"id": "40932", "title": "Can't Stop the Music", "year": 1980, "duration_min": 124, "rating": 4.9, "genres": "Comedy, Music", "genres_pipe": "|Comedy|Music|", "keywords": "camp, disco, woman director, village people", "tags_pipe": "|camp|disco|woman director|village people|", "overview": "Movie about the Village People filmed in a documentary style.", "text_for_embedding": "Can't Stop the Music (1980). Genres: Comedy, Music. Movie about the Village People filmed in a documentary style.. Tags: camp, disco, woman director, village people"} +{"id": "16608", "title": "The Proposition", "year": 2005, "duration_min": 104, "rating": 7.1, "genres": "Action, Adventure, Crime, Drama, Thriller, Western", "genres_pipe": "|Action|Adventure|Crime|Drama|Thriller|Western|", "keywords": "gallows, australia, psychopath, outlaw, misanthrope, gang, shootout, sadist, brutality, violence, hideout, retribution, flogging, whipping, sunset", "tags_pipe": "|gallows|australia|psychopath|outlaw|misanthrope|gang|shootout|sadist|brutality|violence|hideout|retribution|flogging|whipping|sunset|", "overview": "Set in the Australian outback in the 1880s, the movie follows the series of events following the horrific rape and murder of the Hopkins family, allegedly committed by the infamous Burns brothers gang. Captain Morris Stanley captures Charlie Burns and gives him 9 days to kill his older dangerous psychopathic brother, or else they'll hang his younger mentally slow brother on Christmas Day.", "text_for_embedding": "The Proposition (2005). Genres: Action, Adventure, Crime, Drama, Thriller, Western. Set in the Australian outback in the 1880s, the movie follows the series of events following the horrific rape and murder of the Hopkins family, allegedly committed by the infamous Burns brothers gang. Captain Morris Stanley captures Charlie Burns and gives him 9 days to kill his older dangerous psychopathic brother, or else they'll hang his younger mentally slow brother on Christmas Day.. Tags: gallows, australia, psychopath, outlaw, misanthrope, gang, shootout, sadist, brutality, violence, hideout, retribution, flogging, whipping, sunset"} +{"id": "334531", "title": "My All American", "year": 2015, "duration_min": 118, "rating": 6.8, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "american football, biography, sport, championship", "tags_pipe": "|american football|biography|sport|championship|", "overview": "Freddie Steinmark, an underdog on the gridiron, faces the toughest challenge of his life after leading his team to a championship season.", "text_for_embedding": "My All American (2015). Genres: Drama. Freddie Steinmark, an underdog on the gridiron, faces the toughest challenge of his life after leading his team to a championship season.. Tags: american football, biography, sport, championship"} +{"id": "32316", "title": "Marci X", "year": 2003, "duration_min": 84, "rating": 3.3, "genres": "Comedy", "genres_pipe": "|Comedy|", "keywords": "", "tags_pipe": "", "overview": "A Jewish-American Princess is forced to take control of a hard-core hip-hop record label and tries to rein the one of the label's most controversial rappers.", "text_for_embedding": "Marci X (2003). Genres: Comedy. A Jewish-American Princess is forced to take control of a hard-core hip-hop record label and tries to rein the one of the label's most controversial rappers.. Tags: "} +{"id": "7299", "title": "Equilibrium", "year": 2002, "duration_min": 107, "rating": 6.9, "genres": "Action, Science Fiction, Thriller", "genres_pipe": "|Action|Science Fiction|Thriller|", "keywords": "resistance, fascism, totalitarian regime, destroy, phasing, dystopia, book burning, outlaw, government agent", "tags_pipe": "|resistance|fascism|totalitarian regime|destroy|phasing|dystopia|book burning|outlaw|government agent|", "overview": "In a dystopian future, a totalitarian regime maintains peace by subduing the populace with a drug, and displays of emotion are punishable by death. A man in charge of enforcing the law rises to overthrow the system.", "text_for_embedding": "Equilibrium (2002). Genres: Action, Science Fiction, Thriller. In a dystopian future, a totalitarian regime maintains peace by subduing the populace with a drug, and displays of emotion are punishable by death. A man in charge of enforcing the law rises to overthrow the system.. Tags: resistance, fascism, totalitarian regime, destroy, phasing, dystopia, book burning, outlaw, government agent"} +{"id": "13405", "title": "The Children of Huang Shi", "year": 2008, "duration_min": 125, "rating": 6.5, "genres": "Drama, War", "genres_pipe": "|Drama|War|", "keywords": "based on true story, duringcreditsstinger", "tags_pipe": "|based on true story|duringcreditsstinger|", "overview": "About young British journalist, George Hogg, who with the assistance of a courageous Australian nurse, saves a group of orphaned children during the Japanese occupation of China in 1937.", "text_for_embedding": "The Children of Huang Shi (2008). Genres: Drama, War. About young British journalist, George Hogg, who with the assistance of a courageous Australian nurse, saves a group of orphaned children during the Japanese occupation of China in 1937.. Tags: based on true story, duringcreditsstinger"} +{"id": "19457", "title": "The Yards", "year": 2000, "duration_min": 115, "rating": 6.0, "genres": "Drama, Action, Thriller, Crime", "genres_pipe": "|Drama|Action|Thriller|Crime|", "keywords": "corruption, subway, infiltration, criminal", "tags_pipe": "|corruption|subway|infiltration|criminal|", "overview": "In the rail yards of Queens, contractors repair and rebuild the city's subway cars. These contracts are lucrative, so graft and corruption are rife. When Leo Handler gets out of prison, he finds his aunt married to Frank Olchin, one of the big contractors; he's battling with a minority-owned firm for contracts.", "text_for_embedding": "The Yards (2000). Genres: Drama, Action, Thriller, Crime. In the rail yards of Queens, contractors repair and rebuild the city's subway cars. These contracts are lucrative, so graft and corruption are rife. When Leo Handler gets out of prison, he finds his aunt married to Frank Olchin, one of the big contractors; he's battling with a minority-owned firm for contracts.. Tags: corruption, subway, infiltration, criminal"} +{"id": "112937", "title": "The Oogieloves in the Big Balloon Adventure", "year": 2012, "duration_min": 88, "rating": 2.2, "genres": "Family", "genres_pipe": "|Family|", "keywords": "", "tags_pipe": "", "overview": "It's Schluufy's birthday, and the Oogieloves (Goobie, Zoozie and Toofie), along with their friends J. Edgar, Windy Window and Ruffy, are organizing a party. (Shh! It's a secret.) Everything is going along just perfectly until J. Edgar trips and loses the last five magical balloons in all of Lovelyloveville--OH NO! The Oogiloves set out to find the magical balloons in time to save their friend's party. Along the way, they meet some very interesting characters indeed, including Dotty Rounder (Cloris Leachman), Bobby Wobbly (Carey Elwes), Milky Marvin (Chazz Palminteri), Rosalie Rosebud (Toni Braxton) and Lola and Lero Sombero (Christopher Lloyd and Jaime Pressly). Can these new friends help them recover the magical balloons and get back to the cottage in time to celebrate Schluufy's surprise birthday?", "text_for_embedding": "The Oogieloves in the Big Balloon Adventure (2012). Genres: Family. It's Schluufy's birthday, and the Oogieloves (Goobie, Zoozie and Toofie), along with their friends J. Edgar, Windy Window and Ruffy, are organizing a party. (Shh! It's a secret.) Everything is going along just perfectly until J. Edgar trips and loses the last five magical balloons in all of Lovelyloveville--OH NO! The Oogiloves set out to find the magical balloons in time to save their friend's party. Along the way, they meet some very interesting characters indeed, including Dotty Rounder (Cloris Leachman), Bobby Wobbly (Carey Elwes), Milky Marvin (Chazz Palminteri), Rosalie Rosebud (Toni Braxton) and Lola and Lero Sombero (Christopher Lloyd and Jaime Pressly). Can these new friends help them recover the magical balloons and get back to the cottage in time to celebrate Schluufy's surprise birthday?. Tags: "} +{"id": "314385", "title": "By the Sea", "year": 2015, "duration_min": 122, "rating": 5.4, "genres": "Drama, Romance", "genres_pipe": "|Drama|Romance|", "keywords": "france, hotel, 1970s, grief, travel, unhappiness, marriage problems, woman director", "tags_pipe": "|france|hotel|1970s|grief|travel|unhappiness|marriage problems|woman director|", "overview": "Set in France during the mid-1970s, Vanessa, a former dancer, and her husband Roland, an American writer, travel the country together. They seem to be growing apart, but when they linger in one quiet, seaside town they begin to draw close to some of its more vibrant inhabitants, such as a local bar/café-keeper and a hotel owner.", "text_for_embedding": "By the Sea (2015). Genres: Drama, Romance. Set in France during the mid-1970s, Vanessa, a former dancer, and her husband Roland, an American writer, travel the country together. They seem to be growing apart, but when they linger in one quiet, seaside town they begin to draw close to some of its more vibrant inhabitants, such as a local bar/café-keeper and a hotel owner.. Tags: france, hotel, 1970s, grief, travel, unhappiness, marriage problems, woman director"} +{"id": "8953", "title": "Steamboy", "year": 2004, "duration_min": 126, "rating": 6.4, "genres": "Animation, Fantasy, Science Fiction", "genres_pipe": "|Animation|Fantasy|Science Fiction|", "keywords": "england, inventor, ball, boy, industrial revolution, kugel, steampunk, energy, 19th century, steam", "tags_pipe": "|england|inventor|ball|boy|industrial revolution|kugel|steampunk|energy|19th century|steam|", "overview": "After receiving a package from his Grandfather, Rei, a young inventor living in England during the mid-19th century, has his life thrown into disarray. The package contains a \"Steam Ball\", a device of incredible power, and a letter asking him to guard it. Rei must evade capture from the nefarious \"O'Hara Foundation\" who will do anything to steal the device and use it for their own nefarious means.", "text_for_embedding": "Steamboy (2004). Genres: Animation, Fantasy, Science Fiction. After receiving a package from his Grandfather, Rei, a young inventor living in England during the mid-19th century, has his life thrown into disarray. The package contains a \"Steam Ball\", a device of incredible power, and a letter asking him to guard it. Rei must evade capture from the nefarious \"O'Hara Foundation\" who will do anything to steal the device and use it for their own nefarious means.. Tags: england, inventor, ball, boy, industrial revolution, kugel, steampunk, energy, 19th century, steam"} +{"id": "29078", "title": "The Game of Their Lives", "year": 2005, "duration_min": 101, "rating": 5.8, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "sport", "tags_pipe": "|sport|", "overview": "Based on a true story, this film tells the tale of the 1950 US soccer team who, against all odds, beat England 1 - 0 in the city of Belo Horizonte, Brazil. Although no US team has yet won a World Cup title, this story is about the family traditions and passions which shaped the lives of the players who made up this team of underdogs.", "text_for_embedding": "The Game of Their Lives (2005). Genres: Drama. Based on a true story, this film tells the tale of the 1950 US soccer team who, against all odds, beat England 1 - 0 in the city of Belo Horizonte, Brazil. Although no US team has yet won a World Cup title, this story is about the family traditions and passions which shaped the lives of the players who made up this team of underdogs.. Tags: sport"} +{"id": "46503", "title": "All Good Things", "year": 2010, "duration_min": 101, "rating": 5.9, "genres": "Drama, Mystery, Thriller, Crime, Romance", "genres_pipe": "|Drama|Mystery|Thriller|Crime|Romance|", "keywords": "difficult childhood, patriarch, childhood trauma, dysfunctional marriage", "tags_pipe": "|difficult childhood|patriarch|childhood trauma|dysfunctional marriage|", "overview": "Newly-discovered facts, court records and speculation are used to elaborate the true love story and murder mystery of the most notorious unsolved murder case in New York history.", "text_for_embedding": "All Good Things (2010). Genres: Drama, Mystery, Thriller, Crime, Romance. Newly-discovered facts, court records and speculation are used to elaborate the true love story and murder mystery of the most notorious unsolved murder case in New York history.. Tags: difficult childhood, patriarch, childhood trauma, dysfunctional marriage"} +{"id": "10448", "title": "Rapa Nui", "year": 1994, "duration_min": 107, "rating": 6.2, "genres": "Adventure", "genres_pipe": "|Adventure|", "keywords": "in love with enemy, indigenous, island", "tags_pipe": "|in love with enemy|indigenous|island|", "overview": "Inter-tribal rivalry leads to a competition to erect a huge statue (moai) in record time before Make can take part in the race to retrieve the egg of a Sooty Tern. The reward for winning this race is to rule the island for one year.", "text_for_embedding": "Rapa Nui (1994). Genres: Adventure. Inter-tribal rivalry leads to a competition to erect a huge statue (moai) in record time before Make can take part in the race to retrieve the egg of a Sooty Tern. The reward for winning this race is to rule the island for one year.. Tags: in love with enemy, indigenous, island"} +{"id": "13688", "title": "CJ7", "year": 2008, "duration_min": 86, "rating": 6.1, "genres": "Comedy, Drama, Family, Fantasy, Science Fiction", "genres_pipe": "|Comedy|Drama|Family|Fantasy|Science Fiction|", "keywords": "little boy, ufo, extraterrestrial", "tags_pipe": "|little boy|ufo|extraterrestrial|", "overview": "Ti, a really poor construction worker that struggles to keep his son, Dicky, in private school, mistakes an orb he finds in a junkjard for a toy which proves to be much, much more once the young boy starts to play with it.", "text_for_embedding": "CJ7 (2008). Genres: Comedy, Drama, Family, Fantasy, Science Fiction. Ti, a really poor construction worker that struggles to keep his son, Dicky, in private school, mistakes an orb he finds in a junkjard for a toy which proves to be much, much more once the young boy starts to play with it.. Tags: little boy, ufo, extraterrestrial"} +{"id": "10353", "title": "The Visitors II: The Corridors of Time", "year": 1998, "duration_min": 118, "rating": 5.8, "genres": "Comedy, Fantasy", "genres_pipe": "|Comedy|Fantasy|", "keywords": "mephisto, french revolution, time travel, leap in time, knight, wedding, middle ages", "tags_pipe": "|mephisto|french revolution|time travel|leap in time|knight|wedding|middle ages|", "overview": "The sequel to The Visitors reunites us with those lovable ruffians from the French Medieval ages who - through magic - are transported into the present, with often drastic consequences. Godefroy de Montmirail travels to today to recover the missing family jewels and a sacred relic, guarantor of his wife-to-be's fertility. The confrontation between Godefroy's repellent servant Jack the Crack and his descendent, the effete Jacquart, present-day owner of the chateau, further complicates the matter.", "text_for_embedding": "The Visitors II: The Corridors of Time (1998). Genres: Comedy, Fantasy. The sequel to The Visitors reunites us with those lovable ruffians from the French Medieval ages who - through magic - are transported into the present, with often drastic consequences. Godefroy de Montmirail travels to today to recover the missing family jewels and a sacred relic, guarantor of his wife-to-be's fertility. The confrontation between Godefroy's repellent servant Jack the Crack and his descendent, the effete Jacquart, present-day owner of the chateau, further complicates the matter.. Tags: mephisto, french revolution, time travel, leap in time, knight, wedding, middle ages"} +{"id": "43935", "title": "Dylan Dog: Dead of Night", "year": 2011, "duration_min": 107, "rating": 4.5, "genres": "Action, Comedy, Horror, Mystery, Science Fiction, Thriller", "genres_pipe": "|Action|Comedy|Horror|Mystery|Science Fiction|Thriller|", "keywords": "detective, vampire, supernatural, zombie, werewolf, ghouls", "tags_pipe": "|detective|vampire|supernatural|zombie|werewolf|ghouls|", "overview": "Supernatural private eye, Dylan Dog, seeks out the monsters of the Louisiana bayou in his signature red shirt, black jacket and blue jeans.", "text_for_embedding": "Dylan Dog: Dead of Night (2011). Genres: Action, Comedy, Horror, Mystery, Science Fiction, Thriller. Supernatural private eye, Dylan Dog, seeks out the monsters of the Louisiana bayou in his signature red shirt, black jacket and blue jeans.. Tags: detective, vampire, supernatural, zombie, werewolf, ghouls"} +{"id": "11458", "title": "People I Know", "year": 2002, "duration_min": 100, "rating": 5.5, "genres": "Drama, Thriller", "genres_pipe": "|Drama|Thriller|", "keywords": "drug addiction, press, release from prison, women's prison, party, exzess, independent film, drug, intrigue", "tags_pipe": "|drug addiction|press|release from prison|women's prison|party|exzess|independent film|drug|intrigue|", "overview": "A New York press agent must scramble when his major client becomes embroiled in a huge scandal.", "text_for_embedding": "People I Know (2002). Genres: Drama, Thriller. A New York press agent must scramble when his major client becomes embroiled in a huge scandal.. Tags: drug addiction, press, release from prison, women's prison, party, exzess, independent film, drug, intrigue"} +{"id": "44638", "title": "The Tempest", "year": 2010, "duration_min": 110, "rating": 6.0, "genres": "Drama, Fantasy", "genres_pipe": "|Drama|Fantasy|", "keywords": "shakespeare, sword, island, frog, sorcery, banishment, spirit, storm, staff, woman director, sorceress, loincloth", "tags_pipe": "|shakespeare|sword|island|frog|sorcery|banishment|spirit|storm|staff|woman director|sorceress|loincloth|", "overview": "An adaptation of the play by William Shakespeare. Prospera (a female version of Shakespeare's Prospero) is the usurped ruler of Milan who has been banished to a mysterious island with her daughter. Using her magical powers, she draws her enemies to the island to exact her revenge.", "text_for_embedding": "The Tempest (2010). Genres: Drama, Fantasy. An adaptation of the play by William Shakespeare. Prospera (a female version of Shakespeare's Prospero) is the usurped ruler of Milan who has been banished to a mysterious island with her daughter. Using her magical powers, she draws her enemies to the island to exact her revenge.. Tags: shakespeare, sword, island, frog, sorcery, banishment, spirit, storm, staff, woman director, sorceress, loincloth"} +{"id": "241257", "title": "Regression", "year": 2015, "duration_min": 106, "rating": 5.3, "genres": "Horror, Mystery, Thriller", "genres_pipe": "|Horror|Mystery|Thriller|", "keywords": "investigation, memory loss", "tags_pipe": "|investigation|memory loss|", "overview": "Minnesota, 1990. Detective Bruce Kenner investigates the case of young Angela, who accuses her father, John Gray, of an unspeakable crime. When John unexpectedly and without recollection admits guilt, renowned psychologist Dr. Raines is brought in to help him relive his memories and what they discover unmasks a horrifying nationwide mystery.", "text_for_embedding": "Regression (2015). Genres: Horror, Mystery, Thriller. Minnesota, 1990. Detective Bruce Kenner investigates the case of young Angela, who accuses her father, John Gray, of an unspeakable crime. When John unexpectedly and without recollection admits guilt, renowned psychologist Dr. Raines is brought in to help him relive his memories and what they discover unmasks a horrifying nationwide mystery.. Tags: investigation, memory loss"} +{"id": "14538", "title": "Three Kingdoms: Resurrection of the Dragon", "year": 2008, "duration_min": 102, "rating": 6.6, "genres": "Action, History, Drama", "genres_pipe": "|Action|History|Drama|", "keywords": "warrior woman, number in title", "tags_pipe": "|warrior woman|number in title|", "overview": "The aging Zhao embarks on his final and greatest campaign, a road to adventure that will crown his name in glory for all time.", "text_for_embedding": "Three Kingdoms: Resurrection of the Dragon (2008). Genres: Action, History, Drama. The aging Zhao embarks on his final and greatest campaign, a road to adventure that will crown his name in glory for all time.. Tags: warrior woman, number in title"} +{"id": "13250", "title": "Butterfly on a Wheel", "year": 2007, "duration_min": 95, "rating": 6.3, "genres": "Crime, Drama, Thriller", "genres_pipe": "|Crime|Drama|Thriller|", "keywords": "chicago, infidelity, man-woman relation, revenge", "tags_pipe": "|chicago|infidelity|man-woman relation|revenge|", "overview": "A sociopathic kidnapper methodically pushes a desperate pair of parents to their absolute breaking point.", "text_for_embedding": "Butterfly on a Wheel (2007). Genres: Crime, Drama, Thriller. A sociopathic kidnapper methodically pushes a desperate pair of parents to their absolute breaking point.. Tags: chicago, infidelity, man-woman relation, revenge"} +{"id": "133931", "title": "Zambezia", "year": 2012, "duration_min": 83, "rating": 5.3, "genres": "Comedy, Animation, Adventure, Family", "genres_pipe": "|Comedy|Animation|Adventure|Family|", "keywords": "falcon, bird, origin", "tags_pipe": "|falcon|bird|origin|", "overview": "Set in a bustling bird city on the edge of the majestic Victoria Falls, \"Zambezia\" is the story of Kai - a naïve, but high-spirited young falcon who travels to the bird city of \"Zambezia\" where he discovers the truth about his origins and, in defending the city, learns how to be part of a community", "text_for_embedding": "Zambezia (2012). Genres: Comedy, Animation, Adventure, Family. Set in a bustling bird city on the edge of the majestic Victoria Falls, \"Zambezia\" is the story of Kai - a naïve, but high-spirited young falcon who travels to the bird city of \"Zambezia\" where he discovers the truth about his origins and, in defending the city, learns how to be part of a community. Tags: falcon, bird, origin"} +{"id": "280871", "title": "Ramanujan", "year": 2014, "duration_min": 170, "rating": 5.0, "genres": "Drama, History", "genres_pipe": "|Drama|History|", "keywords": "mathematician, biography, prodigy, ramanujam, math genius", "tags_pipe": "|mathematician|biography|prodigy|ramanujam|math genius|", "overview": "A prodigious Indian mathematician has to overcome poverty and prejudices and make a mark with the help of his British mentor.", "text_for_embedding": "Ramanujan (2014). Genres: Drama, History. A prodigious Indian mathematician has to overcome poverty and prejudices and make a mark with the help of his British mentor.. Tags: mathematician, biography, prodigy, ramanujam, math genius"} +{"id": "239897", "title": "Dwegons", "year": 2014, "duration_min": 98, "rating": 0.5, "genres": "Animation", "genres_pipe": "|Animation|", "keywords": "", "tags_pipe": "", "overview": "Family inherits an old house and to their surprise, finds the home filled with wonderful colorful creatures that brings the family together.", "text_for_embedding": "Dwegons (2014). Genres: Animation. Family inherits an old house and to their surprise, finds the home filled with wonderful colorful creatures that brings the family together.. Tags: "} +{"id": "184341", "title": "Hands of Stone", "year": 2016, "duration_min": 105, "rating": 6.1, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "", "tags_pipe": "", "overview": "The legendary Roberto Duran and his equally legendary trainer Ray Arcel change each other's lives.", "text_for_embedding": "Hands of Stone (2016). Genres: Drama. The legendary Roberto Duran and his equally legendary trainer Ray Arcel change each other's lives.. Tags: "} +{"id": "334074", "title": "Survivor", "year": 2015, "duration_min": 96, "rating": 5.4, "genres": "Thriller", "genres_pipe": "|Thriller|", "keywords": "new year's eve, fire, showdown, terrorist, embassy, hand grenade, truck, laboratory, on the run, orphan, death, cigarette lighter, microscope, hazmat suit", "tags_pipe": "|new year's eve|fire|showdown|terrorist|embassy|hand grenade|truck|laboratory|on the run|orphan|death|cigarette lighter|microscope|hazmat suit|", "overview": "A Foreign Service Officer in London tries to prevent a terrorist attack set to hit New York, but is forced to go on the run when she is framed for crimes she did not commit.", "text_for_embedding": "Survivor (2015). Genres: Thriller. A Foreign Service Officer in London tries to prevent a terrorist attack set to hit New York, but is forced to go on the run when she is framed for crimes she did not commit.. Tags: new year's eve, fire, showdown, terrorist, embassy, hand grenade, truck, laboratory, on the run, orphan, death, cigarette lighter, microscope, hazmat suit"} +{"id": "199373", "title": "The Frozen Ground", "year": 2013, "duration_min": 105, "rating": 6.1, "genres": "Thriller, Crime", "genres_pipe": "|Thriller|Crime|", "keywords": "gun, escape, serial killer, man hunt, hunting", "tags_pipe": "|gun|escape|serial killer|man hunt|hunting|", "overview": "An Alaska State Trooper partners with a young woman who escaped the clutches of serial killer Robert Hansen to bring the murderer to justice. Based on actual events.", "text_for_embedding": "The Frozen Ground (2013). Genres: Thriller, Crime. An Alaska State Trooper partners with a young woman who escaped the clutches of serial killer Robert Hansen to bring the murderer to justice. Based on actual events.. Tags: gun, escape, serial killer, man hunt, hunting"} +{"id": "14202", "title": "The Painted Veil", "year": 2006, "duration_min": 125, "rating": 7.1, "genres": "Drama, Romance", "genres_pipe": "|Drama|Romance|", "keywords": "china, cholera, foreign aid, epidemic, loveless marriage", "tags_pipe": "|china|cholera|foreign aid|epidemic|loveless marriage|", "overview": "A British medical doctor fights a cholera outbreak in a small Chinese village, while also being trapped at home in a loveless marriage to an unfaithful wife.", "text_for_embedding": "The Painted Veil (2006). Genres: Drama, Romance. A British medical doctor fights a cholera outbreak in a small Chinese village, while also being trapped at home in a loveless marriage to an unfaithful wife.. Tags: china, cholera, foreign aid, epidemic, loveless marriage"} +{"id": "6968", "title": "The Baader Meinhof Complex", "year": 2008, "duration_min": 150, "rating": 7.1, "genres": "Action, Crime, Drama, History, Thriller", "genres_pipe": "|Action|Crime|Drama|History|Thriller|", "keywords": "terror, raf, 1970s", "tags_pipe": "|terror|raf|1970s|", "overview": "Der Baader Meinhof Komplex depicts the political turmoil in the period from 1967 to the bloody \"Deutschen Herbst\" in 1977. The movie approaches the events based on Stefan Aust's standard work on Die Rote Armee Fraktion (RAF). The story centers on the leadership of the self named anti-fascist resistance to state violence: Andreas Baader, Ulrike Meinhof and Gudrun Ensslin.", "text_for_embedding": "The Baader Meinhof Complex (2008). Genres: Action, Crime, Drama, History, Thriller. Der Baader Meinhof Komplex depicts the political turmoil in the period from 1967 to the bloody \"Deutschen Herbst\" in 1977. The movie approaches the events based on Stefan Aust's standard work on Die Rote Armee Fraktion (RAF). The story centers on the leadership of the self named anti-fascist resistance to state violence: Andreas Baader, Ulrike Meinhof and Gudrun Ensslin.. Tags: terror, raf, 1970s"} +{"id": "581", "title": "Dances with Wolves", "year": 1990, "duration_min": 181, "rating": 7.6, "genres": "Adventure, Drama, Western", "genres_pipe": "|Adventure|Drama|Western|", "keywords": "countryside, based on novel, suicide attempt, culture clash, loss of family, deserter, interpreter, language barrier, self-discovery, dakota, buffalo, chief, unsociability, freedom, native american", "tags_pipe": "|countryside|based on novel|suicide attempt|culture clash|loss of family|deserter|interpreter|language barrier|self-discovery|dakota|buffalo|chief|unsociability|freedom|native american|", "overview": "Wounded Civil War soldier, John Dunbar tries to commit suicide – and becomes a hero instead. As a reward, he's assigned to his dream post, a remote junction on the Western frontier, and soon makes unlikely friends with the local Sioux tribe.", "text_for_embedding": "Dances with Wolves (1990). Genres: Adventure, Drama, Western. Wounded Civil War soldier, John Dunbar tries to commit suicide – and becomes a hero instead. As a reward, he's assigned to his dream post, a remote junction on the Western frontier, and soon makes unlikely friends with the local Sioux tribe.. Tags: countryside, based on novel, suicide attempt, culture clash, loss of family, deserter, interpreter, language barrier, self-discovery, dakota, buffalo, chief, unsociability, freedom, native american"} +{"id": "52449", "title": "Bad Teacher", "year": 2011, "duration_min": 92, "rating": 5.4, "genres": "Comedy", "genres_pipe": "|Comedy|", "keywords": "classroom, teacher, school, workplace humor", "tags_pipe": "|classroom|teacher|school|workplace humor|", "overview": "A lazy, incompetent middle school teacher who hates her job and her students is forced to return to her job to make enough money for a boob job after her rich fiancé dumps her.", "text_for_embedding": "Bad Teacher (2011). Genres: Comedy. A lazy, incompetent middle school teacher who hates her job and her students is forced to return to her job to make enough money for a boob job after her rich fiancé dumps her.. Tags: classroom, teacher, school, workplace humor"} +{"id": "12150", "title": "Sea of Love", "year": 1989, "duration_min": 113, "rating": 6.7, "genres": "Drama, Crime, Mystery", "genres_pipe": "|Drama|Crime|Mystery|", "keywords": "new york, alcohol, sex, detective, newspaper, nudity, suspect, police, murder, suspense, serial killer, neo-noir", "tags_pipe": "|new york|alcohol|sex|detective|newspaper|nudity|suspect|police|murder|suspense|serial killer|neo-noir|", "overview": "Seen-it-all New York detective Frank Keller is unsettled - he has done twenty years on the force and could retire, and he hasn't come to terms with his wife leaving him for a colleague. Joining up with an officer from another part of town to investigate a series of murders linked by the lonely hearts columns he finds he is getting seriously and possibly dangerously involved with Helen, one of the main suspects.", "text_for_embedding": "Sea of Love (1989). Genres: Drama, Crime, Mystery. Seen-it-all New York detective Frank Keller is unsettled - he has done twenty years on the force and could retire, and he hasn't come to terms with his wife leaving him for a colleague. Joining up with an officer from another part of town to investigate a series of murders linked by the lonely hearts columns he finds he is getting seriously and possibly dangerously involved with Helen, one of the main suspects.. Tags: new york, alcohol, sex, detective, newspaper, nudity, suspect, police, murder, suspense, serial killer, neo-noir"} +{"id": "11247", "title": "A Cinderella Story", "year": 2004, "duration_min": 95, "rating": 6.1, "genres": "Comedy", "genres_pipe": "|Comedy|", "keywords": "jealousy, cinderella, work, step mother, high school, school party, orphan, teenager, disguise, american football player, teenage romance, step sister, modern fairy tale", "tags_pipe": "|jealousy|cinderella|work|step mother|high school|school party|orphan|teenager|disguise|american football player|teenage romance|step sister|modern fairy tale|", "overview": "Sam Montgomery is a tomboyish, unpopular girl at school. She has been text messaging a somebody named Nomad for a few months and he asks her to meet him at the Halloween dance at 11:00 in the middle of the dance floor. The only problem is, she must get back to the diner, ran by her wicked Stepmom Fiona by 12 sharp because she is not supposed to be there. Before Nomad can found out who she is, she must leave with her best friend, Carter driving her back to the diner. After that night, everything in Sam's life goes wacko!", "text_for_embedding": "A Cinderella Story (2004). Genres: Comedy. Sam Montgomery is a tomboyish, unpopular girl at school. She has been text messaging a somebody named Nomad for a few months and he asks her to meet him at the Halloween dance at 11:00 in the middle of the dance floor. The only problem is, she must get back to the diner, ran by her wicked Stepmom Fiona by 12 sharp because she is not supposed to be there. Before Nomad can found out who she is, she must leave with her best friend, Carter driving her back to the diner. After that night, everything in Sam's life goes wacko!. Tags: jealousy, cinderella, work, step mother, high school, school party, orphan, teenager, disguise, american football player, teenage romance, step sister, modern fairy tale"} +{"id": "4232", "title": "Scream", "year": 1996, "duration_min": 111, "rating": 7.0, "genres": "Crime, Horror, Mystery", "genres_pipe": "|Crime|Horror|Mystery|", "keywords": "halloween, gore, serial killer, slasher, tabloid, news reporter, self-referential, meta film", "tags_pipe": "|halloween|gore|serial killer|slasher|tabloid|news reporter|self-referential|meta film|", "overview": "A killer known as Ghostface begins killing off teenagers, and as the body count begins rising, one girl and her friends find themselves contemplating the 'rules' of horror films as they find themselves living in a real-life one.", "text_for_embedding": "Scream (1996). Genres: Crime, Horror, Mystery. A killer known as Ghostface begins killing off teenagers, and as the body count begins rising, one girl and her friends find themselves contemplating the 'rules' of horror films as they find themselves living in a real-life one.. Tags: halloween, gore, serial killer, slasher, tabloid, news reporter, self-referential, meta film"} +{"id": "9378", "title": "Thir13en Ghosts", "year": 2001, "duration_min": 91, "rating": 5.4, "genres": "Horror, Thriller", "genres_pipe": "|Horror|Thriller|", "keywords": "hunter, nanny, nudity, collector, house, supernatural, hell, uncle, revenge, lawyer, inheritance, blood, psychic, violence, devil", "tags_pipe": "|hunter|nanny|nudity|collector|house|supernatural|hell|uncle|revenge|lawyer|inheritance|blood|psychic|violence|devil|", "overview": "Arthur and his two children, Kathy and Bobby, inherit his Uncle Cyrus's estate: a glass house that serves as a prison to 12 ghosts. When the family, accompanied by Bobby's Nanny and an attorney, enter the house they find themselves trapped inside an evil machine \"designed by the devil and powered by the dead\" to open the Eye of Hell. Aided by Dennis, a ghost hunter, and his rival Kalina, a ghost rights activist out to set the ghosts free, the group must do what they can to get out of the house alive.", "text_for_embedding": "Thir13en Ghosts (2001). Genres: Horror, Thriller. Arthur and his two children, Kathy and Bobby, inherit his Uncle Cyrus's estate: a glass house that serves as a prison to 12 ghosts. When the family, accompanied by Bobby's Nanny and an attorney, enter the house they find themselves trapped inside an evil machine \"designed by the devil and powered by the dead\" to open the Eye of Hell. Aided by Dennis, a ghost hunter, and his rival Kalina, a ghost rights activist out to set the ghosts free, the group must do what they can to get out of the house alive.. Tags: hunter, nanny, nudity, collector, house, supernatural, hell, uncle, revenge, lawyer, inheritance, blood, psychic, violence, devil"} +{"id": "694", "title": "The Shining", "year": 1980, "duration_min": 144, "rating": 8.1, "genres": "Horror, Thriller", "genres_pipe": "|Horror|Thriller|", "keywords": "hotel, isolation, hotelier, colorado, maze, bartender, ax, delusion, loneliness, caretaker, vision, snow, writer, alcoholic, snowed in", "tags_pipe": "|hotel|isolation|hotelier|colorado|maze|bartender|ax|delusion|loneliness|caretaker|vision|snow|writer|alcoholic|snowed in|", "overview": "Jack Torrance accepts a caretaker job at the Overlook Hotel, where he, along with his wife Wendy and their son Danny, must live isolated from the rest of the world for the winter. But they aren't prepared for the madness that lurks within.", "text_for_embedding": "The Shining (1980). Genres: Horror, Thriller. Jack Torrance accepts a caretaker job at the Overlook Hotel, where he, along with his wife Wendy and their son Danny, must live isolated from the rest of the world for the winter. But they aren't prepared for the madness that lurks within.. Tags: hotel, isolation, hotelier, colorado, maze, bartender, ax, delusion, loneliness, caretaker, vision, snow, writer, alcoholic, snowed in"} +{"id": "105", "title": "Back to the Future", "year": 1985, "duration_min": 116, "rating": 8.0, "genres": "Adventure, Comedy, Science Fiction, Family", "genres_pipe": "|Adventure|Comedy|Science Fiction|Family|", "keywords": "clock tower, car race, terrorist, delorean, lightning, guitar, plutonium, sports car, inventor, journey in the past, time travel, race against time, partner, misfit, mad scientist", "tags_pipe": "|clock tower|car race|terrorist|delorean|lightning|guitar|plutonium|sports car|inventor|journey in the past|time travel|race against time|partner|misfit|mad scientist|", "overview": "Eighties teenager Marty McFly is accidentally sent back in time to 1955, inadvertently disrupting his parents' first meeting and attracting his mother's romantic interest. Marty must repair the damage to history by rekindling his parents' romance and - with the help of his eccentric inventor friend Doc Brown - return to 1985.", "text_for_embedding": "Back to the Future (1985). Genres: Adventure, Comedy, Science Fiction, Family. Eighties teenager Marty McFly is accidentally sent back in time to 1955, inadvertently disrupting his parents' first meeting and attracting his mother's romantic interest. Marty must repair the damage to history by rekindling his parents' romance and - with the help of his eccentric inventor friend Doc Brown - return to 1985.. Tags: clock tower, car race, terrorist, delorean, lightning, guitar, plutonium, sports car, inventor, journey in the past, time travel, race against time, partner, misfit, mad scientist"} +{"id": "11377", "title": "House on Haunted Hill", "year": 1999, "duration_min": 93, "rating": 5.5, "genres": "Horror, Mystery, Thriller", "genres_pipe": "|Horror|Mystery|Thriller|", "keywords": "lunatic asylum, aftercreditsstinger", "tags_pipe": "|lunatic asylum|aftercreditsstinger|", "overview": "A remake of the 1959 film of the same name. A millionaire offers a group of diverse people $1,000,000 to spend the night in a haunted house with a horrifying past.", "text_for_embedding": "House on Haunted Hill (1999). Genres: Horror, Mystery, Thriller. A remake of the 1959 film of the same name. A millionaire offers a group of diverse people $1,000,000 to spend the night in a haunted house with a horrifying past.. Tags: lunatic asylum, aftercreditsstinger"} +{"id": "26367", "title": "I Can Do Bad All By Myself", "year": 2009, "duration_min": 113, "rating": 6.0, "genres": "Drama, Comedy", "genres_pipe": "|Drama|Comedy|", "keywords": "aunt, duringcreditsstinger", "tags_pipe": "|aunt|duringcreditsstinger|", "overview": "When Madea catches sixteen-year-old Jennifer and her two younger brothers looting her home, she decides to take matters into her own hands and delivers the young delinquents to the only relative they have: their aunt April. A heavy-drinking nightclub singer who lives off of Raymond, her married boyfriend, April wants nothing to do with the kids.", "text_for_embedding": "I Can Do Bad All By Myself (2009). Genres: Drama, Comedy. When Madea catches sixteen-year-old Jennifer and her two younger brothers looting her home, she decides to take matters into her own hands and delivers the young delinquents to the only relative they have: their aunt April. A heavy-drinking nightclub singer who lives off of Raymond, her married boyfriend, April wants nothing to do with the kids.. Tags: aunt, duringcreditsstinger"} +{"id": "385383", "title": "Fight Valley", "year": 2016, "duration_min": 90, "rating": 3.9, "genres": "Action, Drama", "genres_pipe": "|Action|Drama|", "keywords": "new jersey, martial arts, sister, sport, murder, mixed martial arts, justice, underground fighting, gym, ultimate fighting championship", "tags_pipe": "|new jersey|martial arts|sister|sport|murder|mixed martial arts|justice|underground fighting|gym|ultimate fighting championship|", "overview": "When Tory Coro turns up dead, the neighborhood turns up silent. Rumor has it she became yet another victim of the small town known as FIGHT VALLEY. Tory's sister Windsor moves to town to begin her own investigation on her sister's mysterious death after weeks of no leads from the police. She's quick to learn that Tory fought for money to make ends meet. If girl-next-door Windsor is going to make her way into FIGHT VALLEY to find the truth about Tory, she's going to have to fight her way in. \"Jabs\" (Miesha Tate) swore she would never throw a punch in the Valley again. Jabs now finds herself training Windsor to survive the painful, unexpected path she's about to take. Every corner. Every alley. Every doorway. She must follow the last footsteps of her sister in order to come face-to-face with Tory's killer in FIGHT VALLEY.", "text_for_embedding": "Fight Valley (2016). Genres: Action, Drama. When Tory Coro turns up dead, the neighborhood turns up silent. Rumor has it she became yet another victim of the small town known as FIGHT VALLEY. Tory's sister Windsor moves to town to begin her own investigation on her sister's mysterious death after weeks of no leads from the police. She's quick to learn that Tory fought for money to make ends meet. If girl-next-door Windsor is going to make her way into FIGHT VALLEY to find the truth about Tory, she's going to have to fight her way in. \"Jabs\" (Miesha Tate) swore she would never throw a punch in the Valley again. Jabs now finds herself training Windsor to survive the painful, unexpected path she's about to take. Every corner. Every alley. Every doorway. She must follow the last footsteps of her sister in order to come face-to-face with Tory's killer in FIGHT VALLEY.. Tags: new jersey, martial arts, sister, sport, murder, mixed martial arts, justice, underground fighting, gym, ultimate fighting championship"} +{"id": "41210", "title": "The Switch", "year": 2010, "duration_min": 101, "rating": 5.9, "genres": "Comedy, Romance, Drama", "genres_pipe": "|Comedy|Romance|Drama|", "keywords": "alcohol, single parent, baby, restaurant, aquarium, sperm, little boy, male female relationship, pregnant, artificial insemination", "tags_pipe": "|alcohol|single parent|baby|restaurant|aquarium|sperm|little boy|male female relationship|pregnant|artificial insemination|", "overview": "An unmarried 40-year-old woman turns to a turkey baster in order to become pregnant. Seven years later, she reunites with her best friend, who has been living with a secret: he replaced her preferred sperm sample with his own.", "text_for_embedding": "The Switch (2010). Genres: Comedy, Romance, Drama. An unmarried 40-year-old woman turns to a turkey baster in order to become pregnant. Seven years later, she reunites with her best friend, who has been living with a secret: he replaced her preferred sperm sample with his own.. Tags: alcohol, single parent, baby, restaurant, aquarium, sperm, little boy, male female relationship, pregnant, artificial insemination"} +{"id": "12090", "title": "Just Married", "year": 2003, "duration_min": 95, "rating": 5.3, "genres": "Comedy", "genres_pipe": "|Comedy|", "keywords": "venice, france, prison, fire, europe, married couple, honeymoon, castle, just married, chewing gum, marriage, police, vacation", "tags_pipe": "|venice|france|prison|fire|europe|married couple|honeymoon|castle|just married|chewing gum|marriage|police|vacation|", "overview": "Tom Leezak and Sarah McNerney fall in love and plan to get married, despite opposition from Sarah's uptight, rich family. When they do get married, and get a chance to prove Sarah's family wrong, they go on a European honeymoon and run into disaster after disaster. They have to decide whether the honeymoon from hell and a few pre-marital mistakes are worth throwing away their love and marriage.", "text_for_embedding": "Just Married (2003). Genres: Comedy. Tom Leezak and Sarah McNerney fall in love and plan to get married, despite opposition from Sarah's uptight, rich family. When they do get married, and get a chance to prove Sarah's family wrong, they go on a European honeymoon and run into disaster after disaster. They have to decide whether the honeymoon from hell and a few pre-marital mistakes are worth throwing away their love and marriage.. Tags: venice, france, prison, fire, europe, married couple, honeymoon, castle, just married, chewing gum, marriage, police, vacation"} +{"id": "62630", "title": "The Devil's Double", "year": 2011, "duration_min": 109, "rating": 6.5, "genres": "Drama, Action, Thriller, Crime, War", "genres_pipe": "|Drama|Action|Thriller|Crime|War|", "keywords": "palace, impostor, pervertion", "tags_pipe": "|palace|impostor|pervertion|", "overview": "A chilling vision of the House of Saddam Hussein comes to life through the eyes of the man who was forced to become the double of Hussein's sadistic son.", "text_for_embedding": "The Devil's Double (2011). Genres: Drama, Action, Thriller, Crime, War. A chilling vision of the House of Saddam Hussein comes to life through the eyes of the man who was forced to become the double of Hussein's sadistic son.. Tags: palace, impostor, pervertion"} +{"id": "16110", "title": "Thomas and the Magic Railroad", "year": 2000, "duration_min": 85, "rating": 4.6, "genres": "Animation, Drama, Family, Science Fiction", "genres_pipe": "|Animation|Drama|Family|Science Fiction|", "keywords": "", "tags_pipe": "", "overview": "Mr. Conductor's supply of magic gold dust, which allows him to travel between Shining Time and Thomas's island, is critically low. Unfortunately, he doesn't know how to get more. Meanwhile, Thomas is fending off attacks by the nasty diesel engines. Getting more gold dust will require help from Mr. C's slacker cousin, his new friend Lily and her morose grandfather, plus the secret engine.", "text_for_embedding": "Thomas and the Magic Railroad (2000). Genres: Animation, Drama, Family, Science Fiction. Mr. Conductor's supply of magic gold dust, which allows him to travel between Shining Time and Thomas's island, is critically low. Unfortunately, he doesn't know how to get more. Meanwhile, Thomas is fending off attacks by the nasty diesel engines. Getting more gold dust will require help from Mr. C's slacker cousin, his new friend Lily and her morose grandfather, plus the secret engine.. Tags: "} +{"id": "29427", "title": "The Crazies", "year": 2010, "duration_min": 101, "rating": 6.2, "genres": "Mystery, Horror, Action", "genres_pipe": "|Mystery|Horror|Action|", "keywords": "terror, biological weapon, cover-up, splatter, duringcreditsstinger, virus", "tags_pipe": "|terror|biological weapon|cover-up|splatter|duringcreditsstinger|virus|", "overview": "Four friends find themselves trapped in their small hometown after they discover their friends and neighbors going quickly and horrifically insane.", "text_for_embedding": "The Crazies (2010). Genres: Mystery, Horror, Action. Four friends find themselves trapped in their small hometown after they discover their friends and neighbors going quickly and horrifically insane.. Tags: terror, biological weapon, cover-up, splatter, duringcreditsstinger, virus"} +{"id": "129", "title": "Spirited Away", "year": 2001, "duration_min": 125, "rating": 8.3, "genres": "Fantasy, Adventure, Animation, Family", "genres_pipe": "|Fantasy|Adventure|Animation|Family|", "keywords": "witch, parents kids relationship, magic, twilight, darkness, village and town, bath house, pig, ghost world, biology, train, amusement park, yokai, japanese mythology, anime", "tags_pipe": "|witch|parents kids relationship|magic|twilight|darkness|village and town|bath house|pig|ghost world|biology|train|amusement park|yokai|japanese mythology|anime|", "overview": "A ten year old girl who wanders away from her parents along a path that leads to a world ruled by strange and unusual monster-like animals. Her parents have been changed into pigs along with others inside a bathhouse full of these creatures. Will she ever see the world how it once was?", "text_for_embedding": "Spirited Away (2001). Genres: Fantasy, Adventure, Animation, Family. A ten year old girl who wanders away from her parents along a path that leads to a world ruled by strange and unusual monster-like animals. Her parents have been changed into pigs along with others inside a bathhouse full of these creatures. Will she ever see the world how it once was?. Tags: witch, parents kids relationship, magic, twilight, darkness, village and town, bath house, pig, ghost world, biology, train, amusement park, yokai, japanese mythology, anime"} +{"id": "244114", "title": "Firestorm", "year": 2013, "duration_min": 110, "rating": 5.9, "genres": "Action, Crime", "genres_pipe": "|Action|Crime|", "keywords": "robbery, street war, gun battle, rogue cop", "tags_pipe": "|robbery|street war|gun battle|rogue cop|", "overview": "A crew of seasoned criminals led by the notorious Nam, armed with high-powered weapons, pulls off another smooth and violent armored car heist in broad daylight in a crowded street. Whoever tries to get in their way, they will show no mercy. This puts the police force to shame and humiliation. A hardboiled senior police inspector Lui, hot on the trails of Nam and his tight crew, determines to put an end to this madness that causes the lives of innocent people. But he soon comes face to face with the cruel reality that the usual police tactics are too futile to send these armed thieves behind bars. Extreme crime requires extreme justice, even if it means crossing his moral line. Tou, an ex-con desperate to leave his criminal past behind, volunteers to be Lui’s snitch in exchange for a fresh start with her girlfriend Bing. But little does he know what hellish situation he’s getting himself into.", "text_for_embedding": "Firestorm (2013). Genres: Action, Crime. A crew of seasoned criminals led by the notorious Nam, armed with high-powered weapons, pulls off another smooth and violent armored car heist in broad daylight in a crowded street. Whoever tries to get in their way, they will show no mercy. This puts the police force to shame and humiliation. A hardboiled senior police inspector Lui, hot on the trails of Nam and his tight crew, determines to put an end to this madness that causes the lives of innocent people. But he soon comes face to face with the cruel reality that the usual police tactics are too futile to send these armed thieves behind bars. Extreme crime requires extreme justice, even if it means crossing his moral line. Tou, an ex-con desperate to leave his criminal past behind, volunteers to be Lui’s snitch in exchange for a fresh start with her girlfriend Bing. But little does he know what hellish situation he’s getting himself into.. Tags: robbery, street war, gun battle, rogue cop"} +{"id": "2669", "title": "The Bounty", "year": 1984, "duration_min": 132, "rating": 6.5, "genres": "Action, Drama, History", "genres_pipe": "|Action|Drama|History|", "keywords": "female nudity, exotic island, mutiny, lake, nudity, sailing, ship, adventure, tahiti, murder, pregnancy, great barrier reef, sailor, native peoples, storm at sea", "tags_pipe": "|female nudity|exotic island|mutiny|lake|nudity|sailing|ship|adventure|tahiti|murder|pregnancy|great barrier reef|sailor|native peoples|storm at sea|", "overview": "The familiar story of Lieutenant Bligh, whose cruelty leads to a mutiny on his ship. This version follows both the efforts of Fletcher Christian to get his men beyond the reach of British retribution, and the epic voyage of Lieutenant Bligh to get his loyalists safely to East Timor in a tiny lifeboat.", "text_for_embedding": "The Bounty (1984). Genres: Action, Drama, History. The familiar story of Lieutenant Bligh, whose cruelty leads to a mutiny on his ship. This version follows both the efforts of Fletcher Christian to get his men beyond the reach of British retribution, and the epic voyage of Lieutenant Bligh to get his loyalists safely to East Timor in a tiny lifeboat.. Tags: female nudity, exotic island, mutiny, lake, nudity, sailing, ship, adventure, tahiti, murder, pregnancy, great barrier reef, sailor, native peoples, storm at sea"} +{"id": "203833", "title": "The Book Thief", "year": 2013, "duration_min": 131, "rating": 7.4, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "world war ii, book, nazi germany, jewish", "tags_pipe": "|world war ii|book|nazi germany|jewish|", "overview": "While subjected to the horrors of WWII Germany, young Liesel finds solace by stealing books and sharing them with others. Under the stairs in her home, a Jewish refuge is being sheltered by her adoptive parents.", "text_for_embedding": "The Book Thief (2013). Genres: Drama. While subjected to the horrors of WWII Germany, young Liesel finds solace by stealing books and sharing them with others. Under the stairs in her home, a Jewish refuge is being sheltered by her adoptive parents.. Tags: world war ii, book, nazi germany, jewish"} +{"id": "13523", "title": "Sex Drive", "year": 2008, "duration_min": 109, "rating": 6.0, "genres": "Comedy, Adventure, Romance", "genres_pipe": "|Comedy|Adventure|Romance|", "keywords": "sex, jealousy, virgin, nudity, community, friendship, high school, road trip, friends, romance, redneck, loss of virginity, hitchhiker, teen movie, boyfriend", "tags_pipe": "|sex|jealousy|virgin|nudity|community|friendship|high school|road trip|friends|romance|redneck|loss of virginity|hitchhiker|teen movie|boyfriend|", "overview": "A high school senior drives cross-country with his best friends to hook up with a babe he met online.", "text_for_embedding": "Sex Drive (2008). Genres: Comedy, Adventure, Romance. A high school senior drives cross-country with his best friends to hook up with a babe he met online.. Tags: sex, jealousy, virgin, nudity, community, friendship, high school, road trip, friends, romance, redneck, loss of virginity, hitchhiker, teen movie, boyfriend"} +{"id": "25195", "title": "Leap Year", "year": 2010, "duration_min": 100, "rating": 6.4, "genres": "Romance, Comedy", "genres_pipe": "|Romance|Comedy|", "keywords": "taxi, bar, wales, marriage proposal, airplane, pub, cow, wedding ring, wedding, proposal, cardiologist, ireland, cliffs", "tags_pipe": "|taxi|bar|wales|marriage proposal|airplane|pub|cow|wedding ring|wedding|proposal|cardiologist|ireland|cliffs|", "overview": "When yet another anniversary passes without a marriage proposal from her boyfriend, Anna decides to take action. Aware of a Celtic tradition that allows women to pop the question on Feb. 29, she plans to follow her lover to Dublin and ask him to marry her. Fate has other plans, however, and Anna winds up on the other side of the Emerald Isle with handsome, but surly, Declan -- an Irishman who may just lead Anna down the road to true love.", "text_for_embedding": "Leap Year (2010). Genres: Romance, Comedy. When yet another anniversary passes without a marriage proposal from her boyfriend, Anna decides to take action. Aware of a Celtic tradition that allows women to pop the question on Feb. 29, she plans to follow her lover to Dublin and ask him to marry her. Fate has other plans, however, and Anna winds up on the other side of the Emerald Isle with handsome, but surly, Declan -- an Irishman who may just lead Anna down the road to true love.. Tags: taxi, bar, wales, marriage proposal, airplane, pub, cow, wedding ring, wedding, proposal, cardiologist, ireland, cliffs"} +{"id": "17277", "title": "The Fall of the Roman Empire", "year": 1964, "duration_min": 188, "rating": 6.0, "genres": "Drama, History", "genres_pipe": "|Drama|History|", "keywords": "roman empire, ancient rome", "tags_pipe": "|roman empire|ancient rome|", "overview": "Drawn from the same events that later inspired Gladiator, the film charts the power-hungry greed and father-son betrayal that led to Rome's collapse at the bloody hands of the Barbarians.", "text_for_embedding": "The Fall of the Roman Empire (1964). Genres: Drama, History. Drawn from the same events that later inspired Gladiator, the film charts the power-hungry greed and father-son betrayal that led to Rome's collapse at the bloody hands of the Barbarians.. Tags: roman empire, ancient rome"} +{"id": "50725", "title": "Take Me Home Tonight", "year": 2011, "duration_min": 97, "rating": 6.2, "genres": "Comedy, Drama, Romance", "genres_pipe": "|Comedy|Drama|Romance|", "keywords": "becoming an adult, lie, night, sister, job, party, friends, deception, best friend", "tags_pipe": "|becoming an adult|lie|night|sister|job|party|friends|deception|best friend|", "overview": "Recent MIT grad Matt Franklin (Topher Grace) should be well on his way to a successful career at a Fortune 500 company, but instead, he rebels against maturity by taking a job at a video store. Matt rethinks his position when his unrequited high-school crush, Tori (Teresa Palmer), walks in and invites him to an end-of-summer party. With the help of his twin sister (Anna Faris) and his best friend (Dan Fogler), Matt hatches a plan to change the course of his life.", "text_for_embedding": "Take Me Home Tonight (2011). Genres: Comedy, Drama, Romance. Recent MIT grad Matt Franklin (Topher Grace) should be well on his way to a successful career at a Fortune 500 company, but instead, he rebels against maturity by taking a job at a video store. Matt rethinks his position when his unrequited high-school crush, Tori (Teresa Palmer), walks in and invites him to an end-of-summer party. With the help of his twin sister (Anna Faris) and his best friend (Dan Fogler), Matt hatches a plan to change the course of his life.. Tags: becoming an adult, lie, night, sister, job, party, friends, deception, best friend"} +{"id": "82631", "title": "Won't Back Down", "year": 2012, "duration_min": 121, "rating": 5.8, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "based on true story", "tags_pipe": "|based on true story|", "overview": "Two determined mothers­, one a teacher, look to transform their children's failing inner city school. Facing a powerful and entrenched bureaucracy, they risk everything to make a difference in the education and future of their children", "text_for_embedding": "Won't Back Down (2012). Genres: Drama. Two determined mothers­, one a teacher, look to transform their children's failing inner city school. Facing a powerful and entrenched bureaucracy, they risk everything to make a difference in the education and future of their children. Tags: based on true story"} +{"id": "73191", "title": "The Nutcracker", "year": 1993, "duration_min": 93, "rating": 5.6, "genres": "Family, Fantasy, Music", "genres_pipe": "|Family|Fantasy|Music|", "keywords": "ballet", "tags_pipe": "|ballet|", "overview": "On Christmas Eve, a little girl named Marie (Cohen) falls asleep after a party at her home and dreams herself into a fantastic world where toys become larger than life. She meets up with the Nutcracker Prince (Culkin) who defends her from the Mouse King.", "text_for_embedding": "The Nutcracker (1993). Genres: Family, Fantasy, Music. On Christmas Eve, a little girl named Marie (Cohen) falls asleep after a party at her home and dreams herself into a fantastic world where toys become larger than life. She meets up with the Nutcracker Prince (Culkin) who defends her from the Mouse King.. Tags: ballet"} +{"id": "22479", "title": "Kansas City", "year": 1996, "duration_min": 116, "rating": 6.1, "genres": "Thriller, Drama, Music, Crime", "genres_pipe": "|Thriller|Drama|Music|Crime|", "keywords": "politician, kansas city, election, jazz music", "tags_pipe": "|politician|kansas city|election|jazz music|", "overview": "Robert Altman's story is a riff on race, class, and power cross-cuts between the two kidnappings and the background of corrupt politics and virtuoso jazz music. It all takes place in Kansas City in 1934.", "text_for_embedding": "Kansas City (1996). Genres: Thriller, Drama, Music, Crime. Robert Altman's story is a riff on race, class, and power cross-cuts between the two kidnappings and the background of corrupt politics and virtuoso jazz music. It all takes place in Kansas City in 1934.. Tags: politician, kansas city, election, jazz music"} +{"id": "340611", "title": "Indignation", "year": 2016, "duration_min": 110, "rating": 6.8, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "based on novel, jewish life, ohio, 1950s", "tags_pipe": "|based on novel|jewish life|ohio|1950s|", "overview": "In 1951, Marcus Messner, a working-class Jewish student from New Jersey, attends a small Ohio college, where he struggles with anti-Semitism, sexual repression, and the ongoing Korean War.", "text_for_embedding": "Indignation (2016). Genres: Drama. In 1951, Marcus Messner, a working-class Jewish student from New Jersey, attends a small Ohio college, where he struggles with anti-Semitism, sexual repression, and the ongoing Korean War.. Tags: based on novel, jewish life, ohio, 1950s"} +{"id": "10065", "title": "The Amityville Horror", "year": 2005, "duration_min": 90, "rating": 6.0, "genres": "Horror, Thriller, Drama", "genres_pipe": "|Horror|Thriller|Drama|", "keywords": "holy water, long island, remake, family dinner, paranormal, violence, wood chopping, backwards, tortured to death, moving in, based on supposedly true story", "tags_pipe": "|holy water|long island|remake|family dinner|paranormal|violence|wood chopping|backwards|tortured to death|moving in|based on supposedly true story|", "overview": "A family is terrorized by demonic forces after moving into a home that was the site of a grisly mass-murder.", "text_for_embedding": "The Amityville Horror (2005). Genres: Horror, Thriller, Drama. A family is terrorized by demonic forces after moving into a home that was the site of a grisly mass-murder.. Tags: holy water, long island, remake, family dinner, paranormal, violence, wood chopping, backwards, tortured to death, moving in, based on supposedly true story"} +{"id": "2757", "title": "Adaptation.", "year": 2002, "duration_min": 114, "rating": 7.3, "genres": "Comedy, Crime, Drama", "genres_pipe": "|Comedy|Crime|Drama|", "keywords": "alligator, marriage crisis, writer's block, orchid", "tags_pipe": "|alligator|marriage crisis|writer's block|orchid|", "overview": "A love-lorn script writer grows increasingly desperate in his quest to adapt the book 'The Orchid Thief'.", "text_for_embedding": "Adaptation. (2002). Genres: Comedy, Crime, Drama. A love-lorn script writer grows increasingly desperate in his quest to adapt the book 'The Orchid Thief'.. Tags: alligator, marriage crisis, writer's block, orchid"} +{"id": "11683", "title": "Land of the Dead", "year": 2005, "duration_min": 93, "rating": 6.0, "genres": "Horror", "genres_pipe": "|Horror|", "keywords": "cage, dystopia, survivor, zombie, zombie apocalypse", "tags_pipe": "|cage|dystopia|survivor|zombie|zombie apocalypse|", "overview": "The world is full of zombies and the survivors have barricaded themselves inside a walled city to keep out the living dead. As the wealthy hide out in skyscrapers and chaos rules the streets, the rest of the survivors must find a way to stop the evolving zombies from breaking into the city.", "text_for_embedding": "Land of the Dead (2005). Genres: Horror. The world is full of zombies and the survivors have barricaded themselves inside a walled city to keep out the living dead. As the wealthy hide out in skyscrapers and chaos rules the streets, the rest of the survivors must find a way to stop the evolving zombies from breaking into the city.. Tags: cage, dystopia, survivor, zombie, zombie apocalypse"} +{"id": "244339", "title": "Out of Inferno", "year": 2013, "duration_min": 107, "rating": 5.8, "genres": "Action", "genres_pipe": "|Action|", "keywords": "", "tags_pipe": "", "overview": "On the hottest day in 50 years, a serious fire incident happened to a busy commercial tower, a gaggle of fire fighters with an indestructible enthusiasm are going to save lives.", "text_for_embedding": "Out of Inferno (2013). Genres: Action. On the hottest day in 50 years, a serious fire incident happened to a busy commercial tower, a gaggle of fire fighters with an indestructible enthusiasm are going to save lives.. Tags: "} +{"id": "1878", "title": "Fear and Loathing in Las Vegas", "year": 1998, "duration_min": 118, "rating": 7.2, "genres": "Adventure, Drama, Comedy", "genres_pipe": "|Adventure|Drama|Comedy|", "keywords": "gonzo journalist, sweaty face, fake identity, wedding chapel, grapefruit, cadillac convertible, gibberish, corvette stingray, police convention", "tags_pipe": "|gonzo journalist|sweaty face|fake identity|wedding chapel|grapefruit|cadillac convertible|gibberish|corvette stingray|police convention|", "overview": "The hallucinogenic misadventures of sportswriter Raoul Duke and his Samoan lawyer, Dr. Gonzo, on a three-day romp from Los Angeles to Las Vegas. Motoring across the Mojave Desert on the way to Sin City, Duke and his purple haze passenger ingest a cornucopia of drugs ranging from acid to ether.", "text_for_embedding": "Fear and Loathing in Las Vegas (1998). Genres: Adventure, Drama, Comedy. The hallucinogenic misadventures of sportswriter Raoul Duke and his Samoan lawyer, Dr. Gonzo, on a three-day romp from Los Angeles to Las Vegas. Motoring across the Mojave Desert on the way to Sin City, Duke and his purple haze passenger ingest a cornucopia of drugs ranging from acid to ether.. Tags: gonzo journalist, sweaty face, fake identity, wedding chapel, grapefruit, cadillac convertible, gibberish, corvette stingray, police convention"} +{"id": "23082", "title": "The Invention of Lying", "year": 2009, "duration_min": 100, "rating": 6.0, "genres": "Comedy, Romance, Fantasy", "genres_pipe": "|Comedy|Romance|Fantasy|", "keywords": "", "tags_pipe": "", "overview": "Set in a world where the concept of lying doesn't exist, a loser changes his lot when he invents lying and uses it to get ahead.", "text_for_embedding": "The Invention of Lying (2009). Genres: Comedy, Romance, Fantasy. Set in a world where the concept of lying doesn't exist, a loser changes his lot when he invents lying and uses it to get ahead.. Tags: "} +{"id": "195589", "title": "Neighbors", "year": 2014, "duration_min": 96, "rating": 6.2, "genres": "Comedy", "genres_pipe": "|Comedy|", "keywords": "alcohol, baby, party, family, fraternity, fraternity house, neighbor neighbor relationship, bathroom humor", "tags_pipe": "|alcohol|baby|party|family|fraternity|fraternity house|neighbor neighbor relationship|bathroom humor|", "overview": "A couple with a newborn baby face unexpected difficulties after they are forced to live next to a fraternity house.", "text_for_embedding": "Neighbors (2014). Genres: Comedy. A couple with a newborn baby face unexpected difficulties after they are forced to live next to a fraternity house.. Tags: alcohol, baby, party, family, fraternity, fraternity house, neighbor neighbor relationship, bathroom humor"} +{"id": "854", "title": "The Mask", "year": 1994, "duration_min": 101, "rating": 6.6, "genres": "Romance, Comedy, Crime, Fantasy", "genres_pipe": "|Romance|Comedy|Crime|Fantasy|", "keywords": "dual identity, bank, mockery, green, balloon, jail cell, norse mythology", "tags_pipe": "|dual identity|bank|mockery|green|balloon|jail cell|norse mythology|", "overview": "When timid bank clerk Stanley Ipkiss discovers a magical mask containing the spirit of the Norse god Loki, his entire life changes. While wearing the mask, Ipkiss becomes a supernatural playboy exuding charm and confidence which allows him to catch the eye of local nightclub singer Tina Carlyle. Unfortunately, under the mask's influence, Ipkiss also robs a bank, which angers junior crime lord Dorian Tyrell, whose goons get blamed for the heist.", "text_for_embedding": "The Mask (1994). Genres: Romance, Comedy, Crime, Fantasy. When timid bank clerk Stanley Ipkiss discovers a magical mask containing the spirit of the Norse god Loki, his entire life changes. While wearing the mask, Ipkiss becomes a supernatural playboy exuding charm and confidence which allows him to catch the eye of local nightclub singer Tina Carlyle. Unfortunately, under the mask's influence, Ipkiss also robs a bank, which angers junior crime lord Dorian Tyrell, whose goons get blamed for the heist.. Tags: dual identity, bank, mockery, green, balloon, jail cell, norse mythology"} +{"id": "2280", "title": "Big", "year": 1988, "duration_min": 104, "rating": 6.9, "genres": "Fantasy, Drama, Comedy, Romance, Family", "genres_pipe": "|Fantasy|Drama|Comedy|Romance|Family|", "keywords": "baseball, co-worker, bronx, pinball machine, toy maker, duet, job promotion, homesick, new toy, quarter, unplugged electronic works, yankee stadium bronx new york city, walking on piano keys, wish fulfillment, bunk bed", "tags_pipe": "|baseball|co-worker|bronx|pinball machine|toy maker|duet|job promotion|homesick|new toy|quarter|unplugged electronic works|yankee stadium bronx new york city|walking on piano keys|wish fulfillment|bunk bed|", "overview": "A young boy, Josh Baskin makes a wish at a carnival machine to be big. He wakes up the following morning to find that it has been granted and his body has grown older overnight. But he is still the same 13-year-old boy inside. Now he must learn how to cope with the unfamiliar world of grown-ups including getting a job and having his first romantic encounter with a woman. What will he find out about this strange world?", "text_for_embedding": "Big (1988). Genres: Fantasy, Drama, Comedy, Romance, Family. A young boy, Josh Baskin makes a wish at a carnival machine to be big. He wakes up the following morning to find that it has been granted and his body has grown older overnight. But he is still the same 13-year-old boy inside. Now he must learn how to cope with the unfamiliar world of grown-ups including getting a job and having his first romantic encounter with a woman. What will he find out about this strange world?. Tags: baseball, co-worker, bronx, pinball machine, toy maker, duet, job promotion, homesick, new toy, quarter, unplugged electronic works, yankee stadium bronx new york city, walking on piano keys, wish fulfillment, bunk bed"} +{"id": "496", "title": "Borat: Cultural Learnings of America for Make Benefit Glorious Nation of Kazakhstan", "year": 2006, "duration_min": 82, "rating": 6.5, "genres": "Comedy", "genres_pipe": "|Comedy|", "keywords": "male nudity, usa, california, prostitute, journalist, rodeo, kazakhstan, demeanor course, chicken, driving school, anti semitism, bear, mockumentary, reporter, aftercreditsstinger", "tags_pipe": "|male nudity|usa|california|prostitute|journalist|rodeo|kazakhstan|demeanor course|chicken|driving school|anti semitism|bear|mockumentary|reporter|aftercreditsstinger|", "overview": "Kazakh journalist Borat Sagdiyev travels to America to make a documentary. As he zigzags across the nation, Borat meets real people in real situations with hysterical consequences. His backwards behavior generates strong reactions around him exposing prejudices and hypocrisies in American culture.", "text_for_embedding": "Borat: Cultural Learnings of America for Make Benefit Glorious Nation of Kazakhstan (2006). Genres: Comedy. Kazakh journalist Borat Sagdiyev travels to America to make a documentary. As he zigzags across the nation, Borat meets real people in real situations with hysterical consequences. His backwards behavior generates strong reactions around him exposing prejudices and hypocrisies in American culture.. Tags: male nudity, usa, california, prostitute, journalist, rodeo, kazakhstan, demeanor course, chicken, driving school, anti semitism, bear, mockumentary, reporter, aftercreditsstinger"} +{"id": "8835", "title": "Legally Blonde", "year": 2001, "duration_min": 96, "rating": 6.1, "genres": "Comedy", "genres_pipe": "|Comedy|", "keywords": "harvard law school, black female judge, smart blonde, girl power", "tags_pipe": "|harvard law school|black female judge|smart blonde|girl power|", "overview": "Elle Woods has it all. She's the president of her sorority, a Hawaiian Tropic girl, Miss June in her campus calendar, and, above all, a natural blonde. She dates the cutest fraternity boy on campus and wants nothing more than to be Mrs. Warner Huntington III. But, there's just one thing stopping Warner from popping the question: Elle is too blonde.", "text_for_embedding": "Legally Blonde (2001). Genres: Comedy. Elle Woods has it all. She's the president of her sorority, a Hawaiian Tropic girl, Miss June in her campus calendar, and, above all, a natural blonde. She dates the cutest fraternity boy on campus and wants nothing more than to be Mrs. Warner Huntington III. But, there's just one thing stopping Warner from popping the question: Elle is too blonde.. Tags: harvard law school, black female judge, smart blonde, girl power"} +{"id": "157", "title": "Star Trek III: The Search for Spock", "year": 1984, "duration_min": 105, "rating": 6.4, "genres": "Science Fiction, Action, Adventure, Thriller", "genres_pipe": "|Science Fiction|Action|Adventure|Thriller|", "keywords": "", "tags_pipe": "", "overview": "Admiral Kirk and his bridge crew risk their careers stealing the decommissioned Enterprise to return to the restricted Genesis planet to recover Spock's body.", "text_for_embedding": "Star Trek III: The Search for Spock (1984). Genres: Science Fiction, Action, Adventure, Thriller. Admiral Kirk and his bridge crew risk their careers stealing the decommissioned Enterprise to return to the restricted Genesis planet to recover Spock's body.. Tags: "} +{"id": "8643", "title": "The Exorcism of Emily Rose", "year": 2005, "duration_min": 122, "rating": 6.3, "genres": "Crime, Drama, Horror, Thriller", "genres_pipe": "|Crime|Drama|Horror|Thriller|", "keywords": "epilepsy, possession, teenage girl, spirit, umbrella, cross, prosecutor, catholicism, negligent homicide, archdiocese, agnostic, malnutrition, burning, psychotic epileptic disorder", "tags_pipe": "|epilepsy|possession|teenage girl|spirit|umbrella|cross|prosecutor|catholicism|negligent homicide|archdiocese|agnostic|malnutrition|burning|psychotic epileptic disorder|", "overview": "When a younger girl called Emily Rose (Carpenter) dies, everyone puts blame on the exorcism which was performed on her by Father Moore (Wilkinson) prior to her death. The priest is arrested on suspicion of murder. The trail begins with lawyer Erin Bruner (Linney) representing Moore, but it is not going to be easy, as no one wants to believe what Father Moore says is true.", "text_for_embedding": "The Exorcism of Emily Rose (2005). Genres: Crime, Drama, Horror, Thriller. When a younger girl called Emily Rose (Carpenter) dies, everyone puts blame on the exorcism which was performed on her by Father Moore (Wilkinson) prior to her death. The priest is arrested on suspicion of murder. The trail begins with lawyer Erin Bruner (Linney) representing Moore, but it is not going to be easy, as no one wants to believe what Father Moore says is true.. Tags: epilepsy, possession, teenage girl, spirit, umbrella, cross, prosecutor, catholicism, negligent homicide, archdiocese, agnostic, malnutrition, burning, psychotic epileptic disorder"} +{"id": "10402", "title": "Deuce Bigalow: Male Gigolo", "year": 1999, "duration_min": 88, "rating": 5.5, "genres": "Comedy", "genres_pipe": "|Comedy|", "keywords": "fish, aquarium, carnival, house, callboy, vacation, illegal prostitution", "tags_pipe": "|fish|aquarium|carnival|house|callboy|vacation|illegal prostitution|", "overview": "Deuce Bigalow is a less than attractive, down on his luck aquarium cleaner. One day he wrecks the house of a gigolo and needs quick money to repair it. The only way he can make it is to become a gigolo himself, taking on an unusual mix of female clients. He encounters a couple of problems, though. He falls in love with one of his unusual clients, and a sleazy police officer is hot on his trail.", "text_for_embedding": "Deuce Bigalow: Male Gigolo (1999). Genres: Comedy. Deuce Bigalow is a less than attractive, down on his luck aquarium cleaner. One day he wrecks the house of a gigolo and needs quick money to repair it. The only way he can make it is to become a gigolo himself, taking on an unusual mix of female clients. He encounters a couple of problems, though. He falls in love with one of his unusual clients, and a sleazy police officer is hot on his trail.. Tags: fish, aquarium, carnival, house, callboy, vacation, illegal prostitution"} +{"id": "218043", "title": "Left Behind", "year": 2014, "duration_min": 110, "rating": 3.7, "genres": "Thriller, Action, Science Fiction", "genres_pipe": "|Thriller|Action|Science Fiction|", "keywords": "airplane, the rapture, remake, pilot hero", "tags_pipe": "|airplane|the rapture|remake|pilot hero|", "overview": "A small group of survivors are left behind after millions of people suddenly vanish during the rapture and the world is plunged into chaos and destruction.", "text_for_embedding": "Left Behind (2014). Genres: Thriller, Action, Science Fiction. A small group of survivors are left behind after millions of people suddenly vanish during the rapture and the world is plunged into chaos and destruction.. Tags: airplane, the rapture, remake, pilot hero"} +{"id": "9043", "title": "The Family Stone", "year": 2005, "duration_min": 103, "rating": 6.2, "genres": "Comedy, Drama, Romance", "genres_pipe": "|Comedy|Drama|Romance|", "keywords": "holiday, christmas", "tags_pipe": "|holiday|christmas|", "overview": "An uptight, conservative, businesswoman accompanies her boyfriend to his eccentric and outgoing family's annual Christmas celebration and finds that she's a fish out of water in their free-spirited way of life.", "text_for_embedding": "The Family Stone (2005). Genres: Comedy, Drama, Romance. An uptight, conservative, businesswoman accompanies her boyfriend to his eccentric and outgoing family's annual Christmas celebration and finds that she's a fish out of water in their free-spirited way of life.. Tags: holiday, christmas"} +{"id": "21301", "title": "Barbershop 2: Back in Business", "year": 2004, "duration_min": 106, "rating": 5.6, "genres": "Comedy, Drama", "genres_pipe": "|Comedy|Drama|", "keywords": "blaxploitation", "tags_pipe": "|blaxploitation|", "overview": "The continuing adventures of the barbers at Calvin's Barbershop. Gina, a stylist at the beauty shop next door, is now trying to cut in on his buisness. Calvin is again struggling to keep his father's shop and traditions alive--this time against urban developers looking to replace mom & pop establishments with name-brand chains. The world changes, but some things never go out of style--from current events and politics to relationships and love, you can still say anything you want at the barbershop.", "text_for_embedding": "Barbershop 2: Back in Business (2004). Genres: Comedy, Drama. The continuing adventures of the barbers at Calvin's Barbershop. Gina, a stylist at the beauty shop next door, is now trying to cut in on his buisness. Calvin is again struggling to keep his father's shop and traditions alive--this time against urban developers looking to replace mom & pop establishments with name-brand chains. The world changes, but some things never go out of style--from current events and politics to relationships and love, you can still say anything you want at the barbershop.. Tags: blaxploitation"} +{"id": "10147", "title": "Bad Santa", "year": 2003, "duration_min": 91, "rating": 6.5, "genres": "Drama, Comedy, Crime", "genres_pipe": "|Drama|Comedy|Crime|", "keywords": "holiday, elves, christmas party, department store, safe, drink, little people, christmas eve, christmas", "tags_pipe": "|holiday|elves|christmas party|department store|safe|drink|little people|christmas eve|christmas|", "overview": "A miserable conman and his partner pose as Santa and his Little Helper to rob department stores on Christmas Eve. But they run into problems when the conman befriends a troubled kid, and the security boss discovers the plot.", "text_for_embedding": "Bad Santa (2003). Genres: Drama, Comedy, Crime. A miserable conman and his partner pose as Santa and his Little Helper to rob department stores on Christmas Eve. But they run into problems when the conman befriends a troubled kid, and the security boss discovers the plot.. Tags: holiday, elves, christmas party, department store, safe, drink, little people, christmas eve, christmas"} +{"id": "816", "title": "Austin Powers: International Man of Mystery", "year": 1997, "duration_min": 94, "rating": 6.5, "genres": "Science Fiction, Comedy, Crime", "genres_pipe": "|Science Fiction|Comedy|Crime|", "keywords": "android, undercover, missile, group therapy, airplane, dancing scene, time travel, penthouse apartment, judo, trapdoor, clowning, telescope, swinging, james bond spoof, swinging 60s", "tags_pipe": "|android|undercover|missile|group therapy|airplane|dancing scene|time travel|penthouse apartment|judo|trapdoor|clowning|telescope|swinging|james bond spoof|swinging 60s|", "overview": "As a swingin' fashion photographer by day and a groovy British superagent by night, Austin Powers is the '60s' most shagadelic spy, baby! But can he stop megalomaniac Dr. Evil after the bald villain freezes himself and unthaws in the '90s? With the help of sexy sidekick Vanessa Kensington, he just might.", "text_for_embedding": "Austin Powers: International Man of Mystery (1997). Genres: Science Fiction, Comedy, Crime. As a swingin' fashion photographer by day and a groovy British superagent by night, Austin Powers is the '60s' most shagadelic spy, baby! But can he stop megalomaniac Dr. Evil after the bald villain freezes himself and unthaws in the '90s? With the help of sexy sidekick Vanessa Kensington, he just might.. Tags: android, undercover, missile, group therapy, airplane, dancing scene, time travel, penthouse apartment, judo, trapdoor, clowning, telescope, swinging, james bond spoof, swinging 60s"} +{"id": "302688", "title": "My Big Fat Greek Wedding 2", "year": 2016, "duration_min": 94, "rating": 5.5, "genres": "Romance, Comedy, Family", "genres_pipe": "|Romance|Comedy|Family|", "keywords": "comedy, wedding", "tags_pipe": "|comedy|wedding|", "overview": "The continuing adventures of the Portokalos family. A follow-up to the 2002 comedy, \"My Big Fat Greek Wedding.\"", "text_for_embedding": "My Big Fat Greek Wedding 2 (2016). Genres: Romance, Comedy, Family. The continuing adventures of the Portokalos family. A follow-up to the 2002 comedy, \"My Big Fat Greek Wedding.\". Tags: comedy, wedding"} +{"id": "60307", "title": "Diary of a Wimpy Kid: Rodrick Rules", "year": 2011, "duration_min": 99, "rating": 6.3, "genres": "Family, Comedy", "genres_pipe": "|Family|Comedy|", "keywords": "based on novel, middle school", "tags_pipe": "|based on novel|middle school|", "overview": "Back in middle school after summer vacation, Greg Heffley and his older brother Rodrick must deal with their parents' misguided attempts to have them bond.", "text_for_embedding": "Diary of a Wimpy Kid: Rodrick Rules (2011). Genres: Family, Comedy. Back in middle school after summer vacation, Greg Heffley and his older brother Rodrick must deal with their parents' misguided attempts to have them bond.. Tags: based on novel, middle school"} +{"id": "106", "title": "Predator", "year": 1987, "duration_min": 107, "rating": 7.3, "genres": "Science Fiction, Action, Adventure, Thriller", "genres_pipe": "|Science Fiction|Action|Adventure|Thriller|", "keywords": "central and south america, predator, alien, stalking, invisible, commando, 3d", "tags_pipe": "|central and south america|predator|alien|stalking|invisible|commando|3d|", "overview": "Dutch and his group of commandos are hired by the CIA to rescue downed airmen from guerillas in a Central American jungle. The mission goes well but as they return they find that something is hunting them. Nearly invisible, it blends in with the forest, taking trophies from the bodies of its victims as it goes along. Occasionally seeing through its eyes, the audience sees it is an intelligent alien hunter, hunting them for sport, killing them off one at a time.", "text_for_embedding": "Predator (1987). Genres: Science Fiction, Action, Adventure, Thriller. Dutch and his group of commandos are hired by the CIA to rescue downed airmen from guerillas in a Central American jungle. The mission goes well but as they return they find that something is hunting them. Nearly invisible, it blends in with the forest, taking trophies from the bodies of its victims as it goes along. Occasionally seeing through its eyes, the audience sees it is an intelligent alien hunter, hunting them for sport, killing them off one at a time.. Tags: central and south america, predator, alien, stalking, invisible, commando, 3d"} +{"id": "279", "title": "Amadeus", "year": 1984, "duration_min": 160, "rating": 7.8, "genres": "Drama, History, Music", "genres_pipe": "|Drama|History|Music|", "keywords": "italy, composer, opera, talent, musician, marriage crisis, god, murder, vienna austria, envy, 18th century", "tags_pipe": "|italy|composer|opera|talent|musician|marriage crisis|god|murder|vienna austria|envy|18th century|", "overview": "The incredible story of genius musician Wolfgang Amadeus Mozart, told in flashback by his peer and secret rival Antonio Salieri – now confined to an insane asylum.", "text_for_embedding": "Amadeus (1984). Genres: Drama, History, Music. The incredible story of genius musician Wolfgang Amadeus Mozart, told in flashback by his peer and secret rival Antonio Salieri – now confined to an insane asylum.. Tags: italy, composer, opera, talent, musician, marriage crisis, god, murder, vienna austria, envy, 18th century"} +{"id": "8617", "title": "Prom Night", "year": 2008, "duration_min": 88, "rating": 4.8, "genres": "Crime, Horror", "genres_pipe": "|Crime|Horror|", "keywords": "aunt, remake, blood on shirt, slasher, death of family, masturbation, kicked in the face, renovation, black stereotype, chest", "tags_pipe": "|aunt|remake|blood on shirt|slasher|death of family|masturbation|kicked in the face|renovation|black stereotype|chest|", "overview": "Donna's senior prom is supposed to be the best night of her life, though a sadistic killer from her past has different plans for her and her friends.", "text_for_embedding": "Prom Night (2008). Genres: Crime, Horror. Donna's senior prom is supposed to be the best night of her life, though a sadistic killer from her past has different plans for her and her friends.. Tags: aunt, remake, blood on shirt, slasher, death of family, masturbation, kicked in the face, renovation, black stereotype, chest"} +{"id": "10625", "title": "Mean Girls", "year": 2004, "duration_min": 97, "rating": 6.9, "genres": "Comedy", "genres_pipe": "|Comedy|", "keywords": "female friendship, high school, fish out of water, best friend, teenager, popularity, gossip, teen comedy, high school rivalry, new girl at school", "tags_pipe": "|female friendship|high school|fish out of water|best friend|teenager|popularity|gossip|teen comedy|high school rivalry|new girl at school|", "overview": "Cady Heron is a hit with The Plastics, the A-list girl clique at her new school, until she makes the mistake of falling for Aaron Samuels, the ex-boyfriend of alpha Plastic Regina George.", "text_for_embedding": "Mean Girls (2004). Genres: Comedy. Cady Heron is a hit with The Plastics, the A-list girl clique at her new school, until she makes the mistake of falling for Aaron Samuels, the ex-boyfriend of alpha Plastic Regina George.. Tags: female friendship, high school, fish out of water, best friend, teenager, popularity, gossip, teen comedy, high school rivalry, new girl at school"} +{"id": "10934", "title": "Under the Tuscan Sun", "year": 2003, "duration_min": 113, "rating": 6.4, "genres": "Comedy, Drama, Romance", "genres_pipe": "|Comedy|Drama|Romance|", "keywords": "depression, toscana, recreation, author, divorce, woman director", "tags_pipe": "|depression|toscana|recreation|author|divorce|woman director|", "overview": "After a rough divoce, Frances, a 35 year old book editor from San Francisco takes a tour of Tuscany at the urgings of her friends. On a whim she buys Bramasole, a run down villa in the Tuscan countryside and begins to piece her life together starting with the villa and finds that life sometimes has unexpected ways of giving her everything she wanted.", "text_for_embedding": "Under the Tuscan Sun (2003). Genres: Comedy, Drama, Romance. After a rough divoce, Frances, a 35 year old book editor from San Francisco takes a tour of Tuscany at the urgings of her friends. On a whim she buys Bramasole, a run down villa in the Tuscan countryside and begins to piece her life together starting with the villa and finds that life sometimes has unexpected ways of giving her everything she wanted.. Tags: depression, toscana, recreation, author, divorce, woman director"} +{"id": "5279", "title": "Gosford Park", "year": 2001, "duration_min": 137, "rating": 6.8, "genres": "Drama, Mystery, Thriller", "genres_pipe": "|Drama|Mystery|Thriller|", "keywords": "servant, money, shooting party", "tags_pipe": "|servant|money|shooting party|", "overview": "Multiple storylined drama set in 1932, showing the lives of upstairs guest and downstairs servants at a party in a country house in England.", "text_for_embedding": "Gosford Park (2001). Genres: Drama, Mystery, Thriller. Multiple storylined drama set in 1932, showing the lives of upstairs guest and downstairs servants at a party in a country house in England.. Tags: servant, money, shooting party"} +{"id": "10013", "title": "Peggy Sue Got Married", "year": 1986, "duration_min": 103, "rating": 5.9, "genres": "Comedy, Drama, Fantasy, Romance", "genres_pipe": "|Comedy|Drama|Fantasy|Romance|", "keywords": "time travel, high school reunion", "tags_pipe": "|time travel|high school reunion|", "overview": "Peggy Sue faints at a Highschool reunion. When she wakes up she finds herself in her own past, just before she finished school.", "text_for_embedding": "Peggy Sue Got Married (1986). Genres: Comedy, Drama, Fantasy, Romance. Peggy Sue faints at a Highschool reunion. When she wakes up she finds herself in her own past, just before she finished school.. Tags: time travel, high school reunion"} +{"id": "194662", "title": "Birdman", "year": 2014, "duration_min": 119, "rating": 7.4, "genres": "Drama, Comedy", "genres_pipe": "|Drama|Comedy|", "keywords": "times square, superhero, long take, new york city, play, broadway, actor", "tags_pipe": "|times square|superhero|long take|new york city|play|broadway|actor|", "overview": "A fading actor best known for his portrayal of a popular superhero attempts to mount a comeback by appearing in a Broadway play. As opening night approaches, his attempts to become more altruistic, rebuild his career, and reconnect with friends and family prove more difficult than expected.", "text_for_embedding": "Birdman (2014). Genres: Drama, Comedy. A fading actor best known for his portrayal of a popular superhero attempts to mount a comeback by appearing in a Broadway play. As opening night approaches, his attempts to become more altruistic, rebuild his career, and reconnect with friends and family prove more difficult than expected.. Tags: times square, superhero, long take, new york city, play, broadway, actor"} +{"id": "160588", "title": "Blue Jasmine", "year": 2013, "duration_min": 98, "rating": 7.0, "genres": "Comedy, Drama", "genres_pipe": "|Comedy|Drama|", "keywords": "san francisco, sister sister relationship, new york city, rich, narcissism, xanax", "tags_pipe": "|san francisco|sister sister relationship|new york city|rich|narcissism|xanax|", "overview": "Jasmine French used to be on the top of the heap as a New York socialite, but now is returning to her estranged sister in San Francisco utterly ruined. As Jasmine struggles with her haunting memories of a privileged past bearing dark realities she ignored, she tries to recover in her present. Unfortunately, it all proves a losing battle as Jasmine's narcissistic hangups and their consequences begin to overwhelm her. In doing so, her old pretensions and new deceits begin to foul up everyone's lives, especially her own.", "text_for_embedding": "Blue Jasmine (2013). Genres: Comedy, Drama. Jasmine French used to be on the top of the heap as a New York socialite, but now is returning to her estranged sister in San Francisco utterly ruined. As Jasmine struggles with her haunting memories of a privileged past bearing dark realities she ignored, she tries to recover in her present. Unfortunately, it all proves a losing battle as Jasmine's narcissistic hangups and their consequences begin to overwhelm her. In doing so, her old pretensions and new deceits begin to foul up everyone's lives, especially her own.. Tags: san francisco, sister sister relationship, new york city, rich, narcissism, xanax"} +{"id": "9829", "title": "United 93", "year": 2006, "duration_min": 111, "rating": 6.9, "genres": "Drama, History, Crime, Thriller, Action", "genres_pipe": "|Drama|History|Crime|Thriller|Action|", "keywords": "airplane, hijacking, terror cell, emergency landing, war on terror", "tags_pipe": "|airplane|hijacking|terror cell|emergency landing|war on terror|", "overview": "A real time account of the events on United Flight 93, one of the planes hijacked on 9/11 that crashed near Shanksville, Pennsylvania when passengers foiled the terrorist plot.", "text_for_embedding": "United 93 (2006). Genres: Drama, History, Crime, Thriller, Action. A real time account of the events on United Flight 93, one of the planes hijacked on 9/11 that crashed near Shanksville, Pennsylvania when passengers foiled the terrorist plot.. Tags: airplane, hijacking, terror cell, emergency landing, war on terror"} +{"id": "10028", "title": "Honey", "year": 2003, "duration_min": 94, "rating": 6.0, "genres": "Romance, Music, Family", "genres_pipe": "|Romance|Music|Family|", "keywords": "new york, dancing, hip-hop, dream, dance, blackmail, harassment, career, video, teacher, business, sabotage, choreographer, club, harlem", "tags_pipe": "|new york|dancing|hip-hop|dream|dance|blackmail|harassment|career|video|teacher|business|sabotage|choreographer|club|harlem|", "overview": "Honey Daniels (Jessica Alba) dreams of making a name for herself as a hip-hop choreographer. When she's not busy hitting downtown clubs with her friends, she teaches dance classes at a nearby community center in Harlem, N.Y., as a way to keep kids off the streets. Honey thinks she's hit the jackpot when she meets a hotshot director (David Moscow) who casts her in one of his music videos. But, when he starts demanding sexual favors from her, Honey makes a decision that will change her life.", "text_for_embedding": "Honey (2003). Genres: Romance, Music, Family. Honey Daniels (Jessica Alba) dreams of making a name for herself as a hip-hop choreographer. When she's not busy hitting downtown clubs with her friends, she teaches dance classes at a nearby community center in Harlem, N.Y., as a way to keep kids off the streets. Honey thinks she's hit the jackpot when she meets a hotshot director (David Moscow) who casts her in one of his music videos. But, when he starts demanding sexual favors from her, Honey makes a decision that will change her life.. Tags: new york, dancing, hip-hop, dream, dance, blackmail, harassment, career, video, teacher, business, sabotage, choreographer, club, harlem"} +{"id": "10535", "title": "Spy Hard", "year": 1996, "duration_min": 81, "rating": 4.9, "genres": "Action, Comedy", "genres_pipe": "|Action|Comedy|", "keywords": "atomic bomb, spoof, james bond spoof", "tags_pipe": "|atomic bomb|spoof|james bond spoof|", "overview": "The evil Gen. Rancor has his sights set on world domination, and only one man can stop him: Dick Steele, also known as Agent WD-40. Rancor needs to obtain a computer circuit for the missile that he is planning to fire, so Steele teams up with Veronique Ukrinsky, a KGB agent whose father designed the chip. Together they try to locate the evil mastermind's headquarters, where Veronique's father and several other hostages are being held.", "text_for_embedding": "Spy Hard (1996). Genres: Action, Comedy. The evil Gen. Rancor has his sights set on world domination, and only one man can stop him: Dick Steele, also known as Agent WD-40. Rancor needs to obtain a computer circuit for the missile that he is planning to fire, so Steele teams up with Veronique Ukrinsky, a KGB agent whose father designed the chip. Together they try to locate the evil mastermind's headquarters, where Veronique's father and several other hostages are being held.. Tags: atomic bomb, spoof, james bond spoof"} +{"id": "790", "title": "The Fog", "year": 1980, "duration_min": 89, "rating": 6.4, "genres": "Horror", "genres_pipe": "|Horror|", "keywords": "prophecy, sea, beach, gold, small town, beheading, sword, narration, fog, leprosy, ship, lighthouse, church", "tags_pipe": "|prophecy|sea|beach|gold|small town|beheading|sword|narration|fog|leprosy|ship|lighthouse|church|", "overview": "Strange things begin to occurs as a tiny California coastal town prepares to commemorate its centenary. Inanimate objects spring eerily to life; Rev. Malone stumbles upon a dark secret about the town's founding; radio announcer Stevie witnesses a mystical fire; and hitchhiker Elizabeth discovers the mutilated corpse of a fisherman. Then a mysterious iridescent fog descends upon the village, and more people start to die.", "text_for_embedding": "The Fog (1980). Genres: Horror. Strange things begin to occurs as a tiny California coastal town prepares to commemorate its centenary. Inanimate objects spring eerily to life; Rev. Malone stumbles upon a dark secret about the town's founding; radio announcer Stevie witnesses a mystical fire; and hitchhiker Elizabeth discovers the mutilated corpse of a fisherman. Then a mysterious iridescent fog descends upon the village, and more people start to die.. Tags: prophecy, sea, beach, gold, small town, beheading, sword, narration, fog, leprosy, ship, lighthouse, church"} +{"id": "43959", "title": "Soul Surfer", "year": 2011, "duration_min": 106, "rating": 6.9, "genres": "Action, Drama", "genres_pipe": "|Action|Drama|", "keywords": "competition, based on novel, shark attack, surfing, biography, sport, duringcreditsstinger", "tags_pipe": "|competition|based on novel|shark attack|surfing|biography|sport|duringcreditsstinger|", "overview": "Soul Surfer is the inspiring true story of teen surfer Bethany Hamilton. Bethany lost her left arm in a shark attack and courageously overcame all odds to become a champion again, through her sheer determination and unwavering faith.Bethany (AnnaSophia Robb) was born to surf. A natural talent who took to the waves at a young age, she was leading an idyllic life on Kauai, participating in national surf competitions with her best friend Alana (Lorraine Nicholson), when everything changed. On Halloween morning, a 14-foot tiger shark came out of nowhere and seemed to shatter all her dreams.Soul Surfer reveals Bethany's fight to recover from her ordeal and how she grappled with the question of her future. Strengthened by the love of her parents, Tom (Dennis Quaid) and Cheri (Helen Hunt), and supported by her youth group leader Sara (Carrie Underwood), Bethany refuses to give in or give up, and begins a bold return to the water.", "text_for_embedding": "Soul Surfer (2011). Genres: Action, Drama. Soul Surfer is the inspiring true story of teen surfer Bethany Hamilton. Bethany lost her left arm in a shark attack and courageously overcame all odds to become a champion again, through her sheer determination and unwavering faith.Bethany (AnnaSophia Robb) was born to surf. A natural talent who took to the waves at a young age, she was leading an idyllic life on Kauai, participating in national surf competitions with her best friend Alana (Lorraine Nicholson), when everything changed. On Halloween morning, a 14-foot tiger shark came out of nowhere and seemed to shatter all her dreams.Soul Surfer reveals Bethany's fight to recover from her ordeal and how she grappled with the question of her future. Strengthened by the love of her parents, Tom (Dennis Quaid) and Cheri (Helen Hunt), and supported by her youth group leader Sara (Carrie Underwood), Bethany refuses to give in or give up, and begins a bold return to the water.. Tags: competition, based on novel, shark attack, surfing, biography, sport, duringcreditsstinger"} +{"id": "10364", "title": "Catch-22", "year": 1970, "duration_min": 121, "rating": 6.7, "genres": "War, Comedy, Drama", "genres_pipe": "|War|Comedy|Drama|", "keywords": "world war ii, island, bomber, pianosa, american", "tags_pipe": "|world war ii|island|bomber|pianosa|american|", "overview": "A bombardier in World War II tries desperately to escape the insanity of the war. However, sometimes insanity is the only sane way to cope with a crazy situation. Catch-22 is a parody of a \"military mentality\" and of a bureaucratic society in general.", "text_for_embedding": "Catch-22 (1970). Genres: War, Comedy, Drama. A bombardier in World War II tries desperately to escape the insanity of the war. However, sometimes insanity is the only sane way to cope with a crazy situation. Catch-22 is a parody of a \"military mentality\" and of a bureaucratic society in general.. Tags: world war ii, island, bomber, pianosa, american"} +{"id": "16991", "title": "Observe and Report", "year": 2009, "duration_min": 86, "rating": 5.6, "genres": "Comedy, Crime, Drama", "genres_pipe": "|Comedy|Crime|Drama|", "keywords": "robbery, unrequited love, security guard, mall", "tags_pipe": "|robbery|unrequited love|security guard|mall|", "overview": "Bi-polar mall security guard Ronnie Barnhardt is called into action to stop a flasher from turning shopper's paradise into his personal peep show. But when Barnhardt can't bring the culprit to justice, a surly police detective, is recruited to close the case.", "text_for_embedding": "Observe and Report (2009). Genres: Comedy, Crime, Drama. Bi-polar mall security guard Ronnie Barnhardt is called into action to stop a flasher from turning shopper's paradise into his personal peep show. But when Barnhardt can't bring the culprit to justice, a surly police detective, is recruited to close the case.. Tags: robbery, unrequited love, security guard, mall"} +{"id": "9610", "title": "Conan the Destroyer", "year": 1984, "duration_min": 103, "rating": 5.8, "genres": "Adventure, Fantasy, Action", "genres_pipe": "|Adventure|Fantasy|Action|", "keywords": "swordplay, sword, magic, warrior woman, lone wolf, wizardry, royalty, barbarian, sword and sorcery", "tags_pipe": "|swordplay|sword|magic|warrior woman|lone wolf|wizardry|royalty|barbarian|sword and sorcery|", "overview": "Based on a character created by Robert E. Howard, this fast-paced, occasionally humorous sequel to Conan the Barbarian features the hero (Arnold Schwarzenegger) as he is commissioned by the evil queen Taramis (Sarah Douglas) to safely escort a teen princess (Olivia D'Abo) and her powerful bodyguard (Wilt Chamberlain) to a far away castle to retrieve the magic Horn of Dagon. Unknown to Conan, the queen plans to sacrifice the princess when she returns and inherit her kingdom after the bodyguard kills Conan. The queen's plans fail to take into consideration Conan's strength and cunning and the abilities of his sidekicks: the eccentric wizard Akiro (Mako), the wild woman Zula (Grace Jones), and the inept Malak (Tracey Walter). Together the hero and his allies must defeat both mortal and supernatural foes in this voyage to sword-and-sorcery land.", "text_for_embedding": "Conan the Destroyer (1984). Genres: Adventure, Fantasy, Action. Based on a character created by Robert E. Howard, this fast-paced, occasionally humorous sequel to Conan the Barbarian features the hero (Arnold Schwarzenegger) as he is commissioned by the evil queen Taramis (Sarah Douglas) to safely escort a teen princess (Olivia D'Abo) and her powerful bodyguard (Wilt Chamberlain) to a far away castle to retrieve the magic Horn of Dagon. Unknown to Conan, the queen plans to sacrifice the princess when she returns and inherit her kingdom after the bodyguard kills Conan. The queen's plans fail to take into consideration Conan's strength and cunning and the abilities of his sidekicks: the eccentric wizard Akiro (Mako), the wild woman Zula (Grace Jones), and the inept Malak (Tracey Walter). Together the hero and his allies must defeat both mortal and supernatural foes in this voyage to sword-and-sorcery land.. Tags: swordplay, sword, magic, warrior woman, lone wolf, wizardry, royalty, barbarian, sword and sorcery"} +{"id": "1578", "title": "Raging Bull", "year": 1980, "duration_min": 129, "rating": 7.7, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "transporter, jealousy, violent husband, paranoia, boxer, biography, fistfight, broken nose, sport, domestic violence, extreme violence, over-the-hill fighter", "tags_pipe": "|transporter|jealousy|violent husband|paranoia|boxer|biography|fistfight|broken nose|sport|domestic violence|extreme violence|over-the-hill fighter|", "overview": "When Jake LaMotta steps into a boxing ring and obliterates his opponent, he's a prizefighter. But when he treats his family and friends the same way, he's a ticking time bomb, ready to go off at any moment. Though LaMotta wants his family's love, something always seems to come between them. Perhaps it's his violent bouts of paranoia and jealousy. This kind of rage helped make him a champ, but in real life, he winds up in the ring alone.", "text_for_embedding": "Raging Bull (1980). Genres: Drama. When Jake LaMotta steps into a boxing ring and obliterates his opponent, he's a prizefighter. But when he treats his family and friends the same way, he's a ticking time bomb, ready to go off at any moment. Though LaMotta wants his family's love, something always seems to come between them. Perhaps it's his violent bouts of paranoia and jealousy. This kind of rage helped make him a champ, but in real life, he winds up in the ring alone.. Tags: transporter, jealousy, violent husband, paranoia, boxer, biography, fistfight, broken nose, sport, domestic violence, extreme violence, over-the-hill fighter"} +{"id": "25643", "title": "Love Happens", "year": 2009, "duration_min": 109, "rating": 5.6, "genres": "Drama, Romance", "genres_pipe": "|Drama|Romance|", "keywords": "hotel, florist, forest, grief, seminar, motivational speaker", "tags_pipe": "|hotel|florist|forest|grief|seminar|motivational speaker|", "overview": "Dr. Burke Ryan is a successful self-help author and motivational speaker with a secret. While he helps thousands of people cope with tragedy and personal loss, he secretly is unable to overcome the death of his late wife. It's not until Burke meets a fiercely independent florist named Eloise that he is forced to face his past and overcome his demons.", "text_for_embedding": "Love Happens (2009). Genres: Drama, Romance. Dr. Burke Ryan is a successful self-help author and motivational speaker with a secret. While he helps thousands of people cope with tragedy and personal loss, he secretly is unable to overcome the death of his late wife. It's not until Burke meets a fiercely independent florist named Eloise that he is forced to face his past and overcome his demons.. Tags: hotel, florist, forest, grief, seminar, motivational speaker"} +{"id": "11904", "title": "Young Sherlock Holmes", "year": 1985, "duration_min": 109, "rating": 6.7, "genres": "Action, Adventure, Crime, Drama, Family, Mystery, Thriller", "genres_pipe": "|Action|Adventure|Crime|Drama|Family|Mystery|Thriller|", "keywords": "london england, school friend, religion and supernatural, sherlock holmes, murder, aftercreditsstinger", "tags_pipe": "|london england|school friend|religion and supernatural|sherlock holmes|murder|aftercreditsstinger|", "overview": "Sherlock Holmes and Dr. Watson meet as boys in an English Boarding school. Holmes is known for his deductive ability even as a youth, amazing his classmates with his abilities. When they discover a plot to murder a series of British business men by an Egyptian cult, they move to stop it.", "text_for_embedding": "Young Sherlock Holmes (1985). Genres: Action, Adventure, Crime, Drama, Family, Mystery, Thriller. Sherlock Holmes and Dr. Watson meet as boys in an English Boarding school. Holmes is known for his deductive ability even as a youth, amazing his classmates with his abilities. When they discover a plot to murder a series of British business men by an Egyptian cult, they move to stop it.. Tags: london england, school friend, religion and supernatural, sherlock holmes, murder, aftercreditsstinger"} +{"id": "28665", "title": "Fame", "year": 2009, "duration_min": 107, "rating": 5.5, "genres": "Music, Comedy, Drama, Romance", "genres_pipe": "|Music|Comedy|Drama|Romance|", "keywords": "musical, duringcreditsstinger", "tags_pipe": "|musical|duringcreditsstinger|", "overview": "An updated version of the 1980 musical, which centered on the students of the New York Academy of Performing Arts.", "text_for_embedding": "Fame (2009). Genres: Music, Comedy, Drama, Romance. An updated version of the 1980 musical, which centered on the students of the New York Academy of Performing Arts.. Tags: musical, duringcreditsstinger"} +{"id": "44115", "title": "127 Hours", "year": 2010, "duration_min": 94, "rating": 7.0, "genres": "Adventure, Drama, Thriller", "genres_pipe": "|Adventure|Drama|Thriller|", "keywords": "mountains, despair, adventure, utah, alone, canyon, climbing, based on true story, rescue, survival, escape, true, trapped, boulder, adventurer", "tags_pipe": "|mountains|despair|adventure|utah|alone|canyon|climbing|based on true story|rescue|survival|escape|true|trapped|boulder|adventurer|", "overview": "The true story of mountain climber Aron Ralston's remarkable adventure to save himself after a fallen boulder crashes on his arm and traps him in an isolated canyon in Utah.", "text_for_embedding": "127 Hours (2010). Genres: Adventure, Drama, Thriller. The true story of mountain climber Aron Ralston's remarkable adventure to save himself after a fallen boulder crashes on his arm and traps him in an isolated canyon in Utah.. Tags: mountains, despair, adventure, utah, alone, canyon, climbing, based on true story, rescue, survival, escape, true, trapped, boulder, adventurer"} +{"id": "10569", "title": "Small Time Crooks", "year": 2000, "duration_min": 94, "rating": 6.4, "genres": "Action, Comedy, Crime", "genres_pipe": "|Action|Comedy|Crime|", "keywords": "bank, restaurant, role of women, bank robber, wife, pizzeria, pizza, keks, independent film, bank robbery, hoodlum", "tags_pipe": "|bank|restaurant|role of women|bank robber|wife|pizzeria|pizza|keks|independent film|bank robbery|hoodlum|", "overview": "A loser of a crook and his wife strike it rich when a botched bank job's cover business becomes a spectacular success.", "text_for_embedding": "Small Time Crooks (2000). Genres: Action, Comedy, Crime. A loser of a crook and his wife strike it rich when a botched bank job's cover business becomes a spectacular success.. Tags: bank, restaurant, role of women, bank robber, wife, pizzeria, pizza, keks, independent film, bank robbery, hoodlum"} +{"id": "10560", "title": "Center Stage", "year": 2000, "duration_min": 115, "rating": 6.8, "genres": "Drama, Music", "genres_pipe": "|Drama|Music|", "keywords": "new york, competition, dancer, dance, ball, career, ballet dancer, music, entrance examination, ballet, dance teacher", "tags_pipe": "|new york|competition|dancer|dance|ball|career|ballet dancer|music|entrance examination|ballet|dance teacher|", "overview": "A group of 12 teenagers from various backgrounds enroll at the American Ballet Academy in New York to make it as ballet dancers and each one deals with the problems and stress of training and getting ahead in the world of dance.", "text_for_embedding": "Center Stage (2000). Genres: Drama, Music. A group of 12 teenagers from various backgrounds enroll at the American Ballet Academy in New York to make it as ballet dancers and each one deals with the problems and stress of training and getting ahead in the world of dance.. Tags: new york, competition, dancer, dance, ball, career, ballet dancer, music, entrance examination, ballet, dance teacher"} +{"id": "333348", "title": "Love the Coopers", "year": 2015, "duration_min": 107, "rating": 5.4, "genres": "Comedy, Family", "genres_pipe": "|Comedy|Family|", "keywords": "big family, family relationships, family, woman director, christmas", "tags_pipe": "|big family|family relationships|family|woman director|christmas|", "overview": "When four generations of the Cooper clan come together for their annual Christmas Eve celebration, a series of unexpected visitors and unlikely events turn the night upside down, leading them all toward a surprising rediscovery of family bonds and the spirit of the holiday.", "text_for_embedding": "Love the Coopers (2015). Genres: Comedy, Family. When four generations of the Cooper clan come together for their annual Christmas Eve celebration, a series of unexpected visitors and unlikely events turn the night upside down, leading them all toward a surprising rediscovery of family bonds and the spirit of the holiday.. Tags: big family, family relationships, family, woman director, christmas"} +{"id": "20483", "title": "Catch That Kid", "year": 2004, "duration_min": 92, "rating": 4.9, "genres": "Family, Action, Adventure", "genres_pipe": "|Family|Action|Adventure|", "keywords": "bank robbery", "tags_pipe": "|bank robbery|", "overview": "Athletic 12-year-old Maddy (Kristen Stewart) shares an enthusiasm for mountain climbing with her father, Tom (Sam Robards). Unfortunately, Tom suffers a spinal injury while scaling Mount Everest, and his family is unable to afford the surgery that can save him. Maddy decides to get the money for her father's operation by robbing a high-security bank. She relies on her climbing skills and help from her geeky friends (Max Thieriot, Corbin Bleu) to pull it off successfully.", "text_for_embedding": "Catch That Kid (2004). Genres: Family, Action, Adventure. Athletic 12-year-old Maddy (Kristen Stewart) shares an enthusiasm for mountain climbing with her father, Tom (Sam Robards). Unfortunately, Tom suffers a spinal injury while scaling Mount Everest, and his family is unable to afford the surgery that can save him. Maddy decides to get the money for her father's operation by robbing a high-security bank. She relies on her climbing skills and help from her geeky friends (Max Thieriot, Corbin Bleu) to pull it off successfully.. Tags: bank robbery"} +{"id": "11457", "title": "Life as a House", "year": 2001, "duration_min": 125, "rating": 7.2, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "father son relationship, house, cancer, drug, divorce, ex-wife, unemployment", "tags_pipe": "|father son relationship|house|cancer|drug|divorce|ex-wife|unemployment|", "overview": "When a man is diagnosed with terminal cancer, he takes custody of his misanthropic teenage son, for whom quality time means getting high, engaging in small-time prostitution, and avoiding his father.", "text_for_embedding": "Life as a House (2001). Genres: Drama. When a man is diagnosed with terminal cancer, he takes custody of his misanthropic teenage son, for whom quality time means getting high, engaging in small-time prostitution, and avoiding his father.. Tags: father son relationship, house, cancer, drug, divorce, ex-wife, unemployment"} +{"id": "321697", "title": "Steve Jobs", "year": 2015, "duration_min": 122, "rating": 6.8, "genres": "Drama, History", "genres_pipe": "|Drama|History|", "keywords": "biography, computer, father daughter relationship, apple computer, steve jobs, based on true events", "tags_pipe": "|biography|computer|father daughter relationship|apple computer|steve jobs|based on true events|", "overview": "Set backstage at three iconic product launches and ending in 1998 with the unveiling of the iMac, Steve Jobs takes us behind the scenes of the digital revolution to paint an intimate portrait of the brilliant man at its epicenter.", "text_for_embedding": "Steve Jobs (2015). Genres: Drama, History. Set backstage at three iconic product launches and ending in 1998 with the unveiling of the iMac, Steve Jobs takes us behind the scenes of the digital revolution to paint an intimate portrait of the brilliant man at its epicenter.. Tags: biography, computer, father daughter relationship, apple computer, steve jobs, based on true events"} +{"id": "19840", "title": "I Love You, Beth Cooper", "year": 2009, "duration_min": 102, "rating": 5.1, "genres": "Comedy, Romance", "genres_pipe": "|Comedy|Romance|", "keywords": "virgin, cheerleader, graduation, high school, aspen, friends, in the closet, teenager, popularity, based on young adult novel, popular girl", "tags_pipe": "|virgin|cheerleader|graduation|high school|aspen|friends|in the closet|teenager|popularity|based on young adult novel|popular girl|", "overview": "Nerdy teenager Denis Cooverman (Paul Rust) harbors a secret crush on Beth Cooper (Hayden Panettiere), the hottest girl in high school. During his graduation speech, Denis lets the cat out of the bag and declares his love for Beth, who, instead of dissing Denis, shows up at his house later that day and promises to show him the time of his life.", "text_for_embedding": "I Love You, Beth Cooper (2009). Genres: Comedy, Romance. Nerdy teenager Denis Cooverman (Paul Rust) harbors a secret crush on Beth Cooper (Hayden Panettiere), the hottest girl in high school. During his graduation speech, Denis lets the cat out of the bag and declares his love for Beth, who, instead of dissing Denis, shows up at his house later that day and promises to show him the time of his life.. Tags: virgin, cheerleader, graduation, high school, aspen, friends, in the closet, teenager, popularity, based on young adult novel, popular girl"} +{"id": "22327", "title": "Youth in Revolt", "year": 2009, "duration_min": 87, "rating": 5.9, "genres": "Drama, Comedy, Romance", "genres_pipe": "|Drama|Comedy|Romance|", "keywords": "based on novel, coming of age, duringcreditsstinger", "tags_pipe": "|based on novel|coming of age|duringcreditsstinger|", "overview": "Nick Twisp (Michael Cera), a teen with a taste for the finer things in life like Sinatra and Fellini, falls hopelessly in love with the beautiful, free-spirited Sheeni Saunders (Portia Doubleday) while on a family vacation. But family, geography and jealous ex-lovers conspire to keep these two apart. Nick abandons his dull, predictable life and develops a rebellious alter ego: François. With his ascot, his moustache and his cigarette, François will stop at nothing to be with Sheeni, and leads Nick on a path of destruction with unpredictable consequences..", "text_for_embedding": "Youth in Revolt (2009). Genres: Drama, Comedy, Romance. Nick Twisp (Michael Cera), a teen with a taste for the finer things in life like Sinatra and Fellini, falls hopelessly in love with the beautiful, free-spirited Sheeni Saunders (Portia Doubleday) while on a family vacation. But family, geography and jealous ex-lovers conspire to keep these two apart. Nick abandons his dull, predictable life and develops a rebellious alter ego: François. With his ascot, his moustache and his cigarette, François will stop at nothing to be with Sheeni, and leads Nick on a path of destruction with unpredictable consequences... Tags: based on novel, coming of age, duringcreditsstinger"} +{"id": "38665", "title": "The Legend of the Lone Ranger", "year": 1981, "duration_min": 98, "rating": 3.7, "genres": "Action, Adventure, Romance, Western", "genres_pipe": "|Action|Adventure|Romance|Western|", "keywords": "lone ranger, wild bill hickok, buffalo bill, the lone ranger", "tags_pipe": "|lone ranger|wild bill hickok|buffalo bill|the lone ranger|", "overview": "When the young Texas Ranger, John Reid, is the sole survivor of an ambush arranged by the militaristic outlaw leader, Butch Cavendich, he is rescued by an old childhood Comanche friend, Tonto. When he recovers from his wounds, he dedicates his life to fighting the evil that Cavendich represents. To this end, John Reid becomes the great masked western hero, The Lone Ranger. With the help of Tonto, the pair go to rescue President Grant when Cavendich takes him hostage.", "text_for_embedding": "The Legend of the Lone Ranger (1981). Genres: Action, Adventure, Romance, Western. When the young Texas Ranger, John Reid, is the sole survivor of an ambush arranged by the militaristic outlaw leader, Butch Cavendich, he is rescued by an old childhood Comanche friend, Tonto. When he recovers from his wounds, he dedicates his life to fighting the evil that Cavendich represents. To this end, John Reid becomes the great masked western hero, The Lone Ranger. With the help of Tonto, the pair go to rescue President Grant when Cavendich takes him hostage.. Tags: lone ranger, wild bill hickok, buffalo bill, the lone ranger"} +{"id": "2575", "title": "The Tailor of Panama", "year": 2001, "duration_min": 109, "rating": 6.2, "genres": "Drama, Thriller", "genres_pipe": "|Drama|Thriller|", "keywords": "dancing, spy, birthday, map, fireworks, bridge, secret agent, president, children, independent film, debt, swimming, political, band", "tags_pipe": "|dancing|spy|birthday|map|fireworks|bridge|secret agent|president|children|independent film|debt|swimming|political|band|", "overview": "A British spy is banished to Panama after having an affair with an ambassador's mistress. Once there he makes connection with a local tailor with a nefarious past and connections to all of the top political and gangster figures in Panama. The tailor also has a wife, who works for the Panamanian president and a huge debt. The mission is to learn what the President intends to do with the Canal.", "text_for_embedding": "The Tailor of Panama (2001). Genres: Drama, Thriller. A British spy is banished to Panama after having an affair with an ambassador's mistress. Once there he makes connection with a local tailor with a nefarious past and connections to all of the top political and gangster figures in Panama. The tailor also has a wife, who works for the Panamanian president and a huge debt. The mission is to learn what the President intends to do with the Canal.. Tags: dancing, spy, birthday, map, fireworks, bridge, secret agent, president, children, independent film, debt, swimming, political, band"} +{"id": "11644", "title": "Blow Out", "year": 1981, "duration_min": 108, "rating": 7.3, "genres": "Drama, Mystery, Thriller", "genres_pipe": "|Drama|Mystery|Thriller|", "keywords": "audio tape, hitman, presidential election, noises, yell, politics, faithlessness", "tags_pipe": "|audio tape|hitman|presidential election|noises|yell|politics|faithlessness|", "overview": "Jack Terry is a master sound recordist who works on grade-B horror movies. Late one evening, he is recording sounds for use in his movies when he hears something unexpected through his sound equipment and records it. Curiosity gets the better of him when the media become involved, and he begins to unravel the pieces of a nefarious conspiracy. As he struggles to survive against his shadowy enemies and expose the truth, he does not know whom he can trust.", "text_for_embedding": "Blow Out (1981). Genres: Drama, Mystery, Thriller. Jack Terry is a master sound recordist who works on grade-B horror movies. Late one evening, he is recording sounds for use in his movies when he hears something unexpected through his sound equipment and records it. Curiosity gets the better of him when the media become involved, and he begins to unravel the pieces of a nefarious conspiracy. As he struggles to survive against his shadowy enemies and expose the truth, he does not know whom he can trust.. Tags: audio tape, hitman, presidential election, noises, yell, politics, faithlessness"} +{"id": "146227", "title": "Getaway", "year": 2013, "duration_min": 90, "rating": 4.9, "genres": "Action, Crime", "genres_pipe": "|Action|Crime|", "keywords": "", "tags_pipe": "", "overview": "Former race car driver Brent Magna (Hawke) is pitted against the clock. Desperately trying to save the life of his kidnapped wife, Brent commandeers a custom Ford Shelby GT500 Super Snake, taking it and its unwitting owner (Gomez) on a high-speed race against time, at the command of the mysterious villain holding his wife hostage.", "text_for_embedding": "Getaway (2013). Genres: Action, Crime. Former race car driver Brent Magna (Hawke) is pitted against the clock. Desperately trying to save the life of his kidnapped wife, Brent commandeers a custom Ford Shelby GT500 Super Snake, taking it and its unwitting owner (Gomez) on a high-speed race against time, at the command of the mysterious villain holding his wife hostage.. Tags: "} +{"id": "68924", "title": "The Ice Storm", "year": 1997, "duration_min": 112, "rating": 6.9, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "based on novel, 1970s, thanksgiving, dysfunctional family, independent film", "tags_pipe": "|based on novel|1970s|thanksgiving|dysfunctional family|independent film|", "overview": "In the weekend after thanksgiving 1973 the Hoods are skidding out of control. Benjamin Hood reels from drink to drink, trying not to think about his trouble at the office. His wife, Elena, is reading self help books and losing patience with her husband's lies. Their son, Paul, home for the holidays, escapes to the city to pursue an alluring rich girl from his prep school. Young, budding nymphomaniac, Wendy Hood roams the neighborhood, innocently exploring liquor cabinets and lingerie drawers of her friends' parents, looking for something new. Then an ice storm hits, the worst in a century.", "text_for_embedding": "The Ice Storm (1997). Genres: Drama. In the weekend after thanksgiving 1973 the Hoods are skidding out of control. Benjamin Hood reels from drink to drink, trying not to think about his trouble at the office. His wife, Elena, is reading self help books and losing patience with her husband's lies. Their son, Paul, home for the holidays, escapes to the city to pursue an alluring rich girl from his prep school. Young, budding nymphomaniac, Wendy Hood roams the neighborhood, innocently exploring liquor cabinets and lingerie drawers of her friends' parents, looking for something new. Then an ice storm hits, the worst in a century.. Tags: based on novel, 1970s, thanksgiving, dysfunctional family, independent film"} +{"id": "253235", "title": "And So It Goes", "year": 2014, "duration_min": 94, "rating": 5.7, "genres": "Comedy, Drama, Romance", "genres_pipe": "|Comedy|Drama|Romance|", "keywords": "grandfather granddaughter relationship, neighbor, wealthy, elderly, estrangement", "tags_pipe": "|grandfather granddaughter relationship|neighbor|wealthy|elderly|estrangement|", "overview": "A self-centered realtor enlists the help of his neighbor when he's suddenly left in charge of the granddaughter he never knew existed until his estranged son drops her off at his home.", "text_for_embedding": "And So It Goes (2014). Genres: Comedy, Drama, Romance. A self-centered realtor enlists the help of his neighbor when he's suddenly left in charge of the granddaughter he never knew existed until his estranged son drops her off at his home.. Tags: grandfather granddaughter relationship, neighbor, wealthy, elderly, estrangement"} +{"id": "22102", "title": "Troop Beverly Hills", "year": 1989, "duration_min": 105, "rating": 5.6, "genres": "Adventure, Comedy, Family", "genres_pipe": "|Adventure|Comedy|Family|", "keywords": "wilderness, teen angst", "tags_pipe": "|wilderness|teen angst|", "overview": "A Beverly Hills housewife in the middle of a divorce tries to find focus in her life by taking over her daughter's Wilderness Girls troop.", "text_for_embedding": "Troop Beverly Hills (1989). Genres: Adventure, Comedy, Family. A Beverly Hills housewife in the middle of a divorce tries to find focus in her life by taking over her daughter's Wilderness Girls troop.. Tags: wilderness, teen angst"} +{"id": "18701", "title": "Being Julia", "year": 2004, "duration_min": 104, "rating": 6.4, "genres": "Comedy, Drama, Romance", "genres_pipe": "|Comedy|Drama|Romance|", "keywords": "", "tags_pipe": "", "overview": "Julia Lambert is a true diva: beautiful, talented, weathly and famous. She has it all - including a devoted husband who has mastermined her brilliant career - but after years of shining in the spotlight she begins to suffer from a severe case of boredom and longs for something new and exciting to put the twinkle back in her eye. Julia finds exactly what she's looking for in a handsome young American fan, but it isn't long before the novelty fling adds a few more sparks than she was hoping for. Fortuately for her, this surprise twist in the plot will trust her back into the greatest role of her life.", "text_for_embedding": "Being Julia (2004). Genres: Comedy, Drama, Romance. Julia Lambert is a true diva: beautiful, talented, weathly and famous. She has it all - including a devoted husband who has mastermined her brilliant career - but after years of shining in the spotlight she begins to suffer from a severe case of boredom and longs for something new and exciting to put the twinkle back in her eye. Julia finds exactly what she's looking for in a handsome young American fan, but it isn't long before the novelty fling adds a few more sparks than she was hoping for. Fortuately for her, this surprise twist in the plot will trust her back into the greatest role of her life.. Tags: "} +{"id": "10068", "title": "Nine 1/2 Weeks", "year": 1986, "duration_min": 117, "rating": 5.8, "genres": "Drama, Romance", "genres_pipe": "|Drama|Romance|", "keywords": "sexual obsession, prostitute, women's sexual identity, broker, gallery owner, sadomasochism", "tags_pipe": "|sexual obsession|prostitute|women's sexual identity|broker|gallery owner|sadomasochism|", "overview": "An erotic story about a woman, the assistant of an art gallery, who gets involved in an impersonal affair with a man. She barely knows about his life, only about the sex games they play, so the relationship begins to get complicated.", "text_for_embedding": "Nine 1/2 Weeks (1986). Genres: Drama, Romance. An erotic story about a woman, the assistant of an art gallery, who gets involved in an impersonal affair with a man. She barely knows about his life, only about the sex games they play, so the relationship begins to get complicated.. Tags: sexual obsession, prostitute, women's sexual identity, broker, gallery owner, sadomasochism"} +{"id": "848", "title": "Dragonslayer", "year": 1981, "duration_min": 108, "rating": 6.5, "genres": "Fantasy", "genres_pipe": "|Fantasy|", "keywords": "secret identity, self sacrifice, magic, virgin, solar eclipse, sacrifice, sorcerer's apprentice, amulet, lottery, brood, egg, princess, sorcerer, human sacrifice, dragon", "tags_pipe": "|secret identity|self sacrifice|magic|virgin|solar eclipse|sacrifice|sorcerer's apprentice|amulet|lottery|brood|egg|princess|sorcerer|human sacrifice|dragon|", "overview": "The sorcerer and his apprentice Galen are on a mission to kill an evil dragon in order to save the King’s daughter from being sacrificed in accordance to a pact that the King himself made with the dragon to protect his kingdom. A fantasy film from Disney Studios that exhausted all possible visual effects of the time.", "text_for_embedding": "Dragonslayer (1981). Genres: Fantasy. The sorcerer and his apprentice Galen are on a mission to kill an evil dragon in order to save the King’s daughter from being sacrificed in accordance to a pact that the King himself made with the dragon to protect his kingdom. A fantasy film from Disney Studios that exhausted all possible visual effects of the time.. Tags: secret identity, self sacrifice, magic, virgin, solar eclipse, sacrifice, sorcerer's apprentice, amulet, lottery, brood, egg, princess, sorcerer, human sacrifice, dragon"} +{"id": "36811", "title": "The Last Station", "year": 2009, "duration_min": 112, "rating": 6.7, "genres": "Drama, Romance", "genres_pipe": "|Drama|Romance|", "keywords": "duringcreditsstinger", "tags_pipe": "|duringcreditsstinger|", "overview": "A historical drama that illustrates Russian author Leo Tolstoy's struggle to balance fame and wealth with his commitment to a life devoid of material things. The Countess Sofya, wife and muse to Leo Tolstoy, uses every trick of seduction on her husband's loyal disciple, whom she believes was the person responsible for Tolstoy signing a new will that leaves his work and property to the Russian people.", "text_for_embedding": "The Last Station (2009). Genres: Drama, Romance. A historical drama that illustrates Russian author Leo Tolstoy's struggle to balance fame and wealth with his commitment to a life devoid of material things. The Countess Sofya, wife and muse to Leo Tolstoy, uses every trick of seduction on her husband's loyal disciple, whom she believes was the person responsible for Tolstoy signing a new will that leaves his work and property to the Russian people.. Tags: duringcreditsstinger"} +{"id": "522", "title": "Ed Wood", "year": 1994, "duration_min": 127, "rating": 7.3, "genres": "Comedy, Drama, History", "genres_pipe": "|Comedy|Drama|History|", "keywords": "individual, taxi, transsexuality, fortune teller, film business, film making, film producer, vororte, film maker, boxer, film director, oddball, celebrity, morphine, movie studio", "tags_pipe": "|individual|taxi|transsexuality|fortune teller|film business|film making|film producer|vororte|film maker|boxer|film director|oddball|celebrity|morphine|movie studio|", "overview": "The mostly true story of the legendary \"worst director of all time\", who, with the help of his strange friends, filmed countless B-movies without ever becoming famous or successful.", "text_for_embedding": "Ed Wood (1994). Genres: Comedy, Drama, History. The mostly true story of the legendary \"worst director of all time\", who, with the help of his strange friends, filmed countless B-movies without ever becoming famous or successful.. Tags: individual, taxi, transsexuality, fortune teller, film business, film making, film producer, vororte, film maker, boxer, film director, oddball, celebrity, morphine, movie studio"} +{"id": "130150", "title": "Labor Day", "year": 2013, "duration_min": 111, "rating": 6.7, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "escaped convict, depressed mom", "tags_pipe": "|escaped convict|depressed mom|", "overview": "Depressed single mom Adele and her son Henry offer a wounded, fearsome man a ride. As police search town for the escaped convict, the mother and son gradually learn his true story as their options become increasingly limited.", "text_for_embedding": "Labor Day (2013). Genres: Drama. Depressed single mom Adele and her son Henry offer a wounded, fearsome man a ride. As police search town for the escaped convict, the mother and son gradually learn his true story as their options become increasingly limited.. Tags: escaped convict, depressed mom"} +{"id": "12246", "title": "Mongol: The Rise of Genghis Khan", "year": 2007, "duration_min": 120, "rating": 6.5, "genres": "History", "genres_pipe": "|History|", "keywords": "mongolia, genghis khan", "tags_pipe": "|mongolia|genghis khan|", "overview": "The story recounts the early life of Genghis Khan, a slave who went on to conquer half the world in the 11th century.", "text_for_embedding": "Mongol: The Rise of Genghis Khan (2007). Genres: History. The story recounts the early life of Genghis Khan, a slave who went on to conquer half the world in the 11th century.. Tags: mongolia, genghis khan"} +{"id": "13809", "title": "RockNRolla", "year": 2008, "duration_min": 114, "rating": 6.9, "genres": "Action, Crime, Thriller", "genres_pipe": "|Action|Crime|Thriller|", "keywords": "london england, gang leader, money, gang, crime", "tags_pipe": "|london england|gang leader|money|gang|crime|", "overview": "When a Russian mobster sets up a real estate scam that generates millions of pounds, various members of London's criminal underworld pursue their share of the fortune. Various shady characters, including Mr One-Two, Stella the accountant, and Johnny Quid, a druggie rock-star, try to claim their slice.", "text_for_embedding": "RockNRolla (2008). Genres: Action, Crime, Thriller. When a Russian mobster sets up a real estate scam that generates millions of pounds, various members of London's criminal underworld pursue their share of the fortune. Various shady characters, including Mr One-Two, Stella the accountant, and Johnny Quid, a druggie rock-star, try to claim their slice.. Tags: london england, gang leader, money, gang, crime"} +{"id": "27380", "title": "Megaforce", "year": 1982, "duration_min": 99, "rating": 3.5, "genres": "Adventure, Action, Science Fiction", "genres_pipe": "|Adventure|Action|Science Fiction|", "keywords": "dictator, soldier, electronic music score, military unit", "tags_pipe": "|dictator|soldier|electronic music score|military unit|", "overview": "Megaforce is an elite multi-national military unit that does the jobs that individual governments wont. When the peaceful Republic of Sardun in under threat from their more aggressive neighbour the beautiful Major Zara (Persis Khambatta) and General Byrne-White (Edward Mulhare) see the help of Ace Hunter (Barry Bostwick) and Megaforce.", "text_for_embedding": "Megaforce (1982). Genres: Adventure, Action, Science Fiction. Megaforce is an elite multi-national military unit that does the jobs that individual governments wont. When the peaceful Republic of Sardun in under threat from their more aggressive neighbour the beautiful Major Zara (Persis Khambatta) and General Byrne-White (Edward Mulhare) see the help of Ace Hunter (Barry Bostwick) and Megaforce.. Tags: dictator, soldier, electronic music score, military unit"} +{"id": "10549", "title": "Hamlet", "year": 1996, "duration_min": 242, "rating": 7.3, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "mother, shakespeare, denmark, loss of father, prince, madness", "tags_pipe": "|mother|shakespeare|denmark|loss of father|prince|madness|", "overview": "Hamlet, Prince of Denmark, returns home to find his father murdered and his mother remarrying the murderer, his uncle. Meanwhile, war is brewing.", "text_for_embedding": "Hamlet (1996). Genres: Drama. Hamlet, Prince of Denmark, returns home to find his father murdered and his mother remarrying the murderer, his uncle. Meanwhile, war is brewing.. Tags: mother, shakespeare, denmark, loss of father, prince, madness"} +{"id": "33870", "title": "Mao's Last Dancer", "year": 2009, "duration_min": 117, "rating": 6.8, "genres": "Drama, Romance", "genres_pipe": "|Drama|Romance|", "keywords": "costume, song, village, promise, ballet", "tags_pipe": "|costume|song|village|promise|ballet|", "overview": "At the age of 11, Li was plucked from a poor Chinese village by Madame Mao's cultural delegates and taken to Beijing to study ballet. In 1979, during a cultural exchange to Texas, he fell in love with an American woman. Two years later, he managed to defect and went on to perform as a principal dancer for the Houston Ballet and as a principal artist with the Australian Ballet.", "text_for_embedding": "Mao's Last Dancer (2009). Genres: Drama, Romance. At the age of 11, Li was plucked from a poor Chinese village by Madame Mao's cultural delegates and taken to Beijing to study ballet. In 1979, during a cultural exchange to Texas, he fell in love with an American woman. Two years later, he managed to defect and went on to perform as a principal dancer for the Houston Ballet and as a principal artist with the Australian Ballet.. Tags: costume, song, village, promise, ballet"} +{"id": "245703", "title": "Midnight Special", "year": 2016, "duration_min": 112, "rating": 6.2, "genres": "Adventure, Drama, Science Fiction", "genres_pipe": "|Adventure|Drama|Science Fiction|", "keywords": "father son relationship, helicopter, fbi, motel, chase, child kidnapping, religious sect, goggles", "tags_pipe": "|father son relationship|helicopter|fbi|motel|chase|child kidnapping|religious sect|goggles|", "overview": "A father and son go on the run after the dad learns his child possesses special powers.", "text_for_embedding": "Midnight Special (2016). Genres: Adventure, Drama, Science Fiction. A father and son go on the run after the dad learns his child possesses special powers.. Tags: father son relationship, helicopter, fbi, motel, chase, child kidnapping, religious sect, goggles"} +{"id": "10739", "title": "Anything Else", "year": 2003, "duration_min": 108, "rating": 6.2, "genres": "Comedy, Romance", "genres_pipe": "|Comedy|Romance|", "keywords": "psychoanalysis, comedian, relationship problems, advice, experience", "tags_pipe": "|psychoanalysis|comedian|relationship problems|advice|experience|", "overview": "Jerry Falk, an aspiring writer in New York, falls in love at first sight with a free-spirited young woman named Amanda He has heard the phrase that life is like \"anything else,\" but soon he finds that life with the unpredictable Amanda isn't like anything else at all.", "text_for_embedding": "Anything Else (2003). Genres: Comedy, Romance. Jerry Falk, an aspiring writer in New York, falls in love at first sight with a free-spirited young woman named Amanda He has heard the phrase that life is like \"anything else,\" but soon he finds that life with the unpredictable Amanda isn't like anything else at all.. Tags: psychoanalysis, comedian, relationship problems, advice, experience"} +{"id": "127560", "title": "The Railway Man", "year": 2013, "duration_min": 116, "rating": 6.7, "genres": "Drama, History", "genres_pipe": "|Drama|History|", "keywords": "post traumatic stress disorder, japanese, world war ii, victim, autobiography, based on true story, history, revenge, redemption, torture", "tags_pipe": "|post traumatic stress disorder|japanese|world war ii|victim|autobiography|based on true story|history|revenge|redemption|torture|", "overview": "A victim from World War II's \"Death Railway\" sets out to find those responsible for his torture. A true story.", "text_for_embedding": "The Railway Man (2013). Genres: Drama, History. A victim from World War II's \"Death Railway\" sets out to find those responsible for his torture. A true story.. Tags: post traumatic stress disorder, japanese, world war ii, victim, autobiography, based on true story, history, revenge, redemption, torture"} +{"id": "37903", "title": "The White Ribbon", "year": 2009, "duration_min": 144, "rating": 7.2, "genres": "Crime, Drama, Mystery", "genres_pipe": "|Crime|Drama|Mystery|", "keywords": "germany, child abuse, pastor, propaganda, children, punishment, small village, village people, east elbia, umerziehung", "tags_pipe": "|germany|child abuse|pastor|propaganda|children|punishment|small village|village people|east elbia|umerziehung|", "overview": "Strange events happen in a small village in the north of Germany during the years just before World War I, which seem to be ritual punishment. The abused and suppressed children of the villagers seem to be at the heart of this mystery.", "text_for_embedding": "The White Ribbon (2009). Genres: Crime, Drama, Mystery. Strange events happen in a small village in the north of Germany during the years just before World War I, which seem to be ritual punishment. The abused and suppressed children of the villagers seem to be at the heart of this mystery.. Tags: germany, child abuse, pastor, propaganda, children, punishment, small village, village people, east elbia, umerziehung"} +{"id": "396152", "title": "Restoration", "year": 2016, "duration_min": 90, "rating": 5.3, "genres": "Horror", "genres_pipe": "|Horror|", "keywords": "", "tags_pipe": "", "overview": "During home renovations, a young couple release a fiery spirit seeking retribution. To save themselves and set the spirit free, they must uncover the dire truth. But nothing is as simple as it seems...", "text_for_embedding": "Restoration (2016). Genres: Horror. During home renovations, a young couple release a fiery spirit seeking retribution. To save themselves and set the spirit free, they must uncover the dire truth. But nothing is as simple as it seems.... Tags: "} +{"id": "10017", "title": "The Wraith", "year": 1986, "duration_min": 93, "rating": 5.9, "genres": "Romance, Science Fiction, Horror, Action, Crime", "genres_pipe": "|Romance|Science Fiction|Horror|Action|Crime|", "keywords": "male nudity, female nudity, sex, killing, sheriff, car race, cemetery, shotgun, arizona, nudity, reincarnation, police, auto-tuning, street race, revenge", "tags_pipe": "|male nudity|female nudity|sex|killing|sheriff|car race|cemetery|shotgun|arizona|nudity|reincarnation|police|auto-tuning|street race|revenge|", "overview": "Packard Walsh and his motorized gang control and terrorize an Arizona desert town where they force drivers to drag-race so they can 'win' their vehicles. After Walsh beats the decent teenager Jamie Hankins to death after finding him with his girlfriend, a mysterious power creates Jake Kesey, an extremely cool motor-biker who has a car which is invincible. Jake befriends Jamie's girlfriend Keri Johnson, takes Jamie's sweet brother Bill under his wing and manages what Sheriff Loomis couldn't; eliminate Packard's criminal gang the hard way...", "text_for_embedding": "The Wraith (1986). Genres: Romance, Science Fiction, Horror, Action, Crime. Packard Walsh and his motorized gang control and terrorize an Arizona desert town where they force drivers to drag-race so they can 'win' their vehicles. After Walsh beats the decent teenager Jamie Hankins to death after finding him with his girlfriend, a mysterious power creates Jake Kesey, an extremely cool motor-biker who has a car which is invincible. Jake befriends Jamie's girlfriend Keri Johnson, takes Jamie's sweet brother Bill under his wing and manages what Sheriff Loomis couldn't; eliminate Packard's criminal gang the hard way.... Tags: male nudity, female nudity, sex, killing, sheriff, car race, cemetery, shotgun, arizona, nudity, reincarnation, police, auto-tuning, street race, revenge"} +{"id": "11468", "title": "Salton Sea", "year": 2002, "duration_min": 103, "rating": 7.0, "genres": "Drama, Mystery, Thriller", "genres_pipe": "|Drama|Mystery|Thriller|", "keywords": "dual identity, identity, war on drugs, jazz musician, drug scene, neo-noir", "tags_pipe": "|dual identity|identity|war on drugs|jazz musician|drug scene|neo-noir|", "overview": "After the murder of his beloved wife, a man in search of redemption is set adrift in a world where nothing is as it seems. On his journey, he befriends slacker Jimmy \"The Finn\", becomes involved in rescuing his neighbor Colette from her own demons, and gets entangled in a web of deceit full of unexpected twists and turns.", "text_for_embedding": "Salton Sea (2002). Genres: Drama, Mystery, Thriller. After the murder of his beloved wife, a man in search of redemption is set adrift in a world where nothing is as it seems. On his journey, he befriends slacker Jimmy \"The Finn\", becomes involved in rescuing his neighbor Colette from her own demons, and gets entangled in a web of deceit full of unexpected twists and turns.. Tags: dual identity, identity, war on drugs, jazz musician, drug scene, neo-noir"} +{"id": "193613", "title": "Metallica: Through the Never", "year": 2013, "duration_min": 93, "rating": 6.7, "genres": "Music", "genres_pipe": "|Music|", "keywords": "heavy metal, live concert", "tags_pipe": "|heavy metal|live concert|", "overview": "Trip, a young roadie for Metallica, is sent on an urgent mission during the band's show. But what seems like a simple assignment turns into a surreal adventure.", "text_for_embedding": "Metallica: Through the Never (2013). Genres: Music. Trip, a young roadie for Metallica, is sent on an urgent mission during the band's show. But what seems like a simple assignment turns into a surreal adventure.. Tags: heavy metal, live concert"} +{"id": "17436", "title": "The Informers", "year": 2008, "duration_min": 98, "rating": 4.4, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "sex, slice of life, hollywood, drug, hedonism, ensemble cast, child murder, 1980s, dysfunctional, intersecting lives", "tags_pipe": "|sex|slice of life|hollywood|drug|hedonism|ensemble cast|child murder|1980s|dysfunctional|intersecting lives|", "overview": "A collection of intersecting short stories set in early 1980's Los Angeles, depicts a week in the lives of an assortment of socially alienated, mainly well-off characters who numb their sense of emptiness with casual sex, violence, and drugs.", "text_for_embedding": "The Informers (2008). Genres: Drama. A collection of intersecting short stories set in early 1980's Los Angeles, depicts a week in the lives of an assortment of socially alienated, mainly well-off characters who numb their sense of emptiness with casual sex, violence, and drugs.. Tags: sex, slice of life, hollywood, drug, hedonism, ensemble cast, child murder, 1980s, dysfunctional, intersecting lives"} +{"id": "43434", "title": "Carlos", "year": 2010, "duration_min": 338, "rating": 6.7, "genres": "Crime, Drama, Thriller, History", "genres_pipe": "|Crime|Drama|Thriller|History|", "keywords": "gun, car bomb, miniseries, terrorism, opec, hostage situation, revolutionary", "tags_pipe": "|gun|car bomb|miniseries|terrorism|opec|hostage situation|revolutionary|", "overview": "The story of Venezuelan revolutionary, Ilich Ramirez Sanchez, who founded a worldwide terrorist organization and raided the OPEC headquarters in 1975 before being caught by the French police.", "text_for_embedding": "Carlos (2010). Genres: Crime, Drama, Thriller, History. The story of Venezuelan revolutionary, Ilich Ramirez Sanchez, who founded a worldwide terrorist organization and raided the OPEC headquarters in 1975 before being caught by the French police.. Tags: gun, car bomb, miniseries, terrorism, opec, hostage situation, revolutionary"} +{"id": "31166", "title": "I Come with the Rain", "year": 2009, "duration_min": 114, "rating": 5.6, "genres": "Thriller, Drama", "genres_pipe": "|Thriller|Drama|", "keywords": "", "tags_pipe": "", "overview": "Kline, a former Los Angeles police officer turned private detective, is hired by a powerful pharmaceutical conglomerate boss to investigate in Asia the disappearance of his only son, Shitao, whom he has not seen in person since the boy was ten. Now in his 30s, Shitao has gone missing in the Philippines where he had been helping in an orphanage.", "text_for_embedding": "I Come with the Rain (2009). Genres: Thriller, Drama. Kline, a former Los Angeles police officer turned private detective, is hired by a powerful pharmaceutical conglomerate boss to investigate in Asia the disappearance of his only son, Shitao, whom he has not seen in person since the boy was ten. Now in his 30s, Shitao has gone missing in the Philippines where he had been helping in an orphanage.. Tags: "} +{"id": "69848", "title": "One Man's Hero", "year": 1999, "duration_min": 121, "rating": 9.3, "genres": "Western, Action, Drama, History", "genres_pipe": "|Western|Action|Drama|History|", "keywords": "war, army, battlefield, chivalry", "tags_pipe": "|war|army|battlefield|chivalry|", "overview": "One Man's Hero tells the little-known story of the \"St. Patrick's Battalion\" or \"San Patricios,\" a group of mostly Irish and other immigrants of the Catholic faith who deserted to Mexico after encountering religious and ethnic prejudice in the U.S. Army during the Mexican-American War. The plot centers around the personal story of John Riley, an Irishman who had been a sergeant in the American Army who is commissioned as a captain in the Mexican army and commands the battalion, as he leads his men in battle and struggles with authorities on both sides of the border", "text_for_embedding": "One Man's Hero (1999). Genres: Western, Action, Drama, History. One Man's Hero tells the little-known story of the \"St. Patrick's Battalion\" or \"San Patricios,\" a group of mostly Irish and other immigrants of the Catholic faith who deserted to Mexico after encountering religious and ethnic prejudice in the U.S. Army during the Mexican-American War. The plot centers around the personal story of John Riley, an Irishman who had been a sergeant in the American Army who is commissioned as a captain in the Mexican army and commands the battalion, as he leads his men in battle and struggles with authorities on both sides of the border. Tags: war, army, battlefield, chivalry"} +{"id": "8408", "title": "Day of the Dead", "year": 1985, "duration_min": 96, "rating": 6.9, "genres": "Horror, Science Fiction", "genres_pipe": "|Horror|Science Fiction|", "keywords": "florida, insanity, disembodied head, zombie, disembowelment, horror movie remade, living dead, zombie apocalypse", "tags_pipe": "|florida|insanity|disembodied head|zombie|disembowelment|horror movie remade|living dead|zombie apocalypse|", "overview": "The final chapter of George A. Romero's \"Dead Trilogy\". In an underground government installation they are searching for a cure to overcome this strange transformation into zombies. Unfortunately, the zombies from above ground have made their way into the bunker.", "text_for_embedding": "Day of the Dead (1985). Genres: Horror, Science Fiction. The final chapter of George A. Romero's \"Dead Trilogy\". In an underground government installation they are searching for a cure to overcome this strange transformation into zombies. Unfortunately, the zombies from above ground have made their way into the bunker.. Tags: florida, insanity, disembodied head, zombie, disembowelment, horror movie remade, living dead, zombie apocalypse"} +{"id": "332411", "title": "I Am Wrath", "year": 2016, "duration_min": 92, "rating": 4.5, "genres": "Action, Crime, Drama, Thriller", "genres_pipe": "|Action|Crime|Drama|Thriller|", "keywords": "revenge, murder, police corruption, violence, corrupt politician, barber, governer", "tags_pipe": "|revenge|murder|police corruption|violence|corrupt politician|barber|governer|", "overview": "A man is out for justice after a group of corrupt police officers are unable to catch his wife's killer.", "text_for_embedding": "I Am Wrath (2016). Genres: Action, Crime, Drama, Thriller. A man is out for justice after a group of corrupt police officers are unable to catch his wife's killer.. Tags: revenge, murder, police corruption, violence, corrupt politician, barber, governer"} +{"id": "9389", "title": "Renaissance", "year": 2006, "duration_min": 105, "rating": 6.7, "genres": "Action, Animation, Science Fiction", "genres_pipe": "|Action|Animation|Science Fiction|", "keywords": "paris, japanese, identity, underworld, monopoly, future, beauty, victim, dystopia, boss, police, president, animation, disappearance, cgi", "tags_pipe": "|paris|japanese|identity|underworld|monopoly|future|beauty|victim|dystopia|boss|police|president|animation|disappearance|cgi|", "overview": "To find Ilona and unlock the secrets of her disappearance, Karas must plunge deep into the parallel worlds of corporate espionage, organized crime and genetic research - where the truth imprisons whoever finds it first and miracles can be bought but at a great price.", "text_for_embedding": "Renaissance (2006). Genres: Action, Animation, Science Fiction. To find Ilona and unlock the secrets of her disappearance, Karas must plunge deep into the parallel worlds of corporate espionage, organized crime and genetic research - where the truth imprisons whoever finds it first and miracles can be bought but at a great price.. Tags: paris, japanese, identity, underworld, monopoly, future, beauty, victim, dystopia, boss, police, president, animation, disappearance, cgi"} +{"id": "9626", "title": "Red Sonja", "year": 1985, "duration_min": 89, "rating": 5.0, "genres": "Adventure, Fantasy, Action", "genres_pipe": "|Adventure|Fantasy|Action|", "keywords": "monster, swordplay, queen, talisman, marvel comic, based on comic book, sword and sorcery", "tags_pipe": "|monster|swordplay|queen|talisman|marvel comic|based on comic book|sword and sorcery|", "overview": "The tyrant Gedren seeks the total power in a world of barbarism. She raids the city Hablac and kills the keeper of a talisman that gives her great power. Red Sonja, sister of the keeper, sets out with her magic sword to overthrow Gedren.", "text_for_embedding": "Red Sonja (1985). Genres: Adventure, Fantasy, Action. The tyrant Gedren seeks the total power in a world of barbarism. She raids the city Hablac and kills the keeper of a talisman that gives her great power. Red Sonja, sister of the keeper, sets out with her magic sword to overthrow Gedren.. Tags: monster, swordplay, queen, talisman, marvel comic, based on comic book, sword and sorcery"} +{"id": "75638", "title": "Red Lights", "year": 2012, "duration_min": 119, "rating": 6.0, "genres": "Thriller", "genres_pipe": "|Thriller|", "keywords": "paranormal, psychic, skepticism", "tags_pipe": "|paranormal|psychic|skepticism|", "overview": "Two investigators of paranormal hoaxes, the veteran Dr. Margaret Matheson and her young assistant, Tom Buckley, study the most varied metaphysical phenomena with the aim of proving their fraudulent origins. Simon Silver, a legendary blind psychic, reappears after an enigmatic absence of 30 years to become the greatest international challenge to both orthodox science and professional sceptics. Tom starts to develop an intense obsession with Silver, whose magnetism becomes stronger with each new manifestation of inexplicable events. As Tom gets closer to Silver, tension mounts, and his worldview is threatened to its core.", "text_for_embedding": "Red Lights (2012). Genres: Thriller. Two investigators of paranormal hoaxes, the veteran Dr. Margaret Matheson and her young assistant, Tom Buckley, study the most varied metaphysical phenomena with the aim of proving their fraudulent origins. Simon Silver, a legendary blind psychic, reappears after an enigmatic absence of 30 years to become the greatest international challenge to both orthodox science and professional sceptics. Tom starts to develop an intense obsession with Silver, whose magnetism becomes stronger with each new manifestation of inexplicable events. As Tom gets closer to Silver, tension mounts, and his worldview is threatened to its core.. Tags: paranormal, psychic, skepticism"} +{"id": "8363", "title": "Superbad", "year": 2007, "duration_min": 113, "rating": 7.0, "genres": "Comedy", "genres_pipe": "|Comedy|", "keywords": "becoming an adult, high school, young people, one night", "tags_pipe": "|becoming an adult|high school|young people|one night|", "overview": "High school best buddies are facing separation anxiety as they prepare to go off to college. While attempting to score alcohol for a party with help from a fake ID-toting friend, the guys' evening takes a turn into chaotic territory.", "text_for_embedding": "Superbad (2007). Genres: Comedy. High school best buddies are facing separation anxiety as they prepare to go off to college. While attempting to score alcohol for a party with help from a fake ID-toting friend, the guys' evening takes a turn into chaotic territory.. Tags: becoming an adult, high school, young people, one night"} +{"id": "15670", "title": "Madea Goes to Jail", "year": 2009, "duration_min": 103, "rating": 6.4, "genres": "Comedy, Crime, Drama", "genres_pipe": "|Comedy|Crime|Drama|", "keywords": "criminal", "tags_pipe": "|criminal|", "overview": "At long last, Madea returns to the big screen in TYLER PERRY'S MADEA GOES TO JAIL. This time America's favorite irreverent, pistol-packin' grandmomma is raising hell behind bars and lobbying for her freedom...Hallelujer!", "text_for_embedding": "Madea Goes to Jail (2009). Genres: Comedy, Crime, Drama. At long last, Madea returns to the big screen in TYLER PERRY'S MADEA GOES TO JAIL. This time America's favorite irreverent, pistol-packin' grandmomma is raising hell behind bars and lobbying for her freedom...Hallelujer!. Tags: criminal"} +{"id": "290555", "title": "Wolves", "year": 2014, "duration_min": 90, "rating": 5.7, "genres": "Horror, Action", "genres_pipe": "|Horror|Action|", "keywords": "adoption, werewolf", "tags_pipe": "|adoption|werewolf|", "overview": "The coming-of-age story of Cayden Richards. Forced to hit the road after the murder of his parents, Cayden wanders lost without purpose... Until he meets a certifiable lunatic named Wild Joe who sets him on a path to the ominous town of Lupine Ridge to hunt down the truths of his history. But in the end| who's really hunting whom?", "text_for_embedding": "Wolves (2014). Genres: Horror, Action. The coming-of-age story of Cayden Richards. Forced to hit the road after the murder of his parents, Cayden wanders lost without purpose... Until he meets a certifiable lunatic named Wild Joe who sets him on a path to the ominous town of Lupine Ridge to hunt down the truths of his history. But in the end| who's really hunting whom?. Tags: adoption, werewolf"} +{"id": "8328", "title": "Step Up 2: The Streets", "year": 2008, "duration_min": 98, "rating": 6.5, "genres": "Music, Drama, Romance", "genres_pipe": "|Music|Drama|Romance|", "keywords": "underdog, competition, street gang, hip-hop, breakdance, insurgence, heart-throb, dancing scene, tap dancing, scholarship, ballet", "tags_pipe": "|underdog|competition|street gang|hip-hop|breakdance|insurgence|heart-throb|dancing scene|tap dancing|scholarship|ballet|", "overview": "When rebellious street dancer Andie lands at the elite Maryland School of the Arts, she finds herself fighting to fit in while also trying to hold onto her old life. When she joins forces with the schools hottest dancer, Chase, to form a crew of classmate outcasts to compete in Baltimore s underground dance battle The Streets.", "text_for_embedding": "Step Up 2: The Streets (2008). Genres: Music, Drama, Romance. When rebellious street dancer Andie lands at the elite Maryland School of the Arts, she finds herself fighting to fit in while also trying to hold onto her old life. When she joins forces with the schools hottest dancer, Chase, to form a crew of classmate outcasts to compete in Baltimore s underground dance battle The Streets.. Tags: underdog, competition, street gang, hip-hop, breakdance, insurgence, heart-throb, dancing scene, tap dancing, scholarship, ballet"} +{"id": "10982", "title": "Hoodwinked!", "year": 2005, "duration_min": 80, "rating": 5.9, "genres": "Animation, Comedy, Family", "genres_pipe": "|Animation|Comedy|Family|", "keywords": "wolf, suspicion, little red riding hood, investigation, burglary", "tags_pipe": "|wolf|suspicion|little red riding hood|investigation|burglary|", "overview": "The recipes of candies of the goody shops have been stolen by the Goody Bandit, and many animals are out of business. While the police are chasing the criminal, there is a mess at Granny's house evolving Little Red Hiding Hood, The Wolf, The Woodsman and Granny, disturbing the peace in the forest and they are all arrested by the impatient Chief Grizzly.", "text_for_embedding": "Hoodwinked! (2005). Genres: Animation, Comedy, Family. The recipes of candies of the goody shops have been stolen by the Goody Bandit, and many animals are out of business. While the police are chasing the criminal, there is a mess at Granny's house evolving Little Red Hiding Hood, The Wolf, The Woodsman and Granny, disturbing the peace in the forest and they are all arrested by the impatient Chief Grizzly.. Tags: wolf, suspicion, little red riding hood, investigation, burglary"} +{"id": "205", "title": "Hotel Rwanda", "year": 2004, "duration_min": 121, "rating": 7.5, "genres": "Drama, History, War", "genres_pipe": "|Drama|History|War|", "keywords": "rwanda, refugee, refugee camp, militia, murder, slaughter, dead body, atrocity, african, cruelty, violence, united nations, genocide in rwanda, death", "tags_pipe": "|rwanda|refugee|refugee camp|militia|murder|slaughter|dead body|atrocity|african|cruelty|violence|united nations|genocide in rwanda|death|", "overview": "Inspired by true events, this film takes place in Rwanda in the 1990s when more than a million Tutsis were killed in a genocide that went mostly unnoticed by the rest of the world. Hotel owner Paul Rusesabagina houses over a thousand refuges in his hotel in attempt to save their lives.", "text_for_embedding": "Hotel Rwanda (2004). Genres: Drama, History, War. Inspired by true events, this film takes place in Rwanda in the 1990s when more than a million Tutsis were killed in a genocide that went mostly unnoticed by the rest of the world. Hotel owner Paul Rusesabagina houses over a thousand refuges in his hotel in attempt to save their lives.. Tags: rwanda, refugee, refugee camp, militia, murder, slaughter, dead body, atrocity, african, cruelty, violence, united nations, genocide in rwanda, death"} +{"id": "1620", "title": "Hitman", "year": 2007, "duration_min": 89, "rating": 5.9, "genres": "Action, Crime, Drama, Thriller", "genres_pipe": "|Action|Crime|Drama|Thriller|", "keywords": "assassin, secret identity, intelligence, soviet union, russia, celibacy, hitman, secret society, power, power takeover, adversary, government, execution, violence, killer", "tags_pipe": "|assassin|secret identity|intelligence|soviet union|russia|celibacy|hitman|secret society|power|power takeover|adversary|government|execution|violence|killer|", "overview": "The best-selling videogame, Hitman, roars to life with both barrels blazing in this hardcore action-thriller starring Timothy Olyphant. A genetically engineered assassin with deadly aim, known only as \"Agent 47\" eliminates strategic targets for a top-secret organization. But when he's double-crossed, the hunter becomes the prey as 47 finds himself in a life-or-death game of international intrigue.", "text_for_embedding": "Hitman (2007). Genres: Action, Crime, Drama, Thriller. The best-selling videogame, Hitman, roars to life with both barrels blazing in this hardcore action-thriller starring Timothy Olyphant. A genetically engineered assassin with deadly aim, known only as \"Agent 47\" eliminates strategic targets for a top-secret organization. But when he's double-crossed, the hunter becomes the prey as 47 finds himself in a life-or-death game of international intrigue.. Tags: assassin, secret identity, intelligence, soviet union, russia, celibacy, hitman, secret society, power, power takeover, adversary, government, execution, violence, killer"} +{"id": "175541", "title": "Black Nativity", "year": 2013, "duration_min": 93, "rating": 5.8, "genres": "Drama, Music", "genres_pipe": "|Drama|Music|", "keywords": "musical, based on stage musical, woman director, based on the bible, nativity, christmas", "tags_pipe": "|musical|based on stage musical|woman director|based on the bible|nativity|christmas|", "overview": "A street-wise teen from Baltimore who has been raised by a single mother travels to New York City to spend the Christmas holiday with his estranged relatives, where he embarks on a surprising and inspirational journey.", "text_for_embedding": "Black Nativity (2013). Genres: Drama, Music. A street-wise teen from Baltimore who has been raised by a single mother travels to New York City to spend the Christmas holiday with his estranged relatives, where he embarks on a surprising and inspirational journey.. Tags: musical, based on stage musical, woman director, based on the bible, nativity, christmas"} +{"id": "241254", "title": "The Prince", "year": 2014, "duration_min": 93, "rating": 4.6, "genres": "Thriller, Action", "genres_pipe": "|Thriller|Action|", "keywords": "mobster, justice, retired, missing, missing daughter", "tags_pipe": "|mobster|justice|retired|missing|missing daughter|", "overview": "A family man who turns out to be a retired mob enforcer must travel across the country to find his daughter who has gone missing.", "text_for_embedding": "The Prince (2014). Genres: Thriller, Action. A family man who turns out to be a retired mob enforcer must travel across the country to find his daughter who has gone missing.. Tags: mobster, justice, retired, missing, missing daughter"} +{"id": "31932", "title": "City of Ghosts", "year": 2002, "duration_min": 116, "rating": 5.4, "genres": "Thriller", "genres_pipe": "|Thriller|", "keywords": "", "tags_pipe": "", "overview": "A con man (Dillon) travels to Cambodia (also on the run from law enforcement in the U.S.) to collect his share in an insurance scam, but discovers more than he bargained for", "text_for_embedding": "City of Ghosts (2002). Genres: Thriller. A con man (Dillon) travels to Cambodia (also on the run from law enforcement in the U.S.) to collect his share in an insurance scam, but discovers more than he bargained for. Tags: "} +{"id": "1933", "title": "The Others", "year": 2001, "duration_min": 101, "rating": 7.4, "genres": "Horror, Drama, Mystery, Thriller", "genres_pipe": "|Horror|Drama|Mystery|Thriller|", "keywords": "nanny, haunted house, channel islands, parallel world, photosensitivity, spiritism", "tags_pipe": "|nanny|haunted house|channel islands|parallel world|photosensitivity|spiritism|", "overview": "Grace is a religious woman who lives in an old house kept dark because her two children, Anne and Nicholas, have a rare sensitivity to light. When the family begins to suspect the house is haunted, Grace fights to protect her children at any cost in the face of strange events and disturbing visions.", "text_for_embedding": "The Others (2001). Genres: Horror, Drama, Mystery, Thriller. Grace is a religious woman who lives in an old house kept dark because her two children, Anne and Nicholas, have a rare sensitivity to light. When the family begins to suspect the house is haunted, Grace fights to protect her children at any cost in the face of strange events and disturbing visions.. Tags: nanny, haunted house, channel islands, parallel world, photosensitivity, spiritism"} +{"id": "679", "title": "Aliens", "year": 1986, "duration_min": 137, "rating": 7.7, "genres": "Horror, Action, Thriller, Science Fiction", "genres_pipe": "|Horror|Action|Thriller|Science Fiction|", "keywords": "android, extraterrestrial technology, space marine, spaceman, cryogenics, vacuum, space colony, warrior woman, settler, space travel, colony, alien, xenomorph", "tags_pipe": "|android|extraterrestrial technology|space marine|spaceman|cryogenics|vacuum|space colony|warrior woman|settler|space travel|colony|alien|xenomorph|", "overview": "When Ripley's lifepod is found by a salvage crew over 50 years later, she finds that terra-formers are on the very planet they found the alien species. When the company sends a family of colonists out to investigate her story, all contact is lost with the planet and colonists. They enlist Ripley and the colonial marines to return and search for answers.", "text_for_embedding": "Aliens (1986). Genres: Horror, Action, Thriller, Science Fiction. When Ripley's lifepod is found by a salvage crew over 50 years later, she finds that terra-formers are on the very planet they found the alien species. When the company sends a family of colonists out to investigate her story, all contact is lost with the planet and colonists. They enlist Ripley and the colonial marines to return and search for answers.. Tags: android, extraterrestrial technology, space marine, spaceman, cryogenics, vacuum, space colony, warrior woman, settler, space travel, colony, alien, xenomorph"} +{"id": "11113", "title": "My Fair Lady", "year": 1964, "duration_min": 170, "rating": 7.4, "genres": "Drama, Family, Music, Romance", "genres_pipe": "|Drama|Family|Music|Romance|", "keywords": "musical, transformation, flower girl, colonel, wager, suitor, class differences, tutor, aristocrat, linguist, street, high society, misogynist, guttersnipe, class prejudice", "tags_pipe": "|musical|transformation|flower girl|colonel|wager|suitor|class differences|tutor|aristocrat|linguist|street|high society|misogynist|guttersnipe|class prejudice|", "overview": "A misogynistic and snobbish phonetics professor agrees to a wager that he can take a flower girl and make her presentable in high society.", "text_for_embedding": "My Fair Lady (1964). Genres: Drama, Family, Music, Romance. A misogynistic and snobbish phonetics professor agrees to a wager that he can take a flower girl and make her presentable in high society.. Tags: musical, transformation, flower girl, colonel, wager, suitor, class differences, tutor, aristocrat, linguist, street, high society, misogynist, guttersnipe, class prejudice"} +{"id": "3597", "title": "I Know What You Did Last Summer", "year": 1997, "duration_min": 100, "rating": 5.6, "genres": "Horror, Thriller, Mystery", "genres_pipe": "|Horror|Thriller|Mystery|", "keywords": "secret, blackmail, fisherman, police, high school, cover-up, friends, revenge, murder, pageant, slasher, teenager, killer", "tags_pipe": "|secret|blackmail|fisherman|police|high school|cover-up|friends|revenge|murder|pageant|slasher|teenager|killer|", "overview": "As they celebrate their high school graduation, four friends are involved in a hit-and-run accident when their car hits and apparently kills a pedestrian on an isolated roadway. They dispose of the body and vow to keep the incident a secret, a year later somebody starts sending them letters bearing the warning \"I Know What You Did Last Summer.\"", "text_for_embedding": "I Know What You Did Last Summer (1997). Genres: Horror, Thriller, Mystery. As they celebrate their high school graduation, four friends are involved in a hit-and-run accident when their car hits and apparently kills a pedestrian on an isolated roadway. They dispose of the body and vow to keep the incident a secret, a year later somebody starts sending them letters bearing the warning \"I Know What You Did Last Summer.\". Tags: secret, blackmail, fisherman, police, high school, cover-up, friends, revenge, murder, pageant, slasher, teenager, killer"} +{"id": "193893", "title": "Let's Be Cops", "year": 2014, "duration_min": 104, "rating": 6.4, "genres": "Comedy", "genres_pipe": "|Comedy|", "keywords": "corruption, robbery, kidnapping, nightclub, male friendship, investigation, police, party, murder, mobster, los angeles, lying, impersonating a police officer, flashback", "tags_pipe": "|corruption|robbery|kidnapping|nightclub|male friendship|investigation|police|party|murder|mobster|los angeles|lying|impersonating a police officer|flashback|", "overview": "It's the ultimate buddy cop movie except for one thing: they're not cops. When two struggling pals dress as police officers for a costume party, they become neighborhood sensations. But when these newly-minted “heroes” get tangled in a real life web of mobsters and dirty detectives, they must put their fake badges on the line.", "text_for_embedding": "Let's Be Cops (2014). Genres: Comedy. It's the ultimate buddy cop movie except for one thing: they're not cops. When two struggling pals dress as police officers for a costume party, they become neighborhood sensations. But when these newly-minted “heroes” get tangled in a real life web of mobsters and dirty detectives, they must put their fake badges on the line.. Tags: corruption, robbery, kidnapping, nightclub, male friendship, investigation, police, party, murder, mobster, los angeles, lying, impersonating a police officer, flashback"} +{"id": "9675", "title": "Sideways", "year": 2004, "duration_min": 126, "rating": 6.9, "genres": "Comedy, Drama, Romance", "genres_pipe": "|Comedy|Drama|Romance|", "keywords": "california, golf, oscar award, wine, stag night, marijuana, writer", "tags_pipe": "|california|golf|oscar award|wine|stag night|marijuana|writer|", "overview": "Two middle-aged men embark on a spiritual journey through Californian wine country. One is an unpublished novelist suffering from depression, and the other is only days away from walking down the aisle.", "text_for_embedding": "Sideways (2004). Genres: Comedy, Drama, Romance. Two middle-aged men embark on a spiritual journey through Californian wine country. One is an unpublished novelist suffering from depression, and the other is only days away from walking down the aisle.. Tags: california, golf, oscar award, wine, stag night, marijuana, writer"} +{"id": "9988", "title": "Beerfest", "year": 2006, "duration_min": 110, "rating": 5.8, "genres": "Comedy", "genres_pipe": "|Comedy|", "keywords": "germany, competition, prostitute, alcohol, beer, oktoberfest", "tags_pipe": "|germany|competition|prostitute|alcohol|beer|oktoberfest|", "overview": "During a trip to Germany to scatter their grandfather's ashes, German-American brothers Todd and Jan discover Beerfest, the secret Olympics of downing stout, and want to enter the contest to defend their family's beer-guzzling honor. Their Old Country cousins sneer at the Yanks' chances, prompting the siblings to return to America to prepare for a showdown the following year.", "text_for_embedding": "Beerfest (2006). Genres: Comedy. During a trip to Germany to scatter their grandfather's ashes, German-American brothers Todd and Jan discover Beerfest, the secret Olympics of downing stout, and want to enter the contest to defend their family's beer-guzzling honor. Their Old Country cousins sneer at the Yanks' chances, prompting the siblings to return to America to prepare for a showdown the following year.. Tags: germany, competition, prostitute, alcohol, beer, oktoberfest"} +{"id": "948", "title": "Halloween", "year": 1978, "duration_min": 91, "rating": 7.4, "genres": "Horror, Thriller", "genres_pipe": "|Horror|Thriller|", "keywords": "female nudity, nudity, mask, babysitter, halloween, police, psychopathic killer, independent film, stalking, serial killer, marijuana, masked killer, blood, pot smoking, slasher", "tags_pipe": "|female nudity|nudity|mask|babysitter|halloween|police|psychopathic killer|independent film|stalking|serial killer|marijuana|masked killer|blood|pot smoking|slasher|", "overview": "In John Carpenter's horror classic, a psychotic murderer, institutionalized since childhood for the murder of his sister, escapes and stalks a bookish teenage girl and her friends while his doctor chases him through the streets.", "text_for_embedding": "Halloween (1978). Genres: Horror, Thriller. In John Carpenter's horror classic, a psychotic murderer, institutionalized since childhood for the murder of his sister, escapes and stalks a bookish teenage girl and her friends while his doctor chases him through the streets.. Tags: female nudity, nudity, mask, babysitter, halloween, police, psychopathic killer, independent film, stalking, serial killer, marijuana, masked killer, blood, pot smoking, slasher"} +{"id": "21765", "title": "Good Boy!", "year": 2003, "duration_min": 87, "rating": 4.7, "genres": "Comedy, Family, Science Fiction", "genres_pipe": "|Comedy|Family|Science Fiction|", "keywords": "", "tags_pipe": "", "overview": "An intergalactic dog pilot from Sirius (the dog star), visits Earth to verify the rumors that dogs have failed to take over the planet.", "text_for_embedding": "Good Boy! (2003). Genres: Comedy, Family, Science Fiction. An intergalactic dog pilot from Sirius (the dog star), visits Earth to verify the rumors that dogs have failed to take over the planet.. Tags: "} +{"id": "146304", "title": "The Best Man Holiday", "year": 2013, "duration_min": 123, "rating": 6.7, "genres": "Comedy", "genres_pipe": "|Comedy|", "keywords": "best man", "tags_pipe": "|best man|", "overview": "When college friends reunite after 15 years over the Christmas holidays, they discover just how easy it is for long-forgotten rivalries and romances to be reignited.", "text_for_embedding": "The Best Man Holiday (2013). Genres: Comedy. When college friends reunite after 15 years over the Christmas holidays, they discover just how easy it is for long-forgotten rivalries and romances to be reignited.. Tags: best man"} +{"id": "7516", "title": "Smokin' Aces", "year": 2006, "duration_min": 109, "rating": 6.4, "genres": "Action, Comedy, Crime, Thriller", "genres_pipe": "|Action|Comedy|Crime|Thriller|", "keywords": "neo-nazi, gun, sniper, fbi, hitman, bodyguard, to shoot dead, police, dark comedy, shootout, gangster, drug, female corpse", "tags_pipe": "|neo-nazi|gun|sniper|fbi|hitman|bodyguard|to shoot dead|police|dark comedy|shootout|gangster|drug|female corpse|", "overview": "When a Las Vegas performer-turned-snitch named Buddy Israel decides to turn state's evidence and testify against the mob, it seems that a whole lot of people would like to make sure he's no longer breathing.", "text_for_embedding": "Smokin' Aces (2006). Genres: Action, Comedy, Crime, Thriller. When a Las Vegas performer-turned-snitch named Buddy Israel decides to turn state's evidence and testify against the mob, it seems that a whole lot of people would like to make sure he's no longer breathing.. Tags: neo-nazi, gun, sniper, fbi, hitman, bodyguard, to shoot dead, police, dark comedy, shootout, gangster, drug, female corpse"} +{"id": "41439", "title": "Saw: The Final Chapter", "year": 2010, "duration_min": 90, "rating": 5.8, "genres": "Horror, Crime", "genres_pipe": "|Horror|Crime|", "keywords": "survivor, violence, self help guru, tricycle, prosthetic arm, pig mask, 3d", "tags_pipe": "|survivor|violence|self help guru|tricycle|prosthetic arm|pig mask|3d|", "overview": "As a deadly battle rages over Jigsaw's brutal legacy, a group of Jigsaw survivors gathers to seek the support of self-help guru and fellow survivor Bobby Dagen, a man whose own dark secrets unleash a new wave of terror.", "text_for_embedding": "Saw: The Final Chapter (2010). Genres: Horror, Crime. As a deadly battle rages over Jigsaw's brutal legacy, a group of Jigsaw survivors gathers to seek the support of self-help guru and fellow survivor Bobby Dagen, a man whose own dark secrets unleash a new wave of terror.. Tags: survivor, violence, self help guru, tricycle, prosthetic arm, pig mask, 3d"} +{"id": "2752", "title": "40 Days and 40 Nights", "year": 2002, "duration_min": 94, "rating": 5.2, "genres": "Comedy, Romance", "genres_pipe": "|Comedy|Romance|", "keywords": "sex addiction, laundromat", "tags_pipe": "|sex addiction|laundromat|", "overview": "Matt Sullivan's last big relationship ended in disaster and ever since his heart's been aching and his commitment's been lacking. Then came Lent, that time of year when everybody gives something up. That's when Matt decides to go where no man's gone before and make a vow: No sex. Whatsoever. For 40 straight days. At first he has everything under control. That is until the woman of his dreams, Erica, walks into his life.", "text_for_embedding": "40 Days and 40 Nights (2002). Genres: Comedy, Romance. Matt Sullivan's last big relationship ended in disaster and ever since his heart's been aching and his commitment's been lacking. Then came Lent, that time of year when everybody gives something up. That's when Matt decides to go where no man's gone before and make a vow: No sex. Whatsoever. For 40 straight days. At first he has everything under control. That is until the woman of his dreams, Erica, walks into his life.. Tags: sex addiction, laundromat"} +{"id": "9429", "title": "A Night at the Roxbury", "year": 1998, "duration_min": 81, "rating": 5.9, "genres": "Comedy", "genres_pipe": "|Comedy|", "keywords": "night life, nightclub, flower, flower shop, make a match, clubbing", "tags_pipe": "|night life|nightclub|flower|flower shop|make a match|clubbing|", "overview": "Despite being well into adulthood, brothers Doug and Steve Butabi still live at home and work in the flower shop owned by their dad. They exist only to hit on women at discos, though they're routinely unsuccessful until a chance run-in with Richard Grieco gets them inside the swank Roxbury club. Mistaken for high rollers, they meet their dream women, Vivica and Cambi, and resolve to open a club of their own.", "text_for_embedding": "A Night at the Roxbury (1998). Genres: Comedy. Despite being well into adulthood, brothers Doug and Steve Butabi still live at home and work in the flower shop owned by their dad. They exist only to hit on women at discos, though they're routinely unsuccessful until a chance run-in with Richard Grieco gets them inside the swank Roxbury club. Mistaken for high rollers, they meet their dream women, Vivica and Cambi, and resolve to open a club of their own.. Tags: night life, nightclub, flower, flower shop, make a match, clubbing"} +{"id": "38117", "title": "Beastly", "year": 2011, "duration_min": 86, "rating": 6.0, "genres": "Drama, Fantasy, Romance", "genres_pipe": "|Drama|Fantasy|Romance|", "keywords": "based on novel, love, beautiful woman, curse, teenager, popularity, blind tutor, teenage romance, modern fairy tale, based on young adult novel", "tags_pipe": "|based on novel|love|beautiful woman|curse|teenager|popularity|blind tutor|teenage romance|modern fairy tale|based on young adult novel|", "overview": "A curse transforms a handsome and arrogant young man into everything he detests in this contemporary retelling of Beauty and the Beast. Wealthy Kyle Kingson has everything a teenager could want in life, but he still gets off on humiliating the weaker and less attractive. When Kyle invites his misfit classmate Kendra to an environmental rally at their school, she questions his motivations but reluctantly accepts. Later, Kyle blows Kendra off, prompting the spurned goth girl to cast a dark spell on the swaggering egotist.", "text_for_embedding": "Beastly (2011). Genres: Drama, Fantasy, Romance. A curse transforms a handsome and arrogant young man into everything he detests in this contemporary retelling of Beauty and the Beast. Wealthy Kyle Kingson has everything a teenager could want in life, but he still gets off on humiliating the weaker and less attractive. When Kyle invites his misfit classmate Kendra to an environmental rally at their school, she questions his motivations but reluctantly accepts. Later, Kyle blows Kendra off, prompting the spurned goth girl to cast a dark spell on the swaggering egotist.. Tags: based on novel, love, beautiful woman, curse, teenager, popularity, blind tutor, teenage romance, modern fairy tale, based on young adult novel"} +{"id": "9792", "title": "The Hills Have Eyes", "year": 2006, "duration_min": 107, "rating": 6.1, "genres": "Horror, Thriller", "genres_pipe": "|Horror|Thriller|", "keywords": "ambush, new mexico, van, family holiday, axe in the head", "tags_pipe": "|ambush|new mexico|van|family holiday|axe in the head|", "overview": "Based on Wes Craven's 1977 suspenseful cult classic, The Hills Have Eyes is the story of a family road trip that goes terrifyingly awry when the travelers become stranded in a government atomic zone. Miles from nowhere, the Carter family soon realizes the seemingly uninhabited wasteland is actually the breeding ground of a blood-thirsty mutant family...and they are the prey.", "text_for_embedding": "The Hills Have Eyes (2006). Genres: Horror, Thriller. Based on Wes Craven's 1977 suspenseful cult classic, The Hills Have Eyes is the story of a family road trip that goes terrifyingly awry when the travelers become stranded in a government atomic zone. Miles from nowhere, the Carter family soon realizes the seemingly uninhabited wasteland is actually the breeding ground of a blood-thirsty mutant family...and they are the prey.. Tags: ambush, new mexico, van, family holiday, axe in the head"} +{"id": "13778", "title": "Dickie Roberts: Former Child Star", "year": 2003, "duration_min": 98, "rating": 5.1, "genres": "Comedy", "genres_pipe": "|Comedy|", "keywords": "loser, child prodigy", "tags_pipe": "|loser|child prodigy|", "overview": "TV child star of the '70s, Dickie Roberts is now 35 and parking cars. Craving to regain the spotlight, he auditions for a role of a normal guy, but the director quickly sees he is anything but normal. Desperate to win the part, Dickie hires a family to help him replay his childhood and assume the identity of an average, everyday kid.", "text_for_embedding": "Dickie Roberts: Former Child Star (2003). Genres: Comedy. TV child star of the '70s, Dickie Roberts is now 35 and parking cars. Craving to regain the spotlight, he auditions for a role of a normal guy, but the director quickly sees he is anything but normal. Desperate to win the part, Dickie hires a family to help him replay his childhood and assume the identity of an average, everyday kid.. Tags: loser, child prodigy"} +{"id": "228203", "title": "McFarland, USA", "year": 2015, "duration_min": 128, "rating": 7.4, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "california, small town, coach, championship, woman director, track and field", "tags_pipe": "|california|small town|coach|championship|woman director|track and field|", "overview": "A track coach in a small California town transforms a team of athletes into championship contenders.", "text_for_embedding": "McFarland, USA (2015). Genres: Drama. A track coach in a small California town transforms a team of athletes into championship contenders.. Tags: california, small town, coach, championship, woman director, track and field"} +{"id": "41382", "title": "Lottery Ticket", "year": 2010, "duration_min": 99, "rating": 5.6, "genres": "Comedy", "genres_pipe": "|Comedy|", "keywords": "", "tags_pipe": "", "overview": "Kevin Carson is a young man living in the projects who has to survive a three-day weekend after his opportunistic neighbors find out he's holding a winning lottery ticket worth $370 million", "text_for_embedding": "Lottery Ticket (2010). Genres: Comedy. Kevin Carson is a young man living in the projects who has to survive a three-day weekend after his opportunistic neighbors find out he's holding a winning lottery ticket worth $370 million. Tags: "} +{"id": "13960", "title": "ATL", "year": 2006, "duration_min": 105, "rating": 6.0, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "", "tags_pipe": "", "overview": "As four friends prepare for life after high school, different challenges bring about turning points in each of their lives. The dramas unfold and resolve at their local rollerskating rink, Cascade.", "text_for_embedding": "ATL (2006). Genres: Drama. As four friends prepare for life after high school, different challenges bring about turning points in each of their lives. The dramas unfold and resolve at their local rollerskating rink, Cascade.. Tags: "} +{"id": "114150", "title": "Pitch Perfect", "year": 2012, "duration_min": 112, "rating": 7.3, "genres": "Comedy, Music, Romance", "genres_pipe": "|Comedy|Music|Romance|", "keywords": "competition, roommate, college, female friendship, music, hazing, male female relationship, audition, group of friends, dorm room, bickering, dj, singing competition, film score, female musician", "tags_pipe": "|competition|roommate|college|female friendship|music|hazing|male female relationship|audition|group of friends|dorm room|bickering|dj|singing competition|film score|female musician|", "overview": "College student Beca knows she does not want to be part of a clique, but that's exactly where she finds herself after arriving at her new school. Thrust in among mean gals, nice gals and just plain weird gals, Beca finds that the only thing they have in common is how well they sing together. She takes the women of the group out of their comfort zone of traditional arrangements and into a world of amazing harmonic combinations in a fight to the top of college music competitions.", "text_for_embedding": "Pitch Perfect (2012). Genres: Comedy, Music, Romance. College student Beca knows she does not want to be part of a clique, but that's exactly where she finds herself after arriving at her new school. Thrust in among mean gals, nice gals and just plain weird gals, Beca finds that the only thing they have in common is how well they sing together. She takes the women of the group out of their comfort zone of traditional arrangements and into a world of amazing harmonic combinations in a fight to the top of college music competitions.. Tags: competition, roommate, college, female friendship, music, hazing, male female relationship, audition, group of friends, dorm room, bickering, dj, singing competition, film score, female musician"} +{"id": "26602", "title": "Summer Catch", "year": 2001, "duration_min": 108, "rating": 4.8, "genres": "Drama, Comedy, Romance", "genres_pipe": "|Drama|Comedy|Romance|", "keywords": "beach, baseball, sport, bikini, party, love, romance, pool, summer, flashback", "tags_pipe": "|beach|baseball|sport|bikini|party|love|romance|pool|summer|flashback|", "overview": "A coming-of-age romantic comedy set against the backdrop of the Cape Cod Baseball League. Local boy Ryan Dunne (Freddie Prinze Jr.), now a pitcher for Boston College, meets Tenley Parrish (Jessica Biel), the daughter of a wealthy couple who summer on the Cape. Ryan and Tenley fall in love, much to the chagrin of their families, while Ryan clings to one last hope of being discovered and signed to a pro baseball contract.", "text_for_embedding": "Summer Catch (2001). Genres: Drama, Comedy, Romance. A coming-of-age romantic comedy set against the backdrop of the Cape Cod Baseball League. Local boy Ryan Dunne (Freddie Prinze Jr.), now a pitcher for Boston College, meets Tenley Parrish (Jessica Biel), the daughter of a wealthy couple who summer on the Cape. Ryan and Tenley fall in love, much to the chagrin of their families, while Ryan clings to one last hope of being discovered and signed to a pro baseball contract.. Tags: beach, baseball, sport, bikini, party, love, romance, pool, summer, flashback"} +{"id": "10223", "title": "A Simple Plan", "year": 1998, "duration_min": 121, "rating": 6.9, "genres": "Drama, Crime, Thriller", "genres_pipe": "|Drama|Crime|Thriller|", "keywords": "brother brother relationship, money delivery, airplane, greed, friendship, suspense, financial transactions", "tags_pipe": "|brother brother relationship|money delivery|airplane|greed|friendship|suspense|financial transactions|", "overview": "Captivated by the lure of sudden wealth, the quiet rural lives of two brothers erupt into conflicts of greed, paranoia and distrust when over $4 million in cash is discovered at the remote site of a downed small airplane. Their simple plan to retain the money while avoiding detection opens a Pandora's box when the fear of getting caught triggers panicked behavior and leads to virulent consequences", "text_for_embedding": "A Simple Plan (1998). Genres: Drama, Crime, Thriller. Captivated by the lure of sudden wealth, the quiet rural lives of two brothers erupt into conflicts of greed, paranoia and distrust when over $4 million in cash is discovered at the remote site of a downed small airplane. Their simple plan to retain the money while avoiding detection opens a Pandora's box when the fear of getting caught triggers panicked behavior and leads to virulent consequences. Tags: brother brother relationship, money delivery, airplane, greed, friendship, suspense, financial transactions"} +{"id": "16028", "title": "They", "year": 2002, "duration_min": 89, "rating": 4.6, "genres": "Horror, Thriller", "genres_pipe": "|Horror|Thriller|", "keywords": "suicide, asylum, nightmare, darkness, supernatural, suspense", "tags_pipe": "|suicide|asylum|nightmare|darkness|supernatural|suspense|", "overview": "After witnessing a horrific and traumatic event, Julia Lund, a graduate student in psychology, gradually comes to the realization that everything which scared her as a child could be real. And what's worse, it might be coming back to get her..", "text_for_embedding": "They (2002). Genres: Horror, Thriller. After witnessing a horrific and traumatic event, Julia Lund, a graduate student in psychology, gradually comes to the realization that everything which scared her as a child could be real. And what's worse, it might be coming back to get her... Tags: suicide, asylum, nightmare, darkness, supernatural, suspense"} +{"id": "15639", "title": "Larry the Cable Guy: Health Inspector", "year": 2006, "duration_min": 89, "rating": 3.3, "genres": "Comedy", "genres_pipe": "|Comedy|", "keywords": "health inspector, food intoxication", "tags_pipe": "|health inspector|food intoxication|", "overview": "A slovenly cable repairman becomes a big-city health inspector and is tasked with uncovering the source of a food poisoning epidemic.", "text_for_embedding": "Larry the Cable Guy: Health Inspector (2006). Genres: Comedy. A slovenly cable repairman becomes a big-city health inspector and is tasked with uncovering the source of a food poisoning epidemic.. Tags: health inspector, food intoxication"} +{"id": "16112", "title": "The Adventures of Elmo in Grouchland", "year": 1999, "duration_min": 73, "rating": 6.3, "genres": "Family", "genres_pipe": "|Family|", "keywords": "", "tags_pipe": "", "overview": "Elmo loves his fuzzy, blue blanket, and would never let anything happen to it. However, a tug-of-war with his friend Zoe sends his blanket to a faraway land, and Elmo in hot pursuit. Facing life without his cherished blanket, Elmo musters all of his determination and courage and heads off on an action-packed rescue mission that plunges him into Grouchland-a place full of grouchy creatures, stinky garbage and the villainous Huxley. Along the way, Elmo learns an important lesson about sharing, realizing that he was selfish with his friend and responsible for what happened.", "text_for_embedding": "The Adventures of Elmo in Grouchland (1999). Genres: Family. Elmo loves his fuzzy, blue blanket, and would never let anything happen to it. However, a tug-of-war with his friend Zoe sends his blanket to a faraway land, and Elmo in hot pursuit. Facing life without his cherished blanket, Elmo musters all of his determination and courage and heads off on an action-packed rescue mission that plunges him into Grouchland-a place full of grouchy creatures, stinky garbage and the villainous Huxley. Along the way, Elmo learns an important lesson about sharing, realizing that he was selfish with his friend and responsible for what happened.. Tags: "} +{"id": "26390", "title": "Brooklyn's Finest", "year": 2009, "duration_min": 133, "rating": 6.2, "genres": "Crime, Drama, Thriller", "genres_pipe": "|Crime|Drama|Thriller|", "keywords": "male nudity, female nudity, tattoo, gambling, corruption, father son relationship, prostitute, robbery, detective, police brutality, wife husband relationship, card game, desperation, undercover, kidnapping", "tags_pipe": "|male nudity|female nudity|tattoo|gambling|corruption|father son relationship|prostitute|robbery|detective|police brutality|wife husband relationship|card game|desperation|undercover|kidnapping|", "overview": "Enforcing the law within the notoriously rough Brownsville section of the city and especially within the Van Dyke housing projects is the NYPD's sixty-fifth precinct. Three police officers struggle with the sometimes fine line between right and wrong.", "text_for_embedding": "Brooklyn's Finest (2009). Genres: Crime, Drama, Thriller. Enforcing the law within the notoriously rough Brownsville section of the city and especially within the Van Dyke housing projects is the NYPD's sixty-fifth precinct. Three police officers struggle with the sometimes fine line between right and wrong.. Tags: male nudity, female nudity, tattoo, gambling, corruption, father son relationship, prostitute, robbery, detective, police brutality, wife husband relationship, card game, desperation, undercover, kidnapping"} +{"id": "27759", "title": "55 Days at Peking", "year": 1963, "duration_min": 154, "rating": 6.3, "genres": "Action, Drama, History", "genres_pipe": "|Action|Drama|History|", "keywords": "siege, epic, beijing", "tags_pipe": "|siege|epic|beijing|", "overview": "Diplomats, soldiers and other representatives of a dozen nations fend off the siege of the International Compound in Peking during the 1900 Boxer Rebellion. The disparate interests unite for survival despite competing factions, overwhelming odds, delayed relief and tacit support of the Boxers by the Empress of China and her generals.", "text_for_embedding": "55 Days at Peking (1963). Genres: Action, Drama, History. Diplomats, soldiers and other representatives of a dozen nations fend off the siege of the International Compound in Peking during the 1900 Boxer Rebellion. The disparate interests unite for survival despite competing factions, overwhelming odds, delayed relief and tacit support of the Boxers by the Empress of China and her generals.. Tags: siege, epic, beijing"} +{"id": "109428", "title": "Evil Dead", "year": 2013, "duration_min": 91, "rating": 6.4, "genres": "Horror", "genres_pipe": "|Horror|", "keywords": "remake, demon, necronomicon, duringcreditsstinger", "tags_pipe": "|remake|demon|necronomicon|duringcreditsstinger|", "overview": "Evil Dead, the fourth installment of the Evil Dead franchise, serving as both a reboot and as a loose continuation of the series, features Mia, a young woman struggling with sobriety, heads to a remote cabin with a group of friends where the discovery of a Book of the Dead unwittingly summon up dormant demons which possess the youngsters one by one.", "text_for_embedding": "Evil Dead (2013). Genres: Horror. Evil Dead, the fourth installment of the Evil Dead franchise, serving as both a reboot and as a loose continuation of the series, features Mia, a young woman struggling with sobriety, heads to a remote cabin with a group of friends where the discovery of a Book of the Dead unwittingly summon up dormant demons which possess the youngsters one by one.. Tags: remake, demon, necronomicon, duringcreditsstinger"} +{"id": "23049", "title": "My Life in Ruins", "year": 2009, "duration_min": 95, "rating": 5.6, "genres": "Comedy, Romance", "genres_pipe": "|Comedy|Romance|", "keywords": "beach, greece, tour bus, tour guide, viagra, hospital", "tags_pipe": "|beach|greece|tour bus|tour guide|viagra|hospital|", "overview": "A Greek tour guide named Georgia attempts to recapture her kefi (Greek for mojo) by guiding a ragtag group of tourists around Greece and showing them the beauty of her native land. Along the way, she manages to open their eyes to the wonders of an exotic foreign land while beginning to see the world through a new set of eyes in the process.", "text_for_embedding": "My Life in Ruins (2009). Genres: Comedy, Romance. A Greek tour guide named Georgia attempts to recapture her kefi (Greek for mojo) by guiding a ragtag group of tourists around Greece and showing them the beauty of her native land. Along the way, she manages to open their eyes to the wonders of an exotic foreign land while beginning to see the world through a new set of eyes in the process.. Tags: beach, greece, tour bus, tour guide, viagra, hospital"} +{"id": "9310", "title": "American Dreamz", "year": 2006, "duration_min": 107, "rating": 4.9, "genres": "Comedy, Drama, Family", "genres_pipe": "|Comedy|Drama|Family|", "keywords": "usa president, moderator, musical, music, castingshow, image campaign, sleeper agent", "tags_pipe": "|usa president|moderator|musical|music|castingshow|image campaign|sleeper agent|", "overview": "The new season of \"American Dreamz,\" the wildly popular television singing contest, has captured the country's attention, as the competition looks to be between a young Midwestern gal (Moore) and a showtunes-loving young man from Orange County (Golzari). Recently awakened President Staton (Quaid) even wants in on the craze, as he signs up for the potential explosive season finale.", "text_for_embedding": "American Dreamz (2006). Genres: Comedy, Drama, Family. The new season of \"American Dreamz,\" the wildly popular television singing contest, has captured the country's attention, as the competition looks to be between a young Midwestern gal (Moore) and a showtunes-loving young man from Orange County (Golzari). Recently awakened President Staton (Quaid) even wants in on the craze, as he signs up for the potential explosive season finale.. Tags: usa president, moderator, musical, music, castingshow, image campaign, sleeper agent"} +{"id": "11411", "title": "Superman IV: The Quest for Peace", "year": 1987, "duration_min": 90, "rating": 4.1, "genres": "Action, Adventure, Science Fiction", "genres_pipe": "|Action|Adventure|Science Fiction|", "keywords": "saving the world, dc comics, mountains, nuclear missile, u.s. army, alter ego, sequel, superhero, laboratory, convertible, catholic school, newspaper editor, nuclear weapons, disarmament, volcanic eruption", "tags_pipe": "|saving the world|dc comics|mountains|nuclear missile|u.s. army|alter ego|sequel|superhero|laboratory|convertible|catholic school|newspaper editor|nuclear weapons|disarmament|volcanic eruption|", "overview": "With global superpowers engaged in an increasingly hostile arms race, Superman leads a crusade to rid the world of nuclear weapons. But Lex Luthor, recently sprung from jail, is declaring war on the Man of Steel and his quest to save the planet. Using a strand of Superman's hair, Luthor synthesizes a powerful ally known as Nuclear Man and ignites an epic battle spanning Earth and space.", "text_for_embedding": "Superman IV: The Quest for Peace (1987). Genres: Action, Adventure, Science Fiction. With global superpowers engaged in an increasingly hostile arms race, Superman leads a crusade to rid the world of nuclear weapons. But Lex Luthor, recently sprung from jail, is declaring war on the Man of Steel and his quest to save the planet. Using a strand of Superman's hair, Luthor synthesizes a powerful ally known as Nuclear Man and ignites an epic battle spanning Earth and space.. Tags: saving the world, dc comics, mountains, nuclear missile, u.s. army, alter ego, sequel, superhero, laboratory, convertible, catholic school, newspaper editor, nuclear weapons, disarmament, volcanic eruption"} +{"id": "16988", "title": "How She Move", "year": 2008, "duration_min": 94, "rating": 3.0, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "black people, loss of sister, dance, stepping", "tags_pipe": "|black people|loss of sister|dance|stepping|", "overview": "After the death of Raya Green's(Rutina Wesley) sister, she gets out from her classes at school, and sees a stomp crew practicing. She meets Bishop(Dwain Murphy) which is the dance crew leader. She then meets Michelle and does a stomp battle with her. They become enemies then friends later on. Her uptight mom pushes her to pass the test to get into Medical school, but she thinks she failed....", "text_for_embedding": "How She Move (2008). Genres: Drama. After the death of Raya Green's(Rutina Wesley) sister, she gets out from her classes at school, and sees a stomp crew practicing. She meets Bishop(Dwain Murphy) which is the dance crew leader. She then meets Michelle and does a stomp battle with her. They become enemies then friends later on. Her uptight mom pushes her to pass the test to get into Medical school, but she thinks she failed..... Tags: black people, loss of sister, dance, stepping"} +{"id": "7304", "title": "Running Scared", "year": 2006, "duration_min": 122, "rating": 7.0, "genres": "Action, Crime, Drama, Thriller", "genres_pipe": "|Action|Crime|Drama|Thriller|", "keywords": "ice hockey, racism, pedophile, throat slitting, shot in the stomach, head blown off, police investigation, pistol whip, shot in the shoulder, child uses gun, ankle holster, breaking finger", "tags_pipe": "|ice hockey|racism|pedophile|throat slitting|shot in the stomach|head blown off|police investigation|pistol whip|shot in the shoulder|child uses gun|ankle holster|breaking finger|", "overview": "After a drug-op gone bad, Joey Gazelle is put in charge of disposing the gun that shot a dirty cop. But things goes wrong for Joey after the neighbor kid stole the gun and used it to shoot his abusive father. Now Joey has to find the kid and the gun before the police and the mob find them first.", "text_for_embedding": "Running Scared (2006). Genres: Action, Crime, Drama, Thriller. After a drug-op gone bad, Joey Gazelle is put in charge of disposing the gun that shot a dirty cop. But things goes wrong for Joey after the neighbor kid stole the gun and used it to shoot his abusive father. Now Joey has to find the kid and the gun before the police and the mob find them first.. Tags: ice hockey, racism, pedophile, throat slitting, shot in the stomach, head blown off, police investigation, pistol whip, shot in the shoulder, child uses gun, ankle holster, breaking finger"} +{"id": "24747", "title": "Bobby Jones: Stroke of Genius", "year": 2004, "duration_min": 120, "rating": 5.5, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "sport", "tags_pipe": "|sport|", "overview": "The story of golf icon and legend, Bobby Jones, who retired from competition at the tender age of 28.", "text_for_embedding": "Bobby Jones: Stroke of Genius (2004). Genres: Drama. The story of golf icon and legend, Bobby Jones, who retired from competition at the tender age of 28.. Tags: sport"} +{"id": "58048", "title": "Shanghai Surprise", "year": 1986, "duration_min": 97, "rating": 2.9, "genres": "Adventure", "genres_pipe": "|Adventure|", "keywords": "", "tags_pipe": "", "overview": "Glendon Wasey is a fortune hunter looking for a fast track out of China. Gloria Tatlock is a missionary nurse seeking the curing powers of opium for her patients. Fate sets them on a hectic, exotic, and even romantic quest for stolen drugs. But they are up against every thug and smuggler in Shangai.", "text_for_embedding": "Shanghai Surprise (1986). Genres: Adventure. Glendon Wasey is a fortune hunter looking for a fast track out of China. Gloria Tatlock is a missionary nurse seeking the curing powers of opium for her patients. Fate sets them on a hectic, exotic, and even romantic quest for stolen drugs. But they are up against every thug and smuggler in Shangai.. Tags: "} +{"id": "1491", "title": "The Illusionist", "year": 2006, "duration_min": 110, "rating": 7.1, "genres": "Fantasy, Drama, Thriller, Romance", "genres_pipe": "|Fantasy|Drama|Thriller|Romance|", "keywords": "magic, princess, love, rivalry, vienna austria, crown prince, duchess, supernatural power, childhood sweetheart, vienna", "tags_pipe": "|magic|princess|love|rivalry|vienna austria|crown prince|duchess|supernatural power|childhood sweetheart|vienna|", "overview": "With his eye on a lovely aristocrat, a gifted illusionist named Eisenheim uses his powers to win her away from her betrothed, a crowned prince. But Eisenheim's scheme creates tumult within the monarchy and ignites the suspicion of a dogged inspector.", "text_for_embedding": "The Illusionist (2006). Genres: Fantasy, Drama, Thriller, Romance. With his eye on a lovely aristocrat, a gifted illusionist named Eisenheim uses his powers to win her away from her betrothed, a crowned prince. But Eisenheim's scheme creates tumult within the monarchy and ignites the suspicion of a dogged inspector.. Tags: magic, princess, love, rivalry, vienna austria, crown prince, duchess, supernatural power, childhood sweetheart, vienna"} +{"id": "2989", "title": "Roar", "year": 1981, "duration_min": 102, "rating": 5.6, "genres": "Adventure, Thriller", "genres_pipe": "|Adventure|Thriller|", "keywords": "africa, lion, elephant, vegetarian, leopard, tiger, zebra, wildlife, independent film, jungle, blood, exploitation film, animal attack, wildlife reserve, wildlife conservation", "tags_pipe": "|africa|lion|elephant|vegetarian|leopard|tiger|zebra|wildlife|independent film|jungle|blood|exploitation film|animal attack|wildlife reserve|wildlife conservation|", "overview": "Roar follows a family who are attacked by various African animals at the secluded home of their keeper.", "text_for_embedding": "Roar (1981). Genres: Adventure, Thriller. Roar follows a family who are attacked by various African animals at the secluded home of their keeper.. Tags: africa, lion, elephant, vegetarian, leopard, tiger, zebra, wildlife, independent film, jungle, blood, exploitation film, animal attack, wildlife reserve, wildlife conservation"} +{"id": "10629", "title": "Veronica Guerin", "year": 2003, "duration_min": 98, "rating": 6.8, "genres": "Drama, Crime, Thriller", "genres_pipe": "|Drama|Crime|Thriller|", "keywords": "journalism, police, drug scene, murder, drug lord", "tags_pipe": "|journalism|police|drug scene|murder|drug lord|", "overview": "In this true story, Veronica Guerin is an investigative reporter for an Irish newspaper. As the drug trade begins to bleed into the mainstream, Guerin decides to take on and expose those responsible. Beginning at the bottom with addicts, Guerin then gets in touch with John Traynor, a paranoid informant. Not without some prodding, Traynor leads her to John Gilligan, the ruthless head of the operation, who does not take kindly to Guerin's nosing.", "text_for_embedding": "Veronica Guerin (2003). Genres: Drama, Crime, Thriller. In this true story, Veronica Guerin is an investigative reporter for an Irish newspaper. As the drug trade begins to bleed into the mainstream, Guerin decides to take on and expose those responsible. Beginning at the bottom with addicts, Guerin then gets in touch with John Traynor, a paranoid informant. Not without some prodding, Traynor leads her to John Gilligan, the ruthless head of the operation, who does not take kindly to Guerin's nosing.. Tags: journalism, police, drug scene, murder, drug lord"} +{"id": "255343", "title": "Escobar: Paradise Lost", "year": 2014, "duration_min": 120, "rating": 6.1, "genres": "Thriller, Romance", "genres_pipe": "|Thriller|Romance|", "keywords": "surfer, murder, murderer, columbia, telephone conversation", "tags_pipe": "|surfer|murder|murderer|columbia|telephone conversation|", "overview": "For Pablo Escobar family is everything. When young surfer Nick falls for Escobar's niece, Maria, he finds his life on the line when he's pulled into the dangerous world of the family business.", "text_for_embedding": "Escobar: Paradise Lost (2014). Genres: Thriller, Romance. For Pablo Escobar family is everything. When young surfer Nick falls for Escobar's niece, Maria, he finds his life on the line when he's pulled into the dangerous world of the family business.. Tags: surfer, murder, murderer, columbia, telephone conversation"} +{"id": "4723", "title": "Southland Tales", "year": 2006, "duration_min": 144, "rating": 5.2, "genres": "Action, Adventure, Comedy, Drama, Science Fiction, Thriller", "genres_pipe": "|Action|Adventure|Comedy|Drama|Science Fiction|Thriller|", "keywords": "suicide, brother brother relationship, spy, prophecy, middle east, screenwriter, terrorist, wife husband relationship, nevada, amnesia, allegory, mass murder, kidnapping, blackmail, riot", "tags_pipe": "|suicide|brother brother relationship|spy|prophecy|middle east|screenwriter|terrorist|wife husband relationship|nevada|amnesia|allegory|mass murder|kidnapping|blackmail|riot|", "overview": "Set in the futuristic landscape of Los Angeles on July 4, 2008, as it stands on the brink of social, economic and environmental disaster. Boxer Santaros is an action star who's stricken with amnesia. His life intertwines with Krysta Now, an adult film star developing her own reality television project, and Ronald Taverner, a Hermosa Beach police officer who holds the key to a vast conspiracy.", "text_for_embedding": "Southland Tales (2006). Genres: Action, Adventure, Comedy, Drama, Science Fiction, Thriller. Set in the futuristic landscape of Los Angeles on July 4, 2008, as it stands on the brink of social, economic and environmental disaster. Boxer Santaros is an action star who's stricken with amnesia. His life intertwines with Krysta Now, an adult film star developing her own reality television project, and Ronald Taverner, a Hermosa Beach police officer who holds the key to a vast conspiracy.. Tags: suicide, brother brother relationship, spy, prophecy, middle east, screenwriter, terrorist, wife husband relationship, nevada, amnesia, allegory, mass murder, kidnapping, blackmail, riot"} +{"id": "10800", "title": "Dragon Hunters", "year": 2008, "duration_min": 80, "rating": 6.5, "genres": "Animation, Family", "genres_pipe": "|Animation|Family|", "keywords": "destroy, future, world supremacy, best friend, dragon, doomsday", "tags_pipe": "|destroy|future|world supremacy|best friend|dragon|doomsday|", "overview": "Dragon Hunters is a fantastic tale telling the adventures of two dragon hunters: the world has become a vast conglomerate of islands of varying size and shape. This babbling universe is mainly peopled with ruthless rogues, surly peasants and illiterate, petty lords Their main concerns revolve around two fundamental rules : Eat and don't get eaten.", "text_for_embedding": "Dragon Hunters (2008). Genres: Animation, Family. Dragon Hunters is a fantastic tale telling the adventures of two dragon hunters: the world has become a vast conglomerate of islands of varying size and shape. This babbling universe is mainly peopled with ruthless rogues, surly peasants and illiterate, petty lords Their main concerns revolve around two fundamental rules : Eat and don't get eaten.. Tags: destroy, future, world supremacy, best friend, dragon, doomsday"} +{"id": "25763", "title": "Damnation Alley", "year": 1977, "duration_min": 91, "rating": 5.0, "genres": "Action, Adventure, Science Fiction", "genres_pipe": "|Action|Adventure|Science Fiction|", "keywords": "based on novel, future, post-apocalyptic, war, cockroach, motorcycle, scorpion, post nuclear, battle for survival", "tags_pipe": "|based on novel|future|post-apocalyptic|war|cockroach|motorcycle|scorpion|post nuclear|battle for survival|", "overview": "A small group of survivors at a military installation who survived World War 3 attempt to drive across the desolate wasteland to where they hope more survivors are living. Hopefully their specially built vehicles will protect them against the freakish weather mutated plant and animal life and other dangers along the way.", "text_for_embedding": "Damnation Alley (1977). Genres: Action, Adventure, Science Fiction. A small group of survivors at a military installation who survived World War 3 attempt to drive across the desolate wasteland to where they hope more survivors are living. Hopefully their specially built vehicles will protect them against the freakish weather mutated plant and animal life and other dangers along the way.. Tags: based on novel, future, post-apocalyptic, war, cockroach, motorcycle, scorpion, post nuclear, battle for survival"} +{"id": "79694", "title": "The Apparition", "year": 2012, "duration_min": 82, "rating": 4.5, "genres": "Horror, Thriller", "genres_pipe": "|Horror|Thriller|", "keywords": "experiment, supernatural, paranormal, haunting, disappearance, fear, ghost", "tags_pipe": "|experiment|supernatural|paranormal|haunting|disappearance|fear|ghost|", "overview": "Plagued by frightening occurrences in their home, Kelly and Ben learn that a university's parapsychology experiment produced an entity that is now haunting them. The malevolent spirit feeds on fear and torments the couple no matter where they run. Desperate, Kelly and Ben turn to a paranormal researcher, but even with his aid, it may already be too late to save themselves from the terrifying presence.", "text_for_embedding": "The Apparition (2012). Genres: Horror, Thriller. Plagued by frightening occurrences in their home, Kelly and Ben learn that a university's parapsychology experiment produced an entity that is now haunting them. The malevolent spirit feeds on fear and torments the couple no matter where they run. Desperate, Kelly and Ben turn to a paranormal researcher, but even with his aid, it may already be too late to save themselves from the terrifying presence.. Tags: experiment, supernatural, paranormal, haunting, disappearance, fear, ghost"} +{"id": "4032", "title": "My Girl", "year": 1991, "duration_min": 102, "rating": 7.0, "genres": "Comedy, Drama, Family", "genres_pipe": "|Comedy|Drama|Family|", "keywords": "neighbor, child killed by animal, writing class, makeup artist, bee sting, camper, cosmetologist, tree climbing, death in childbirth, tuba, motor home, bee attack", "tags_pipe": "|neighbor|child killed by animal|writing class|makeup artist|bee sting|camper|cosmetologist|tree climbing|death in childbirth|tuba|motor home|bee attack|", "overview": "Vada Sultenfuss is obsessed with death. Her mother is dead, and her father runs a funeral parlor. She is also in love with her English teacher, and joins a poetry class over the summer just to impress him. Thomas J., her best friend, is \"allergic to everything\", and sticks with Vada despite her hangups. When Vada's father hires Shelly, and begins to fall for her, things take a turn to the worse...", "text_for_embedding": "My Girl (1991). Genres: Comedy, Drama, Family. Vada Sultenfuss is obsessed with death. Her mother is dead, and her father runs a funeral parlor. She is also in love with her English teacher, and joins a poetry class over the summer just to impress him. Thomas J., her best friend, is \"allergic to everything\", and sticks with Vada despite her hangups. When Vada's father hires Shelly, and begins to fall for her, things take a turn to the worse.... Tags: neighbor, child killed by animal, writing class, makeup artist, bee sting, camper, cosmetologist, tree climbing, death in childbirth, tuba, motor home, bee attack"} +{"id": "18615", "title": "Fur: An Imaginary Portrait of Diane Arbus", "year": 2006, "duration_min": 122, "rating": 5.8, "genres": "Drama, Mystery, Romance", "genres_pipe": "|Drama|Mystery|Romance|", "keywords": "photographer, biography, hair, werewolf, hypertrichosis, freak", "tags_pipe": "|photographer|biography|hair|werewolf|hypertrichosis|freak|", "overview": "In 1958 New York Diane Arbus is a housewife and mother who works as an assistant to her husband, a photographer employed by her wealthy parents. Respectable though her life is, she cannot help but feel uncomfortable in her privileged world. One night, a new neighbor catches Diane's eye, and the enigmatic man inspires her to set forth on the path to discovering her own artistry.", "text_for_embedding": "Fur: An Imaginary Portrait of Diane Arbus (2006). Genres: Drama, Mystery, Romance. In 1958 New York Diane Arbus is a housewife and mother who works as an assistant to her husband, a photographer employed by her wealthy parents. Respectable though her life is, she cannot help but feel uncomfortable in her privileged world. One night, a new neighbor catches Diane's eye, and the enigmatic man inspires her to set forth on the path to discovering her own artistry.. Tags: photographer, biography, hair, werewolf, hypertrichosis, freak"} +{"id": "10673", "title": "Wall Street", "year": 1987, "duration_min": 126, "rating": 7.0, "genres": "Crime, Drama", "genres_pipe": "|Crime|Drama|", "keywords": "power, fraud, broker, wall street, finances, lawyer, union, millionaire, stock broker", "tags_pipe": "|power|fraud|broker|wall street|finances|lawyer|union|millionaire|stock broker|", "overview": "A young and impatient stockbroker is willing to do anything to get to the top, including trading on illegal inside information taken through a ruthless and greedy corporate raider whom takes the youth under his wing.", "text_for_embedding": "Wall Street (1987). Genres: Crime, Drama. A young and impatient stockbroker is willing to do anything to get to the top, including trading on illegal inside information taken through a ruthless and greedy corporate raider whom takes the youth under his wing.. Tags: power, fraud, broker, wall street, finances, lawyer, union, millionaire, stock broker"} +{"id": "4584", "title": "Sense and Sensibility", "year": 1995, "duration_min": 136, "rating": 7.2, "genres": "Drama, Romance", "genres_pipe": "|Drama|Romance|", "keywords": "bowling, based on novel, servant, country life, jane austen, inheritance, military officer, period drama, rainstorm, horse and carriage, decorum", "tags_pipe": "|bowling|based on novel|servant|country life|jane austen|inheritance|military officer|period drama|rainstorm|horse and carriage|decorum|", "overview": "Rich Mr. Dashwood dies, leaving his second wife and her daughters poor by the rules of inheritance. Two daughters are the titular opposites.", "text_for_embedding": "Sense and Sensibility (1995). Genres: Drama, Romance. Rich Mr. Dashwood dies, leaving his second wife and her daughters poor by the rules of inheritance. Two daughters are the titular opposites.. Tags: bowling, based on novel, servant, country life, jane austen, inheritance, military officer, period drama, rainstorm, horse and carriage, decorum"} +{"id": "2977", "title": "Becoming Jane", "year": 2007, "duration_min": 120, "rating": 6.9, "genres": "Drama, Romance", "genres_pipe": "|Drama|Romance|", "keywords": "england, judge, irland, new love, empowerment, country life, future, letter, law, lovers, creativity, sister, author, family", "tags_pipe": "|england|judge|irland|new love|empowerment|country life|future|letter|law|lovers|creativity|sister|author|family|", "overview": "A biographical portrait of a pre-fame Jane Austen and her romance with a young Irishman.", "text_for_embedding": "Becoming Jane (2007). Genres: Drama, Romance. A biographical portrait of a pre-fame Jane Austen and her romance with a young Irishman.. Tags: england, judge, irland, new love, empowerment, country life, future, letter, law, lovers, creativity, sister, author, family"} +{"id": "10760", "title": "Sydney White", "year": 2007, "duration_min": 108, "rating": 6.0, "genres": "Comedy", "genres_pipe": "|Comedy|", "keywords": "college, romance, sorority, student, snow white, young adult, modern fairy tale", "tags_pipe": "|college|romance|sorority|student|snow white|young adult|modern fairy tale|", "overview": "A modern retelling of Snow White set against students in their freshman year of college in the greek system.", "text_for_embedding": "Sydney White (2007). Genres: Comedy. A modern retelling of Snow White set against students in their freshman year of college in the greek system.. Tags: college, romance, sorority, student, snow white, young adult, modern fairy tale"} +{"id": "11093", "title": "House of Sand and Fog", "year": 2003, "duration_min": 126, "rating": 7.0, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "san francisco, immigrant, house, intimidation, iranian", "tags_pipe": "|san francisco|immigrant|house|intimidation|iranian|", "overview": "Behrani, an Iranian immigrant buys a California bungalow, thinking he can fix it up, sell it again, and make enough money to send his son to college. However, the house is the legal property of former drug addict Kathy. After losing the house in an unfair legal dispute with the county, she is left with nowhere to go. Wanting her house back, she hires a lawyer and befriends a police officer. Neither Kathy nor Behrani have broken the law, so they find themselves involved in a difficult moral dilemma.", "text_for_embedding": "House of Sand and Fog (2003). Genres: Drama. Behrani, an Iranian immigrant buys a California bungalow, thinking he can fix it up, sell it again, and make enough money to send his son to college. However, the house is the legal property of former drug addict Kathy. After losing the house in an unfair legal dispute with the county, she is left with nowhere to go. Wanting her house back, she hires a lawyer and befriends a police officer. Neither Kathy nor Behrani have broken the law, so they find themselves involved in a difficult moral dilemma.. Tags: san francisco, immigrant, house, intimidation, iranian"} +{"id": "207", "title": "Dead Poets Society", "year": 1989, "duration_min": 129, "rating": 8.1, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "individual, philosophy, poetry, shakespeare, professor, literature, friendship, filmes focados em um professor", "tags_pipe": "|individual|philosophy|poetry|shakespeare|professor|literature|friendship|filmes focados em um professor|", "overview": "At an elite, old-fashioned boarding school in New England, a passionate English teacher inspires his students to rebel against convention and seize the potential of every day, courting the disdain of the stern headmaster.", "text_for_embedding": "Dead Poets Society (1989). Genres: Drama. At an elite, old-fashioned boarding school in New England, a passionate English teacher inspires his students to rebel against convention and seize the potential of every day, courting the disdain of the stern headmaster.. Tags: individual, philosophy, poetry, shakespeare, professor, literature, friendship, filmes focados em um professor"} +{"id": "8467", "title": "Dumb and Dumber", "year": 1994, "duration_min": 107, "rating": 6.5, "genres": "Comedy", "genres_pipe": "|Comedy|", "keywords": "gas station, motel, utah, stupidity, pill, prank, cigar smoking, violence, criminal, fired from the job, clumsiness, stepmother stepdaughter relationship, sitting on a toilet, aspen colorado, parakeet", "tags_pipe": "|gas station|motel|utah|stupidity|pill|prank|cigar smoking|violence|criminal|fired from the job|clumsiness|stepmother stepdaughter relationship|sitting on a toilet|aspen colorado|parakeet|", "overview": "Lloyd and Harry are two men whose stupidity is really indescribable. When Mary, a beautiful woman, loses an important suitcase with money before she leaves for Aspen, the two friends (who have found the suitcase) decide to return it to her. After some \"adventures\" they finally get to Aspen where, using the lost money they live it up and fight for Mary's heart.", "text_for_embedding": "Dumb and Dumber (1994). Genres: Comedy. Lloyd and Harry are two men whose stupidity is really indescribable. When Mary, a beautiful woman, loses an important suitcase with money before she leaves for Aspen, the two friends (who have found the suitcase) decide to return it to her. After some \"adventures\" they finally get to Aspen where, using the lost money they live it up and fight for Mary's heart.. Tags: gas station, motel, utah, stupidity, pill, prank, cigar smoking, violence, criminal, fired from the job, clumsiness, stepmother stepdaughter relationship, sitting on a toilet, aspen colorado, parakeet"} +{"id": "639", "title": "When Harry Met Sally...", "year": 1989, "duration_min": 96, "rating": 7.3, "genres": "Comedy, Romance, Drama", "genres_pipe": "|Comedy|Romance|Drama|", "keywords": "new york, wife husband relationship, restaurant, platonic love, orgasm, friendship, male female relationship", "tags_pipe": "|new york|wife husband relationship|restaurant|platonic love|orgasm|friendship|male female relationship|", "overview": "During their travels from Chicago to New York, Harry and Sally Will debate whether or not sex ruins a perfect relationship between a man and a woman. Eleven years and later, they're still no closer to finding the answer.", "text_for_embedding": "When Harry Met Sally... (1989). Genres: Comedy, Romance, Drama. During their travels from Chicago to New York, Harry and Sally Will debate whether or not sex ruins a perfect relationship between a man and a woman. Eleven years and later, they're still no closer to finding the answer.. Tags: new york, wife husband relationship, restaurant, platonic love, orgasm, friendship, male female relationship"} +{"id": "24226", "title": "The Verdict", "year": 1982, "duration_min": 129, "rating": 7.4, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "boston, court, malpractice, alcoholic, courtroom, defense attorney", "tags_pipe": "|boston|court|malpractice|alcoholic|courtroom|defense attorney|", "overview": "Frank Galvin is a down-on-his luck lawyer, reduced to drinking and ambulance chasing. Former associate Mickey Morrissey reminds him of his obligations in a medical malpractice suit that he himself served to Galvin on a silver platter: all parties willing to settle out of court. Blundering his way through the preliminaries, he suddenly realizes that perhaps after all the case should go to court; to punish the guilty, to get a decent settlement for his clients, and to restore his standing as a lawyer.", "text_for_embedding": "The Verdict (1982). Genres: Drama. Frank Galvin is a down-on-his luck lawyer, reduced to drinking and ambulance chasing. Former associate Mickey Morrissey reminds him of his obligations in a medical malpractice suit that he himself served to Galvin on a silver platter: all parties willing to settle out of court. Blundering his way through the preliminaries, he suddenly realizes that perhaps after all the case should go to court; to punish the guilty, to get a decent settlement for his clients, and to restore his standing as a lawyer.. Tags: boston, court, malpractice, alcoholic, courtroom, defense attorney"} +{"id": "9285", "title": "Road Trip", "year": 2000, "duration_min": 93, "rating": 5.9, "genres": "Comedy, Adventure", "genres_pipe": "|Comedy|Adventure|", "keywords": "female nudity, sex, sexism, sperm bank, erection, blonde, road trip, sorority, politically incorrect, pot smoking, teen movie, teen sex comedy, cross country, political, stoner", "tags_pipe": "|female nudity|sex|sexism|sperm bank|erection|blonde|road trip|sorority|politically incorrect|pot smoking|teen movie|teen sex comedy|cross country|political|stoner|", "overview": "Four friends take off on an 1800 mile road trip to retrieve an illicit tape mistakenly mailed to a girl friend.", "text_for_embedding": "Road Trip (2000). Genres: Comedy, Adventure. Four friends take off on an 1800 mile road trip to retrieve an illicit tape mistakenly mailed to a girl friend.. Tags: female nudity, sex, sexism, sperm bank, erection, blonde, road trip, sorority, politically incorrect, pot smoking, teen movie, teen sex comedy, cross country, political, stoner"} +{"id": "14709", "title": "Varsity Blues", "year": 1999, "duration_min": 106, "rating": 6.0, "genres": "Comedy, Drama, Romance", "genres_pipe": "|Comedy|Drama|Romance|", "keywords": "american football, small town, texas, cheerleader, sport, party, high school sports, police car, american football star, the big game", "tags_pipe": "|american football|small town|texas|cheerleader|sport|party|high school sports|police car|american football star|the big game|", "overview": "In small-town Texas, high school football is a religion, 17-year-old schoolboys carry the hopes of an entire community onto the gridiron every Friday night. When star quarterback Lance Harbor suffers an injury, the Coyotes are forced to regroup under the questionable leadership of John Moxon, a second-string quarterback with a slightly irreverent approach to the game.", "text_for_embedding": "Varsity Blues (1999). Genres: Comedy, Drama, Romance. In small-town Texas, high school football is a religion, 17-year-old schoolboys carry the hopes of an entire community onto the gridiron every Friday night. When star quarterback Lance Harbor suffers an injury, the Coyotes are forced to regroup under the questionable leadership of John Moxon, a second-string quarterback with a slightly irreverent approach to the game.. Tags: american football, small town, texas, cheerleader, sport, party, high school sports, police car, american football star, the big game"} +{"id": "74643", "title": "The Artist", "year": 2011, "duration_min": 100, "rating": 7.3, "genres": "Drama, Comedy, Romance", "genres_pipe": "|Drama|Comedy|Romance|", "keywords": "film producer, film history, movie studio, hollywood, dog, mustache, hollywoodland, silent film, marquee, terrier, movie star, flapper, silent film star", "tags_pipe": "|film producer|film history|movie studio|hollywood|dog|mustache|hollywoodland|silent film|marquee|terrier|movie star|flapper|silent film star|", "overview": "Hollywood, 1927: As silent movie star George Valentin wonders if the arrival of talking pictures will cause him to fade into oblivion, he sparks with Peppy Miller, a young dancer set for a big break.", "text_for_embedding": "The Artist (2011). Genres: Drama, Comedy, Romance. Hollywood, 1927: As silent movie star George Valentin wonders if the arrival of talking pictures will cause him to fade into oblivion, he sparks with Peppy Miller, a young dancer set for a big break.. Tags: film producer, film history, movie studio, hollywood, dog, mustache, hollywoodland, silent film, marquee, terrier, movie star, flapper, silent film star"} +{"id": "13788", "title": "The Unborn", "year": 2009, "duration_min": 87, "rating": 4.8, "genres": "Horror, Thriller, Mystery", "genres_pipe": "|Horror|Thriller|Mystery|", "keywords": "", "tags_pipe": "", "overview": "A young woman fights the spirit that is slowly taking possession of her.", "text_for_embedding": "The Unborn (2009). Genres: Horror, Thriller, Mystery. A young woman fights the spirit that is slowly taking possession of her.. Tags: "} +{"id": "83666", "title": "Moonrise Kingdom", "year": 2012, "duration_min": 94, "rating": 7.6, "genres": "Comedy, Drama, Romance", "genres_pipe": "|Comedy|Drama|Romance|", "keywords": "new england, first love, eye patch, search party, devastation, pen pal, handkerchief, child smoking, small town sheriff, the color red, the color blue, boy scouts, sand dancing, meet cute, boy scouts leader", "tags_pipe": "|new england|first love|eye patch|search party|devastation|pen pal|handkerchief|child smoking|small town sheriff|the color red|the color blue|boy scouts|sand dancing|meet cute|boy scouts leader|", "overview": "Set on an island off the coast of New England in the summer of 1965, Moonrise Kingdom tells the story of two twelve-year-olds who fall in love, make a secret pact, and run away together into the wilderness. As various authorities try to hunt them down, a violent storm is brewing off-shore – and the peaceful island community is turned upside down in more ways than anyone can handle.", "text_for_embedding": "Moonrise Kingdom (2012). Genres: Comedy, Drama, Romance. Set on an island off the coast of New England in the summer of 1965, Moonrise Kingdom tells the story of two twelve-year-olds who fall in love, make a secret pact, and run away together into the wilderness. As various authorities try to hunt them down, a violent storm is brewing off-shore – and the peaceful island community is turned upside down in more ways than anyone can handle.. Tags: new england, first love, eye patch, search party, devastation, pen pal, handkerchief, child smoking, small town sheriff, the color red, the color blue, boy scouts, sand dancing, meet cute, boy scouts leader"} +{"id": "10781", "title": "The Texas Chainsaw Massacre: The Beginning", "year": 2006, "duration_min": 91, "rating": 5.9, "genres": "Horror", "genres_pipe": "|Horror|", "keywords": "mass murder, planned murder, chain saw, sadism, knife, psychopath, prequel, murder, gore, serial killer, blood, leatherface, slaughterhouse, slasher, chainsaw", "tags_pipe": "|mass murder|planned murder|chain saw|sadism|knife|psychopath|prequel|murder|gore|serial killer|blood|leatherface|slaughterhouse|slasher|chainsaw|", "overview": "Chrissie and her friends set out on a road trip for a final fling before one is shipped off to Vietnam. Along the way, bikers harass the foursome and cause an accident that throws Chrissie from the vehicle. The lawman who arrives on the scene kills one of the bikers and brings Chrissie's friends to the Hewitt homestead, where young Leatherface is learning the tools of terror.", "text_for_embedding": "The Texas Chainsaw Massacre: The Beginning (2006). Genres: Horror. Chrissie and her friends set out on a road trip for a final fling before one is shipped off to Vietnam. Along the way, bikers harass the foursome and cause an accident that throws Chrissie from the vehicle. The lawman who arrives on the scene kills one of the bikers and brings Chrissie's friends to the Hewitt homestead, where young Leatherface is learning the tools of terror.. Tags: mass murder, planned murder, chain saw, sadism, knife, psychopath, prequel, murder, gore, serial killer, blood, leatherface, slaughterhouse, slasher, chainsaw"} +{"id": "318850", "title": "The Young Messiah", "year": 2016, "duration_min": 120, "rating": 6.4, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "egypt, jesus christ, gospel, christian, journey, biblical", "tags_pipe": "|egypt|jesus christ|gospel|christian|journey|biblical|", "overview": "Tells the story of Jesus Christ at age seven as he and his family depart Egypt to return home to Nazareth. Told from his childhood perspective, it follows young Jesus as he grows into his religious identity.", "text_for_embedding": "The Young Messiah (2016). Genres: Drama. Tells the story of Jesus Christ at age seven as he and his family depart Egypt to return home to Nazareth. Told from his childhood perspective, it follows young Jesus as he grows into his religious identity.. Tags: egypt, jesus christ, gospel, christian, journey, biblical"} +{"id": "13908", "title": "The Master of Disguise", "year": 2002, "duration_min": 80, "rating": 3.7, "genres": "Comedy, Family", "genres_pipe": "|Comedy|Family|", "keywords": "aftercreditsstinger, duringcreditsstinger", "tags_pipe": "|aftercreditsstinger|duringcreditsstinger|", "overview": "A sweet-natured Italian waiter named Pistachio Disguisey at his father Fabbrizio's restaurant, who happens to be a member of a family with supernatural skills of disguise. But moments later the patriarch of the Disguisey family is kidnapped Fabbrizio's former arch-enemy, Devlin Bowman, a criminal mastermind in an attempt to steal the world's most precious treasures from around the world. And it's up to Pistachio to track down Bowman and save his family before Bowman kills them!", "text_for_embedding": "The Master of Disguise (2002). Genres: Comedy, Family. A sweet-natured Italian waiter named Pistachio Disguisey at his father Fabbrizio's restaurant, who happens to be a member of a family with supernatural skills of disguise. But moments later the patriarch of the Disguisey family is kidnapped Fabbrizio's former arch-enemy, Devlin Bowman, a criminal mastermind in an attempt to steal the world's most precious treasures from around the world. And it's up to Pistachio to track down Bowman and save his family before Bowman kills them!. Tags: aftercreditsstinger, duringcreditsstinger"} +{"id": "1417", "title": "Pan's Labyrinth", "year": 2006, "duration_min": 118, "rating": 7.6, "genres": "Fantasy, Drama, War", "genres_pipe": "|Fantasy|Drama|War|", "keywords": "spain, resistance, servant, anti hero, fairy, fairy tale, franco regime, army, princess, love, woods, king, hiding, labyrinth, mythological", "tags_pipe": "|spain|resistance|servant|anti hero|fairy|fairy tale|franco regime|army|princess|love|woods|king|hiding|labyrinth|mythological|", "overview": "Living with her tyrannical stepfather in a new home with her pregnant mother, 10-year-old Ofelia feels alone until she explores a decaying labyrinth guarded by a mysterious faun who claims to know her destiny. If she wishes to return to her real father, Ofelia must complete three terrifying tasks.", "text_for_embedding": "Pan's Labyrinth (2006). Genres: Fantasy, Drama, War. Living with her tyrannical stepfather in a new home with her pregnant mother, 10-year-old Ofelia feels alone until she explores a decaying labyrinth guarded by a mysterious faun who claims to know her destiny. If she wishes to return to her real father, Ofelia must complete three terrifying tasks.. Tags: spain, resistance, servant, anti hero, fairy, fairy tale, franco regime, army, princess, love, woods, king, hiding, labyrinth, mythological"} +{"id": "39180", "title": "See Spot Run", "year": 2001, "duration_min": 94, "rating": 4.8, "genres": "Action, Comedy, Family", "genres_pipe": "|Action|Comedy|Family|", "keywords": "dog", "tags_pipe": "|dog|", "overview": "A drug sniffing agent canine is a target for an assassin boss so the FBI calls Witness Protection to send him somewhere else. Meanwhile a single Mom puts her 6 year old boy James in the care of her irresponsible, mailman, neighbor, Gordon, when the babysitter bails on her. Meanwhile, an assassin mob boss hires 2 goons to kill Agent 11. But when 11 escapes from the van when they tried to kill him, he hides in Gordon's Mailtruck that James is in too. And guess what they name him. Spot.", "text_for_embedding": "See Spot Run (2001). Genres: Action, Comedy, Family. A drug sniffing agent canine is a target for an assassin boss so the FBI calls Witness Protection to send him somewhere else. Meanwhile a single Mom puts her 6 year old boy James in the care of her irresponsible, mailman, neighbor, Gordon, when the babysitter bails on her. Meanwhile, an assassin mob boss hires 2 goons to kill Agent 11. But when 11 escapes from the van when they tried to kill him, he hides in Gordon's Mailtruck that James is in too. And guess what they name him. Spot.. Tags: dog"} +{"id": "16161", "title": "Baby Boy", "year": 2001, "duration_min": 130, "rating": 7.4, "genres": "Crime, Drama, Romance", "genres_pipe": "|Crime|Drama|Romance|", "keywords": "single parent, intolerance, condom, bootlegger, fistfight, step father, womanizer, thief, domestic violence, gunfight, los angeles, physical abuse, ex-con, selfishness, passive aggression", "tags_pipe": "|single parent|intolerance|condom|bootlegger|fistfight|step father|womanizer|thief|domestic violence|gunfight|los angeles|physical abuse|ex-con|selfishness|passive aggression|", "overview": "The story of Jody, a misguided, 20-year-old African-American who is really just a baby boy finally forced-kicking and screaming to face the commitments of real life. Streetwise and jobless, he has not only fathered two children by two different women-Yvette and Peanut but still lives with his own mother. He can't seem to strike a balance or find direction in his chaotic life.", "text_for_embedding": "Baby Boy (2001). Genres: Crime, Drama, Romance. The story of Jody, a misguided, 20-year-old African-American who is really just a baby boy finally forced-kicking and screaming to face the commitments of real life. Streetwise and jobless, he has not only fathered two children by two different women-Yvette and Peanut but still lives with his own mother. He can't seem to strike a balance or find direction in his chaotic life.. Tags: single parent, intolerance, condom, bootlegger, fistfight, step father, womanizer, thief, domestic violence, gunfight, los angeles, physical abuse, ex-con, selfishness, passive aggression"} +{"id": "49950", "title": "The Roommate", "year": 2011, "duration_min": 91, "rating": 5.3, "genres": "Thriller, Drama, Horror", "genres_pipe": "|Thriller|Drama|Horror|", "keywords": "jealousy, roommate, obsession, campus, love, murder, freshman, student, los angeles, medication, violence, boyfriend, design, resentment", "tags_pipe": "|jealousy|roommate|obsession|campus|love|murder|freshman|student|los angeles|medication|violence|boyfriend|design|resentment|", "overview": "When Sara (Minka Kelly), a young design student from Iowa, arrives for college in Los Angeles, she is eager to fit in and get to know the big city. Her wealthy roommate, Rebecca (Leighton Meester), is more than eager to take Sara under her wing and show her the ropes. The two become close, but when Sara begins to branch out and make more friends on campus, Rebecca becomes resentful. Alarmed, Sara moves in with her new boyfriend, causing Rebecca's behavior to take a violent turn.", "text_for_embedding": "The Roommate (2011). Genres: Thriller, Drama, Horror. When Sara (Minka Kelly), a young design student from Iowa, arrives for college in Los Angeles, she is eager to fit in and get to know the big city. Her wealthy roommate, Rebecca (Leighton Meester), is more than eager to take Sara under her wing and show her the ropes. The two become close, but when Sara begins to branch out and make more friends on campus, Rebecca becomes resentful. Alarmed, Sara moves in with her new boyfriend, causing Rebecca's behavior to take a violent turn.. Tags: jealousy, roommate, obsession, campus, love, murder, freshman, student, los angeles, medication, violence, boyfriend, design, resentment"} +{"id": "10956", "title": "Joe Dirt", "year": 2001, "duration_min": 91, "rating": 5.5, "genres": "Mystery, Adventure, Comedy, Romance, Drama", "genres_pipe": "|Mystery|Adventure|Comedy|Romance|Drama|", "keywords": "parents kids relationship, loss of parents, looking for birth parents, meteorite, janitor,  , woman director", "tags_pipe": "|parents kids relationship|loss of parents|looking for birth parents|meteorite|janitor| |woman director|", "overview": "Joe Dirt is a janitor with a mullet hairdo, acid-washed jeans and a dream to find the parents that he lost at the Grand Canyon when he was a belligerent, trailer park-raised eight-year-old. Now, blasting Van Halen in his jacked-up economy car, the irrepressibly optimistic Joe hits the road alone in search of his folks.", "text_for_embedding": "Joe Dirt (2001). Genres: Mystery, Adventure, Comedy, Romance, Drama. Joe Dirt is a janitor with a mullet hairdo, acid-washed jeans and a dream to find the parents that he lost at the Grand Canyon when he was a belligerent, trailer park-raised eight-year-old. Now, blasting Van Halen in his jacked-up economy car, the irrepressibly optimistic Joe hits the road alone in search of his folks.. Tags: parents kids relationship, loss of parents, looking for birth parents, meteorite, janitor,  , woman director"} +{"id": "9594", "title": "Double Impact", "year": 1991, "duration_min": 110, "rating": 5.3, "genres": "Thriller, Action, Crime, Drama", "genres_pipe": "|Thriller|Action|Crime|Drama|", "keywords": "loss of parents, karate, fighter, revenge, hong kong, twins, hoodlum", "tags_pipe": "|loss of parents|karate|fighter|revenge|hong kong|twins|hoodlum|", "overview": "Jean Claude Van Damme plays a dual role as Alex and Chad, twins separated at the death of their parents. Chad is raised by a family retainer in Paris, Alex becomes a petty crook in Hong Kong. Seeing a picture of Alex, Chad rejoins him and convinces him that his rival in Hong Kong is also the man who killed their parents. Alex is suspicious of Chad, especially when it comes to his girlfriend.", "text_for_embedding": "Double Impact (1991). Genres: Thriller, Action, Crime, Drama. Jean Claude Van Damme plays a dual role as Alex and Chad, twins separated at the death of their parents. Chad is raised by a family retainer in Paris, Alex becomes a petty crook in Hong Kong. Seeing a picture of Alex, Chad rejoins him and convinces him that his rival in Hong Kong is also the man who killed their parents. Alex is suspicious of Chad, especially when it comes to his girlfriend.. Tags: loss of parents, karate, fighter, revenge, hong kong, twins, hoodlum"} +{"id": "4638", "title": "Hot Fuzz", "year": 2007, "duration_min": 121, "rating": 7.4, "genres": "Crime, Action, Comedy", "genres_pipe": "|Crime|Action|Comedy|", "keywords": "village, arrest, police, partner, murder, conspiracy, gunfight, police force, cowboy costume, accident", "tags_pipe": "|village|arrest|police|partner|murder|conspiracy|gunfight|police force|cowboy costume|accident|", "overview": "Top London cop, PC Nicholas Angel is good. Too good. To stop the rest of his team from looking bad, he is reassigned to the quiet town of Sandford, paired with simple country cop, and everything seems quiet until two actors are found decapitated. It is addressed as an accident, but Angel isn't going to accept that, especially when more and more people turn up dead.", "text_for_embedding": "Hot Fuzz (2007). Genres: Crime, Action, Comedy. Top London cop, PC Nicholas Angel is good. Too good. To stop the rest of his team from looking bad, he is reassigned to the quiet town of Sandford, paired with simple country cop, and everything seems quiet until two actors are found decapitated. It is addressed as an accident, but Angel isn't going to accept that, especially when more and more people turn up dead.. Tags: village, arrest, police, partner, murder, conspiracy, gunfight, police force, cowboy costume, accident"} +{"id": "13972", "title": "The Women", "year": 2008, "duration_min": 114, "rating": 4.6, "genres": "Comedy, Drama, Romance", "genres_pipe": "|Comedy|Drama|Romance|", "keywords": "beauty salon, divorce, woman director", "tags_pipe": "|beauty salon|divorce|woman director|", "overview": "The story centers on a group of gossipy, high-society women who spend their days at the beauty salon and haunting fashion shows. The sweet, happily-wedded Mary Haines finds her marriage in trouble when shop girl Crystal Allen gets her hooks into Mary's man.", "text_for_embedding": "The Women (2008). Genres: Comedy, Drama, Romance. The story centers on a group of gossipy, high-society women who spend their days at the beauty salon and haunting fashion shows. The sweet, happily-wedded Mary Haines finds her marriage in trouble when shop girl Crystal Allen gets her hooks into Mary's man.. Tags: beauty salon, divorce, woman director"} +{"id": "5038", "title": "Vicky Cristina Barcelona", "year": 2008, "duration_min": 96, "rating": 6.7, "genres": "Drama, Romance", "genres_pipe": "|Drama|Romance|", "keywords": "barcelona spain, menage a trois, author", "tags_pipe": "|barcelona spain|menage a trois|author|", "overview": "Two girlfriends on a summer holiday in Spain become enamored with the same painter, unaware that his ex-wife, with whom he has a tempestuous relationship, is about to re-enter the picture.", "text_for_embedding": "Vicky Cristina Barcelona (2008). Genres: Drama, Romance. Two girlfriends on a summer holiday in Spain become enamored with the same painter, unaware that his ex-wife, with whom he has a tempestuous relationship, is about to re-enter the picture.. Tags: barcelona spain, menage a trois, author"} +{"id": "13491", "title": "Arn: The Knight Templar", "year": 2007, "duration_min": 139, "rating": 6.4, "genres": "Action, Adventure, Drama, Romance", "genres_pipe": "|Action|Adventure|Drama|Romance|", "keywords": "tv movie", "tags_pipe": "|tv movie|", "overview": "Arn, the son of a high-ranking Swedish nobleman is educated in a monastery and sent to the Holy Land as a knight templar to do penance for a forbidden love.", "text_for_embedding": "Arn: The Knight Templar (2007). Genres: Action, Adventure, Drama, Romance. Arn, the son of a high-ranking Swedish nobleman is educated in a monastery and sent to the Holy Land as a knight templar to do penance for a forbidden love.. Tags: tv movie"} +{"id": "10571", "title": "Boys and Girls", "year": 2000, "duration_min": 94, "rating": 5.4, "genres": "Comedy, Drama, Romance", "genres_pipe": "|Comedy|Drama|Romance|", "keywords": "soulmates, new love, platonic love, lovers, girlfriend, model student, friendship, motherly love, student movie, student, university, relationship", "tags_pipe": "|soulmates|new love|platonic love|lovers|girlfriend|model student|friendship|motherly love|student movie|student|university|relationship|", "overview": "Ryan and Jennifer are opposites who definitely do not attract. At least that's what they always believed. When they met as twelve-year-olds, they disliked one another. When they met again as teenagers, they loathed each other. But when they meet in college, the uptight Ryan and the free-spirited Jennifer find that their differences bind them together and a rare friendship develops.", "text_for_embedding": "Boys and Girls (2000). Genres: Comedy, Drama, Romance. Ryan and Jennifer are opposites who definitely do not attract. At least that's what they always believed. When they met as twelve-year-olds, they disliked one another. When they met again as teenagers, they loathed each other. But when they meet in college, the uptight Ryan and the free-spirited Jennifer find that their differences bind them together and a rare friendship develops.. Tags: soulmates, new love, platonic love, lovers, girlfriend, model student, friendship, motherly love, student movie, student, university, relationship"} +{"id": "10994", "title": "White Oleander", "year": 2002, "duration_min": 109, "rating": 7.2, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "poison, prison, loss of family, loss of father, foster parents, women's prison, family relationships, bad mother, children's services", "tags_pipe": "|poison|prison|loss of family|loss of father|foster parents|women's prison|family relationships|bad mother|children's services|", "overview": "A teenager journeys through a series of foster homes after her mother goes to prison for committing a crime of passion.", "text_for_embedding": "White Oleander (2002). Genres: Drama. A teenager journeys through a series of foster homes after her mother goes to prison for committing a crime of passion.. Tags: poison, prison, loss of family, loss of father, foster parents, women's prison, family relationships, bad mother, children's services"} +{"id": "19994", "title": "Jennifer's Body", "year": 2009, "duration_min": 100, "rating": 5.3, "genres": "Comedy, Horror", "genres_pipe": "|Comedy|Horror|", "keywords": "bloodthirstiness, high school, sexual murder, horror, gore, slumber party, demon, succubus, candlelight vigil, duringcreditsstinger, woman director", "tags_pipe": "|bloodthirstiness|high school|sexual murder|horror|gore|slumber party|demon|succubus|candlelight vigil|duringcreditsstinger|woman director|", "overview": "A newly possessed cheerleader turns into a killer who specializes in offing her male classmates. Can her best friend put an end to the horror?", "text_for_embedding": "Jennifer's Body (2009). Genres: Comedy, Horror. A newly possessed cheerleader turns into a killer who specializes in offing her male classmates. Can her best friend put an end to the horror?. Tags: bloodthirstiness, high school, sexual murder, horror, gore, slumber party, demon, succubus, candlelight vigil, duringcreditsstinger, woman director"} +{"id": "25166", "title": "Drowning Mona", "year": 2000, "duration_min": 96, "rating": 5.4, "genres": "Comedy, Crime, Mystery", "genres_pipe": "|Comedy|Crime|Mystery|", "keywords": "suspicion, suspect, investigation, remake, murder, death, accident, dysfunctional", "tags_pipe": "|suspicion|suspect|investigation|remake|murder|death|accident|dysfunctional|", "overview": "The recently deceased Mona Dearly (Bette Midler) was many things: an abusive wife, a domineering mother, a loud-mouthed neighbor and a violent malcontent. So when her car and corpse are discovered in the Hudson River, police Chief Wyatt Rash (Danny DeVito) immediately suspects murder rather than an accident. But, since the whole community of Verplanck, N.Y., shares a deep hatred for this unceasingly spiteful woman, Rash finds his murder investigation overwhelmed with potential suspects.", "text_for_embedding": "Drowning Mona (2000). Genres: Comedy, Crime, Mystery. The recently deceased Mona Dearly (Bette Midler) was many things: an abusive wife, a domineering mother, a loud-mouthed neighbor and a violent malcontent. So when her car and corpse are discovered in the Hudson River, police Chief Wyatt Rash (Danny DeVito) immediately suspects murder rather than an accident. But, since the whole community of Verplanck, N.Y., shares a deep hatred for this unceasingly spiteful woman, Rash finds his murder investigation overwhelmed with potential suspects.. Tags: suspicion, suspect, investigation, remake, murder, death, accident, dysfunctional"} +{"id": "30890", "title": "Radio Days", "year": 1987, "duration_min": 90, "rating": 7.0, "genres": "Comedy, Drama", "genres_pipe": "|Comedy|Drama|", "keywords": "beach, taxi driver, world war ii, radio, coney island, independent film, working class, binoculars, cigarette girl, radio plays", "tags_pipe": "|beach|taxi driver|world war ii|radio|coney island|independent film|working class|binoculars|cigarette girl|radio plays|", "overview": "The Narrator (Woody Allen) tells us how the radio influenced his childhood in the days before TV. In the New York City of the late 1930s to the New Year's Eve 1944, this coming-of-age tale mixes the narrator's experiences with contemporary anecdotes and urban legends of the radio stars.", "text_for_embedding": "Radio Days (1987). Genres: Comedy, Drama. The Narrator (Woody Allen) tells us how the radio influenced his childhood in the days before TV. In the New York City of the late 1930s to the New Year's Eve 1944, this coming-of-age tale mixes the narrator's experiences with contemporary anecdotes and urban legends of the radio stars.. Tags: beach, taxi driver, world war ii, radio, coney island, independent film, working class, binoculars, cigarette girl, radio plays"} +{"id": "23169", "title": "Remember Me", "year": 2010, "duration_min": 113, "rating": 6.9, "genres": "Drama, Romance", "genres_pipe": "|Drama|Romance|", "keywords": "new york, father son relationship, grieving, romantic drama, young adult, college student, 21st century", "tags_pipe": "|new york|father son relationship|grieving|romantic drama|young adult|college student|21st century|", "overview": "Still reeling from a heartbreaking family event and his parents' subsequent divorce, Tyler Hawkins discovers a fresh lease on life when he meets Ally Craig, a gregarious beauty who witnessed her mother's death. But as the couple draws closer, the fallout from their separate tragedies jeopardizes their love.", "text_for_embedding": "Remember Me (2010). Genres: Drama, Romance. Still reeling from a heartbreaking family event and his parents' subsequent divorce, Tyler Hawkins discovers a fresh lease on life when he meets Ally Craig, a gregarious beauty who witnessed her mother's death. But as the couple draws closer, the fallout from their separate tragedies jeopardizes their love.. Tags: new york, father son relationship, grieving, romantic drama, young adult, college student, 21st century"} +{"id": "17403", "title": "How to Deal", "year": 2003, "duration_min": 99, "rating": 5.7, "genres": "Drama, Comedy, Romance", "genres_pipe": "|Drama|Comedy|Romance|", "keywords": "woman director", "tags_pipe": "|woman director|", "overview": "Mandy Moore stars as Halley, a young hip high school student who's convinced true love doesn't exist based on the crazy relationships around her. Her mother is divorcing her father who is dating a younger woman Halley can't stand. Her crazed sister is planning a wedding but has second thoughts and her best friend has fallen madly in love for the first time leaving Halley to feel even more alone.", "text_for_embedding": "How to Deal (2003). Genres: Drama, Comedy, Romance. Mandy Moore stars as Halley, a young hip high school student who's convinced true love doesn't exist based on the crazy relationships around her. Her mother is divorcing her father who is dating a younger woman Halley can't stand. Her crazed sister is planning a wedding but has second thoughts and her best friend has fallen madly in love for the first time leaving Halley to feel even more alone.. Tags: woman director"} +{"id": "12120", "title": "My Stepmother is an Alien", "year": 1988, "duration_min": 108, "rating": 5.3, "genres": "Comedy, Science Fiction", "genres_pipe": "|Comedy|Science Fiction|", "keywords": "alien, spoof, sneeze, levitation, message", "tags_pipe": "|alien|spoof|sneeze|levitation|message|", "overview": "Trying to rescue her home planet from destruction, a gorgeous extraterrestrial named Celeste arrives on Earth and begins her scientific research. She woos quirky scientist Dr. Steve Mills, a widower with a young daughter. Before long, Celeste finds herself in love with Steve and her new life on Earth, where she experiences true intimacy for the first time. But when she loses sight of her mission, she begins to question where she belongs.", "text_for_embedding": "My Stepmother is an Alien (1988). Genres: Comedy, Science Fiction. Trying to rescue her home planet from destruction, a gorgeous extraterrestrial named Celeste arrives on Earth and begins her scientific research. She woos quirky scientist Dr. Steve Mills, a widower with a young daughter. Before long, Celeste finds herself in love with Steve and her new life on Earth, where she experiences true intimacy for the first time. But when she loses sight of her mission, she begins to question where she belongs.. Tags: alien, spoof, sneeze, levitation, message"} +{"id": "9800", "title": "Philadelphia", "year": 1993, "duration_min": 125, "rating": 7.6, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "gay, aids, homophobia, jurors, court, partner, hiv, lawyer, dying, discrimination, judiciary", "tags_pipe": "|gay|aids|homophobia|jurors|court|partner|hiv|lawyer|dying|discrimination|judiciary|", "overview": "No one would take his case until one man was willing to take on the system. Two competing lawyers join forces to sue a prestigious law firm for AIDS discrimination. As their unlikely friendship develops their courage overcomes the prejudice and corruption of their powerful adversaries.", "text_for_embedding": "Philadelphia (1993). Genres: Drama. No one would take his case until one man was willing to take on the system. Two competing lawyers join forces to sue a prestigious law firm for AIDS discrimination. As their unlikely friendship develops their courage overcomes the prejudice and corruption of their powerful adversaries.. Tags: gay, aids, homophobia, jurors, court, partner, hiv, lawyer, dying, discrimination, judiciary"} +{"id": "1090", "title": "The Thirteenth Floor", "year": 1999, "duration_min": 100, "rating": 6.8, "genres": "Thriller, Science Fiction, Mystery", "genres_pipe": "|Thriller|Science Fiction|Mystery|", "keywords": "artificial intelligence, simulation, computer program, virtual reality, dystopia, murder, los angeles", "tags_pipe": "|artificial intelligence|simulation|computer program|virtual reality|dystopia|murder|los angeles|", "overview": "Computer scientist Hannon Fuller has discovered something extremely important. He's about to tell the discovery to his colleague, Douglas Hall, but knowing someone is after him, the old man leaves a letter in his computer generated parallel world that's just like the 30's with seemingly real people with real emotions.", "text_for_embedding": "The Thirteenth Floor (1999). Genres: Thriller, Science Fiction, Mystery. Computer scientist Hannon Fuller has discovered something extremely important. He's about to tell the discovery to his colleague, Douglas Hall, but knowing someone is after him, the old man leaves a letter in his computer generated parallel world that's just like the 30's with seemingly real people with real emotions.. Tags: artificial intelligence, simulation, computer program, virtual reality, dystopia, murder, los angeles"} +{"id": "18475", "title": "The Cookout", "year": 2004, "duration_min": 97, "rating": 4.6, "genres": "Comedy, Drama", "genres_pipe": "|Comedy|Drama|", "keywords": "comedy", "tags_pipe": "|comedy|", "overview": "When Todd Anderson signs a $30 million deal with his hometown team, the New Jersey Nets, he knows that his life is set for a big change. To keep things real, he decides to throw a barbeque at his place -- just like the ones his family used to have. But when you have new and old friends, family, agents, and product reps in the same house, things are bound to get crazy.", "text_for_embedding": "The Cookout (2004). Genres: Comedy, Drama. When Todd Anderson signs a $30 million deal with his hometown team, the New Jersey Nets, he knows that his life is set for a big change. To keep things real, he decides to throw a barbeque at his place -- just like the ones his family used to have. But when you have new and old friends, family, agents, and product reps in the same house, things are bound to get crazy.. Tags: comedy"} +{"id": "40160", "title": "Meteor", "year": 1979, "duration_min": 107, "rating": 5.1, "genres": "Action, Science Fiction, Thriller", "genres_pipe": "|Action|Science Fiction|Thriller|", "keywords": "meteor, disaster, disaster film, disaster movie", "tags_pipe": "|meteor|disaster|disaster film|disaster movie|", "overview": "After a collision with a comet, a nearly 8km wide piece of the asteroid \"Orpheus\" is heading towards Earth. If it will hit it will cause a incredible catastrophe which will probably extinguish mankind. To stop the meteor NASA wants to use the illegal nuclear weapon satellite \"Hercules\" but discovers soon that it doesn't have enough fire power. Their only chance to save the world is to join forces with the USSR who have also launched such an illegal satellite. But will both governments agree?", "text_for_embedding": "Meteor (1979). Genres: Action, Science Fiction, Thriller. After a collision with a comet, a nearly 8km wide piece of the asteroid \"Orpheus\" is heading towards Earth. If it will hit it will cause a incredible catastrophe which will probably extinguish mankind. To stop the meteor NASA wants to use the illegal nuclear weapon satellite \"Hercules\" but discovers soon that it doesn't have enough fire power. Their only chance to save the world is to join forces with the USSR who have also launched such an illegal satellite. But will both governments agree?. Tags: meteor, disaster, disaster film, disaster movie"} +{"id": "18074", "title": "Duets", "year": 2000, "duration_min": 112, "rating": 5.5, "genres": "Comedy, Drama, Music", "genres_pipe": "|Comedy|Drama|Music|", "keywords": "musical", "tags_pipe": "|musical|", "overview": "Duets is a road-trip comedy which revolves around the little known world of karaoke and the whimsical characters who inhabit it. All roads lead to Omaha, site of a national karaoke competition where this motley group of singers and stars come together for a blow-out sing-off.", "text_for_embedding": "Duets (2000). Genres: Comedy, Drama, Music. Duets is a road-trip comedy which revolves around the little known world of karaoke and the whimsical characters who inhabit it. All roads lead to Omaha, site of a national karaoke competition where this motley group of singers and stars come together for a blow-out sing-off.. Tags: musical"} +{"id": "9689", "title": "Hollywood Ending", "year": 2002, "duration_min": 112, "rating": 6.4, "genres": "Comedy, Drama", "genres_pipe": "|Comedy|Drama|", "keywords": "blindness and impaired vision, creative crisis, film director", "tags_pipe": "|blindness and impaired vision|creative crisis|film director|", "overview": "Woody Allen stars as Val Waxman, a two-time Oscar winner turned washed-up, neurotic director in desperate need of a comeback. When it comes, Waxman finds himself backed into a corner: Work for his ex-wife Ellie or forfeit his last shot. Is Val blinded by love when he opts for the reconnect? Is love blind when it comes to Ellie's staunch support? Literally and figuratively, the proof is the picture.", "text_for_embedding": "Hollywood Ending (2002). Genres: Comedy, Drama. Woody Allen stars as Val Waxman, a two-time Oscar winner turned washed-up, neurotic director in desperate need of a comeback. When it comes, Waxman finds himself backed into a corner: Work for his ex-wife Ellie or forfeit his last shot. Is Val blinded by love when he opts for the reconnect? Is love blind when it comes to Ellie's staunch support? Literally and figuratively, the proof is the picture.. Tags: blindness and impaired vision, creative crisis, film director"} +{"id": "9781", "title": "Detroit Rock City", "year": 1999, "duration_min": 95, "rating": 6.7, "genres": "Comedy, Music", "genres_pipe": "|Comedy|Music|", "keywords": "parents kids relationship, kiss, independent film, youth, drug, detroit", "tags_pipe": "|parents kids relationship|kiss|independent film|youth|drug|detroit|", "overview": "In 1978, a Kiss concert was an epoch-making event. For the three teen fans in Detroit Rock City getting tickets to the sold-out show becomes the focal point of their existence. They'll do anything for tickets -- compete in a strip club's amateur-night contest, take on religious protesters, even rob a convenience store!", "text_for_embedding": "Detroit Rock City (1999). Genres: Comedy, Music. In 1978, a Kiss concert was an epoch-making event. For the three teen fans in Detroit Rock City getting tickets to the sold-out show becomes the focal point of their existence. They'll do anything for tickets -- compete in a strip club's amateur-night contest, take on religious protesters, even rob a convenience store!. Tags: parents kids relationship, kiss, independent film, youth, drug, detroit"} +{"id": "8009", "title": "Highlander", "year": 1986, "duration_min": 116, "rating": 6.8, "genres": "Adventure, Action, Fantasy", "genres_pipe": "|Adventure|Action|Fantasy|", "keywords": "new york, scotland, swordplay, sword, cut-off head, immortality", "tags_pipe": "|new york|scotland|swordplay|sword|cut-off head|immortality|", "overview": "He fought his first battle on the Scottish Highlands in 1536. He will fight his greatest battle on the streets of New York City in 1986. His name is Connor MacLeod. He is immortal.", "text_for_embedding": "Highlander (1986). Genres: Adventure, Action, Fantasy. He fought his first battle on the Scottish Highlands in 1536. He will fight his greatest battle on the streets of New York City in 1986. His name is Connor MacLeod. He is immortal.. Tags: new york, scotland, swordplay, sword, cut-off head, immortality"} +{"id": "3877", "title": "Things We Lost in the Fire", "year": 2007, "duration_min": 113, "rating": 6.7, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "sadness, loss of father, junkie, luxury, heroin, beauty, charity, funeral, widow, loss of husband, ersatz, best friend, woman director", "tags_pipe": "|sadness|loss of father|junkie|luxury|heroin|beauty|charity|funeral|widow|loss of husband|ersatz|best friend|woman director|", "overview": "A recent widow invites her husband's troubled best friend to live with her and her two children. As he gradually turns his life around, he helps the family cope and confront their loss.", "text_for_embedding": "Things We Lost in the Fire (2007). Genres: Drama. A recent widow invites her husband's troubled best friend to live with her and her two children. As he gradually turns his life around, he helps the family cope and confront their loss.. Tags: sadness, loss of father, junkie, luxury, heroin, beauty, charity, funeral, widow, loss of husband, ersatz, best friend, woman director"} +{"id": "8854", "title": "Steel", "year": 1997, "duration_min": 97, "rating": 4.3, "genres": "Science Fiction, Action, Adventure", "genres_pipe": "|Science Fiction|Action|Adventure|", "keywords": "dc comics, los angeles, soldier, military", "tags_pipe": "|dc comics|los angeles|soldier|military|", "overview": "Justice. Safe streets. Payback. Metallurgist John Henry Irons (O'Neal) vows to claim them all when a renegade military reject (Judd Nelson) puts new superweapons in dangerous hands. Helped by an electronics wiz (Annabeth Gish) and an imaginative scrap metal worker (Richard Roundtree), Irons becomes Steel. Wearing body armor, wielding a fearsome electrohammer and riding a gadget-packed motorcycle, he's ready to wage war...if he can fix the untimely glitches in his untested gear. \"You all be cool now,\" the good-guy hero tells two crime victims he rescues. There'll be a lot of thrillin' before Steel himself can start chillin.'", "text_for_embedding": "Steel (1997). Genres: Science Fiction, Action, Adventure. Justice. Safe streets. Payback. Metallurgist John Henry Irons (O'Neal) vows to claim them all when a renegade military reject (Judd Nelson) puts new superweapons in dangerous hands. Helped by an electronics wiz (Annabeth Gish) and an imaginative scrap metal worker (Richard Roundtree), Irons becomes Steel. Wearing body armor, wielding a fearsome electrohammer and riding a gadget-packed motorcycle, he's ready to wage war...if he can fix the untimely glitches in his untested gear. \"You all be cool now,\" the good-guy hero tells two crime victims he rescues. There'll be a lot of thrillin' before Steel himself can start chillin.'. Tags: dc comics, los angeles, soldier, military"} +{"id": "152599", "title": "The Immigrant", "year": 2013, "duration_min": 117, "rating": 6.2, "genres": "Drama, Romance", "genres_pipe": "|Drama|Romance|", "keywords": "new york, corruption, sister sister relationship, magic, immigrant, nudity, nightmare, ship, quarantine, love, murder, money, escape, doctor, prostitution", "tags_pipe": "|new york|corruption|sister sister relationship|magic|immigrant|nudity|nightmare|ship|quarantine|love|murder|money|escape|doctor|prostitution|", "overview": "An innocent immigrant woman is tricked into a life of burlesque and vaudeville until a dazzling magician tries to save her and reunite her with her sister who is being held in the confines of Ellis Island.", "text_for_embedding": "The Immigrant (2013). Genres: Drama, Romance. An innocent immigrant woman is tricked into a life of burlesque and vaudeville until a dazzling magician tries to save her and reunite her with her sister who is being held in the confines of Ellis Island.. Tags: new york, corruption, sister sister relationship, magic, immigrant, nudity, nightmare, ship, quarantine, love, murder, money, escape, doctor, prostitution"} +{"id": "18840", "title": "The White Countess", "year": 2005, "duration_min": 135, "rating": 6.9, "genres": "Drama, History, Family, Romance", "genres_pipe": "|Drama|History|Family|Romance|", "keywords": "", "tags_pipe": "", "overview": "The last movie from the team of Ismail Merchant, James Ivory, and Kazuo Ishiguro. Set in 1930s Shanghai, \"The White Countess\" is both Sofia (Natasha Richardson), a fallen member of the Russian aristocracy, and a nightclub created by a blind American diplomat named Jackson (Ralph Fiennes), who asks Sofia to be the centerpiece of the world he wants to create.", "text_for_embedding": "The White Countess (2005). Genres: Drama, History, Family, Romance. The last movie from the team of Ismail Merchant, James Ivory, and Kazuo Ishiguro. Set in 1930s Shanghai, \"The White Countess\" is both Sofia (Natasha Richardson), a fallen member of the Russian aristocracy, and a nightclub created by a blind American diplomat named Jackson (Ralph Fiennes), who asks Sofia to be the centerpiece of the world he wants to create.. Tags: "} +{"id": "68727", "title": "Trance", "year": 2013, "duration_min": 101, "rating": 6.5, "genres": "Thriller, Crime, Drama, Mystery", "genres_pipe": "|Thriller|Crime|Drama|Mystery|", "keywords": "amnesia, art thief, hypnotism, heist movie, duringcreditsstinger", "tags_pipe": "|amnesia|art thief|hypnotism|heist movie|duringcreditsstinger|", "overview": "A fine art auctioneer mixed up with a gang, joins forces with a hypnotherapist to recover a lost painting. As boundaries between desire, reality and hypnotic suggestion begin to blur, the stakes rise faster than anyone could have anticipated.", "text_for_embedding": "Trance (2013). Genres: Thriller, Crime, Drama, Mystery. A fine art auctioneer mixed up with a gang, joins forces with a hypnotherapist to recover a lost painting. As boundaries between desire, reality and hypnotic suggestion begin to blur, the stakes rise faster than anyone could have anticipated.. Tags: amnesia, art thief, hypnotism, heist movie, duringcreditsstinger"} +{"id": "12657", "title": "Soul Plane", "year": 2004, "duration_min": 86, "rating": 4.7, "genres": "Romance, Comedy", "genres_pipe": "|Romance|Comedy|", "keywords": "black people, hip-hop, nightclub, airplane, chaos, champagne", "tags_pipe": "|black people|hip-hop|nightclub|airplane|chaos|champagne|", "overview": "Following a ridiculously awful flight that leads to his pet's death, Nashawn Wade files a lawsuit against the airline, and wins a multimillion-dollar settlement. Determined to create a better flying experience, Nashawn starts his own airline, one that caters to an African-American clientele. Going into business with a tricked-out plane piloted by the smooth Capt. Mack, the airline hits a snag when it has to deal with the family of Elvis Hunkee.", "text_for_embedding": "Soul Plane (2004). Genres: Romance, Comedy. Following a ridiculously awful flight that leads to his pet's death, Nashawn Wade files a lawsuit against the airline, and wins a multimillion-dollar settlement. Determined to create a better flying experience, Nashawn starts his own airline, one that caters to an African-American clientele. Going into business with a tricked-out plane piloted by the smooth Capt. Mack, the airline hits a snag when it has to deal with the family of Elvis Hunkee.. Tags: black people, hip-hop, nightclub, airplane, chaos, champagne"} +{"id": "8265", "title": "Welcome to the Sticks", "year": 2008, "duration_min": 106, "rating": 6.8, "genres": "Comedy", "genres_pipe": "|Comedy|", "keywords": "clock tower, jealousy, cheating, provence, lie, southern france, postman, flush, mama's boy, bias, local speciality, job transfer, northern france, disabled, dialect", "tags_pipe": "|clock tower|jealousy|cheating|provence|lie|southern france|postman|flush|mama's boy|bias|local speciality|job transfer|northern france|disabled|dialect|", "overview": "Although living a comfortable life in Salon-de-Provence, a charming town in the South of France, Julie has been feeling depressed for a while. To please her, Philippe Abrams, a post office administrator, her husband, tries to obtain a transfer to a seaside town, on the French Riviera, at any cost. The trouble is that he is caught red-handed while trying to scam an inspector. Philippe is immediately banished to the distant unheard of town of Bergues, in the Far North of France...", "text_for_embedding": "Welcome to the Sticks (2008). Genres: Comedy. Although living a comfortable life in Salon-de-Provence, a charming town in the South of France, Julie has been feeling depressed for a while. To please her, Philippe Abrams, a post office administrator, her husband, tries to obtain a transfer to a seaside town, on the French Riviera, at any cost. The trouble is that he is caught red-handed while trying to scam an inspector. Philippe is immediately banished to the distant unheard of town of Bergues, in the Far North of France.... Tags: clock tower, jealousy, cheating, provence, lie, southern france, postman, flush, mama's boy, bias, local speciality, job transfer, northern france, disabled, dialect"} +{"id": "12410", "title": "Good", "year": 2008, "duration_min": 96, "rating": 6.3, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "germany, nazis, nazism, euthanasia", "tags_pipe": "|germany|nazis|nazism|euthanasia|", "overview": "The rise of national socialism in Germany should not be regarded as a conspiracy of madmen. Millions of \"good\" people found themselves in a society spiralling into terrible chaos. A film about then, which illuminates the terrors of now.", "text_for_embedding": "Good (2008). Genres: Drama. The rise of national socialism in Germany should not be regarded as a conspiracy of madmen. Millions of \"good\" people found themselves in a society spiralling into terrible chaos. A film about then, which illuminates the terrors of now.. Tags: germany, nazis, nazism, euthanasia"} +{"id": "34647", "title": "Enter the Void", "year": 2009, "duration_min": 161, "rating": 7.2, "genres": "Fantasy, Drama", "genres_pipe": "|Fantasy|Drama|", "keywords": "prostitute, hallucination, strip club, afterlife, surrealism, drug trip, unsimulated sex, incest, drug deal, psychedelic, dmt, new french extremism, drugs", "tags_pipe": "|prostitute|hallucination|strip club|afterlife|surrealism|drug trip|unsimulated sex|incest|drug deal|psychedelic|dmt|new french extremism|drugs|", "overview": "This psychedelic tour of life after death is seen entirely from the point of view of Oscar (Nathaniel Brown), a young American drug dealer and addict living in Tokyo with his prostitute sister, Linda (Paz de la Huerta). When Oscar is killed by police during a bust gone bad, his spirit journeys from the past -- where he sees his parents before their deaths -- to the present -- where he witnesses his own autopsy -- and then to the future, where he looks out for his sister from beyond the grave.", "text_for_embedding": "Enter the Void (2009). Genres: Fantasy, Drama. This psychedelic tour of life after death is seen entirely from the point of view of Oscar (Nathaniel Brown), a young American drug dealer and addict living in Tokyo with his prostitute sister, Linda (Paz de la Huerta). When Oscar is killed by police during a bust gone bad, his spirit journeys from the past -- where he sees his parents before their deaths -- to the present -- where he witnesses his own autopsy -- and then to the future, where he looks out for his sister from beyond the grave.. Tags: prostitute, hallucination, strip club, afterlife, surrealism, drug trip, unsimulated sex, incest, drug deal, psychedelic, dmt, new french extremism, drugs"} +{"id": "73935", "title": "Vamps", "year": 2012, "duration_min": 93, "rating": 4.8, "genres": "Comedy, Romance, Horror", "genres_pipe": "|Comedy|Romance|Horror|", "keywords": "vampire, love, woman director", "tags_pipe": "|vampire|love|woman director|", "overview": "The modern-day story focuses on two beautiful young vampires who are living the good nightlife in New York until love enters the picture and each has to make a choice that will jeopardize their immortality.", "text_for_embedding": "Vamps (2012). Genres: Comedy, Romance, Horror. The modern-day story focuses on two beautiful young vampires who are living the good nightlife in New York until love enters the picture and each has to make a choice that will jeopardize their immortality.. Tags: vampire, love, woman director"} +{"id": "28178", "title": "Hachi: A Dog's Tale", "year": 2009, "duration_min": 93, "rating": 7.7, "genres": "Drama, Family", "genres_pipe": "|Drama|Family|", "keywords": "japanese, loyalty, human animal relationship, friendship, friends, family relationships, dog, newspaper reporter, family dog, waiting", "tags_pipe": "|japanese|loyalty|human animal relationship|friendship|friends|family relationships|dog|newspaper reporter|family dog|waiting|", "overview": "A drama based on the true story of a college professor's bond with the abandoned dog he takes into his home.", "text_for_embedding": "Hachi: A Dog's Tale (2009). Genres: Drama, Family. A drama based on the true story of a college professor's bond with the abandoned dog he takes into his home.. Tags: japanese, loyalty, human animal relationship, friendship, friends, family relationships, dog, newspaper reporter, family dog, waiting"} +{"id": "185567", "title": "Zulu", "year": 2013, "duration_min": 110, "rating": 6.7, "genres": "Crime, Drama, Thriller", "genres_pipe": "|Crime|Drama|Thriller|", "keywords": "", "tags_pipe": "", "overview": "As a child, Ali Neuman narrowly escaped being murdered by Inkhata, a militant political party at war with Nelson Mandela's African National Congress. Only he and his mother survived the carnage of those years. But as with many survivors, the psychological scars remain.", "text_for_embedding": "Zulu (2013). Genres: Crime, Drama, Thriller. As a child, Ali Neuman narrowly escaped being murdered by Inkhata, a militant political party at war with Nelson Mandela's African National Congress. Only he and his mother survived the carnage of those years. But as with many survivors, the psychological scars remain.. Tags: "} +{"id": "264656", "title": "The Homesman", "year": 2014, "duration_min": 122, "rating": 6.4, "genres": "Western, Drama", "genres_pipe": "|Western|Drama|", "keywords": "dancing, based on novel, revenge, native american, violence, wild west, driven insane, abusive marriage, refused services, prison wagon, lost in the desert, buffalo skin", "tags_pipe": "|dancing|based on novel|revenge|native american|violence|wild west|driven insane|abusive marriage|refused services|prison wagon|lost in the desert|buffalo skin|", "overview": "When three women living on the edge of the American frontier are driven mad by harsh pioneer life, the task of saving them falls to the pious, independent-minded Mary Bee Cuddy. Transporting the women by covered wagon to Iowa, she soon realizes just how daunting the journey will be, and employs a low-life drifter, George Briggs, to join her. The unlikely pair and the three women head east, where a waiting minister and his wife have offered to take the women in. But the group first must traverse the harsh Nebraska Territories marked by stark beauty, psychological peril and constant threat.", "text_for_embedding": "The Homesman (2014). Genres: Western, Drama. When three women living on the edge of the American frontier are driven mad by harsh pioneer life, the task of saving them falls to the pious, independent-minded Mary Bee Cuddy. Transporting the women by covered wagon to Iowa, she soon realizes just how daunting the journey will be, and employs a low-life drifter, George Briggs, to join her. The unlikely pair and the three women head east, where a waiting minister and his wife have offered to take the women in. But the group first must traverse the harsh Nebraska Territories marked by stark beauty, psychological peril and constant threat.. Tags: dancing, based on novel, revenge, native american, violence, wild west, driven insane, abusive marriage, refused services, prison wagon, lost in the desert, buffalo skin"} +{"id": "35696", "title": "Juwanna Mann", "year": 2002, "duration_min": 91, "rating": 4.2, "genres": "Comedy, Drama", "genres_pipe": "|Comedy|Drama|", "keywords": "sport, basketball, beautiful woman, hit in crotch, cross dressing, the star spangled banner", "tags_pipe": "|sport|basketball|beautiful woman|hit in crotch|cross dressing|the star spangled banner|", "overview": "A basketball star is booted out of the NBA when his on-court antics go too far, so he poses as a woman and joins the WUBA.", "text_for_embedding": "Juwanna Mann (2002). Genres: Comedy, Drama. A basketball star is booted out of the NBA when his on-court antics go too far, so he poses as a woman and joins the WUBA.. Tags: sport, basketball, beautiful woman, hit in crotch, cross dressing, the star spangled banner"} +{"id": "16351", "title": "Ararat", "year": 2002, "duration_min": 115, "rating": 5.7, "genres": "War, Drama", "genres_pipe": "|War|Drama|", "keywords": "destruction of a civilization, turkey", "tags_pipe": "|destruction of a civilization|turkey|", "overview": "A variety of characters, some close relatives, others distant strangers, are each affected by the making of a film about the Armenian Genocide of 1915.", "text_for_embedding": "Ararat (2002). Genres: War, Drama. A variety of characters, some close relatives, others distant strangers, are each affected by the making of a film about the Armenian Genocide of 1915.. Tags: destruction of a civilization, turkey"} +{"id": "38717", "title": "Madison", "year": 2001, "duration_min": 99, "rating": 5.3, "genres": "Action, Adventure, Drama", "genres_pipe": "|Action|Adventure|Drama|", "keywords": "sport, independent film", "tags_pipe": "|sport|independent film|", "overview": "In 1971, air-conditioner repairman and boat enthusiast Jim McCormick entertains his desire to 'go down' as a legend in the record books when the Gold Cup hydroplane boat race improbably comes to his small town of Madison, Indiana. Immediately, Jim seizes his opportunity to enter the contest. With a motley crew of fellow mechanics and friends at his side, Jim fixes up his old boat and brings hope to the blighted industrial city. Written by Sujit R. Varma", "text_for_embedding": "Madison (2001). Genres: Action, Adventure, Drama. In 1971, air-conditioner repairman and boat enthusiast Jim McCormick entertains his desire to 'go down' as a legend in the record books when the Gold Cup hydroplane boat race improbably comes to his small town of Madison, Indiana. Immediately, Jim seizes his opportunity to enter the contest. With a motley crew of fellow mechanics and friends at his side, Jim fixes up his old boat and brings hope to the blighted industrial city. Written by Sujit R. Varma. Tags: sport, independent film"} +{"id": "18777", "title": "Slow Burn", "year": 2005, "duration_min": 93, "rating": 5.5, "genres": "Mystery, Crime, Drama, Thriller", "genres_pipe": "|Mystery|Crime|Drama|Thriller|", "keywords": "", "tags_pipe": "", "overview": "A district attorney (Ray Liotta) is involved in a 24-hour showdown with a gang leader (LL Cool J) and is, at the same time, being manipulated by an attractive assistant district attorney (Jolene Blalock) and a cryptic stranger.", "text_for_embedding": "Slow Burn (2005). Genres: Mystery, Crime, Drama, Thriller. A district attorney (Ray Liotta) is involved in a 24-hour showdown with a gang leader (LL Cool J) and is, at the same time, being manipulated by an attractive assistant district attorney (Jolene Blalock) and a cryptic stranger.. Tags: "} +{"id": "2110", "title": "Wasabi", "year": 2001, "duration_min": 94, "rating": 6.2, "genres": "Drama, Action, Comedy", "genres_pipe": "|Drama|Action|Comedy|", "keywords": "handcuffs, hitman, love letter, police operation, japanese mafia, golf club, brutal cop", "tags_pipe": "|handcuffs|hitman|love letter|police operation|japanese mafia|golf club|brutal cop|", "overview": "Hubert is a French policeman with very sharp methods. After being forced to take 2 months off by his boss, who doesn't share his view on working methods, he goes back to Japan, where he used to work 19 years ago, to settle the probate of his girlfriend who left him shortly after marriage without a trace.", "text_for_embedding": "Wasabi (2001). Genres: Drama, Action, Comedy. Hubert is a French policeman with very sharp methods. After being forced to take 2 months off by his boss, who doesn't share his view on working methods, he goes back to Japan, where he used to work 19 years ago, to settle the probate of his girlfriend who left him shortly after marriage without a trace.. Tags: handcuffs, hitman, love letter, police operation, japanese mafia, golf club, brutal cop"} +{"id": "9035", "title": "Slither", "year": 2006, "duration_min": 95, "rating": 6.3, "genres": "Comedy, Horror, Science Fiction", "genres_pipe": "|Comedy|Horror|Science Fiction|", "keywords": "small town, mutant, meteor, meat, alien, violence, parasite, slug, bodily dismemberment, aftercreditsstinger, duringcreditsstinger, body horror", "tags_pipe": "|small town|mutant|meteor|meat|alien|violence|parasite|slug|bodily dismemberment|aftercreditsstinger|duringcreditsstinger|body horror|", "overview": "A small town is taken over by an alien plague, turning residents into zombies and all forms of mutant monsters.", "text_for_embedding": "Slither (2006). Genres: Comedy, Horror, Science Fiction. A small town is taken over by an alien plague, turning residents into zombies and all forms of mutant monsters.. Tags: small town, mutant, meteor, meat, alien, violence, parasite, slug, bodily dismemberment, aftercreditsstinger, duringcreditsstinger, body horror"} +{"id": "90", "title": "Beverly Hills Cop", "year": 1984, "duration_min": 105, "rating": 6.8, "genres": "Action, Comedy, Crime", "genres_pipe": "|Action|Comedy|Crime|", "keywords": "california, showdown, undercover, strip club, investigation, weapon, police, smuggling, swimming pool, gunfight, mansion, los angeles, foot chase, art gallery, car chase", "tags_pipe": "|california|showdown|undercover|strip club|investigation|weapon|police|smuggling|swimming pool|gunfight|mansion|los angeles|foot chase|art gallery|car chase|", "overview": "Tough-talking Detroit cop Axel Foley heads to the rarified world of Beverly Hills in his beat-up Chevy Nova to investigate a friend's murder. But soon, he realizes he's stumbled onto something much more complicated. Bungling rookie detective Billy Rosewood joins the fish-out-of-water Axel and shows him the West Los Angeles ropes.", "text_for_embedding": "Beverly Hills Cop (1984). Genres: Action, Comedy, Crime. Tough-talking Detroit cop Axel Foley heads to the rarified world of Beverly Hills in his beat-up Chevy Nova to investigate a friend's murder. But soon, he realizes he's stumbled onto something much more complicated. Bungling rookie detective Billy Rosewood joins the fish-out-of-water Axel and shows him the West Los Angeles ropes.. Tags: california, showdown, undercover, strip club, investigation, weapon, police, smuggling, swimming pool, gunfight, mansion, los angeles, foot chase, art gallery, car chase"} +{"id": "771", "title": "Home Alone", "year": 1990, "duration_min": 103, "rating": 7.1, "genres": "Comedy, Family", "genres_pipe": "|Comedy|Family|", "keywords": "holiday, burglar, home invasion, mischief, booby trap, home alone, suburban chicago, mischievous child, christmas, child", "tags_pipe": "|holiday|burglar|home invasion|mischief|booby trap|home alone|suburban chicago|mischievous child|christmas|child|", "overview": "Eight-year-old Kevin McCallister makes the most of the situation after his family unwittingly leaves him behind when they go on Christmas vacation. But when a pair of bungling burglars set their sights on Kevin's house, the plucky kid stands ready to defend his territory. By planting booby traps galore, adorably mischievous Kevin stands his ground as his frantic mother attempts to race home before.", "text_for_embedding": "Home Alone (1990). Genres: Comedy, Family. Eight-year-old Kevin McCallister makes the most of the situation after his family unwittingly leaves him behind when they go on Christmas vacation. But when a pair of bungling burglars set their sights on Kevin's house, the plucky kid stands ready to defend his territory. By planting booby traps galore, adorably mischievous Kevin stands his ground as his frantic mother attempts to race home before.. Tags: holiday, burglar, home invasion, mischief, booby trap, home alone, suburban chicago, mischievous child, christmas, child"} +{"id": "12154", "title": "Three Men and a Baby", "year": 1987, "duration_min": 102, "rating": 5.8, "genres": "Family, Comedy, Drama", "genres_pipe": "|Family|Comedy|Drama|", "keywords": "baby, roommate, bachelor, party, windeln, solteros", "tags_pipe": "|baby|roommate|bachelor|party|windeln|solteros|", "overview": "Three bachelors find themselves forced to take care of a baby left by one of the guy's girlfriends.", "text_for_embedding": "Three Men and a Baby (1987). Genres: Family, Comedy, Drama. Three bachelors find themselves forced to take care of a baby left by one of the guy's girlfriends.. Tags: baby, roommate, bachelor, party, windeln, solteros"} +{"id": "9576", "title": "Tootsie", "year": 1982, "duration_min": 116, "rating": 6.9, "genres": "Comedy, Romance", "genres_pipe": "|Comedy|Romance|", "keywords": "infidelity, love, friends, cross dressing, reputation, unemployed actor, serenade, hit in the crotch, apology, live television, actress, actor", "tags_pipe": "|infidelity|love|friends|cross dressing|reputation|unemployed actor|serenade|hit in the crotch|apology|live television|actress|actor|", "overview": "Michael Dorsey is an unemployed actor with an impossible reputation. In order to find work and fund his friend's play he dresses as a woman, Dorothy Michaels, and lands the part in a daytime drama. Dorsey loses himself in this woman role and essentially becomes Dorothy Michaels, captivating women all around the city and inspiring them to break free from the control of men and become more like Dorsey's initial identity. This newfound role, however, lands Dorsey in a hot spot between a female friend/'lover,' a female co-star he falls in love with, that co-star's father who falls in love with him, and a male co-star who yearns for his affection.", "text_for_embedding": "Tootsie (1982). Genres: Comedy, Romance. Michael Dorsey is an unemployed actor with an impossible reputation. In order to find work and fund his friend's play he dresses as a woman, Dorothy Michaels, and lands the part in a daytime drama. Dorsey loses himself in this woman role and essentially becomes Dorothy Michaels, captivating women all around the city and inspiring them to break free from the control of men and become more like Dorsey's initial identity. This newfound role, however, lands Dorsey in a hot spot between a female friend/'lover,' a female co-star he falls in love with, that co-star's father who falls in love with him, and a male co-star who yearns for his affection.. Tags: infidelity, love, friends, cross dressing, reputation, unemployed actor, serenade, hit in the crotch, apology, live television, actress, actor"} +{"id": "744", "title": "Top Gun", "year": 1986, "duration_min": 110, "rating": 6.7, "genres": "Action, Romance, War", "genres_pipe": "|Action|Romance|War|", "keywords": "lovesickness, loss of lover, fighter pilot, self-discovery, pilot, ejection seat, dying and death, officer, training camp, air force, airplane, dangerous, battle assignment, u.s. navy, hostility", "tags_pipe": "|lovesickness|loss of lover|fighter pilot|self-discovery|pilot|ejection seat|dying and death|officer|training camp|air force|airplane|dangerous|battle assignment|u.s. navy|hostility|", "overview": "For Lieutenant Pete 'Maverick' Mitchell and his friend and Co-Pilot Nick 'Goose' Bradshaw being accepted into an elite training school for fighter pilots is a dream come true. A tragedy, as well as personal demons, threaten Pete's dreams of becoming an Ace pilot.", "text_for_embedding": "Top Gun (1986). Genres: Action, Romance, War. For Lieutenant Pete 'Maverick' Mitchell and his friend and Co-Pilot Nick 'Goose' Bradshaw being accepted into an elite training school for fighter pilots is a dream come true. A tragedy, as well as personal demons, threaten Pete's dreams of becoming an Ace pilot.. Tags: lovesickness, loss of lover, fighter pilot, self-discovery, pilot, ejection seat, dying and death, officer, training camp, air force, airplane, dangerous, battle assignment, u.s. navy, hostility"} +{"id": "146", "title": "Crouching Tiger, Hidden Dragon", "year": 2000, "duration_min": 120, "rating": 7.2, "genres": "Adventure, Drama, Action, Romance", "genres_pipe": "|Adventure|Drama|Action|Romance|", "keywords": "flying, martial arts, taskmaster, comb, tiger, desert thief, theft, female martial artist", "tags_pipe": "|flying|martial arts|taskmaster|comb|tiger|desert thief|theft|female martial artist|", "overview": "Two warriors in pursuit of a stolen sword and a notorious fugitive are led to an impetuous, physically-skilled, teenage nobleman's daughter, who is at a crossroads in her life.", "text_for_embedding": "Crouching Tiger, Hidden Dragon (2000). Genres: Adventure, Drama, Action, Romance. Two warriors in pursuit of a stolen sword and a notorious fugitive are led to an impetuous, physically-skilled, teenage nobleman's daughter, who is at a crossroads in her life.. Tags: flying, martial arts, taskmaster, comb, tiger, desert thief, theft, female martial artist"} +{"id": "14", "title": "American Beauty", "year": 1999, "duration_min": 122, "rating": 7.9, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "male nudity, female nudity, adultery, midlife crisis, coming out, first time, camcorder, virgin, nudity, film maker, estate agent, satire, loneliness, dark comedy, suburbia", "tags_pipe": "|male nudity|female nudity|adultery|midlife crisis|coming out|first time|camcorder|virgin|nudity|film maker|estate agent|satire|loneliness|dark comedy|suburbia|", "overview": "Lester Burnham, a depressed suburban father in a mid-life crisis, decides to turn his hectic life around after developing an infatuation with his daughter's attractive friend.", "text_for_embedding": "American Beauty (1999). Genres: Drama. Lester Burnham, a depressed suburban father in a mid-life crisis, decides to turn his hectic life around after developing an infatuation with his daughter's attractive friend.. Tags: male nudity, female nudity, adultery, midlife crisis, coming out, first time, camcorder, virgin, nudity, film maker, estate agent, satire, loneliness, dark comedy, suburbia"} +{"id": "45269", "title": "The King's Speech", "year": 2010, "duration_min": 118, "rating": 7.6, "genres": "Drama, History", "genres_pipe": "|Drama|History|", "keywords": "great britain, radio, monarchy, radio transmission, royal family, speech, marriage, royalty, death of father", "tags_pipe": "|great britain|radio|monarchy|radio transmission|royal family|speech|marriage|royalty|death of father|", "overview": "The King's Speech tells the story of the man who became King George VI, the father of Queen Elizabeth II. After his brother abdicates, George ('Bertie') reluctantly assumes the throne. Plagued by a dreaded stutter and considered unfit to be king, Bertie engages the help of an unorthodox speech therapist named Lionel Logue. Through a set of unexpected techniques, and as a result of an unlikely friendship, Bertie is able to find his voice and boldly lead the country into war.", "text_for_embedding": "The King's Speech (2010). Genres: Drama, History. The King's Speech tells the story of the man who became King George VI, the father of Queen Elizabeth II. After his brother abdicates, George ('Bertie') reluctantly assumes the throne. Plagued by a dreaded stutter and considered unfit to be king, Bertie engages the help of an unorthodox speech therapist named Lionel Logue. Through a set of unexpected techniques, and as a result of an unlikely friendship, Bertie is able to find his voice and boldly lead the country into war.. Tags: great britain, radio, monarchy, radio transmission, royal family, speech, marriage, royalty, death of father"} +{"id": "9493", "title": "Twins", "year": 1988, "duration_min": 107, "rating": 5.7, "genres": "Comedy", "genres_pipe": "|Comedy|", "keywords": "perfection, delivery, low intelligence, jet engine, twins separated at birth, artist colony, same habits, biological experiment, opposites, catholic orphanage", "tags_pipe": "|perfection|delivery|low intelligence|jet engine|twins separated at birth|artist colony|same habits|biological experiment|opposites|catholic orphanage|", "overview": "Julius and Vincent Benedict are the results of an experiment that would allow for the perfect child. Julius was planned and grows to athletic proportions. Vincent is an accident and is somewhat smaller in stature. Vincent is placed in an orphanage while Julius is taken to a south seas island and raised by philosophers. Vincent becomes the ultimate low life and is about to be killed by loan sharks.", "text_for_embedding": "Twins (1988). Genres: Comedy. Julius and Vincent Benedict are the results of an experiment that would allow for the perfect child. Julius was planned and grows to athletic proportions. Vincent is an accident and is somewhat smaller in stature. Vincent is placed in an orphanage while Julius is taken to a south seas island and raised by philosophers. Vincent becomes the ultimate low life and is about to be killed by loan sharks.. Tags: perfection, delivery, low intelligence, jet engine, twins separated at birth, artist colony, same habits, biological experiment, opposites, catholic orphanage"} +{"id": "22556", "title": "The Yellow Handkerchief", "year": 2008, "duration_min": 102, "rating": 6.4, "genres": "Drama, Romance", "genres_pipe": "|Drama|Romance|", "keywords": "independent film", "tags_pipe": "|independent film|", "overview": "Set in the present-day southern United States, The Yellow Handkerchief stars William Hurt as Brett Hanson, an ex-convict who embarks on a road trip. Hanson hitches a ride with two troubled teens, Martine (Kristen Stewart) and Gordy (Eddie Redmayne) traversing post-Hurricane Katrina Louisiana in an attempt to reach his ex-wife and long-lost love, May (Maria Bello). Along the way, the three reflect on their existence, struggle for acceptance, and find their way not only through Louisiana, but through life.", "text_for_embedding": "The Yellow Handkerchief (2008). Genres: Drama, Romance. Set in the present-day southern United States, The Yellow Handkerchief stars William Hurt as Brett Hanson, an ex-convict who embarks on a road trip. Hanson hitches a ride with two troubled teens, Martine (Kristen Stewart) and Gordy (Eddie Redmayne) traversing post-Hurricane Katrina Louisiana in an attempt to reach his ex-wife and long-lost love, May (Maria Bello). Along the way, the three reflect on their existence, struggle for acceptance, and find their way not only through Louisiana, but through life.. Tags: independent film"} +{"id": "873", "title": "The Color Purple", "year": 1985, "duration_min": 154, "rating": 7.7, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "prison, africa, southern usa, rape, black people, sister sister relationship, jazz, violent father, violent husband, empowerment, adoption, jazz musician, letter, incest", "tags_pipe": "|prison|africa|southern usa|rape|black people|sister sister relationship|jazz|violent father|violent husband|empowerment|adoption|jazz musician|letter|incest|", "overview": "An epic tale spanning forty years in the life of Celie (Whoopi Goldberg), an African-American woman living in the South who survives incredible abuse and bigotry. After Celie's abusive father marries her off to the equally debasing \"Mister\" Albert Johnson (Danny Glover), things go from bad to worse, leaving Celie to find companionship anywhere she can. She perseveres, holding on to her dream of one day being reunited with her sister in Africa. Based on the novel by Alice Walker.", "text_for_embedding": "The Color Purple (1985). Genres: Drama. An epic tale spanning forty years in the life of Celie (Whoopi Goldberg), an African-American woman living in the South who survives incredible abuse and bigotry. After Celie's abusive father marries her off to the equally debasing \"Mister\" Albert Johnson (Danny Glover), things go from bad to worse, leaving Celie to find companionship anywhere she can. She perseveres, holding on to her dream of one day being reunited with her sister in Africa. Based on the novel by Alice Walker.. Tags: prison, africa, southern usa, rape, black people, sister sister relationship, jazz, violent father, violent husband, empowerment, adoption, jazz musician, letter, incest"} +{"id": "33196", "title": "Tidal Wave", "year": 2009, "duration_min": 120, "rating": 6.5, "genres": "Action, Adventure, Drama, Thriller", "genres_pipe": "|Action|Adventure|Drama|Thriller|", "keywords": "helicopter, beach, loss of father, giant wave, tsunami, family relationships, korea, disaster, cigarette smoking, tears, single father, tearjerker, stuck in elevator, tidal wave, disaster film", "tags_pipe": "|helicopter|beach|loss of father|giant wave|tsunami|family relationships|korea|disaster|cigarette smoking|tears|single father|tearjerker|stuck in elevator|tidal wave|disaster film|", "overview": "Man-sik and Yeon-hee, are unsure as to whether they can overcome past wounds and continue being a couple. Dr. Kim, who cautions against a possible mega-tsunami at Haeundae, collapses in agony springing from an unexpected turn-up of his daughter and divorced wife. Hyoung-sik, after rescuing a woman from Seoul, rides out a ferocious storm to gladden her heart. A tsunami which destroys Haeundae symbolizes the establishment of a typical axis called provocation of conflicts, and later the inner spaces of the couples without anything left behind after all conflicts have ended", "text_for_embedding": "Tidal Wave (2009). Genres: Action, Adventure, Drama, Thriller. Man-sik and Yeon-hee, are unsure as to whether they can overcome past wounds and continue being a couple. Dr. Kim, who cautions against a possible mega-tsunami at Haeundae, collapses in agony springing from an unexpected turn-up of his daughter and divorced wife. Hyoung-sik, after rescuing a woman from Seoul, rides out a ferocious storm to gladden her heart. A tsunami which destroys Haeundae symbolizes the establishment of a typical axis called provocation of conflicts, and later the inner spaces of the couples without anything left behind after all conflicts have ended. Tags: helicopter, beach, loss of father, giant wave, tsunami, family relationships, korea, disaster, cigarette smoking, tears, single father, tearjerker, stuck in elevator, tidal wave, disaster film"} +{"id": "205596", "title": "The Imitation Game", "year": 2014, "duration_min": 113, "rating": 8.0, "genres": "History, Drama, Thriller, War", "genres_pipe": "|History|Drama|Thriller|War|", "keywords": "gay, england, world war ii, mathematician, biography, logician, cryptography", "tags_pipe": "|gay|england|world war ii|mathematician|biography|logician|cryptography|", "overview": "Based on the real life story of legendary cryptanalyst Alan Turing, the film portrays the nail-biting race against time by Turing and his brilliant team of code-breakers at Britain's top-secret Government Code and Cypher School at Bletchley Park, during the darkest days of World War II.", "text_for_embedding": "The Imitation Game (2014). Genres: History, Drama, Thriller, War. Based on the real life story of legendary cryptanalyst Alan Turing, the film portrays the nail-biting race against time by Turing and his brilliant team of code-breakers at Britain's top-secret Government Code and Cypher School at Bletchley Park, during the darkest days of World War II.. Tags: gay, england, world war ii, mathematician, biography, logician, cryptography"} +{"id": "10765", "title": "Private Benjamin", "year": 1980, "duration_min": 109, "rating": 6.0, "genres": "Comedy", "genres_pipe": "|Comedy|", "keywords": "paris, role of women", "tags_pipe": "|paris|role of women|", "overview": "A sheltered young high society woman joins the army on a whim and finds herself in a more difficult situation than she ever expected.", "text_for_embedding": "Private Benjamin (1980). Genres: Comedy. A sheltered young high society woman joins the army on a whim and finds herself in a more difficult situation than she ever expected.. Tags: paris, role of women"} +{"id": "16769", "title": "Coal Miner's Daughter", "year": 1980, "duration_min": 125, "rating": 7.2, "genres": "Drama, Music", "genres_pipe": "|Drama|Music|", "keywords": "country music, female friendship, biography, loretta lynn, washington state, still, grand ole opry, nashville tennessee, honkytonk, coal, coal mining, journey shown on map", "tags_pipe": "|country music|female friendship|biography|loretta lynn|washington state|still|grand ole opry|nashville tennessee|honkytonk|coal|coal mining|journey shown on map|", "overview": "Biography of Loretta Lynn, a country and western singer that came from poverty to fame.", "text_for_embedding": "Coal Miner's Daughter (1980). Genres: Drama, Music. Biography of Loretta Lynn, a country and western singer that came from poverty to fame.. Tags: country music, female friendship, biography, loretta lynn, washington state, still, grand ole opry, nashville tennessee, honkytonk, coal, coal mining, journey shown on map"} +{"id": "33217", "title": "Diary of a Wimpy Kid", "year": 2010, "duration_min": 92, "rating": 5.9, "genres": "Comedy, Family", "genres_pipe": "|Comedy|Family|", "keywords": "based on novel, coming of age, young boy, breaking the fourth wall, middle school, popularity, duringcreditsstinger, live action and animation, friendship drama, line drawing", "tags_pipe": "|based on novel|coming of age|young boy|breaking the fourth wall|middle school|popularity|duringcreditsstinger|live action and animation|friendship drama|line drawing|", "overview": "Greg Heffley is headed for big things, but first he has to survive the scariest, most humiliating experience of any kid’s life – middle school! That won’t be easy, considering he’s surrounded by hairy-freckled morons, wedgie-loving bullies and a moldy slice of cheese with nuclear cooties!", "text_for_embedding": "Diary of a Wimpy Kid (2010). Genres: Comedy, Family. Greg Heffley is headed for big things, but first he has to survive the scariest, most humiliating experience of any kid’s life – middle school! That won’t be easy, considering he’s surrounded by hairy-freckled morons, wedgie-loving bullies and a moldy slice of cheese with nuclear cooties!. Tags: based on novel, coming of age, young boy, breaking the fourth wall, middle school, popularity, duringcreditsstinger, live action and animation, friendship drama, line drawing"} +{"id": "132232", "title": "Mama", "year": 2013, "duration_min": 100, "rating": 6.0, "genres": "Horror", "genres_pipe": "|Horror|", "keywords": "supernatural horror", "tags_pipe": "|supernatural horror|", "overview": "Guillermo del Toro presents Mama, a supernatural thriller that tells the haunting tale of two little girls who disappeared into the woods the day that their parents were killed. When they are rescued years later and begin a new life, they find that someone or something still wants to come tuck them in at night.", "text_for_embedding": "Mama (2013). Genres: Horror. Guillermo del Toro presents Mama, a supernatural thriller that tells the haunting tale of two little girls who disappeared into the woods the day that their parents were killed. When they are rescued years later and begin a new life, they find that someone or something still wants to come tuck them in at night.. Tags: supernatural horror"} +{"id": "11153", "title": "National Lampoon's Vacation", "year": 1983, "duration_min": 98, "rating": 7.1, "genres": "Comedy, Adventure, Romance", "genres_pipe": "|Comedy|Adventure|Romance|", "keywords": "usa, relatives, family vacation, family holiday, duringcreditsstinger", "tags_pipe": "|usa|relatives|family vacation|family holiday|duringcreditsstinger|", "overview": "Clark Griswold is on a quest to take his family on a quest to Walley World theme park for a vacation, but things don't go exactly as planned.", "text_for_embedding": "National Lampoon's Vacation (1983). Genres: Comedy, Adventure, Romance. Clark Griswold is on a quest to take his family on a quest to Walley World theme park for a vacation, but things don't go exactly as planned.. Tags: usa, relatives, family vacation, family holiday, duringcreditsstinger"} +{"id": "208134", "title": "Bad Grandpa", "year": 2013, "duration_min": 92, "rating": 6.0, "genres": "Comedy", "genres_pipe": "|Comedy|", "keywords": "duringcreditsstinger", "tags_pipe": "|duringcreditsstinger|", "overview": "86-year-old Irving Zisman is on a journey across America with the most unlikely companion: his 8 year-old grandson, Billy.", "text_for_embedding": "Bad Grandpa (2013). Genres: Comedy. 86-year-old Irving Zisman is on a journey across America with the most unlikely companion: his 8 year-old grandson, Billy.. Tags: duringcreditsstinger"} +{"id": "1165", "title": "The Queen", "year": 2006, "duration_min": 103, "rating": 6.8, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "upper class, loss of mother, great britain, sadness, queen, monarchy, paparazzi, prime minister, headline, oscar award, dying and death, queen elisabeth ii, prince charles, buckingham palace, royal family", "tags_pipe": "|upper class|loss of mother|great britain|sadness|queen|monarchy|paparazzi|prime minister|headline|oscar award|dying and death|queen elisabeth ii|prince charles|buckingham palace|royal family|", "overview": "The Queen is an intimate behind the scenes glimpse at the interaction between HM Elizabeth II and Prime Minister Tony Blair during their struggle, following the death of Diana, to reach a compromise between what was a private tragedy for the Royal family and the public's demand for an overt display of mourning.", "text_for_embedding": "The Queen (2006). Genres: Drama. The Queen is an intimate behind the scenes glimpse at the interaction between HM Elizabeth II and Prime Minister Tony Blair during their struggle, following the death of Diana, to reach a compromise between what was a private tragedy for the Royal family and the public's demand for an overt display of mourning.. Tags: upper class, loss of mother, great britain, sadness, queen, monarchy, paparazzi, prime minister, headline, oscar award, dying and death, queen elisabeth ii, prince charles, buckingham palace, royal family"} +{"id": "4011", "title": "Beetlejuice", "year": 1988, "duration_min": 92, "rating": 7.1, "genres": "Fantasy, Comedy", "genres_pipe": "|Fantasy|Comedy|", "keywords": "minister, giant snake, skeleton, calypso, arts, afterlife, child bride, possession, surrealism, teenage girl, ghost", "tags_pipe": "|minister|giant snake|skeleton|calypso|arts|afterlife|child bride|possession|surrealism|teenage girl|ghost|", "overview": "Thanks to an untimely demise via drowning, a young couple end up as poltergeists in their New England farmhouse, where they fail to meet the challenge of scaring away the insufferable new owners, who want to make drastic changes. In desperation, the undead newlyweds turn to an expert frightmeister, but he's got a diabolical agenda of his own.", "text_for_embedding": "Beetlejuice (1988). Genres: Fantasy, Comedy. Thanks to an untimely demise via drowning, a young couple end up as poltergeists in their New England farmhouse, where they fail to meet the challenge of scaring away the insufferable new owners, who want to make drastic changes. In desperation, the undead newlyweds turn to an expert frightmeister, but he's got a diabolical agenda of his own.. Tags: minister, giant snake, skeleton, calypso, arts, afterlife, child bride, possession, surrealism, teenage girl, ghost"} +{"id": "17202", "title": "Why Did I Get Married?", "year": 2007, "duration_min": 113, "rating": 6.1, "genres": "Comedy, Drama", "genres_pipe": "|Comedy|Drama|", "keywords": "", "tags_pipe": "", "overview": "The film is about the difficulty of maintaining a solid relationship in modern times. Eight married college friends plus one other non-friend (all of whom have achieved middle to upper class economic status) go to Colorado for their annual week-long reunion, but the mood shifts when one couple's infidelity comes to light. Secrets are revealed and each couple begins to question their own marriage", "text_for_embedding": "Why Did I Get Married? (2007). Genres: Comedy, Drama. The film is about the difficulty of maintaining a solid relationship in modern times. Eight married college friends plus one other non-friend (all of whom have achieved middle to upper class economic status) go to Colorado for their annual week-long reunion, but the mood shifts when one couple's infidelity comes to light. Secrets are revealed and each couple begins to question their own marriage. Tags: "} +{"id": "9587", "title": "Little Women", "year": 1994, "duration_min": 115, "rating": 7.0, "genres": "Drama, Romance", "genres_pipe": "|Drama|Romance|", "keywords": "depression, mother daughter relationship, pregnant, desire, chalkboard,  nightgown, louisa may alcott, birth of twins, woman director", "tags_pipe": "|depression|mother daughter relationship|pregnant|desire|chalkboard| nightgown|louisa may alcott|birth of twins|woman director|", "overview": "With their father away as a chaplain in the Civil War, Jo, Meg, Beth and Amy grow up with their mother in somewhat reduced circumstances. They are a close family who inevitably have their squabbles and tragedies. But the bond holds even when, later, male friends start to become a part of the household.", "text_for_embedding": "Little Women (1994). Genres: Drama, Romance. With their father away as a chaplain in the Civil War, Jo, Meg, Beth and Amy grow up with their mother in somewhat reduced circumstances. They are a close family who inevitably have their squabbles and tragedies. But the bond holds even when, later, male friends start to become a part of the household.. Tags: depression, mother daughter relationship, pregnant, desire, chalkboard,  nightgown, louisa may alcott, birth of twins, woman director"} +{"id": "65086", "title": "The Woman in Black", "year": 2012, "duration_min": 95, "rating": 6.1, "genres": "Drama, Horror, Thriller", "genres_pipe": "|Drama|Horror|Thriller|", "keywords": "london england, secret, remake, revenge, lawyer, photograph, gothic horror, hammer horror, estate, ghost, supernatural power", "tags_pipe": "|london england|secret|remake|revenge|lawyer|photograph|gothic horror|hammer horror|estate|ghost|supernatural power|", "overview": "The story follows a young lawyer, Arthur Kipps, who is ordered to travel to a remote village and sort out a recently deceased client’s papers. As he works alone in the client’s isolated house, Kipps begins to uncover tragic secrets, his unease growing when he glimpses a mysterious woman dressed only in black. Receiving only silence from the locals, Kipps is forced to uncover the true identity of the Woman in Black on his own, leading to a desperate race against time when he discovers her true identity.", "text_for_embedding": "The Woman in Black (2012). Genres: Drama, Horror, Thriller. The story follows a young lawyer, Arthur Kipps, who is ordered to travel to a remote village and sort out a recently deceased client’s papers. As he works alone in the client’s isolated house, Kipps begins to uncover tragic secrets, his unease growing when he glimpses a mysterious woman dressed only in black. Receiving only silence from the locals, Kipps is forced to uncover the true identity of the Woman in Black on his own, leading to a desperate race against time when he discovers her true identity.. Tags: london england, secret, remake, revenge, lawyer, photograph, gothic horror, hammer horror, estate, ghost, supernatural power"} +{"id": "10053", "title": "When a Stranger Calls", "year": 2006, "duration_min": 87, "rating": 5.4, "genres": "Horror, Thriller", "genres_pipe": "|Horror|Thriller|", "keywords": "babysitter, death of a friend, killer, strange person, call", "tags_pipe": "|babysitter|death of a friend|killer|strange person|call|", "overview": "Far away from the site of a gruesome murder, a teenager named Jill Johnson arrives at a luxurious home for a baby-sitting job. With the children fast asleep, she settles in for what she expects to be an ordinary evening. Soon, the ringing of a phone and the frightening words of a sadistic caller turn Jill's routine experience into a night of terror.", "text_for_embedding": "When a Stranger Calls (2006). Genres: Horror, Thriller. Far away from the site of a gruesome murder, a teenager named Jill Johnson arrives at a luxurious home for a baby-sitting job. With the children fast asleep, she settles in for what she expects to be an ordinary evening. Soon, the ringing of a phone and the frightening words of a sadistic caller turn Jill's routine experience into a night of terror.. Tags: babysitter, death of a friend, killer, strange person, call"} +{"id": "11870", "title": "Big Fat Liar", "year": 2002, "duration_min": 88, "rating": 5.6, "genres": "Comedy, Family", "genres_pipe": "|Comedy|Family|", "keywords": "screenplay, film producer, auto, right and justice, liar, essay, intellectual property", "tags_pipe": "|screenplay|film producer|auto|right and justice|liar|essay|intellectual property|", "overview": "Fourteen-year-old Jason Shepherd (Muniz) has a reputation for stretching the truth. So, when big-time Hollywood producer Marty Wolf (Paul Giamatti) steals his class paper and turns it into a smash movie, no one believes Jason's latest tall tale! On a cross-country adventure to set the record straight, Jason and best friend Kaylee (Bynes) devise a high-tech plan to squeeze the truth out of Wolf.", "text_for_embedding": "Big Fat Liar (2002). Genres: Comedy, Family. Fourteen-year-old Jason Shepherd (Muniz) has a reputation for stretching the truth. So, when big-time Hollywood producer Marty Wolf (Paul Giamatti) steals his class paper and turns it into a smash movie, no one believes Jason's latest tall tale! On a cross-country adventure to set the record straight, Jason and best friend Kaylee (Bynes) devise a high-tech plan to squeeze the truth out of Wolf.. Tags: screenplay, film producer, auto, right and justice, liar, essay, intellectual property"} +{"id": "11778", "title": "The Deer Hunter", "year": 1978, "duration_min": 183, "rating": 7.8, "genres": "Drama, War", "genres_pipe": "|Drama|War|", "keywords": "vietnam veteran, pennsylvania, vietnam, party, escape, friend, viet cong, pittsburgh steelers", "tags_pipe": "|vietnam veteran|pennsylvania|vietnam|party|escape|friend|viet cong|pittsburgh steelers|", "overview": "A group of working-class friends decides to enlist in the Army during the Vietnam War and finds it to be hellish chaos -- not the noble venture they imagined. Before they left, Steven married his pregnant girlfriend -- and Michael and Nick were in love with the same woman. But all three are different men upon their return.", "text_for_embedding": "The Deer Hunter (1978). Genres: Drama, War. A group of working-class friends decides to enlist in the Army during the Vietnam War and finds it to be hellish chaos -- not the noble venture they imagined. Before they left, Steven married his pregnant girlfriend -- and Michael and Nick were in love with the same woman. But all three are different men upon their return.. Tags: vietnam veteran, pennsylvania, vietnam, party, escape, friend, viet cong, pittsburgh steelers"} +{"id": "586", "title": "Wag the Dog", "year": 1997, "duration_min": 97, "rating": 6.7, "genres": "Comedy, Drama", "genres_pipe": "|Comedy|Drama|", "keywords": "washington d.c., rape, cia, usa president, war veteran, staging, film maker, albania, sex scandal, senator, presidential election, gulf war, media adviser, manipulation of the media, election campaign", "tags_pipe": "|washington d.c.|rape|cia|usa president|war veteran|staging|film maker|albania|sex scandal|senator|presidential election|gulf war|media adviser|manipulation of the media|election campaign|", "overview": "During the final weeks of a presidential race, the President is accused of sexual misconduct. To distract the public until the election, the President's adviser hires a Hollywood producer to help him stage a fake war.", "text_for_embedding": "Wag the Dog (1997). Genres: Comedy, Drama. During the final weeks of a presidential race, the President is accused of sexual misconduct. To distract the public until the election, the President's adviser hires a Hollywood producer to help him stage a fake war.. Tags: washington d.c., rape, cia, usa president, war veteran, staging, film maker, albania, sex scandal, senator, presidential election, gulf war, media adviser, manipulation of the media, election campaign"} +{"id": "18736", "title": "The Lizzie McGuire Movie", "year": 2003, "duration_min": 94, "rating": 5.7, "genres": "Family, Comedy", "genres_pipe": "|Family|Comedy|", "keywords": "", "tags_pipe": "", "overview": "Lizzie McGuire has graduated from middle school and takes a trip to Rome, Italy.", "text_for_embedding": "The Lizzie McGuire Movie (2003). Genres: Family, Comedy. Lizzie McGuire has graduated from middle school and takes a trip to Rome, Italy.. Tags: "} +{"id": "134411", "title": "Snitch", "year": 2013, "duration_min": 112, "rating": 5.8, "genres": "Thriller, Drama", "genres_pipe": "|Thriller|Drama|", "keywords": "father son relationship, based on true story", "tags_pipe": "|father son relationship|based on true story|", "overview": "Construction company owner John Matthews learns that his estranged son, Jason, has been arrested for drug trafficking. Facing an unjust prison sentence for a first time offender courtesy of mandatory minimum sentence laws, Jason has nothing to offer for leniency in good conscience. Desperately, John convinces the DEA and the opportunistic DA Joanne Keeghan to let him go undercover to help make arrests big enough to free his son in return. With the unwitting help of an ex-con employee, John enters the narcotics underworld where every move could be his last in an operation that will demand all his resources, wits and courage to survive.", "text_for_embedding": "Snitch (2013). Genres: Thriller, Drama. Construction company owner John Matthews learns that his estranged son, Jason, has been arrested for drug trafficking. Facing an unjust prison sentence for a first time offender courtesy of mandatory minimum sentence laws, Jason has nothing to offer for leniency in good conscience. Desperately, John convinces the DEA and the opportunistic DA Joanne Keeghan to let him go undercover to help make arrests big enough to free his son in return. With the unwitting help of an ex-con employee, John enters the narcotics underworld where every move could be his last in an operation that will demand all his resources, wits and courage to survive.. Tags: father son relationship, based on true story"} +{"id": "287903", "title": "Krampus", "year": 2015, "duration_min": 98, "rating": 5.9, "genres": "Horror, Comedy, Fantasy", "genres_pipe": "|Horror|Comedy|Fantasy|", "keywords": "fire, winter, santa claus, snow storm, christmas tree, snow, fireplace, power outage, destruction, demon, german accent, family, blizzard, flashback, christmas", "tags_pipe": "|fire|winter|santa claus|snow storm|christmas tree|snow|fireplace|power outage|destruction|demon|german accent|family|blizzard|flashback|christmas|", "overview": "A horror comedy based on the ancient legend about a pagan creature who punishes children on Christmas.", "text_for_embedding": "Krampus (2015). Genres: Horror, Comedy, Fantasy. A horror comedy based on the ancient legend about a pagan creature who punishes children on Christmas.. Tags: fire, winter, santa claus, snow storm, christmas tree, snow, fireplace, power outage, destruction, demon, german accent, family, blizzard, flashback, christmas"} +{"id": "9276", "title": "The Faculty", "year": 1998, "duration_min": 104, "rating": 6.2, "genres": "Horror, Mystery, Science Fiction", "genres_pipe": "|Horror|Mystery|Science Fiction|", "keywords": "american football, high school, alien, teacher, teenager, drug, alien infection, doppelganger, anti authority, mob, students, groupthink", "tags_pipe": "|american football|high school|alien|teacher|teenager|drug|alien infection|doppelganger|anti authority|mob|students|groupthink|", "overview": "When some very creepy things start happening around school, the kids at Herrington High make a chilling discovery that confirms their worst suspicions: their teachers really are from another planet! As mind-controlling parasites rapidly begin spreading from the faculty to the students' bodies, it's ultimately up to the few who are left – an unlikely collection of loners, leaders, nerds and jocks – to save the world from alien domination.", "text_for_embedding": "The Faculty (1998). Genres: Horror, Mystery, Science Fiction. When some very creepy things start happening around school, the kids at Herrington High make a chilling discovery that confirms their worst suspicions: their teachers really are from another planet! As mind-controlling parasites rapidly begin spreading from the faculty to the students' bodies, it's ultimately up to the few who are left – an unlikely collection of loners, leaders, nerds and jocks – to save the world from alien domination.. Tags: american football, high school, alien, teacher, teenager, drug, alien infection, doppelganger, anti authority, mob, students, groupthink"} +{"id": "15765", "title": "What's Love Got to Do with It", "year": 1993, "duration_min": 118, "rating": 6.9, "genres": "Drama, Music", "genres_pipe": "|Drama|Music|", "keywords": "price of fame, tina turner, black woman, cameo appearance by real life subject, african american music, black family", "tags_pipe": "|price of fame|tina turner|black woman|cameo appearance by real life subject|african american music|black family|", "overview": "A film about the singer Tina Turner and how she rose to stardom with her abusive husband Ike Turner and how she gained the courage to break free.", "text_for_embedding": "What's Love Got to Do with It (1993). Genres: Drama, Music. A film about the singer Tina Turner and how she rose to stardom with her abusive husband Ike Turner and how she gained the courage to break free.. Tags: price of fame, tina turner, black woman, cameo appearance by real life subject, african american music, black family"} +{"id": "2142", "title": "Cop Land", "year": 1997, "duration_min": 104, "rating": 6.6, "genres": "Action, Crime, Drama", "genres_pipe": "|Action|Crime|Drama|", "keywords": "corruption, new jersey, handcuffs, fbi, bridge, police, burned alive, murder, car crash, independent film, bad cop, arson, dirty cop, internal affairs, car accident", "tags_pipe": "|corruption|new jersey|handcuffs|fbi|bridge|police|burned alive|murder|car crash|independent film|bad cop|arson|dirty cop|internal affairs|car accident|", "overview": "Freddy Heflin is the sheriff of a place everyone calls “Cop Land” — a small and seemingly peaceful town populated by the big city police officers he’s long admired. Yet something ugly is taking place behind the town’s peaceful facade. And when Freddy uncovers a massive, deadly conspiracy among these local residents, he is forced to take action and make a dangerous choice between protecting his idols and upholding the law.", "text_for_embedding": "Cop Land (1997). Genres: Action, Crime, Drama. Freddy Heflin is the sheriff of a place everyone calls “Cop Land” — a small and seemingly peaceful town populated by the big city police officers he’s long admired. Yet something ugly is taking place behind the town’s peaceful facade. And when Freddy uncovers a massive, deadly conspiracy among these local residents, he is forced to take action and make a dangerous choice between protecting his idols and upholding the law.. Tags: corruption, new jersey, handcuffs, fbi, bridge, police, burned alive, murder, car crash, independent film, bad cop, arson, dirty cop, internal affairs, car accident"} +{"id": "11397", "title": "Not Another Teen Movie", "year": 2001, "duration_min": 89, "rating": 5.5, "genres": "Comedy", "genres_pipe": "|Comedy|", "keywords": "underdog, ball, kiss, high school, school party, parody, crush, teenage crush, prom queen, sitting on a toilet, aftercreditsstinger, duringcreditsstinger", "tags_pipe": "|underdog|ball|kiss|high school|school party|parody|crush|teenage crush|prom queen|sitting on a toilet|aftercreditsstinger|duringcreditsstinger|", "overview": "On a bet, a gridiron hero at John Hughes High School sets out to turn a bespectacled plain Jane into a beautiful and popular prom queen in this outrageous send-up of the teen movie genre.", "text_for_embedding": "Not Another Teen Movie (2001). Genres: Comedy. On a bet, a gridiron hero at John Hughes High School sets out to turn a bespectacled plain Jane into a beautiful and popular prom queen in this outrageous send-up of the teen movie genre.. Tags: underdog, ball, kiss, high school, school party, parody, crush, teenage crush, prom queen, sitting on a toilet, aftercreditsstinger, duringcreditsstinger"} +{"id": "77016", "title": "End of Watch", "year": 2012, "duration_min": 109, "rating": 7.2, "genres": "Crime, Drama, Thriller", "genres_pipe": "|Crime|Drama|Thriller|", "keywords": "los angeles, bullet proof vest, u.s. marine, medal of valor, police sergeant, felon, golden gun", "tags_pipe": "|los angeles|bullet proof vest|u.s. marine|medal of valor|police sergeant|felon|golden gun|", "overview": "Two young officers are marked for death after confiscating a small cache of money and firearms from the members of a notorious cartel during a routine traffic stop.", "text_for_embedding": "End of Watch (2012). Genres: Crime, Drama, Thriller. Two young officers are marked for death after confiscating a small cache of money and firearms from the members of a notorious cartel during a routine traffic stop.. Tags: los angeles, bullet proof vest, u.s. marine, medal of valor, police sergeant, felon, golden gun"} +{"id": "11478", "title": "The Skulls", "year": 2000, "duration_min": 106, "rating": 5.8, "genres": "Crime, Drama, Thriller", "genres_pipe": "|Crime|Drama|Thriller|", "keywords": "journalist, secret society, pizza, wealth, pay phone, rooftop, attempted suicide, fraternity, foot race, ivy league, u.s. senator, dining hall", "tags_pipe": "|journalist|secret society|pizza|wealth|pay phone|rooftop|attempted suicide|fraternity|foot race|ivy league|u.s. senator|dining hall|", "overview": "Luke's exultance at being selected for The Skulls (a secret society bred within the walls of a prominent Ivy League Campus) is soon overshadowed when he realises that all is 'not well in Wonderland'. For The Skulls is a breeding ground for the future powerful and elite. It's not only a far cry from his working class background, but it also hallows its own deep and dark secrets.", "text_for_embedding": "The Skulls (2000). Genres: Crime, Drama, Thriller. Luke's exultance at being selected for The Skulls (a secret society bred within the walls of a prominent Ivy League Campus) is soon overshadowed when he realises that all is 'not well in Wonderland'. For The Skulls is a breeding ground for the future powerful and elite. It's not only a far cry from his working class background, but it also hallows its own deep and dark secrets.. Tags: journalist, secret society, pizza, wealth, pay phone, rooftop, attempted suicide, fraternity, foot race, ivy league, u.s. senator, dining hall"} +{"id": "266856", "title": "The Theory of Everything", "year": 2014, "duration_min": 123, "rating": 7.8, "genres": "Drama, Romance", "genres_pipe": "|Drama|Romance|", "keywords": "wife husband relationship, biography, physicist, based on memoir, stephen hawking, fictionalized biography, motor neuron disease, als", "tags_pipe": "|wife husband relationship|biography|physicist|based on memoir|stephen hawking|fictionalized biography|motor neuron disease|als|", "overview": "The Theory of Everything is the extraordinary story of one of the world’s greatest living minds, the renowned astrophysicist Stephen Hawking, who falls deeply in love with fellow Cambridge student Jane Wilde.", "text_for_embedding": "The Theory of Everything (2014). Genres: Drama, Romance. The Theory of Everything is the extraordinary story of one of the world’s greatest living minds, the renowned astrophysicist Stephen Hawking, who falls deeply in love with fellow Cambridge student Jane Wilde.. Tags: wife husband relationship, biography, physicist, based on memoir, stephen hawking, fictionalized biography, motor neuron disease, als"} +{"id": "13411", "title": "Malibu's Most Wanted", "year": 2003, "duration_min": 86, "rating": 4.7, "genres": "Comedy, Crime", "genres_pipe": "|Comedy|Crime|", "keywords": "street gang, los angeles", "tags_pipe": "|street gang|los angeles|", "overview": "Bill Gluckman, a wealthy white Jewish senator is running for the office of Governor. His son \"B-Rad\" dresses, speaks, and acts as if he were a gangster from the inner city. The campaign team members hire two actors, who don't know any more about inner-city life than B-Rad, to act as gang members, kidnap him, and take him to South Central Los Angeles where they hope Brad will be \"scared white\".", "text_for_embedding": "Malibu's Most Wanted (2003). Genres: Comedy, Crime. Bill Gluckman, a wealthy white Jewish senator is running for the office of Governor. His son \"B-Rad\" dresses, speaks, and acts as if he were a gangster from the inner city. The campaign team members hire two actors, who don't know any more about inner-city life than B-Rad, to act as gang members, kidnap him, and take him to South Central Los Angeles where they hope Brad will be \"scared white\".. Tags: street gang, los angeles"} +{"id": "10564", "title": "Where the Heart Is", "year": 2000, "duration_min": 120, "rating": 6.9, "genres": "Comedy, Drama, Romance", "genres_pipe": "|Comedy|Drama|Romance|", "keywords": "california, baby, supermarket, oklahoma, pregnancy and birth, pregnant minor, change, tennessee, unwillingly pregnant, teenage pregnancy, starting over", "tags_pipe": "|california|baby|supermarket|oklahoma|pregnancy and birth|pregnant minor|change|tennessee|unwillingly pregnant|teenage pregnancy|starting over|", "overview": "Novalee Nation is a 17-year-old Tennessee transient who has to grow up in a hurry when she's left pregnant and abandoned by her boyfriend on a roadside in Sequoyah, Okla., and takes refuge in the friendly aisles of Wal-Mart. In short order, some eccentric, kindly strangers \"adopt\" Novalee and her infant daughter, helping them buck the odds and build a new life.", "text_for_embedding": "Where the Heart Is (2000). Genres: Comedy, Drama, Romance. Novalee Nation is a 17-year-old Tennessee transient who has to grow up in a hurry when she's left pregnant and abandoned by her boyfriend on a roadside in Sequoyah, Okla., and takes refuge in the friendly aisles of Wal-Mart. In short order, some eccentric, kindly strangers \"adopt\" Novalee and her infant daughter, helping them buck the odds and build a new life.. Tags: california, baby, supermarket, oklahoma, pregnancy and birth, pregnant minor, change, tennessee, unwillingly pregnant, teenage pregnancy, starting over"} +{"id": "947", "title": "Lawrence of Arabia", "year": 1962, "duration_min": 216, "rating": 7.8, "genres": "Adventure, Drama, History, War", "genres_pipe": "|Adventure|Drama|History|War|", "keywords": "cairo, arabian, world war i, horse, jerusalem, british army, british empire, damascus, camel, war, desert, arab, ottoman empire", "tags_pipe": "|cairo|arabian|world war i|horse|jerusalem|british army|british empire|damascus|camel|war|desert|arab|ottoman empire|", "overview": "An epic about British officer T.E. Lawrence's mission to aid the Arab tribes in their revolt against the Ottoman Empire during the First World War. Lawrence becomes a flamboyant, messianic figure in the cause of Arab unity but his psychological instability threatens to undermine his achievements.", "text_for_embedding": "Lawrence of Arabia (1962). Genres: Adventure, Drama, History, War. An epic about British officer T.E. Lawrence's mission to aid the Arab tribes in their revolt against the Ottoman Empire during the First World War. Lawrence becomes a flamboyant, messianic figure in the cause of Arab unity but his psychological instability threatens to undermine his achievements.. Tags: cairo, arabian, world war i, horse, jerusalem, british army, british empire, damascus, camel, war, desert, arab, ottoman empire"} +{"id": "24150", "title": "Halloween II", "year": 2009, "duration_min": 105, "rating": 5.1, "genres": "Horror", "genres_pipe": "|Horror|", "keywords": "nurse, shotgun, nudity, therapist, book, halloween, barn, death of a friend, insanity, number in title, rampage, purgatory, hospital, pentagram, overturning car", "tags_pipe": "|nurse|shotgun|nudity|therapist|book|halloween|barn|death of a friend|insanity|number in title|rampage|purgatory|hospital|pentagram|overturning car|", "overview": "Laurie Strode struggles to come to terms with her brother Micheal's deadly return to Haddonfield, Illinois; meanwhile, Michael prepares for another reunion with his sister.", "text_for_embedding": "Halloween II (2009). Genres: Horror. Laurie Strode struggles to come to terms with her brother Micheal's deadly return to Haddonfield, Illinois; meanwhile, Michael prepares for another reunion with his sister.. Tags: nurse, shotgun, nudity, therapist, book, halloween, barn, death of a friend, insanity, number in title, rampage, purgatory, hospital, pentagram, overturning car"} +{"id": "228970", "title": "Wild", "year": 2014, "duration_min": 115, "rating": 7.0, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "adventure, biography, hiking, based on true story, traveller", "tags_pipe": "|adventure|biography|hiking|based on true story|traveller|", "overview": "A woman with a tragic past decides to start her new life by hiking for one thousand miles on the Pacific Crest Trail.", "text_for_embedding": "Wild (2014). Genres: Drama. A woman with a tragic past decides to start her new life by hiking for one thousand miles on the Pacific Crest Trail.. Tags: adventure, biography, hiking, based on true story, traveller"} +{"id": "18405", "title": "The Last House on the Left", "year": 2009, "duration_min": 110, "rating": 6.2, "genres": "Crime, Thriller, Horror, Drama", "genres_pipe": "|Crime|Thriller|Horror|Drama|", "keywords": "rape, white trash, revenge, murder, dysfunctional family, swimmer, family", "tags_pipe": "|rape|white trash|revenge|murder|dysfunctional family|swimmer|family|", "overview": "A group of teenage girls heading into the city hook up with a gang of drug-addled ne'er-do-wells and are brutally murdered. The killers find their way to the home of one of their victim's parents, where both father and mother exact a horrible revenge.", "text_for_embedding": "The Last House on the Left (2009). Genres: Crime, Thriller, Horror, Drama. A group of teenage girls heading into the city hook up with a gang of drug-addled ne'er-do-wells and are brutally murdered. The killers find their way to the home of one of their victim's parents, where both father and mother exact a horrible revenge.. Tags: rape, white trash, revenge, murder, dysfunctional family, swimmer, family"} +{"id": "6961", "title": "The Wedding Date", "year": 2005, "duration_min": 88, "rating": 6.2, "genres": "Comedy, Romance", "genres_pipe": "|Comedy|Romance|", "keywords": "based on novel, callboy, wedding, escort, fake boyfriend, woman director", "tags_pipe": "|based on novel|callboy|wedding|escort|fake boyfriend|woman director|", "overview": "With the wedding of her younger sister fast approaching, Kat Ellis faces the undesirable prospect of traveling alone to London for the ceremony. While this is bad enough, Jeffrey, the man who left her as they moved closer to marriage, happens to be the groom's best man. Determined to show everyone -- most of all Jeffrey -- that her romantic life is as full and thrilling as ever, Kat hires a charming male escort as her date.", "text_for_embedding": "The Wedding Date (2005). Genres: Comedy, Romance. With the wedding of her younger sister fast approaching, Kat Ellis faces the undesirable prospect of traveling alone to London for the ceremony. While this is bad enough, Jeffrey, the man who left her as they moved closer to marriage, happens to be the groom's best man. Determined to show everyone -- most of all Jeffrey -- that her romantic life is as full and thrilling as ever, Kat hires a charming male escort as her date.. Tags: based on novel, callboy, wedding, escort, fake boyfriend, woman director"} +{"id": "11442", "title": "Halloween: Resurrection", "year": 2002, "duration_min": 94, "rating": 4.5, "genres": "Horror, Thriller", "genres_pipe": "|Horror|Thriller|", "keywords": "brother sister relationship, innocence, serial killer, michael myers", "tags_pipe": "|brother sister relationship|innocence|serial killer|michael myers|", "overview": "Serial Killer Michael Myers is not finished with Laurie Strode, and their rivalry finally comes to an end. But is this the last we see of Myers? Freddie Harris and Nora Winston are reality programmers at DangerTainment, and are planning to send a group of 6 thrill-seeking teenagers into the childhood home of Myers. Cameras are placed all over the house and no one can get out of the house... and then Michael arrives home!", "text_for_embedding": "Halloween: Resurrection (2002). Genres: Horror, Thriller. Serial Killer Michael Myers is not finished with Laurie Strode, and their rivalry finally comes to an end. But is this the last we see of Myers? Freddie Harris and Nora Winston are reality programmers at DangerTainment, and are planning to send a group of 6 thrill-seeking teenagers into the childhood home of Myers. Cameras are placed all over the house and no one can get out of the house... and then Michael arrives home!. Tags: brother sister relationship, innocence, serial killer, michael myers"} +{"id": "2493", "title": "The Princess Bride", "year": 1987, "duration_min": 98, "rating": 7.6, "genres": "Adventure, Family, Fantasy, Comedy, Romance", "genres_pipe": "|Adventure|Family|Fantasy|Comedy|Romance|", "keywords": "swashbuckler, evil prince, reference to socrates, reference to plato, screwball, impersonation", "tags_pipe": "|swashbuckler|evil prince|reference to socrates|reference to plato|screwball|impersonation|", "overview": "In this enchantingly cracked fairy tale, the beautiful Princess Buttercup and the dashing Westley must overcome staggering odds to find happiness amid six-fingered swordsmen, murderous princes, Sicilians and rodents of unusual size. But even death can't stop these true lovebirds from triumphing.", "text_for_embedding": "The Princess Bride (1987). Genres: Adventure, Family, Fantasy, Comedy, Romance. In this enchantingly cracked fairy tale, the beautiful Princess Buttercup and the dashing Westley must overcome staggering odds to find happiness amid six-fingered swordsmen, murderous princes, Sicilians and rodents of unusual size. But even death can't stop these true lovebirds from triumphing.. Tags: swashbuckler, evil prince, reference to socrates, reference to plato, screwball, impersonation"} +{"id": "14047", "title": "The Great Debaters", "year": 2007, "duration_min": 126, "rating": 6.9, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "biography", "tags_pipe": "|biography|", "overview": "The true story of a brilliant but politically radical debate team coach who uses the power of words to transform a group of underdog African American college students into an historical powerhouse that took on the Harvard elite.", "text_for_embedding": "The Great Debaters (2007). Genres: Drama. The true story of a brilliant but politically radical debate team coach who uses the power of words to transform a group of underdog African American college students into an historical powerhouse that took on the Harvard elite.. Tags: biography"} +{"id": "64690", "title": "Drive", "year": 2011, "duration_min": 100, "rating": 7.4, "genres": "Drama, Action, Thriller, Crime", "genres_pipe": "|Drama|Action|Thriller|Crime|", "keywords": "stuntman, blood splatter, independent film, police chase, extreme violence, violence, car chase, bullet, head stomp, getaway, crime lord, existentialism, silent protagonist, great soundtrack", "tags_pipe": "|stuntman|blood splatter|independent film|police chase|extreme violence|violence|car chase|bullet|head stomp|getaway|crime lord|existentialism|silent protagonist|great soundtrack|", "overview": "A Hollywood stunt performer who moonlights as a wheelman for criminals discovers that a contract has been put on him after a heist gone wrong.", "text_for_embedding": "Drive (2011). Genres: Drama, Action, Thriller, Crime. A Hollywood stunt performer who moonlights as a wheelman for criminals discovers that a contract has been put on him after a heist gone wrong.. Tags: stuntman, blood splatter, independent film, police chase, extreme violence, violence, car chase, bullet, head stomp, getaway, crime lord, existentialism, silent protagonist, great soundtrack"} +{"id": "11132", "title": "Confessions of a Teenage Drama Queen", "year": 2004, "duration_min": 89, "rating": 5.1, "genres": "Comedy", "genres_pipe": "|Comedy|", "keywords": "rock star, spotlight, high school, party, rivalry, woman director, boys", "tags_pipe": "|rock star|spotlight|high school|party|rivalry|woman director|boys|", "overview": "When the teenager Mary Elizabeth Steppe, a.k.a. Lola, moves with her mother and two younger twin sisters from New York to the suburb of Dellwood, New Jersey, she has the feeling that her cultural and entertaining world ended. While in school, the displaced Lola becomes close friend of the unpopular Ella, who is also a great fan of the her favorite rock band Sidarthur. However, the most popular girl in the school, Carla Santini, disputes the lead role in an adaptation of Pygmalion with Lola and also the leadership of their mates. When the last concert of Sidarthur is sold-out, Lola plans with Ella to travel to New York and buy the tickets from scalpers. However, the girls get into trouble while helping the lead singer and Lola's idol Stu Wolf, changing their lives forever.", "text_for_embedding": "Confessions of a Teenage Drama Queen (2004). Genres: Comedy. When the teenager Mary Elizabeth Steppe, a.k.a. Lola, moves with her mother and two younger twin sisters from New York to the suburb of Dellwood, New Jersey, she has the feeling that her cultural and entertaining world ended. While in school, the displaced Lola becomes close friend of the unpopular Ella, who is also a great fan of the her favorite rock band Sidarthur. However, the most popular girl in the school, Carla Santini, disputes the lead role in an adaptation of Pygmalion with Lola and also the leadership of their mates. When the last concert of Sidarthur is sold-out, Lola plans with Ella to travel to New York and buy the tickets from scalpers. However, the girls get into trouble while helping the lead singer and Lola's idol Stu Wolf, changing their lives forever.. Tags: rock star, spotlight, high school, party, rivalry, woman director, boys"} +{"id": "17127", "title": "The Object of My Affection", "year": 1998, "duration_min": 111, "rating": 5.6, "genres": "Comedy, Drama, Romance", "genres_pipe": "|Comedy|Drama|Romance|", "keywords": "blind date, love, falling in love, gay man straight woman relationship", "tags_pipe": "|blind date|love|falling in love|gay man straight woman relationship|", "overview": "A pregnant New York social worker begins to develop romantic feelings for her gay best friend, and decides she'd rather raise her child with him, much to the dismay of her overbearing boyfriend.", "text_for_embedding": "The Object of My Affection (1998). Genres: Comedy, Drama, Romance. A pregnant New York social worker begins to develop romantic feelings for her gay best friend, and decides she'd rather raise her child with him, much to the dismay of her overbearing boyfriend.. Tags: blind date, love, falling in love, gay man straight woman relationship"} +{"id": "1562", "title": "28 Weeks Later", "year": 2007, "duration_min": 100, "rating": 6.5, "genres": "Horror, Thriller, Science Fiction", "genres_pipe": "|Horror|Thriller|Science Fiction|", "keywords": "london england, loss of mother, loss of family, mutant, pest, dying and death, chaos, parts of dead body, survivor, supernatural, survival, on the run, zombie, danger, escapade", "tags_pipe": "|london england|loss of mother|loss of family|mutant|pest|dying and death|chaos|parts of dead body|survivor|supernatural|survival|on the run|zombie|danger|escapade|", "overview": "In this chilling sequel to 28 Days Later, the inhabitants of the British Isles appear to have lost their battle against the onslaught of disease, as the deadly rage virus has killed every citizen there. Six months later, a group of Americans dare to set foot on the isles, convinced the danger has come and gone. But it soon becomes all too clear that the scourge continues to live, waiting to pounce on its next victims.", "text_for_embedding": "28 Weeks Later (2007). Genres: Horror, Thriller, Science Fiction. In this chilling sequel to 28 Days Later, the inhabitants of the British Isles appear to have lost their battle against the onslaught of disease, as the deadly rage virus has killed every citizen there. Six months later, a group of Americans dare to set foot on the isles, convinced the danger has come and gone. But it soon becomes all too clear that the scourge continues to live, waiting to pounce on its next victims.. Tags: london england, loss of mother, loss of family, mutant, pest, dying and death, chaos, parts of dead body, survivor, supernatural, survival, on the run, zombie, danger, escapade"} +{"id": "232679", "title": "When the Game Stands Tall", "year": 2014, "duration_min": 115, "rating": 6.3, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "american football, sport, high school sports", "tags_pipe": "|american football|sport|high school sports|", "overview": "A young coach turns a losing high school football program around to go undefeated for 12 consecutive seasons.", "text_for_embedding": "When the Game Stands Tall (2014). Genres: Drama. A young coach turns a losing high school football program around to go undefeated for 12 consecutive seasons.. Tags: american football, sport, high school sports"} +{"id": "17880", "title": "Because of Winn-Dixie", "year": 2005, "duration_min": 106, "rating": 6.1, "genres": "Comedy, Drama, Family", "genres_pipe": "|Comedy|Drama|Family|", "keywords": "", "tags_pipe": "", "overview": "A girl, abandoned by her mother when she was three, moves to a small town in Florida with her father. There, she adopts an orphaned dog she names Winn-Dixie. The bond between the girl and her special companion brings together the people in a small Florida town and heals her own troubled relationship with her father.", "text_for_embedding": "Because of Winn-Dixie (2005). Genres: Comedy, Drama, Family. A girl, abandoned by her mother when she was three, moves to a small town in Florida with her father. There, she adopts an orphaned dog she names Winn-Dixie. The bond between the girl and her special companion brings together the people in a small Florida town and heals her own troubled relationship with her father.. Tags: "} +{"id": "14736", "title": "Love & Basketball", "year": 2000, "duration_min": 124, "rating": 7.4, "genres": "Action, Comedy, Drama, Romance", "genres_pipe": "|Action|Comedy|Drama|Romance|", "keywords": "lovers, affection, sport, basketball, high school sports, relationship, woman director", "tags_pipe": "|lovers|affection|sport|basketball|high school sports|relationship|woman director|", "overview": "A young African-American couple navigates the tricky paths of romance and athletics in this drama. Quincy McCall (Omar Epps) and Monica Wright (Sanaa Lathan) grew up in the same neighborhood and have known each other since childhood. As they grow into adulthood, they fall in love, but they also share another all-consuming passion: basketball. They've followed the game all their lives and have no small amount of talent on the court. As Quincy and Monica struggle to make their relationship work, they follow separate career paths though high school and college basketball and, they hope, into stardom in big-league professional ball.", "text_for_embedding": "Love & Basketball (2000). Genres: Action, Comedy, Drama, Romance. A young African-American couple navigates the tricky paths of romance and athletics in this drama. Quincy McCall (Omar Epps) and Monica Wright (Sanaa Lathan) grew up in the same neighborhood and have known each other since childhood. As they grow into adulthood, they fall in love, but they also share another all-consuming passion: basketball. They've followed the game all their lives and have no small amount of talent on the court. As Quincy and Monica struggle to make their relationship work, they follow separate career paths though high school and college basketball and, they hope, into stardom in big-league professional ball.. Tags: lovers, affection, sport, basketball, high school sports, relationship, woman director"} +{"id": "9434", "title": "Grosse Pointe Blank", "year": 1997, "duration_min": 107, "rating": 6.9, "genres": "Action, Comedy, Thriller, Romance", "genres_pipe": "|Action|Comedy|Thriller|Romance|", "keywords": "mission of murder, school party, high school reunion", "tags_pipe": "|mission of murder|school party|high school reunion|", "overview": "Martin Blank is a freelance hitman who starts to develop a conscience, which causes him to muff a couple of routine assignments. On the advice of his secretary and his psychiatrist, he attends his 10th year High School reunion in Grosse Pointe, Michigan.", "text_for_embedding": "Grosse Pointe Blank (1997). Genres: Action, Comedy, Thriller, Romance. Martin Blank is a freelance hitman who starts to develop a conscience, which causes him to muff a couple of routine assignments. On the advice of his secretary and his psychiatrist, he attends his 10th year High School reunion in Grosse Pointe, Michigan.. Tags: mission of murder, school party, high school reunion"} +{"id": "23706", "title": "All About Steve", "year": 2009, "duration_min": 99, "rating": 4.7, "genres": "Comedy", "genres_pipe": "|Comedy|", "keywords": "blind date, eccentric, aftercreditsstinger, crossword puzzle, mine shaft", "tags_pipe": "|blind date|eccentric|aftercreditsstinger|crossword puzzle|mine shaft|", "overview": "After one short date, a brilliant crossword constructor decides that a CNN cameraman is her true love. Because the cameraman's job takes him hither and yon, she crisscrosses the country, turning up at media events as she tries to convince him they are perfect for each other.", "text_for_embedding": "All About Steve (2009). Genres: Comedy. After one short date, a brilliant crossword constructor decides that a CNN cameraman is her true love. Because the cameraman's job takes him hither and yon, she crisscrosses the country, turning up at media events as she tries to convince him they are perfect for each other.. Tags: blind date, eccentric, aftercreditsstinger, crossword puzzle, mine shaft"} +{"id": "11531", "title": "Book of Shadows: Blair Witch 2", "year": 2000, "duration_min": 90, "rating": 4.3, "genres": "Mystery, Thriller, Horror", "genres_pipe": "|Mystery|Thriller|Horror|", "keywords": "witch, video, forest, horror, vision", "tags_pipe": "|witch|video|forest|horror|vision|", "overview": "Young adults become fascinated by the events of the three missing filmmakers in Maryland, so they decide to go into the same woods and find out what really happened.", "text_for_embedding": "Book of Shadows: Blair Witch 2 (2000). Genres: Mystery, Thriller, Horror. Young adults become fascinated by the events of the three missing filmmakers in Maryland, so they decide to go into the same woods and find out what really happened.. Tags: witch, video, forest, horror, vision"} +{"id": "9100", "title": "The Craft", "year": 1996, "duration_min": 101, "rating": 6.3, "genres": "Drama, Fantasy, Horror, Thriller", "genres_pipe": "|Drama|Fantasy|Horror|Thriller|", "keywords": "witch, suicide attempt, puberty, magic, black magic, sorcery, female friendship, teenager, hair loss, outsider, occult ritual, karma, newcomer, love spell", "tags_pipe": "|witch|suicide attempt|puberty|magic|black magic|sorcery|female friendship|teenager|hair loss|outsider|occult ritual|karma|newcomer|love spell|", "overview": "A Catholic school newcomer falls in with a clique of teen witches who wield their powers against all who dare to cross them -- be they teachers, rivals or meddlesome parents.", "text_for_embedding": "The Craft (1996). Genres: Drama, Fantasy, Horror, Thriller. A Catholic school newcomer falls in with a clique of teen witches who wield their powers against all who dare to cross them -- be they teachers, rivals or meddlesome parents.. Tags: witch, suicide attempt, puberty, magic, black magic, sorcery, female friendship, teenager, hair loss, outsider, occult ritual, karma, newcomer, love spell"} +{"id": "116", "title": "Match Point", "year": 2005, "duration_min": 124, "rating": 7.3, "genres": "Drama, Thriller, Crime, Romance", "genres_pipe": "|Drama|Thriller|Crime|Romance|", "keywords": "love triangle, london england, upper class, adultery, tennis, river thames, love, wealth, lust, instructor, gold digger, social climbing, actress", "tags_pipe": "|love triangle|london england|upper class|adultery|tennis|river thames|love|wealth|lust|instructor|gold digger|social climbing|actress|", "overview": "Match Point is Woody Allen’s satire of the British High Society and the ambition of a young tennis instructor to enter into it. Yet when he must decide between two women - one assuring him his place in high society, and the other that would bring him far from it - palms start to sweat and a dark psychological match in his head begins.", "text_for_embedding": "Match Point (2005). Genres: Drama, Thriller, Crime, Romance. Match Point is Woody Allen’s satire of the British High Society and the ambition of a young tennis instructor to enter into it. Yet when he must decide between two women - one assuring him his place in high society, and the other that would bring him far from it - palms start to sweat and a dark psychological match in his head begins.. Tags: love triangle, london england, upper class, adultery, tennis, river thames, love, wealth, lust, instructor, gold digger, social climbing, actress"} +{"id": "38843", "title": "Ramona and Beezus", "year": 2010, "duration_min": 103, "rating": 6.1, "genres": "Comedy, Family", "genres_pipe": "|Comedy|Family|", "keywords": "sister sister relationship, mother daughter relationship, aunt niece relationship, father daughter relationship, duringcreditsstinger, woman director", "tags_pipe": "|sister sister relationship|mother daughter relationship|aunt niece relationship|father daughter relationship|duringcreditsstinger|woman director|", "overview": "Ramona is a little girl with a very big imagination and a nose for mischief. Her playful antics keep everyone in her loving family on their toes, including her older sister Beezus, who's just trying to survive her first year of high school. Through all the ups and downs of childhood, Ramona and Beezus learn that anything's possible when you believe in yourself and rely on each other.", "text_for_embedding": "Ramona and Beezus (2010). Genres: Comedy, Family. Ramona is a little girl with a very big imagination and a nose for mischief. Her playful antics keep everyone in her loving family on their toes, including her older sister Beezus, who's just trying to survive her first year of high school. Through all the ups and downs of childhood, Ramona and Beezus learn that anything's possible when you believe in yourself and rely on each other.. Tags: sister sister relationship, mother daughter relationship, aunt niece relationship, father daughter relationship, duringcreditsstinger, woman director"} +{"id": "1245", "title": "The Remains of the Day", "year": 1993, "duration_min": 134, "rating": 7.5, "genres": "Drama, Romance", "genres_pipe": "|Drama|Romance|", "keywords": "newspaper, butler, country house, loyalty, flower, nazis, jewish, britain, housekeeper, employer", "tags_pipe": "|newspaper|butler|country house|loyalty|flower|nazis|jewish|britain|housekeeper|employer|", "overview": "A rule bound head butler's world of manners and decorum in the household he maintains is tested by the arrival of a housekeeper who falls in love with him in post-WWI Britain. The possibility of romance and his master's cultivation of ties with the Nazi cause challenge his carefully maintained veneer of servitude.", "text_for_embedding": "The Remains of the Day (1993). Genres: Drama, Romance. A rule bound head butler's world of manners and decorum in the household he maintains is tested by the arrival of a housekeeper who falls in love with him in post-WWI Britain. The possibility of romance and his master's cultivation of ties with the Nazi cause challenge his carefully maintained veneer of servitude.. Tags: newspaper, butler, country house, loyalty, flower, nazis, jewish, britain, housekeeper, employer"} +{"id": "4995", "title": "Boogie Nights", "year": 1997, "duration_min": 155, "rating": 7.5, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "pornography, sex, porn actor, pornographic video, from rags to riches, drug, porn industry, gay lead character", "tags_pipe": "|pornography|sex|porn actor|pornographic video|from rags to riches|drug|porn industry|gay lead character|", "overview": "Set in 1977, back when sex was safe, pleasure was a business and business was booming, idealistic porn producer Jack Horner aspires to elevate his craft to an art form. Horner discovers Eddie Adams, a hot young talent working as a busboy in a nightclub, and welcomes him into the extended family of movie-makers, misfits and hangers-on that are always around. Adams' rise from nobody to a celebrity adult entertainer is meteoric, and soon the whole world seems to know his porn alter ego, \"Dirk Diggler\". Now, when disco and drugs are in vogue, fashion is in flux and the party never seems to stop, Adams' dreams of turning sex into stardom are about to collide with cold, hard reality.", "text_for_embedding": "Boogie Nights (1997). Genres: Drama. Set in 1977, back when sex was safe, pleasure was a business and business was booming, idealistic porn producer Jack Horner aspires to elevate his craft to an art form. Horner discovers Eddie Adams, a hot young talent working as a busboy in a nightclub, and welcomes him into the extended family of movie-makers, misfits and hangers-on that are always around. Adams' rise from nobody to a celebrity adult entertainer is meteoric, and soon the whole world seems to know his porn alter ego, \"Dirk Diggler\". Now, when disco and drugs are in vogue, fashion is in flux and the party never seems to stop, Adams' dreams of turning sex into stardom are about to collide with cold, hard reality.. Tags: pornography, sex, porn actor, pornographic video, from rags to riches, drug, porn industry, gay lead character"} +{"id": "10413", "title": "Nowhere to Run", "year": 1993, "duration_min": 94, "rating": 5.5, "genres": "Action, Adventure, Drama, Thriller", "genres_pipe": "|Action|Adventure|Drama|Thriller|", "keywords": "prisoner, fight, liberation, shelter", "tags_pipe": "|prisoner|fight|liberation|shelter|", "overview": "Escaped convict Sam Gillen single handedly takes on ruthless developers determined to evict Clydie - a widow with two young children. Nobody knows who Sam is.", "text_for_embedding": "Nowhere to Run (1993). Genres: Action, Adventure, Drama, Thriller. Escaped convict Sam Gillen single handedly takes on ruthless developers determined to evict Clydie - a widow with two young children. Nobody knows who Sam is.. Tags: prisoner, fight, liberation, shelter"} +{"id": "14012", "title": "Flicka", "year": 2006, "duration_min": 95, "rating": 6.1, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "horse", "tags_pipe": "|horse|", "overview": "A headstrong 16 year old Katy McLaughlin desires to work on her family's mountainside horse ranch, although her father insists she finish boarding school. Katy finds a mustang in the hills near her ranch. Katy then sets her mind to tame a mustang and prove to her father she can run the ranch. But when tragedy happens, it will take all the love and strength the family can muster to restore hope.", "text_for_embedding": "Flicka (2006). Genres: Drama. A headstrong 16 year old Katy McLaughlin desires to work on her family's mountainside horse ranch, although her father insists she finish boarding school. Katy finds a mustang in the hills near her ranch. Katy then sets her mind to tame a mustang and prove to her father she can run the ranch. But when tragedy happens, it will take all the love and strength the family can muster to restore hope.. Tags: horse"} +{"id": "9793", "title": "The Hills Have Eyes 2", "year": 2007, "duration_min": 89, "rating": 5.2, "genres": "Horror, Thriller", "genres_pipe": "|Horror|Thriller|", "keywords": "new mexico, mutant, assault, survival", "tags_pipe": "|new mexico|mutant|assault|survival|", "overview": "A group of National Guard trainees find themselves battling against a vicious group of mutants on their last day of training in the desert.", "text_for_embedding": "The Hills Have Eyes 2 (2007). Genres: Horror, Thriller. A group of National Guard trainees find themselves battling against a vicious group of mutants on their last day of training in the desert.. Tags: new mexico, mutant, assault, survival"} +{"id": "12212", "title": "Urban Legends: Final Cut", "year": 2000, "duration_min": 97, "rating": 4.4, "genres": "Horror", "genres_pipe": "|Horror|", "keywords": "film making, high school, sequel, serial killer, slasher, aftercreditsstinger", "tags_pipe": "|film making|high school|sequel|serial killer|slasher|aftercreditsstinger|", "overview": "The making of a horror movie takes on a terrifying reality for students at the most prestigious film school in the country in 'Urban Legends: Final Cut', the suspenseful follow up to the smash hit 'Urban Legend'. At Alpine University, someone is determined to win the best film award at any cost - even if it means eliminating the competition. No one is safe and everyone is a suspect. 'Urban Legends: Final Cut' is an edge-of-your-seat thriller that will keep you guessing until the shocking climax.", "text_for_embedding": "Urban Legends: Final Cut (2000). Genres: Horror. The making of a horror movie takes on a terrifying reality for students at the most prestigious film school in the country in 'Urban Legends: Final Cut', the suspenseful follow up to the smash hit 'Urban Legend'. At Alpine University, someone is determined to win the best film award at any cost - even if it means eliminating the competition. No one is safe and everyone is a suspect. 'Urban Legends: Final Cut' is an edge-of-your-seat thriller that will keep you guessing until the shocking climax.. Tags: film making, high school, sequel, serial killer, slasher, aftercreditsstinger"} +{"id": "13768", "title": "Tuck Everlasting", "year": 2002, "duration_min": 90, "rating": 6.4, "genres": "Fantasy, Drama, Science Fiction, Romance, Family", "genres_pipe": "|Fantasy|Drama|Science Fiction|Romance|Family|", "keywords": "", "tags_pipe": "", "overview": "Natalie Babbitt's award winning book for children comes to the screen in a lavish adaptation from Walt Disney Pictures. Winnie Foster (Alexis Bledel) is a girl in her early teens growing up in the small rural town of Winesap in 1914. Winnie's parents (Victor Garber and Amy Irving) are loving but overprotective, and Winnie longs for a life of greater freedom and adventure.", "text_for_embedding": "Tuck Everlasting (2002). Genres: Fantasy, Drama, Science Fiction, Romance, Family. Natalie Babbitt's award winning book for children comes to the screen in a lavish adaptation from Walt Disney Pictures. Winnie Foster (Alexis Bledel) is a girl in her early teens growing up in the small rural town of Winesap in 1914. Winnie's parents (Victor Garber and Amy Irving) are loving but overprotective, and Winnie longs for a life of greater freedom and adventure.. Tags: "} +{"id": "8975", "title": "The Marine", "year": 2006, "duration_min": 92, "rating": 5.0, "genres": "Action, Adventure, Drama, Thriller", "genres_pipe": "|Action|Adventure|Drama|Thriller|", "keywords": "gangster boss, wife, war, change, iraq war", "tags_pipe": "|gangster boss|wife|war|change|iraq war|", "overview": "A group of diamond thieves on the run kidnap the wife of a recently discharged marine who goes on a chase through the South Carolinian wilderness to retrieve her.", "text_for_embedding": "The Marine (2006). Genres: Action, Adventure, Drama, Thriller. A group of diamond thieves on the run kidnap the wife of a recently discharged marine who goes on a chase through the South Carolinian wilderness to retrieve her.. Tags: gangster boss, wife, war, change, iraq war"} +{"id": "342521", "title": "Keanu", "year": 2016, "duration_min": 94, "rating": 6.0, "genres": "Action, Comedy", "genres_pipe": "|Action|Comedy|", "keywords": "hitman, strip club, african american, gangster, car chase, kitten, buddy comedy, gun fight, stolen pet, designer drug", "tags_pipe": "|hitman|strip club|african american|gangster|car chase|kitten|buddy comedy|gun fight|stolen pet|designer drug|", "overview": "Friends hatch a plot to retrieve a stolen cat by posing as drug dealers for a street gang.", "text_for_embedding": "Keanu (2016). Genres: Action, Comedy. Friends hatch a plot to retrieve a stolen cat by posing as drug dealers for a street gang.. Tags: hitman, strip club, african american, gangster, car chase, kitten, buddy comedy, gun fight, stolen pet, designer drug"} +{"id": "45272", "title": "Country Strong", "year": 2010, "duration_min": 117, "rating": 5.9, "genres": "Drama, Romance", "genres_pipe": "|Drama|Romance|", "keywords": "suicide, alcohol, adultery, country music, bar, infidelity, texas, paparazzi, musician, musical, van, addiction, biker, love, singer", "tags_pipe": "|suicide|alcohol|adultery|country music|bar|infidelity|texas|paparazzi|musician|musical|van|addiction|biker|love|singer|", "overview": "Soon after the rising young singer-songwriter Beau Williams gets involved with a fallen, emotionally unstable country star Kelly Canter, the pair embark on a career resurrection tour helmed by her husband/manager James and featuring a beauty queen-turned-singer Chiles Stanton. Between concerts, romantic entanglements and old demons threaten to derail them all.", "text_for_embedding": "Country Strong (2010). Genres: Drama, Romance. Soon after the rising young singer-songwriter Beau Williams gets involved with a fallen, emotionally unstable country star Kelly Canter, the pair embark on a career resurrection tour helmed by her husband/manager James and featuring a beauty queen-turned-singer Chiles Stanton. Between concerts, romantic entanglements and old demons threaten to derail them all.. Tags: suicide, alcohol, adultery, country music, bar, infidelity, texas, paparazzi, musician, musical, van, addiction, biker, love, singer"} +{"id": "9424", "title": "Disturbing Behavior", "year": 1998, "duration_min": 84, "rating": 5.5, "genres": "Mystery, Horror, Science Fiction", "genres_pipe": "|Mystery|Horror|Science Fiction|", "keywords": "suicide, sex, island, nightmare, chase, police, insanity, high school, control, mind control, murder, teacher, student, brainwashing, teenager", "tags_pipe": "|suicide|sex|island|nightmare|chase|police|insanity|high school|control|mind control|murder|teacher|student|brainwashing|teenager|", "overview": "Steve Clark (James Marsden) is a newcomer in the town of Cradle Bay, and he quickly realizes that there's something odd about his high school classmates. The clique known as the \"Blue Ribbons\" are the eerie embodiment of academic excellence and clean living. But, like the rest of the town, they're a little too perfect. When Steve's rebellious friend Gavin (Nick Stahl) mysteriously joins their ranks, Steve searches for the truth with fellow misfit Rachel (Katie Holmes).", "text_for_embedding": "Disturbing Behavior (1998). Genres: Mystery, Horror, Science Fiction. Steve Clark (James Marsden) is a newcomer in the town of Cradle Bay, and he quickly realizes that there's something odd about his high school classmates. The clique known as the \"Blue Ribbons\" are the eerie embodiment of academic excellence and clean living. But, like the rest of the town, they're a little too perfect. When Steve's rebellious friend Gavin (Nick Stahl) mysteriously joins their ranks, Steve searches for the truth with fellow misfit Rachel (Katie Holmes).. Tags: suicide, sex, island, nightmare, chase, police, insanity, high school, control, mind control, murder, teacher, student, brainwashing, teenager"} +{"id": "97367", "title": "The Place Beyond the Pines", "year": 2013, "duration_min": 140, "rating": 6.8, "genres": "Drama, Crime", "genres_pipe": "|Drama|Crime|", "keywords": "corruption, father son relationship, carnival, mechanic, motorcycle, bank robbery", "tags_pipe": "|corruption|father son relationship|carnival|mechanic|motorcycle|bank robbery|", "overview": "A motorcycle stunt rider considers committing a crime in order to provide for his wife and child, an act that puts him on a collision course with a cop-turned-politician.", "text_for_embedding": "The Place Beyond the Pines (2013). Genres: Drama, Crime. A motorcycle stunt rider considers committing a crime in order to provide for his wife and child, an act that puts him on a collision course with a cop-turned-politician.. Tags: corruption, father son relationship, carnival, mechanic, motorcycle, bank robbery"} +{"id": "254904", "title": "The November Man", "year": 2014, "duration_min": 108, "rating": 6.0, "genres": "Crime, Action, Thriller", "genres_pipe": "|Crime|Action|Thriller|", "keywords": "cia, retired, agent", "tags_pipe": "|cia|retired|agent|", "overview": "An ex- CIA operative is brought back in on a very personal mission and finds himself pitted against his former pupil in a deadly game involving high level CIA officials and the Russian president-elect.", "text_for_embedding": "The November Man (2014). Genres: Crime, Action, Thriller. An ex- CIA operative is brought back in on a very personal mission and finds himself pitted against his former pupil in a deadly game involving high level CIA officials and the Russian president-elect.. Tags: cia, retired, agent"} +{"id": "18681", "title": "Eye of the Beholder", "year": 1999, "duration_min": 109, "rating": 5.3, "genres": "Drama, Mystery, Thriller", "genres_pipe": "|Drama|Mystery|Thriller|", "keywords": "beautiful woman, serial killer, secret service, blindness", "tags_pipe": "|beautiful woman|serial killer|secret service|blindness|", "overview": "A reclusive surveillance expert is hired to spy on a mysterious blackmailer, who just may be a serial killer.", "text_for_embedding": "Eye of the Beholder (1999). Genres: Drama, Mystery, Thriller. A reclusive surveillance expert is hired to spy on a mysterious blackmailer, who just may be a serial killer.. Tags: beautiful woman, serial killer, secret service, blindness"} +{"id": "12162", "title": "The Hurt Locker", "year": 2008, "duration_min": 131, "rating": 7.2, "genres": "Drama, Thriller, War", "genres_pipe": "|Drama|Thriller|War|", "keywords": "sniper, explosive, loyalty, u.s. army, iraq, car bomb, suspense, tension, iraq war, desert, bomb squad, body armor, woman director, army sergeant", "tags_pipe": "|sniper|explosive|loyalty|u.s. army|iraq|car bomb|suspense|tension|iraq war|desert|bomb squad|body armor|woman director|army sergeant|", "overview": "Forced to play a dangerous game of cat-and-mouse in the chaos of war, an elite Army bomb squad unit must come together in a city where everyone is a potential enemy and every object could be a deadly bomb.", "text_for_embedding": "The Hurt Locker (2008). Genres: Drama, Thriller, War. Forced to play a dangerous game of cat-and-mouse in the chaos of war, an elite Army bomb squad unit must come together in a city where everyone is a potential enemy and every object could be a deadly bomb.. Tags: sniper, explosive, loyalty, u.s. army, iraq, car bomb, suspense, tension, iraq war, desert, bomb squad, body armor, woman director, army sergeant"} +{"id": "11495", "title": "Firestarter", "year": 1984, "duration_min": 114, "rating": 5.9, "genres": "Fantasy, Drama, Horror, Action, Thriller", "genres_pipe": "|Fantasy|Drama|Horror|Action|Thriller|", "keywords": "fire, telepathy, intelligence, college", "tags_pipe": "|fire|telepathy|intelligence|college|", "overview": "As youths, Andy McGee (David Keith) and his future wife, Vicky (Heather Locklear), participated in secret experiments, allowing themselves to be subjected to mysterious medical tests. Years later, the couple's daughter, Charlie (Drew Barrymore), begins to exhibit the ability of setting fires solely with her mind. This volatile talent makes the youngster extremely dangerous and soon she becomes a target for the enigmatic agency known as \"The Shop.\"", "text_for_embedding": "Firestarter (1984). Genres: Fantasy, Drama, Horror, Action, Thriller. As youths, Andy McGee (David Keith) and his future wife, Vicky (Heather Locklear), participated in secret experiments, allowing themselves to be subjected to mysterious medical tests. Years later, the couple's daughter, Charlie (Drew Barrymore), begins to exhibit the ability of setting fires solely with her mind. This volatile talent makes the youngster extremely dangerous and soon she becomes a target for the enigmatic agency known as \"The Shop.\". Tags: fire, telepathy, intelligence, college"} +{"id": "64689", "title": "Killing Them Softly", "year": 2012, "duration_min": 97, "rating": 5.8, "genres": "Crime, Thriller", "genres_pipe": "|Crime|Thriller|", "keywords": "poker, gambling, robbery, based on novel, hitman, economy, murder, blood, hit, mobster, gangster, criminal", "tags_pipe": "|poker|gambling|robbery|based on novel|hitman|economy|murder|blood|hit|mobster|gangster|criminal|", "overview": "Jackie Cogan is an enforcer hired to restore order after three dumb guys rob a Mob protected card game, causing the local criminal economy to collapse.", "text_for_embedding": "Killing Them Softly (2012). Genres: Crime, Thriller. Jackie Cogan is an enforcer hired to restore order after three dumb guys rob a Mob protected card game, causing the local criminal economy to collapse.. Tags: poker, gambling, robbery, based on novel, hitman, economy, murder, blood, hit, mobster, gangster, criminal"} +{"id": "157849", "title": "A Most Wanted Man", "year": 2014, "duration_min": 121, "rating": 6.5, "genres": "Thriller", "genres_pipe": "|Thriller|", "keywords": "terror, muslim, intelligence, immigrant, torture, surveillance, security", "tags_pipe": "|terror|muslim|intelligence|immigrant|torture|surveillance|security|", "overview": "When a half-Chechen, half-Russian, tortured half-to-death immigrant turns up in Hamburg's Islamic community, laying claim to his father's ill gotten fortune, both German and US security agencies take a close interest: as the clock ticks down and the stakes rise, the race is on to establish this most wanted man's true identity - oppressed victim or destruction-bent extremist?", "text_for_embedding": "A Most Wanted Man (2014). Genres: Thriller. When a half-Chechen, half-Russian, tortured half-to-death immigrant turns up in Hamburg's Islamic community, laying claim to his father's ill gotten fortune, both German and US security agencies take a close interest: as the clock ticks down and the stakes rise, the race is on to establish this most wanted man's true identity - oppressed victim or destruction-bent extremist?. Tags: terror, muslim, intelligence, immigrant, torture, surveillance, security"} +{"id": "13166", "title": "Freddy Got Fingered", "year": 2001, "duration_min": 87, "rating": 4.6, "genres": "Comedy", "genres_pipe": "|Comedy|", "keywords": "wheelchair, slacker, sausage", "tags_pipe": "|wheelchair|slacker|sausage|", "overview": "An unemployed cartoonist moves back in with his parents and younger brother Freddy. When his parents demand he leave, he begins to spread rumors that his father is sexually abusing Freddy.", "text_for_embedding": "Freddy Got Fingered (2001). Genres: Comedy. An unemployed cartoonist moves back in with his parents and younger brother Freddy. When his parents demand he leave, he begins to spread rumors that his father is sexually abusing Freddy.. Tags: wheelchair, slacker, sausage"} +{"id": "15511", "title": "VeggieTales: The Pirates Who Don't Do Anything", "year": 2008, "duration_min": 85, "rating": 5.9, "genres": "Adventure, Animation, Comedy, Science Fiction, Family", "genres_pipe": "|Adventure|Animation|Comedy|Science Fiction|Family|", "keywords": "brother brother relationship, hostage, vegetable, children, pirate, king, waiter, aftercreditsstinger, duringcreditsstinger", "tags_pipe": "|brother brother relationship|hostage|vegetable|children|pirate|king|waiter|aftercreditsstinger|duringcreditsstinger|", "overview": "Set Sail For Adventure! A boatload of beloved VeggieTales pals embark on a fun and fresh pirate adventure with their trademark humor and silly songs in The Pirates Who Don't Do Anything - A VeggieTales Movie! Larry the Cucumber, Mr. Lunt and Pa Grape find themselves on the ride of their lives when they are mysteriously whisked back to the time when pirates ruled the high seas.", "text_for_embedding": "VeggieTales: The Pirates Who Don't Do Anything (2008). Genres: Adventure, Animation, Comedy, Science Fiction, Family. Set Sail For Adventure! A boatload of beloved VeggieTales pals embark on a fun and fresh pirate adventure with their trademark humor and silly songs in The Pirates Who Don't Do Anything - A VeggieTales Movie! Larry the Cucumber, Mr. Lunt and Pa Grape find themselves on the ride of their lives when they are mysteriously whisked back to the time when pirates ruled the high seas.. Tags: brother brother relationship, hostage, vegetable, children, pirate, king, waiter, aftercreditsstinger, duringcreditsstinger"} +{"id": "37003", "title": "U2 3D", "year": 2007, "duration_min": 85, "rating": 6.7, "genres": "Music, Documentary", "genres_pipe": "|Music|Documentary|", "keywords": "", "tags_pipe": "", "overview": "A 3-D presentation of U2's global \"Vertigo\" tour. Shot at seven different shows, this production employs the greatest number of 3-D cameras ever used for a single project.", "text_for_embedding": "U2 3D (2007). Genres: Music, Documentary. A 3-D presentation of U2's global \"Vertigo\" tour. Shot at seven different shows, this production employs the greatest number of 3-D cameras ever used for a single project.. Tags: "} +{"id": "12211", "title": "Highlander: Endgame", "year": 2000, "duration_min": 87, "rating": 4.4, "genres": "Action, Fantasy, Science Fiction", "genres_pipe": "|Action|Fantasy|Science Fiction|", "keywords": "loss of lover, antiquary, loss of powers, death of a friend, immortality", "tags_pipe": "|loss of lover|antiquary|loss of powers|death of a friend|immortality|", "overview": "Immortals Connor and Duncan Macleod join forces against a man from Connor's distant past in the highlands of Scotland, Kell, an immensely powerful immortal who leads an army of equally powerful and deadly immortal swordsmen and assassins. No immortal alive has been able to defeat Kell yet, and neither Connor nor Duncan are skilled enough themselves to take him on and live. The two of them eventually come to one inevitable conclusion; one of them must die so that the combined power of both the Highlanders can bring down Kell for good. There can be only one... the question is, who will it be?", "text_for_embedding": "Highlander: Endgame (2000). Genres: Action, Fantasy, Science Fiction. Immortals Connor and Duncan Macleod join forces against a man from Connor's distant past in the highlands of Scotland, Kell, an immensely powerful immortal who leads an army of equally powerful and deadly immortal swordsmen and assassins. No immortal alive has been able to defeat Kell yet, and neither Connor nor Duncan are skilled enough themselves to take him on and live. The two of them eventually come to one inevitable conclusion; one of them must die so that the combined power of both the Highlanders can bring down Kell for good. There can be only one... the question is, who will it be?. Tags: loss of lover, antiquary, loss of powers, death of a friend, immortality"} +{"id": "13816", "title": "Idlewild", "year": 2006, "duration_min": 121, "rating": 5.1, "genres": "Crime, Drama, Music", "genres_pipe": "|Crime|Drama|Music|", "keywords": "mortician, tied to chair, song and dance, piano lesson, fisticuffs, talking to the dead, close-up", "tags_pipe": "|mortician|tied to chair|song and dance|piano lesson|fisticuffs|talking to the dead|close-up|", "overview": "A musical set in the Prohibition-era American South, where a speakeasy performer and club manager Rooster must contend with gangsters who have their eyes on the club while his piano player and partner Percival must choose between his love, Angel or his obligations to his father.", "text_for_embedding": "Idlewild (2006). Genres: Crime, Drama, Music. A musical set in the Prohibition-era American South, where a speakeasy performer and club manager Rooster must contend with gangsters who have their eyes on the club while his piano player and partner Percival must choose between his love, Angel or his obligations to his father.. Tags: mortician, tied to chair, song and dance, piano lesson, fisticuffs, talking to the dead, close-up"} +{"id": "51828", "title": "One Day", "year": 2011, "duration_min": 107, "rating": 7.0, "genres": "Drama, Romance", "genres_pipe": "|Drama|Romance|", "keywords": "based on novel, comedian, job, love, male female relationship, author, writer, divorce, best friends in love, woman director, missed opportunity", "tags_pipe": "|based on novel|comedian|job|love|male female relationship|author|writer|divorce|best friends in love|woman director|missed opportunity|", "overview": "A romantic comedy centered on Dexter and Emma, who first meet during their graduation in 1988 and proceed to keep in touch regularly. The film follows what they do on July 15 annually, usually doing something together.", "text_for_embedding": "One Day (2011). Genres: Drama, Romance. A romantic comedy centered on Dexter and Emma, who first meet during their graduation in 1988 and proceed to keep in touch regularly. The film follows what they do on July 15 annually, usually doing something together.. Tags: based on novel, comedian, job, love, male female relationship, author, writer, divorce, best friends in love, woman director, missed opportunity"} +{"id": "22798", "title": "Whip It", "year": 2009, "duration_min": 111, "rating": 6.7, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "sport, roller derby, duringcreditsstinger, woman director", "tags_pipe": "|sport|roller derby|duringcreditsstinger|woman director|", "overview": "In Bodeen, Texas, Land Of The Dragon, an indie-rock loving misfit finds a way of dealing with her small-town misery after she discovers a roller derby league in nearby Austin.", "text_for_embedding": "Whip It (2009). Genres: Drama. In Bodeen, Texas, Land Of The Dragon, an indie-rock loving misfit finds a way of dealing with her small-town misery after she discovers a roller derby league in nearby Austin.. Tags: sport, roller derby, duringcreditsstinger, woman director"} +{"id": "7501", "title": "Knockaround Guys", "year": 2001, "duration_min": 92, "rating": 5.9, "genres": "Crime, Thriller", "genres_pipe": "|Crime|Thriller|", "keywords": "montana, sheriff, pile of dead bodies, money, mobster", "tags_pipe": "|montana|sheriff|pile of dead bodies|money|mobster|", "overview": "Four sons of well-known New York mobsters must retrieve a bag of cash from a small Montana town ruled by a corrupt sheriff.", "text_for_embedding": "Knockaround Guys (2001). Genres: Crime, Thriller. Four sons of well-known New York mobsters must retrieve a bag of cash from a small Montana town ruled by a corrupt sheriff.. Tags: montana, sheriff, pile of dead bodies, money, mobster"} +{"id": "10743", "title": "Confidence", "year": 2003, "duration_min": 97, "rating": 6.4, "genres": "Action, Comedy, Thriller, Crime", "genres_pipe": "|Action|Comedy|Thriller|Crime|", "keywords": "grifter, con, big con, con game, premarital sex", "tags_pipe": "|grifter|con|big con|con game|premarital sex|", "overview": "What Jake Vig doesn't know just might get him killed. A sharp and polished grifter, Jake has just swindled thousands of dollars from the unsuspecting Lionel Dolby with the help of his crew. It becomes clear that Lionel wasn't just any mark, he was an accountant for eccentric crime boss Winston King. Jake and his crew will have to stay one step ahead of both the criminals and the cops to finally settle their debt.", "text_for_embedding": "Confidence (2003). Genres: Action, Comedy, Thriller, Crime. What Jake Vig doesn't know just might get him killed. A sharp and polished grifter, Jake has just swindled thousands of dollars from the unsuspecting Lionel Dolby with the help of his crew. It becomes clear that Lionel wasn't just any mark, he was an accountant for eccentric crime boss Winston King. Jake and his crew will have to stay one step ahead of both the criminals and the cops to finally settle their debt.. Tags: grifter, con, big con, con game, premarital sex"} +{"id": "37718", "title": "The Muse", "year": 1999, "duration_min": 97, "rating": 5.3, "genres": "Fantasy, Comedy", "genres_pipe": "|Fantasy|Comedy|", "keywords": "screenwriter, muse", "tags_pipe": "|screenwriter|muse|", "overview": "What happens when a screenwriter (Brooks) loses his edge, he turns to anyone he can for help... even if it's the mythical \"Zeus's Daughter\" (Stone). And he's willing to pay, albeit reluctantly, whatever price it takes to satisfy this goddess, especially when her advice gets him going again on a sure-fire script. However, this is not the limit of her help, she also gets the writer's wife (MacDowell) going on her own bakery enterprise, much to the chagrin of Brooks, who has already had to make many personal sacrifices for his own help.", "text_for_embedding": "The Muse (1999). Genres: Fantasy, Comedy. What happens when a screenwriter (Brooks) loses his edge, he turns to anyone he can for help... even if it's the mythical \"Zeus's Daughter\" (Stone). And he's willing to pay, albeit reluctantly, whatever price it takes to satisfy this goddess, especially when her advice gets him going again on a sure-fire script. However, this is not the limit of her help, she also gets the writer's wife (MacDowell) going on her own bakery enterprise, much to the chagrin of Brooks, who has already had to make many personal sacrifices for his own help.. Tags: screenwriter, muse"} +{"id": "15237", "title": "De-Lovely", "year": 2004, "duration_min": 125, "rating": 6.3, "genres": "Drama, Music", "genres_pipe": "|Drama|Music|", "keywords": "musical, biography, hollywood, theater", "tags_pipe": "|musical|biography|hollywood|theater|", "overview": "From Paris to Venice to Broadway to Hollywood, the lives of Cole Porter and his wife, Linda were never less than glamorous and wildly unconventional. And though Cole's thirst for life strained their marriage, Linda never stopped being his muse, inspiring some of the greatest sons of the twentieth century.", "text_for_embedding": "De-Lovely (2004). Genres: Drama, Music. From Paris to Venice to Broadway to Hollywood, the lives of Cole Porter and his wife, Linda were never less than glamorous and wildly unconventional. And though Cole's thirst for life strained their marriage, Linda never stopped being his muse, inspiring some of the greatest sons of the twentieth century.. Tags: musical, biography, hollywood, theater"} +{"id": "9686", "title": "New York Stories", "year": 1989, "duration_min": 124, "rating": 6.2, "genres": "Comedy, Drama, Romance", "genres_pipe": "|Comedy|Drama|Romance|", "keywords": "new york, mother, hotel, robbery, jealousy, obsession, artist, gallery, assistant, anthology, lawyer, city, art, occult, young", "tags_pipe": "|new york|mother|hotel|robbery|jealousy|obsession|artist|gallery|assistant|anthology|lawyer|city|art|occult|young|", "overview": "Three stories happening in New York. The first, by Scorsese, is about a painter who creates his works helped by high volume music and an attractive assistant; second, by Coppola, is about a rich and bold 12 years old who helps her separated parents to reconciliate; third, by Allen, is a witty piece of comedy about the impossibility of getting rid of the son's role.", "text_for_embedding": "New York Stories (1989). Genres: Comedy, Drama, Romance. Three stories happening in New York. The first, by Scorsese, is about a painter who creates his works helped by high volume music and an attractive assistant; second, by Coppola, is about a rich and bold 12 years old who helps her separated parents to reconciliate; third, by Allen, is a witty piece of comedy about the impossibility of getting rid of the son's role.. Tags: new york, mother, hotel, robbery, jealousy, obsession, artist, gallery, assistant, anthology, lawyer, city, art, occult, young"} +{"id": "17644", "title": "Barney's Great Adventure", "year": 1998, "duration_min": 76, "rating": 2.9, "genres": "Family", "genres_pipe": "|Family|", "keywords": "", "tags_pipe": "", "overview": "Mom and dad dump son Cody, daughter Abby, her best friend Marcella and a baby on the farm with Grandpa and Grandma. Purple dinosaur Barney soon appears to entertain kids, and when a large colorful egg deposited on a farm by a shooting star is accidentally carted off, Barney and kids start their chase for it", "text_for_embedding": "Barney's Great Adventure (1998). Genres: Family. Mom and dad dump son Cody, daughter Abby, her best friend Marcella and a baby on the farm with Grandpa and Grandma. Purple dinosaur Barney soon appears to entertain kids, and when a large colorful egg deposited on a farm by a shooting star is accidentally carted off, Barney and kids start their chase for it. Tags: "} +{"id": "97430", "title": "The Man with the Iron Fists", "year": 2012, "duration_min": 96, "rating": 5.2, "genres": "Action", "genres_pipe": "|Action|", "keywords": "blacksmith, brothel, femme fatale, violence, ancient china, crossbow, duringcreditsstinger, lens flare, feudality", "tags_pipe": "|blacksmith|brothel|femme fatale|violence|ancient china|crossbow|duringcreditsstinger|lens flare|feudality|", "overview": "In feudal China, a blacksmith who makes weapons for a small village is put in the position where he must defend himself and his fellow villagers.", "text_for_embedding": "The Man with the Iron Fists (2012). Genres: Action. In feudal China, a blacksmith who makes weapons for a small village is put in the position where he must defend himself and his fellow villagers.. Tags: blacksmith, brothel, femme fatale, violence, ancient china, crossbow, duringcreditsstinger, lens flare, feudality"} +{"id": "12257", "title": "Home Fries", "year": 1998, "duration_min": 93, "rating": 4.8, "genres": "Drama, Comedy, Romance", "genres_pipe": "|Drama|Comedy|Romance|", "keywords": "waitress, infidelity, planned murder, pregnancy and birth, funeral, widow, hamburger, junk food", "tags_pipe": "|waitress|infidelity|planned murder|pregnancy and birth|funeral|widow|hamburger|junk food|", "overview": "Dorian and Angus chase down their womanizing stepfather with a helicopter, frightening him to death. In his effort to cover their tracks, Dorian begins investigating his stepfather's mistress, Sally. She works at a fast-food drive-through, she's pregnant and Dorian quickly falls in love with her. Unfortunately, his scheming mother wants Sally dead. And Sally isn't sure she wants Dorian to be her child's father and also his brother.", "text_for_embedding": "Home Fries (1998). Genres: Drama, Comedy, Romance. Dorian and Angus chase down their womanizing stepfather with a helicopter, frightening him to death. In his effort to cover their tracks, Dorian begins investigating his stepfather's mistress, Sally. She works at a fast-food drive-through, she's pregnant and Dorian quickly falls in love with her. Unfortunately, his scheming mother wants Sally dead. And Sally isn't sure she wants Dorian to be her child's father and also his brother.. Tags: waitress, infidelity, planned murder, pregnancy and birth, funeral, widow, hamburger, junk food"} +{"id": "13539", "title": "Here On Earth", "year": 2000, "duration_min": 96, "rating": 5.4, "genres": "Romance", "genres_pipe": "|Romance|", "keywords": "car race, private school, diner", "tags_pipe": "|car race|private school|diner|", "overview": "A rich college kid is taught a lesson after a joy ride ends up destroying a country restaurant.", "text_for_embedding": "Here On Earth (2000). Genres: Romance. A rich college kid is taught a lesson after a joy ride ends up destroying a country restaurant.. Tags: car race, private school, diner"} +{"id": "68", "title": "Brazil", "year": 1985, "duration_min": 132, "rating": 7.5, "genres": "Comedy, Science Fiction", "genres_pipe": "|Comedy|Science Fiction|", "keywords": "bureaucracy, police state, terror, great britain, dream, dystopia, government, anarchic comedy", "tags_pipe": "|bureaucracy|police state|terror|great britain|dream|dystopia|government|anarchic comedy|", "overview": "Low-level bureaucrat Sam Lowry escapes the monotony of his day-to-day life through a recurring daydream of himself as a virtuous hero saving a beautiful damsel. Investigating a case that led to the wrongful arrest and eventual death of an innocent man instead of wanted terrorist Harry Tuttle, he meets the woman from his daydream, and in trying to help her gets caught in a web of mistaken identities, mindless bureaucracy and lies.", "text_for_embedding": "Brazil (1985). Genres: Comedy, Science Fiction. Low-level bureaucrat Sam Lowry escapes the monotony of his day-to-day life through a recurring daydream of himself as a virtuous hero saving a beautiful damsel. Investigating a case that led to the wrongful arrest and eventual death of an innocent man instead of wanted terrorist Harry Tuttle, he meets the woman from his daydream, and in trying to help her gets caught in a web of mistaken identities, mindless bureaucracy and lies.. Tags: bureaucracy, police state, terror, great britain, dream, dystopia, government, anarchic comedy"} +{"id": "14024", "title": "Raise Your Voice", "year": 2004, "duration_min": 103, "rating": 6.0, "genres": "Music, Drama, Romance", "genres_pipe": "|Music|Drama|Romance|", "keywords": "music, life's dream, aspiring singer, singer, teenager, death of brother, grieving, music school, overprotective father", "tags_pipe": "|music|life's dream|aspiring singer|singer|teenager|death of brother|grieving|music school|overprotective father|", "overview": "Raise Your Voice is a coming-of-age story centered around a small-town singer, brokenhearted by the death of her brother in a car crash, who had secretly submitted her for a summer session at a performing arts academy in Los Angeles. In the performing arts academy, she experiences a whole new way of life in the big city, far from the small town lifestyle she's used to.", "text_for_embedding": "Raise Your Voice (2004). Genres: Music, Drama, Romance. Raise Your Voice is a coming-of-age story centered around a small-town singer, brokenhearted by the death of her brother in a car crash, who had secretly submitted her for a summer session at a performing arts academy in Los Angeles. In the performing arts academy, she experiences a whole new way of life in the big city, far from the small town lifestyle she's used to.. Tags: music, life's dream, aspiring singer, singer, teenager, death of brother, grieving, music school, overprotective father"} +{"id": "115", "title": "The Big Lebowski", "year": 1998, "duration_min": 117, "rating": 7.8, "genres": "Comedy, Crime", "genres_pipe": "|Comedy|Crime|", "keywords": "white russian, dude, bowling, vietnam veteran, carpet, nihilism, heart attack, kidnapping, lsd, marijuana, los angeles, millionaire, cowboy, ashes, impregnation", "tags_pipe": "|white russian|dude|bowling|vietnam veteran|carpet|nihilism|heart attack|kidnapping|lsd|marijuana|los angeles|millionaire|cowboy|ashes|impregnation|", "overview": "Jeffrey \"The Dude\" Lebowski, a Los Angeles slacker who only wants to bowl and drink white Russians, is mistaken for another Jeffrey Lebowski, a wheelchair-bound millionaire, and finds himself dragged into a strange series of events involving nihilists, adult film producers, ferrets, errant toes, and large sums of money.", "text_for_embedding": "The Big Lebowski (1998). Genres: Comedy, Crime. Jeffrey \"The Dude\" Lebowski, a Los Angeles slacker who only wants to bowl and drink white Russians, is mistaken for another Jeffrey Lebowski, a wheelchair-bound millionaire, and finds himself dragged into a strange series of events involving nihilists, adult film producers, ferrets, errant toes, and large sums of money.. Tags: white russian, dude, bowling, vietnam veteran, carpet, nihilism, heart attack, kidnapping, lsd, marijuana, los angeles, millionaire, cowboy, ashes, impregnation"} +{"id": "7874", "title": "Black Snake Moan", "year": 2006, "duration_min": 116, "rating": 6.6, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "southern usa, blues, military service, independent film", "tags_pipe": "|southern usa|blues|military service|independent film|", "overview": "A God-fearing bluesman takes to a wild young woman who, as a victim of childhood sexual abuse, is looking everywhere for love, but never quite finding it.", "text_for_embedding": "Black Snake Moan (2006). Genres: Drama. A God-fearing bluesman takes to a wild young woman who, as a victim of childhood sexual abuse, is looking everywhere for love, but never quite finding it.. Tags: southern usa, blues, military service, independent film"} +{"id": "4911", "title": "Dark Blue", "year": 2002, "duration_min": 118, "rating": 6.5, "genres": "Action, Crime, Drama, Thriller", "genres_pipe": "|Action|Crime|Drama|Thriller|", "keywords": "corruption, police brutality, riot, ghetto, street war, hold-up robbery, moral conflict, special unit, police everyday life, cops, independent film, los angeles, family", "tags_pipe": "|corruption|police brutality|riot|ghetto|street war|hold-up robbery|moral conflict|special unit|police everyday life|cops|independent film|los angeles|family|", "overview": "Set during the Rodney King riots, a robbery homicide investigation triggers a series of events that will cause a corrupt LAPD officer to question his tactics.", "text_for_embedding": "Dark Blue (2002). Genres: Action, Crime, Drama, Thriller. Set during the Rodney King riots, a robbery homicide investigation triggers a series of events that will cause a corrupt LAPD officer to question his tactics.. Tags: corruption, police brutality, riot, ghetto, street war, hold-up robbery, moral conflict, special unit, police everyday life, cops, independent film, los angeles, family"} +{"id": "1988", "title": "A Mighty Heart", "year": 2007, "duration_min": 100, "rating": 6.7, "genres": "Drama, Thriller", "genres_pipe": "|Drama|Thriller|", "keywords": "terror, journalism, new love, sadness, fbi, despair, hostage drama, support, hope, friendship, faith, loss, pakistan, murder, independent film", "tags_pipe": "|terror|journalism|new love|sadness|fbi|despair|hostage drama|support|hope|friendship|faith|loss|pakistan|murder|independent film|", "overview": "Based on Mariane Pearl's account of the terrifying and unforgettable story of her husband, Wall Street Journal reporter Danny Pearl's life and death.", "text_for_embedding": "A Mighty Heart (2007). Genres: Drama, Thriller. Based on Mariane Pearl's account of the terrifying and unforgettable story of her husband, Wall Street Journal reporter Danny Pearl's life and death.. Tags: terror, journalism, new love, sadness, fbi, despair, hostage drama, support, hope, friendship, faith, loss, pakistan, murder, independent film"} +{"id": "16222", "title": "Whatever It Takes", "year": 2000, "duration_min": 94, "rating": 5.0, "genres": "Drama, Comedy, Romance", "genres_pipe": "|Drama|Comedy|Romance|", "keywords": "", "tags_pipe": "", "overview": "A nerdy teen, Ryan Woodman is smitten with the popular and gorgeous Ashley Grant, who apparently has no interest in him. Meanwhile, dim star athlete Chris Campbell has his eye on Ryan's brainy and beautiful friend, Maggie Carter. The two agree to help each other in their romantic quests, but, as they come closer to their goals, both Ryan and Chris suspect that they might be pursuing the wrong girls.", "text_for_embedding": "Whatever It Takes (2000). Genres: Drama, Comedy, Romance. A nerdy teen, Ryan Woodman is smitten with the popular and gorgeous Ashley Grant, who apparently has no interest in him. Meanwhile, dim star athlete Chris Campbell has his eye on Ryan's brainy and beautiful friend, Maggie Carter. The two agree to help each other in their romantic quests, but, as they come closer to their goals, both Ryan and Chris suspect that they might be pursuing the wrong girls.. Tags: "} +{"id": "9557", "title": "Boat Trip", "year": 2002, "duration_min": 94, "rating": 4.7, "genres": "Comedy", "genres_pipe": "|Comedy|", "keywords": "gay, bikini, cruise ship, babes", "tags_pipe": "|gay|bikini|cruise ship|babes|", "overview": "Two straight men mistakenly end up on a \"gays only\" cruise.", "text_for_embedding": "Boat Trip (2002). Genres: Comedy. Two straight men mistakenly end up on a \"gays only\" cruise.. Tags: gay, bikini, cruise ship, babes"} +{"id": "9026", "title": "The Importance of Being Earnest", "year": 2002, "duration_min": 97, "rating": 6.7, "genres": "Comedy, Drama, History, Romance", "genres_pipe": "|Comedy|Drama|History|Romance|", "keywords": "new love, country estate, country house, false identity, beguilement, relatives, victorian england, pleasure", "tags_pipe": "|new love|country estate|country house|false identity|beguilement|relatives|victorian england|pleasure|", "overview": "Two young gentlemen living in 1890s England use the same pseudonym (\"Ernest\") on the sly, which is fine until they both fall in love with women using that name, which leads to a comedy of mistaken identities...", "text_for_embedding": "The Importance of Being Earnest (2002). Genres: Comedy, Drama, History, Romance. Two young gentlemen living in 1890s England use the same pseudonym (\"Ernest\") on the sly, which is fine until they both fall in love with women using that name, which leads to a comedy of mistaken identities.... Tags: new love, country estate, country house, false identity, beguilement, relatives, victorian england, pleasure"} +{"id": "57943", "title": "The Love Letter", "year": 1998, "duration_min": 98, "rating": 4.7, "genres": "Comedy, Drama, Fantasy, Romance", "genres_pipe": "|Comedy|Drama|Fantasy|Romance|", "keywords": "", "tags_pipe": "", "overview": "20th century computer games designer Scott exchanges love letters with 19th century poet Elizabeth Whitcomb through an antique desk that can make letters travel through time.", "text_for_embedding": "The Love Letter (1998). Genres: Comedy, Drama, Fantasy, Romance. 20th century computer games designer Scott exchanges love letters with 19th century poet Elizabeth Whitcomb through an antique desk that can make letters travel through time.. Tags: "} +{"id": "18276", "title": "Hoot", "year": 2006, "duration_min": 91, "rating": 5.5, "genres": "Drama, Family", "genres_pipe": "|Drama|Family|", "keywords": "owl, teenager, animal protection, based on young adult novel", "tags_pipe": "|owl|teenager|animal protection|based on young adult novel|", "overview": "A young man (Lerman) moves from Montana to Florida with his family, where he's compelled to engage in a fight to protect a population of endangered owls.", "text_for_embedding": "Hoot (2006). Genres: Drama, Family. A young man (Lerman) moves from Montana to Florida with his family, where he's compelled to engage in a fight to protect a population of endangered owls.. Tags: owl, teenager, animal protection, based on young adult novel"} +{"id": "8321", "title": "In Bruges", "year": 2008, "duration_min": 107, "rating": 7.4, "genres": "Comedy, Drama, Crime", "genres_pipe": "|Comedy|Drama|Crime|", "keywords": "bruges belgium, town square, vietnamese, canadian stereotype, skinned alive, gruuthuse museum bruges", "tags_pipe": "|bruges belgium|town square|vietnamese|canadian stereotype|skinned alive|gruuthuse museum bruges|", "overview": "Ray and Ken, two hit men, are in Bruges, Belgium, waiting for their next mission. While they are there they have time to think and discuss their previous assignment. When the mission is revealed to Ken, it is not what he expected.", "text_for_embedding": "In Bruges (2008). Genres: Comedy, Drama, Crime. Ray and Ken, two hit men, are in Bruges, Belgium, waiting for their next mission. While they are there they have time to think and discuss their previous assignment. When the mission is revealed to Ken, it is not what he expected.. Tags: bruges belgium, town square, vietnamese, canadian stereotype, skinned alive, gruuthuse museum bruges"} +{"id": "72359", "title": "Peeples", "year": 2013, "duration_min": 95, "rating": 5.6, "genres": "Comedy", "genres_pipe": "|Comedy|", "keywords": "duringcreditsstinger, woman director", "tags_pipe": "|duringcreditsstinger|woman director|", "overview": "The story follows what happens when a child psychologist surprises his girlfriend by showing up at her political family's annual get-together at their Sag Harbor vacation home only to find them desperately in need of therapy.", "text_for_embedding": "Peeples (2013). Genres: Comedy. The story follows what happens when a child psychologist surprises his girlfriend by showing up at her political family's annual get-together at their Sag Harbor vacation home only to find them desperately in need of therapy.. Tags: duringcreditsstinger, woman director"} +{"id": "10186", "title": "The Rocker", "year": 2008, "duration_min": 102, "rating": 5.6, "genres": "Comedy, Music", "genres_pipe": "|Comedy|Music|", "keywords": "1970s, drums, groupie, musical, rock, heavy metal, headbanging", "tags_pipe": "|1970s|drums|groupie|musical|rock|heavy metal|headbanging|", "overview": "Rob \"Fish\" Fishman is the drummer in '80s hair metal band Vesuvius. He's unceremoniously booted as the group signs a big record deal, is out of the music world for 20 years - and then receives a second chance with his nephew's band.", "text_for_embedding": "The Rocker (2008). Genres: Comedy, Music. Rob \"Fish\" Fishman is the drummer in '80s hair metal band Vesuvius. He's unceremoniously booted as the group signs a big record deal, is out of the music world for 20 years - and then receives a second chance with his nephew's band.. Tags: 1970s, drums, groupie, musical, rock, heavy metal, headbanging"} +{"id": "25704", "title": "Post Grad", "year": 2009, "duration_min": 89, "rating": 5.0, "genres": "Comedy", "genres_pipe": "|Comedy|", "keywords": "career, family, unemployment, woman director, graduation speech", "tags_pipe": "|career|family|unemployment|woman director|graduation speech|", "overview": "Ryden Malby has a master plan. Graduate college, get a great job, hang out with her best friend and find the perfect guy. But her plan spins hilariously out of control when she’s forced to move back home with her eccentric family.", "text_for_embedding": "Post Grad (2009). Genres: Comedy. Ryden Malby has a master plan. Graduate college, get a great job, hang out with her best friend and find the perfect guy. But her plan spins hilariously out of control when she’s forced to move back home with her eccentric family.. Tags: career, family, unemployment, woman director, graduation speech"} +{"id": "133694", "title": "Promised Land", "year": 2012, "duration_min": 106, "rating": 6.0, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "small town, campaign, salesman, farmland, natural gas, fracking", "tags_pipe": "|small town|campaign|salesman|farmland|natural gas|fracking|", "overview": "A salesman for a natural gas company experiences life-changing events after arriving in a small town, where his corporation wants to tap into the available resources.", "text_for_embedding": "Promised Land (2012). Genres: Drama. A salesman for a natural gas company experiences life-changing events after arriving in a small town, where his corporation wants to tap into the available resources.. Tags: small town, campaign, salesman, farmland, natural gas, fracking"} +{"id": "19265", "title": "Whatever Works", "year": 2009, "duration_min": 92, "rating": 6.8, "genres": "Comedy, Romance", "genres_pipe": "|Comedy|Romance|", "keywords": "love at first sight, runaway, age difference, naivety, christian, marriage, atheist, misanthrope, eccentric, religion, dating, new york city, older man younger woman relationship, limp", "tags_pipe": "|love at first sight|runaway|age difference|naivety|christian|marriage|atheist|misanthrope|eccentric|religion|dating|new york city|older man younger woman relationship|limp|", "overview": "Whatever Works explores the relationship between a crotchety misanthrope, Boris and a naïve, impressionable young runaway from the south, Melody. When Melody's uptight parents arrive in New York to rescue her, they are quickly drawn into wildly unexpected romantic entanglements. Everyone discovers that finding love is just a combination of lucky chance and appreciating the value of \"whatever works.\"", "text_for_embedding": "Whatever Works (2009). Genres: Comedy, Romance. Whatever Works explores the relationship between a crotchety misanthrope, Boris and a naïve, impressionable young runaway from the south, Melody. When Melody's uptight parents arrive in New York to rescue her, they are quickly drawn into wildly unexpected romantic entanglements. Everyone discovers that finding love is just a combination of lucky chance and appreciating the value of \"whatever works.\". Tags: love at first sight, runaway, age difference, naivety, christian, marriage, atheist, misanthrope, eccentric, religion, dating, new york city, older man younger woman relationship, limp"} +{"id": "36047", "title": "The In Crowd", "year": 2000, "duration_min": 105, "rating": 4.7, "genres": "Thriller", "genres_pipe": "|Thriller|", "keywords": "woman director", "tags_pipe": "|woman director|", "overview": "A mentally disturbed young woman takes a job at a posh country club and falls in with a clique of wealthy college kids where she's taken under the wing of the clique's twisted leader, who harbors some dark secrets too terrifying to tell.", "text_for_embedding": "The In Crowd (2000). Genres: Thriller. A mentally disturbed young woman takes a job at a posh country club and falls in with a clique of wealthy college kids where she's taken under the wing of the clique's twisted leader, who harbors some dark secrets too terrifying to tell.. Tags: woman director"} +{"id": "8053", "title": "The Three Burials of Melquiades Estrada", "year": 2005, "duration_min": 121, "rating": 7.0, "genres": "Adventure, Crime, Drama, Mystery, Western", "genres_pipe": "|Adventure|Crime|Drama|Mystery|Western|", "keywords": "border patrol, united states–mexico barrier, promise, desert", "tags_pipe": "|border patrol|united states–mexico barrier|promise|desert|", "overview": "When brash Texas border officer Mike Norton (Barry Pepper) wrongfully kills and buries the friend and ranch hand of Pete Perkins (Tommy Lee Jones), the latter is reminded of a promise he made to bury his friend, Melquiades Estrada (Julio Cesar Cedillo), in his Mexican home town. He kidnaps Norton and exhumes Estrada's corpse, and the odd caravan sets out on horseback for Mexico. As Estrada's body begins to rot, Norton begins to unravel, but Perkins remains determined to honor his vow.", "text_for_embedding": "The Three Burials of Melquiades Estrada (2005). Genres: Adventure, Crime, Drama, Mystery, Western. When brash Texas border officer Mike Norton (Barry Pepper) wrongfully kills and buries the friend and ranch hand of Pete Perkins (Tommy Lee Jones), the latter is reminded of a promise he made to bury his friend, Melquiades Estrada (Julio Cesar Cedillo), in his Mexican home town. He kidnaps Norton and exhumes Estrada's corpse, and the odd caravan sets out on horseback for Mexico. As Estrada's body begins to rot, Norton begins to unravel, but Perkins remains determined to honor his vow.. Tags: border patrol, united states–mexico barrier, promise, desert"} +{"id": "2290", "title": "Jakob the Liar", "year": 1999, "duration_min": 120, "rating": 6.0, "genres": "Comedy, Drama, History", "genres_pipe": "|Comedy|Drama|History|", "keywords": "jewry, schutzstaffel, jewish life, jewish ghetto", "tags_pipe": "|jewry|schutzstaffel|jewish life|jewish ghetto|", "overview": "In 1944 Poland, a Jewish shop keeper named Jakob is summoned to ghetto headquarters after being caught out after curfew. While waiting for the German Kommondant, Jakob overhears a German radio broadcast about Russian troop movements. Returned to the ghetto, the shopkeeper shares his information with a friend and then rumors fly that there is a secret radio within the ghetto.", "text_for_embedding": "Jakob the Liar (1999). Genres: Comedy, Drama, History. In 1944 Poland, a Jewish shop keeper named Jakob is summoned to ghetto headquarters after being caught out after curfew. While waiting for the German Kommondant, Jakob overhears a German radio broadcast about Russian troop movements. Returned to the ghetto, the shopkeeper shares his information with a friend and then rumors fly that there is a secret radio within the ghetto.. Tags: jewry, schutzstaffel, jewish life, jewish ghetto"} +{"id": "5236", "title": "Kiss Kiss Bang Bang", "year": 2005, "duration_min": 103, "rating": 7.2, "genres": "Action, Comedy, Crime, Mystery", "genres_pipe": "|Action|Comedy|Crime|Mystery|", "keywords": "detective, loser, custody battle, shooting, thief, crush, los angeles, series of murders, celebration, hoodlum, female corpse, christmas", "tags_pipe": "|detective|loser|custody battle|shooting|thief|crush|los angeles|series of murders|celebration|hoodlum|female corpse|christmas|", "overview": "A petty thief posing as an actor is brought to Los Angeles for an unlikely audition and finds himself in the middle of a murder investigation along with his high school dream girl and a detective who's been training him for his upcoming role...", "text_for_embedding": "Kiss Kiss Bang Bang (2005). Genres: Action, Comedy, Crime, Mystery. A petty thief posing as an actor is brought to Los Angeles for an unlikely audition and finds himself in the middle of a murder investigation along with his high school dream girl and a detective who's been training him for his upcoming role.... Tags: detective, loser, custody battle, shooting, thief, crush, los angeles, series of murders, celebration, hoodlum, female corpse, christmas"} +{"id": "6552", "title": "Idle Hands", "year": 1999, "duration_min": 92, "rating": 6.1, "genres": "Thriller, Comedy, Horror", "genres_pipe": "|Thriller|Comedy|Horror|", "keywords": "teenager, attic, knitting needle, noise complaint, crawling hand, angel costume, trowel, bass guitarist, priestess", "tags_pipe": "|teenager|attic|knitting needle|noise complaint|crawling hand|angel costume|trowel|bass guitarist|priestess|", "overview": "Anton is a cheerful but exceedingly non-ambitious 17-year-old stoner who lives to stay buzzed, watch TV, and moon over Molly, the beautiful girl who lives next door. However, it turns out that the old cliché about idle hands being the devil's playground has a kernel of truth after all.", "text_for_embedding": "Idle Hands (1999). Genres: Thriller, Comedy, Horror. Anton is a cheerful but exceedingly non-ambitious 17-year-old stoner who lives to stay buzzed, watch TV, and moon over Molly, the beautiful girl who lives next door. However, it turns out that the old cliché about idle hands being the devil's playground has a kernel of truth after all.. Tags: teenager, attic, knitting needle, noise complaint, crawling hand, angel costume, trowel, bass guitarist, priestess"} +{"id": "1018", "title": "Mulholland Drive", "year": 2001, "duration_min": 147, "rating": 7.6, "genres": "Thriller, Drama, Mystery", "genres_pipe": "|Thriller|Drama|Mystery|", "keywords": "schizophrenia, identity, amnesia, loss of sense of reality, suppressed past, trauma, key, bisexuality, hallucination, surreal, job interview, casting, suspense, independent film, lesbian", "tags_pipe": "|schizophrenia|identity|amnesia|loss of sense of reality|suppressed past|trauma|key|bisexuality|hallucination|surreal|job interview|casting|suspense|independent film|lesbian|", "overview": "After a car wreck on the winding Mulholland Drive renders a woman amnesic, she and a perky Hollywood-hopeful search for clues and answers across Los Angeles in a twisting venture beyond dreams and reality.", "text_for_embedding": "Mulholland Drive (2001). Genres: Thriller, Drama, Mystery. After a car wreck on the winding Mulholland Drive renders a woman amnesic, she and a perky Hollywood-hopeful search for clues and answers across Los Angeles in a twisting venture beyond dreams and reality.. Tags: schizophrenia, identity, amnesia, loss of sense of reality, suppressed past, trauma, key, bisexuality, hallucination, surreal, job interview, casting, suspense, independent film, lesbian"} +{"id": "10075", "title": "Blood and Chocolate", "year": 2007, "duration_min": 98, "rating": 5.4, "genres": "Drama, Fantasy, Horror, Romance", "genres_pipe": "|Drama|Fantasy|Horror|Romance|", "keywords": "chocolate, werewolf, woman director, interspecies romance, animal horror, based on young adult novel", "tags_pipe": "|chocolate|werewolf|woman director|interspecies romance|animal horror|based on young adult novel|", "overview": "A young teenage werewolf is torn between honoring her family's secret and her love for a man.", "text_for_embedding": "Blood and Chocolate (2007). Genres: Drama, Fantasy, Horror, Romance. A young teenage werewolf is torn between honoring her family's secret and her love for a man.. Tags: chocolate, werewolf, woman director, interspecies romance, animal horror, based on young adult novel"} +{"id": "38031", "title": "You Will Meet a Tall Dark Stranger", "year": 2010, "duration_min": 98, "rating": 5.8, "genres": "Comedy, Drama, Romance", "genres_pipe": "|Comedy|Drama|Romance|", "keywords": "", "tags_pipe": "", "overview": "Two married couples find only trouble and heartache as their complicated lives unfold. After 40 years of marriage, Alfie leaves his wife to pursue what he thinks is happiness with a call girl. His wife, Helena, reeling from abandonment, decides to follow the advice of a psychic. Sally, the daughter of Alfie and Helena, is unhappy in her marriage and develops a crush on her boss, while her husband, Roy, falls for a woman engaged to be married.", "text_for_embedding": "You Will Meet a Tall Dark Stranger (2010). Genres: Comedy, Drama, Romance. Two married couples find only trouble and heartache as their complicated lives unfold. After 40 years of marriage, Alfie leaves his wife to pursue what he thinks is happiness with a call girl. His wife, Helena, reeling from abandonment, decides to follow the advice of a psychic. Sally, the daughter of Alfie and Helena, is unhappy in her marriage and develops a crush on her boss, while her husband, Roy, falls for a woman engaged to be married.. Tags: "} +{"id": "42188", "title": "Never Let Me Go", "year": 2010, "duration_min": 104, "rating": 6.8, "genres": "Drama, Romance, Science Fiction", "genres_pipe": "|Drama|Romance|Science Fiction|", "keywords": "soul, based on novel, sadness, forgiveness, dystopia, boarding school, cloning, existentialism", "tags_pipe": "|soul|based on novel|sadness|forgiveness|dystopia|boarding school|cloning|existentialism|", "overview": "As children, Kathy, Ruth, and Tommy spend their childhood at an idyllic and secluded English boarding school. As they grow into adults, they must come to terms with the complexity and strength of their love for one another while also preparing for the haunting reality awaiting them.", "text_for_embedding": "Never Let Me Go (2010). Genres: Drama, Romance, Science Fiction. As children, Kathy, Ruth, and Tommy spend their childhood at an idyllic and secluded English boarding school. As they grow into adults, they must come to terms with the complexity and strength of their love for one another while also preparing for the haunting reality awaiting them.. Tags: soul, based on novel, sadness, forgiveness, dystopia, boarding school, cloning, existentialism"} +{"id": "112430", "title": "The Company", "year": 2007, "duration_min": 276, "rating": 7.0, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "miniseries", "tags_pipe": "|miniseries|", "overview": "Real-life figures from the Cold War era mix with a fictional story based on a group of CIA operatives and their counterparts in the KGB, MI6, and the Mossad.", "text_for_embedding": "The Company (2007). Genres: Drama. Real-life figures from the Cold War era mix with a fictional story based on a group of CIA operatives and their counterparts in the KGB, MI6, and the Mossad.. Tags: miniseries"} +{"id": "6687", "title": "Transsiberian", "year": 2008, "duration_min": 111, "rating": 6.5, "genres": "Thriller, Crime, Mystery", "genres_pipe": "|Thriller|Crime|Mystery|", "keywords": "china, married couple, backpacker, firearm, police, travel, snow, blood, cowardliness, train, drug, killer, siberia, moscow, trans-siberian railway", "tags_pipe": "|china|married couple|backpacker|firearm|police|travel|snow|blood|cowardliness|train|drug|killer|siberia|moscow|trans-siberian railway|", "overview": "A Trans-Siberian train journey from China to Moscow becomes a thrilling chase of deception and murder when an American couple encounters a mysterious pair of fellow travelers.", "text_for_embedding": "Transsiberian (2008). Genres: Thriller, Crime, Mystery. A Trans-Siberian train journey from China to Moscow becomes a thrilling chase of deception and murder when an American couple encounters a mysterious pair of fellow travelers.. Tags: china, married couple, backpacker, firearm, police, travel, snow, blood, cowardliness, train, drug, killer, siberia, moscow, trans-siberian railway"} +{"id": "13853", "title": "The Clan of the Cave Bear", "year": 1986, "duration_min": 98, "rating": 4.8, "genres": "Adventure, Drama", "genres_pipe": "|Adventure|Drama|", "keywords": "stone age, tribe, cavemen, prehistoric adventure, prehistoric times, neanderthal, prehistoric man", "tags_pipe": "|stone age|tribe|cavemen|prehistoric adventure|prehistoric times|neanderthal|prehistoric man|", "overview": "Natural changes have the clans moving. Iza, medicine woman of the \"Clan of the Cave Bear\" finds little Ayla from the \"others\"' clan - tradition would have the clan kill Ayla immediately, but Iza insists on keeping her. When the little one finds a most needed new cave, she's allowed to stay - and thrive.", "text_for_embedding": "The Clan of the Cave Bear (1986). Genres: Adventure, Drama. Natural changes have the clans moving. Iza, medicine woman of the \"Clan of the Cave Bear\" finds little Ayla from the \"others\"' clan - tradition would have the clan kill Ayla immediately, but Iza insists on keeping her. When the little one finds a most needed new cave, she's allowed to stay - and thrive.. Tags: stone age, tribe, cavemen, prehistoric adventure, prehistoric times, neanderthal, prehistoric man"} +{"id": "31306", "title": "Crazy in Alabama", "year": 1999, "duration_min": 111, "rating": 6.5, "genres": "Comedy, Drama", "genres_pipe": "|Comedy|Drama|", "keywords": "", "tags_pipe": "", "overview": "An abused wife heads to California to become a movie star while her nephew back in Alabama has to deal with a racially-motivated murder involving a corrupt sheriff.", "text_for_embedding": "Crazy in Alabama (1999). Genres: Comedy, Drama. An abused wife heads to California to become a movie star while her nephew back in Alabama has to deal with a racially-motivated murder involving a corrupt sheriff.. Tags: "} +{"id": "8461", "title": "Funny Games", "year": 2007, "duration_min": 112, "rating": 6.3, "genres": "Horror, Thriller, Crime", "genres_pipe": "|Horror|Thriller|Crime|", "keywords": "brother brother relationship, boat, psychopath, vacation, murder, suspense, neighbor, torture, dog, family", "tags_pipe": "|brother brother relationship|boat|psychopath|vacation|murder|suspense|neighbor|torture|dog|family|", "overview": "When Ann, husband George and son Georgie arrive at their holiday home they are visited by a pair of polite and seemingly pleasant young men. Armed with deceptively sweet smiles and some golf clubs, they proceed to terrorize and torture the tight-knit clan, giving them until the next day to survive.", "text_for_embedding": "Funny Games (2007). Genres: Horror, Thriller, Crime. When Ann, husband George and son Georgie arrive at their holiday home they are visited by a pair of polite and seemingly pleasant young men. Armed with deceptively sweet smiles and some golf clubs, they proceed to terrorize and torture the tight-knit clan, giving them until the next day to survive.. Tags: brother brother relationship, boat, psychopath, vacation, murder, suspense, neighbor, torture, dog, family"} +{"id": "331592", "title": "Listening", "year": 2015, "duration_min": 100, "rating": 5.5, "genres": "Drama, Thriller, Science Fiction", "genres_pipe": "|Drama|Thriller|Science Fiction|", "keywords": "secret, telepathy, technology, invention, government, mind control, betrayal, trust, danger, privacy", "tags_pipe": "|secret|telepathy|technology|invention|government|mind control|betrayal|trust|danger|privacy|", "overview": "For years, we have tried to harness the power of the human mind… and failed. Now, one breakthrough will change everything. Beyond technology. Beyond humanity. Beyond control. David, Ryan, and Jordan hope the telepathy invention will solve all their problems, but the bleeding-edge technology opens a Pandora’s box of new dangers, as the team discovers that when they open their minds, there is nowhere to hide their thoughts.", "text_for_embedding": "Listening (2015). Genres: Drama, Thriller, Science Fiction. For years, we have tried to harness the power of the human mind… and failed. Now, one breakthrough will change everything. Beyond technology. Beyond humanity. Beyond control. David, Ryan, and Jordan hope the telepathy invention will solve all their problems, but the bleeding-edge technology opens a Pandora’s box of new dangers, as the team discovers that when they open their minds, there is nowhere to hide their thoughts.. Tags: secret, telepathy, technology, invention, government, mind control, betrayal, trust, danger, privacy"} +{"id": "47692", "title": "Felicia's Journey", "year": 1999, "duration_min": 116, "rating": 6.6, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "suspense, series of murders", "tags_pipe": "|suspense|series of murders|", "overview": "A solitary middle-aged bachelor and a naive Irish teenager transform one another's lives to arrive at a place of recognition, redemption and wisdom in Atom Egoyan's adaptation of William Trevor's celebrated 1994 novel. Seventeen and pregnant, Felicia travels to England in search of her lover and is found instead by Joseph Ambrose Hilditch, a helpful catering manager whose kindness masks a serial killer. Hilditch has murdered several young women, but he has no conscious awareness of the crimes; like Felicia, he doesn't see his true self. Felicia's Journey is a story of innocence lost and regained: Felicia awakens to the world's dangers and duplicities; and Hilditch, who grew up lonely and unloved, comes to realize what was taken from him, and what he himself has taken.", "text_for_embedding": "Felicia's Journey (1999). Genres: Drama. A solitary middle-aged bachelor and a naive Irish teenager transform one another's lives to arrive at a place of recognition, redemption and wisdom in Atom Egoyan's adaptation of William Trevor's celebrated 1994 novel. Seventeen and pregnant, Felicia travels to England in search of her lover and is found instead by Joseph Ambrose Hilditch, a helpful catering manager whose kindness masks a serial killer. Hilditch has murdered several young women, but he has no conscious awareness of the crimes; like Felicia, he doesn't see his true self. Felicia's Journey is a story of innocence lost and regained: Felicia awakens to the world's dangers and duplicities; and Hilditch, who grew up lonely and unloved, comes to realize what was taken from him, and what he himself has taken.. Tags: suspense, series of murders"} +{"id": "19", "title": "Metropolis", "year": 1927, "duration_min": 153, "rating": 8.0, "genres": "Drama, Science Fiction", "genres_pipe": "|Drama|Science Fiction|", "keywords": "man vs machine, underground world, inventor, metropolis, worker, future, machine town, work, class society, dystopia, tower of babel, delirium, chase scene, mad scientist, prophet", "tags_pipe": "|man vs machine|underground world|inventor|metropolis|worker|future|machine town|work|class society|dystopia|tower of babel|delirium|chase scene|mad scientist|prophet|", "overview": "In a futuristic city sharply divided between the working class and the city planners, the son of the city's mastermind falls in love with a working class prophet who predicts the coming of a savior to mediate their differences.", "text_for_embedding": "Metropolis (1927). Genres: Drama, Science Fiction. In a futuristic city sharply divided between the working class and the city planners, the son of the city's mastermind falls in love with a working class prophet who predicts the coming of a savior to mediate their differences.. Tags: man vs machine, underground world, inventor, metropolis, worker, future, machine town, work, class society, dystopia, tower of babel, delirium, chase scene, mad scientist, prophet"} +{"id": "10045", "title": "District B13", "year": 2004, "duration_min": 84, "rating": 6.5, "genres": "Action, Thriller, Science Fiction", "genres_pipe": "|Action|Thriller|Science Fiction|", "keywords": "paris, bomb, vororte, dystopia, parkour, gang, undercover cop", "tags_pipe": "|paris|bomb|vororte|dystopia|parkour|gang|undercover cop|", "overview": "Set in the ghettos of Paris in 2010, an undercover cop and ex-thug try to infiltrate a gang in order to defuse a neutron bomb.", "text_for_embedding": "District B13 (2004). Genres: Action, Thriller, Science Fiction. Set in the ghettos of Paris in 2010, an undercover cop and ex-thug try to infiltrate a gang in order to defuse a neutron bomb.. Tags: paris, bomb, vororte, dystopia, parkour, gang, undercover cop"} +{"id": "400", "title": "Things to Do in Denver When You're Dead", "year": 1995, "duration_min": 116, "rating": 6.7, "genres": "Drama, Crime", "genres_pipe": "|Drama|Crime|", "keywords": "father son relationship, bounty hunter, boat, way of life, coffin, denver, godmother, paranoia, hitman, friendship, psychopath, revenge, murder, independent film, mafia", "tags_pipe": "|father son relationship|bounty hunter|boat|way of life|coffin|denver|godmother|paranoia|hitman|friendship|psychopath|revenge|murder|independent film|mafia|", "overview": "A mafia film in Tarantino style with a star-studded cast. Jimmy’s “The Saint” gangster career has finally ended. Yet now he finds him self doing favors for a wise godfather known as “The Man with the Plan.”", "text_for_embedding": "Things to Do in Denver When You're Dead (1995). Genres: Drama, Crime. A mafia film in Tarantino style with a star-studded cast. Jimmy’s “The Saint” gangster career has finally ended. Yet now he finds him self doing favors for a wise godfather known as “The Man with the Plan.”. Tags: father son relationship, bounty hunter, boat, way of life, coffin, denver, godmother, paranoia, hitman, friendship, psychopath, revenge, murder, independent film, mafia"} +{"id": "253450", "title": "The Assassin", "year": 2015, "duration_min": 105, "rating": 6.6, "genres": "Action, Drama, History", "genres_pipe": "|Action|Drama|History|", "keywords": "assassin, tang dynasty, ancient china, wuxia, slow cinema", "tags_pipe": "|assassin|tang dynasty|ancient china|wuxia|slow cinema|", "overview": "A female assassin during the Tang Dynasty who begins to question her loyalties when she falls in love with one of her targets.", "text_for_embedding": "The Assassin (2015). Genres: Action, Drama, History. A female assassin during the Tang Dynasty who begins to question her loyalties when she falls in love with one of her targets.. Tags: assassin, tang dynasty, ancient china, wuxia, slow cinema"} +{"id": "9104", "title": "Buffalo Soldiers", "year": 2001, "duration_min": 98, "rating": 6.5, "genres": "Drama, Comedy, War, Crime, Thriller", "genres_pipe": "|Drama|Comedy|War|Crime|Thriller|", "keywords": "germany, corruption, sex, based on novel, investigation, army, police, base, drug, rogue", "tags_pipe": "|germany|corruption|sex|based on novel|investigation|army|police|base|drug|rogue|", "overview": "Set just before the fall of the Berlin Wall in 1989, Sgt. Ray Elwood is an American soldier stationed at a German army camp. A soldier because a judge gave him a choice between the army and jail, Ray spends much of his free time cooking cocaine for the MPs. When a soldier dies and a toxicology screen shows an alarming level of illegal narcotics, someone is sent in to investigate.", "text_for_embedding": "Buffalo Soldiers (2001). Genres: Drama, Comedy, War, Crime, Thriller. Set just before the fall of the Berlin Wall in 1989, Sgt. Ray Elwood is an American soldier stationed at a German army camp. A soldier because a judge gave him a choice between the army and jail, Ray spends much of his free time cooking cocaine for the MPs. When a soldier dies and a toxicology screen shows an alarming level of illegal narcotics, someone is sent in to investigate.. Tags: germany, corruption, sex, based on novel, investigation, army, police, base, drug, rogue"} +{"id": "11190", "title": "The Return", "year": 2003, "duration_min": 105, "rating": 7.4, "genres": "Thriller, Drama, Mystery", "genres_pipe": "|Thriller|Drama|Mystery|", "keywords": "return, brother, heavy rain, speedo, journal", "tags_pipe": "|return|brother|heavy rain|speedo|journal|", "overview": "A story of two Russian boys whose father suddenly returns home after a 12-year absence. He takes the boys on a holiday to a remote island on a lake that turns into a test of manhood of almost mythic proportions.", "text_for_embedding": "The Return (2003). Genres: Thriller, Drama, Mystery. A story of two Russian boys whose father suddenly returns home after a 12-year absence. He takes the boys on a holiday to a remote island on a lake that turns into a test of manhood of almost mythic proportions.. Tags: return, brother, heavy rain, speedo, journal"} +{"id": "16353", "title": "Ong Bak 2", "year": 2008, "duration_min": 98, "rating": 6.0, "genres": "Adventure, Action, Thriller", "genres_pipe": "|Adventure|Action|Thriller|", "keywords": "sequel", "tags_pipe": "|sequel|", "overview": "Moments from death a young man is rescued by a renowned warrior. Realizing unsurpassed physical potential in the young boy he trains him into the most dangerous man alive. As he becomes a young man he goes on a lone mission of vengeance against the vicious slave traders who enslaved him as a youth and the treacherous warlord who killed his father.", "text_for_embedding": "Ong Bak 2 (2008). Genres: Adventure, Action, Thriller. Moments from death a young man is rescued by a renowned warrior. Realizing unsurpassed physical potential in the young boy he trains him into the most dangerous man alive. As he becomes a young man he goes on a lone mission of vengeance against the vicious slave traders who enslaved him as a youth and the treacherous warlord who killed his father.. Tags: sequel"} +{"id": "23759", "title": "Centurion", "year": 2010, "duration_min": 97, "rating": 5.9, "genres": "Adventure, Action, Drama", "genres_pipe": "|Adventure|Action|Drama|", "keywords": "roman empire, ancient rome, ancient world, violence, britain, behind enemy lines, sole survivor", "tags_pipe": "|roman empire|ancient rome|ancient world|violence|britain|behind enemy lines|sole survivor|", "overview": "Britain, A.D. 117. Quintus Dias, the sole survivor of a Pictish raid on a Roman frontier fort, marches north with General Virilus' legendary Ninth Legion, under orders to wipe the Picts from the face of the Earth and destroy their leader, Gorlacon.", "text_for_embedding": "Centurion (2010). Genres: Adventure, Action, Drama. Britain, A.D. 117. Quintus Dias, the sole survivor of a Pictish raid on a Roman frontier fort, marches north with General Virilus' legendary Ninth Legion, under orders to wipe the Picts from the face of the Earth and destroy their leader, Gorlacon.. Tags: roman empire, ancient rome, ancient world, violence, britain, behind enemy lines, sole survivor"} +{"id": "24206", "title": "Silent Trigger", "year": 1996, "duration_min": 93, "rating": 5.0, "genres": "Drama, Action, Thriller", "genres_pipe": "|Drama|Action|Thriller|", "keywords": "", "tags_pipe": "", "overview": "Waxman is a former Special Forces soldier who is now working as a heavily armed assassin for a top secret government agency. When a covert mission goes terribly wrong, Waxman and fellow assassin Clegg become that agency's prime targets.", "text_for_embedding": "Silent Trigger (1996). Genres: Drama, Action, Thriller. Waxman is a former Special Forces soldier who is now working as a heavily armed assassin for a top secret government agency. When a covert mission goes terribly wrong, Waxman and fellow assassin Clegg become that agency's prime targets.. Tags: "} +{"id": "10185", "title": "The Midnight Meat Train", "year": 2008, "duration_min": 98, "rating": 6.0, "genres": "Mystery, Drama, Crime, Thriller, Horror", "genres_pipe": "|Mystery|Drama|Crime|Thriller|Horror|", "keywords": "photographer, butcher, vegetarian, midnight, blood splatter, gore, stalking, diner, decapitation, blood, violence, subway train, very little dialogue", "tags_pipe": "|photographer|butcher|vegetarian|midnight|blood splatter|gore|stalking|diner|decapitation|blood|violence|subway train|very little dialogue|", "overview": "The photographer Leon lives with his girlfriend and waitress Maya waiting for a chance to get in the photo business. When Maya contacts their friend Jurgis, he schedules a meeting for Leon with the successful owner of arts gallery Susan Hoff; she analyzes Leon's work and asks him to improve the quality of his photos. During the night, the upset Leon decides to wander on the streets taking pictures with his camera, and he follows three punks down to the subway station; when the gang attacks a young woman, Leon defends her and the guys move on. On the next morning, Leon discovers that the woman is missing. He goes to the police station, but Detective Lynn Hadley does not give much attention to him and discredits his statement. Leon becomes obsessed to find what happened with the stranger and he watches the subway station. When he sees the elegant butcher Mahogany in the train, Leon believes he might be a murderer and stalks him everywhere, in the beginning of his journey to the darkness.", "text_for_embedding": "The Midnight Meat Train (2008). Genres: Mystery, Drama, Crime, Thriller, Horror. The photographer Leon lives with his girlfriend and waitress Maya waiting for a chance to get in the photo business. When Maya contacts their friend Jurgis, he schedules a meeting for Leon with the successful owner of arts gallery Susan Hoff; she analyzes Leon's work and asks him to improve the quality of his photos. During the night, the upset Leon decides to wander on the streets taking pictures with his camera, and he follows three punks down to the subway station; when the gang attacks a young woman, Leon defends her and the guys move on. On the next morning, Leon discovers that the woman is missing. He goes to the police station, but Detective Lynn Hadley does not give much attention to him and discredits his statement. Leon becomes obsessed to find what happened with the stranger and he watches the subway station. When he sees the elegant butcher Mahogany in the train, Leon believes he might be a murderer and stalks him everywhere, in the beginning of his journey to the darkness.. Tags: photographer, butcher, vegetarian, midnight, blood splatter, gore, stalking, diner, decapitation, blood, violence, subway train, very little dialogue"} +{"id": "75033", "title": "Winnie Mandela", "year": 2011, "duration_min": 107, "rating": 5.2, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "biography, nelson mandela", "tags_pipe": "|biography|nelson mandela|", "overview": "A drama that chronicles the life of Winnie Mandela from her childhood through her marriage and her husband's incarceration.", "text_for_embedding": "Winnie Mandela (2011). Genres: Drama. A drama that chronicles the life of Winnie Mandela from her childhood through her marriage and her husband's incarceration.. Tags: biography, nelson mandela"} +{"id": "74536", "title": "The Son of No One", "year": 2011, "duration_min": 90, "rating": 4.8, "genres": "Drama, Thriller, Crime", "genres_pipe": "|Drama|Thriller|Crime|", "keywords": "", "tags_pipe": "", "overview": "A rookie cop is assigned to the 118 Precinct in the same district where he grew up. The Precinct Captain starts receiving letters about two unsolved murders that happened many years ago in the housing projects when the rookie cop was just a kid. These letters bring back bad memories and old secrets that begin to threaten his career and break up his family.", "text_for_embedding": "The Son of No One (2011). Genres: Drama, Thriller, Crime. A rookie cop is assigned to the 118 Precinct in the same district where he grew up. The Precinct Captain starts receiving letters about two unsolved murders that happened many years ago in the housing projects when the rookie cop was just a kid. These letters bring back bad memories and old secrets that begin to threaten his career and break up his family.. Tags: "} +{"id": "31668", "title": "All The Queen's Men", "year": 2001, "duration_min": 99, "rating": 6.1, "genres": "Action, Comedy, Drama, History", "genres_pipe": "|Action|Comedy|Drama|History|", "keywords": "transvestism, world war ii", "tags_pipe": "|transvestism|world war ii|", "overview": "A mismatched team of British Special Services agents led by an American must infiltrate, in disguise, a female-run Enigma factory in Berlin and bring back the decoding device that will end the war.", "text_for_embedding": "All The Queen's Men (2001). Genres: Action, Comedy, Drama, History. A mismatched team of British Special Services agents led by an American must infiltrate, in disguise, a female-run Enigma factory in Berlin and bring back the decoding device that will end the war.. Tags: transvestism, world war ii"} +{"id": "13501", "title": "The Good Night", "year": 2007, "duration_min": 93, "rating": 5.7, "genres": "Comedy, Drama, Romance, Fantasy, Music", "genres_pipe": "|Comedy|Drama|Romance|Fantasy|Music|", "keywords": "dream, midlife crisis, lucid dreaming", "tags_pipe": "|dream|midlife crisis|lucid dreaming|", "overview": "Gary, a musician, is trapped in an unhappy relationship with his live-in lover, Dora. He becomes enthralled with a beautiful seductress who enters his dreams, and tries to control his dream-state so he can spend more and more time with her. When Gary sees his mystery woman's face on a bus billboard, he discovers she is real, and fate brings him an opportunity to meet her.", "text_for_embedding": "The Good Night (2007). Genres: Comedy, Drama, Romance, Fantasy, Music. Gary, a musician, is trapped in an unhappy relationship with his live-in lover, Dora. He becomes enthralled with a beautiful seductress who enters his dreams, and tries to control his dream-state so he can spend more and more time with her. When Gary sees his mystery woman's face on a bus billboard, he discovers she is real, and fate brings him an opportunity to meet her.. Tags: dream, midlife crisis, lucid dreaming"} +{"id": "15208", "title": "Bathory: Countess of Blood", "year": 2008, "duration_min": 141, "rating": 5.6, "genres": "Drama, Fantasy", "genres_pipe": "|Drama|Fantasy|", "keywords": "sex, legend, countess", "tags_pipe": "|sex|legend|countess|", "overview": "Bathory is based on the legends surrounding the life and deeds of Countess Elizabeth Bathory known as the greatest murderess in the history of mankind. Contrary to popular belief, Elizabeth Bathory was a modern Renaissance woman who ultimately fell victim to mens aspirations for power and wealth.", "text_for_embedding": "Bathory: Countess of Blood (2008). Genres: Drama, Fantasy. Bathory is based on the legends surrounding the life and deeds of Countess Elizabeth Bathory known as the greatest murderess in the history of mankind. Contrary to popular belief, Elizabeth Bathory was a modern Renaissance woman who ultimately fell victim to mens aspirations for power and wealth.. Tags: sex, legend, countess"} +{"id": "172391", "title": "Khumba", "year": 2013, "duration_min": 85, "rating": 5.8, "genres": "Animation, Adventure, Family", "genres_pipe": "|Animation|Adventure|Family|", "keywords": "3d, khumba", "tags_pipe": "|3d|khumba|", "overview": "A half-striped zebra is blamed for the drought and leaves his herd in search of his missing stripes. He is joined on his quest by an overprotective wildebeest and a flamboyant ostrich; they defeat the tyrannical leopard and save his herd.", "text_for_embedding": "Khumba (2013). Genres: Animation, Adventure, Family. A half-striped zebra is blamed for the drought and leaves his herd in search of his missing stripes. He is joined on his quest by an overprotective wildebeest and a flamboyant ostrich; they defeat the tyrannical leopard and save his herd.. Tags: 3d, khumba"} +{"id": "262543", "title": "Automata", "year": 2014, "duration_min": 110, "rating": 5.6, "genres": "Thriller, Science Fiction", "genres_pipe": "|Thriller|Science Fiction|", "keywords": "artificial intelligence, rain, future, dystopia, robot, ecology, desert, child hitman", "tags_pipe": "|artificial intelligence|rain|future|dystopia|robot|ecology|desert|child hitman|", "overview": "Jacq Vaucan, an insurance agent of ROC robotics corporation, routinely investigates the case of manipulating a robot. What he discovers will have profound consequences for the future of humanity.", "text_for_embedding": "Automata (2014). Genres: Thriller, Science Fiction. Jacq Vaucan, an insurance agent of ROC robotics corporation, routinely investigates the case of manipulating a robot. What he discovers will have profound consequences for the future of humanity.. Tags: artificial intelligence, rain, future, dystopia, robot, ecology, desert, child hitman"} +{"id": "9288", "title": "Dungeons & Dragons: Wrath of the Dragon God", "year": 2005, "duration_min": 105, "rating": 4.8, "genres": "Action, Adventure, Fantasy", "genres_pipe": "|Action|Adventure|Fantasy|", "keywords": "fighter, royalty, curse, dragon", "tags_pipe": "|fighter|royalty|curse|dragon|", "overview": "Due to a curse from his former master Profion, Damodar survived his death by Ridley Freeborn as an undead entity in pursuit of an evil artifact for some hundred years, so that he might be capable of unleashing unstoppable destruction on Izmir and the descendants of those who caused his demise.", "text_for_embedding": "Dungeons & Dragons: Wrath of the Dragon God (2005). Genres: Action, Adventure, Fantasy. Due to a curse from his former master Profion, Damodar survived his death by Ridley Freeborn as an undead entity in pursuit of an evil artifact for some hundred years, so that he might be capable of unleashing unstoppable destruction on Izmir and the descendants of those who caused his demise.. Tags: fighter, royalty, curse, dragon"} +{"id": "20083", "title": "Shinjuku Incident", "year": 2009, "duration_min": 119, "rating": 6.7, "genres": "Drama, Action, Thriller, Crime", "genres_pipe": "|Drama|Action|Thriller|Crime|", "keywords": "drug stealing, yakluza, shinjuku, criminal syndicate, taiwanese", "tags_pipe": "|drug stealing|yakluza|shinjuku|criminal syndicate|taiwanese|", "overview": "Iron Zhao aka Steelhead, a truck repairman from China's Northeast, and settles down as an illegal immigrant in Tokyo. After a series of run-ins with the Yakuza, he rises to power as the Don of Chinese illegal immigrants. However, things get out of control when he's foolish enough to believe in clean getaways in a world that offers none, and soon comes to seal his own fate.", "text_for_embedding": "Shinjuku Incident (2009). Genres: Drama, Action, Thriller, Crime. Iron Zhao aka Steelhead, a truck repairman from China's Northeast, and settles down as an illegal immigrant in Tokyo. After a series of run-ins with the Yakuza, he rises to power as the Don of Chinese illegal immigrants. However, things get out of control when he's foolish enough to believe in clean getaways in a world that offers none, and soon comes to seal his own fate.. Tags: drug stealing, yakluza, shinjuku, criminal syndicate, taiwanese"} +{"id": "40880", "title": "Pandaemonium", "year": 2001, "duration_min": 124, "rating": 4.5, "genres": "Drama, Foreign", "genres_pipe": "|Drama|Foreign|", "keywords": "", "tags_pipe": "", "overview": "Set in England during the early 19th century, Pandaemonium evokes late-1960s America in its depiction of the relationship between Samuel Taylor Coleridge (Linus Roach) and William Wordsworth (John Hannah). Instead of going to Vietnam, Wordsworth goes off to fight against the French while Coleridge stays at home and promotes utopianism. After the war, the poets live and work together with Coleridge's wife, Sara (Samantha Morton), and Wordsworth's sister, Dorothy (Emily Woof). At first this communal arrangement works to the advantage of Coleridge--who does some of his best writing while Wordsworth stagnates--until Coleridge becomes addicted to opium. Wordsworth, meanwhile, doesn't find his voice until he abandons his friend. In 20th-century vernacular, Wordsworth is the yuppie, Coleridge the hippie.", "text_for_embedding": "Pandaemonium (2001). Genres: Drama, Foreign. Set in England during the early 19th century, Pandaemonium evokes late-1960s America in its depiction of the relationship between Samuel Taylor Coleridge (Linus Roach) and William Wordsworth (John Hannah). Instead of going to Vietnam, Wordsworth goes off to fight against the French while Coleridge stays at home and promotes utopianism. After the war, the poets live and work together with Coleridge's wife, Sara (Samantha Morton), and Wordsworth's sister, Dorothy (Emily Woof). At first this communal arrangement works to the advantage of Coleridge--who does some of his best writing while Wordsworth stagnates--until Coleridge becomes addicted to opium. Wordsworth, meanwhile, doesn't find his voice until he abandons his friend. In 20th-century vernacular, Wordsworth is the yuppie, Coleridge the hippie.. Tags: "} +{"id": "137", "title": "Groundhog Day", "year": 1993, "duration_min": 101, "rating": 7.4, "genres": "Romance, Fantasy, Drama, Comedy", "genres_pipe": "|Romance|Fantasy|Drama|Comedy|", "keywords": "deja vu, groundhog, weather forecast, telecaster, pennsylvania, alarm clock, winter, time warp, time loop, cult film, existentialism, groundhog day", "tags_pipe": "|deja vu|groundhog|weather forecast|telecaster|pennsylvania|alarm clock|winter|time warp|time loop|cult film|existentialism|groundhog day|", "overview": "A narcissistic TV weatherman, along with his attractive-but-distant producer and mawkish cameraman, is sent to report on Groundhog Day in the small town of Punxsutawney, where he finds himself repeating the same day over and over.", "text_for_embedding": "Groundhog Day (1993). Genres: Romance, Fantasy, Drama, Comedy. A narcissistic TV weatherman, along with his attractive-but-distant producer and mawkish cameraman, is sent to report on Groundhog Day in the small town of Punxsutawney, where he finds himself repeating the same day over and over.. Tags: deja vu, groundhog, weather forecast, telecaster, pennsylvania, alarm clock, winter, time warp, time loop, cult film, existentialism, groundhog day"} +{"id": "264999", "title": "Magic Mike XXL", "year": 2015, "duration_min": 115, "rating": 6.3, "genres": "Comedy, Drama, Music", "genres_pipe": "|Comedy|Drama|Music|", "keywords": "male friendship, strip club, road trip, strip tease, strip", "tags_pipe": "|male friendship|strip club|road trip|strip tease|strip|", "overview": "Three years after Mike bowed out of the stripper life at the top of his game, he and the remaining Kings of Tampa hit the road to Myrtle Beach to put on one last blow-out performance.", "text_for_embedding": "Magic Mike XXL (2015). Genres: Comedy, Drama, Music. Three years after Mike bowed out of the stripper life at the top of his game, he and the remaining Kings of Tampa hit the road to Myrtle Beach to put on one last blow-out performance.. Tags: male friendship, strip club, road trip, strip tease, strip"} +{"id": "454", "title": "Romeo + Juliet", "year": 1996, "duration_min": 120, "rating": 6.7, "genres": "Drama, Romance", "genres_pipe": "|Drama|Romance|", "keywords": "shakespeare, forbidden love, gun violence, star crossed lovers, shakespeare in modern dress, teenage romance, masquerade, shakespeare's romeo and juliet, gangster grip", "tags_pipe": "|shakespeare|forbidden love|gun violence|star crossed lovers|shakespeare in modern dress|teenage romance|masquerade|shakespeare's romeo and juliet|gangster grip|", "overview": "In director Baz Luhrmann's contemporary take on William Shakespeare's classic tragedy, the Montagues and Capulets have moved their ongoing feud to the sweltering suburb of Verona Beach, where Romeo and Juliet fall in love and secretly wed. Though the film is visually modern, the bard's dialogue remains.", "text_for_embedding": "Romeo + Juliet (1996). Genres: Drama, Romance. In director Baz Luhrmann's contemporary take on William Shakespeare's classic tragedy, the Montagues and Capulets have moved their ongoing feud to the sweltering suburb of Verona Beach, where Romeo and Juliet fall in love and secretly wed. Though the film is visually modern, the bard's dialogue remains.. Tags: shakespeare, forbidden love, gun violence, star crossed lovers, shakespeare in modern dress, teenage romance, masquerade, shakespeare's romeo and juliet, gangster grip"} +{"id": "53457", "title": "Sarah's Key", "year": 2010, "duration_min": 111, "rating": 7.2, "genres": "Drama, War", "genres_pipe": "|Drama|War|", "keywords": "", "tags_pipe": "", "overview": "On the night of 16 July 1942, ten year old Sarah and her parents are being arrested and transported to the Velodrome d'Hiver in Paris where thousands of other jews are being send to get deported. Sarah however managed to lock her little brother in a closed just before the police entered their appartment.Sixty years later, Julia Jarmond, an American journalist in Paris, gets the assignment to write an article about this raid, a black page in the history of France. She starts digging archives and through Sarah's file discovers a well kept secret about her own in-laws.", "text_for_embedding": "Sarah's Key (2010). Genres: Drama, War. On the night of 16 July 1942, ten year old Sarah and her parents are being arrested and transported to the Velodrome d'Hiver in Paris where thousands of other jews are being send to get deported. Sarah however managed to lock her little brother in a closed just before the police entered their appartment.Sixty years later, Julia Jarmond, an American journalist in Paris, gets the assignment to write an article about this raid, a black page in the history of France. She starts digging archives and through Sarah's file discovers a well kept secret about her own in-laws.. Tags: "} +{"id": "288980", "title": "Freedom", "year": 2014, "duration_min": 98, "rating": 5.8, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "ship, freedom, slave", "tags_pipe": "|ship|freedom|slave|", "overview": "Two men separated by 100 years are united in their search for freedom. In 1856 a slave, Samuel Woodward and his family, escape from the Monroe Plantation near Richmond, Virginia. A secret network of ordinary people known as the Underground Railroad guide the family on their journey north to Canada. They are relentlessly pursued by the notorious slave hunter Plimpton. Hunted like a dog and haunted by the unthinkable suffering he and his forbears have endured, Samuel is forced to decide between revenge or freedom. 100 years earlier in 1748, John Newton the Captain of a slave trader sails from Africa with a cargo of slaves, bound for America. On board is Samuel's great grandfather whose survival is tied to the fate of Captain Newton. The voyage changes Newton's life forever and he creates a legacy that will inspire Samuel and the lives of millions for generations to come.", "text_for_embedding": "Freedom (2014). Genres: Drama. Two men separated by 100 years are united in their search for freedom. In 1856 a slave, Samuel Woodward and his family, escape from the Monroe Plantation near Richmond, Virginia. A secret network of ordinary people known as the Underground Railroad guide the family on their journey north to Canada. They are relentlessly pursued by the notorious slave hunter Plimpton. Hunted like a dog and haunted by the unthinkable suffering he and his forbears have endured, Samuel is forced to decide between revenge or freedom. 100 years earlier in 1748, John Newton the Captain of a slave trader sails from Africa with a cargo of slaves, bound for America. On board is Samuel's great grandfather whose survival is tied to the fate of Captain Newton. The voyage changes Newton's life forever and he creates a legacy that will inspire Samuel and the lives of millions for generations to come.. Tags: ship, freedom, slave"} +{"id": "33", "title": "Unforgiven", "year": 1992, "duration_min": 131, "rating": 7.7, "genres": "Western", "genres_pipe": "|Western|", "keywords": "prostitute, sheriff, bounty, regret, right and justice, revenge, mutilation, one last job, reputation, englishman", "tags_pipe": "|prostitute|sheriff|bounty|regret|right and justice|revenge|mutilation|one last job|reputation|englishman|", "overview": "William Munny is a retired, once-ruthless killer turned gentle widower and hog farmer. To help support his two motherless children, he accepts one last bounty-hunter mission to find the men who brutalized a prostitute. Joined by his former partner and a cocky greenhorn, he takes on a corrupt sheriff.", "text_for_embedding": "Unforgiven (1992). Genres: Western. William Munny is a retired, once-ruthless killer turned gentle widower and hog farmer. To help support his two motherless children, he accepts one last bounty-hunter mission to find the men who brutalized a prostitute. Joined by his former partner and a cocky greenhorn, he takes on a corrupt sheriff.. Tags: prostitute, sheriff, bounty, regret, right and justice, revenge, mutilation, one last job, reputation, englishman"} +{"id": "1951", "title": "Manderlay", "year": 2005, "duration_min": 139, "rating": 6.9, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "southern usa, slavery, duringcreditsstinger", "tags_pipe": "|southern usa|slavery|duringcreditsstinger|", "overview": "In 1933, after leaving Dogville, Grace Margaret Mulligan sees a slave being punished at a cotton farm called Manderlay. Officially slavery is illegal and Grace stands up against the owners of the farm. She stays with some gangsters in Manderlay and tries to influence the situation. But when harvest time comes Grace sees the social and economic reality of Manderlay.", "text_for_embedding": "Manderlay (2005). Genres: Drama. In 1933, after leaving Dogville, Grace Margaret Mulligan sees a slave being punished at a cotton farm called Manderlay. Officially slavery is illegal and Grace stands up against the owners of the farm. She stays with some gangsters in Manderlay and tries to influence the situation. But when harvest time comes Grace sees the social and economic reality of Manderlay.. Tags: southern usa, slavery, duringcreditsstinger"} +{"id": "12405", "title": "Slumdog Millionaire", "year": 2008, "duration_min": 120, "rating": 7.6, "genres": "Drama, Romance", "genres_pipe": "|Drama|Romance|", "keywords": "slum, indian lead, cheating, suspicion, game show, orphan, duringcreditsstinger", "tags_pipe": "|slum|indian lead|cheating|suspicion|game show|orphan|duringcreditsstinger|", "overview": "Jamal Malik is an impoverished Indian teen who becomes a contestant on the Hindi version of ‘Who Wants to Be a Millionaire?’ but, after he wins, he is suspected of cheating.", "text_for_embedding": "Slumdog Millionaire (2008). Genres: Drama, Romance. Jamal Malik is an impoverished Indian teen who becomes a contestant on the Hindi version of ‘Who Wants to Be a Millionaire?’ but, after he wins, he is suspected of cheating.. Tags: slum, indian lead, cheating, suspicion, game show, orphan, duringcreditsstinger"} +{"id": "10998", "title": "Fatal Attraction", "year": 1987, "duration_min": 119, "rating": 6.6, "genres": "Drama, Romance, Thriller", "genres_pipe": "|Drama|Romance|Thriller|", "keywords": "sexual obsession, wife husband relationship, deceived wife, marriage crisis, suspense, lawyer, extramarital affair, erotic movie", "tags_pipe": "|sexual obsession|wife husband relationship|deceived wife|marriage crisis|suspense|lawyer|extramarital affair|erotic movie|", "overview": "A married man's one night stand comes back to haunt him when that lover begins to stalk him and his family.", "text_for_embedding": "Fatal Attraction (1987). Genres: Drama, Romance, Thriller. A married man's one night stand comes back to haunt him when that lover begins to stalk him and his family.. Tags: sexual obsession, wife husband relationship, deceived wife, marriage crisis, suspense, lawyer, extramarital affair, erotic movie"} +{"id": "114", "title": "Pretty Woman", "year": 1990, "duration_min": 119, "rating": 7.0, "genres": "Romance, Comedy", "genres_pipe": "|Romance|Comedy|", "keywords": "prostitute, capitalism, cinderella, expensive restaurant, sports car, workaholic, fire escape, friendship, los angeles, piano", "tags_pipe": "|prostitute|capitalism|cinderella|expensive restaurant|sports car|workaholic|fire escape|friendship|los angeles|piano|", "overview": "When millionaire wheeler-dealer Edward Lewis enters a business contract with Hollywood hooker Vivian Ward, he loses his heart in the bargain in this charming romantic comedy. After Edward hires Vivian as his date for a week and gives her a Cinderella makeover, she returns the favor by mellowing the hardnosed tycoon's outlook. Can the poor prostitute and the rich capitalist live happily ever after?", "text_for_embedding": "Pretty Woman (1990). Genres: Romance, Comedy. When millionaire wheeler-dealer Edward Lewis enters a business contract with Hollywood hooker Vivian Ward, he loses his heart in the bargain in this charming romantic comedy. After Edward hires Vivian as his date for a week and gives her a Cinderella makeover, she returns the favor by mellowing the hardnosed tycoon's outlook. Can the poor prostitute and the rich capitalist live happily ever after?. Tags: prostitute, capitalism, cinderella, expensive restaurant, sports car, workaholic, fire escape, friendship, los angeles, piano"} +{"id": "9396", "title": "Crocodile Dundee II", "year": 1988, "duration_min": 110, "rating": 5.5, "genres": "Adventure, Comedy", "genres_pipe": "|Adventure|Comedy|", "keywords": "new york, crocodile, australia, large knife, aftercreditsstinger", "tags_pipe": "|new york|crocodile|australia|large knife|aftercreditsstinger|", "overview": "Australian outback expert protects his New York love from gangsters who've followed her down under.", "text_for_embedding": "Crocodile Dundee II (1988). Genres: Adventure, Comedy. Australian outback expert protects his New York love from gangsters who've followed her down under.. Tags: new york, crocodile, australia, large knife, aftercreditsstinger"} +{"id": "319910", "title": "Broken Horses", "year": 2015, "duration_min": 101, "rating": 5.0, "genres": "Thriller, Mystery, Drama, Crime", "genres_pipe": "|Thriller|Mystery|Drama|Crime|", "keywords": "", "tags_pipe": "", "overview": "The bonds of brotherhood, the laws of loyalty, and the futility of violence in the shadows of the US Mexico border gang wars.", "text_for_embedding": "Broken Horses (2015). Genres: Thriller, Mystery, Drama, Crime. The bonds of brotherhood, the laws of loyalty, and the futility of violence in the shadows of the US Mexico border gang wars.. Tags: "} +{"id": "2604", "title": "Born on the Fourth of July", "year": 1989, "duration_min": 145, "rating": 6.7, "genres": "Drama, War", "genres_pipe": "|Drama|War|", "keywords": "vietnam veteran, post traumatic stress disorder, bar, 1970s, wheelchair, vietnam war, desert, spit in the face, drunkenness, 1950s, 1960s", "tags_pipe": "|vietnam veteran|post traumatic stress disorder|bar|1970s|wheelchair|vietnam war|desert|spit in the face|drunkenness|1950s|1960s|", "overview": "The biography of Ron Kovic. Paralyzed in the Vietnam war, he becomes an anti-war and pro-human rights political activist after feeling betrayed by the country he fought for.", "text_for_embedding": "Born on the Fourth of July (1989). Genres: Drama, War. The biography of Ron Kovic. Paralyzed in the Vietnam war, he becomes an anti-war and pro-human rights political activist after feeling betrayed by the country he fought for.. Tags: vietnam veteran, post traumatic stress disorder, bar, 1970s, wheelchair, vietnam war, desert, spit in the face, drunkenness, 1950s, 1960s"} +{"id": "864", "title": "Cool Runnings", "year": 1993, "duration_min": 98, "rating": 6.8, "genres": "Comedy", "genres_pipe": "|Comedy|", "keywords": "winter, trainer, olympic games, jamaica, training camp, reggae, bobsleighing, sport", "tags_pipe": "|winter|trainer|olympic games|jamaica|training camp|reggae|bobsleighing|sport|", "overview": "When a Jamaican sprinter is disqualified from the Olympic Games, he enlists the help of a dishonored coach to start the first Jamaican Bobsled Team.", "text_for_embedding": "Cool Runnings (1993). Genres: Comedy. When a Jamaican sprinter is disqualified from the Olympic Games, he enlists the help of a dishonored coach to start the first Jamaican Bobsled Team.. Tags: winter, trainer, olympic games, jamaica, training camp, reggae, bobsleighing, sport"} +{"id": "14435", "title": "My Bloody Valentine", "year": 2009, "duration_min": 101, "rating": 5.3, "genres": "Mystery, Horror", "genres_pipe": "|Mystery|Horror|", "keywords": "sheriff, miner, delusion, head injury, remake, slaughter, blood, aftercreditsstinger, 3d", "tags_pipe": "|sheriff|miner|delusion|head injury|remake|slaughter|blood|aftercreditsstinger|3d|", "overview": "Ten years ago, a tragedy changed the town of Harmony forever. Tom Hanniger, an inexperienced coal miner, caused an accident in the tunnels that trapped and killed five men and sent the only survivor, Harry Warden, into a permanent coma. But Harry Warden wanted revenge. Exactly one year later, on Valentine’s Day, he woke up…and brutally murdered twenty-two people with a pickaxe before being killed.", "text_for_embedding": "My Bloody Valentine (2009). Genres: Mystery, Horror. Ten years ago, a tragedy changed the town of Harmony forever. Tom Hanniger, an inexperienced coal miner, caused an accident in the tunnels that trapped and killed five men and sent the only survivor, Harry Warden, into a permanent coma. But Harry Warden wanted revenge. Exactly one year later, on Valentine’s Day, he woke up…and brutally murdered twenty-two people with a pickaxe before being killed.. Tags: sheriff, miner, delusion, head injury, remake, slaughter, blood, aftercreditsstinger, 3d"} +{"id": "1931", "title": "Stomp the Yard", "year": 2007, "duration_min": 114, "rating": 6.1, "genres": "Drama, Music", "genres_pipe": "|Drama|Music|", "keywords": "love at first sight, loss of brother, breakdance, daughter", "tags_pipe": "|love at first sight|loss of brother|breakdance|daughter|", "overview": "After the death of his younger brother, a troubled 19-year-old street dancer from Los Angeles is able to bypass juvenile hall by enrolling in the historically black, Truth University in Atlanta, Georgia. But his efforts to get an education and woo the girl he likes are sidelined when he is courted by the top two campus fraternities, both of which want and need his fierce street-style dance moves to win the highly coveted national step show competition.", "text_for_embedding": "Stomp the Yard (2007). Genres: Drama, Music. After the death of his younger brother, a troubled 19-year-old street dancer from Los Angeles is able to bypass juvenile hall by enrolling in the historically black, Truth University in Atlanta, Georgia. But his efforts to get an education and woo the girl he likes are sidelined when he is courted by the top two campus fraternities, both of which want and need his fierce street-style dance moves to win the highly coveted national step show competition.. Tags: love at first sight, loss of brother, breakdance, daughter"} +{"id": "691", "title": "The Spy Who Loved Me", "year": 1977, "duration_min": 125, "rating": 6.6, "genres": "Adventure, Action, Thriller", "genres_pipe": "|Adventure|Action|Thriller|", "keywords": "london england, submarine, england, assassination, spy, cairo, terrorist, egypt, mass murder, pyramid, russia, planned murder, secret intelligence service, kgb, villain", "tags_pipe": "|london england|submarine|england|assassination|spy|cairo|terrorist|egypt|mass murder|pyramid|russia|planned murder|secret intelligence service|kgb|villain|", "overview": "Russian and British submarines with nuclear missiles on board both vanish from sight without a trace. England and Russia both blame each other as James Bond tries to solve the riddle of the disappearing ships. But the KGB also has an agent on the case.", "text_for_embedding": "The Spy Who Loved Me (1977). Genres: Adventure, Action, Thriller. Russian and British submarines with nuclear missiles on board both vanish from sight without a trace. England and Russia both blame each other as James Bond tries to solve the riddle of the disappearing ships. But the KGB also has an agent on the case.. Tags: london england, submarine, england, assassination, spy, cairo, terrorist, egypt, mass murder, pyramid, russia, planned murder, secret intelligence service, kgb, villain"} +{"id": "9877", "title": "Urban Legend", "year": 1998, "duration_min": 99, "rating": 5.6, "genres": "Horror, Thriller", "genres_pipe": "|Horror|Thriller|", "keywords": "college, murder, urban legend, slasher, killer, death", "tags_pipe": "|college|murder|urban legend|slasher|killer|death|", "overview": "There's a campus killer on the loose who's making urban legends, like the one about eating pop rocks and soda at the same time will make your stomach explode and the one about a psycho with an axe stepping into the backseat of your car at the gas station when not looking, into reality.", "text_for_embedding": "Urban Legend (1998). Genres: Horror, Thriller. There's a campus killer on the loose who's making urban legends, like the one about eating pop rocks and soda at the same time will make your stomach explode and the one about a psycho with an axe stepping into the backseat of your car at the gas station when not looking, into reality.. Tags: college, murder, urban legend, slasher, killer, death"} +{"id": "62008", "title": "Good Deeds", "year": 2012, "duration_min": 111, "rating": 6.2, "genres": "Comedy, Drama, Romance", "genres_pipe": "|Comedy|Drama|Romance|", "keywords": "african american, single mother, fiancé fiancée relationship, corporation, rich man - poor woman", "tags_pipe": "|african american|single mother|fiancé fiancée relationship|corporation|rich man - poor woman|", "overview": "Businessman Wesley Deeds is jolted out of his scripted life when he meets Lindsey, a single mother who works on the cleaning crew in his office building.", "text_for_embedding": "Good Deeds (2012). Genres: Comedy, Drama, Romance. Businessman Wesley Deeds is jolted out of his scripted life when he meets Lindsey, a single mother who works on the cleaning crew in his office building.. Tags: african american, single mother, fiancé fiancée relationship, corporation, rich man - poor woman"} +{"id": "12227", "title": "White Fang", "year": 1991, "duration_min": 107, "rating": 6.5, "genres": "Action, Adventure, Drama, Family", "genres_pipe": "|Action|Adventure|Drama|Family|", "keywords": "based on novel, gold, treasure, coffin, human animal relationship, friendship, alaska, shootout, dog, prospector, klondike, yukon, boy dog relationship, gold miner", "tags_pipe": "|based on novel|gold|treasure|coffin|human animal relationship|friendship|alaska|shootout|dog|prospector|klondike|yukon|boy dog relationship|gold miner|", "overview": "Jack London's classic adventure story about the friendship developed between a Yukon gold hunter and the mixed dog-wolf he rescues from the hands of a man who mistreats him.", "text_for_embedding": "White Fang (1991). Genres: Action, Adventure, Drama, Family. Jack London's classic adventure story about the friendship developed between a Yukon gold hunter and the mixed dog-wolf he rescues from the hands of a man who mistreats him.. Tags: based on novel, gold, treasure, coffin, human animal relationship, friendship, alaska, shootout, dog, prospector, klondike, yukon, boy dog relationship, gold miner"} +{"id": "13824", "title": "Superstar", "year": 1999, "duration_min": 81, "rating": 5.1, "genres": "Comedy, Family", "genres_pipe": "|Comedy|Family|", "keywords": "", "tags_pipe": "", "overview": "Orphan Mary Katherine Gallagher, an ugly duckling at St. Monica High School, has a dream: to be kissed soulfully. She decides she can realize this dream if she becomes a superstar, so her prayers, her fantasies, and her conversations with her only friend focus on achieving super-stardom.", "text_for_embedding": "Superstar (1999). Genres: Comedy, Family. Orphan Mary Katherine Gallagher, an ugly duckling at St. Monica High School, has a dream: to be kissed soulfully. She decides she can realize this dream if she becomes a superstar, so her prayers, her fantasies, and her conversations with her only friend focus on achieving super-stardom.. Tags: "} +{"id": "71688", "title": "The Iron Lady", "year": 2011, "duration_min": 105, "rating": 6.2, "genres": "History, Drama", "genres_pipe": "|History|Drama|", "keywords": "capitalism, prime minister, argentina, margaret thatcher, british overseas territory, war propaganda, british politics, british prime minister, female politician, falklands war, political leader, female prime minister, right wing, falklands, woman director", "tags_pipe": "|capitalism|prime minister|argentina|margaret thatcher|british overseas territory|war propaganda|british politics|british prime minister|female politician|falklands war|political leader|female prime minister|right wing|falklands|woman director|", "overview": "A look at the life of Margaret Thatcher, the former Prime Minister of the United Kingdom, with a focus on the price she paid for power.", "text_for_embedding": "The Iron Lady (2011). Genres: History, Drama. A look at the life of Margaret Thatcher, the former Prime Minister of the United Kingdom, with a focus on the price she paid for power.. Tags: capitalism, prime minister, argentina, margaret thatcher, british overseas territory, war propaganda, british politics, british prime minister, female politician, falklands war, political leader, female prime minister, right wing, falklands, woman director"} +{"id": "15173", "title": "Jonah: A VeggieTales Movie", "year": 2002, "duration_min": 82, "rating": 6.4, "genres": "Action, Adventure, Animation, Comedy, Family, Fantasy, Romance", "genres_pipe": "|Action|Adventure|Animation|Comedy|Family|Fantasy|Romance|", "keywords": "", "tags_pipe": "", "overview": "Get ready as Bob the Tomato, Larry the Cucumber and the rest of the Veggies set sail on a whale of an adventure in Big Idea's first full-length, 3-D animated feature film. This is the story of Jonah and the Whale as you've never seen it before - a story where we learn that one of the best gifts you can give - or get - is a second chance.", "text_for_embedding": "Jonah: A VeggieTales Movie (2002). Genres: Action, Adventure, Animation, Comedy, Family, Fantasy, Romance. Get ready as Bob the Tomato, Larry the Cucumber and the rest of the Veggies set sail on a whale of an adventure in Big Idea's first full-length, 3-D animated feature film. This is the story of Jonah and the Whale as you've never seen it before - a story where we learn that one of the best gifts you can give - or get - is a second chance.. Tags: "} +{"id": "8291", "title": "Poetic Justice", "year": 1993, "duration_min": 109, "rating": 6.9, "genres": "Drama, Romance", "genres_pipe": "|Drama|Romance|", "keywords": "loss of lover, sadness, los angeles, road movie", "tags_pipe": "|loss of lover|sadness|los angeles|road movie|", "overview": "In this film, we see the world through the eyes of main character Justice, a young African-American poet. A mail carrier invites a few friends along for a long overnight delivery run.", "text_for_embedding": "Poetic Justice (1993). Genres: Drama, Romance. In this film, we see the world through the eyes of main character Justice, a young African-American poet. A mail carrier invites a few friends along for a long overnight delivery run.. Tags: loss of lover, sadness, los angeles, road movie"} +{"id": "13950", "title": "All About the Benjamins", "year": 2002, "duration_min": 95, "rating": 5.8, "genres": "Action, Adventure, Comedy", "genres_pipe": "|Action|Adventure|Comedy|", "keywords": "record store, sexuality, autograph, underwear, painting, safe, sexual attraction, motorcycle, juvenile delinquent, stoner, music store, hand on crotch, premarital sex, raised middle finger, employer employee relationship", "tags_pipe": "|record store|sexuality|autograph|underwear|painting|safe|sexual attraction|motorcycle|juvenile delinquent|stoner|music store|hand on crotch|premarital sex|raised middle finger|employer employee relationship|", "overview": "Bucum Jackson (Cube) is a bounty hunter with a lot of attitude and no interest in taking on a partner. Working at Martinez Bail Bonds, Jackson has unorthodox methods of tracking down low-life criminals, but they work, and one day he hopes to become his own boss and open up his own private investigation firm. Reggie Wright (Epps) is a slippery con artist who is avoiding the law, and Jackson. During a cat and mouse chase, the two stumble on a multi-million dollar diamond heist. Hiding from Jackson, Wright finds himself in the thieves' getaway van and ends up having to escape from them after they discover their booty is fake, much to the displeasure of their ruthless boss (Flanagan). When Wright meets up with his girlfriend (Mendes), he discovers that his recently purchased lottery ticket is the sole winner of $60 million. Unfortunately, his wallet, which held the ticket, was left in the thieves' van, so he persuades Jackson to help him get it back.", "text_for_embedding": "All About the Benjamins (2002). Genres: Action, Adventure, Comedy. Bucum Jackson (Cube) is a bounty hunter with a lot of attitude and no interest in taking on a partner. Working at Martinez Bail Bonds, Jackson has unorthodox methods of tracking down low-life criminals, but they work, and one day he hopes to become his own boss and open up his own private investigation firm. Reggie Wright (Epps) is a slippery con artist who is avoiding the law, and Jackson. During a cat and mouse chase, the two stumble on a multi-million dollar diamond heist. Hiding from Jackson, Wright finds himself in the thieves' getaway van and ends up having to escape from them after they discover their booty is fake, much to the displeasure of their ruthless boss (Flanagan). When Wright meets up with his girlfriend (Mendes), he discovers that his recently purchased lottery ticket is the sole winner of $60 million. Unfortunately, his wallet, which held the ticket, was left in the thieves' van, so he persuades Jackson to help him get it back.. Tags: record store, sexuality, autograph, underwear, painting, safe, sexual attraction, motorcycle, juvenile delinquent, stoner, music store, hand on crotch, premarital sex, raised middle finger, employer employee relationship"} +{"id": "12158", "title": "Vampire in Brooklyn", "year": 1995, "duration_min": 100, "rating": 4.5, "genres": "Comedy, Horror, Romance", "genres_pipe": "|Comedy|Horror|Romance|", "keywords": "vampire, half vampire", "tags_pipe": "|vampire|half vampire|", "overview": "Maximillian, the lone survivor of a race of vampires, comes to Brooklyn in search of a way to live past the next full moon. His ticket to survival is Rita, a NYPD detective who doesn't know she's half vampire -- and Maximillian will do whatever's necessary to put her under his spell.", "text_for_embedding": "Vampire in Brooklyn (1995). Genres: Comedy, Horror, Romance. Maximillian, the lone survivor of a race of vampires, comes to Brooklyn in search of a way to live past the next full moon. His ticket to survival is Rita, a NYPD detective who doesn't know she's half vampire -- and Maximillian will do whatever's necessary to put her under his spell.. Tags: vampire, half vampire"} +{"id": "11586", "title": "Exorcist II: The Heretic", "year": 1977, "duration_min": 118, "rating": 4.5, "genres": "Horror, Thriller, Fantasy", "genres_pipe": "|Horror|Thriller|Fantasy|", "keywords": "exorcism, examination, pact with the devil, possession, priest, devil, demonic possession, locust", "tags_pipe": "|exorcism|examination|pact with the devil|possession|priest|devil|demonic possession|locust|", "overview": "Bizarre nightmares plague Regan MacNeil four years after her possession and exorcism. Has the demon returned? And if so, can the combined faith and knowledge of a Vatican investigator and a hypnotic research specialist free her from its grasp?", "text_for_embedding": "Exorcist II: The Heretic (1977). Genres: Horror, Thriller, Fantasy. Bizarre nightmares plague Regan MacNeil four years after her possession and exorcism. Has the demon returned? And if so, can the combined faith and knowledge of a Vatican investigator and a hypnotic research specialist free her from its grasp?. Tags: exorcism, examination, pact with the devil, possession, priest, devil, demonic possession, locust"} +{"id": "10008", "title": "An American Haunting", "year": 2005, "duration_min": 83, "rating": 5.3, "genres": "Horror, Thriller", "genres_pipe": "|Horror|Thriller|", "keywords": "witch, independent film, curse, suitor, family", "tags_pipe": "|witch|independent film|curse|suitor|family|", "overview": "Based on the true events of the only case in US History where a spirit caused the death of a man.", "text_for_embedding": "An American Haunting (2005). Genres: Horror, Thriller. Based on the true events of the only case in US History where a spirit caused the death of a man.. Tags: witch, independent film, curse, suitor, family"} +{"id": "2830", "title": "My Boss's Daughter", "year": 2003, "duration_min": 83, "rating": 4.4, "genres": "Comedy, Romance", "genres_pipe": "|Comedy|Romance|", "keywords": "", "tags_pipe": "", "overview": "When a young man agrees to housesit for his boss, he thinks it'll be the perfect opportunity to get close to the woman he desperately has a crush on – his boss's daughter. But he doesn't plan on the long line of other houseguests that try to keep him from his mission. And he also has to deal with the daughter's older brother, who's on the run from local drug dealers.", "text_for_embedding": "My Boss's Daughter (2003). Genres: Comedy, Romance. When a young man agrees to housesit for his boss, he thinks it'll be the perfect opportunity to get close to the woman he desperately has a crush on – his boss's daughter. But he doesn't plan on the long line of other houseguests that try to keep him from his mission. And he also has to deal with the daughter's older brother, who's on the run from local drug dealers.. Tags: "} +{"id": "12403", "title": "A Perfect Getaway", "year": 2009, "duration_min": 98, "rating": 6.2, "genres": "Thriller, Mystery, Adventure", "genres_pipe": "|Thriller|Mystery|Adventure|", "keywords": "hawaii, honeymoon, double murder, murder", "tags_pipe": "|hawaii|honeymoon|double murder|murder|", "overview": "For their honeymoon, newlyweds Cliff and Cydney head to the tropical islands of Hawaii. While journeying through the paradisaical countryside the couple encounters Kale and Cleo, two disgruntled hitchhikers and Nick and Gina, two wild but well-meaning spirits who help guide them through the lush jungles. The picturesque waterfalls and scenic mountainsides quickly give way to terror when Cliff and Cydney learn of a grisly murder that occurred nearby and realize that they're being followed by chance acquaintances that suspiciously fit the description of the killers.", "text_for_embedding": "A Perfect Getaway (2009). Genres: Thriller, Mystery, Adventure. For their honeymoon, newlyweds Cliff and Cydney head to the tropical islands of Hawaii. While journeying through the paradisaical countryside the couple encounters Kale and Cleo, two disgruntled hitchhikers and Nick and Gina, two wild but well-meaning spirits who help guide them through the lush jungles. The picturesque waterfalls and scenic mountainsides quickly give way to terror when Cliff and Cydney learn of a grisly murder that occurred nearby and realize that they're being followed by chance acquaintances that suspiciously fit the description of the killers.. Tags: hawaii, honeymoon, double murder, murder"} +{"id": "34563", "title": "Our Family Wedding", "year": 2010, "duration_min": 103, "rating": 5.7, "genres": "Comedy", "genres_pipe": "|Comedy|", "keywords": "interracial marriage, wedding, duringcreditsstinger", "tags_pipe": "|interracial marriage|wedding|duringcreditsstinger|", "overview": "The weeks leading up to a young couple's wedding is comic and stressful, especially as their respective fathers try to lay to rest their feud.", "text_for_embedding": "Our Family Wedding (2010). Genres: Comedy. The weeks leading up to a young couple's wedding is comic and stressful, especially as their respective fathers try to lay to rest their feud.. Tags: interracial marriage, wedding, duringcreditsstinger"} +{"id": "14557", "title": "Dead Man on Campus", "year": 1998, "duration_min": 96, "rating": 5.6, "genres": "Comedy", "genres_pipe": "|Comedy|", "keywords": "college, drug, fraternity house, pot, teen suicide, autopsy room", "tags_pipe": "|college|drug|fraternity house|pot|teen suicide|autopsy room|", "overview": "Josh Miller (Tom Everett Scott) is a studious and responsible pre-med student entering college as a freshman. His wild, hard-partying roommate Cooper Frederickson (Mark-Paul Gosselaar), on the other hand, is a spoiled rich kid who never studies and spends his time getting drunk and ogling co-eds. Before long, Cooper's fun-filled lifestyle has corrupted Josh, and both are on the verge of flunking out.", "text_for_embedding": "Dead Man on Campus (1998). Genres: Comedy. Josh Miller (Tom Everett Scott) is a studious and responsible pre-med student entering college as a freshman. His wild, hard-partying roommate Cooper Frederickson (Mark-Paul Gosselaar), on the other hand, is a spoiled rich kid who never studies and spends his time getting drunk and ogling co-eds. Before long, Cooper's fun-filled lifestyle has corrupted Josh, and both are on the verge of flunking out.. Tags: college, drug, fraternity house, pot, teen suicide, autopsy room"} +{"id": "10368", "title": "Tea with Mussolini", "year": 1999, "duration_min": 117, "rating": 5.8, "genres": "Comedy, Drama, War", "genres_pipe": "|Comedy|Drama|War|", "keywords": "italy, hotel, loss of mother, ambassador, world war ii, loss of parents, widow, benito mussolini, independent film", "tags_pipe": "|italy|hotel|loss of mother|ambassador|world war ii|loss of parents|widow|benito mussolini|independent film|", "overview": "Semi-autobiographical film directed by Franco Zeffirelli, telling the story of young Italian boy Luca's upbringing by a circle of English and American women, before and during World War II.", "text_for_embedding": "Tea with Mussolini (1999). Genres: Comedy, Drama, War. Semi-autobiographical film directed by Franco Zeffirelli, telling the story of young Italian boy Luca's upbringing by a circle of English and American women, before and during World War II.. Tags: italy, hotel, loss of mother, ambassador, world war ii, loss of parents, widow, benito mussolini, independent film"} +{"id": "10280", "title": "Thinner", "year": 1996, "duration_min": 92, "rating": 5.5, "genres": "Horror, Thriller", "genres_pipe": "|Horror|Thriller|", "keywords": "blow job, curse, fat suit, steven king", "tags_pipe": "|blow job|curse|fat suit|steven king|", "overview": "A fat Lawyer finds himself growing \"Thinner\" when an old gypsy man places a hex on him. Now the lawyer must call upon his friends in organized crime to help him persuade the gypsy to lift the curse. Time is running out for the desperate lawyer as he draws closer to his own death, and grows ever thinner.", "text_for_embedding": "Thinner (1996). Genres: Horror, Thriller. A fat Lawyer finds himself growing \"Thinner\" when an old gypsy man places a hex on him. Now the lawyer must call upon his friends in organized crime to help him persuade the gypsy to lift the curse. Time is running out for the desperate lawyer as he draws closer to his own death, and grows ever thinner.. Tags: blow job, curse, fat suit, steven king"} +{"id": "12637", "title": "New York, New York", "year": 1977, "duration_min": 155, "rating": 6.1, "genres": "Drama, Music, Romance", "genres_pipe": "|Drama|Music|Romance|", "keywords": "new york, jazz, saxophonist, falling in love", "tags_pipe": "|new york|jazz|saxophonist|falling in love|", "overview": "An egotistical saxophone player and a young singer meet on V-J Day and embark upon a strained and rocky romance, even as their careers begin a long uphill climb.", "text_for_embedding": "New York, New York (1977). Genres: Drama, Music, Romance. An egotistical saxophone player and a young singer meet on V-J Day and embark upon a strained and rocky romance, even as their careers begin a long uphill climb.. Tags: new york, jazz, saxophonist, falling in love"} +{"id": "34152", "title": "Crooklyn", "year": 1994, "duration_min": 115, "rating": 6.7, "genres": "Comedy, Drama", "genres_pipe": "|Comedy|Drama|", "keywords": "black people, 1970s, jazz musician, straßenkids, dysfunctional family, independent film, teacher, urban, parenthood", "tags_pipe": "|black people|1970s|jazz musician|straßenkids|dysfunctional family|independent film|teacher|urban|parenthood|", "overview": "From Spike Lee comes this vibrant semi-autobiographical portrait of a school-teacher, her stubborn jazz-musician husband and their five kids living in '70s Brooklyn.", "text_for_embedding": "Crooklyn (1994). Genres: Comedy, Drama. From Spike Lee comes this vibrant semi-autobiographical portrait of a school-teacher, her stubborn jazz-musician husband and their five kids living in '70s Brooklyn.. Tags: black people, 1970s, jazz musician, straßenkids, dysfunctional family, independent film, teacher, urban, parenthood"} +{"id": "14434", "title": "I Think I Love My Wife", "year": 2007, "duration_min": 90, "rating": 5.0, "genres": "Comedy, Romance", "genres_pipe": "|Comedy|Romance|", "keywords": "", "tags_pipe": "", "overview": "Richard Cooper (Rock) is a married man and father of two who is just plain bored with married life. Not getting any sex from his wife, he resorts to ogling random women on the street to the point he takes lunch late to look at them. When old crush Nikki Tru (Kerry Washington) visits his office to get a reference letter, she becomes obsessed with Cooper and they begin a complicated relationship.", "text_for_embedding": "I Think I Love My Wife (2007). Genres: Comedy, Romance. Richard Cooper (Rock) is a married man and father of two who is just plain bored with married life. Not getting any sex from his wife, he resorts to ogling random women on the street to the point he takes lunch late to look at them. When old crush Nikki Tru (Kerry Washington) visits his office to get a reference letter, she becomes obsessed with Cooper and they begin a complicated relationship.. Tags: "} +{"id": "11470", "title": "Jason X", "year": 2001, "duration_min": 91, "rating": 4.5, "genres": "Horror, Science Fiction", "genres_pipe": "|Horror|Science Fiction|", "keywords": "places and planets, space marine, future, cryogenics, space, slaughter, series of murders, scientist, freeze", "tags_pipe": "|places and planets|space marine|future|cryogenics|space|slaughter|series of murders|scientist|freeze|", "overview": "In the year 2455, Old Earth is now a contaminated planet abandoned for centuries -- a brown world of violent storms, toxic landmasses and poisonous seas. Yet humans have returned to the deadly place that they once fled, not to live, but to research the ancient, rusting artifacts of the long-gone civilizations. But it's not the harmful environment that could prove fatal to the intrepid, young explorers who have just landed on Old Earth. For them, it's Friday the 13th, and Jason lives!", "text_for_embedding": "Jason X (2001). Genres: Horror, Science Fiction. In the year 2455, Old Earth is now a contaminated planet abandoned for centuries -- a brown world of violent storms, toxic landmasses and poisonous seas. Yet humans have returned to the deadly place that they once fled, not to live, but to research the ancient, rusting artifacts of the long-gone civilizations. But it's not the harmful environment that could prove fatal to the intrepid, young explorers who have just landed on Old Earth. For them, it's Friday the 13th, and Jason lives!. Tags: places and planets, space marine, future, cryogenics, space, slaughter, series of murders, scientist, freeze"} +{"id": "10741", "title": "Bobby", "year": 2006, "duration_min": 120, "rating": 6.4, "genres": "History, Drama", "genres_pipe": "|History|Drama|", "keywords": "hotel, senator, kitchen, marriage crisis, politics, xenophobia", "tags_pipe": "|hotel|senator|kitchen|marriage crisis|politics|xenophobia|", "overview": "In 1968 the lives of a retired doorman, hotel manager, lounge singer, busboy, beautician and others intersect in the wake of Robert F. Kennedy's assassination at the Ambassador Hotel in Los Angeles.", "text_for_embedding": "Bobby (2006). Genres: History, Drama. In 1968 the lives of a retired doorman, hotel manager, lounge singer, busboy, beautician and others intersect in the wake of Robert F. Kennedy's assassination at the Ambassador Hotel in Los Angeles.. Tags: hotel, senator, kitchen, marriage crisis, politics, xenophobia"} +{"id": "24940", "title": "Head Over Heels", "year": 2001, "duration_min": 86, "rating": 5.3, "genres": "Comedy, Romance", "genres_pipe": "|Comedy|Romance|", "keywords": "supermodel, stalking, models", "tags_pipe": "|supermodel|stalking|models|", "overview": "Ordinary single girl Amanda Pierce (Monica Potter) unexpectedly finds herself sharing an awesome Manhattan apartment with four sexy supermodels. Determined to bring Amanda into their world, the models give her the ultimate makeover. The plan works fabulously as Amanda connects with next door charmer Jim Winston (Freddie Prinze, Jr.). That is, until one night...", "text_for_embedding": "Head Over Heels (2001). Genres: Comedy, Romance. Ordinary single girl Amanda Pierce (Monica Potter) unexpectedly finds herself sharing an awesome Manhattan apartment with four sexy supermodels. Determined to bring Amanda into their world, the models give her the ultimate makeover. The plan works fabulously as Amanda connects with next door charmer Jim Winston (Freddie Prinze, Jr.). That is, until one night.... Tags: supermodel, stalking, models"} +{"id": "82679", "title": "Fun Size", "year": 2012, "duration_min": 87, "rating": 5.5, "genres": "Comedy", "genres_pipe": "|Comedy|", "keywords": "halloween, friends, little brother, trick or treating, boyfriend girlfriend relationship", "tags_pipe": "|halloween|friends|little brother|trick or treating|boyfriend girlfriend relationship|", "overview": "Wren is invited to a Halloween party by her crush, Aaron Riley, but she is also forced by her mother to take her oddball little brother Albert with her when she goes out trick-or-treating on Halloween. When she goes to the party instead, she loses him and must find him before her mother finds out.", "text_for_embedding": "Fun Size (2012). Genres: Comedy. Wren is invited to a Halloween party by her crush, Aaron Riley, but she is also forced by her mother to take her oddball little brother Albert with her when she goes out trick-or-treating on Halloween. When she goes to the party instead, she loses him and must find him before her mother finds out.. Tags: halloween, friends, little brother, trick or treating, boyfriend girlfriend relationship"} +{"id": "2013", "title": "The Diving Bell and the Butterfly", "year": 2007, "duration_min": 112, "rating": 7.4, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "writing, lover (female), psychological stress, dying and death, editor-in-chief, french, independent film, patient, disabled", "tags_pipe": "|writing|lover (female)|psychological stress|dying and death|editor-in-chief|french|independent film|patient|disabled|", "overview": "Elle France editor Jean-Dominique Bauby, who, in 1995 at the age of 43, suffered a stroke that paralyzed his entire body, except his left eye. Using that eye to blink out his memoir, Bauby eloquently described the aspects of his interior world, from the psychological torment of being trapped inside his body to his imagined stories from lands he'd only visited in his mind.", "text_for_embedding": "The Diving Bell and the Butterfly (2007). Genres: Drama. Elle France editor Jean-Dominique Bauby, who, in 1995 at the age of 43, suffered a stroke that paralyzed his entire body, except his left eye. Using that eye to blink out his memoir, Bauby eloquently described the aspects of his interior world, from the psychological torment of being trapped inside his body to his imagined stories from lands he'd only visited in his mind.. Tags: writing, lover (female), psychological stress, dying and death, editor-in-chief, french, independent film, patient, disabled"} +{"id": "1440", "title": "Little Children", "year": 2006, "duration_min": 136, "rating": 6.9, "genres": "Romance, Drama", "genres_pipe": "|Romance|Drama|", "keywords": "skateboarding, mother, american football, adultery, wife husband relationship, small town, eroticism, vororte, pedophilia, loser, infant, housewife, bourgeoisie, deceived wife, playground", "tags_pipe": "|skateboarding|mother|american football|adultery|wife husband relationship|small town|eroticism|vororte|pedophilia|loser|infant|housewife|bourgeoisie|deceived wife|playground|", "overview": "The lives of two lovelorn spouses from separate marriages, a registered sex offender, and a disgraced ex-police officer intersect as they struggle to resist their vulnerabilities and temptations.", "text_for_embedding": "Little Children (2006). Genres: Romance, Drama. The lives of two lovelorn spouses from separate marriages, a registered sex offender, and a disgraced ex-police officer intersect as they struggle to resist their vulnerabilities and temptations.. Tags: skateboarding, mother, american football, adultery, wife husband relationship, small town, eroticism, vororte, pedophilia, loser, infant, housewife, bourgeoisie, deceived wife, playground"} +{"id": "18041", "title": "Gossip", "year": 2000, "duration_min": 90, "rating": 5.5, "genres": "Drama, Mystery, Thriller", "genres_pipe": "|Drama|Mystery|Thriller|", "keywords": "college, suspense, gossip, rumor, social experiment", "tags_pipe": "|college|suspense|gossip|rumor|social experiment|", "overview": "On a beautiful college campus, something ugly is about to be spread around. A bit of gossip that was told is starting to take a frightening turn. Who could it have offended and how far will the person on the other side of the gossip handle the embarrassing situation.", "text_for_embedding": "Gossip (2000). Genres: Drama, Mystery, Thriller. On a beautiful college campus, something ugly is about to be spread around. A bit of gossip that was told is starting to take a frightening turn. Who could it have offended and how far will the person on the other side of the gossip handle the embarrassing situation.. Tags: college, suspense, gossip, rumor, social experiment"} +{"id": "28029", "title": "A Walk on the Moon", "year": 1999, "duration_min": 107, "rating": 6.2, "genres": "Drama, Romance", "genres_pipe": "|Drama|Romance|", "keywords": "adultery, woodstock, 1960s", "tags_pipe": "|adultery|woodstock|1960s|", "overview": "The world of a young housewife is turned upside down when she has an affair with a free-spirited blouse salesman.", "text_for_embedding": "A Walk on the Moon (1999). Genres: Drama, Romance. The world of a young housewife is turned upside down when she has an affair with a free-spirited blouse salesman.. Tags: adultery, woodstock, 1960s"} +{"id": "1123", "title": "Catch a Fire", "year": 2006, "duration_min": 101, "rating": 6.4, "genres": "Action, Drama, Thriller", "genres_pipe": "|Action|Drama|Thriller|", "keywords": "police brutality, resistance, south africa, apartheid, african national congress, right and justice", "tags_pipe": "|police brutality|resistance|south africa|apartheid|african national congress|right and justice|", "overview": "The true story of anti-apartheid activists in South Africa, and particularly the life of Patrick Chamusso, a timid foreman at Secunda CTL, the largest synthetic fuel plant in the world. Patrick is wrongly accused, imprisoned and tortured for an attempt to bomb the plant, with the injustice transforming the apolitical worker into a radicalised insurgent, who then carries out his own successful sabotage mission.", "text_for_embedding": "Catch a Fire (2006). Genres: Action, Drama, Thriller. The true story of anti-apartheid activists in South Africa, and particularly the life of Patrick Chamusso, a timid foreman at Secunda CTL, the largest synthetic fuel plant in the world. Patrick is wrongly accused, imprisoned and tortured for an attempt to bomb the plant, with the injustice transforming the apolitical worker into a radicalised insurgent, who then carries out his own successful sabotage mission.. Tags: police brutality, resistance, south africa, apartheid, african national congress, right and justice"} +{"id": "14033", "title": "Soul Survivors", "year": 2001, "duration_min": 84, "rating": 4.4, "genres": "Horror, Mystery, Thriller", "genres_pipe": "|Horror|Mystery|Thriller|", "keywords": "hallucination, car crash, death, sole survivor", "tags_pipe": "|hallucination|car crash|death|sole survivor|", "overview": "A female collage co-ed freshman who was involved in a fatal car crash discovers she may not have survived the tragedy after all when she becomes caught between the world of the living and the dead A sort of limbo state of being between both the real and the spirit worlds in which the ghosts of the afterlife want to collect her, or even worse, use her body in its transition state to enter our world", "text_for_embedding": "Soul Survivors (2001). Genres: Horror, Mystery, Thriller. A female collage co-ed freshman who was involved in a fatal car crash discovers she may not have survived the tragedy after all when she becomes caught between the world of the living and the dead A sort of limbo state of being between both the real and the spirit worlds in which the ghosts of the afterlife want to collect her, or even worse, use her body in its transition state to enter our world. Tags: hallucination, car crash, death, sole survivor"} +{"id": "87729", "title": "Jefferson in Paris", "year": 1995, "duration_min": 139, "rating": 5.2, "genres": "Drama, Romance", "genres_pipe": "|Drama|Romance|", "keywords": "france, revolution, biography, president, history", "tags_pipe": "|france|revolution|biography|president|history|", "overview": "His wife having recently died, Thomas Jefferson accepts the post of United States ambassador to pre-revolutionary France, though he finds it difficult to adjust to life in a country where the aristocracy subjugates an increasingly restless peasantry. In Paris, he becomes smitten with cultured artist Maria Cosway, but, when his daughter visits from Virginia accompanied by her attractive slave, Sally Hemings, Jefferson's attentions are diverted.", "text_for_embedding": "Jefferson in Paris (1995). Genres: Drama, Romance. His wife having recently died, Thomas Jefferson accepts the post of United States ambassador to pre-revolutionary France, though he finds it difficult to adjust to life in a country where the aristocracy subjugates an increasingly restless peasantry. In Paris, he becomes smitten with cultured artist Maria Cosway, but, when his daughter visits from Virginia accompanied by her attractive slave, Sally Hemings, Jefferson's attentions are diverted.. Tags: france, revolution, biography, president, history"} +{"id": "16899", "title": "Easy Virtue", "year": 2008, "duration_min": 93, "rating": 6.3, "genres": "Comedy, Romance", "genres_pipe": "|Comedy|Romance|", "keywords": "", "tags_pipe": "", "overview": "A young Englishman marries a glamorous American. When he brings her home to meet the parents, she arrives like a blast from the future - blowing their entrenched British stuffiness out the window.", "text_for_embedding": "Easy Virtue (2008). Genres: Comedy, Romance. A young Englishman marries a glamorous American. When he brings her home to meet the parents, she arrives like a blast from the future - blowing their entrenched British stuffiness out the window.. Tags: "} +{"id": "41317", "title": "Caravans", "year": 1978, "duration_min": 127, "rating": 5.8, "genres": "Action, Adventure, Drama, Romance", "genres_pipe": "|Action|Adventure|Drama|Romance|", "keywords": "", "tags_pipe": "", "overview": "This epic adventure-drama based on James Michener's best-selling novel concerns a young American embassy official who is sent into the Middle-Eastern desert to find the missing daughter of a US Senator. The young woman has left her husband, a Colonel in the Shadom - she was his number two wife - and has opted for the lifestyle of a nomadic tribe. When the diplomat locates the girl he joins the caravan and attempts to persuade the girl to return.", "text_for_embedding": "Caravans (1978). Genres: Action, Adventure, Drama, Romance. This epic adventure-drama based on James Michener's best-selling novel concerns a young American embassy official who is sent into the Middle-Eastern desert to find the missing daughter of a US Senator. The young woman has left her husband, a Colonel in the Shadom - she was his number two wife - and has opted for the lifestyle of a nomadic tribe. When the diplomat locates the girl he joins the caravan and attempts to persuade the girl to return.. Tags: "} +{"id": "245700", "title": "Mr. Turner", "year": 2014, "duration_min": 150, "rating": 6.3, "genres": "History, Drama", "genres_pipe": "|History|Drama|", "keywords": "painter", "tags_pipe": "|painter|", "overview": "Eccentric British painter J.M.W. Turner lives his last 25 years with gusto and secretly becomes involved with a seaside landlady, while his faithful housekeeper bears an unrequited love for him.", "text_for_embedding": "Mr. Turner (2014). Genres: History, Drama. Eccentric British painter J.M.W. Turner lives his last 25 years with gusto and secretly becomes involved with a seaside landlady, while his faithful housekeeper bears an unrequited love for him.. Tags: painter"} +{"id": "37842", "title": "Wild Grass", "year": 2009, "duration_min": 104, "rating": 5.8, "genres": "Drama, Romance", "genres_pipe": "|Drama|Romance|", "keywords": "whiskey, experimental film, wallet, cult director", "tags_pipe": "|whiskey|experimental film|wallet|cult director|", "overview": "Marguerite loses her wallet, and it's found by Georges, a seemingly happy head of family. As he looks through the wallet and examines the photos of Marguerite, he finds he's fascinated with her and her life, and soon his curiosity about her becomes an obsession.", "text_for_embedding": "Wild Grass (2009). Genres: Drama, Romance. Marguerite loses her wallet, and it's found by Georges, a seemingly happy head of family. As he looks through the wallet and examines the photos of Marguerite, he finds he's fascinated with her and her life, and soon his curiosity about her becomes an obsession.. Tags: whiskey, experimental film, wallet, cult director"} +{"id": "9045", "title": "Amen.", "year": 2002, "duration_min": 132, "rating": 7.1, "genres": "Drama, History", "genres_pipe": "|Drama|History|", "keywords": "vatican, pope, concentration camp, holocaust, schutzstaffel, nazis, nazi germany, doctor, conscience, catholicism, euthanasia", "tags_pipe": "|vatican|pope|concentration camp|holocaust|schutzstaffel|nazis|nazi germany|doctor|conscience|catholicism|euthanasia|", "overview": "The film \"Amen.\" examines the links between the Vatican and Nazi Germany. The central character is Kurt Gerstein, a member of the Institute for Hygiene of the Waffen-SS who is horrified by what he sees in the death camps. Moreover, he is shocked to learn that the process he used to purify water for his troops, by using zyklon, served as a basis to kill people in gas chambers.", "text_for_embedding": "Amen. (2002). Genres: Drama, History. The film \"Amen.\" examines the links between the Vatican and Nazi Germany. The central character is Kurt Gerstein, a member of the Institute for Hygiene of the Waffen-SS who is horrified by what he sees in the death camps. Moreover, he is shocked to learn that the process he used to purify water for his troops, by using zyklon, served as a basis to kill people in gas chambers.. Tags: vatican, pope, concentration camp, holocaust, schutzstaffel, nazis, nazi germany, doctor, conscience, catholicism, euthanasia"} +{"id": "44092", "title": "Reign of Assassins", "year": 2010, "duration_min": 117, "rating": 6.7, "genres": "History, Action", "genres_pipe": "|History|Action|", "keywords": "martial arts, sword fight, wuxia", "tags_pipe": "|martial arts|sword fight|wuxia|", "overview": "Set in ancient China, Zeng Jing is a skilled assassin who finds herself in possession of a mystical Buddhist monk's remains. She begins a quest to return the remains to its rightful resting place, and thus places herself in mortal danger because a team of assassins is in a deadly pursuit to possess the remains which holds an ancient power-wielding secret.", "text_for_embedding": "Reign of Assassins (2010). Genres: History, Action. Set in ancient China, Zeng Jing is a skilled assassin who finds herself in possession of a mystical Buddhist monk's remains. She begins a quest to return the remains to its rightful resting place, and thus places herself in mortal danger because a team of assassins is in a deadly pursuit to possess the remains which holds an ancient power-wielding secret.. Tags: martial arts, sword fight, wuxia"} +{"id": "16005", "title": "The Lucky Ones", "year": 2008, "duration_min": 113, "rating": 6.3, "genres": "Comedy, Drama, History", "genres_pipe": "|Comedy|Drama|History|", "keywords": "friendship, war, road trip, independent film, soldier", "tags_pipe": "|friendship|war|road trip|independent film|soldier|", "overview": "The story revolves around three soldiers — Colee, T.K. and Cheaver — who return from the Iraq War after suffering injuries and learn that life has moved on without them. They end up on an unexpected road trip across the U.S.", "text_for_embedding": "The Lucky Ones (2008). Genres: Comedy, Drama, History. The story revolves around three soldiers — Colee, T.K. and Cheaver — who return from the Iraq War after suffering injuries and learn that life has moved on without them. They end up on an unexpected road trip across the U.S.. Tags: friendship, war, road trip, independent film, soldier"} +{"id": "44754", "title": "Margaret", "year": 2011, "duration_min": 149, "rating": 6.1, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "new york, bus, nightmare, witness, investigation, police, truth, teacher, blood, student, relationship, family", "tags_pipe": "|new york|bus|nightmare|witness|investigation|police|truth|teacher|blood|student|relationship|family|", "overview": "A young woman witnesses a bus accident, and is caught up in the aftermath, where the question of whether or not it was intentional affects many people's lives.", "text_for_embedding": "Margaret (2011). Genres: Drama. A young woman witnesses a bus accident, and is caught up in the aftermath, where the question of whether or not it was intentional affects many people's lives.. Tags: new york, bus, nightmare, witness, investigation, police, truth, teacher, blood, student, relationship, family"} +{"id": "23988", "title": "Stan Helsing", "year": 2009, "duration_min": 90, "rating": 4.0, "genres": "Comedy, Horror", "genres_pipe": "|Comedy|Horror|", "keywords": "halloween, slapstick, duringcreditsstinger", "tags_pipe": "|halloween|slapstick|duringcreditsstinger|", "overview": "It's Halloween night and video store clerk Stan Helsing just got stuck with a last minute request to deliver some videos. With his best friend, his best friend's date, and a smoking hot ex-girlfriend waiting to go to a party, Stan convinces them to take a side trip to Stormy Night Estates for the drop. But the group gets locked inside and Stan discovers he's actually Stan Van Helsing, descendan", "text_for_embedding": "Stan Helsing (2009). Genres: Comedy, Horror. It's Halloween night and video store clerk Stan Helsing just got stuck with a last minute request to deliver some videos. With his best friend, his best friend's date, and a smoking hot ex-girlfriend waiting to go to a party, Stan convinces them to take a side trip to Stormy Night Estates for the drop. But the group gets locked inside and Stan discovers he's actually Stan Van Helsing, descendan. Tags: halloween, slapstick, duringcreditsstinger"} +{"id": "43949", "title": "Flipped", "year": 2010, "duration_min": 89, "rating": 7.4, "genres": "Romance, Drama", "genres_pipe": "|Romance|Drama|", "keywords": "shyness, based on novel, unrequited love, neighbor, family relationships, first crush, young love, opposites attract, adolescent boy, based on young adult novel", "tags_pipe": "|shyness|based on novel|unrequited love|neighbor|family relationships|first crush|young love|opposites attract|adolescent boy|based on young adult novel|", "overview": "When Juli meets Bryce in the second grade, she knows it's true love. After spending six years trying to convince Bryce the same, she's ready to give up - until he starts to reconsider.", "text_for_embedding": "Flipped (2010). Genres: Romance, Drama. When Juli meets Bryce in the second grade, she knows it's true love. After spending six years trying to convince Bryce the same, she's ready to give up - until he starts to reconsider.. Tags: shyness, based on novel, unrequited love, neighbor, family relationships, first crush, young love, opposites attract, adolescent boy, based on young adult novel"} +{"id": "142", "title": "Brokeback Mountain", "year": 2005, "duration_min": 134, "rating": 7.5, "genres": "Drama, Romance", "genres_pipe": "|Drama|Romance|", "keywords": "gay, countryside, homophobia, loss of lover, wyoming, rodeo, father murder, horseback riding, intolerance, daughter, marriage crisis, secret love, cowboy, star crossed lovers", "tags_pipe": "|gay|countryside|homophobia|loss of lover|wyoming|rodeo|father murder|horseback riding|intolerance|daughter|marriage crisis|secret love|cowboy|star crossed lovers|", "overview": "Brokeback Mountain is an Ang Lee film about two modern day cowboys who meet on a shepherding job in the summer of ’63. The two share a raw and powerful summer together that turns into a life long relationship conflicting with the lives they are supposed to live.", "text_for_embedding": "Brokeback Mountain (2005). Genres: Drama, Romance. Brokeback Mountain is an Ang Lee film about two modern day cowboys who meet on a shepherding job in the summer of ’63. The two share a raw and powerful summer together that turns into a life long relationship conflicting with the lives they are supposed to live.. Tags: gay, countryside, homophobia, loss of lover, wyoming, rodeo, father murder, horseback riding, intolerance, daughter, marriage crisis, secret love, cowboy, star crossed lovers"} +{"id": "9603", "title": "Clueless", "year": 1995, "duration_min": 97, "rating": 6.9, "genres": "Comedy, Drama, Romance", "genres_pipe": "|Comedy|Drama|Romance|", "keywords": "puberty, high school, make a match, spoiled child, gay interest, conflict, woman director", "tags_pipe": "|puberty|high school|make a match|spoiled child|gay interest|conflict|woman director|", "overview": "Shallow, rich and socially successful Cher is at the top of her Beverly Hills high school's pecking scale. Seeing herself as a matchmaker, Cher first coaxes two teachers into dating each other. Emboldened by her success, she decides to give hopelessly klutzy new student Tai a makeover. When Tai becomes more popular than she is, Cher realizes that her disapproving ex-stepbrother was right about how misguided she was -- and falls for him.", "text_for_embedding": "Clueless (1995). Genres: Comedy, Drama, Romance. Shallow, rich and socially successful Cher is at the top of her Beverly Hills high school's pecking scale. Seeing herself as a matchmaker, Cher first coaxes two teachers into dating each other. Emboldened by her success, she decides to give hopelessly klutzy new student Tai a makeover. When Tai becomes more popular than she is, Cher realizes that her disapproving ex-stepbrother was right about how misguided she was -- and falls for him.. Tags: puberty, high school, make a match, spoiled child, gay interest, conflict, woman director"} +{"id": "10712", "title": "Far from Heaven", "year": 2002, "duration_min": 107, "rating": 6.9, "genres": "Drama, Romance", "genres_pipe": "|Drama|Romance|", "keywords": "black people, wife husband relationship, botanist, homosexuality", "tags_pipe": "|black people|wife husband relationship|botanist|homosexuality|", "overview": "In 1950s Connecticut, a housewife faces a marital crisis and mounting racial tensions in the outside world.", "text_for_embedding": "Far from Heaven (2002). Genres: Drama, Romance. In 1950s Connecticut, a housewife faces a marital crisis and mounting racial tensions in the outside world.. Tags: black people, wife husband relationship, botanist, homosexuality"} +{"id": "243938", "title": "Hot Tub Time Machine 2", "year": 2015, "duration_min": 93, "rating": 5.0, "genres": "Comedy", "genres_pipe": "|Comedy|", "keywords": "time travel, sequel, hot tub, duringcreditsstinger", "tags_pipe": "|time travel|sequel|hot tub|duringcreditsstinger|", "overview": "When Lou, who has become the \"father of the Internet,\" is shot by an unknown assailant, Jacob and Nick fire up the time machine again to save their friend.", "text_for_embedding": "Hot Tub Time Machine 2 (2015). Genres: Comedy. When Lou, who has become the \"father of the Internet,\" is shot by an unknown assailant, Jacob and Nick fire up the time machine again to save their friend.. Tags: time travel, sequel, hot tub, duringcreditsstinger"} +{"id": "10876", "title": "Quills", "year": 2000, "duration_min": 124, "rating": 6.8, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "asylum, french revolution, french, smuggling, maid", "tags_pipe": "|asylum|french revolution|french|smuggling|maid|", "overview": "A nobleman with a literary flair, the Marquis de Sade lives in a madhouse where a beautiful laundry maid smuggles his erotic stories to a printer, defying orders from the asylum's resident priest. The titillating passages whip all of France into a sexual frenzy, until a fiercely conservative doctor tries to put an end to the fun.", "text_for_embedding": "Quills (2000). Genres: Drama. A nobleman with a literary flair, the Marquis de Sade lives in a madhouse where a beautiful laundry maid smuggles his erotic stories to a printer, defying orders from the asylum's resident priest. The titillating passages whip all of France into a sexual frenzy, until a fiercely conservative doctor tries to put an end to the fun.. Tags: asylum, french revolution, french, smuggling, maid"} +{"id": "86838", "title": "Seven Psychopaths", "year": 2012, "duration_min": 110, "rating": 6.7, "genres": "Comedy, Crime", "genres_pipe": "|Comedy|Crime|", "keywords": "suicide, alcohol, sex, screenwriter, underworld, fight, kidnapping, party, murder, scam, los angeles, gangster, explosion, criminal, shih tzu", "tags_pipe": "|suicide|alcohol|sex|screenwriter|underworld|fight|kidnapping|party|murder|scam|los angeles|gangster|explosion|criminal|shih tzu|", "overview": "A struggling screenwriter inadvertently becomes entangled in the Los Angeles criminal underworld after his oddball friends kidnap a gangster's beloved Shih Tzu.", "text_for_embedding": "Seven Psychopaths (2012). Genres: Comedy, Crime. A struggling screenwriter inadvertently becomes entangled in the Los Angeles criminal underworld after his oddball friends kidnap a gangster's beloved Shih Tzu.. Tags: suicide, alcohol, sex, screenwriter, underworld, fight, kidnapping, party, murder, scam, los angeles, gangster, explosion, criminal, shih tzu"} +{"id": "25208", "title": "The Caveman's Valentine", "year": 2001, "duration_min": 105, "rating": 6.0, "genres": "Drama, Mystery, Thriller", "genres_pipe": "|Drama|Mystery|Thriller|", "keywords": "woman director", "tags_pipe": "|woman director|", "overview": "In this spine-tingling and visually stunning thriller, Academy Award®-nominee Samuel L. Jackson (Unbreakable, Shaft, Pulp Fiction delivers a \"full-throttle performance\" (People) as Romulus Ledbetter, a misunderstood musician turned recluse, hiding from personal demons in a New York City cave. When Romulus finds the frozen body of a young drifter in a tree, the authorities - including his police officer daughter (Aunjanne Ellis) - claim the death is accidental. Romulus is convinced the man was murdered by prominent art photographer David Leppenraub (Colm Feore). But how can he prove he's right when everyone thinks he's insane?", "text_for_embedding": "The Caveman's Valentine (2001). Genres: Drama, Mystery, Thriller. In this spine-tingling and visually stunning thriller, Academy Award®-nominee Samuel L. Jackson (Unbreakable, Shaft, Pulp Fiction delivers a \"full-throttle performance\" (People) as Romulus Ledbetter, a misunderstood musician turned recluse, hiding from personal demons in a New York City cave. When Romulus finds the frozen body of a young drifter in a tree, the authorities - including his police officer daughter (Aunjanne Ellis) - claim the death is accidental. Romulus is convinced the man was murdered by prominent art photographer David Leppenraub (Colm Feore). But how can he prove he's right when everyone thinks he's insane?. Tags: woman director"} +{"id": "613", "title": "Downfall", "year": 2004, "duration_min": 156, "rating": 7.7, "genres": "Drama, History, War", "genres_pipe": "|Drama|History|War|", "keywords": "berlin, poison, dictator, clerk, ideology, world war ii, traitor, despair, destroy, testament, capitulation, soviet troops, race politics, national socialism, adolf hitler", "tags_pipe": "|berlin|poison|dictator|clerk|ideology|world war ii|traitor|despair|destroy|testament|capitulation|soviet troops|race politics|national socialism|adolf hitler|", "overview": "In April of 1945, Germany stands at the brink of defeat with the Russian Army closing in from the east and the Allied Expeditionary Force attacking from the west. In Berlin, capital of the Third Reich, Adolf Hitler proclaims that Germany will still achieve victory and orders his generals and advisers to fight to the last man. When the end finally does come, and Hitler lies dead by his own hand, what is left of his military must find a way to end the killing that is the Battle of Berlin, and lay down their arms in surrender.", "text_for_embedding": "Downfall (2004). Genres: Drama, History, War. In April of 1945, Germany stands at the brink of defeat with the Russian Army closing in from the east and the Allied Expeditionary Force attacking from the west. In Berlin, capital of the Third Reich, Adolf Hitler proclaims that Germany will still achieve victory and orders his generals and advisers to fight to the last man. When the end finally does come, and Hitler lies dead by his own hand, what is left of his military must find a way to end the killing that is the Battle of Berlin, and lay down their arms in surrender.. Tags: berlin, poison, dictator, clerk, ideology, world war ii, traitor, despair, destroy, testament, capitulation, soviet troops, race politics, national socialism, adolf hitler"} +{"id": "1913", "title": "The Sea Inside", "year": 2004, "duration_min": 125, "rating": 7.2, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "brother brother relationship, paraplegic, intensive care, ladykiller, wheelchair, dying and death, biography, galicia, bathing accident, freedom, romance, lawyer, sailor, euthanasia, dignity", "tags_pipe": "|brother brother relationship|paraplegic|intensive care|ladykiller|wheelchair|dying and death|biography|galicia|bathing accident|freedom|romance|lawyer|sailor|euthanasia|dignity|", "overview": "The Sea Inside is about Spaniard Ramón Sampedro, who fought a 30-year campaign to win the right to end his life with dignity. It is the story of Ramón’s relationships with two women: Julia a lawyer who supports his cause, and Rosa, a local woman who wants to convince him that life is worth living.", "text_for_embedding": "The Sea Inside (2004). Genres: Drama. The Sea Inside is about Spaniard Ramón Sampedro, who fought a 30-year campaign to win the right to end his life with dignity. It is the story of Ramón’s relationships with two women: Julia a lawyer who supports his cause, and Rosa, a local woman who wants to convince him that life is worth living.. Tags: brother brother relationship, paraplegic, intensive care, ladykiller, wheelchair, dying and death, biography, galicia, bathing accident, freedom, romance, lawyer, sailor, euthanasia, dignity"} +{"id": "97370", "title": "Under the Skin", "year": 2014, "duration_min": 108, "rating": 6.0, "genres": "Thriller, Science Fiction, Drama", "genres_pipe": "|Thriller|Science Fiction|Drama|", "keywords": "male nudity, scotland, edinburgh, alien, very little dialogue", "tags_pipe": "|male nudity|scotland|edinburgh|alien|very little dialogue|", "overview": "Jonathan Glazer's atmospheric, visually arresting abstraction stars Scarlett Johansson as a seductive alien who prowls the streets of Glasgow in search of prey: unsuspecting men who fall under her spell, only to be consumed by a strange liquid pool.", "text_for_embedding": "Under the Skin (2014). Genres: Thriller, Science Fiction, Drama. Jonathan Glazer's atmospheric, visually arresting abstraction stars Scarlett Johansson as a seductive alien who prowls the streets of Glasgow in search of prey: unsuspecting men who fall under her spell, only to be consumed by a strange liquid pool.. Tags: male nudity, scotland, edinburgh, alien, very little dialogue"} +{"id": "801", "title": "Good Morning, Vietnam", "year": 1987, "duration_min": 121, "rating": 7.1, "genres": "Comedy, Drama, War", "genres_pipe": "|Comedy|Drama|War|", "keywords": "rock and roll, radio station, war crimes, entertainer, explosive, cynic, radio, vietnam war, vietcong, gi, u.s. air force, dying and death, radio presenter, humor, saigon", "tags_pipe": "|rock and roll|radio station|war crimes|entertainer|explosive|cynic|radio|vietnam war|vietcong|gi|u.s. air force|dying and death|radio presenter|humor|saigon|", "overview": "Radio funny man Adrian Cronauer is sent to Vietnam to bring a little comedy back into the lives of the soldiers. After setting up shop, Cronauer delights the G.I.s but shocks his superior officer, Sergeant Major Dickerson, with his irreverent take on the war. While Dickerson attempts to censor Cronauer's broadcasts, Cronauer pursues a relationship with a Vietnamese girl named Trinh, who shows him the horrors of war first-hand.", "text_for_embedding": "Good Morning, Vietnam (1987). Genres: Comedy, Drama, War. Radio funny man Adrian Cronauer is sent to Vietnam to bring a little comedy back into the lives of the soldiers. After setting up shop, Cronauer delights the G.I.s but shocks his superior officer, Sergeant Major Dickerson, with his irreverent take on the war. While Dickerson attempts to censor Cronauer's broadcasts, Cronauer pursues a relationship with a Vietnamese girl named Trinh, who shows him the horrors of war first-hand.. Tags: rock and roll, radio station, war crimes, entertainer, explosive, cynic, radio, vietnam war, vietcong, gi, u.s. air force, dying and death, radio presenter, humor, saigon"} +{"id": "70829", "title": "The Last Godfather", "year": 2010, "duration_min": 100, "rating": 4.7, "genres": "Action, Comedy, Thriller", "genres_pipe": "|Action|Comedy|Thriller|", "keywords": "", "tags_pipe": "", "overview": "Young-goo the son of mafia boss Don Carini, is too foolish to be part of the mafia elite. One day, Young-goo comes to his father and is trained by Tony V to be his father's successor. A few days later, Young-goo accidentally rescues Nancy, the only daughter of Don Bonfante, the boss of a rival mafia family. But Vinnie, an under-boss of the Bonfante family kidnapped her and fabricates that Young-goo has taken her. Vinnie's behavior provokes an armed conflict between the two families.", "text_for_embedding": "The Last Godfather (2010). Genres: Action, Comedy, Thriller. Young-goo the son of mafia boss Don Carini, is too foolish to be part of the mafia elite. One day, Young-goo comes to his father and is trained by Tony V to be his father's successor. A few days later, Young-goo accidentally rescues Nancy, the only daughter of Don Bonfante, the boss of a rival mafia family. But Vinnie, an under-boss of the Bonfante family kidnapped her and fabricates that Young-goo has taken her. Vinnie's behavior provokes an armed conflict between the two families.. Tags: "} +{"id": "54518", "title": "Justin Bieber: Never Say Never", "year": 2011, "duration_min": 105, "rating": 4.8, "genres": "Documentary, Music, Family", "genres_pipe": "|Documentary|Music|Family|", "keywords": "manager, canada, pop singer, star, prayer, music competition, tour bus, aftercreditsstinger, duringcreditsstinger, justin bieber", "tags_pipe": "|manager|canada|pop singer|star|prayer|music competition|tour bus|aftercreditsstinger|duringcreditsstinger|justin bieber|", "overview": "Tells the story of Justin Bieber, the kid from Canada with the hair, the smile and the voice: It chronicles his unprecedented rise to fame, all the way from busking in the streets of Stratford, Canada to putting videos on YouTube to selling out Madison Square Garden in New York as the headline act during the My World Tour from 2010. It features Usher, Scooter Braun, Ludacris, Sean Kingston, Antonio \"L.A.\" Reid, Boyz II Men, Miley Cyrus, Jaden Smith, Justin's family members and parts of his crew and huge fanbase in a mix of interviews and guest performances. It was released in 3D in theaters all around the world and is the highest grossing concert movie of all time, beating the previous record held by Michael Jackson's This Is It from 2009.", "text_for_embedding": "Justin Bieber: Never Say Never (2011). Genres: Documentary, Music, Family. Tells the story of Justin Bieber, the kid from Canada with the hair, the smile and the voice: It chronicles his unprecedented rise to fame, all the way from busking in the streets of Stratford, Canada to putting videos on YouTube to selling out Madison Square Garden in New York as the headline act during the My World Tour from 2010. It features Usher, Scooter Braun, Ludacris, Sean Kingston, Antonio \"L.A.\" Reid, Boyz II Men, Miley Cyrus, Jaden Smith, Justin's family members and parts of his crew and huge fanbase in a mix of interviews and guest performances. It was released in 3D in theaters all around the world and is the highest grossing concert movie of all time, beating the previous record held by Michael Jackson's This Is It from 2009.. Tags: manager, canada, pop singer, star, prayer, music competition, tour bus, aftercreditsstinger, duringcreditsstinger, justin bieber"} +{"id": "44214", "title": "Black Swan", "year": 2010, "duration_min": 108, "rating": 7.3, "genres": "Drama, Thriller", "genres_pipe": "|Drama|Thriller|", "keywords": "dancing, competition, sex, dancer, obsession, paranoia, insanity, suspense, ballet, new york city, heartbreak, mental illness, madness, swan lake, ballerina", "tags_pipe": "|dancing|competition|sex|dancer|obsession|paranoia|insanity|suspense|ballet|new york city|heartbreak|mental illness|madness|swan lake|ballerina|", "overview": "A ballet dancer wins the lead in \"Swan Lake\" and is perfect for the role of the delicate White Swan - Princess Odette - but slowly loses her mind as she becomes more and more like Odile, the Black Swan.", "text_for_embedding": "Black Swan (2010). Genres: Drama, Thriller. A ballet dancer wins the lead in \"Swan Lake\" and is perfect for the role of the delicate White Swan - Princess Odette - but slowly loses her mind as she becomes more and more like Odile, the Black Swan.. Tags: dancing, competition, sex, dancer, obsession, paranoia, insanity, suspense, ballet, new york city, heartbreak, mental illness, madness, swan lake, ballerina"} +{"id": "240", "title": "The Godfather: Part II", "year": 1974, "duration_min": 200, "rating": 8.3, "genres": "Drama, Crime", "genres_pipe": "|Drama|Crime|", "keywords": "italo-american, cuba, vororte, melancholy, praise, revenge, mafia, lawyer, blood, corrupt politician, bloody body of child, man punches woman", "tags_pipe": "|italo-american|cuba|vororte|melancholy|praise|revenge|mafia|lawyer|blood|corrupt politician|bloody body of child|man punches woman|", "overview": "In the continuing saga of the Corleone crime family, a young Vito Corleone grows up in Sicily and in 1910s New York. In the 1950s, Michael Corleone attempts to expand the family business into Las Vegas, Hollywood and Cuba.", "text_for_embedding": "The Godfather: Part II (1974). Genres: Drama, Crime. In the continuing saga of the Corleone crime family, a young Vito Corleone grows up in Sicily and in 1910s New York. In the 1950s, Michael Corleone attempts to expand the family business into Las Vegas, Hollywood and Cuba.. Tags: italo-american, cuba, vororte, melancholy, praise, revenge, mafia, lawyer, blood, corrupt politician, bloody body of child, man punches woman"} +{"id": "9816", "title": "Save the Last Dance", "year": 2001, "duration_min": 112, "rating": 6.3, "genres": "Drama, Family, Romance, Music", "genres_pipe": "|Drama|Family|Romance|Music|", "keywords": "ballet dancer, musical, ballet", "tags_pipe": "|ballet dancer|musical|ballet|", "overview": "A white midwestern girl moves to Chicago, where her new boyfriend is a black teen from the South Side with a rough, semi-criminal past.", "text_for_embedding": "Save the Last Dance (2001). Genres: Drama, Family, Romance, Music. A white midwestern girl moves to Chicago, where her new boyfriend is a black teen from the South Side with a rough, semi-criminal past.. Tags: ballet dancer, musical, ballet"} +{"id": "10131", "title": "A Nightmare on Elm Street 4: The Dream Master", "year": 1988, "duration_min": 99, "rating": 5.8, "genres": "Horror, Thriller", "genres_pipe": "|Horror|Thriller|", "keywords": "martial arts, nightmare, supernatural, high school, resurrection, sequel, diner, alcoholic, disfigurement, dreams", "tags_pipe": "|martial arts|nightmare|supernatural|high school|resurrection|sequel|diner|alcoholic|disfigurement|dreams|", "overview": "Dream demon Freddy Krueger is resurrected from his apparent demise, and rapidly tracks down and kills the remainder of the Elm Street kids. However, Kristen, who can draw others into her dreams, wills her special ability to her friend Alice. Alice soon realizes that Freddy is taking advantage of that unknown power to pull a new group of children into his foul domain.", "text_for_embedding": "A Nightmare on Elm Street 4: The Dream Master (1988). Genres: Horror, Thriller. Dream demon Freddy Krueger is resurrected from his apparent demise, and rapidly tracks down and kills the remainder of the Elm Street kids. However, Kristen, who can draw others into her dreams, wills her special ability to her friend Alice. Alice soon realizes that Freddy is taking advantage of that unknown power to pull a new group of children into his foul domain.. Tags: martial arts, nightmare, supernatural, high school, resurrection, sequel, diner, alcoholic, disfigurement, dreams"} +{"id": "339984", "title": "Miracles from Heaven", "year": 2016, "duration_min": 117, "rating": 6.7, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "miracle, christian, cure, woman director, accident", "tags_pipe": "|miracle|christian|cure|woman director|accident|", "overview": "A faith based movie. A young girl suffering from a rare digestive disorder finds herself miraculously cured after surviving a terrible accident. Based on the book 'Three Miracles From Heaven' by Christy Beam.", "text_for_embedding": "Miracles from Heaven (2016). Genres: Drama. A faith based movie. A young girl suffering from a rare digestive disorder finds herself miraculously cured after surviving a terrible accident. Based on the book 'Three Miracles From Heaven' by Christy Beam.. Tags: miracle, christian, cure, woman director, accident"} +{"id": "8859", "title": "Dude, Where’s My Car?", "year": 2000, "duration_min": 83, "rating": 5.2, "genres": "Comedy", "genres_pipe": "|Comedy|", "keywords": "dude, amnesia, idiot, auto, friendship, cannabis, hangover, spoof, teenager, drug, alcohol abuse, celebration, car, duringcreditsstinger, child", "tags_pipe": "|dude|amnesia|idiot|auto|friendship|cannabis|hangover|spoof|teenager|drug|alcohol abuse|celebration|car|duringcreditsstinger|child|", "overview": "Jesse and Chester, two bumbling stoners, wake up one morning from a night of partying and cannot remember where they parked their car. They encounter a variety of people while looking for it, including their angry girlfriends, an angry street gang, a transexual stripper, a cult of alien seeking fanatics, and aliens in human form looking for a mystical device that could save or destroy the world.", "text_for_embedding": "Dude, Where’s My Car? (2000). Genres: Comedy. Jesse and Chester, two bumbling stoners, wake up one morning from a night of partying and cannot remember where they parked their car. They encounter a variety of people while looking for it, including their angry girlfriends, an angry street gang, a transexual stripper, a cult of alien seeking fanatics, and aliens in human form looking for a mystical device that could save or destroy the world.. Tags: dude, amnesia, idiot, auto, friendship, cannabis, hangover, spoof, teenager, drug, alcohol abuse, celebration, car, duringcreditsstinger, child"} +{"id": "11967", "title": "Young Guns", "year": 1988, "duration_min": 107, "rating": 6.6, "genres": "Crime, Action, Adventure, Drama, Western", "genres_pipe": "|Crime|Action|Adventure|Drama|Western|", "keywords": "corruption, sheriff, deputy sheriff, ranch, billy the kid, outlaw, neighbor", "tags_pipe": "|corruption|sheriff|deputy sheriff|ranch|billy the kid|outlaw|neighbor|", "overview": "A group of young gunmen, led by Billy the Kid, become deputies to avenge the murder of the rancher who became their benefactor. But when Billy takes their authority too far, they become the hunted.", "text_for_embedding": "Young Guns (1988). Genres: Crime, Action, Adventure, Drama, Western. A group of young gunmen, led by Billy the Kid, become deputies to avenge the murder of the rancher who became their benefactor. But when Billy takes their authority too far, they become the hunted.. Tags: corruption, sheriff, deputy sheriff, ranch, billy the kid, outlaw, neighbor"} +{"id": "239563", "title": "St. Vincent", "year": 2014, "duration_min": 102, "rating": 7.1, "genres": "Comedy", "genres_pipe": "|Comedy|", "keywords": "babysitter, friendship, neighbor, divorce, child of divorce", "tags_pipe": "|babysitter|friendship|neighbor|divorce|child of divorce|", "overview": "A young boy whose parents just divorced finds an unlikely friend and mentor in the misanthropic, bawdy, hedonistic, war veteran who lives next door.", "text_for_embedding": "St. Vincent (2014). Genres: Comedy. A young boy whose parents just divorced finds an unlikely friend and mentor in the misanthropic, bawdy, hedonistic, war veteran who lives next door.. Tags: babysitter, friendship, neighbor, divorce, child of divorce"} +{"id": "222899", "title": "About Last Night", "year": 2014, "duration_min": 100, "rating": 6.0, "genres": "Comedy, Romance", "genres_pipe": "|Comedy|Romance|", "keywords": "duringcreditsstinger", "tags_pipe": "|duringcreditsstinger|", "overview": "A modern reimagining of the classic romantic comedy, this contemporary version closely follows new love for two couples as they journey from the bar to the bedroom and are eventually put to the test in the real world.", "text_for_embedding": "About Last Night (2014). Genres: Comedy, Romance. A modern reimagining of the classic romantic comedy, this contemporary version closely follows new love for two couples as they journey from the bar to the bedroom and are eventually put to the test in the real world.. Tags: duringcreditsstinger"} +{"id": "4951", "title": "10 Things I Hate About You", "year": 1999, "duration_min": 97, "rating": 7.3, "genres": "Comedy, Romance, Drama", "genres_pipe": "|Comedy|Romance|Drama|", "keywords": "shakespeare, sister, high school, cannabis, deception, teen movie, shrew, archery, feel-good ending, opposites attract, duringcreditsstinger, teenage romance, play adaptation, overprotective father", "tags_pipe": "|shakespeare|sister|high school|cannabis|deception|teen movie|shrew|archery|feel-good ending|opposites attract|duringcreditsstinger|teenage romance|play adaptation|overprotective father|", "overview": "Bianca, a tenth grader, has never gone on a date, but she isn't allowed to go out with boys until her older sister Kat gets a boyfriend. The problem is, Kat rubs nearly everyone the wrong way. But Bianca and the guy she has her eye on, Joey, are eager, so Joey fixes Kat up with Patrick, a new kid in town just bitter enough for Kat.", "text_for_embedding": "10 Things I Hate About You (1999). Genres: Comedy, Romance, Drama. Bianca, a tenth grader, has never gone on a date, but she isn't allowed to go out with boys until her older sister Kat gets a boyfriend. The problem is, Kat rubs nearly everyone the wrong way. But Bianca and the guy she has her eye on, Joey, are eager, so Joey fixes Kat up with Patrick, a new kid in town just bitter enough for Kat.. Tags: shakespeare, sister, high school, cannabis, deception, teen movie, shrew, archery, feel-good ending, opposites attract, duringcreditsstinger, teenage romance, play adaptation, overprotective father"} +{"id": "10985", "title": "The New Guy", "year": 2002, "duration_min": 88, "rating": 5.7, "genres": "Comedy, Family", "genres_pipe": "|Comedy|Family|", "keywords": "prison, dual identity, identity, loser, high school, los angeles, duringcreditsstinger", "tags_pipe": "|prison|dual identity|identity|loser|high school|los angeles|duringcreditsstinger|", "overview": "Nerdy high school senior Dizzy Harrison has finally gotten lucky -- after purposely getting expelled, he takes lessons in 'badass cool' from a convict and enrolls at a new school. But can he keep up the ruse?", "text_for_embedding": "The New Guy (2002). Genres: Comedy, Family. Nerdy high school senior Dizzy Harrison has finally gotten lucky -- after purposely getting expelled, he takes lessons in 'badass cool' from a convict and enrolls at a new school. But can he keep up the ruse?. Tags: prison, dual identity, identity, loser, high school, los angeles, duringcreditsstinger"} +{"id": "9644", "title": "National Lampoon's Loaded Weapon 1", "year": 1993, "duration_min": 84, "rating": 5.7, "genres": "Comedy", "genres_pipe": "|Comedy|", "keywords": "cocaine, police, spoof, los angeles", "tags_pipe": "|cocaine|police|spoof|los angeles|", "overview": "An LA detective is murdered because she has microfilm with the recipe to make cocaine cookies. A \"Lethal Weapon\" style cop team tries to find and stop the fiends before they can dope the nation by distributing their wares via the \"Wilderness Girls\" cookie drive.", "text_for_embedding": "National Lampoon's Loaded Weapon 1 (1993). Genres: Comedy. An LA detective is murdered because she has microfilm with the recipe to make cocaine cookies. A \"Lethal Weapon\" style cop team tries to find and stop the fiends before they can dope the nation by distributing their wares via the \"Wilderness Girls\" cookie drive.. Tags: cocaine, police, spoof, los angeles"} +{"id": "332567", "title": "The Shallows", "year": 2016, "duration_min": 86, "rating": 6.2, "genres": "Horror, Drama, Thriller", "genres_pipe": "|Horror|Drama|Thriller|", "keywords": "mexico, beach, surfer, island, survival, young woman, shark, great white shark, trapped, animal attack, animal horror, prey", "tags_pipe": "|mexico|beach|surfer|island|survival|young woman|shark|great white shark|trapped|animal attack|animal horror|prey|", "overview": "An injured surfer stranded on a buoy needs to get back to shore, but the great white shark stalking her might have other ideas.", "text_for_embedding": "The Shallows (2016). Genres: Horror, Drama, Thriller. An injured surfer stranded on a buoy needs to get back to shore, but the great white shark stalking her might have other ideas.. Tags: mexico, beach, surfer, island, survival, young woman, shark, great white shark, trapped, animal attack, animal horror, prey"} +{"id": "1954", "title": "The Butterfly Effect", "year": 2004, "duration_min": 113, "rating": 7.3, "genres": "Science Fiction, Thriller", "genres_pipe": "|Science Fiction|Thriller|", "keywords": "amnesia, chaos theory, blackout, time travel, flashback", "tags_pipe": "|amnesia|chaos theory|blackout|time travel|flashback|", "overview": "A young man struggles to access sublimated childhood memories. He finds a technique that allows him to travel back into the past, to occupy his childhood body and change history. However, he soon finds that every change he makes has unexpected consequences.", "text_for_embedding": "The Butterfly Effect (2004). Genres: Science Fiction, Thriller. A young man struggles to access sublimated childhood memories. He finds a technique that allows him to travel back into the past, to occupy his childhood body and change history. However, he soon finds that every change he makes has unexpected consequences.. Tags: amnesia, chaos theory, blackout, time travel, flashback"} +{"id": "15489", "title": "Snow Day", "year": 2000, "duration_min": 89, "rating": 4.8, "genres": "Comedy, Family", "genres_pipe": "|Comedy|Family|", "keywords": "", "tags_pipe": "", "overview": "When a school in upstate New York is snowed in, a group of students hi-jack a plow to keep the school closed..", "text_for_embedding": "Snow Day (2000). Genres: Comedy, Family. When a school in upstate New York is snowed in, a group of students hi-jack a plow to keep the school closed... Tags: "} +{"id": "15250", "title": "This Christmas", "year": 2007, "duration_min": 117, "rating": 7.1, "genres": "Comedy, Drama", "genres_pipe": "|Comedy|Drama|", "keywords": "drama, family, family holiday, family feud", "tags_pipe": "|drama|family|family holiday|family feud|", "overview": "This year Christmas with the Whitfields promises to be one they will never forget. All the siblings have come home for the first time in years and they've brought plenty of baggage with them. As the Christmas tree is trimmed and the lights are hung, secrets are revealed and family bonds are tested. As their lives converge, they join together and help each other discover the true meaning of family.", "text_for_embedding": "This Christmas (2007). Genres: Comedy, Drama. This year Christmas with the Whitfields promises to be one they will never forget. All the siblings have come home for the first time in years and they've brought plenty of baggage with them. As the Christmas tree is trimmed and the lights are hung, secrets are revealed and family bonds are tested. As their lives converge, they join together and help each other discover the true meaning of family.. Tags: drama, family, family holiday, family feud"} +{"id": "22345", "title": "Baby Geniuses", "year": 1999, "duration_min": 97, "rating": 3.3, "genres": "Science Fiction, Comedy, Family", "genres_pipe": "|Science Fiction|Comedy|Family|", "keywords": "baby, genius, toddler, baby geniuses", "tags_pipe": "|baby|genius|toddler|baby geniuses|", "overview": "Scientist hold talking, super-intelligent babies captive, but things take a turn for the worse when a mix-up occurs between a baby genius and its twin.", "text_for_embedding": "Baby Geniuses (1999). Genres: Science Fiction, Comedy, Family. Scientist hold talking, super-intelligent babies captive, but things take a turn for the worse when a mix-up occurs between a baby genius and its twin.. Tags: baby, genius, toddler, baby geniuses"} +{"id": "9448", "title": "The Big Hit", "year": 1998, "duration_min": 91, "rating": 6.1, "genres": "Action, Adventure, Comedy, Thriller", "genres_pipe": "|Action|Adventure|Comedy|Thriller|", "keywords": "bungee-jump, dark comedy, cigarette smoking, slow motion, video store, subtitled scene, kosher, stealing a car, movie poster, night vision goggles, suitcase full of money", "tags_pipe": "|bungee-jump|dark comedy|cigarette smoking|slow motion|video store|subtitled scene|kosher|stealing a car|movie poster|night vision goggles|suitcase full of money|", "overview": "Affable hit man Melvin Smiley is constantly being scammed by his cutthroat colleagues in the life-ending business. So, when he and his fellow assassins kidnap the daughter of an electronics mogul, it's naturally Melvin who takes the fall when their prime score turns sour. That's because the girl is the goddaughter of the gang's ruthless crime boss. But, even while dodging bullets, Melvin has to keep his real job secret from his unsuspecting fiancée, Pam.", "text_for_embedding": "The Big Hit (1998). Genres: Action, Adventure, Comedy, Thriller. Affable hit man Melvin Smiley is constantly being scammed by his cutthroat colleagues in the life-ending business. So, when he and his fellow assassins kidnap the daughter of an electronics mogul, it's naturally Melvin who takes the fall when their prime score turns sour. That's because the girl is the goddaughter of the gang's ruthless crime boss. But, even while dodging bullets, Melvin has to keep his real job secret from his unsuspecting fiancée, Pam.. Tags: bungee-jump, dark comedy, cigarette smoking, slow motion, video store, subtitled scene, kosher, stealing a car, movie poster, night vision goggles, suitcase full of money"} +{"id": "38223", "title": "Harriet the Spy", "year": 1996, "duration_min": 100, "rating": 5.7, "genres": "Comedy, Drama, Family", "genres_pipe": "|Comedy|Drama|Family|", "keywords": "spy, secret, nanny, notebook, binoculars, woman director", "tags_pipe": "|spy|secret|nanny|notebook|binoculars|woman director|", "overview": "When the secret notebook of a young girl who fancies herself a spy is found by her friends, her speculations make her very unpopular! Can she win her friends back?", "text_for_embedding": "Harriet the Spy (1996). Genres: Comedy, Drama, Family. When the secret notebook of a young girl who fancies herself a spy is found by her friends, her speculations make her very unpopular! Can she win her friends back?. Tags: spy, secret, nanny, notebook, binoculars, woman director"} +{"id": "11186", "title": "Child's Play 2", "year": 1990, "duration_min": 84, "rating": 5.8, "genres": "Drama, Horror", "genres_pipe": "|Drama|Horror|", "keywords": "faithlessness, puppet, killer toys, toy comes to life", "tags_pipe": "|faithlessness|puppet|killer toys|toy comes to life|", "overview": "Chuckie's back as the doll possessed by the soul of a serial killer, butchering all who stand in his way of possessing the body of a boy.", "text_for_embedding": "Child's Play 2 (1990). Genres: Drama, Horror. Chuckie's back as the doll possessed by the soul of a serial killer, butchering all who stand in his way of possessing the body of a boy.. Tags: faithlessness, puppet, killer toys, toy comes to life"} +{"id": "136835", "title": "No Good Deed", "year": 2014, "duration_min": 83, "rating": 5.6, "genres": "Crime, Thriller", "genres_pipe": "|Crime|Thriller|", "keywords": "sadistic, hostage, sociopath, serial killer, blood, escaped convict, murderer, home invasion, killer, deadly, escaped killer", "tags_pipe": "|sadistic|hostage|sociopath|serial killer|blood|escaped convict|murderer|home invasion|killer|deadly|escaped killer|", "overview": "Terri is a devoted wife and mother of two, living an ideal suburban life in Atlanta when Colin, a charming but dangerous escaped convict, shows up at her door claiming car trouble. Terri offers her phone to help him but soon learns that no good deed goes unpunished as she finds herself fighting for survival when he invades her home and terrorizes her family.", "text_for_embedding": "No Good Deed (2014). Genres: Crime, Thriller. Terri is a devoted wife and mother of two, living an ideal suburban life in Atlanta when Colin, a charming but dangerous escaped convict, shows up at her door claiming car trouble. Terri offers her phone to help him but soon learns that no good deed goes unpunished as she finds herself fighting for survival when he invades her home and terrorizes her family.. Tags: sadistic, hostage, sociopath, serial killer, blood, escaped convict, murderer, home invasion, killer, deadly, escaped killer"} +{"id": "5876", "title": "The Mist", "year": 2007, "duration_min": 126, "rating": 6.7, "genres": "Science Fiction, Horror, Thriller", "genres_pipe": "|Science Fiction|Horror|Thriller|", "keywords": "father son relationship, monster, supermarket, fight, artist, fog, bible, spider, survivor, faith, prayer, blood splatter, gore, giant monster, blood", "tags_pipe": "|father son relationship|monster|supermarket|fight|artist|fog|bible|spider|survivor|faith|prayer|blood splatter|gore|giant monster|blood|", "overview": "After a violent storm, a dense cloud of mist envelops a small Maine town, trapping artist David Drayton and his five-year-old son in a local grocery store with other people. They soon discover that the mist conceals deadly horrors that threaten their lives, and worse, their sanity.", "text_for_embedding": "The Mist (2007). Genres: Science Fiction, Horror, Thriller. After a violent storm, a dense cloud of mist envelops a small Maine town, trapping artist David Drayton and his five-year-old son in a local grocery store with other people. They soon discover that the mist conceals deadly horrors that threaten their lives, and worse, their sanity.. Tags: father son relationship, monster, supermarket, fight, artist, fog, bible, spider, survivor, faith, prayer, blood splatter, gore, giant monster, blood"} +{"id": "264660", "title": "Ex Machina", "year": 2015, "duration_min": 108, "rating": 7.6, "genres": "Drama, Science Fiction", "genres_pipe": "|Drama|Science Fiction|", "keywords": "dancing, artificial intelligence, distrust, isolation, technology, manipulation, friendship, deception, laboratory, robot, power outage, surveillance camera, consciousness, existentialism, lockdown", "tags_pipe": "|dancing|artificial intelligence|distrust|isolation|technology|manipulation|friendship|deception|laboratory|robot|power outage|surveillance camera|consciousness|existentialism|lockdown|", "overview": "Caleb, a 26 year old coder at the world's largest internet company, wins a competition to spend a week at a private mountain retreat belonging to Nathan, the reclusive CEO of the company. But when Caleb arrives at the remote location he finds that he will have to participate in a strange and fascinating experiment in which he must interact with the world's first true artificial intelligence, housed in the body of a beautiful robot girl.", "text_for_embedding": "Ex Machina (2015). Genres: Drama, Science Fiction. Caleb, a 26 year old coder at the world's largest internet company, wins a competition to spend a week at a private mountain retreat belonging to Nathan, the reclusive CEO of the company. But when Caleb arrives at the remote location he finds that he will have to participate in a strange and fascinating experiment in which he must interact with the world's first true artificial intelligence, housed in the body of a beautiful robot girl.. Tags: dancing, artificial intelligence, distrust, isolation, technology, manipulation, friendship, deception, laboratory, robot, power outage, surveillance camera, consciousness, existentialism, lockdown"} +{"id": "492", "title": "Being John Malkovich", "year": 1999, "duration_min": 112, "rating": 7.3, "genres": "Fantasy, Drama, Comedy", "genres_pipe": "|Fantasy|Drama|Comedy|", "keywords": "individual, transvestism, sexual identity, witch, identity, subconsciousness, new identity, pet, chimp, puppeteer, appropriation of another human being, externally controlled action, married couple, brain, pet shop", "tags_pipe": "|individual|transvestism|sexual identity|witch|identity|subconsciousness|new identity|pet|chimp|puppeteer|appropriation of another human being|externally controlled action|married couple|brain|pet shop|", "overview": "Spike Jonze’s debut feature film is a love story mix of comedy and fantasy. The story is about an unsuccessful puppeteer named Craig, who one day at work finds a portal into the head of actor John Malkovich. The portal soon becomes a passion for anybody who enters it’s mad and controlling world of overtaking another human body.", "text_for_embedding": "Being John Malkovich (1999). Genres: Fantasy, Drama, Comedy. Spike Jonze’s debut feature film is a love story mix of comedy and fantasy. The story is about an unsuccessful puppeteer named Craig, who one day at work finds a portal into the head of actor John Malkovich. The portal soon becomes a passion for anybody who enters it’s mad and controlling world of overtaking another human body.. Tags: individual, transvestism, sexual identity, witch, identity, subconsciousness, new identity, pet, chimp, puppeteer, appropriation of another human being, externally controlled action, married couple, brain, pet shop"} +{"id": "25462", "title": "Two Can Play That Game", "year": 2001, "duration_min": 90, "rating": 6.6, "genres": "Comedy, Romance", "genres_pipe": "|Comedy|Romance|", "keywords": "", "tags_pipe": "", "overview": "Vivica A. Fox sizzles as a woman scorned who plans to get her man back by any means necessary. In this comedy about players and those who \"get played.\" As corporate overachiever and all-around fly chick Shanté Smith, Fox thinks she's got the goods to keep her slickster boyfriend (Morris Chestnut) from straying - until he discovers a greener pasture, Shanté's archrival (Gabrielle Union)", "text_for_embedding": "Two Can Play That Game (2001). Genres: Comedy, Romance. Vivica A. Fox sizzles as a woman scorned who plans to get her man back by any means necessary. In this comedy about players and those who \"get played.\" As corporate overachiever and all-around fly chick Shanté Smith, Fox thinks she's got the goods to keep her slickster boyfriend (Morris Chestnut) from straying - until he discovers a greener pasture, Shanté's archrival (Gabrielle Union). Tags: "} +{"id": "238603", "title": "Earth to Echo", "year": 2014, "duration_min": 89, "rating": 5.7, "genres": "Family, Adventure, Science Fiction", "genres_pipe": "|Family|Adventure|Science Fiction|", "keywords": "alien, found footage", "tags_pipe": "|alien|found footage|", "overview": "After a construction project begins digging in their neighborhood, best friends Tuck, Munch and Alex inexplicably begin to receive strange, encoded messages on their cell phones. Convinced something bigger is going on, they go to their parents and the authorities. When everyone around them refuses to take the messages seriously, the three embark on a secret adventure to crack the code and follow it to its source. But taking matters into their own hands gets the trio in way over their heads when they discover a mysterious being from another world who desperately needs their help. The epic, suspenseful and exciting journey that follows will change all of their lives forever.", "text_for_embedding": "Earth to Echo (2014). Genres: Family, Adventure, Science Fiction. After a construction project begins digging in their neighborhood, best friends Tuck, Munch and Alex inexplicably begin to receive strange, encoded messages on their cell phones. Convinced something bigger is going on, they go to their parents and the authorities. When everyone around them refuses to take the messages seriously, the three embark on a secret adventure to crack the code and follow it to its source. But taking matters into their own hands gets the trio in way over their heads when they discover a mysterious being from another world who desperately needs their help. The epic, suspenseful and exciting journey that follows will change all of their lives forever.. Tags: alien, found footage"} +{"id": "10691", "title": "Crazy/Beautiful", "year": 2001, "duration_min": 99, "rating": 6.6, "genres": "Drama, Romance", "genres_pipe": "|Drama|Romance|", "keywords": "lovesickness, jealousy, parents kids relationship, love of one's life, cutting the cord, forbidden love, kiss, crush, teenage crush, relationship, unhappiness", "tags_pipe": "|lovesickness|jealousy|parents kids relationship|love of one's life|cutting the cord|forbidden love|kiss|crush|teenage crush|relationship|unhappiness|", "overview": "At Pacific Palisades High, a poor Latino falls hard for a troubled girl from the affluent neighborhood.", "text_for_embedding": "Crazy/Beautiful (2001). Genres: Drama, Romance. At Pacific Palisades High, a poor Latino falls hard for a troubled girl from the affluent neighborhood.. Tags: lovesickness, jealousy, parents kids relationship, love of one's life, cutting the cord, forbidden love, kiss, crush, teenage crush, relationship, unhappiness"} +{"id": "1251", "title": "Letters from Iwo Jima", "year": 2006, "duration_min": 141, "rating": 7.2, "genres": "Action, Adventure, Drama, War", "genres_pipe": "|Action|Adventure|Drama|War|", "keywords": "world war ii, cave, dying and death, pacific theater, japanese army, imperial japan", "tags_pipe": "|world war ii|cave|dying and death|pacific theater|japanese army|imperial japan|", "overview": "The story of the battle of Iwo Jima between the United States and Imperial Japan during World War II, as told from the perspective of the Japanese who fought it.", "text_for_embedding": "Letters from Iwo Jima (2006). Genres: Action, Adventure, Drama, War. The story of the battle of Iwo Jima between the United States and Imperial Japan during World War II, as told from the perspective of the Japanese who fought it.. Tags: world war ii, cave, dying and death, pacific theater, japanese army, imperial japan"} +{"id": "5172", "title": "The Astronaut Farmer", "year": 2006, "duration_min": 104, "rating": 6.2, "genres": "Adventure, Comedy, Drama, Science Fiction", "genres_pipe": "|Adventure|Comedy|Drama|Science Fiction|", "keywords": "nasa, texas, dream, fbi, bankrupt, peasant, earth, farm, insanity, rocket, life's dream, spinner, space, independent film, astronaut", "tags_pipe": "|nasa|texas|dream|fbi|bankrupt|peasant|earth|farm|insanity|rocket|life's dream|spinner|space|independent film|astronaut|", "overview": "Texan Charles Farmer left the Air Force as a young man to save the family ranch when his dad died. Like most American ranchers, he owes his bank. Unlike most, he's an astrophysicist with a rocket in his barn - one he's built and wants to take into space. It's his dream. The FBI puts him under surveillance when he tries to buy rocket fuel, and the FAA stalls him when he files a flight plan – but Charles is undeterred.", "text_for_embedding": "The Astronaut Farmer (2006). Genres: Adventure, Comedy, Drama, Science Fiction. Texan Charles Farmer left the Air Force as a young man to save the family ranch when his dad died. Like most American ranchers, he owes his bank. Unlike most, he's an astrophysicist with a rocket in his barn - one he's built and wants to take into space. It's his dream. The FBI puts him under surveillance when he tries to buy rocket fuel, and the FAA stalls him when he files a flight plan – but Charles is undeterred.. Tags: nasa, texas, dream, fbi, bankrupt, peasant, earth, farm, insanity, rocket, life's dream, spinner, space, independent film, astronaut"} +{"id": "58680", "title": "Woo", "year": 1998, "duration_min": 84, "rating": 5.5, "genres": "Comedy, Romance", "genres_pipe": "|Comedy|Romance|", "keywords": "blind date, love, manhattan, new york city, woman director", "tags_pipe": "|blind date|love|manhattan, new york city|woman director|", "overview": "Gorgeous and extraverted Woo meets insecure and straight-laced law clerk Tim at a blind date.", "text_for_embedding": "Woo (1998). Genres: Comedy, Romance. Gorgeous and extraverted Woo meets insecure and straight-laced law clerk Tim at a blind date.. Tags: blind date, love, manhattan, new york city, woman director"} +{"id": "264644", "title": "Room", "year": 2015, "duration_min": 117, "rating": 8.1, "genres": "Drama, Thriller", "genres_pipe": "|Drama|Thriller|", "keywords": "based on novel, carpet, isolation, kidnapping, imprisonment, grandparents, escape, hospital, dog, captive, mother son relationship, shed, skylight", "tags_pipe": "|based on novel|carpet|isolation|kidnapping|imprisonment|grandparents|escape|hospital|dog|captive|mother son relationship|shed|skylight|", "overview": "Jack is a young boy of 5 years old who has lived all his life in one room. He believes everything within it are the only real things in the world. But what will happen when his Ma suddenly tells him that there are other things outside of Room?", "text_for_embedding": "Room (2015). Genres: Drama, Thriller. Jack is a young boy of 5 years old who has lived all his life in one room. He believes everything within it are the only real things in the world. But what will happen when his Ma suddenly tells him that there are other things outside of Room?. Tags: based on novel, carpet, isolation, kidnapping, imprisonment, grandparents, escape, hospital, dog, captive, mother son relationship, shed, skylight"} +{"id": "14577", "title": "Dirty Work", "year": 1998, "duration_min": 82, "rating": 6.5, "genres": "Comedy", "genres_pipe": "|Comedy|", "keywords": "", "tags_pipe": "", "overview": "Unemployed and recently dumped, Mitch and his buddy Sam start a revenge-for-hire business to raise the $50,000 that Sam's father needs to get a heart transplant. The dirty duo brings down a movie theater manager and hires hookers to pose as dead bodies during a live TV ad. When a wealthy developer hires the guys to trash a building (so that he can have it condemned), problems arise and a feud ensues.", "text_for_embedding": "Dirty Work (1998). Genres: Comedy. Unemployed and recently dumped, Mitch and his buddy Sam start a revenge-for-hire business to raise the $50,000 that Sam's father needs to get a heart transplant. The dirty duo brings down a movie theater manager and hires hookers to pose as dead bodies during a live TV ad. When a wealthy developer hires the guys to trash a building (so that he can have it condemned), problems arise and a feud ensues.. Tags: "} +{"id": "11592", "title": "Serial Mom", "year": 1994, "duration_min": 95, "rating": 6.4, "genres": "Comedy, Crime, Horror, Thriller", "genres_pipe": "|Comedy|Crime|Horror|Thriller|", "keywords": "housewife, protection, motherly love, evil mother, murder, independent film, perfection", "tags_pipe": "|housewife|protection|motherly love|evil mother|murder|independent film|perfection|", "overview": "A picture perfect middle class family is shocked when they find out that one of their neighbors is receiving obscene phone calls. The mom takes slights against her family very personally, and it turns out she is indeed the one harassing the neighbor. As other slights befall her beloved family, the body count begins to increase.", "text_for_embedding": "Serial Mom (1994). Genres: Comedy, Crime, Horror, Thriller. A picture perfect middle class family is shocked when they find out that one of their neighbors is receiving obscene phone calls. The mom takes slights against her family very personally, and it turns out she is indeed the one harassing the neighbor. As other slights befall her beloved family, the body count begins to increase.. Tags: housewife, protection, motherly love, evil mother, murder, independent film, perfection"} +{"id": "16406", "title": "Dick", "year": 1999, "duration_min": 94, "rating": 5.7, "genres": "Comedy", "genres_pipe": "|Comedy|", "keywords": "richard nixon, watergate, the white house", "tags_pipe": "|richard nixon|watergate|the white house|", "overview": "Comedy about two high school girls who wander off during a class trip to the White House and meet President Richard Nixon. They become the official dog walkers for Nixon's dog Checkers, and become his secret advisors during the Watergate scandal.", "text_for_embedding": "Dick (1999). Genres: Comedy. Comedy about two high school girls who wander off during a class trip to the White House and meet President Richard Nixon. They become the official dog walkers for Nixon's dog Checkers, and become his secret advisors during the Watergate scandal.. Tags: richard nixon, watergate, the white house"} +{"id": "19052", "title": "Light It Up", "year": 1999, "duration_min": 99, "rating": 6.6, "genres": "Drama, Thriller", "genres_pipe": "|Drama|Thriller|", "keywords": "", "tags_pipe": "", "overview": "On a winter day in a southside Queens high school, events collide and six students are suddenly in an armed standoff with the NYPD. At the school, classrooms freeze, teachers come and go, resources are scant.", "text_for_embedding": "Light It Up (1999). Genres: Drama, Thriller. On a winter day in a southside Queens high school, events collide and six students are suddenly in an armed standoff with the NYPD. At the school, classrooms freeze, teachers come and go, resources are scant.. Tags: "} +{"id": "3682", "title": "54", "year": 1998, "duration_min": 106, "rating": 5.5, "genres": "Music, Drama", "genres_pipe": "|Music|Drama|", "keywords": "new york, sex, nightclub, money, drug, disco", "tags_pipe": "|new york|sex|nightclub|money|drug|disco|", "overview": "Shane, a Jersey boy with big dreams, crosses the river in hopes of finding a more exciting life at Studio 54. When Steve Rubell, the mastermind behind the infamous disco, plucks Shane from the sea of faces clamoring to get inside his club, Shane not only gets his foot in the door, but lands a coveted job behind the bar – and a front-row seat at the most legendary party on the planet.", "text_for_embedding": "54 (1998). Genres: Music, Drama. Shane, a Jersey boy with big dreams, crosses the river in hopes of finding a more exciting life at Studio 54. When Steve Rubell, the mastermind behind the infamous disco, plucks Shane from the sea of faces clamoring to get inside his club, Shane not only gets his foot in the door, but lands a coveted job behind the bar – and a front-row seat at the most legendary party on the planet.. Tags: new york, sex, nightclub, money, drug, disco"} +{"id": "9683", "title": "Bubble Boy", "year": 2001, "duration_min": 84, "rating": 5.1, "genres": "Adventure, Comedy, Drama, Romance", "genres_pipe": "|Adventure|Comedy|Drama|Romance|", "keywords": "lovesickness, niagara falls, crush, youth, illness", "tags_pipe": "|lovesickness|niagara falls|crush|youth|illness|", "overview": "Jimmy is young man who was born without an immune system and has lived his life within a plastic bubble in his bedroom... who pines for the sweet caresses of girl-next-door Chloe. But when Chloe decides to marry her high school boyfriend, Jimmy -- bubble suit and all -- treks cross-country to stop her. Swoosie Kurtz, as Jimmy's overprotective mom, co-stars along with Fabio, who portrays the leader of a religious cult.", "text_for_embedding": "Bubble Boy (2001). Genres: Adventure, Comedy, Drama, Romance. Jimmy is young man who was born without an immune system and has lived his life within a plastic bubble in his bedroom... who pines for the sweet caresses of girl-next-door Chloe. But when Chloe decides to marry her high school boyfriend, Jimmy -- bubble suit and all -- treks cross-country to stop her. Swoosie Kurtz, as Jimmy's overprotective mom, co-stars along with Fabio, who portrays the leader of a religious cult.. Tags: lovesickness, niagara falls, crush, youth, illness"} +{"id": "2084", "title": "Birthday Girl", "year": 2001, "duration_min": 93, "rating": 6.1, "genres": "Comedy, Crime, Thriller", "genres_pipe": "|Comedy|Crime|Thriller|", "keywords": "female nudity, robbery, mail order bride, bank clerk", "tags_pipe": "|female nudity|robbery|mail order bride|bank clerk|", "overview": "A shy bank clerk orders a Russian mail order bride, and finds his life turned upside down.", "text_for_embedding": "Birthday Girl (2001). Genres: Comedy, Crime, Thriller. A shy bank clerk orders a Russian mail order bride, and finds his life turned upside down.. Tags: female nudity, robbery, mail order bride, bank clerk"} +{"id": "107811", "title": "21 & Over", "year": 2013, "duration_min": 93, "rating": 5.7, "genres": "Comedy", "genres_pipe": "|Comedy|", "keywords": "alcohol, birthday, debauchery", "tags_pipe": "|alcohol|birthday|debauchery|", "overview": "Brilliant student Jeff Chang has the most important interview of his life tomorrow. But today is still his birthday, what starts off as a casual celebration with friends evolves into a night of debauchery that risks to derail his life plan.", "text_for_embedding": "21 & Over (2013). Genres: Comedy. Brilliant student Jeff Chang has the most important interview of his life tomorrow. But today is still his birthday, what starts off as a casual celebration with friends evolves into a night of debauchery that risks to derail his life plan.. Tags: alcohol, birthday, debauchery"} +{"id": "2266", "title": "Paris, je t'aime", "year": 2006, "duration_min": 120, "rating": 6.8, "genres": "Drama, Romance", "genres_pipe": "|Drama|Romance|", "keywords": "paris, city portrait, jazz, subway, new love, immigration, nanny, tourist, woman director", "tags_pipe": "|paris|city portrait|jazz|subway|new love|immigration|nanny|tourist|woman director|", "overview": "Olivier Assayas, Gus Van Sant, Wes Craven and Alfonso Cuaron are among the 20 distinguished directors who contribute to this collection of 18 stories, each exploring a different aspect of Parisian life. The colourful characters in this drama include a pair of mimes, a husband trying to chose between his wife and his lover, and a married man who turns to a prostitute for advice.", "text_for_embedding": "Paris, je t'aime (2006). Genres: Drama, Romance. Olivier Assayas, Gus Van Sant, Wes Craven and Alfonso Cuaron are among the 20 distinguished directors who contribute to this collection of 18 stories, each exploring a different aspect of Parisian life. The colourful characters in this drama include a pair of mimes, a husband trying to chose between his wife and his lover, and a married man who turns to a prostitute for advice.. Tags: paris, city portrait, jazz, subway, new love, immigration, nanny, tourist, woman director"} +{"id": "13074", "title": "Resurrecting the Champ", "year": 2007, "duration_min": 112, "rating": 5.9, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "sport", "tags_pipe": "|sport|", "overview": "Up-and-coming sports reporter rescues a homeless man (\"Champ\") only to discover that he is, in fact, a boxing legend believed to have passed away. What begins as an opportunity to resurrect Champ's story and escape the shadow of his father's success becomes a personal journey as the ambitious reporter reexamines his own life and his relationship with his family.", "text_for_embedding": "Resurrecting the Champ (2007). Genres: Drama. Up-and-coming sports reporter rescues a homeless man (\"Champ\") only to discover that he is, in fact, a boxing legend believed to have passed away. What begins as an opportunity to resurrect Champ's story and escape the shadow of his father's success becomes a personal journey as the ambitious reporter reexamines his own life and his relationship with his family.. Tags: sport"} +{"id": "144340", "title": "Admission", "year": 2013, "duration_min": 107, "rating": 5.4, "genres": "Comedy, Drama, Romance", "genres_pipe": "|Comedy|Drama|Romance|", "keywords": "princeton university, admissions", "tags_pipe": "|princeton university|admissions|", "overview": "Strait-laced Princeton University admissions officer Portia Nathan is caught off-guard when she makes a recruiting visit to an alternative high school overseen by her former college classmate, the freewheeling John Pressman. Pressman has surmised that Jeremiah, his gifted yet very unconventional student, might well be the son that Portia secretly gave up for adoption many years ago. Soon, Portia finds herself bending the rules for Jeremiah, putting at risk the life she thought she always wanted – but in the process finding her way to a surprising and exhilarating life and romance she never dreamed of having.", "text_for_embedding": "Admission (2013). Genres: Comedy, Drama, Romance. Strait-laced Princeton University admissions officer Portia Nathan is caught off-guard when she makes a recruiting visit to an alternative high school overseen by her former college classmate, the freewheeling John Pressman. Pressman has surmised that Jeremiah, his gifted yet very unconventional student, might well be the son that Portia secretly gave up for adoption many years ago. Soon, Portia finds herself bending the rules for Jeremiah, putting at risk the life she thought she always wanted – but in the process finding her way to a surprising and exhilarating life and romance she never dreamed of having.. Tags: princeton university, admissions"} +{"id": "48217", "title": "The Widow of Saint-Pierre", "year": 2000, "duration_min": 112, "rating": 6.7, "genres": "Romance, Drama", "genres_pipe": "|Romance|Drama|", "keywords": "france, island, fisherman, love, revenge, murder, execution, 19th century", "tags_pipe": "|france|island|fisherman|love|revenge|murder|execution|19th century|", "overview": "In 1850, on the isolated French island of Saint-Pierre, a murder shocks the natives. Two fishermen are arrested. One of them, Louis Ollivier, dies in custody. The other, Neel Auguste, is sentenced to death by the guillotine. The island is so small that it has neither a guillotine nor an executioner. While those are sent for Auguste is placed under the supervision of army Captain.", "text_for_embedding": "The Widow of Saint-Pierre (2000). Genres: Romance, Drama. In 1850, on the isolated French island of Saint-Pierre, a murder shocks the natives. Two fishermen are arrested. One of them, Louis Ollivier, dies in custody. The other, Neel Auguste, is sentenced to death by the guillotine. The island is so small that it has neither a guillotine nor an executioner. While those are sent for Auguste is placed under the supervision of army Captain.. Tags: france, island, fisherman, love, revenge, murder, execution, 19th century"} +{"id": "28211", "title": "Chloe", "year": 2009, "duration_min": 96, "rating": 5.9, "genres": "Drama, Thriller, Mystery", "genres_pipe": "|Drama|Thriller|Mystery|", "keywords": "toronto, lesbian, remake of french film, suspicious wife, female doctor, playing piano", "tags_pipe": "|toronto|lesbian|remake of french film|suspicious wife|female doctor|playing piano|", "overview": "A doctor hires an escort to seduce her husband, whom she suspects of cheating, though unforeseen events put the family in danger.", "text_for_embedding": "Chloe (2009). Genres: Drama, Thriller, Mystery. A doctor hires an escort to seduce her husband, whom she suspects of cheating, though unforeseen events put the family in danger.. Tags: toronto, lesbian, remake of french film, suspicious wife, female doctor, playing piano"} +{"id": "47502", "title": "Faithful", "year": 1996, "duration_min": 91, "rating": 4.8, "genres": "Comedy, Crime, Drama", "genres_pipe": "|Comedy|Crime|Drama|", "keywords": "kitchen, female protagonist, bathtub, wedding anniversary, flashback", "tags_pipe": "|kitchen|female protagonist|bathtub|wedding anniversary|flashback|", "overview": "A depressed housewife whose husband is having an affair contemplates suicide, but changes her mind when she faces death by a killer hired to do her in.", "text_for_embedding": "Faithful (1996). Genres: Comedy, Crime, Drama. A depressed housewife whose husband is having an affair contemplates suicide, but changes her mind when she faces death by a killer hired to do her in.. Tags: kitchen, female protagonist, bathtub, wedding anniversary, flashback"} +{"id": "9950", "title": "Find Me Guilty", "year": 2006, "duration_min": 125, "rating": 6.5, "genres": "Drama, Action, Comedy, Crime", "genres_pipe": "|Drama|Action|Comedy|Crime|", "keywords": "court case, staatsanwältin, family clan, gangster", "tags_pipe": "|court case|staatsanwältin|family clan|gangster|", "overview": "Based on the true story of Jack DiNorscio, a mobster who defended himself in court for what would be the longest mafia trial in U.S. history.", "text_for_embedding": "Find Me Guilty (2006). Genres: Drama, Action, Comedy, Crime. Based on the true story of Jack DiNorscio, a mobster who defended himself in court for what would be the longest mafia trial in U.S. history.. Tags: court case, staatsanwältin, family clan, gangster"} +{"id": "84892", "title": "The Perks of Being a Wallflower", "year": 2012, "duration_min": 102, "rating": 7.7, "genres": "Drama, Romance", "genres_pipe": "|Drama|Romance|", "keywords": "shyness, secret, narration, kiss, freshman, coming of age, teenage boy, high school student, first love, aunt nephew relationship, gay lead character, santa hat, lgbt teen, aunt nephew incest, based on young adult novel", "tags_pipe": "|shyness|secret|narration|kiss|freshman|coming of age|teenage boy|high school student|first love|aunt nephew relationship|gay lead character|santa hat|lgbt teen|aunt nephew incest|based on young adult novel|", "overview": "A coming-of-age story based on the best-selling novel by Stephen Chbosky, which follows 15-year-old freshman Charlie, an endearing and naive outsider who is taken under the wings of two seniors. A moving tale of love, loss, fear and hope - and the unforgettable friends that help us through life.", "text_for_embedding": "The Perks of Being a Wallflower (2012). Genres: Drama, Romance. A coming-of-age story based on the best-selling novel by Stephen Chbosky, which follows 15-year-old freshman Charlie, an endearing and naive outsider who is taken under the wings of two seniors. A moving tale of love, loss, fear and hope - and the unforgettable friends that help us through life.. Tags: shyness, secret, narration, kiss, freshman, coming of age, teenage boy, high school student, first love, aunt nephew relationship, gay lead character, santa hat, lgbt teen, aunt nephew incest, based on young adult novel"} +{"id": "24227", "title": "Excessive Force", "year": 1993, "duration_min": 87, "rating": 4.5, "genres": "Action", "genres_pipe": "|Action|", "keywords": "police, shoulder holster, police shootout, shootout at a train station", "tags_pipe": "|police|shoulder holster|police shootout|shootout at a train station|", "overview": "Chicago policeman Terry McCain is determined to put away mobster Sal DiMarco, who always gets acquitted on technicalities. While monitoring a drug sale, a shootout ensues, and one of Terry's fellow officers gets away with $3 million of Sal's money. Suspecting Terry took the cash, the mobster sends his men to kill Terry's brother, Dylan, and partner, Frankie Hawkins. Furious, Terry sets out to take his revenge by any means necessary.", "text_for_embedding": "Excessive Force (1993). Genres: Action. Chicago policeman Terry McCain is determined to put away mobster Sal DiMarco, who always gets acquitted on technicalities. While monitoring a drug sale, a shootout ensues, and one of Terry's fellow officers gets away with $3 million of Sal's money. Suspecting Terry took the cash, the mobster sends his men to kill Terry's brother, Dylan, and partner, Frankie Hawkins. Furious, Terry sets out to take his revenge by any means necessary.. Tags: police, shoulder holster, police shootout, shootout at a train station"} +{"id": "9672", "title": "Infamous", "year": 2006, "duration_min": 110, "rating": 6.4, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "killing, death penalty, kansas, author, murder hunt", "tags_pipe": "|killing|death penalty|kansas|author|murder hunt|", "overview": "While researching his book In Cold Blood, writer Truman Capote develops a close relationship with convicted murderers Dick Hickock and Perry Smith.", "text_for_embedding": "Infamous (2006). Genres: Drama. While researching his book In Cold Blood, writer Truman Capote develops a close relationship with convicted murderers Dick Hickock and Perry Smith.. Tags: killing, death penalty, kansas, author, murder hunt"} +{"id": "44853", "title": "The Claim", "year": 2000, "duration_min": 120, "rating": 5.6, "genres": "Drama, Romance, Western", "genres_pipe": "|Drama|Romance|Western|", "keywords": "", "tags_pipe": "", "overview": "A prospector sells his wife and daughter to another gold miner for the rights to a gold mine. Twenty years later, the prospector is a wealthy man who owns much of the old west town named Kingdom Come. But changes are brewing and his past is coming back to haunt him. A surveyor and his crew scouts the town as a location for a new railroad line and a young woman suddenly appears in the town and is evidently the man's daughter.", "text_for_embedding": "The Claim (2000). Genres: Drama, Romance, Western. A prospector sells his wife and daughter to another gold miner for the rights to a gold mine. Twenty years later, the prospector is a wealthy man who owns much of the old west town named Kingdom Come. But changes are brewing and his past is coming back to haunt him. A surveyor and his crew scouts the town as a location for a new railroad line and a young woman suddenly appears in the town and is evidently the man's daughter.. Tags: "} +{"id": "157544", "title": "The Vatican Tapes", "year": 2015, "duration_min": 91, "rating": 4.6, "genres": "Thriller, Horror", "genres_pipe": "|Thriller|Horror|", "keywords": "exorcism, anti-christ, exorcist", "tags_pipe": "|exorcism|anti-christ|exorcist|", "overview": "In a highly secured vault deep within the walls of Vatican City, the Catholic Church holds thousands of old films and video footage documenting exorcisms/supposed exorcisms and other unexplained religious phenomena they feel the world is not ready to see. This is the first tape - Case 83-G - stolen from these archives and exposed to the public by an anonymous source.", "text_for_embedding": "The Vatican Tapes (2015). Genres: Thriller, Horror. In a highly secured vault deep within the walls of Vatican City, the Catholic Church holds thousands of old films and video footage documenting exorcisms/supposed exorcisms and other unexplained religious phenomena they feel the world is not ready to see. This is the first tape - Case 83-G - stolen from these archives and exposed to the public by an anonymous source.. Tags: exorcism, anti-christ, exorcist"} +{"id": "59678", "title": "Attack the Block", "year": 2011, "duration_min": 88, "rating": 6.3, "genres": "Action, Comedy, Science Fiction", "genres_pipe": "|Action|Comedy|Science Fiction|", "keywords": "street gang, fireworks, chase, meteor, playground, arrest, cannabis, moped, car set on fire, car crash, alien, social satire, crime, race, naive children", "tags_pipe": "|street gang|fireworks|chase|meteor|playground|arrest|cannabis|moped|car set on fire|car crash|alien|social satire|crime|race|naive children|", "overview": "A teen gang in a grim South London housing estate must team up with the other residents to protect their neighbourhood from a terrifying alien invasion.", "text_for_embedding": "Attack the Block (2011). Genres: Action, Comedy, Science Fiction. A teen gang in a grim South London housing estate must team up with the other residents to protect their neighbourhood from a terrifying alien invasion.. Tags: street gang, fireworks, chase, meteor, playground, arrest, cannabis, moped, car set on fire, car crash, alien, social satire, crime, race, naive children"} +{"id": "79777", "title": "In the Land of Blood and Honey", "year": 2011, "duration_min": 127, "rating": 5.8, "genres": "Drama, Romance, War", "genres_pipe": "|Drama|Romance|War|", "keywords": "muslim, sister sister relationship, sarajevo, bosnian war of 1992-1995, violence, united nations, woman director", "tags_pipe": "|muslim|sister sister relationship|sarajevo|bosnian war of 1992-1995|violence|united nations|woman director|", "overview": "During the Bosnian War, Danijel, a soldier fighting for the Serbs, re-encounters Ajla, a Bosnian who's now a captive in his camp he oversees. Their once promising connection has become ambiguous as their motives have changed.", "text_for_embedding": "In the Land of Blood and Honey (2011). Genres: Drama, Romance, War. During the Bosnian War, Danijel, a soldier fighting for the Serbs, re-encounters Ajla, a Bosnian who's now a captive in his camp he oversees. Their once promising connection has become ambiguous as their motives have changed.. Tags: muslim, sister sister relationship, sarajevo, bosnian war of 1992-1995, violence, united nations, woman director"} +{"id": "158011", "title": "The Call", "year": 2013, "duration_min": 94, "rating": 6.6, "genres": "Crime, Thriller", "genres_pipe": "|Crime|Thriller|", "keywords": "underground, gas station, kidnapping, murder, suspense, serial killer, american flag, multiple stabbings, violence, person on fire, cell phone, psycho", "tags_pipe": "|underground|gas station|kidnapping|murder|suspense|serial killer|american flag|multiple stabbings|violence|person on fire|cell phone|psycho|", "overview": "Jordan Turner is an experienced 911 operator but when she makes an error in judgment and a call ends badly, Jordan is rattled and unsure if she can continue. But when teenager Casey Welson is abducted in the back of a man's car and calls 911, Jordan is the one called upon to use all of her experience, insights and quick thinking to help Casey escape, and not just to save her, but to make sure the man is brought to justice.", "text_for_embedding": "The Call (2013). Genres: Crime, Thriller. Jordan Turner is an experienced 911 operator but when she makes an error in judgment and a call ends badly, Jordan is rattled and unsure if she can continue. But when teenager Casey Welson is abducted in the back of a man's car and calls 911, Jordan is the one called upon to use all of her experience, insights and quick thinking to help Casey escape, and not just to save her, but to make sure the man is brought to justice.. Tags: underground, gas station, kidnapping, murder, suspense, serial killer, american flag, multiple stabbings, violence, person on fire, cell phone, psycho"} +{"id": "407887", "title": "Operation Chromite", "year": 2016, "duration_min": 110, "rating": 5.8, "genres": "History, Drama, War, Action", "genres_pipe": "|History|Drama|War|Action|", "keywords": "korea, fictionalized history, operation \"trudy jackson\", general douglas macarthur, operation x-ray, incheon", "tags_pipe": "|korea|fictionalized history|operation \"trudy jackson\"|general douglas macarthur|operation x-ray|incheon|", "overview": "A squad of soldiers fight in the Korean War's crucial Battle of Incheon.", "text_for_embedding": "Operation Chromite (2016). Genres: History, Drama, War, Action. A squad of soldiers fight in the Korean War's crucial Battle of Incheon.. Tags: korea, fictionalized history, operation \"trudy jackson\", general douglas macarthur, operation x-ray, incheon"} +{"id": "17043", "title": "The Crocodile Hunter: Collision Course", "year": 2002, "duration_min": 90, "rating": 5.3, "genres": "Family, Action, Adventure", "genres_pipe": "|Family|Action|Adventure|", "keywords": "crocodile", "tags_pipe": "|crocodile|", "overview": "Aussie adventurer Steve Irwin aka The Crocodile Hunter has avoided the death-roll and nabbed another feisty croc, hoping to save it from poachers. What Steve doesn't know is that the crocodile has innocently swallowed a top secret US satellite beacon, and the poachers are actually American special agents sent to retrieve it. Crikey! In the Outback and through the bush with his wife Terri's ever-present commentary ringing out over the countryside (\"That was a close one, Steve!\"), the Crocodile Hunter is out to save the gorgeous croc and relocate him. It won't be easy, but if he can handle bird-eating spiders and venomous snakes without getting bitten, gun-wielding agents shouldn't be too much of a problem.", "text_for_embedding": "The Crocodile Hunter: Collision Course (2002). Genres: Family, Action, Adventure. Aussie adventurer Steve Irwin aka The Crocodile Hunter has avoided the death-roll and nabbed another feisty croc, hoping to save it from poachers. What Steve doesn't know is that the crocodile has innocently swallowed a top secret US satellite beacon, and the poachers are actually American special agents sent to retrieve it. Crikey! In the Outback and through the bush with his wife Terri's ever-present commentary ringing out over the countryside (\"That was a close one, Steve!\"), the Crocodile Hunter is out to save the gorgeous croc and relocate him. It won't be easy, but if he can handle bird-eating spiders and venomous snakes without getting bitten, gun-wielding agents shouldn't be too much of a problem.. Tags: crocodile"} +{"id": "8952", "title": "I Love You Phillip Morris", "year": 2009, "duration_min": 98, "rating": 6.4, "genres": "Comedy, Drama, Romance", "genres_pipe": "|Comedy|Drama|Romance|", "keywords": "judge, small town, con man, fraud, jail, white collar criminal", "tags_pipe": "|judge|small town|con man|fraud|jail|white collar criminal|", "overview": "Steve Russell is a small-town cop. Bored with his bland lifestyle, Russell turns to fraud as a means of shaking things up. Before long, Russell's criminal antics have landed him behind bars, where he encounters the charismatic Phillip Morris. Smitten, Russell devotes his entire life to being with Morris regardless of the consequences.", "text_for_embedding": "I Love You Phillip Morris (2009). Genres: Comedy, Drama, Romance. Steve Russell is a small-town cop. Bored with his bland lifestyle, Russell turns to fraud as a means of shaking things up. Before long, Russell's criminal antics have landed him behind bars, where he encounters the charismatic Phillip Morris. Smitten, Russell devotes his entire life to being with Morris regardless of the consequences.. Tags: judge, small town, con man, fraud, jail, white collar criminal"} +{"id": "62204", "title": "Quest for Fire", "year": 1981, "duration_min": 100, "rating": 7.1, "genres": "Adventure, Drama", "genres_pipe": "|Adventure|Drama|", "keywords": "stone age, cavemen, prehistoric adventure, prehistoric times, prehistoric man", "tags_pipe": "|stone age|cavemen|prehistoric adventure|prehistoric times|prehistoric man|", "overview": "A colossal adventure odyssey that turns back the hands of time to the very beginning of man's existence. 80,000 years ago, when man roamed the earth, he was exposed to the many harsh elements of nature. Against the perilous atmosphere of rugged terrain, rival tribes and savage beasts, Quest for Fire examines a peaceful tribe's search for that all important element fire, and the knowledge to create it. Focusing on human dream as well as realistic insights into pre-historic man, the constant struggle for survival is vividly recreated in this sensational production.", "text_for_embedding": "Quest for Fire (1981). Genres: Adventure, Drama. A colossal adventure odyssey that turns back the hands of time to the very beginning of man's existence. 80,000 years ago, when man roamed the earth, he was exposed to the many harsh elements of nature. Against the perilous atmosphere of rugged terrain, rival tribes and savage beasts, Quest for Fire examines a peaceful tribe's search for that all important element fire, and the knowledge to create it. Focusing on human dream as well as realistic insights into pre-historic man, the constant struggle for survival is vividly recreated in this sensational production.. Tags: stone age, cavemen, prehistoric adventure, prehistoric times, prehistoric man"} +{"id": "13435", "title": "Antwone Fisher", "year": 2002, "duration_min": 120, "rating": 6.7, "genres": "Drama, Romance", "genres_pipe": "|Drama|Romance|", "keywords": "u.s. navy, biography", "tags_pipe": "|u.s. navy|biography|", "overview": "A sailor prone to violent outbursts is sent to a naval psychiatrist for help. Refusing at first to open up, the young man eventually breaks down and reveals a horrific childhood. Through the guidance of his doctor, he confronts his painful past and begins a quest to find the family he never knew.", "text_for_embedding": "Antwone Fisher (2002). Genres: Drama, Romance. A sailor prone to violent outbursts is sent to a naval psychiatrist for help. Refusing at first to open up, the young man eventually breaks down and reveals a horrific childhood. Through the guidance of his doctor, he confronts his painful past and begins a quest to find the family he never knew.. Tags: u.s. navy, biography"} +{"id": "17187", "title": "The Emperor's Club", "year": 2002, "duration_min": 108, "rating": 6.9, "genres": "Drama, Romance", "genres_pipe": "|Drama|Romance|", "keywords": "", "tags_pipe": "", "overview": "William Hundert is a passionate and principled Classics professor who finds his tightly-controlled world shaken and inexorably altered when a new student, Sedgewick Bell, walks into his classroom. What begins as a fierce battle of wills gives way to a close student-teacher relationship, but results in a life lesson for Hundert that will still haunt him a quarter of a century later.", "text_for_embedding": "The Emperor's Club (2002). Genres: Drama, Romance. William Hundert is a passionate and principled Classics professor who finds his tightly-controlled world shaken and inexorably altered when a new student, Sedgewick Bell, walks into his classroom. What begins as a fierce battle of wills gives way to a close student-teacher relationship, but results in a life lesson for Hundert that will still haunt him a quarter of a century later.. Tags: "} +{"id": "319", "title": "True Romance", "year": 1993, "duration_min": 120, "rating": 7.5, "genres": "Action, Thriller, Crime, Romance", "genres_pipe": "|Action|Thriller|Crime|Romance|", "keywords": "father son relationship, film producer, mexican standoff, loss of father, cocaine, love, mafia, los angeles, drug, illegal prostitution, gun violence", "tags_pipe": "|father son relationship|film producer|mexican standoff|loss of father|cocaine|love|mafia|los angeles|drug|illegal prostitution|gun violence|", "overview": "Clarence marries hooker Alabama, steals cocaine from her pimp, and tries to sell it in Hollywood, while the owners of the coke try to reclaim it.", "text_for_embedding": "True Romance (1993). Genres: Action, Thriller, Crime, Romance. Clarence marries hooker Alabama, steals cocaine from her pimp, and tries to sell it in Hollywood, while the owners of the coke try to reclaim it.. Tags: father son relationship, film producer, mexican standoff, loss of father, cocaine, love, mafia, los angeles, drug, illegal prostitution, gun violence"} +{"id": "59457", "title": "Womb", "year": 2010, "duration_min": 111, "rating": 5.9, "genres": "Romance, Science Fiction", "genres_pipe": "|Romance|Science Fiction|", "keywords": "", "tags_pipe": "", "overview": "A woman's consuming love forces her to bear the clone of her dead beloved. From his infancy to manhood, she faces the unavoidable complexities of her controversial decision.", "text_for_embedding": "Womb (2010). Genres: Romance, Science Fiction. A woman's consuming love forces her to bear the clone of her dead beloved. From his infancy to manhood, she faces the unavoidable complexities of her controversial decision.. Tags: "} +{"id": "9504", "title": "Glengarry Glen Ross", "year": 1992, "duration_min": 100, "rating": 7.5, "genres": "Crime, Drama, Mystery", "genres_pipe": "|Crime|Drama|Mystery|", "keywords": "robbery, office, shop, estate agent, company, contest, cowardliness, cult film, real estate, pressure, neo-noir", "tags_pipe": "|robbery|office|shop|estate agent|company|contest|cowardliness|cult film|real estate|pressure|neo-noir|", "overview": "Glengarry Glen Ross, follows the lives of four unethical Chicago real estate agents who are prepared to go to any lengths (legal or illegal) to unload undesirable real estate on unwilling prospective buyers.", "text_for_embedding": "Glengarry Glen Ross (1992). Genres: Crime, Drama, Mystery. Glengarry Glen Ross, follows the lives of four unethical Chicago real estate agents who are prepared to go to any lengths (legal or illegal) to unload undesirable real estate on unwilling prospective buyers.. Tags: robbery, office, shop, estate agent, company, contest, cowardliness, cult film, real estate, pressure, neo-noir"} +{"id": "37414", "title": "The Killer Inside Me", "year": 2010, "duration_min": 109, "rating": 6.0, "genres": "Crime, Drama, Thriller", "genres_pipe": "|Crime|Drama|Thriller|", "keywords": "sheriff, crime fighter", "tags_pipe": "|sheriff|crime fighter|", "overview": "Deputy Sheriff Lou Ford is a pillar of the community in his small west Texas town, patient and apparently thoughtful. Some people think he is a little slow and maybe boring, but that is the worst they say about him. But then nobody knows about what Lou calls his \"sickness\": he is a brilliant, but disturbed sociopathic sadist.", "text_for_embedding": "The Killer Inside Me (2010). Genres: Crime, Drama, Thriller. Deputy Sheriff Lou Ford is a pillar of the community in his small west Texas town, patient and apparently thoughtful. Some people think he is a little slow and maybe boring, but that is the worst they say about him. But then nobody knows about what Lou calls his \"sickness\": he is a brilliant, but disturbed sociopathic sadist.. Tags: sheriff, crime fighter"} +{"id": "6217", "title": "Cat People", "year": 1982, "duration_min": 118, "rating": 6.0, "genres": "Drama, Fantasy, Horror, Thriller", "genres_pipe": "|Drama|Fantasy|Horror|Thriller|", "keywords": "shotgun, attack, lingerie, held captive, incest, dissection, jungle cat, erotic movie", "tags_pipe": "|shotgun|attack|lingerie|held captive|incest|dissection|jungle cat|erotic movie|", "overview": "After years of separation, Irina (Nastassja Kinski) and her minister brother, Paul (Malcolm McDowell), reunite in New Orleans in this erotic tale of the supernatural. When zoologists capture a wild panther, Irina is drawn to the cat -- and the zoo curator (John Heard) is drawn to her. Soon, Irina's brother will have to reveal the family secret: that when sexually aroused, they turn into predatory jungle cats.", "text_for_embedding": "Cat People (1982). Genres: Drama, Fantasy, Horror, Thriller. After years of separation, Irina (Nastassja Kinski) and her minister brother, Paul (Malcolm McDowell), reunite in New Orleans in this erotic tale of the supernatural. When zoologists capture a wild panther, Irina is drawn to the cat -- and the zoo curator (John Heard) is drawn to her. Soon, Irina's brother will have to reveal the family secret: that when sexually aroused, they turn into predatory jungle cats.. Tags: shotgun, attack, lingerie, held captive, incest, dissection, jungle cat, erotic movie"} +{"id": "26688", "title": "Sorority Row", "year": 2009, "duration_min": 101, "rating": 5.4, "genres": "Horror, Mystery, Thriller", "genres_pipe": "|Horror|Mystery|Thriller|", "keywords": "female nudity, graduation, serial killer, blood, slasher, killer, horror movie remade, sorority house, axe", "tags_pipe": "|female nudity|graduation|serial killer|blood|slasher|killer|horror movie remade|sorority house|axe|", "overview": "When five sorority girls inadvertently cause the murder of one of their sisters in a prank gone wrong, they agree to keep the matter to themselves and never speak of it again, so they can get on with their lives. This proves easier said than done, when after graduation a mysterious killer goes after the five of them and anyone who knows their secret.", "text_for_embedding": "Sorority Row (2009). Genres: Horror, Mystery, Thriller. When five sorority girls inadvertently cause the murder of one of their sisters in a prank gone wrong, they agree to keep the matter to themselves and never speak of it again, so they can get on with their lives. This proves easier said than done, when after graduation a mysterious killer goes after the five of them and anyone who knows their secret.. Tags: female nudity, graduation, serial killer, blood, slasher, killer, horror movie remade, sorority house, axe"} +{"id": "43867", "title": "The Prisoner of Zenda", "year": 1937, "duration_min": 101, "rating": 8.4, "genres": "Adventure, Drama, Romance", "genres_pipe": "|Adventure|Drama|Romance|", "keywords": "kidnapping, coronation, villain, kingdom, heir to the throne, royalty, mistaken identity, king, identity swap, monarch, lookalikes, beautiful princess", "tags_pipe": "|kidnapping|coronation|villain|kingdom|heir to the throne|royalty|mistaken identity|king|identity swap|monarch|lookalikes|beautiful princess|", "overview": "An Englishman on a Ruritarian holiday must impersonate the king when the rightful monarch, a distant cousin, is drugged and kidnapped.", "text_for_embedding": "The Prisoner of Zenda (1937). Genres: Adventure, Drama, Romance. An Englishman on a Ruritarian holiday must impersonate the king when the rightful monarch, a distant cousin, is drugged and kidnapped.. Tags: kidnapping, coronation, villain, kingdom, heir to the throne, royalty, mistaken identity, king, identity swap, monarch, lookalikes, beautiful princess"} +{"id": "6615", "title": "Lars and the Real Girl", "year": 2007, "duration_min": 106, "rating": 7.1, "genres": "Comedy, Romance, Drama", "genres_pipe": "|Comedy|Romance|Drama|", "keywords": "garage, lone wolf, dying and death, loss, delusion, puppet, doll", "tags_pipe": "|garage|lone wolf|dying and death|loss|delusion|puppet|doll|", "overview": "Sometimes you find love where you'd least expect it. Just ask Lars, a sweet but quirky guy who thinks he's found the girl of his dreams in a life-sized doll named Bianca. Lars is completely content with his artificial girlfriend, but when he develops feelings for Margo, an attractive co-worker, Lars finds himself lost in a unique love triangle, hoping to somehow discover the real meaning of true love.", "text_for_embedding": "Lars and the Real Girl (2007). Genres: Comedy, Romance, Drama. Sometimes you find love where you'd least expect it. Just ask Lars, a sweet but quirky guy who thinks he's found the girl of his dreams in a life-sized doll named Bianca. Lars is completely content with his artificial girlfriend, but when he develops feelings for Margo, an attractive co-worker, Lars finds himself lost in a unique love triangle, hoping to somehow discover the real meaning of true love.. Tags: garage, lone wolf, dying and death, loss, delusion, puppet, doll"} +{"id": "14574", "title": "The Boy in the Striped Pyjamas", "year": 2008, "duration_min": 94, "rating": 7.7, "genres": "War, Drama", "genres_pipe": "|War|Drama|", "keywords": "nationalism, concentration camp, world war ii, gas chamber, nazis, concentration camp prisoner", "tags_pipe": "|nationalism|concentration camp|world war ii|gas chamber|nazis|concentration camp prisoner|", "overview": "When his family moves from their home in Berlin to a strange new house in Poland, young Bruno befriends Shmuel, a boy who lives on the other side of the fence where everyone seems to be wearing striped pajamas. Unaware of Shmuel's fate as a Jewish prisoner or the role his own Nazi father plays in his imprisonment, Bruno embarks on a dangerous journey inside the camp's walls.", "text_for_embedding": "The Boy in the Striped Pyjamas (2008). Genres: War, Drama. When his family moves from their home in Berlin to a strange new house in Poland, young Bruno befriends Shmuel, a boy who lives on the other side of the fence where everyone seems to be wearing striped pajamas. Unaware of Shmuel's fate as a Jewish prisoner or the role his own Nazi father plays in his imprisonment, Bruno embarks on a dangerous journey inside the camp's walls.. Tags: nationalism, concentration camp, world war ii, gas chamber, nazis, concentration camp prisoner"} +{"id": "16", "title": "Dancer in the Dark", "year": 2000, "duration_min": 140, "rating": 7.6, "genres": "Drama, Crime, Music", "genres_pipe": "|Drama|Crime|Music|", "keywords": "individual, dancing, usa, robbery, factory worker, secret, factory, small town, dance, blindness and impaired vision, death penalty, immigrant, eye operation, eyesight, fantasy", "tags_pipe": "|individual|dancing|usa|robbery|factory worker|secret|factory|small town|dance|blindness and impaired vision|death penalty|immigrant|eye operation|eyesight|fantasy|", "overview": "Selma, a Czech immigrant on the verge of blindness, struggles to make ends meet for herself and her son, who has inherited the same genetic disorder and will suffer the same fate without an expensive operation. When life gets too difficult, Selma learns to cope through her love of musicals, escaping life's troubles - even if just for a moment - by dreaming up little numbers to the rhythmic beats of her surroundings.", "text_for_embedding": "Dancer in the Dark (2000). Genres: Drama, Crime, Music. Selma, a Czech immigrant on the verge of blindness, struggles to make ends meet for herself and her son, who has inherited the same genetic disorder and will suffer the same fate without an expensive operation. When life gets too difficult, Selma learns to cope through her love of musicals, escaping life's troubles - even if just for a moment - by dreaming up little numbers to the rhythmic beats of her surroundings.. Tags: individual, dancing, usa, robbery, factory worker, secret, factory, small town, dance, blindness and impaired vision, death penalty, immigrant, eye operation, eyesight, fantasy"} +{"id": "39780", "title": "Oscar and Lucinda", "year": 1997, "duration_min": 132, "rating": 6.2, "genres": "Drama, Romance", "genres_pipe": "|Drama|Romance|", "keywords": "minister, australia, inheritance, wager, woman director, 19th century", "tags_pipe": "|minister|australia|inheritance|wager|woman director|19th century|", "overview": "After a childhood of abuse by his evangelistic father, misfit Oscar Hopkins becomes an Anglican minister and develops a divine obsession with gambling. Lucinda Leplastrier is a rich Australian heiress shopping in London for materials for her newly acquired glass factory back home. Deciding to travel to Australia as a missionary, Oscar meets Lucinda aboard ship, and a mutual obsession blossoms. They make a wager that will alter each of their destinies.", "text_for_embedding": "Oscar and Lucinda (1997). Genres: Drama, Romance. After a childhood of abuse by his evangelistic father, misfit Oscar Hopkins becomes an Anglican minister and develops a divine obsession with gambling. Lucinda Leplastrier is a rich Australian heiress shopping in London for materials for her newly acquired glass factory back home. Deciding to travel to Australia as a missionary, Oscar meets Lucinda aboard ship, and a mutual obsession blossoms. They make a wager that will alter each of their destinies.. Tags: minister, australia, inheritance, wager, woman director, 19th century"} +{"id": "21612", "title": "The Funeral", "year": 1996, "duration_min": 99, "rating": 7.3, "genres": "Crime, Drama", "genres_pipe": "|Crime|Drama|", "keywords": "suicide, bedroom, strike, great depression, trade union, murder, mafia, corpse, new york city, violence, stabbing, madness, 1930s", "tags_pipe": "|suicide|bedroom|strike|great depression|trade union|murder|mafia|corpse|new york city|violence|stabbing|madness|1930s|", "overview": "The story concerns the funeral of one of three brothers in a family of gangsters that lived in New York in 1930s. Details of the past of the brothers and their families are shown through a series of flashbacks, climaxing in a shocking ending.", "text_for_embedding": "The Funeral (1996). Genres: Crime, Drama. The story concerns the funeral of one of three brothers in a family of gangsters that lived in New York in 1930s. Details of the past of the brothers and their families are shown through a series of flashbacks, climaxing in a shocking ending.. Tags: suicide, bedroom, strike, great depression, trade union, murder, mafia, corpse, new york city, violence, stabbing, madness, 1930s"} +{"id": "36691", "title": "Solitary Man", "year": 2009, "duration_min": 90, "rating": 5.8, "genres": "Comedy, Drama, Romance", "genres_pipe": "|Comedy|Drama|Romance|", "keywords": "infidelity, bankrupt, loneliness, comedy, family drama", "tags_pipe": "|infidelity|bankrupt|loneliness|comedy|family drama|", "overview": "A car magnate watches his personal and professional life hit the skids because of his business and romantic indiscretions.", "text_for_embedding": "Solitary Man (2009). Genres: Comedy, Drama, Romance. A car magnate watches his personal and professional life hit the skids because of his business and romantic indiscretions.. Tags: infidelity, bankrupt, loneliness, comedy, family drama"} +{"id": "23631", "title": "Machete", "year": 2010, "duration_min": 105, "rating": 6.3, "genres": "Action, Comedy, Thriller", "genres_pipe": "|Action|Comedy|Thriller|", "keywords": "illegal immigration, immigration law, machete, politician, death of a child, hard to kill, brutal death", "tags_pipe": "|illegal immigration|immigration law|machete|politician|death of a child|hard to kill|brutal death|", "overview": "After being set-up and betrayed by the man who hired him to assassinate a Texas Senator, an ex-Federale launches a brutal rampage of revenge against his former boss.", "text_for_embedding": "Machete (2010). Genres: Action, Comedy, Thriller. After being set-up and betrayed by the man who hired him to assassinate a Texas Senator, an ex-Federale launches a brutal rampage of revenge against his former boss.. Tags: illegal immigration, immigration law, machete, politician, death of a child, hard to kill, brutal death"} +{"id": "45324", "title": "Casino Jack", "year": 2010, "duration_min": 108, "rating": 6.0, "genres": "Crime, Comedy, Drama", "genres_pipe": "|Crime|Comedy|Drama|", "keywords": "biography, duringcreditsstinger", "tags_pipe": "|biography|duringcreditsstinger|", "overview": "Based on a true story, a hot shot Washington DC lobbyist and his protégé go down hard as their schemes to peddle influence lead to corruption and murder.", "text_for_embedding": "Casino Jack (2010). Genres: Crime, Comedy, Drama. Based on a true story, a hot shot Washington DC lobbyist and his protégé go down hard as their schemes to peddle influence lead to corruption and murder.. Tags: biography, duringcreditsstinger"} +{"id": "12144", "title": "The Land Before Time", "year": 1988, "duration_min": 69, "rating": 7.0, "genres": "Animation, Adventure, Family", "genres_pipe": "|Animation|Adventure|Family|", "keywords": "vulkan, loss of mother, tyrannosaurus rex, earthquake, primitive time, dinosaur", "tags_pipe": "|vulkan|loss of mother|tyrannosaurus rex|earthquake|primitive time|dinosaur|", "overview": "An orphaned brontosaurus named Littlefoot sets off in search of the legendary Great Valley. A land of lush vegetation where the dinosaurs can thrive and live in peace. Along the way he meets four other young dinosaurs, each one a different species, and they encounter several obstacles as they learn to work together in order to survive.", "text_for_embedding": "The Land Before Time (1988). Genres: Animation, Adventure, Family. An orphaned brontosaurus named Littlefoot sets off in search of the legendary Great Valley. A land of lush vegetation where the dinosaurs can thrive and live in peace. Along the way he meets four other young dinosaurs, each one a different species, and they encounter several obstacles as they learn to work together in order to survive.. Tags: vulkan, loss of mother, tyrannosaurus rex, earthquake, primitive time, dinosaur"} +{"id": "11658", "title": "Tae Guk Gi: The Brotherhood of War", "year": 2004, "duration_min": 140, "rating": 7.4, "genres": "Action, Adventure, Drama, History, War", "genres_pipe": "|Action|Adventure|Drama|History|War|", "keywords": "archaeologist, korean war, north korea, south korea, air raid, pyre", "tags_pipe": "|archaeologist|korean war|north korea|south korea|air raid|pyre|", "overview": "In 1950, in South Korea, shoe-shiner Jin-tae Lee and his 18-year-old old student brother, Jin-seok Lee, form a poor but happy family with their mother, Jin-tae's fiancé Young-shin Kim, and her young sisters. Jin-tae and his mother are tough workers, who sacrifice themselves to send Jin-seok to the university. When North Korea invades the South, the family escapes to a relative's house in the country, but along their journey, Jin-seok is forced to join the army to fight in the front, and Jin-tae enlists too to protect his young brother. The commander promises Jin-tae that if he gets a medal he would release his brother, and Jin-tae becomes the braver soldier in the company. Along the bloody war between brothers, the relationship of Jin-seok with his older brother deteriorates leading to a dramatic and tragic end.", "text_for_embedding": "Tae Guk Gi: The Brotherhood of War (2004). Genres: Action, Adventure, Drama, History, War. In 1950, in South Korea, shoe-shiner Jin-tae Lee and his 18-year-old old student brother, Jin-seok Lee, form a poor but happy family with their mother, Jin-tae's fiancé Young-shin Kim, and her young sisters. Jin-tae and his mother are tough workers, who sacrifice themselves to send Jin-seok to the university. When North Korea invades the South, the family escapes to a relative's house in the country, but along their journey, Jin-seok is forced to join the army to fight in the front, and Jin-tae enlists too to protect his young brother. The commander promises Jin-tae that if he gets a medal he would release his brother, and Jin-tae becomes the braver soldier in the company. Along the bloody war between brothers, the relationship of Jin-seok with his older brother deteriorates leading to a dramatic and tragic end.. Tags: archaeologist, korean war, north korea, south korea, air raid, pyre"} +{"id": "56601", "title": "The Perfect Game", "year": 2010, "duration_min": 118, "rating": 6.3, "genres": "Drama, Family", "genres_pipe": "|Drama|Family|", "keywords": "baseball, sport, based on true story, family relationships", "tags_pipe": "|baseball|sport|based on true story|family relationships|", "overview": "Based on a true story, a group of boys from Monterrey, Mexico who become the first non-U.S. team to win the Little League World Series.", "text_for_embedding": "The Perfect Game (2010). Genres: Drama, Family. Based on a true story, a group of boys from Monterrey, Mexico who become the first non-U.S. team to win the Little League World Series.. Tags: baseball, sport, based on true story, family relationships"} +{"id": "9552", "title": "The Exorcist", "year": 1973, "duration_min": 122, "rating": 7.5, "genres": "Drama, Horror, Thriller", "genres_pipe": "|Drama|Horror|Thriller|", "keywords": "exorcism, holy water, religion and supernatural, vomit, christian, possession, profanity, priest, ouija board, satan, paranormal phenomena, girl, demon, strong language, disturbed child", "tags_pipe": "|exorcism|holy water|religion and supernatural|vomit|christian|possession|profanity|priest|ouija board|satan|paranormal phenomena|girl|demon|strong language|disturbed child|", "overview": "12-year-old Regan MacNeil begins to adapt an explicit new personality as strange events befall the local area of Georgetown. Her mother becomes torn between science and superstition in a desperate bid to save her daughter, and ultimately turns to her last hope: Father Damien Karras, a troubled priest who is struggling with his own faith.", "text_for_embedding": "The Exorcist (1973). Genres: Drama, Horror, Thriller. 12-year-old Regan MacNeil begins to adapt an explicit new personality as strange events befall the local area of Georgetown. Her mother becomes torn between science and superstition in a desperate bid to save her daughter, and ultimately turns to her last hope: Father Damien Karras, a troubled priest who is struggling with his own faith.. Tags: exorcism, holy water, religion and supernatural, vomit, christian, possession, profanity, priest, ouija board, satan, paranormal phenomena, girl, demon, strong language, disturbed child"} +{"id": "578", "title": "Jaws", "year": 1975, "duration_min": 124, "rating": 7.5, "genres": "Horror, Thriller, Adventure", "genres_pipe": "|Horror|Thriller|Adventure|", "keywords": "fishing, atlantic ocean, bathing, shipwreck, police chief, ferry boat, dying and death, dolly zoom, shark, great white shark, animal horror", "tags_pipe": "|fishing|atlantic ocean|bathing|shipwreck|police chief|ferry boat|dying and death|dolly zoom|shark|great white shark|animal horror|", "overview": "An insatiable great white shark terrorizes the townspeople of Amity Island, The police chief, an oceanographer and a grizzled shark hunter seek to destroy the bloodthirsty beast.", "text_for_embedding": "Jaws (1975). Genres: Horror, Thriller, Adventure. An insatiable great white shark terrorizes the townspeople of Amity Island, The police chief, an oceanographer and a grizzled shark hunter seek to destroy the bloodthirsty beast.. Tags: fishing, atlantic ocean, bathing, shipwreck, police chief, ferry boat, dying and death, dolly zoom, shark, great white shark, animal horror"} +{"id": "2105", "title": "American Pie", "year": 1999, "duration_min": 95, "rating": 6.4, "genres": "Comedy, Romance", "genres_pipe": "|Comedy|Romance|", "keywords": "graduation, innocence, coming of age, teenager, high school student, pie, teen comedy, teenage sexuality, exchange student, sitting on a toilet, voyeurism, virginity, laxative, prom night", "tags_pipe": "|graduation|innocence|coming of age|teenager|high school student|pie|teen comedy|teenage sexuality|exchange student|sitting on a toilet|voyeurism|virginity|laxative|prom night|", "overview": "At a high-school party, four friends find that losing their collective virginity isn't as easy as they had thought. But they still believe that they need to do so before college. To motivate themselves, they enter a pact to all \"score.\" by their senior prom.", "text_for_embedding": "American Pie (1999). Genres: Comedy, Romance. At a high-school party, four friends find that losing their collective virginity isn't as easy as they had thought. But they still believe that they need to do so before college. To motivate themselves, they enter a pact to all \"score.\" by their senior prom.. Tags: graduation, innocence, coming of age, teenager, high school student, pie, teen comedy, teenage sexuality, exchange student, sitting on a toilet, voyeurism, virginity, laxative, prom night"} +{"id": "126319", "title": "Ernest & Celestine", "year": 2012, "duration_min": 78, "rating": 7.6, "genres": "Animation, Comedy, Drama, Family", "genres_pipe": "|Animation|Comedy|Drama|Family|", "keywords": "mouse, musician, friendship, prejudice, bear", "tags_pipe": "|mouse|musician|friendship|prejudice|bear|", "overview": "Celestine is a little mouse trying to avoid a dental career; Ernest is a big bear craving an artistic outlet. When Celestine meets Ernest, they overcome their natural enmity by forging a life of crime together.", "text_for_embedding": "Ernest & Celestine (2012). Genres: Animation, Comedy, Drama, Family. Celestine is a little mouse trying to avoid a dental career; Ernest is a big bear craving an artistic outlet. When Celestine meets Ernest, they overcome their natural enmity by forging a life of crime together.. Tags: mouse, musician, friendship, prejudice, bear"} +{"id": "10136", "title": "The Golden Child", "year": 1986, "duration_min": 94, "rating": 5.6, "genres": "Action, Adventure, Comedy", "genres_pipe": "|Action|Adventure|Comedy|", "keywords": "monk, social worker, wretch, tibet, demon, evil, missing person, mysticism, reluctant hero", "tags_pipe": "|monk|social worker|wretch|tibet|demon|evil|missing person|mysticism|reluctant hero|", "overview": "A detective specializing in missing children is on a madcap mission to save a youth with mystical powers who's been abducted by an evil cult. He battles a band of super-nasties, scrambles through a booby-trapped chamber of horrors and traverses Tibet to obtain a sacred dagger.", "text_for_embedding": "The Golden Child (1986). Genres: Action, Adventure, Comedy. A detective specializing in missing children is on a madcap mission to save a youth with mystical powers who's been abducted by an evil cult. He battles a band of super-nasties, scrambles through a booby-trapped chamber of horrors and traverses Tibet to obtain a sacred dagger.. Tags: monk, social worker, wretch, tibet, demon, evil, missing person, mysticism, reluctant hero"} +{"id": "67660", "title": "Think Like a Man", "year": 2012, "duration_min": 122, "rating": 6.9, "genres": "Comedy, Romance", "genres_pipe": "|Comedy|Romance|", "keywords": "advice, love, relationship, ensemble cast, duringcreditsstinger, turning the tables, reading a book, african american comedy", "tags_pipe": "|advice|love|relationship|ensemble cast|duringcreditsstinger|turning the tables|reading a book|african american comedy|", "overview": "The balance of power in four couples’ relationships is upset when the women start using the advice in Steve Harvey’s book, Act Like A Lady, Think Like A Man, to get more of what they want from their men. When the men realize that the women have gotten a hold of their relationship “playbook,” they decide that the best defense is a good offense and come up with a plan to use this information to their advantage.", "text_for_embedding": "Think Like a Man (2012). Genres: Comedy, Romance. The balance of power in four couples’ relationships is upset when the women start using the advice in Steve Harvey’s book, Act Like A Lady, Think Like A Man, to get more of what they want from their men. When the men realize that the women have gotten a hold of their relationship “playbook,” they decide that the best defense is a good offense and come up with a plan to use this information to their advantage.. Tags: advice, love, relationship, ensemble cast, duringcreditsstinger, turning the tables, reading a book, african american comedy"} +{"id": "10611", "title": "Barbershop", "year": 2002, "duration_min": 102, "rating": 6.2, "genres": "Comedy, Drama", "genres_pipe": "|Comedy|Drama|", "keywords": "hairdresser, shop, neighbor, debt, meeting, hoodlum", "tags_pipe": "|hairdresser|shop|neighbor|debt|meeting|hoodlum|", "overview": "A day in the life of a barbershop on the south side of Chicago. Calvin, who inherited the struggling business from his deceased father, views the shop as nothing but a burden and waste of his time. After selling the shop to a local loan shark, Calvin slowly begins to see his father's vision and legacy and struggles with the notion that he just sold it out.", "text_for_embedding": "Barbershop (2002). Genres: Comedy, Drama. A day in the life of a barbershop on the south side of Chicago. Calvin, who inherited the struggling business from his deceased father, views the shop as nothing but a burden and waste of his time. After selling the shop to a local loan shark, Calvin slowly begins to see his father's vision and legacy and struggles with the notion that he just sold it out.. Tags: hairdresser, shop, neighbor, debt, meeting, hoodlum"} +{"id": "154", "title": "Star Trek II: The Wrath of Khan", "year": 1982, "duration_min": 113, "rating": 7.3, "genres": "Action, Adventure, Science Fiction, Thriller", "genres_pipe": "|Action|Adventure|Science Fiction|Thriller|", "keywords": "uss enterprise, genesis, asteroid, self sacrifice, midlife crisis, terraforming, simulator, cadet, radiation, uss reliant, ceti alpha v, genetics, space opera", "tags_pipe": "|uss enterprise|genesis|asteroid|self sacrifice|midlife crisis|terraforming|simulator|cadet|radiation|uss reliant|ceti alpha v|genetics|space opera|", "overview": "Admiral James T. Kirk is feeling old; the prospect of accompanying his old ship the Enterprise on a two week cadet cruise is not making him feel any younger. But the training cruise becomes a a life or death struggle when Khan escapes from years of exile and captures the power of creation itself.", "text_for_embedding": "Star Trek II: The Wrath of Khan (1982). Genres: Action, Adventure, Science Fiction, Thriller. Admiral James T. Kirk is feeling old; the prospect of accompanying his old ship the Enterprise on a two week cadet cruise is not making him feel any younger. But the training cruise becomes a a life or death struggle when Khan escapes from years of exile and captures the power of creation itself.. Tags: uss enterprise, genesis, asteroid, self sacrifice, midlife crisis, terraforming, simulator, cadet, radiation, uss reliant, ceti alpha v, genetics, space opera"} +{"id": "3049", "title": "Ace Ventura: Pet Detective", "year": 1994, "duration_min": 86, "rating": 6.4, "genres": "Comedy, Mystery", "genres_pipe": "|Comedy|Mystery|", "keywords": "dolphin, mascot, private detective, pets", "tags_pipe": "|dolphin|mascot|private detective|pets|", "overview": "He's Ace Ventura: Pet Detective. Jim Carrey is on the case to find the Miami Dolphins' missing mascot and quarterback Dan Marino. He goes eyeball to eyeball with a man-eating shark, stakes out the Miami Dolphins and woos and wows the ladies. Whether he's undercover, under fire or underwater, he always gets his man . . . or beast!", "text_for_embedding": "Ace Ventura: Pet Detective (1994). Genres: Comedy, Mystery. He's Ace Ventura: Pet Detective. Jim Carrey is on the case to find the Miami Dolphins' missing mascot and quarterback Dan Marino. He goes eyeball to eyeball with a man-eating shark, stakes out the Miami Dolphins and woos and wows the ladies. Whether he's undercover, under fire or underwater, he always gets his man . . . or beast!. Tags: dolphin, mascot, private detective, pets"} +{"id": "860", "title": "WarGames", "year": 1983, "duration_min": 114, "rating": 7.0, "genres": "Thriller, Science Fiction", "genres_pipe": "|Thriller|Science Fiction|", "keywords": "video game, artificial intelligence, fbi, cold war, hacker, prosecution, norad, government, computer, nuclear threat", "tags_pipe": "|video game|artificial intelligence|fbi|cold war|hacker|prosecution|norad|government|computer|nuclear threat|", "overview": "High School student David Lightman (Matthew Broderick) has a talent for hacking. But while trying to hack into a computer system to play unreleased video games, he unwittingly taps into the Defense Department's war computer and initiates a confrontation of global proportions! Together with his girlfriend (Ally Sheedy) and a wizardly computer genius (John Wood), David must race against time to outwit his opponent...and prevent a nuclear Armageddon.", "text_for_embedding": "WarGames (1983). Genres: Thriller, Science Fiction. High School student David Lightman (Matthew Broderick) has a talent for hacking. But while trying to hack into a computer system to play unreleased video games, he unwittingly taps into the Defense Department's war computer and initiates a confrontation of global proportions! Together with his girlfriend (Ally Sheedy) and a wizardly computer genius (John Wood), David must race against time to outwit his opponent...and prevent a nuclear Armageddon.. Tags: video game, artificial intelligence, fbi, cold war, hacker, prosecution, norad, government, computer, nuclear threat"} +{"id": "9281", "title": "Witness", "year": 1985, "duration_min": 113, "rating": 7.0, "genres": "Crime, Drama, Romance, Thriller", "genres_pipe": "|Crime|Drama|Romance|Thriller|", "keywords": "corruption, detective, police brutality, amish, suspense, barn raising, lancaster, pa", "tags_pipe": "|corruption|detective|police brutality|amish|suspense|barn raising|lancaster, pa|", "overview": "A sheltered Amish child is the sole witness of a brutal murder in a restroom at a Philadelphia train station, and he must be protected. The assignment falls to a taciturn detective who goes undercover in a Pennsylvania Dutch community. On the farm, he slowly assimilates despite his urban grit and forges a romantic bond with the child's beautiful mother.", "text_for_embedding": "Witness (1985). Genres: Crime, Drama, Romance, Thriller. A sheltered Amish child is the sole witness of a brutal murder in a restroom at a Philadelphia train station, and he must be protected. The assignment falls to a taciturn detective who goes undercover in a Pennsylvania Dutch community. On the farm, he slowly assimilates despite his urban grit and forges a romantic bond with the child's beautiful mother.. Tags: corruption, detective, police brutality, amish, suspense, barn raising, lancaster, pa"} +{"id": "75674", "title": "Act of Valor", "year": 2012, "duration_min": 110, "rating": 6.3, "genres": "Action, Thriller, War", "genres_pipe": "|Action|Thriller|War|", "keywords": "submarine, navy, scuba diving, heroism, navy seal, pistol, secret plot, military life, valor, terrorist plot, navy life, national security, pregnant wife, silver star, counter plot", "tags_pipe": "|submarine|navy|scuba diving|heroism|navy seal|pistol|secret plot|military life|valor|terrorist plot|navy life|national security|pregnant wife|silver star|counter plot|", "overview": "When a covert mission to rescue a kidnapped CIA operative uncovers a chilling plot, an elite, highly trained U.S. SEAL team speeds to hotspots around the globe, racing against the clock to stop a deadly terrorist attack.", "text_for_embedding": "Act of Valor (2012). Genres: Action, Thriller, War. When a covert mission to rescue a kidnapped CIA operative uncovers a chilling plot, an elite, highly trained U.S. SEAL team speeds to hotspots around the globe, racing against the clock to stop a deadly terrorist attack.. Tags: submarine, navy, scuba diving, heroism, navy seal, pistol, secret plot, military life, valor, terrorist plot, navy life, national security, pregnant wife, silver star, counter plot"} +{"id": "9762", "title": "Step Up", "year": 2006, "duration_min": 104, "rating": 6.7, "genres": "Music, Drama, Romance, Crime", "genres_pipe": "|Music|Drama|Romance|Crime|", "keywords": "dancing, new love, dance, baltimore, art school, woman director", "tags_pipe": "|dancing|new love|dance|baltimore|art school|woman director|", "overview": "Everyone deserves a chance to follow their dreams, but some people only get one shot. Tyler Gage is a rebel from the wrong side of Baltimore's tracks and the only thing that stands between him and an unfulfilled life are his dreams of one day making it out of there. Nora is a privileged ballet dancer attending Baltimore's ultra-elite Maryland School of the Arts", "text_for_embedding": "Step Up (2006). Genres: Music, Drama, Romance, Crime. Everyone deserves a chance to follow their dreams, but some people only get one shot. Tyler Gage is a rebel from the wrong side of Baltimore's tracks and the only thing that stands between him and an unfulfilled life are his dreams of one day making it out of there. Nora is a privileged ballet dancer attending Baltimore's ultra-elite Maryland School of the Arts. Tags: dancing, new love, dance, baltimore, art school, woman director"} +{"id": "3179", "title": "Beavis and Butt-Head Do America", "year": 1996, "duration_min": 81, "rating": 6.5, "genres": "Animation, Comedy", "genres_pipe": "|Animation|Comedy|", "keywords": "washington d.c., casino, hotel, sun, television, sperm, based on tv series, las vegas, swat team, adult animation, road movie", "tags_pipe": "|washington d.c.|casino|hotel|sun|television|sperm|based on tv series|las vegas|swat team|adult animation|road movie|", "overview": "Mike Judge's slacker duo, Beavis and Butt-Head, wake to discover their TV has been stolen. Their search for a new one takes them on a clueless adventure across America where they manage to accidentally become America's most wanted.", "text_for_embedding": "Beavis and Butt-Head Do America (1996). Genres: Animation, Comedy. Mike Judge's slacker duo, Beavis and Butt-Head, wake to discover their TV has been stolen. Their search for a new one takes them on a clueless adventure across America where they manage to accidentally become America's most wanted.. Tags: washington d.c., casino, hotel, sun, television, sperm, based on tv series, las vegas, swat team, adult animation, road movie"} +{"id": "184", "title": "Jackie Brown", "year": 1997, "duration_min": 154, "rating": 7.3, "genres": "Comedy, Crime, Romance", "genres_pipe": "|Comedy|Crime|Romance|", "keywords": "airport, underworld, arms deal, weapon, police, drug", "tags_pipe": "|airport|underworld|arms deal|weapon|police|drug|", "overview": "Jackie Brown is a flight attendant who gets caught in the middle of smuggling cash into the country for her gunrunner boss. When the cops try to use Jackie to get to her boss, she hatches a plan—with help from a bail bondsman—to keep the money for herself. Based on Elmore Leonard's novel “Rum Punch”.", "text_for_embedding": "Jackie Brown (1997). Genres: Comedy, Crime, Romance. Jackie Brown is a flight attendant who gets caught in the middle of smuggling cash into the country for her gunrunner boss. When the cops try to use Jackie to get to her boss, she hatches a plan—with help from a bail bondsman—to keep the money for herself. Based on Elmore Leonard's novel “Rum Punch”.. Tags: airport, underworld, arms deal, weapon, police, drug"} +{"id": "13335", "title": "Harold & Kumar Escape from Guantanamo Bay", "year": 2008, "duration_min": 107, "rating": 6.2, "genres": "Comedy, Adventure", "genres_pipe": "|Comedy|Adventure|", "keywords": "terrorist, aftercreditsstinger, duringcreditsstinger", "tags_pipe": "|terrorist|aftercreditsstinger|duringcreditsstinger|", "overview": "Having satisfied their urge for White Castle, Harold and Kumar jump on a plane to catch up with Harold's love interest, who's headed for the Netherlands. But the pair must change their plans when Kumar is accused of being a terrorist. Rob Corddry also stars in this wild comedy sequel that follows the hapless stoners' misadventures as they try to avoid being captured by the Department of Homeland Security.", "text_for_embedding": "Harold & Kumar Escape from Guantanamo Bay (2008). Genres: Comedy, Adventure. Having satisfied their urge for White Castle, Harold and Kumar jump on a plane to catch up with Harold's love interest, who's headed for the Netherlands. But the pair must change their plans when Kumar is accused of being a terrorist. Rob Corddry also stars in this wild comedy sequel that follows the hapless stoners' misadventures as they try to avoid being captured by the Department of Homeland Security.. Tags: terrorist, aftercreditsstinger, duringcreditsstinger"} +{"id": "76726", "title": "Chronicle", "year": 2012, "duration_min": 84, "rating": 6.6, "genres": "Science Fiction, Drama, Thriller", "genres_pipe": "|Science Fiction|Drama|Thriller|", "keywords": "seattle, telekinesis, friendship, loneliness, outcast, coming of age, student, teenager, superpower, found footage, aftercreditsstinger, abuse, bittersweet", "tags_pipe": "|seattle|telekinesis|friendship|loneliness|outcast|coming of age|student|teenager|superpower|found footage|aftercreditsstinger|abuse|bittersweet|", "overview": "Three high school students make an incredible discovery, leading to their developing uncanny powers beyond their understanding. As they learn to control their abilities and use them to their advantage, their lives start to spin out of control, and their darker sides begin to take over.", "text_for_embedding": "Chronicle (2012). Genres: Science Fiction, Drama, Thriller. Three high school students make an incredible discovery, leading to their developing uncanny powers beyond their understanding. As they learn to control their abilities and use them to their advantage, their lives start to spin out of control, and their darker sides begin to take over.. Tags: seattle, telekinesis, friendship, loneliness, outcast, coming of age, student, teenager, superpower, found footage, aftercreditsstinger, abuse, bittersweet"} +{"id": "10269", "title": "Yentl", "year": 1983, "duration_min": 132, "rating": 6.2, "genres": "Music, Drama, Romance", "genres_pipe": "|Music|Drama|Romance|", "keywords": "studies, music, disguise, unhappiness, boys' school, woman director", "tags_pipe": "|studies|music|disguise|unhappiness|boys' school|woman director|", "overview": "A Jewish girl disguises herself as a boy to enter religious training.", "text_for_embedding": "Yentl (1983). Genres: Music, Drama, Romance. A Jewish girl disguises herself as a boy to enter religious training.. Tags: studies, music, disguise, unhappiness, boys' school, woman director"} +{"id": "36819", "title": "Time Bandits", "year": 1981, "duration_min": 116, "rating": 6.6, "genres": "Family, Fantasy, Science Fiction, Adventure, Comedy", "genres_pipe": "|Family|Fantasy|Science Fiction|Adventure|Comedy|", "keywords": "treasure, map, magic, time travel, titanic, cage, steampunk, minotaur, independent film, good vs evil, tank, burglary", "tags_pipe": "|treasure|map|magic|time travel|titanic|cage|steampunk|minotaur|independent film|good vs evil|tank|burglary|", "overview": "Young history buff Kevin can scarcely believe it when six dwarfs emerge from his closet one night. Former employees of the Supreme Being, they've purloined a map charting all of the holes in the fabric of time and are using it to steal treasures from different historical eras. Taking Kevin with them, they variously drop in on Napoleon, Robin Hood and King Agamemnon before the Supreme Being catches up with them.", "text_for_embedding": "Time Bandits (1981). Genres: Family, Fantasy, Science Fiction, Adventure, Comedy. Young history buff Kevin can scarcely believe it when six dwarfs emerge from his closet one night. Former employees of the Supreme Being, they've purloined a map charting all of the holes in the fabric of time and are using it to steal treasures from different historical eras. Taking Kevin with them, they variously drop in on Napoleon, Robin Hood and King Agamemnon before the Supreme Being catches up with them.. Tags: treasure, map, magic, time travel, titanic, cage, steampunk, minotaur, independent film, good vs evil, tank, burglary"} +{"id": "17130", "title": "Crossroads", "year": 2002, "duration_min": 93, "rating": 4.7, "genres": "Action, Adventure, Comedy, Drama, Family, Music, Romance", "genres_pipe": "|Action|Adventure|Comedy|Drama|Family|Music|Romance|", "keywords": "dancing, women, sex, karaoke, dream, pop singer, virgin, motel, graduation, kiss, friendship, high school, road trip, unfaithful boyfriend, hospital", "tags_pipe": "|dancing|women|sex|karaoke|dream|pop singer|virgin|motel|graduation|kiss|friendship|high school|road trip|unfaithful boyfriend|hospital|", "overview": "Three friends get together and bury a box making a pact to open it at midnight at their high school graduation. In the little town in Georgia that they live in, things soon change. One is little miss perfect, one is an engaged prom queen, and the other is a pregnant outcast. The night of graduation, they open the box and they strike up a conversation. All of a sudden, one brings up the topic of her going to Los Angeles for a record contract audition. They all decide to go together and they leave. With a little money, they set out on the road with a guy named Ben. When one of them tells the other a rumor that he might be a homicidal maniac they are all scared of him. When they reach LA, Lucy falls in love with Ben and against her father's wishes, she stays and she goes to the audition.", "text_for_embedding": "Crossroads (2002). Genres: Action, Adventure, Comedy, Drama, Family, Music, Romance. Three friends get together and bury a box making a pact to open it at midnight at their high school graduation. In the little town in Georgia that they live in, things soon change. One is little miss perfect, one is an engaged prom queen, and the other is a pregnant outcast. The night of graduation, they open the box and they strike up a conversation. All of a sudden, one brings up the topic of her going to Los Angeles for a record contract audition. They all decide to go together and they leave. With a little money, they set out on the road with a guy named Ben. When one of them tells the other a rumor that he might be a homicidal maniac they are all scared of him. When they reach LA, Lucy falls in love with Ben and against her father's wishes, she stays and she goes to the audition.. Tags: dancing, women, sex, karaoke, dream, pop singer, virgin, motel, graduation, kiss, friendship, high school, road trip, unfaithful boyfriend, hospital"} +{"id": "57214", "title": "Project X", "year": 2012, "duration_min": 88, "rating": 6.5, "genres": "Comedy, Crime", "genres_pipe": "|Comedy|Crime|", "keywords": "vandalism, high school, swimming pool, party, teen movie, teenager, dog, high school student, fake documentary, sex doll, lime, underwater photography, bouncy castle, flash grenade", "tags_pipe": "|vandalism|high school|swimming pool|party|teen movie|teenager|dog|high school student|fake documentary|sex doll|lime|underwater photography|bouncy castle|flash grenade|", "overview": "Three high school seniors throw a party to make a name for themselves. As the night progresses, things spiral out of control as word of the party spreads.", "text_for_embedding": "Project X (2012). Genres: Comedy, Crime. Three high school seniors throw a party to make a name for themselves. As the night progresses, things spiral out of control as word of the party spreads.. Tags: vandalism, high school, swimming pool, party, teen movie, teenager, dog, high school student, fake documentary, sex doll, lime, underwater photography, bouncy castle, flash grenade"} +{"id": "11202", "title": "Patton", "year": 1970, "duration_min": 172, "rating": 7.3, "genres": "Drama, History, War", "genres_pipe": "|Drama|History|War|", "keywords": "general, world war ii, normandy, biography, historical figure, d-day, dead soldier, tank, steel helmet, destiny, allies", "tags_pipe": "|general|world war ii|normandy|biography|historical figure|d-day|dead soldier|tank|steel helmet|destiny|allies|", "overview": "\"Patton\" tells the tale of General George S. Patton, famous tank commander of World War II. The film begins with patton's career in North Africa and progresses through the invasion of Germany and the fall of the Third Reich. Side plots also speak of Patton's numerous faults such his temper and habit towards insubordination.", "text_for_embedding": "Patton (1970). Genres: Drama, History, War. \"Patton\" tells the tale of General George S. Patton, famous tank commander of World War II. The film begins with patton's career in North Africa and progresses through the invasion of Germany and the fall of the Third Reich. Side plots also speak of Patton's numerous faults such his temper and habit towards insubordination.. Tags: general, world war ii, normandy, biography, historical figure, d-day, dead soldier, tank, steel helmet, destiny, allies"} +{"id": "9357", "title": "One Hour Photo", "year": 2002, "duration_min": 96, "rating": 6.6, "genres": "Horror, Thriller", "genres_pipe": "|Horror|Thriller|", "keywords": "sexual abuse, hotel room, cheating, supermarket, penalty, nudity, knife, birthday party, photography, stalker, photo lab, suspense, sitting on a toilet, imagination, voyeurism", "tags_pipe": "|sexual abuse|hotel room|cheating|supermarket|penalty|nudity|knife|birthday party|photography|stalker|photo lab|suspense|sitting on a toilet|imagination|voyeurism|", "overview": "Sy \"the photo guy\" Parrish has lovingly developed photos for the Yorkin family since their son was a baby. But as the Yorkins' lives become fuller, Sy's only seems lonelier, until he eventually believes he's part of their family. When \"Uncle\" Sy's picture-perfect fantasy collides with an ugly dose of reality, what happens next \"has the spine-tingling elements of the best psychological thrillers!\"", "text_for_embedding": "One Hour Photo (2002). Genres: Horror, Thriller. Sy \"the photo guy\" Parrish has lovingly developed photos for the Yorkin family since their son was a baby. But as the Yorkins' lives become fuller, Sy's only seems lonelier, until he eventually believes he's part of their family. When \"Uncle\" Sy's picture-perfect fantasy collides with an ugly dose of reality, what happens next \"has the spine-tingling elements of the best psychological thrillers!\". Tags: sexual abuse, hotel room, cheating, supermarket, penalty, nudity, knife, birthday party, photography, stalker, photo lab, suspense, sitting on a toilet, imagination, voyeurism"} +{"id": "13812", "title": "Quarantine", "year": 2008, "duration_min": 89, "rating": 5.5, "genres": "Horror, Science Fiction, Thriller", "genres_pipe": "|Horror|Science Fiction|Thriller|", "keywords": "quarantine, remake, tv reporter, found footage, virus", "tags_pipe": "|quarantine|remake|tv reporter|found footage|virus|", "overview": "A television reporter and her cameraman are trapped inside a building quarantined by the CDC after the outbreak of a mysterious virus which turns humans into bloodthirsty killers.", "text_for_embedding": "Quarantine (2008). Genres: Horror, Science Fiction, Thriller. A television reporter and her cameraman are trapped inside a building quarantined by the CDC after the outbreak of a mysterious virus which turns humans into bloodthirsty killers.. Tags: quarantine, remake, tv reporter, found footage, virus"} +{"id": "9030", "title": "The Eye", "year": 2008, "duration_min": 98, "rating": 5.5, "genres": "Drama, Horror, Thriller", "genres_pipe": "|Drama|Horror|Thriller|", "keywords": "sister sister relationship, blindness and impaired vision, eye operation, eyesight, dying and death, eye, classical music, sister, eye specialist, remake", "tags_pipe": "|sister sister relationship|blindness and impaired vision|eye operation|eyesight|dying and death|eye|classical music|sister|eye specialist|remake|", "overview": "Violinist Sydney Wells was accidentally blinded by her sister Helen when she was five years old. She submits to a cornea transplantation, and while recovering from the operation, she realizes that she is seeing dead people.", "text_for_embedding": "The Eye (2008). Genres: Drama, Horror, Thriller. Violinist Sydney Wells was accidentally blinded by her sister Helen when she was five years old. She submits to a cornea transplantation, and while recovering from the operation, she realizes that she is seeing dead people.. Tags: sister sister relationship, blindness and impaired vision, eye operation, eyesight, dying and death, eye, classical music, sister, eye specialist, remake"} +{"id": "19084", "title": "Johnson Family Vacation", "year": 2004, "duration_min": 97, "rating": 4.7, "genres": "Comedy, Family", "genres_pipe": "|Comedy|Family|", "keywords": "", "tags_pipe": "", "overview": "AAA can't help the roadside emergency that is the JOHNSON FAMILY VACATION. Even the on-board navigation system has a meltdown on Nate Johnson and his family's cross-country trek to their annual family reunion/grudge match. Reluctantly along for the ride are Nate's wife, who's only in it for the kids; their rapper-wannabe son; their teenage daughter who's fashioned herself as the next Lolita; and their youngest, whose imaginary dog Nate just can't seem to keep track of. Can the Johnsons survive each other and all the obstacles the road throws at them to make it to Caruthersville, Missouri? Can they find Missouri?", "text_for_embedding": "Johnson Family Vacation (2004). Genres: Comedy, Family. AAA can't help the roadside emergency that is the JOHNSON FAMILY VACATION. Even the on-board navigation system has a meltdown on Nate Johnson and his family's cross-country trek to their annual family reunion/grudge match. Reluctantly along for the ride are Nate's wife, who's only in it for the kids; their rapper-wannabe son; their teenage daughter who's fashioned herself as the next Lolita; and their youngest, whose imaginary dog Nate just can't seem to keep track of. Can the Johnsons survive each other and all the obstacles the road throws at them to make it to Caruthersville, Missouri? Can they find Missouri?. Tags: "} +{"id": "8386", "title": "How High", "year": 2001, "duration_min": 93, "rating": 6.3, "genres": "Comedy", "genres_pipe": "|Comedy|", "keywords": "carpet, pimp, harvard university, joint, cannabis, teen movie, university, person on fire, cult film, dove, dean, weed+, marijuana joint, smoke, drug deal", "tags_pipe": "|carpet|pimp|harvard university|joint|cannabis|teen movie|university|person on fire|cult film|dove|dean|weed+|marijuana joint|smoke|drug deal|", "overview": "Multi-platinum rap superstars Redman and Method Man star as Jamal and Silas, two regular guys who smoke something magical, ace their college entrance exams and wind up at Harvard. Ivy League ways are strange but Silas and Jamal take it in a stride -- until their supply of supernatural smoke runs dry. That's when they have to start living by their wits and rely on their natural resources to make the grade.", "text_for_embedding": "How High (2001). Genres: Comedy. Multi-platinum rap superstars Redman and Method Man star as Jamal and Silas, two regular guys who smoke something magical, ace their college entrance exams and wind up at Harvard. Ivy League ways are strange but Silas and Jamal take it in a stride -- until their supply of supernatural smoke runs dry. That's when they have to start living by their wits and rely on their natural resources to make the grade.. Tags: carpet, pimp, harvard university, joint, cannabis, teen movie, university, person on fire, cult film, dove, dean, weed+, marijuana joint, smoke, drug deal"} +{"id": "10437", "title": "The Muppet Christmas Carol", "year": 1992, "duration_min": 85, "rating": 7.2, "genres": "Comedy, Family, Fantasy, Drama", "genres_pipe": "|Comedy|Family|Fantasy|Drama|", "keywords": "holiday, future, musical, past, scrooge, christmas carol, charles dickens, christmas", "tags_pipe": "|holiday|future|musical|past|scrooge|christmas carol|charles dickens|christmas|", "overview": "A retelling of the classic Dickens tale of Ebenezer Scrooge, miser extraordinaire. He is held accountable for his dastardly ways during night-time visitations by the Ghosts of Christmas Past, Present, and future.", "text_for_embedding": "The Muppet Christmas Carol (1992). Genres: Comedy, Family, Fantasy, Drama. A retelling of the classic Dickens tale of Ebenezer Scrooge, miser extraordinaire. He is held accountable for his dastardly ways during night-time visitations by the Ghosts of Christmas Past, Present, and future.. Tags: holiday, future, musical, past, scrooge, christmas carol, charles dickens, christmas"} +{"id": "1360", "title": "Frida", "year": 2002, "duration_min": 123, "rating": 7.3, "genres": "Drama, Romance", "genres_pipe": "|Drama|Romance|", "keywords": "painter, love of one's life, disabled, woman director", "tags_pipe": "|painter|love of one's life|disabled|woman director|", "overview": "\"Frida\" chronicles the life Frida Kahlo shared unflinchingly and openly with Diego Rivera, as the young couple took the art world by storm. From her complex and enduring relationship with her mentor and husband to her illicit and controversial affair with Leon Trotsky, to her provocative and romantic entanglements with women, Frida Kahlo lived a bold and uncompromising life as a political, artistic, and sexual revolutionary", "text_for_embedding": "Frida (2002). Genres: Drama, Romance. \"Frida\" chronicles the life Frida Kahlo shared unflinchingly and openly with Diego Rivera, as the young couple took the art world by storm. From her complex and enduring relationship with her mentor and husband to her illicit and controversial affair with Leon Trotsky, to her provocative and romantic entanglements with women, Frida Kahlo lived a bold and uncompromising life as a political, artistic, and sexual revolutionary. Tags: painter, love of one's life, disabled, woman director"} +{"id": "101267", "title": "Katy Perry: Part of Me", "year": 2012, "duration_min": 93, "rating": 6.5, "genres": "Documentary, Music", "genres_pipe": "|Documentary|Music|", "keywords": "woman director", "tags_pipe": "|woman director|", "overview": "Giving fans unprecedented access to the real life of the music sensation, Katy Perry: Part of Me exposes the hard work, dedication and phenomenal talent of a girl who remained true to herself and her vision in order to achieve her dreams. Featuring rare behind-the-scenes interviews, personal moments between Katy and her friends, and all-access footage of rehearsals, choreography, Katy’s signature style and more, Katy Perry: Part of Me reveals the singer’s unwavering belief that if you can be yourself, then you can be anything.", "text_for_embedding": "Katy Perry: Part of Me (2012). Genres: Documentary, Music. Giving fans unprecedented access to the real life of the music sensation, Katy Perry: Part of Me exposes the hard work, dedication and phenomenal talent of a girl who remained true to herself and her vision in order to achieve her dreams. Featuring rare behind-the-scenes interviews, personal moments between Katy and her friends, and all-access footage of rehearsals, choreography, Katy’s signature style and more, Katy Perry: Part of Me reveals the singer’s unwavering belief that if you can be yourself, then you can be anything.. Tags: woman director"} +{"id": "222935", "title": "The Fault in Our Stars", "year": 2014, "duration_min": 125, "rating": 7.6, "genres": "Romance, Drama", "genres_pipe": "|Romance|Drama|", "keywords": "amsterdam, based on novel, support group, cancer, teenager, star crossed lovers, teen drama, oxygen tank, based on young adult novel", "tags_pipe": "|amsterdam|based on novel|support group|cancer|teenager|star crossed lovers|teen drama|oxygen tank|based on young adult novel|", "overview": "Despite the tumor-shrinking medical miracle that has bought her a few years, Hazel has never been anything but terminal, her final chapter inscribed upon diagnosis. But when a patient named Augustus Waters suddenly appears at Cancer Kid Support Group, Hazel's story is about to be completely rewritten.", "text_for_embedding": "The Fault in Our Stars (2014). Genres: Romance, Drama. Despite the tumor-shrinking medical miracle that has bought her a few years, Hazel has never been anything but terminal, her final chapter inscribed upon diagnosis. But when a patient named Augustus Waters suddenly appears at Cancer Kid Support Group, Hazel's story is about to be completely rewritten.. Tags: amsterdam, based on novel, support group, cancer, teenager, star crossed lovers, teen drama, oxygen tank, based on young adult novel"} +{"id": "10220", "title": "Rounders", "year": 1998, "duration_min": 121, "rating": 6.9, "genres": "Drama, Crime", "genres_pipe": "|Drama|Crime|", "keywords": "gambling, law, compulsive gambling, roulette, gain", "tags_pipe": "|gambling|law|compulsive gambling|roulette|gain|", "overview": "A young man is a reformed gambler who must return to playing big stakes poker to help a friend pay off loan sharks.", "text_for_embedding": "Rounders (1998). Genres: Drama, Crime. A young man is a reformed gambler who must return to playing big stakes poker to help a friend pay off loan sharks.. Tags: gambling, law, compulsive gambling, roulette, gain"} +{"id": "284296", "title": "Top Five", "year": 2014, "duration_min": 102, "rating": 6.3, "genres": "Drama, Comedy", "genres_pipe": "|Drama|Comedy|", "keywords": "comedian, interview, reporter, movie star, fiancé fiancée relationship", "tags_pipe": "|comedian|interview|reporter|movie star|fiancé fiancée relationship|", "overview": "A comedian tries to make it as a serious actor when his reality-TV star fiancé talks him into broadcasting their wedding on her TV show.", "text_for_embedding": "Top Five (2014). Genres: Drama, Comedy. A comedian tries to make it as a serious actor when his reality-TV star fiancé talks him into broadcasting their wedding on her TV show.. Tags: comedian, interview, reporter, movie star, fiancé fiancée relationship"} +{"id": "31915", "title": "Prophecy", "year": 1979, "duration_min": 102, "rating": 5.4, "genres": "Horror, Science Fiction", "genres_pipe": "|Horror|Science Fiction|", "keywords": "monster, mutant, toxic, native american, environmental, animal horror", "tags_pipe": "|monster|mutant|toxic|native american|environmental|animal horror|", "overview": "A Savage beast, grown to monstrous size and driven mad by toxic wastes that are poisoning the waters, spreads terror and death on a Maine countryside.", "text_for_embedding": "Prophecy (1979). Genres: Horror, Science Fiction. A Savage beast, grown to monstrous size and driven mad by toxic wastes that are poisoning the waters, spreads terror and death on a Maine countryside.. Tags: monster, mutant, toxic, native american, environmental, animal horror"} +{"id": "11601", "title": "Stir of Echoes", "year": 1999, "duration_min": 99, "rating": 6.5, "genres": "Horror, Mystery, Thriller", "genres_pipe": "|Horror|Mystery|Thriller|", "keywords": "secret, obsession, paranoia, grave, haunted house, hypnosis, tools, clairvoyance, murder, suspense, disappearance, psychic, cemetary, ghost, neighborhood", "tags_pipe": "|secret|obsession|paranoia|grave|haunted house|hypnosis|tools|clairvoyance|murder|suspense|disappearance|psychic|cemetary|ghost|neighborhood|", "overview": "After being hypnotized by his sister in law, Tom Witzky begins seeing haunting visions of a girl's ghost and a mystery begins to unfold around her.", "text_for_embedding": "Stir of Echoes (1999). Genres: Horror, Mystery, Thriller. After being hypnotized by his sister in law, Tom Witzky begins seeing haunting visions of a girl's ghost and a mystery begins to unfold around her.. Tags: secret, obsession, paranoia, grave, haunted house, hypnosis, tools, clairvoyance, murder, suspense, disappearance, psychic, cemetary, ghost, neighborhood"} +{"id": "205220", "title": "Philomena", "year": 2013, "duration_min": 98, "rating": 7.4, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "mother, washington d.c., journalist, adoption, forgiveness, son, faith, search, church, ireland, based on true events, nuns", "tags_pipe": "|mother|washington d.c.|journalist|adoption|forgiveness|son|faith|search|church|ireland|based on true events|nuns|", "overview": "A woman searches for her adult son, who was taken away from her decades ago when she was forced to live in a convent.", "text_for_embedding": "Philomena (2013). Genres: Drama. A woman searches for her adult son, who was taken away from her decades ago when she was forced to live in a convent.. Tags: mother, washington d.c., journalist, adoption, forgiveness, son, faith, search, church, ireland, based on true events, nuns"} +{"id": "11354", "title": "The Upside of Anger", "year": 2005, "duration_min": 118, "rating": 6.4, "genres": "Comedy, Drama", "genres_pipe": "|Comedy|Drama|", "keywords": "sex, lie, college, funeral, friendship, grief, neighbor, marijuana, anger, alcoholic, drunk, flashback, dysfunctional", "tags_pipe": "|sex|lie|college|funeral|friendship|grief|neighbor|marijuana|anger|alcoholic|drunk|flashback|dysfunctional|", "overview": "After her husband runs off with his secretary, Terry Wolfmeyer is left to fend for herself -- and her four daughters. As she hits rock bottom, Terry finds a friend and drinking buddy in next-door neighbor Denny, a former baseball player. As the two grow closer, and her daughters increasingly rely on Denny, Terry starts to have reservations about where their relationship is headed.", "text_for_embedding": "The Upside of Anger (2005). Genres: Comedy, Drama. After her husband runs off with his secretary, Terry Wolfmeyer is left to fend for herself -- and her four daughters. As she hits rock bottom, Terry finds a friend and drinking buddy in next-door neighbor Denny, a former baseball player. As the two grow closer, and her daughters increasingly rely on Denny, Terry starts to have reservations about where their relationship is headed.. Tags: sex, lie, college, funeral, friendship, grief, neighbor, marijuana, anger, alcoholic, drunk, flashback, dysfunctional"} +{"id": "16241", "title": "The Boys from Brazil", "year": 1978, "duration_min": 125, "rating": 6.6, "genres": "Horror, Drama, Thriller, Science Fiction", "genres_pipe": "|Horror|Drama|Thriller|Science Fiction|", "keywords": "paraguay, mengele, nazi hunter, third reich", "tags_pipe": "|paraguay|mengele|nazi hunter|third reich|", "overview": "Nazi hunter Ezra Lieberman discovers a sinister and bizarre plot to rekindle the Third Reich.", "text_for_embedding": "The Boys from Brazil (1978). Genres: Horror, Drama, Thriller, Science Fiction. Nazi hunter Ezra Lieberman discovers a sinister and bizarre plot to rekindle the Third Reich.. Tags: paraguay, mengele, nazi hunter, third reich"} +{"id": "14191", "title": "Aquamarine", "year": 2006, "duration_min": 104, "rating": 5.8, "genres": "Fantasy, Romance, Family, Comedy", "genres_pipe": "|Fantasy|Romance|Family|Comedy|", "keywords": "female friendship, mermaid, teenager, woman director", "tags_pipe": "|female friendship|mermaid|teenager|woman director|", "overview": "Two teenage girls discover that mermaids really do exist after a violent storm washes one ashore. The mermaid, a sassy creature named Aquamarine, is determined to prove to her father that real love exists, and enlists the girls' help in winning the heart of a handsome lifeguard.", "text_for_embedding": "Aquamarine (2006). Genres: Fantasy, Romance, Family, Comedy. Two teenage girls discover that mermaids really do exist after a violent storm washes one ashore. The mermaid, a sassy creature named Aquamarine, is determined to prove to her father that real love exists, and enlists the girls' help in winning the heart of a handsome lifeguard.. Tags: female friendship, mermaid, teenager, woman director"} +{"id": "286565", "title": "Paper Towns", "year": 2015, "duration_min": 109, "rating": 6.1, "genres": "Drama, Mystery, Romance", "genres_pipe": "|Drama|Mystery|Romance|", "keywords": "friendship, high school, teenager, classmate, based on young adult novel", "tags_pipe": "|friendship|high school|teenager|classmate|based on young adult novel|", "overview": "Quentin Jacobsen has spent a lifetime loving the magnificently adventurous Margo Roth Spiegelman from afar. So when she cracks open a window and climbs back into his life-dressed like a ninja and summoning him for an ingenious campaign of revenge-he follows. After their all-nighter ends and a new day breaks, Q arrives at school to discover that Margo, always an enigma, has now become a mystery. But Q soon learns that there are clues-and they're for him. Urged down a disconnected path, the closer he gets, the less Q sees of the girl he thought he knew.", "text_for_embedding": "Paper Towns (2015). Genres: Drama, Mystery, Romance. Quentin Jacobsen has spent a lifetime loving the magnificently adventurous Margo Roth Spiegelman from afar. So when she cracks open a window and climbs back into his life-dressed like a ninja and summoning him for an ingenious campaign of revenge-he follows. After their all-nighter ends and a new day breaks, Q arrives at school to discover that Margo, always an enigma, has now become a mystery. But Q soon learns that there are clues-and they're for him. Urged down a disconnected path, the closer he gets, the less Q sees of the girl he thought he knew.. Tags: friendship, high school, teenager, classmate, based on young adult novel"} +{"id": "26710", "title": "My Baby's Daddy", "year": 2004, "duration_min": 86, "rating": 4.3, "genres": "Comedy", "genres_pipe": "|Comedy|", "keywords": "birth, expectant mother, fatherhood, baby born, woman director", "tags_pipe": "|birth|expectant mother|fatherhood|baby born|woman director|", "overview": "A trio of young men are forced to grow up quick when their girlfriends all become pregnant around the same time.", "text_for_embedding": "My Baby's Daddy (2004). Genres: Comedy. A trio of young men are forced to grow up quick when their girlfriends all become pregnant around the same time.. Tags: birth, expectant mother, fatherhood, baby born, woman director"} +{"id": "129670", "title": "Nebraska", "year": 2013, "duration_min": 115, "rating": 7.4, "genres": "Drama, Adventure", "genres_pipe": "|Drama|Adventure|", "keywords": "montana, small town, dementia, aging, road trip, f word, pickup truck, lincoln nebraska, nebraska, sweepstakes, confronting the past", "tags_pipe": "|montana|small town|dementia|aging|road trip|f word|pickup truck|lincoln nebraska|nebraska|sweepstakes|confronting the past|", "overview": "An aging, booze-addled father takes a trip from Montana to Nebraska with his estranged son in order to claim what he believes to be a million-dollar sweepstakes prize.", "text_for_embedding": "Nebraska (2013). Genres: Drama, Adventure. An aging, booze-addled father takes a trip from Montana to Nebraska with his estranged son in order to claim what he believes to be a million-dollar sweepstakes prize.. Tags: montana, small town, dementia, aging, road trip, f word, pickup truck, lincoln nebraska, nebraska, sweepstakes, confronting the past"} +{"id": "9059", "title": "Tales from the Crypt: Demon Knight", "year": 1995, "duration_min": 92, "rating": 6.7, "genres": "Horror, Comedy, Thriller", "genres_pipe": "|Horror|Comedy|Thriller|", "keywords": "prostitute, key, jesus christ, chosen one, god, good vs evil, blood, demon, crypt keeper", "tags_pipe": "|prostitute|key|jesus christ|chosen one|god|good vs evil|blood|demon|crypt keeper|", "overview": "A man on the run is hunted by a demon known as the Collector.", "text_for_embedding": "Tales from the Crypt: Demon Knight (1995). Genres: Horror, Comedy, Thriller. A man on the run is hunted by a demon known as the Collector.. Tags: prostitute, key, jesus christ, chosen one, god, good vs evil, blood, demon, crypt keeper"} +{"id": "34549", "title": "Max Keeble's Big Move", "year": 2001, "duration_min": 86, "rating": 5.4, "genres": "Comedy, Family, Fantasy, Science Fiction", "genres_pipe": "|Comedy|Family|Fantasy|Science Fiction|", "keywords": "", "tags_pipe": "", "overview": "Max Keeble, the victim of his 7th grade class, plots revenge when he learns he's moving; it backfires when he doesn't move after all.", "text_for_embedding": "Max Keeble's Big Move (2001). Genres: Comedy, Family, Fantasy, Science Fiction. Max Keeble, the victim of his 7th grade class, plots revenge when he learns he's moving; it backfires when he doesn't move after all.. Tags: "} +{"id": "57157", "title": "Young Adult", "year": 2011, "duration_min": 94, "rating": 5.6, "genres": "Comedy, Drama", "genres_pipe": "|Comedy|Drama|", "keywords": "jealousy, dark comedy, writer, divorce, alcoholic, arrested development", "tags_pipe": "|jealousy|dark comedy|writer|divorce|alcoholic|arrested development|", "overview": "A divorced writer from the Midwest returns to her hometown to reconnect with an old flame, who's now married with a family.", "text_for_embedding": "Young Adult (2011). Genres: Comedy, Drama. A divorced writer from the Midwest returns to her hometown to reconnect with an old flame, who's now married with a family.. Tags: jealousy, dark comedy, writer, divorce, alcoholic, arrested development"} +{"id": "1948", "title": "Crank", "year": 2006, "duration_min": 88, "rating": 6.6, "genres": "Action, Thriller, Crime", "genres_pipe": "|Action|Thriller|Crime|", "keywords": "poison, helicopter, assassin, nudity, hitman, adrenalin, fistfight, swimming pool, revenge, shootout, motorcycle, drug, cell phone, car chase, though guy", "tags_pipe": "|poison|helicopter|assassin|nudity|hitman|adrenalin|fistfight|swimming pool|revenge|shootout|motorcycle|drug|cell phone|car chase|though guy|", "overview": "Professional assassin Chev Chelios learns his rival has injected him with a poison that will kill him if his heart rate drops.", "text_for_embedding": "Crank (2006). Genres: Action, Thriller, Crime. Professional assassin Chev Chelios learns his rival has injected him with a poison that will kill him if his heart rate drops.. Tags: poison, helicopter, assassin, nudity, hitman, adrenalin, fistfight, swimming pool, revenge, shootout, motorcycle, drug, cell phone, car chase, though guy"} +{"id": "28353", "title": "Def Jam's How to Be a Player", "year": 1997, "duration_min": 93, "rating": 5.3, "genres": "Comedy, Romance", "genres_pipe": "|Comedy|Romance|", "keywords": "sex, party, friends, player", "tags_pipe": "|sex|party|friends|player|", "overview": "Dray is a young playboy whose only objective in life seems to be to have sex with as many girls as he can without getting caught by his girlfriend Lisa. Dray's sister Jenny and her friend Katrina plan to show him that the way he lives is wrong and organize a party in Malibu, inviting all of his girlfriends.", "text_for_embedding": "Def Jam's How to Be a Player (1997). Genres: Comedy, Romance. Dray is a young playboy whose only objective in life seems to be to have sex with as many girls as he can without getting caught by his girlfriend Lisa. Dray's sister Jenny and her friend Katrina plan to show him that the way he lives is wrong and organize a party in Malibu, inviting all of his girlfriends.. Tags: sex, party, friends, player"} +{"id": "46889", "title": "Living Out Loud", "year": 1998, "duration_min": 100, "rating": 5.3, "genres": "Comedy, Drama, Romance", "genres_pipe": "|Comedy|Drama|Romance|", "keywords": "female protagonist, relationship, divorce, brooklyn bridge", "tags_pipe": "|female protagonist|relationship|divorce|brooklyn bridge|", "overview": "Dramatic comedy about two unlikely people who find each other while looking for love. Judith Nelson (Holly Hunter) is suddenly single after discovering her husband of fifteen years, a successful doctor (Martin Donovan), has been having an affair with a younger woman. Judith stews, plans, plots and fantasizes, but she can't decide what to do with her life until she goes out to a night club to see singer Liz Bailey (Queen Latifah), who is full of advice on life and love. While out on the town, Judith is suddenly kissed by a total stranger, which opens her eyes to new possibilities ... which is when she notices Pat (Danny De Vito), the elevator operator in her building.", "text_for_embedding": "Living Out Loud (1998). Genres: Comedy, Drama, Romance. Dramatic comedy about two unlikely people who find each other while looking for love. Judith Nelson (Holly Hunter) is suddenly single after discovering her husband of fifteen years, a successful doctor (Martin Donovan), has been having an affair with a younger woman. Judith stews, plans, plots and fantasizes, but she can't decide what to do with her life until she goes out to a night club to see singer Liz Bailey (Queen Latifah), who is full of advice on life and love. While out on the town, Judith is suddenly kissed by a total stranger, which opens her eyes to new possibilities ... which is when she notices Pat (Danny De Vito), the elevator operator in her building.. Tags: female protagonist, relationship, divorce, brooklyn bridge"} +{"id": "38093", "title": "Just Wright", "year": 2010, "duration_min": 100, "rating": 6.1, "genres": "Comedy, Drama, Romance", "genres_pipe": "|Comedy|Drama|Romance|", "keywords": "woman director", "tags_pipe": "|woman director|", "overview": "A physical therapist falls for the basketball player she is helping recover from a career-threatening injury.", "text_for_embedding": "Just Wright (2010). Genres: Comedy, Drama, Romance. A physical therapist falls for the basketball player she is helping recover from a career-threatening injury.. Tags: woman director"} +{"id": "14976", "title": "Rachel Getting Married", "year": 2008, "duration_min": 113, "rating": 6.1, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "sister, independent film, maid of honor", "tags_pipe": "|sister|independent film|maid of honor|", "overview": "A young woman who has been in and out from rehab for the past 10 years returns home for the weekend for her sister's wedding.", "text_for_embedding": "Rachel Getting Married (2008). Genres: Drama. A young woman who has been in and out from rehab for the past 10 years returns home for the weekend for her sister's wedding.. Tags: sister, independent film, maid of honor"} +{"id": "11027", "title": "The Postman Always Rings Twice", "year": 1981, "duration_min": 122, "rating": 6.4, "genres": "Romance, Crime, Drama", "genres_pipe": "|Romance|Crime|Drama|", "keywords": "sex, adultery, confession, based on novel, obsession, nudity, remake, murder, suspense, conspiracy, neo-noir", "tags_pipe": "|sex|adultery|confession|based on novel|obsession|nudity|remake|murder|suspense|conspiracy|neo-noir|", "overview": "This remake of the 1946 movie of the same name accounts an affair between a seedy drifter and a seductive wife of a roadside cafe owner. This begins a chain of events that culminates in murder. Based on a novel by James M. Cain.", "text_for_embedding": "The Postman Always Rings Twice (1981). Genres: Romance, Crime, Drama. This remake of the 1946 movie of the same name accounts an affair between a seedy drifter and a seductive wife of a roadside cafe owner. This begins a chain of events that culminates in murder. Based on a novel by James M. Cain.. Tags: sex, adultery, confession, based on novel, obsession, nudity, remake, murder, suspense, conspiracy, neo-noir"} +{"id": "3635", "title": "Girl with a Pearl Earring", "year": 2003, "duration_min": 101, "rating": 6.4, "genres": "Drama, Romance", "genres_pipe": "|Drama|Romance|", "keywords": "painter, biography, painting, maid", "tags_pipe": "|painter|biography|painting|maid|", "overview": "This film, adapted from a work of fiction by author Tracy Chevalier, tells a story about the events surrounding the creation of the painting \"Girl With A Pearl Earring\" by 17th century Dutch master Johannes Vermeer. A young peasant maid working in the house of painter Johannes Vermeer becomes his talented assistant and the model for one of his most famous works.", "text_for_embedding": "Girl with a Pearl Earring (2003). Genres: Drama, Romance. This film, adapted from a work of fiction by author Tracy Chevalier, tells a story about the events surrounding the creation of the painting \"Girl With A Pearl Earring\" by 17th century Dutch master Johannes Vermeer. A young peasant maid working in the house of painter Johannes Vermeer becomes his talented assistant and the model for one of his most famous works.. Tags: painter, biography, painting, maid"} +{"id": "387", "title": "Das Boot", "year": 1981, "duration_min": 149, "rating": 7.9, "genres": "Action, Drama, History, War, Adventure", "genres_pipe": "|Action|Drama|History|War|Adventure|", "keywords": "terror, submarine, based on novel, atlantic ocean, gibraltar, world war ii, duty, war correspondent, torpedo, drinking, sailor, convoy, u boat, destroyer, depth charge", "tags_pipe": "|terror|submarine|based on novel|atlantic ocean|gibraltar|world war ii|duty|war correspondent|torpedo|drinking|sailor|convoy|u boat|destroyer|depth charge|", "overview": "A German submarine hunts allied ships during the Second World War, but it soon becomes the hunted. The crew tries to survive below the surface, while stretching both the boat and themselves to their limits.", "text_for_embedding": "Das Boot (1981). Genres: Action, Drama, History, War, Adventure. A German submarine hunts allied ships during the Second World War, but it soon becomes the hunted. The crew tries to survive below the surface, while stretching both the boat and themselves to their limits.. Tags: terror, submarine, based on novel, atlantic ocean, gibraltar, world war ii, duty, war correspondent, torpedo, drinking, sailor, convoy, u boat, destroyer, depth charge"} +{"id": "6020", "title": "Sorority Boys", "year": 2002, "duration_min": 93, "rating": 4.6, "genres": "Comedy", "genres_pipe": "|Comedy|", "keywords": "sorority, cross dressing, university, t shirt, sorority girl, drag, yearbook, roofie, sorority house", "tags_pipe": "|sorority|cross dressing|university|t shirt|sorority girl|drag|yearbook|roofie|sorority house|", "overview": "Three friends who head the Social Committee in a frat house, called KOK (Kappa Omicron Kappa), are charged with stealing money their fraternity has been saving for a cocktail cruise at the end of the semester, the one that guarantees them a spot at a very high paying company.", "text_for_embedding": "Sorority Boys (2002). Genres: Comedy. Three friends who head the Social Committee in a frat house, called KOK (Kappa Omicron Kappa), are charged with stealing money their fraternity has been saving for a cocktail cruise at the end of the semester, the one that guarantees them a spot at a very high paying company.. Tags: sorority, cross dressing, university, t shirt, sorority girl, drag, yearbook, roofie, sorority house"} +{"id": "122906", "title": "About Time", "year": 2013, "duration_min": 123, "rating": 7.8, "genres": "Comedy, Drama, Science Fiction", "genres_pipe": "|Comedy|Drama|Science Fiction|", "keywords": "london england, father son relationship, time travel", "tags_pipe": "|london england|father son relationship|time travel|", "overview": "The night after another unsatisfactory New Year party, Tim's father tells his son that the men in his family have always had the ability to travel through time. Tim can't change history, but he can change what happens and has happened in his own life – so he decides to make his world a better place... by getting a girlfriend. Sadly, that turns out not to be as easy as he thinks.", "text_for_embedding": "About Time (2013). Genres: Comedy, Drama, Science Fiction. The night after another unsatisfactory New Year party, Tim's father tells his son that the men in his family have always had the ability to travel through time. Tim can't change history, but he can change what happens and has happened in his own life – so he decides to make his world a better place... by getting a girlfriend. Sadly, that turns out not to be as easy as he thinks.. Tags: london england, father son relationship, time travel"} +{"id": "9550", "title": "House of Flying Daggers", "year": 2004, "duration_min": 119, "rating": 7.1, "genres": "Adventure, Drama, Action, Romance", "genres_pipe": "|Adventure|Drama|Action|Romance|", "keywords": "martial arts, swordplay, government, rebellion, dagger", "tags_pipe": "|martial arts|swordplay|government|rebellion|dagger|", "overview": "In 9th century China, a corrupt government wages war against a rebel army called the Flying Daggers. A romantic warrior breaks a beautiful rebel out of prison to help her rejoin her fellows, but things are not what they seem.", "text_for_embedding": "House of Flying Daggers (2004). Genres: Adventure, Drama, Action, Romance. In 9th century China, a corrupt government wages war against a rebel army called the Flying Daggers. A romantic warrior breaks a beautiful rebel out of prison to help her rejoin her fellows, but things are not what they seem.. Tags: martial arts, swordplay, government, rebellion, dagger"} +{"id": "60599", "title": "Arbitrage", "year": 2012, "duration_min": 100, "rating": 6.1, "genres": "Drama, Thriller", "genres_pipe": "|Drama|Thriller|", "keywords": "cover-up, hedge fund", "tags_pipe": "|cover-up|hedge fund|", "overview": "A troubled hedge fund magnate, desperate to complete the sale of his trading empire, makes an error that forces him to turn to an unlikely person for help.", "text_for_embedding": "Arbitrage (2012). Genres: Drama, Thriller. A troubled hedge fund magnate, desperate to complete the sale of his trading empire, makes an error that forces him to turn to an unlikely person for help.. Tags: cover-up, hedge fund"} +{"id": "227719", "title": "Project Almanac", "year": 2015, "duration_min": 106, "rating": 6.4, "genres": "Science Fiction, Thriller", "genres_pipe": "|Science Fiction|Thriller|", "keywords": "time travel, time machine, teenager, found footage", "tags_pipe": "|time travel|time machine|teenager|found footage|", "overview": "A group of teens discover secret plans of a time machine, and construct one. However, things start to get out of control.", "text_for_embedding": "Project Almanac (2015). Genres: Science Fiction, Thriller. A group of teens discover secret plans of a time machine, and construct one. However, things start to get out of control.. Tags: time travel, time machine, teenager, found footage"} +{"id": "14299", "title": "Cadillac Records", "year": 2008, "duration_min": 109, "rating": 6.9, "genres": "Drama, History, Music", "genres_pipe": "|Drama|History|Music|", "keywords": "woman director", "tags_pipe": "|woman director|", "overview": "The story of sex, violence, race and rock and roll in 1950s Chicago, and the exciting but turbulent lives of some of America's musical legends, including Muddy Waters, Leonard Chess, Little Walter, Howlin' Wolf, Etta James and Chuck Berry.", "text_for_embedding": "Cadillac Records (2008). Genres: Drama, History, Music. The story of sex, violence, race and rock and roll in 1950s Chicago, and the exciting but turbulent lives of some of America's musical legends, including Muddy Waters, Leonard Chess, Little Walter, Howlin' Wolf, Etta James and Chuck Berry.. Tags: woman director"} +{"id": "19419", "title": "Screwed", "year": 2000, "duration_min": 81, "rating": 4.9, "genres": "Action, Comedy", "genres_pipe": "|Action|Comedy|", "keywords": "", "tags_pipe": "", "overview": "A chauffeur kidnaps his rich boss's dog to hold it for ransom, but when she accidentally gets the dog back, she thinks that it's the chauffeur who's been kidnapped.", "text_for_embedding": "Screwed (2000). Genres: Action, Comedy. A chauffeur kidnaps his rich boss's dog to hold it for ransom, but when she accidentally gets the dog back, she thinks that it's the chauffeur who's been kidnapped.. Tags: "} +{"id": "12088", "title": "Fortress", "year": 1992, "duration_min": 95, "rating": 5.7, "genres": "Action, Thriller, Science Fiction", "genres_pipe": "|Action|Thriller|Science Fiction|", "keywords": "prison, cyborg, married couple, future, dystopia, escape, population control", "tags_pipe": "|prison|cyborg|married couple|future|dystopia|escape|population control|", "overview": "A futuristic prison movie. Protagonist and wife are nabbed at a future US emigration point with an illegal baby during population control. The resulting prison experience is the subject of the movie. The prison is a futuristic one run by a private corporation bent on mind control in various ways", "text_for_embedding": "Fortress (1992). Genres: Action, Thriller, Science Fiction. A futuristic prison movie. Protagonist and wife are nabbed at a future US emigration point with an illegal baby during population control. The resulting prison experience is the subject of the movie. The prison is a futuristic one run by a private corporation bent on mind control in various ways. Tags: prison, cyborg, married couple, future, dystopia, escape, population control"} +{"id": "14799", "title": "For Your Consideration", "year": 2006, "duration_min": 86, "rating": 5.9, "genres": "Comedy, Drama", "genres_pipe": "|Comedy|Drama|", "keywords": "", "tags_pipe": "", "overview": "Three actors learn that their respective performances in the film \"Home for Purim,\" a drama set in the mid-1940s American South, are generating award-season buzz.", "text_for_embedding": "For Your Consideration (2006). Genres: Comedy, Drama. Three actors learn that their respective performances in the film \"Home for Purim,\" a drama set in the mid-1940s American South, are generating award-season buzz.. Tags: "} +{"id": "9466", "title": "Celebrity", "year": 1998, "duration_min": 113, "rating": 6.0, "genres": "Drama, Comedy", "genres_pipe": "|Drama|Comedy|", "keywords": "exzentrik, independent film, reporter, ex-wife, spectacle", "tags_pipe": "|exzentrik|independent film|reporter|ex-wife|spectacle|", "overview": "The career and personal life of writer Lee are at a standstill, so he divorces his bashful wife, Robin, and dives into a new job as an entertainment journalist. His assignments take him to the swankiest corners of Manhattan, but as he jumps from one lavish party to another and engages in numerous empty romances, he starts to doubt the worth of his work. Meanwhile, top TV producer Tony falls for Robin and introduces her to the world of celebrity.", "text_for_embedding": "Celebrity (1998). Genres: Drama, Comedy. The career and personal life of writer Lee are at a standstill, so he divorces his bashful wife, Robin, and dives into a new job as an entertainment journalist. His assignments take him to the swankiest corners of Manhattan, but as he jumps from one lavish party to another and engages in numerous empty romances, he starts to doubt the worth of his work. Meanwhile, top TV producer Tony falls for Robin and introduces her to the world of celebrity.. Tags: exzentrik, independent film, reporter, ex-wife, spectacle"} +{"id": "7510", "title": "Running with Scissors", "year": 2006, "duration_min": 116, "rating": 5.8, "genres": "Drama, Comedy", "genres_pipe": "|Drama|Comedy|", "keywords": "gay, sister sister relationship, wife husband relationship, 1970s, becoming an adult, adoption, therapist, marriage crisis", "tags_pipe": "|gay|sister sister relationship|wife husband relationship|1970s|becoming an adult|adoption|therapist|marriage crisis|", "overview": "Young Augusten Burroughs absorbs experiences that could make for a shocking memoir: the son of an alcoholic father and an unstable mother, he's handed off to his mother's therapist, Dr. Finch, and spends his adolescent years as a member of Finch's bizarre extended family.", "text_for_embedding": "Running with Scissors (2006). Genres: Drama, Comedy. Young Augusten Burroughs absorbs experiences that could make for a shocking memoir: the son of an alcoholic father and an unstable mother, he's handed off to his mother's therapist, Dr. Finch, and spends his adolescent years as a member of Finch's bizarre extended family.. Tags: gay, sister sister relationship, wife husband relationship, 1970s, becoming an adult, adoption, therapist, marriage crisis"} +{"id": "31246", "title": "From Justin to Kelly", "year": 2003, "duration_min": 90, "rating": 3.0, "genres": "Comedy, Romance", "genres_pipe": "|Comedy|Romance|", "keywords": "musical", "tags_pipe": "|musical|", "overview": "A lonely, sexually repressed man. A depressed woman. A summer camp. On this fateful night, they will meet... and their hearts will become one.", "text_for_embedding": "From Justin to Kelly (2003). Genres: Comedy, Romance. A lonely, sexually repressed man. A depressed woman. A summer camp. On this fateful night, they will meet... and their hearts will become one.. Tags: musical"} +{"id": "61752", "title": "Girl 6", "year": 1996, "duration_min": 108, "rating": 5.7, "genres": "Comedy", "genres_pipe": "|Comedy|", "keywords": "independent film, neighbor, masturbation, phone sex, actress", "tags_pipe": "|independent film|neighbor|masturbation|phone sex|actress|", "overview": "Girl 6 is a 1996 American film by director Spike Lee about a phone sex operator. Theresa Randle played the title character, and playwright Suzan-Lori Parks wrote the screenplay. The soundtrack is composed entirely of songs written by Prince. The film was screened in the Un Certain Regard section at the 1996 Cannes Film Festival. Directors Quentin Tarantino and Ron Silver make cameo appearances as film directors at a pair of interesting auditions.", "text_for_embedding": "Girl 6 (1996). Genres: Comedy. Girl 6 is a 1996 American film by director Spike Lee about a phone sex operator. Theresa Randle played the title character, and playwright Suzan-Lori Parks wrote the screenplay. The soundtrack is composed entirely of songs written by Prince. The film was screened in the Un Certain Regard section at the 1996 Cannes Film Festival. Directors Quentin Tarantino and Ron Silver make cameo appearances as film directors at a pair of interesting auditions.. Tags: independent film, neighbor, masturbation, phone sex, actress"} +{"id": "10944", "title": "In the Cut", "year": 2003, "duration_min": 119, "rating": 4.6, "genres": "Mystery, Thriller", "genres_pipe": "|Mystery|Thriller|", "keywords": "eroticism, suspense, woman director", "tags_pipe": "|eroticism|suspense|woman director|", "overview": "Following the gruesome murder of a young woman in her neighborhood, a self-determined woman living in New York City--as if to test the limits of her own safety--propels herself into an impossibly risky sexual liaison. Soon she grows increasingly wary about the motives of every man with whom she has contact--and about her own.", "text_for_embedding": "In the Cut (2003). Genres: Mystery, Thriller. Following the gruesome murder of a young woman in her neighborhood, a self-determined woman living in New York City--as if to test the limits of her own safety--propels herself into an impossibly risky sexual liaison. Soon she grows increasingly wary about the motives of every man with whom she has contact--and about her own.. Tags: eroticism, suspense, woman director"} +{"id": "10362", "title": "Two Lovers", "year": 2008, "duration_min": 110, "rating": 6.6, "genres": "Drama, Romance", "genres_pipe": "|Drama|Romance|", "keywords": "love of one's life, neighbor", "tags_pipe": "|love of one's life|neighbor|", "overview": "A depressed man moves back in with his parents following a recent heartbreak.", "text_for_embedding": "Two Lovers (2008). Genres: Drama, Romance. A depressed man moves back in with his parents following a recent heartbreak.. Tags: love of one's life, neighbor"} +{"id": "14778", "title": "Last Orders", "year": 2001, "duration_min": 109, "rating": 6.0, "genres": "Comedy, Drama", "genres_pipe": "|Comedy|Drama|", "keywords": "based on novel, war veteran, male friendship, death of a friend, friendship, friends, grief, independent film, last will and testament, memory, death, mother son relationship, ashes, flashback, life", "tags_pipe": "|based on novel|war veteran|male friendship|death of a friend|friendship|friends|grief|independent film|last will and testament|memory|death|mother son relationship|ashes|flashback|life|", "overview": "Jack Dodd was a London butcher who enjoyed a pint with his mates for over 50 years. When he died, he died as he lived, with a smile on his face watching a horse race on which he had bet, with borrowed money. But before he died he had a final request, 'Last Orders', that his ashes be scattered in the sea at Margate. The movie follows his mates, Ray, Lenny and Vic and his foster son Vince as they journey to the sea with the ashes. Along the way, the threads of their lives, their loves and their disappointments are woven together in their memories of Jack and his wife Amy", "text_for_embedding": "Last Orders (2001). Genres: Comedy, Drama. Jack Dodd was a London butcher who enjoyed a pint with his mates for over 50 years. When he died, he died as he lived, with a smile on his face watching a horse race on which he had bet, with borrowed money. But before he died he had a final request, 'Last Orders', that his ashes be scattered in the sea at Margate. The movie follows his mates, Ray, Lenny and Vic and his foster son Vince as they journey to the sea with the ashes. Along the way, the threads of their lives, their loves and their disappointments are woven together in their memories of Jack and his wife Amy. Tags: based on novel, war veteran, male friendship, death of a friend, friendship, friends, grief, independent film, last will and testament, memory, death, mother son relationship, ashes, flashback, life"} +{"id": "1255", "title": "The Host", "year": 2006, "duration_min": 119, "rating": 6.7, "genres": "Horror, Drama, Science Fiction", "genres_pipe": "|Horror|Drama|Science Fiction|", "keywords": "river, mobile phone, bravery, archer, daughter, sewerage, pollution, formaldehyde, snack bar, family", "tags_pipe": "|river|mobile phone|bravery|archer|daughter|sewerage|pollution|formaldehyde|snack bar|family|", "overview": "Gang-du is a dim-witted man working at his father's tiny snack bar near the Han River. One day, Gang-du's one and only daughter Hyun-seo comes back from school irritated. She is angry at her uncle, Nam-il, who visited her school as her guardian shamelessly drunk. Ignoring her father's excuses for Nam-il, Hyun-seo is soon engrossed in her aunt Nam-joo's archery tournament on TV. Meanwhile, outside of the snack bar, people are fascinated by an unidentified object hanging onto a bridge. In an instant, the object reveals itself as a terrifying creature turning the riverbank into a gruesome sea of blood¡¦ Amid the chaos, Hyun-seo is helplessly snatched up by the creature right before Gang-du's eyes. These unforeseen circumstances render the government powerless to act. But receiving a call of help from Hyun-seo, the once-ordinary citizen Gang-du and his family are thrust into a battle with the monster to rescue their beloved Hyun-seo.", "text_for_embedding": "The Host (2006). Genres: Horror, Drama, Science Fiction. Gang-du is a dim-witted man working at his father's tiny snack bar near the Han River. One day, Gang-du's one and only daughter Hyun-seo comes back from school irritated. She is angry at her uncle, Nam-il, who visited her school as her guardian shamelessly drunk. Ignoring her father's excuses for Nam-il, Hyun-seo is soon engrossed in her aunt Nam-joo's archery tournament on TV. Meanwhile, outside of the snack bar, people are fascinated by an unidentified object hanging onto a bridge. In an instant, the object reveals itself as a terrifying creature turning the riverbank into a gruesome sea of blood¡¦ Amid the chaos, Hyun-seo is helplessly snatched up by the creature right before Gang-du's eyes. These unforeseen circumstances render the government powerless to act. But receiving a call of help from Hyun-seo, the once-ordinary citizen Gang-du and his family are thrust into a battle with the monster to rescue their beloved Hyun-seo.. Tags: river, mobile phone, bravery, archer, daughter, sewerage, pollution, formaldehyde, snack bar, family"} +{"id": "45226", "title": "The Pursuit of D.B. Cooper", "year": 1981, "duration_min": 100, "rating": 6.8, "genres": "Adventure, Crime, Thriller", "genres_pipe": "|Adventure|Crime|Thriller|", "keywords": "", "tags_pipe": "", "overview": "A speculation on the fate of the famous hijacker who parachuted with his ransom and disappeared in the mountains. Has Cooper succeeded in following a meticulous plan to disappear into anonymity despite the best efforts of a dogged cop?", "text_for_embedding": "The Pursuit of D.B. Cooper (1981). Genres: Adventure, Crime, Thriller. A speculation on the fate of the famous hijacker who parachuted with his ransom and disappeared in the mountains. Has Cooper succeeded in following a meticulous plan to disappear into anonymity despite the best efforts of a dogged cop?. Tags: "} +{"id": "10212", "title": "Ravenous", "year": 1999, "duration_min": 100, "rating": 6.9, "genres": "Comedy, Horror, Thriller, Western", "genres_pipe": "|Comedy|Horror|Thriller|Western|", "keywords": "winter, cliff, cooking, cave, nudity, chase, fort, army, murder, survival, snow, camp, soldier, violence, cannibal", "tags_pipe": "|winter|cliff|cooking|cave|nudity|chase|fort|army|murder|survival|snow|camp|soldier|violence|cannibal|", "overview": "Upon receiving reports of missing persons at Fort Spencer, a remote Army outpost on the Western frontier, Capt. John Boyd investigates. After arriving at his new post, Boyd and his regiment aid a wounded frontiersman who recounts a horrifying tale of a wagon train murdered by its supposed guide -- a vicious U.S. Army colonel gone rogue. Fearing the worst, the regiment heads out into the wilderness to verify the gruesome claims", "text_for_embedding": "Ravenous (1999). Genres: Comedy, Horror, Thriller, Western. Upon receiving reports of missing persons at Fort Spencer, a remote Army outpost on the Western frontier, Capt. John Boyd investigates. After arriving at his new post, Boyd and his regiment aid a wounded frontiersman who recounts a horrifying tale of a wagon train murdered by its supposed guide -- a vicious U.S. Army colonel gone rogue. Fearing the worst, the regiment heads out into the wilderness to verify the gruesome claims. Tags: winter, cliff, cooking, cave, nudity, chase, fort, army, murder, survival, snow, camp, soldier, violence, cannibal"} +{"id": "8669", "title": "Charlie Bartlett", "year": 2008, "duration_min": 97, "rating": 6.5, "genres": "Comedy, Drama", "genres_pipe": "|Comedy|Drama|", "keywords": "depression, suicide attempt, medicine, new love, drug addiction, private school, girlfriend, advice, cleverness, high school, toilet, school performance, drama, independent film, teenage crush", "tags_pipe": "|depression|suicide attempt|medicine|new love|drug addiction|private school|girlfriend|advice|cleverness|high school|toilet|school performance|drama|independent film|teenage crush|", "overview": "Awkward teenager Charlie Bartlett (Anton Yelchin) has trouble fitting in at a new high school. Charlie needs some friends fast, and decides that the best way to find them is to appoint himself the resident psychiatrist. He becomes one of the most popular guys in school by doling out advice and, occasionally, medication, to the student body.", "text_for_embedding": "Charlie Bartlett (2008). Genres: Comedy, Drama. Awkward teenager Charlie Bartlett (Anton Yelchin) has trouble fitting in at a new high school. Charlie needs some friends fast, and decides that the best way to find them is to appoint himself the resident psychiatrist. He becomes one of the most popular guys in school by doling out advice and, occasionally, medication, to the student body.. Tags: depression, suicide attempt, medicine, new love, drug addiction, private school, girlfriend, advice, cleverness, high school, toilet, school performance, drama, independent film, teenage crush"} +{"id": "179144", "title": "The Great Beauty", "year": 2013, "duration_min": 142, "rating": 7.3, "genres": "Comedy, Drama", "genres_pipe": "|Comedy|Drama|", "keywords": "alcohol, rome, vatican, based on novel, birthday, nightclub, nudity, artist, beauty, party, love, church, art, drug", "tags_pipe": "|alcohol|rome|vatican|based on novel|birthday|nightclub|nudity|artist|beauty|party|love|church|art|drug|", "overview": "Jep Gambardella has seduced his way through the lavish nightlife of Rome for decades, but after his 65th birthday and a shock from the past, Jep looks past the nightclubs and parties to find a timeless landscape of absurd, exquisite beauty.", "text_for_embedding": "The Great Beauty (2013). Genres: Comedy, Drama. Jep Gambardella has seduced his way through the lavish nightlife of Rome for decades, but after his 65th birthday and a shock from the past, Jep looks past the nightclubs and parties to find a timeless landscape of absurd, exquisite beauty.. Tags: alcohol, rome, vatican, based on novel, birthday, nightclub, nudity, artist, beauty, party, love, church, art, drug"} +{"id": "16857", "title": "The Dangerous Lives of Altar Boys", "year": 2002, "duration_min": 104, "rating": 6.4, "genres": "Comedy, Drama", "genres_pipe": "|Comedy|Drama|", "keywords": "independent film", "tags_pipe": "|independent film|", "overview": "A group of Catholic school friends, after being caught drawing an obscene comic book, plan a heist that will outdo their previous prank and make them local legends.", "text_for_embedding": "The Dangerous Lives of Altar Boys (2002). Genres: Comedy, Drama. A group of Catholic school friends, after being caught drawing an obscene comic book, plan a heist that will outdo their previous prank and make them local legends.. Tags: independent film"} +{"id": "86825", "title": "Stoker", "year": 2013, "duration_min": 99, "rating": 6.5, "genres": "Drama, Horror, Thriller", "genres_pipe": "|Drama|Horror|Thriller|", "keywords": "mystery", "tags_pipe": "|mystery|", "overview": "After India's father dies, her Uncle Charlie, who she never knew existed, comes to live with her and her unstable mother. She comes to suspect this mysterious, charming man has ulterior motives and becomes increasingly infatuated with him.", "text_for_embedding": "Stoker (2013). Genres: Drama, Horror, Thriller. After India's father dies, her Uncle Charlie, who she never knew existed, comes to live with her and her unstable mother. She comes to suspect this mysterious, charming man has ulterior motives and becomes increasingly infatuated with him.. Tags: mystery"} +{"id": "844", "title": "2046", "year": 2004, "duration_min": 129, "rating": 6.9, "genres": "Fantasy, Drama, Science Fiction, Romance", "genres_pipe": "|Fantasy|Drama|Science Fiction|Romance|", "keywords": "free love, hotel, lovesickness, sexuality, kung fu, android, soulmates, based on novel, hotel room, jealousy, love of one's life, restart, singapur, unsociability, secret love", "tags_pipe": "|free love|hotel|lovesickness|sexuality|kung fu|android|soulmates|based on novel|hotel room|jealousy|love of one's life|restart|singapur|unsociability|secret love|", "overview": "2046 is the sequel to Wong Kar-Wais’ successful box-office hit In The Mood For Love. A film about affairs, ending relationships, and a shared love for Kung-Fu novels as the main character, Chow, writes his own novel and reflects back on his favorite love Su.", "text_for_embedding": "2046 (2004). Genres: Fantasy, Drama, Science Fiction, Romance. 2046 is the sequel to Wong Kar-Wais’ successful box-office hit In The Mood For Love. A film about affairs, ending relationships, and a shared love for Kung-Fu novels as the main character, Chow, writes his own novel and reflects back on his favorite love Su.. Tags: free love, hotel, lovesickness, sexuality, kung fu, android, soulmates, based on novel, hotel room, jealousy, love of one's life, restart, singapur, unsociability, secret love"} +{"id": "8060", "title": "Married Life", "year": 2007, "duration_min": 90, "rating": 6.1, "genres": "Crime, Drama, Romance", "genres_pipe": "|Crime|Drama|Romance|", "keywords": "sex, jealousy, lover (female), restaurant, deceived husband, wife, deceived wife, friendship, wedding, witness to murder, childhood friends", "tags_pipe": "|sex|jealousy|lover (female)|restaurant|deceived husband|wife|deceived wife|friendship|wedding|witness to murder|childhood friends|", "overview": "The late 1940s. Richard Langley, a bachelor playboy, narrates a story that starts when his best friend, Harry Allen, invites him to lunch to tell Richard he's in love. Trouble is, Harry's already married to Pat; he worries Pat would be hurt too deeply by a divorce. Then, Harry's new love, Kay, joins them. Richard is smitten, so when he finds out that Pat may be in love with someone else.", "text_for_embedding": "Married Life (2007). Genres: Crime, Drama, Romance. The late 1940s. Richard Langley, a bachelor playboy, narrates a story that starts when his best friend, Harry Allen, invites him to lunch to tell Richard he's in love. Trouble is, Harry's already married to Pat; he worries Pat would be hurt too deeply by a divorce. Then, Harry's new love, Kay, joins them. Richard is smitten, so when he finds out that Pat may be in love with someone else.. Tags: sex, jealousy, lover (female), restaurant, deceived husband, wife, deceived wife, friendship, wedding, witness to murder, childhood friends"} +{"id": "15907", "title": "Duma", "year": 2005, "duration_min": 100, "rating": 6.9, "genres": "Adventure, Drama, Family", "genres_pipe": "|Adventure|Drama|Family|", "keywords": "adolescence, loss of father, lion, south africa, bullying, kids and family, rescue, bully, young boy, cheetah, wild animal", "tags_pipe": "|adolescence|loss of father|lion|south africa|bullying|kids and family|rescue|bully|young boy|cheetah|wild animal|", "overview": "An orphaned cheetah becomes the best friend and pet of a young boy living in South Africa.", "text_for_embedding": "Duma (2005). Genres: Adventure, Drama, Family. An orphaned cheetah becomes the best friend and pet of a young boy living in South Africa.. Tags: adolescence, loss of father, lion, south africa, bullying, kids and family, rescue, bully, young boy, cheetah, wild animal"} +{"id": "38448", "title": "Ondine", "year": 2009, "duration_min": 111, "rating": 6.5, "genres": "Drama, Romance", "genres_pipe": "|Drama|Romance|", "keywords": "alcohol, mermaid, wedding dress, fishing net, selkie", "tags_pipe": "|alcohol|mermaid|wedding dress|fishing net|selkie|", "overview": "An Irish fisherman discovers a woman in his fishing net believing her to be a mermaid.", "text_for_embedding": "Ondine (2009). Genres: Drama, Romance. An Irish fisherman discovers a woman in his fishing net believing her to be a mermaid.. Tags: alcohol, mermaid, wedding dress, fishing net, selkie"} +{"id": "327", "title": "Brother", "year": 2000, "duration_min": 114, "rating": 6.8, "genres": "Crime, Drama, Thriller", "genres_pipe": "|Crime|Drama|Thriller|", "keywords": "brother brother relationship, assassination, culture clash, war on drugs, yakuza, sake, loyalty, drug dealer, femme fatale, los angeles", "tags_pipe": "|brother brother relationship|assassination|culture clash|war on drugs|yakuza|sake|loyalty|drug dealer|femme fatale|los angeles|", "overview": "A Japanese Yakuza gangster’s deadly existence in his homeland gets him exiled to Los Angeles, California, where he is taken in by his little brother and his brother’s gang. This is the first English film by Takeshi Kitano.", "text_for_embedding": "Brother (2000). Genres: Crime, Drama, Thriller. A Japanese Yakuza gangster’s deadly existence in his homeland gets him exiled to Los Angeles, California, where he is taken in by his little brother and his brother’s gang. This is the first English film by Takeshi Kitano.. Tags: brother brother relationship, assassination, culture clash, war on drugs, yakuza, sake, loyalty, drug dealer, femme fatale, los angeles"} +{"id": "9260", "title": "Welcome to Collinwood", "year": 2002, "duration_min": 86, "rating": 6.2, "genres": "Comedy", "genres_pipe": "|Comedy|", "keywords": "safe, remake, heist, inner city", "tags_pipe": "|safe|remake|heist|inner city|", "overview": "Five hapless inner-city low-lifes attempt to burgle a pawnbroker's safe, but end up being plagued by bad luck.", "text_for_embedding": "Welcome to Collinwood (2002). Genres: Comedy. Five hapless inner-city low-lifes attempt to burgle a pawnbroker's safe, but end up being plagued by bad luck.. Tags: safe, remake, heist, inner city"} +{"id": "61337", "title": "Critical Care", "year": 1997, "duration_min": 107, "rating": 6.1, "genres": "Comedy, Drama", "genres_pipe": "|Comedy|Drama|", "keywords": "nun, satire, hospital, half sister", "tags_pipe": "|nun|satire|hospital|half sister|", "overview": "Werner Ernst is a young hospital resident who becomes embroiled in a legal battle between two half-sisters who are fighting over the care of their comatose father. But are they really fighting over their father's care, or over his $10 million estate? Meanwhile, Werner must contend with his nutty supervisor, who insists that he only care for patients with full insurance. Can Werner sidestep the hospital's legal team and do what's best for the patient?", "text_for_embedding": "Critical Care (1997). Genres: Comedy, Drama. Werner Ernst is a young hospital resident who becomes embroiled in a legal battle between two half-sisters who are fighting over the care of their comatose father. But are they really fighting over their father's care, or over his $10 million estate? Meanwhile, Werner must contend with his nutty supervisor, who insists that he only care for patients with full insurance. Can Werner sidestep the hospital's legal team and do what's best for the patient?. Tags: nun, satire, hospital, half sister"} +{"id": "13079", "title": "The Life Before Her Eyes", "year": 2007, "duration_min": 90, "rating": 6.1, "genres": "Thriller, Drama, Mystery", "genres_pipe": "|Thriller|Drama|Mystery|", "keywords": "suspense", "tags_pipe": "|suspense|", "overview": "As the 15th anniversary of a fatal high school shooting approaches, former pupil Diana McFee is haunted by memories of the tragedy. After losing her best friend Maureen in the attack, Diana has been profoundly affected by the incident - her seemingly perfect life shaped by the events of that day.", "text_for_embedding": "The Life Before Her Eyes (2007). Genres: Thriller, Drama, Mystery. As the 15th anniversary of a fatal high school shooting approaches, former pupil Diana McFee is haunted by memories of the tragedy. After losing her best friend Maureen in the attack, Diana has been profoundly affected by the incident - her seemingly perfect life shaped by the events of that day.. Tags: suspense"} +{"id": "89325", "title": "Darling Companion", "year": 2012, "duration_min": 103, "rating": 5.3, "genres": "Drama, Romance", "genres_pipe": "|Drama|Romance|", "keywords": "aftercreditsstinger", "tags_pipe": "|aftercreditsstinger|", "overview": "The story of a woman who loves her dog more than her husband. And then her husband loses the dog.", "text_for_embedding": "Darling Companion (2012). Genres: Drama, Romance. The story of a woman who loves her dog more than her husband. And then her husband loses the dog.. Tags: aftercreditsstinger"} +{"id": "4170", "title": "Trade", "year": 2007, "duration_min": 120, "rating": 6.8, "genres": "Drama, Thriller", "genres_pipe": "|Drama|Thriller|", "keywords": "usa, sex, brother sister relationship, mexico city, border, support, insurance salesman, punter, brother, united states–mexico barrier, sister, human trafficking, rescue, independent film, criminal", "tags_pipe": "|usa|sex|brother sister relationship|mexico city|border|support|insurance salesman|punter|brother|united states–mexico barrier|sister|human trafficking|rescue|independent film|criminal|", "overview": "A Texas cop (Kevin Kline), whose own daughter might have been forced into sexual slavery, joins forces with a Mexican youth (Cesar Ramos) to find the boy's sister, who was abducted and forced into prostitution. Meanwhile, a Ukrainian woman who was promised a better life in America also becomes a victim.", "text_for_embedding": "Trade (2007). Genres: Drama, Thriller. A Texas cop (Kevin Kline), whose own daughter might have been forced into sexual slavery, joins forces with a Mexican youth (Cesar Ramos) to find the boy's sister, who was abducted and forced into prostitution. Meanwhile, a Ukrainian woman who was promised a better life in America also becomes a victim.. Tags: usa, sex, brother sister relationship, mexico city, border, support, insurance salesman, punter, brother, united states–mexico barrier, sister, human trafficking, rescue, independent film, criminal"} +{"id": "41508", "title": "Fateless", "year": 2005, "duration_min": 140, "rating": 6.5, "genres": "War, Drama", "genres_pipe": "|War|Drama|", "keywords": "budapest, hungary, concentration camp, world war ii", "tags_pipe": "|budapest|hungary|concentration camp|world war ii|", "overview": "An Hungarian youth comes of age at Buchenwald during World War II. György Köves is 14, the son of a merchant who's sent to a forced labor camp. After his father's departure, György gets a job at a brickyard; his bus is stopped and its Jewish occupants sent to camps. There, György find camaraderie, suffering, cruelty, illness, and death. He hears advice on preserving one's dignity and self-esteem. He discovers hatred. If he does survive and returns to Budapest, what will he find? What is natural; what is it to be a Jew? Sepia, black and white, and color alternate to shade the mood.", "text_for_embedding": "Fateless (2005). Genres: War, Drama. An Hungarian youth comes of age at Buchenwald during World War II. György Köves is 14, the son of a merchant who's sent to a forced labor camp. After his father's departure, György gets a job at a brickyard; his bus is stopped and its Jewish occupants sent to camps. There, György find camaraderie, suffering, cruelty, illness, and death. He hears advice on preserving one's dignity and self-esteem. He discovers hatred. If he does survive and returns to Budapest, what will he find? What is natural; what is it to be a Jew? Sepia, black and white, and color alternate to shade the mood.. Tags: budapest, hungary, concentration camp, world war ii"} +{"id": "12479", "title": "Breakfast of Champions", "year": 1999, "duration_min": 110, "rating": 5.2, "genres": "Comedy", "genres_pipe": "|Comedy|", "keywords": "wife husband relationship, success, author, extramarital affair", "tags_pipe": "|wife husband relationship|success|author|extramarital affair|", "overview": "A portrait of a fictional town in the mid west that is home to a group of idiosyncratic and slightly neurotic characters. Dwayne Hoover is a wealthy car dealer-ship owner that's on the brink of suicide and is losing touch with reality.", "text_for_embedding": "Breakfast of Champions (1999). Genres: Comedy. A portrait of a fictional town in the mid west that is home to a group of idiosyncratic and slightly neurotic characters. Dwayne Hoover is a wealthy car dealer-ship owner that's on the brink of suicide and is losing touch with reality.. Tags: wife husband relationship, success, author, extramarital affair"} +{"id": "44555", "title": "A Woman, a Gun and a Noodle Shop", "year": 2009, "duration_min": 95, "rating": 4.8, "genres": "Comedy, Drama, Thriller", "genres_pipe": "|Comedy|Drama|Thriller|", "keywords": "", "tags_pipe": "", "overview": "Wang is a gloomy, cunning and avaricious noodle shop owner in a desert town in China. His neglected, sharp-tongued wife is involved in a secret affair with Li, one of Wang’s employees. A timid man, Li reluctantly keeps the gun his lover has bought to kill her husband. But Wang is watching their every move. He bribes patrol officer Zhang to murder the illicit couple. It seems like a perfect plan: the affair will come to a cruel, bloody but satisfying end… or so he thinks. The equally wicked Zhang has an agenda of his own. As the plot twists, more blood will flow, and ever greater violence will erupt…", "text_for_embedding": "A Woman, a Gun and a Noodle Shop (2009). Genres: Comedy, Drama, Thriller. Wang is a gloomy, cunning and avaricious noodle shop owner in a desert town in China. His neglected, sharp-tongued wife is involved in a secret affair with Li, one of Wang’s employees. A timid man, Li reluctantly keeps the gun his lover has bought to kill her husband. But Wang is watching their every move. He bribes patrol officer Zhang to murder the illicit couple. It seems like a perfect plan: the affair will come to a cruel, bloody but satisfying end… or so he thinks. The equally wicked Zhang has an agenda of his own. As the plot twists, more blood will flow, and ever greater violence will erupt…. Tags: "} +{"id": "10133", "title": "Cypher", "year": 2002, "duration_min": 95, "rating": 6.7, "genres": "Thriller, Science Fiction, Mystery", "genres_pipe": "|Thriller|Science Fiction|Mystery|", "keywords": "double life, undercover, lie, wife, company, industry, femme fatale, conspiracy, espionage, memory loss, corporate crime, dystopic future, hidden identity, disorder, dishonesty", "tags_pipe": "|double life|undercover|lie|wife|company|industry|femme fatale|conspiracy|espionage|memory loss|corporate crime|dystopic future|hidden identity|disorder|dishonesty|", "overview": "An unsuspecting, disenchanted man finds himself working as a spy in the dangerous, high-stakes world of corporate espionage. Quickly getting way over-his-head, he teams up with a mysterious femme fatale.", "text_for_embedding": "Cypher (2002). Genres: Thriller, Science Fiction, Mystery. An unsuspecting, disenchanted man finds himself working as a spy in the dangerous, high-stakes world of corporate espionage. Quickly getting way over-his-head, he teams up with a mysterious femme fatale.. Tags: double life, undercover, lie, wife, company, industry, femme fatale, conspiracy, espionage, memory loss, corporate crime, dystopic future, hidden identity, disorder, dishonesty"} +{"id": "21345", "title": "City of Life and Death", "year": 2009, "duration_min": 132, "rating": 7.6, "genres": "Drama, History, War", "genres_pipe": "|Drama|History|War|", "keywords": "war crimes, mass murder, war victim, sino japanese war, massacre, japanese army, duringcreditsstinger, imperial japan", "tags_pipe": "|war crimes|mass murder|war victim|sino japanese war|massacre|japanese army|duringcreditsstinger|imperial japan|", "overview": "City of Life and Death takes place in 1937, during the height of the Second Sino-Japanese War. The Imperial Japanese Army has just captured the then-capital of the Republic of China, Nanjing. What followed was known as the Nanking Massacre, or the Rape of Nanking, a period of several weeks wherein tens of thousands of Chinese soldiers and civilians were killed.", "text_for_embedding": "City of Life and Death (2009). Genres: Drama, History, War. City of Life and Death takes place in 1937, during the height of the Second Sino-Japanese War. The Imperial Japanese Army has just captured the then-capital of the Republic of China, Nanjing. What followed was known as the Nanking Massacre, or the Rape of Nanking, a period of several weeks wherein tens of thousands of Chinese soldiers and civilians were killed.. Tags: war crimes, mass murder, war victim, sino japanese war, massacre, japanese army, duringcreditsstinger, imperial japan"} +{"id": "173931", "title": "Legend of a Rabbit", "year": 2011, "duration_min": 89, "rating": 3.0, "genres": "Animation, Family, Action, Adventure, Comedy", "genres_pipe": "|Animation|Family|Action|Adventure|Comedy|", "keywords": "", "tags_pipe": "", "overview": "In order to keep his promise to an aging kung fu master, Fu the Rabbit must venture out of the comfort of his kitchen and team up with Penny, a kung fu prodigy, on a heroic quest to save their kung fu academy.", "text_for_embedding": "Legend of a Rabbit (2011). Genres: Animation, Family, Action, Adventure, Comedy. In order to keep his promise to an aging kung fu master, Fu the Rabbit must venture out of the comfort of his kitchen and team up with Penny, a kung fu prodigy, on a heroic quest to save their kung fu academy.. Tags: "} +{"id": "61984", "title": "Space Battleship Yamato", "year": 2010, "duration_min": 131, "rating": 6.3, "genres": "Science Fiction", "genres_pipe": "|Science Fiction|", "keywords": "", "tags_pipe": "", "overview": "In 2199, five years after the Gamilons began an invasion of Earth, the planet has been ravaged by the aliens' bombs. The remnants of humanity have fled underground to escape the irradiated surface. One day, former pilot Susumu Kodai discovers a capsule sent from the planet Iscandar that tells of a device that can remove the radiation from the Earth's surface. The Earth Defense Force rebuilds the battleship Yamato with a new type of propulsion system to make the 148,000 light year trip to Iscandar in hopes of saving the Earth. Within one year, the radiation will drive the rest of humanity to extinction.", "text_for_embedding": "Space Battleship Yamato (2010). Genres: Science Fiction. In 2199, five years after the Gamilons began an invasion of Earth, the planet has been ravaged by the aliens' bombs. The remnants of humanity have fled underground to escape the irradiated surface. One day, former pilot Susumu Kodai discovers a capsule sent from the planet Iscandar that tells of a device that can remove the radiation from the Earth's surface. The Earth Defense Force rebuilds the battleship Yamato with a new type of propulsion system to make the 148,000 light year trip to Iscandar in hopes of saving the Earth. Within one year, the radiation will drive the rest of humanity to extinction.. Tags: "} +{"id": "50601", "title": "5 Days of War", "year": 2011, "duration_min": 113, "rating": 5.8, "genres": "War, Drama", "genres_pipe": "|War|Drama|", "keywords": "journalist, interpreter, georgia europe, war zone", "tags_pipe": "|journalist|interpreter|georgia europe|war zone|", "overview": "An American journalist and his cameraman are caught in the combat zone during the first Russian airstrikes against Georgia. Rescuing Tatia, a young Georgian schoolteacher separated from her family during the attack, the two reporters agree to help reunite her with her family in exchange for serving as their interpreter. As the three attempt to escape to safety, they witness--and document--the devastation from the full-scale crossfire and cold-blooded murder of innocent civilians.", "text_for_embedding": "5 Days of War (2011). Genres: War, Drama. An American journalist and his cameraman are caught in the combat zone during the first Russian airstrikes against Georgia. Rescuing Tatia, a young Georgian schoolteacher separated from her family during the attack, the two reporters agree to help reunite her with her family in exchange for serving as their interpreter. As the three attempt to escape to safety, they witness--and document--the devastation from the full-scale crossfire and cold-blooded murder of innocent civilians.. Tags: journalist, interpreter, georgia europe, war zone"} +{"id": "26466", "title": "Triangle", "year": 2009, "duration_min": 99, "rating": 6.9, "genres": "Horror", "genres_pipe": "|Horror|", "keywords": "ocean, florida, autism, key, yacht, ax, ship, ghost ship, murder, time loop, masked killer, blood, storm, throat slitting, single mother", "tags_pipe": "|ocean|florida|autism|key|yacht|ax|ship|ghost ship|murder|time loop|masked killer|blood|storm|throat slitting|single mother|", "overview": "The story revolves around the passengers of a yachting trip in the Atlantic Ocean who, when struck by mysterious weather conditions, jump to another ship only to experience greater havoc on the open seas.", "text_for_embedding": "Triangle (2009). Genres: Horror. The story revolves around the passengers of a yachting trip in the Atlantic Ocean who, when struck by mysterious weather conditions, jump to another ship only to experience greater havoc on the open seas.. Tags: ocean, florida, autism, key, yacht, ax, ship, ghost ship, murder, time loop, masked killer, blood, storm, throat slitting, single mother"} +{"id": "345003", "title": "10 Days in a Madhouse", "year": 2015, "duration_min": 111, "rating": 4.3, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "undercover, insane asylum, reporter", "tags_pipe": "|undercover|insane asylum|reporter|", "overview": "Nellie Bly, a 23 year-old reporter for Joseph Pulitzer, goes undercover in the notorious Blackwell's Island women's insane asylum in order to expose corruption, abuse and murder.", "text_for_embedding": "10 Days in a Madhouse (2015). Genres: Drama. Nellie Bly, a 23 year-old reporter for Joseph Pulitzer, goes undercover in the notorious Blackwell's Island women's insane asylum in order to expose corruption, abuse and murder.. Tags: undercover, insane asylum, reporter"} +{"id": "236751", "title": "Heaven is for Real", "year": 2014, "duration_min": 99, "rating": 6.0, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "based on novel, faith, based on true events", "tags_pipe": "|based on novel|faith|based on true events|", "overview": "Heaven is for Real recounts the true story of a small-town father who must find the courage and conviction to share his son's extraordinary, life-changing experience with the world. Four-year-old Colton shares the details of his amazing journey with childlike innocence and speaks matter-of-factly about things that happened before his birth... things he couldn't possibly know.", "text_for_embedding": "Heaven is for Real (2014). Genres: Drama. Heaven is for Real recounts the true story of a small-town father who must find the courage and conviction to share his son's extraordinary, life-changing experience with the world. Four-year-old Colton shares the details of his amazing journey with childlike innocence and speaks matter-of-factly about things that happened before his birth... things he couldn't possibly know.. Tags: based on novel, faith, based on true events"} +{"id": "107", "title": "Snatch", "year": 2000, "duration_min": 103, "rating": 7.7, "genres": "Thriller, Crime", "genres_pipe": "|Thriller|Crime|", "keywords": "gypsy, bare knuckle boxing, slang, trailer park, pig, sport, receiving of stolen goods, cockney accent, diamond, pikey", "tags_pipe": "|gypsy|bare knuckle boxing|slang|trailer park|pig|sport|receiving of stolen goods|cockney accent|diamond|pikey|", "overview": "The second film from British director Guy Ritchie. Snatch tells an obscure story similar to his first fast-paced crazy character-colliding filled film “Lock, Stock and Two Smoking Barrels.” There are two overlapping stories here – one is the search for a stolen diamond, and the other about a boxing promoter who’s having trouble with a psychotic gangster.", "text_for_embedding": "Snatch (2000). Genres: Thriller, Crime. The second film from British director Guy Ritchie. Snatch tells an obscure story similar to his first fast-paced crazy character-colliding filled film “Lock, Stock and Two Smoking Barrels.” There are two overlapping stories here – one is the search for a stolen diamond, and the other about a boxing promoter who’s having trouble with a psychotic gangster.. Tags: gypsy, bare knuckle boxing, slang, trailer park, pig, sport, receiving of stolen goods, cockney accent, diamond, pikey"} +{"id": "357837", "title": "Dancin' It's On", "year": 2015, "duration_min": 89, "rating": 4.3, "genres": "Drama, Romance", "genres_pipe": "|Drama|Romance|", "keywords": "dancing, competition, hotel, florida, dance teacher", "tags_pipe": "|dancing|competition|hotel|florida|dance teacher|", "overview": "This coming of age Dance Film, in the spirit of Dirty Dancing, Karate Kid, and High School Musical - is about a young girl from Beverly Hills, Jennifer who is visiting her Father's Panama City Beach Hotel during Summer Break, and falls in love with a Young Boy, Ken who works as a Dishwasher. Even though both are from different backgrounds, they share the same passion... DANCE and partner with each other to enter the 2nd Annual Florida State-Wide Dance Contest. While preparing for the contest, Jennifer and Ken must overcome scheming dance partners, a meddling father, and their own doubts for their love to prevail.", "text_for_embedding": "Dancin' It's On (2015). Genres: Drama, Romance. This coming of age Dance Film, in the spirit of Dirty Dancing, Karate Kid, and High School Musical - is about a young girl from Beverly Hills, Jennifer who is visiting her Father's Panama City Beach Hotel during Summer Break, and falls in love with a Young Boy, Ken who works as a Dishwasher. Even though both are from different backgrounds, they share the same passion... DANCE and partner with each other to enter the 2nd Annual Florida State-Wide Dance Contest. While preparing for the contest, Jennifer and Ken must overcome scheming dance partners, a meddling father, and their own doubts for their love to prevail.. Tags: dancing, competition, hotel, florida, dance teacher"} +{"id": "8913", "title": "Pet Sematary", "year": 1989, "duration_min": 103, "rating": 6.4, "genres": "Drama, Horror", "genres_pipe": "|Drama|Horror|", "keywords": "coffin, pet, funeral, head injury, grief, new neighbor, pet cemetery, dead cat, death of patient, loss of pet, dead lover, mother son relationship, hit by truck, ghost, grave robbing", "tags_pipe": "|coffin|pet|funeral|head injury|grief|new neighbor|pet cemetery|dead cat|death of patient|loss of pet|dead lover|mother son relationship|hit by truck|ghost|grave robbing|", "overview": "Dr. Louis Creed's family moves into the country house of their dreams and discover a pet cemetery at the back of their property. The cursed burial ground deep in the woods brings the dead back to life -- with \"minor\" problems. At first, only the family's cat makes the return trip, but an accident forces a heartbroken father to contemplate the unthinkable.", "text_for_embedding": "Pet Sematary (1989). Genres: Drama, Horror. Dr. Louis Creed's family moves into the country house of their dreams and discover a pet cemetery at the back of their property. The cursed burial ground deep in the woods brings the dead back to life -- with \"minor\" problems. At first, only the family's cat makes the return trip, but an accident forces a heartbroken father to contemplate the unthinkable.. Tags: coffin, pet, funeral, head injury, grief, new neighbor, pet cemetery, dead cat, death of patient, loss of pet, dead lover, mother son relationship, hit by truck, ghost, grave robbing"} +{"id": "13889", "title": "Madadayo", "year": 1993, "duration_min": 134, "rating": 7.5, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "", "tags_pipe": "", "overview": "This film tells the story of professor Uehida Hyakken-sama (1889-1971), in Gotemba, around the forties. He was a university professor until an air raid, when he left to become a writer and has to live in a hut. His mood has hardly changed, not by the change nor by time.", "text_for_embedding": "Madadayo (1993). Genres: Drama. This film tells the story of professor Uehida Hyakken-sama (1889-1971), in Gotemba, around the forties. He was a university professor until an air raid, when he left to become a writer and has to live in a hut. His mood has hardly changed, not by the change nor by time.. Tags: "} +{"id": "18530", "title": "The Cry of the Owl", "year": 2009, "duration_min": 101, "rating": 5.5, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "suspense", "tags_pipe": "|suspense|", "overview": "A young woman becomes inexplicably attracted to a man who is stalking her. When her boyfriend goes missing, the stalker is the immediate suspect, until a game of jealousy and betrayal turns deadly.", "text_for_embedding": "The Cry of the Owl (2009). Genres: Drama. A young woman becomes inexplicably attracted to a man who is stalking her. When her boyfriend goes missing, the stalker is the immediate suspect, until a game of jealousy and betrayal turns deadly.. Tags: suspense"} +{"id": "358451", "title": "A Tale of Three Cities", "year": 2015, "duration_min": 130, "rating": 6.3, "genres": "Drama, History, Romance", "genres_pipe": "|Drama|History|Romance|", "keywords": "woman director", "tags_pipe": "|woman director|", "overview": "A former spy in the Chinese Nationalist Party falls for an opium-dealing widow, as China is ravaged by war and revolution.", "text_for_embedding": "A Tale of Three Cities (2015). Genres: Drama, History, Romance. A former spy in the Chinese Nationalist Party falls for an opium-dealing widow, as China is ravaged by war and revolution.. Tags: woman director"} +{"id": "927", "title": "Gremlins", "year": 1984, "duration_min": 106, "rating": 6.9, "genres": "Fantasy, Horror, Comedy", "genres_pipe": "|Fantasy|Horror|Comedy|", "keywords": "holiday, monster, small town, department store, bars and restaurants, human animal relationship, pet, sunlight, chain saw, salesperson, midnight, fur, banking, puppet, skunk", "tags_pipe": "|holiday|monster|small town|department store|bars and restaurants|human animal relationship|pet|sunlight|chain saw|salesperson|midnight|fur|banking|puppet|skunk|", "overview": "When Billy Peltzer is given a strange but adorable pet named Gizmo for Christmas, he inadvertently breaks the three important rules of caring for a Mogwai, and unleashes a horde of mischievous gremlins on a small town.", "text_for_embedding": "Gremlins (1984). Genres: Fantasy, Horror, Comedy. When Billy Peltzer is given a strange but adorable pet named Gizmo for Christmas, he inadvertently breaks the three important rules of caring for a Mogwai, and unleashes a horde of mischievous gremlins on a small town.. Tags: holiday, monster, small town, department store, bars and restaurants, human animal relationship, pet, sunlight, chain saw, salesperson, midnight, fur, banking, puppet, skunk"} +{"id": "11", "title": "Star Wars", "year": 1977, "duration_min": 121, "rating": 8.1, "genres": "Adventure, Action, Science Fiction", "genres_pipe": "|Adventure|Action|Science Fiction|", "keywords": "android, galaxy, hermit, death star, lightsaber, jedi, rescue mission, empire, rebellion, planet, smuggler, the force, space opera, galactic war, stormtrooper", "tags_pipe": "|android|galaxy|hermit|death star|lightsaber|jedi|rescue mission|empire|rebellion|planet|smuggler|the force|space opera|galactic war|stormtrooper|", "overview": "Princess Leia is captured and held hostage by the evil Imperial forces in their effort to take over the galactic Empire. Venturesome Luke Skywalker and dashing captain Han Solo team together with the loveable robot duo R2-D2 and C-3PO to rescue the beautiful princess and restore peace and justice in the Empire.", "text_for_embedding": "Star Wars (1977). Genres: Adventure, Action, Science Fiction. Princess Leia is captured and held hostage by the evil Imperial forces in their effort to take over the galactic Empire. Venturesome Luke Skywalker and dashing captain Han Solo team together with the loveable robot duo R2-D2 and C-3PO to rescue the beautiful princess and restore peace and justice in the Empire.. Tags: android, galaxy, hermit, death star, lightsaber, jedi, rescue mission, empire, rebellion, planet, smuggler, the force, space opera, galactic war, stormtrooper"} +{"id": "291870", "title": "Dirty Grandpa", "year": 2016, "duration_min": 102, "rating": 5.7, "genres": "Comedy", "genres_pipe": "|Comedy|", "keywords": "grandfather grandson relationship, grandfather, road trip, wedding, retired, pervert, army general, sex comedy", "tags_pipe": "|grandfather grandson relationship|grandfather|road trip|wedding|retired|pervert|army general|sex comedy|", "overview": "Jason Kelly is one week away from marrying his boss's uber-controlling daughter, putting him on the fast track for a partnership at the law firm. However, when the straight-laced Jason is tricked into driving his foul-mouthed grandfather, Dick, to Daytona for spring break, his pending nuptials are suddenly in jeopardy. Between riotous frat parties, bar fights, and an epic night of karaoke, Dick is on a quest to live his life to the fullest and bring Jason along for the ride.", "text_for_embedding": "Dirty Grandpa (2016). Genres: Comedy. Jason Kelly is one week away from marrying his boss's uber-controlling daughter, putting him on the fast track for a partnership at the law firm. However, when the straight-laced Jason is tricked into driving his foul-mouthed grandfather, Dick, to Daytona for spring break, his pending nuptials are suddenly in jeopardy. Between riotous frat parties, bar fights, and an epic night of karaoke, Dick is on a quest to live his life to the fullest and bring Jason along for the ride.. Tags: grandfather grandson relationship, grandfather, road trip, wedding, retired, pervert, army general, sex comedy"} +{"id": "907", "title": "Doctor Zhivago", "year": 1965, "duration_min": 197, "rating": 7.4, "genres": "Drama, Romance, War", "genres_pipe": "|Drama|Romance|War|", "keywords": "love triangle, nurse, suicide attempt, loss of family, world war i, russian revolution 1917, forbidden love, step parents, daughter, epic", "tags_pipe": "|love triangle|nurse|suicide attempt|loss of family|world war i|russian revolution 1917|forbidden love|step parents|daughter|epic|", "overview": "Doctor Zhivago is the filmed adapation of the Russian novel by Boris Pasternak from director David Lean that was an international success and today deemed a classic. Omar Sharif and Julie Christie play two protagonists who in fact love each other yet because of their current situation cannot find a way be together.", "text_for_embedding": "Doctor Zhivago (1965). Genres: Drama, Romance, War. Doctor Zhivago is the filmed adapation of the Russian novel by Boris Pasternak from director David Lean that was an international success and today deemed a classic. Omar Sharif and Julie Christie play two protagonists who in fact love each other yet because of their current situation cannot find a way be together.. Tags: love triangle, nurse, suicide attempt, loss of family, world war i, russian revolution 1917, forbidden love, step parents, daughter, epic"} +{"id": "206563", "title": "Trash", "year": 2014, "duration_min": 112, "rating": 7.1, "genres": "Adventure, Crime, Drama, Thriller", "genres_pipe": "|Adventure|Crime|Drama|Thriller|", "keywords": "brazilian, drama, thriller", "tags_pipe": "|brazilian|drama|thriller|", "overview": "Set in Brazil, three kids who make a discovery in a garbage dump soon find themselves running from the cops and trying to right a terrible wrong.", "text_for_embedding": "Trash (2014). Genres: Adventure, Crime, Drama, Thriller. Set in Brazil, three kids who make a discovery in a garbage dump soon find themselves running from the cops and trying to right a terrible wrong.. Tags: brazilian, drama, thriller"} +{"id": "11887", "title": "High School Musical 3: Senior Year", "year": 2008, "duration_min": 116, "rating": 6.2, "genres": "Comedy, Drama, Family, Music, Romance", "genres_pipe": "|Comedy|Drama|Family|Music|Romance|", "keywords": "musical, music, high school, coming of age, teenager, high school student, duringcreditsstinger", "tags_pipe": "|musical|music|high school|coming of age|teenager|high school student|duringcreditsstinger|", "overview": "It's almost graduation day for high school seniors Troy, Gabriella, Sharpay, Chad, Ryan and Taylor ― and the thought of heading off in separate directions after leaving East High has these Wildcats thinking they need to do something they'll remember forever. Together with the rest of the Wildcats, they stage a spring musical reflecting their hopes and fears about the future and their unforgettable experiences growing up together. But with graduation approaching and college plans in question, what will become of the dreams, romances, and friendships of East High's senior Wildcats?", "text_for_embedding": "High School Musical 3: Senior Year (2008). Genres: Comedy, Drama, Family, Music, Romance. It's almost graduation day for high school seniors Troy, Gabriella, Sharpay, Chad, Ryan and Taylor ― and the thought of heading off in separate directions after leaving East High has these Wildcats thinking they need to do something they'll remember forever. Together with the rest of the Wildcats, they stage a spring musical reflecting their hopes and fears about the future and their unforgettable experiences growing up together. But with graduation approaching and college plans in question, what will become of the dreams, romances, and friendships of East High's senior Wildcats?. Tags: musical, music, high school, coming of age, teenager, high school student, duringcreditsstinger"} +{"id": "45317", "title": "The Fighter", "year": 2010, "duration_min": 116, "rating": 7.2, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "sport, irish american, documentary crew, lowell massachusetts, blue collar worker, church bells, documentary filmmaking, boxer shorts, jumping rope, shadow boxing, duringcreditsstinger", "tags_pipe": "|sport|irish american|documentary crew|lowell massachusetts|blue collar worker|church bells|documentary filmmaking|boxer shorts|jumping rope|shadow boxing|duringcreditsstinger|", "overview": "The Fighter, is a drama about boxer \"Irish\" Micky Ward's unlikely road to the world light welterweight title. His Rocky-like rise was shepherded by half-brother Dicky, a boxer-turned-trainer who rebounded in life after nearly being KO'd by drugs and crime.", "text_for_embedding": "The Fighter (2010). Genres: Drama. The Fighter, is a drama about boxer \"Irish\" Micky Ward's unlikely road to the world light welterweight title. His Rocky-like rise was shepherded by half-brother Dicky, a boxer-turned-trainer who rebounded in life after nearly being KO'd by drugs and crime.. Tags: sport, irish american, documentary crew, lowell massachusetts, blue collar worker, church bells, documentary filmmaking, boxer shorts, jumping rope, shadow boxing, duringcreditsstinger"} +{"id": "12094", "title": "Jackass Number Two", "year": 2006, "duration_min": 95, "rating": 6.4, "genres": "Action, Comedy, Documentary", "genres_pipe": "|Action|Comedy|Documentary|", "keywords": "wound, disgust, pain, stunts, stuntman, stupidity, bulle, shocking", "tags_pipe": "|wound|disgust|pain|stunts|stuntman|stupidity|bulle|shocking|", "overview": "Jackass Number Two is a compilation of various stunts, pranks and skits, and essentially has no plot. Chris Pontius, Johnny Knoxville, Steve-O, Bam Margera, and the whole crew return to the screen to raise the stakes higher than ever before.", "text_for_embedding": "Jackass Number Two (2006). Genres: Action, Comedy, Documentary. Jackass Number Two is a compilation of various stunts, pranks and skits, and essentially has no plot. Chris Pontius, Johnny Knoxville, Steve-O, Bam Margera, and the whole crew return to the screen to raise the stakes higher than ever before.. Tags: wound, disgust, pain, stunts, stuntman, stupidity, bulle, shocking"} +{"id": "10377", "title": "My Cousin Vinny", "year": 1992, "duration_min": 120, "rating": 7.3, "genres": "Comedy, Drama", "genres_pipe": "|Comedy|Drama|", "keywords": "prison, southern usa, suspicion, cousin, court, lawyer, wrongful arrest", "tags_pipe": "|prison|southern usa|suspicion|cousin|court|lawyer|wrongful arrest|", "overview": "Two carefree pals traveling through Alabama are mistakenly arrested, and charged with murder. Fortunately, one of them has a cousin who's a lawyer - Vincent Gambini, a former auto mechanic from Brooklyn who just passed his bar exam after his sixth try. When he arrives with his leather-clad girlfriend , to try his first case, it's a real shock - for him and the Deep South!", "text_for_embedding": "My Cousin Vinny (1992). Genres: Comedy, Drama. Two carefree pals traveling through Alabama are mistakenly arrested, and charged with murder. Fortunately, one of them has a cousin who's a lawyer - Vincent Gambini, a former auto mechanic from Brooklyn who just passed his bar exam after his sixth try. When he arrives with his leather-clad girlfriend , to try his first case, it's a real shock - for him and the Deep South!. Tags: prison, southern usa, suspicion, cousin, court, lawyer, wrongful arrest"} +{"id": "249164", "title": "If I Stay", "year": 2014, "duration_min": 106, "rating": 7.3, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "coma, musician, teenage girl, car accident, teenager, out of body experience, teen drama, based on young adult novel", "tags_pipe": "|coma|musician|teenage girl|car accident|teenager|out of body experience|teen drama|based on young adult novel|", "overview": "Based on Gayle Forman's novel of the same name. \"If I Stay\" is the story of the gifted classical musician Mia and her boyfriend, Adam, an up and coming indie-rock star. Torn between two paths in life, her art or her relationship, Mia is forced to make an even starker choice between life and death when she is caught in a fatal car accident with her family one snowy morning in Oregon.", "text_for_embedding": "If I Stay (2014). Genres: Drama. Based on Gayle Forman's novel of the same name. \"If I Stay\" is the story of the gifted classical musician Mia and her boyfriend, Adam, an up and coming indie-rock star. Torn between two paths in life, her art or her relationship, Mia is forced to make an even starker choice between life and death when she is caught in a fatal car accident with her family one snowy morning in Oregon.. Tags: coma, musician, teenage girl, car accident, teenager, out of body experience, teen drama, based on young adult novel"} +{"id": "256092", "title": "Drive Hard", "year": 2014, "duration_min": 96, "rating": 3.9, "genres": "Action, Comedy, Crime", "genres_pipe": "|Action|Comedy|Crime|", "keywords": "", "tags_pipe": "", "overview": "A former race car driver is abducted by a mysterious thief and forced to be the wheel-man for a crime that puts them both in the sights of the cops and the mob.", "text_for_embedding": "Drive Hard (2014). Genres: Action, Comedy, Crime. A former race car driver is abducted by a mysterious thief and forced to be the wheel-man for a crime that puts them both in the sights of the cops and the mob.. Tags: "} +{"id": "9942", "title": "Major League", "year": 1989, "duration_min": 107, "rating": 6.6, "genres": "Comedy", "genres_pipe": "|Comedy|", "keywords": "baseball, sport, sabotage, sombrero, baseball field, hard hat, professional sports, comic strip, hot dog, short sighted, voodoo ritual, the big game", "tags_pipe": "|baseball|sport|sabotage|sombrero|baseball field|hard hat|professional sports|comic strip|hot dog|short sighted|voodoo ritual|the big game|", "overview": "When Rachel Phelps inherits the Cleveland Indians from her deceased husband, she's determined to move the team to a warmer climate -- but only a losing season will make that possible, which should be easy given the misfits she's hired. Rachel is sure her dream will come true, but she underestimates their will to succeed!", "text_for_embedding": "Major League (1989). Genres: Comedy. When Rachel Phelps inherits the Cleveland Indians from her deceased husband, she's determined to move the team to a warmer climate -- but only a losing season will make that possible, which should be easy given the misfits she's hired. Rachel is sure her dream will come true, but she underestimates their will to succeed!. Tags: baseball, sport, sabotage, sombrero, baseball field, hard hat, professional sports, comic strip, hot dog, short sighted, voodoo ritual, the big game"} +{"id": "10748", "title": "St. Trinian's", "year": 2007, "duration_min": 101, "rating": 5.6, "genres": "Comedy, Family, Science Fiction", "genres_pipe": "|Comedy|Family|Science Fiction|", "keywords": "solidarity, snake, exhibit, musical, shenanigan, chaos, receiving of stolen goods, girls' boarding school, quiz show, unorthodox, debt, principal, anarchy, group of friends, duringcreditsstinger", "tags_pipe": "|solidarity|snake|exhibit|musical|shenanigan|chaos|receiving of stolen goods|girls' boarding school|quiz show|unorthodox|debt|principal|anarchy|group of friends|duringcreditsstinger|", "overview": "When their beloved school is threatened with closure should the powers that be fail to raise the proper funds, the girls scheme to steal a priceless painting and use the profits to pull St. Trinian's out of the red.", "text_for_embedding": "St. Trinian's (2007). Genres: Comedy, Family, Science Fiction. When their beloved school is threatened with closure should the powers that be fail to raise the proper funds, the girls scheme to steal a priceless painting and use the profits to pull St. Trinian's out of the red.. Tags: solidarity, snake, exhibit, musical, shenanigan, chaos, receiving of stolen goods, girls' boarding school, quiz show, unorthodox, debt, principal, anarchy, group of friends, duringcreditsstinger"} +{"id": "1817", "title": "Phone Booth", "year": 2002, "duration_min": 81, "rating": 6.7, "genres": "Thriller, Drama", "genres_pipe": "|Thriller|Drama|", "keywords": "terrorist, phone booth, psychopath", "tags_pipe": "|terrorist|phone booth|psychopath|", "overview": "A slick New York publicist who picks up a ringing receiver in a phone booth is told that if he hangs up, he'll be killed... and the little red light from a laser rifle sight is proof that the caller isn't kidding.", "text_for_embedding": "Phone Booth (2002). Genres: Thriller, Drama. A slick New York publicist who picks up a ringing receiver in a phone booth is told that if he hangs up, he'll be killed... and the little red light from a laser rifle sight is proof that the caller isn't kidding.. Tags: terrorist, phone booth, psychopath"} +{"id": "10229", "title": "A Walk to Remember", "year": 2002, "duration_min": 101, "rating": 7.5, "genres": "Drama, Romance", "genres_pipe": "|Drama|Romance|", "keywords": "based on novel, theatre group, north carolina, theatre milieu, high school, cancer, coming of age, tragic love, teenager, star crossed lovers", "tags_pipe": "|based on novel|theatre group|north carolina|theatre milieu|high school|cancer|coming of age|tragic love|teenager|star crossed lovers|", "overview": "When the popular, restless Landon Carter is forced to participate in the school drama production he falls in love with Jamie Sullivan, the daughter of the town's minister. Jamie has a \"to-do\" list for her life and also a very big secret she must keep from Landon.", "text_for_embedding": "A Walk to Remember (2002). Genres: Drama, Romance. When the popular, restless Landon Carter is forced to participate in the school drama production he falls in love with Jamie Sullivan, the daughter of the town's minister. Jamie has a \"to-do\" list for her life and also a very big secret she must keep from Landon.. Tags: based on novel, theatre group, north carolina, theatre milieu, high school, cancer, coming of age, tragic love, teenager, star crossed lovers"} +{"id": "687", "title": "Dead Man Walking", "year": 1995, "duration_min": 122, "rating": 7.3, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "prison, rape, socially deprived family, penalty, death penalty, despair, death row, begnadigung, therapist, self-discovery, prison cell, court case, death sentence, doomed man, sentence", "tags_pipe": "|prison|rape|socially deprived family|penalty|death penalty|despair|death row|begnadigung|therapist|self-discovery|prison cell|court case|death sentence|doomed man|sentence|", "overview": "A justice drama based on a true story about a man on death row who in his last days forms a strong relationship with a nun who teaches him forgiveness and gives him spirituality as she accompanies him to his execution. Susan Sarandon won an Oscar for best female actress for her convincing portrayal of Sister Helen Prejean.", "text_for_embedding": "Dead Man Walking (1995). Genres: Drama. A justice drama based on a true story about a man on death row who in his last days forms a strong relationship with a nun who teaches him forgiveness and gives him spirituality as she accompanies him to his execution. Susan Sarandon won an Oscar for best female actress for her convincing portrayal of Sister Helen Prejean.. Tags: prison, rape, socially deprived family, penalty, death penalty, despair, death row, begnadigung, therapist, self-discovery, prison cell, court case, death sentence, doomed man, sentence"} +{"id": "796", "title": "Cruel Intentions", "year": 1999, "duration_min": 97, "rating": 6.6, "genres": "Drama, Romance, Thriller", "genres_pipe": "|Drama|Romance|Thriller|", "keywords": "upper class, sexual obsession, sex, bet, sadistic, drug abuse, brother sister relationship, cynic, cocaine, virgin, manipulation, seduction, love letter, private school, innocence", "tags_pipe": "|upper class|sexual obsession|sex|bet|sadistic|drug abuse|brother sister relationship|cynic|cocaine|virgin|manipulation|seduction|love letter|private school|innocence|", "overview": "Slaking a thirst for dangerous games, Kathryn challenges her stepbrother, Sebastian, to deflower their headmaster's daughter before the summer ends. If he succeeds, the prize is the chance to bed Kathryn. But if he loses, Kathryn will claim his most prized possession.", "text_for_embedding": "Cruel Intentions (1999). Genres: Drama, Romance, Thriller. Slaking a thirst for dangerous games, Kathryn challenges her stepbrother, Sebastian, to deflower their headmaster's daughter before the summer ends. If he succeeds, the prize is the chance to bed Kathryn. But if he loses, Kathryn will claim his most prized possession.. Tags: upper class, sexual obsession, sex, bet, sadistic, drug abuse, brother sister relationship, cynic, cocaine, virgin, manipulation, seduction, love letter, private school, innocence"} +{"id": "22804", "title": "Saw VI", "year": 2009, "duration_min": 90, "rating": 6.0, "genres": "Horror, Mystery", "genres_pipe": "|Horror|Mystery|", "keywords": "aftercreditsstinger", "tags_pipe": "|aftercreditsstinger|", "overview": "Special Agent Strahm is dead, and Detective Hoffman has emerged as the unchallenged successor to Jigsaw's legacy. However, when the FBI draws closer to Hoffman, he is forced to set a game into motion, and Jigsaw's grand scheme is finally understood.", "text_for_embedding": "Saw VI (2009). Genres: Horror, Mystery. Special Agent Strahm is dead, and Detective Hoffman has emerged as the unchallenged successor to Jigsaw's legacy. However, when the FBI draws closer to Hoffman, he is forced to set a game into motion, and Jigsaw's grand scheme is finally understood.. Tags: aftercreditsstinger"} +{"id": "10156", "title": "History of the World: Part I", "year": 1981, "duration_min": 92, "rating": 6.5, "genres": "Comedy", "genres_pipe": "|Comedy|", "keywords": "moses, roman empire, musical, stone age, music, julius caesar", "tags_pipe": "|moses|roman empire|musical|stone age|music|julius caesar|", "overview": "An uproarious version of history that proves nothing is sacred – not even the Roman Empire, the French Revolution and the Spanish Inquisition.", "text_for_embedding": "History of the World: Part I (1981). Genres: Comedy. An uproarious version of history that proves nothing is sacred – not even the Roman Empire, the French Revolution and the Spanish Inquisition.. Tags: moses, roman empire, musical, stone age, music, julius caesar"} +{"id": "12837", "title": "The Secret Life of Bees", "year": 2008, "duration_min": 114, "rating": 7.4, "genres": "Adventure", "genres_pipe": "|Adventure|", "keywords": "woman director", "tags_pipe": "|woman director|", "overview": "Set in South Carolina in 1964, this is the tale of Lily Owens a 14 year-old girl who is haunted by the memory of her late mother. To escape her lonely life and troubled relationship with her father, Lily flees with Rosaleen, her caregiver and only friend, to a South Carolina town that holds the secret to her mother's past.", "text_for_embedding": "The Secret Life of Bees (2008). Genres: Adventure. Set in South Carolina in 1964, this is the tale of Lily Owens a 14 year-old girl who is haunted by the memory of her late mother. To escape her lonely life and troubled relationship with her father, Lily flees with Rosaleen, her caregiver and only friend, to a South Carolina town that holds the secret to her mother's past.. Tags: woman director"} +{"id": "17708", "title": "Corky Romano", "year": 2001, "duration_min": 86, "rating": 4.1, "genres": "Action, Comedy, Crime", "genres_pipe": "|Action|Comedy|Crime|", "keywords": "", "tags_pipe": "", "overview": "Corky Romano is a bumbling, simpleton, veterinarian and the youngest, outcast son of an aging gangster, named Pops Romano, who calls upon Corky to infiltrate the local FBI and retrieve and destroy evidence being used to incriminate Pops for racketeering charges.", "text_for_embedding": "Corky Romano (2001). Genres: Action, Comedy, Crime. Corky Romano is a bumbling, simpleton, veterinarian and the youngest, outcast son of an aging gangster, named Pops Romano, who calls upon Corky to infiltrate the local FBI and retrieve and destroy evidence being used to incriminate Pops for racketeering charges.. Tags: "} +{"id": "13937", "title": "Raising Cain", "year": 1992, "duration_min": 91, "rating": 5.9, "genres": "Drama, Horror, Thriller, Crime", "genres_pipe": "|Drama|Horror|Thriller|Crime|", "keywords": "", "tags_pipe": "", "overview": "When neighborhood kids begin vanishing, Jenny suspects her child psychologist husband, Carter, may be resuming the deranged experiments his father performed on Carter when he was young. Now, it falls to Jenny to unravel the mystery. And as more children disappear, she fears for her own child's safety.", "text_for_embedding": "Raising Cain (1992). Genres: Drama, Horror, Thriller, Crime. When neighborhood kids begin vanishing, Jenny suspects her child psychologist husband, Carter, may be resuming the deranged experiments his father performed on Carter when he was young. Now, it falls to Jenny to unravel the mystery. And as more children disappear, she fears for her own child's safety.. Tags: "} +{"id": "28932", "title": "F.I.S.T.", "year": 1978, "duration_min": 145, "rating": 6.4, "genres": "Drama, Action", "genres_pipe": "|Drama|Action|", "keywords": "", "tags_pipe": "", "overview": "Johnny Kovak joins the Teamsters trade-union in a local chapter in the 1930s and works his way up in the organization. As he climbs higher and higher his methods become more ruthless and finally senator Madison starts a campaign to find the truth about the alleged connections with the Mob.", "text_for_embedding": "F.I.S.T. (1978). Genres: Drama, Action. Johnny Kovak joins the Teamsters trade-union in a local chapter in the 1930s and works his way up in the organization. As he climbs higher and higher his methods become more ruthless and finally senator Madison starts a campaign to find the truth about the alleged connections with the Mob.. Tags: "} +{"id": "31909", "title": "Invaders from Mars", "year": 1986, "duration_min": 100, "rating": 5.5, "genres": "Science Fiction", "genres_pipe": "|Science Fiction|", "keywords": "space invasion, remake, alien invasion", "tags_pipe": "|space invasion|remake|alien invasion|", "overview": "In this remake of the classic 50s SF tale, a boy tries to stop an invasion of his town by aliens who take over the the minds of his parents, his least-liked schoolteacher and other townspeople. With the aid of the school nurse the boy enlists the aid of the U.S. Marines.", "text_for_embedding": "Invaders from Mars (1986). Genres: Science Fiction. In this remake of the classic 50s SF tale, a boy tries to stop an invasion of his town by aliens who take over the the minds of his parents, his least-liked schoolteacher and other townspeople. With the aid of the school nurse the boy enlists the aid of the U.S. Marines.. Tags: space invasion, remake, alien invasion"} +{"id": "167073", "title": "Brooklyn", "year": 2015, "duration_min": 111, "rating": 7.2, "genres": "Drama, Romance", "genres_pipe": "|Drama|Romance|", "keywords": "love triangle, based on novel, homesickness, vororte, ship, community, marriage, working class, boarding house, ireland, brooklyn new york city, journey, dual life, irish immigrant, 1950s", "tags_pipe": "|love triangle|based on novel|homesickness|vororte|ship|community|marriage|working class|boarding house|ireland|brooklyn new york city|journey|dual life|irish immigrant|1950s|", "overview": "In 1950s Ireland and New York, young Ellis Lacey has to choose between two men and two countries.", "text_for_embedding": "Brooklyn (2015). Genres: Drama, Romance. In 1950s Ireland and New York, young Ellis Lacey has to choose between two men and two countries.. Tags: love triangle, based on novel, homesickness, vororte, ship, community, marriage, working class, boarding house, ireland, brooklyn new york city, journey, dual life, irish immigrant, 1950s"} +{"id": "3175", "title": "Barry Lyndon", "year": 1975, "duration_min": 184, "rating": 7.7, "genres": "Drama, Romance, War", "genres_pipe": "|Drama|Romance|War|", "keywords": "palace, british army, fencing, epic, debt, ireland, british soldier, seven years war, nobility, prussia", "tags_pipe": "|palace|british army|fencing|epic|debt|ireland|british soldier|seven years war|nobility|prussia|", "overview": "In the Eighteenth Century, in a small village in Ireland, Redmond Barry is a young farm boy in love with his cousin Nora Brady. When Nora engages to the British Captain John Quin, Barry challenges him for a duel of pistols. He wins and escapes to Dublin, but is robbed on the road. Without any other alternative, Barry joins the British Army to fight in the Seven Years War.", "text_for_embedding": "Barry Lyndon (1975). Genres: Drama, Romance, War. In the Eighteenth Century, in a small village in Ireland, Redmond Barry is a young farm boy in love with his cousin Nora Brady. When Nora engages to the British Captain John Quin, Barry challenges him for a duel of pistols. He wins and escapes to Dublin, but is robbed on the road. Without any other alternative, Barry joins the British Army to fight in the Seven Years War.. Tags: palace, british army, fencing, epic, debt, ireland, british soldier, seven years war, nobility, prussia"} +{"id": "14369", "title": "Out Cold", "year": 2001, "duration_min": 89, "rating": 5.8, "genres": "Comedy", "genres_pipe": "|Comedy|", "keywords": "manager, alcohol, races, mountains, gondola, snowboarding, airplane, father, sport, prank, alaska, male female relationship, drug humor, hot tub, ski resort", "tags_pipe": "|manager|alcohol|races|mountains|gondola|snowboarding|airplane|father|sport|prank|alaska|male female relationship|drug humor|hot tub|ski resort|", "overview": "Animal House meets Casablanca in this outrageous snowboarding comedy. Rick Rambis and his friends are having the time of their lives on Bull Mountain until the legendary Papa Muntz' son decides to sell the mountain to sleazy land developer John Majors, having the staff fired and turning Bull Mountain into 'Yuppieville'.", "text_for_embedding": "Out Cold (2001). Genres: Comedy. Animal House meets Casablanca in this outrageous snowboarding comedy. Rick Rambis and his friends are having the time of their lives on Bull Mountain until the legendary Papa Muntz' son decides to sell the mountain to sleazy land developer John Majors, having the staff fired and turning Bull Mountain into 'Yuppieville'.. Tags: manager, alcohol, races, mountains, gondola, snowboarding, airplane, father, sport, prank, alaska, male female relationship, drug humor, hot tub, ski resort"} +{"id": "16888", "title": "The Ladies Man", "year": 2000, "duration_min": 84, "rating": 5.7, "genres": "Comedy", "genres_pipe": "|Comedy|", "keywords": "female nudity, tattoo, radio, cheat on husband, eating contest", "tags_pipe": "|female nudity|tattoo|radio|cheat on husband|eating contest|", "overview": "Because of his salacious language, late-night radio advice-show host Leon Phelps, along with his sweet and loyal producer Julie, is fired from his Chicago gig. Leon gets a letter from a former lover promising a life of wealth, but he doesn't know who she is. Can Leon find his secret sugar-mama? What about Julie?", "text_for_embedding": "The Ladies Man (2000). Genres: Comedy. Because of his salacious language, late-night radio advice-show host Leon Phelps, along with his sweet and loyal producer Julie, is fired from his Chicago gig. Leon gets a letter from a former lover promising a life of wealth, but he doesn't know who she is. Can Leon find his secret sugar-mama? What about Julie?. Tags: female nudity, tattoo, radio, cheat on husband, eating contest"} +{"id": "121826", "title": "Quartet", "year": 2012, "duration_min": 98, "rating": 6.3, "genres": "Drama, Comedy, Romance", "genres_pipe": "|Drama|Comedy|Romance|", "keywords": "musician, concert, retired", "tags_pipe": "|musician|concert|retired|", "overview": "The directorial debut of Dustin Hoffman, Quartet is a high-drama comedy about temperamental divas and old grudges, passion and pride, romance and Rigoletto. At a home for retired musicians, the annual concert to celebrate Verdi's birthday is disrupted by the arrival of Jean, an eternal diva and former wife of one of the residents. Expect poignancy and plenty of laughs.", "text_for_embedding": "Quartet (2012). Genres: Drama, Comedy, Romance. The directorial debut of Dustin Hoffman, Quartet is a high-drama comedy about temperamental divas and old grudges, passion and pride, romance and Rigoletto. At a home for retired musicians, the annual concert to celebrate Verdi's birthday is disrupted by the arrival of Jean, an eternal diva and former wife of one of the residents. Expect poignancy and plenty of laughs.. Tags: musician, concert, retired"} +{"id": "10646", "title": "Tomcats", "year": 2001, "duration_min": 95, "rating": 4.9, "genres": "Comedy, Romance", "genres_pipe": "|Comedy|Romance|", "keywords": "compulsive gambling, roulette, stag night, group of friends", "tags_pipe": "|compulsive gambling|roulette|stag night|group of friends|", "overview": "College buddies chip in and promise that the group's last unmarried man will collect a cash pot. Seven years later, the kitty is worth $500,000 -- money Michael needs to pay a gambling debt. Problem is, the only other single guy is a hopeless womanizer!", "text_for_embedding": "Tomcats (2001). Genres: Comedy, Romance. College buddies chip in and promise that the group's last unmarried man will collect a cash pot. Seven years later, the kitty is worth $500,000 -- money Michael needs to pay a gambling debt. Problem is, the only other single guy is a hopeless womanizer!. Tags: compulsive gambling, roulette, stag night, group of friends"} +{"id": "12149", "title": "Frailty", "year": 2001, "duration_min": 100, "rating": 7.0, "genres": "Drama, Thriller, Crime", "genres_pipe": "|Drama|Thriller|Crime|", "keywords": "angel, sheriff, loss of mother, 1970s, texas, dream, rose garden, grave, ax, insanity, murder, mechanic, vision, serial killer, punishment", "tags_pipe": "|angel|sheriff|loss of mother|1970s|texas|dream|rose garden|grave|ax|insanity|murder|mechanic|vision|serial killer|punishment|", "overview": "A man confesses to an FBI agent his family's story of how his religious fanatic father's visions lead to a series of murders to destroy supposed \"demons.\"", "text_for_embedding": "Frailty (2001). Genres: Drama, Thriller, Crime. A man confesses to an FBI agent his family's story of how his religious fanatic father's visions lead to a series of murders to destroy supposed \"demons.\". Tags: angel, sheriff, loss of mother, 1970s, texas, dream, rose garden, grave, ax, insanity, murder, mechanic, vision, serial killer, punishment"} +{"id": "304357", "title": "Woman in Gold", "year": 2015, "duration_min": 120, "rating": 7.3, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "nazis, based on true story, art, stolen painting", "tags_pipe": "|nazis|based on true story|art|stolen painting|", "overview": "Maria Altmann, an octogenarian Jewish refugee, takes on the Austrian government to recover a world famous painting of her aunt plundered by the Nazis during World War II, she believes rightfully belongs to her family. She did so not just to regain what was rightfully hers, but also to obtain some measure of justice for the death, destruction, and massive art theft perpetrated by the Nazis.", "text_for_embedding": "Woman in Gold (2015). Genres: Drama. Maria Altmann, an octogenarian Jewish refugee, takes on the Austrian government to recover a world famous painting of her aunt plundered by the Nazis during World War II, she believes rightfully belongs to her family. She did so not just to regain what was rightfully hers, but also to obtain some measure of justice for the death, destruction, and massive art theft perpetrated by the Nazis.. Tags: nazis, based on true story, art, stolen painting"} +{"id": "11184", "title": "Kinsey", "year": 2004, "duration_min": 118, "rating": 6.6, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "free love, sex, sexuality, indiana, professor, research, interview, biography, marriage, criticism and blame, homosexuality, morality, student, taboo, teaching", "tags_pipe": "|free love|sex|sexuality|indiana|professor|research|interview|biography|marriage|criticism and blame|homosexuality|morality|student|taboo|teaching|", "overview": "Kinsey is a portrait of researcher Alfred Kinsey, driven to uncover the most private secrets of a nation. What begins for Kinsey as a scientific endeavor soon takes on an intensely personal relevance, ultimately becoming an unexpected journey into the mystery of human behavior.", "text_for_embedding": "Kinsey (2004). Genres: Drama. Kinsey is a portrait of researcher Alfred Kinsey, driven to uncover the most private secrets of a nation. What begins for Kinsey as a scientific endeavor soon takes on an intensely personal relevance, ultimately becoming an unexpected journey into the mystery of human behavior.. Tags: free love, sex, sexuality, indiana, professor, research, interview, biography, marriage, criticism and blame, homosexuality, morality, student, taboo, teaching"} +{"id": "766", "title": "Army of Darkness", "year": 1992, "duration_min": 81, "rating": 7.3, "genres": "Fantasy, Horror, Comedy", "genres_pipe": "|Fantasy|Horror|Comedy|", "keywords": "prophecy, witch, swordplay, supermarket, castle, catapult, chain saw, time frame, skeleton, pit, windmill, incantation, time travel, undead, knight", "tags_pipe": "|prophecy|witch|swordplay|supermarket|castle|catapult|chain saw|time frame|skeleton|pit|windmill|incantation|time travel|undead|knight|", "overview": "A man is accidentally transported to 1300 A.D., where he must battle an army of the dead and retrieve the Necronomicon so he can return home.", "text_for_embedding": "Army of Darkness (1992). Genres: Fantasy, Horror, Comedy. A man is accidentally transported to 1300 A.D., where he must battle an army of the dead and retrieve the Necronomicon so he can return home.. Tags: prophecy, witch, swordplay, supermarket, castle, catapult, chain saw, time frame, skeleton, pit, windmill, incantation, time travel, undead, knight"} +{"id": "20009", "title": "Slackers", "year": 2002, "duration_min": 86, "rating": 5.4, "genres": "Comedy, Romance", "genres_pipe": "|Comedy|Romance|", "keywords": "male nudity, drug abuse, job interview, eavesdropping, fall, comedy, troll, cheating wife, backpack, sponge bath, repairman", "tags_pipe": "|male nudity|drug abuse|job interview|eavesdropping|fall|comedy|troll|cheating wife|backpack|sponge bath|repairman|", "overview": "Dave, Sam and Jeff are about to graduate from Holden University with honors in lying, cheating and scheming. The three roommates have proudly scammed their way through the last four years of college and now, during final exams, these big-men-on-campus are about to be busted by the most unlikely dude in school. Self-dubbed Cool Ethan, an ambitious nerd with a bad crush, enters their lives one day and everything begins to unravel.", "text_for_embedding": "Slackers (2002). Genres: Comedy, Romance. Dave, Sam and Jeff are about to graduate from Holden University with honors in lying, cheating and scheming. The three roommates have proudly scammed their way through the last four years of college and now, during final exams, these big-men-on-campus are about to be busted by the most unlikely dude in school. Self-dubbed Cool Ethan, an ambitious nerd with a bad crush, enters their lives one day and everything begins to unravel.. Tags: male nudity, drug abuse, job interview, eavesdropping, fall, comedy, troll, cheating wife, backpack, sponge bath, repairman"} +{"id": "1587", "title": "What's Eating Gilbert Grape", "year": 1993, "duration_min": 118, "rating": 7.5, "genres": "Romance, Drama", "genres_pipe": "|Romance|Drama|", "keywords": "brother brother relationship, mentally disabled, iowa, widow, dysfunctional family, independent film", "tags_pipe": "|brother brother relationship|mentally disabled|iowa|widow|dysfunctional family|independent film|", "overview": "Gilbert has to care for his brother Arnie and his obese mother, which gets in the way when love walks into his life.", "text_for_embedding": "What's Eating Gilbert Grape (1993). Genres: Romance, Drama. Gilbert has to care for his brother Arnie and his obese mother, which gets in the way when love walks into his life.. Tags: brother brother relationship, mentally disabled, iowa, widow, dysfunctional family, independent film"} +{"id": "30973", "title": "The Visual Bible: The Gospel of John", "year": 2003, "duration_min": 125, "rating": 8.2, "genres": "Drama, History", "genres_pipe": "|Drama|History|", "keywords": "miracle, jesus christ, last supper, bible, christian, god, sermon on the mount", "tags_pipe": "|miracle|jesus christ|last supper|bible|christian|god|sermon on the mount|", "overview": "A word for word depiction of the life of Jesus Christ from the Good News Translation Bible as recorded in the Gospel of John.", "text_for_embedding": "The Visual Bible: The Gospel of John (2003). Genres: Drama, History. A word for word depiction of the life of Jesus Christ from the Good News Translation Bible as recorded in the Gospel of John.. Tags: miracle, jesus christ, last supper, bible, christian, god, sermon on the mount"} +{"id": "11109", "title": "Vera Drake", "year": 2004, "duration_min": 125, "rating": 6.8, "genres": "Crime, Drama", "genres_pipe": "|Crime|Drama|", "keywords": "england, mother role, women's prison, police, neighbor, pregnant, female protagonist, miscarriage, tailor, fingerprinting, unwanted pregnancy, 1950s", "tags_pipe": "|england|mother role|women's prison|police|neighbor|pregnant|female protagonist|miscarriage|tailor|fingerprinting|unwanted pregnancy|1950s|", "overview": "Abortionist Vera Drake finds her beliefs and practices clash with the mores of 1950s Britain – a conflict that leads to tragedy for her family.", "text_for_embedding": "Vera Drake (2004). Genres: Crime, Drama. Abortionist Vera Drake finds her beliefs and practices clash with the mores of 1950s Britain – a conflict that leads to tragedy for her family.. Tags: england, mother role, women's prison, police, neighbor, pregnant, female protagonist, miscarriage, tailor, fingerprinting, unwanted pregnancy, 1950s"} +{"id": "9027", "title": "The Guru", "year": 2002, "duration_min": 91, "rating": 5.1, "genres": "Comedy, Romance", "genres_pipe": "|Comedy|Romance|", "keywords": "sex, indian lead, dancing master, new love, porn actor, guru, wedding, sex comedy, woman director", "tags_pipe": "|sex|indian lead|dancing master|new love|porn actor|guru|wedding|sex comedy|woman director|", "overview": "Bored with Bollywood movies but fascinated with their Hollywood counterparts from his youth, Ram dreams to become a singer and actor in America, the country where dreams are made. He is encouraged when his American-based close friend, Vijay Rao, comes for visit, and brags about driving a Mercedes and living in a penthouse.", "text_for_embedding": "The Guru (2002). Genres: Comedy, Romance. Bored with Bollywood movies but fascinated with their Hollywood counterparts from his youth, Ram dreams to become a singer and actor in America, the country where dreams are made. He is encouraged when his American-based close friend, Vijay Rao, comes for visit, and brags about driving a Mercedes and living in a penthouse.. Tags: sex, indian lead, dancing master, new love, porn actor, guru, wedding, sex comedy, woman director"} +{"id": "63020", "title": "The Perez Family", "year": 1995, "duration_min": 113, "rating": 6.6, "genres": "Comedy, Drama, Romance", "genres_pipe": "|Comedy|Drama|Romance|", "keywords": "immigration, independent film, woman director, political prisoner, cuban refugees", "tags_pipe": "|immigration|independent film|woman director|political prisoner|cuban refugees|", "overview": "In the midst of the Mariel boat lift -- a hurried exodus of refugees from Cuba going to America -- an immigration clerk accidentally presumes that dissident Juan Raul Perez and Dorita Evita Perez are married. United by their last name and a mutual resolve to emigrate, Dorita and Juan agree to play along. But it gets complicated when the two begin falling for each other just as Juan reunites with his wife, Carmela, whom he hasn't seen in decades.", "text_for_embedding": "The Perez Family (1995). Genres: Comedy, Drama, Romance. In the midst of the Mariel boat lift -- a hurried exodus of refugees from Cuba going to America -- an immigration clerk accidentally presumes that dissident Juan Raul Perez and Dorita Evita Perez are married. United by their last name and a mutual resolve to emigrate, Dorita and Juan agree to play along. But it gets complicated when the two begin falling for each other just as Juan reunites with his wife, Carmela, whom he hasn't seen in decades.. Tags: immigration, independent film, woman director, political prisoner, cuban refugees"} +{"id": "86829", "title": "Inside Llewyn Davis", "year": 2013, "duration_min": 105, "rating": 7.2, "genres": "Drama, Music", "genres_pipe": "|Drama|Music|", "keywords": "folk music, performance, aspiring singer, new york city, recording, merchant marine, 1960s", "tags_pipe": "|folk music|performance|aspiring singer|new york city|recording|merchant marine|1960s|", "overview": "In Greenwich Village in the early 1960s, gifted but volatile folk musician Llewyn Davis struggles with money, relationships, and his uncertain future following the suicide of his singing partner.", "text_for_embedding": "Inside Llewyn Davis (2013). Genres: Drama, Music. In Greenwich Village in the early 1960s, gifted but volatile folk musician Llewyn Davis struggles with money, relationships, and his uncertain future following the suicide of his singing partner.. Tags: folk music, performance, aspiring singer, new york city, recording, merchant marine, 1960s"} +{"id": "11065", "title": "O", "year": 2001, "duration_min": 95, "rating": 5.8, "genres": "Drama, Romance, Thriller", "genres_pipe": "|Drama|Romance|Thriller|", "keywords": "sex, jealousy, girlfriend, high school, columbine, high school sports, friends, drug, xenophobia", "tags_pipe": "|sex|jealousy|girlfriend|high school|columbine|high school sports|friends|drug|xenophobia|", "overview": "Hot young stars, a hip, driving soundtrack, plus a provocative tale of jealousy and betrayal combine to create this controversial modern-day version of Shakespeare's classic, \"Othello.\" O is Odin James (Mekhi Phifer), the school's star basketball player and future NBA hopeful. Even though he's the only black student at the elite Palmetto Grove Academy...", "text_for_embedding": "O (2001). Genres: Drama, Romance, Thriller. Hot young stars, a hip, driving soundtrack, plus a provocative tale of jealousy and betrayal combine to create this controversial modern-day version of Shakespeare's classic, \"Othello.\" O is Odin James (Mekhi Phifer), the school's star basketball player and future NBA hopeful. Even though he's the only black student at the elite Palmetto Grove Academy.... Tags: sex, jealousy, girlfriend, high school, columbine, high school sports, friends, drug, xenophobia"} +{"id": "13888", "title": "Return to the Blue Lagoon", "year": 1991, "duration_min": 98, "rating": 5.1, "genres": "Drama, Adventure, Romance", "genres_pipe": "|Drama|Adventure|Romance|", "keywords": "island, marooned, pacific island, teenager, deserted island, tropical island", "tags_pipe": "|island|marooned|pacific island|teenager|deserted island|tropical island|", "overview": "In this sequel to the 1980 classic, two children are stranded on a beautiful island in the South Pacific. With no adults to guide them, the two make a simple life together and eventually become tanned teenagers in love.", "text_for_embedding": "Return to the Blue Lagoon (1991). Genres: Drama, Adventure, Romance. In this sequel to the 1980 classic, two children are stranded on a beautiful island in the South Pacific. With no adults to guide them, the two make a simple life together and eventually become tanned teenagers in love.. Tags: island, marooned, pacific island, teenager, deserted island, tropical island"} +{"id": "42345", "title": "The Molly Maguires", "year": 1970, "duration_min": 124, "rating": 5.9, "genres": "Drama, History", "genres_pipe": "|Drama|History|", "keywords": "pennsylvania, miner, coal mining, coal mine, pennsylvania coal miner", "tags_pipe": "|pennsylvania|miner|coal mining|coal mine|pennsylvania coal miner|", "overview": "Life is rough in the coal mines of 1876 Pennsylvania. A secret group of Irish emigrant miners, known as the Molly Maguires, fights against the cruelty of the mining company with sabotage and murder. A detective, also an Irish emigrant, is hired to infiltrate the group and report on its members. But on which side do his sympathies lie?", "text_for_embedding": "The Molly Maguires (1970). Genres: Drama, History. Life is rough in the coal mines of 1876 Pennsylvania. A secret group of Irish emigrant miners, known as the Molly Maguires, fights against the cruelty of the mining company with sabotage and murder. A detective, also an Irish emigrant, is hired to infiltrate the group and report on its members. But on which side do his sympathies lie?. Tags: pennsylvania, miner, coal mining, coal mine, pennsylvania coal miner"} +{"id": "13994", "title": "Romance & Cigarettes", "year": 2005, "duration_min": 105, "rating": 6.0, "genres": "Comedy, Music, Romance", "genres_pipe": "|Comedy|Music|Romance|", "keywords": "infidelity, lovers, working class, new york city", "tags_pipe": "|infidelity|lovers|working class|new york city|", "overview": "Down-and-dirty musical love story set in the world of the working class. Nick is an ironworker who builds and repairs bridges. He's married to Kitty, a dressmaker, a strong and gentle woman with whom he has three daughters. He is carrying on a torrid affair with a redheaded woman named Tula. Nick is basically a good, hardworking man driven forward by will and blinded by his urges.", "text_for_embedding": "Romance & Cigarettes (2005). Genres: Comedy, Music, Romance. Down-and-dirty musical love story set in the world of the working class. Nick is an ironworker who builds and repairs bridges. He's married to Kitty, a dressmaker, a strong and gentle woman with whom he has three daughters. He is carrying on a torrid affair with a redheaded woman named Tula. Nick is basically a good, hardworking man driven forward by will and blinded by his urges.. Tags: infidelity, lovers, working class, new york city"} +{"id": "1590", "title": "Copying Beethoven", "year": 2006, "duration_min": 104, "rating": 6.2, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "beethoven, woman director", "tags_pipe": "|beethoven|woman director|", "overview": "A fictionalised exploration of Beethoven's life in his final days working on his Ninth Symphony. It is 1824. Beethoven is racing to finish his new symphony. However, it has been years since his last success and he is plagued by deafness, loneliness and personal trauma. A copyist is urgently needed to help the composer. A fictional character is introduced in the form of a young conservatory student and aspiring composer named Anna Holtz. The mercurial Beethoven is skeptical that a woman might become involved in his masterpiece but slowly comes to trust in Anna's assistance and in the end becomes quite fond of her. By the time the piece is performed, her presence in his life is an absolute necessity. Her deep understanding of his work is such that she even corrects mistakes he has made, while her passionate personality opens a door into his private world.", "text_for_embedding": "Copying Beethoven (2006). Genres: Drama. A fictionalised exploration of Beethoven's life in his final days working on his Ninth Symphony. It is 1824. Beethoven is racing to finish his new symphony. However, it has been years since his last success and he is plagued by deafness, loneliness and personal trauma. A copyist is urgently needed to help the composer. A fictional character is introduced in the form of a young conservatory student and aspiring composer named Anna Holtz. The mercurial Beethoven is skeptical that a woman might become involved in his masterpiece but slowly comes to trust in Anna's assistance and in the end becomes quite fond of her. By the time the piece is performed, her presence in his life is an absolute necessity. Her deep understanding of his work is such that she even corrects mistakes he has made, while her passionate personality opens a door into his private world.. Tags: beethoven, woman director"} +{"id": "62728", "title": "Brighton Rock", "year": 2010, "duration_min": 111, "rating": 5.6, "genres": "Drama, Thriller, Crime", "genres_pipe": "|Drama|Thriller|Crime|", "keywords": "waitress, riot, gang war, nightmare, prayer, revenge, gang, brighton, violence, record", "tags_pipe": "|waitress|riot|gang war|nightmare|prayer|revenge|gang|brighton|violence|record|", "overview": "Charts the headlong fall of Pinkie, a razor-wielding disadvantaged teenager with a religious death wish.", "text_for_embedding": "Brighton Rock (2010). Genres: Drama, Thriller, Crime. Charts the headlong fall of Pinkie, a razor-wielding disadvantaged teenager with a religious death wish.. Tags: waitress, riot, gang war, nightmare, prayer, revenge, gang, brighton, violence, record"} +{"id": "11917", "title": "Saw V", "year": 2008, "duration_min": 92, "rating": 5.9, "genres": "Horror, Thriller, Crime", "genres_pipe": "|Horror|Thriller|Crime|", "keywords": "blood splatter, serial killer, pig mask, nazi, jigsaw, swastika tattoo", "tags_pipe": "|blood splatter|serial killer|pig mask|nazi|jigsaw|swastika tattoo|", "overview": "Detective Hoffman is seemingly the last person alive to carry on the Jigsaw legacy. But when his secret is threatened, he must go on the hunt to eliminate all the loose ends.", "text_for_embedding": "Saw V (2008). Genres: Horror, Thriller, Crime. Detective Hoffman is seemingly the last person alive to carry on the Jigsaw legacy. But when his secret is threatened, he must go on the hunt to eliminate all the loose ends.. Tags: blood splatter, serial killer, pig mask, nazi, jigsaw, swastika tattoo"} +{"id": "45138", "title": "Machine Gun McCain", "year": 1969, "duration_min": 116, "rating": 7.3, "genres": "Drama, Action, Thriller, Crime, Foreign", "genres_pipe": "|Drama|Action|Thriller|Crime|Foreign|", "keywords": "mobster", "tags_pipe": "|mobster|", "overview": "After serving 12 years behind bars for armed robbery, tough guy Hank McCain finds himself the pawn of a ruthless mob runt's rebellion against a high level don. When McCain discovers that he's been betrayed and abandoned by his new employer, he retaliates with a high stakes Las Vegas casino heist that erupts into all-out war on the streets of Los Angeles, San Francisco and New York. Not blood, nor lust, nor wedding vows can come between McCain and his money...or his machine gun.", "text_for_embedding": "Machine Gun McCain (1969). Genres: Drama, Action, Thriller, Crime, Foreign. After serving 12 years behind bars for armed robbery, tough guy Hank McCain finds himself the pawn of a ruthless mob runt's rebellion against a high level don. When McCain discovers that he's been betrayed and abandoned by his new employer, he retaliates with a high stakes Las Vegas casino heist that erupts into all-out war on the streets of Los Angeles, San Francisco and New York. Not blood, nor lust, nor wedding vows can come between McCain and his money...or his machine gun.. Tags: mobster"} +{"id": "80271", "title": "LOL", "year": 2012, "duration_min": 97, "rating": 5.9, "genres": "Drama, Comedy, Romance", "genres_pipe": "|Drama|Comedy|Romance|", "keywords": "coming of age, mother daughter relationship, teen movie, teenager, based on film, working mom, woman director", "tags_pipe": "|coming of age|mother daughter relationship|teen movie|teenager|based on film|working mom|woman director|", "overview": "In a world connected by YouTube, iTunes, and Facebook, Lola and her friends navigate the peer pressures of high school romance and friendship while dodging their sometimes overbearing and confused parents. When Lola's mom, Anne, \"accidentally\" reads her teenage daughter's racy journal, she realizes just how wide their communication gap has grown.", "text_for_embedding": "LOL (2012). Genres: Drama, Comedy, Romance. In a world connected by YouTube, iTunes, and Facebook, Lola and her friends navigate the peer pressures of high school romance and friendship while dodging their sometimes overbearing and confused parents. When Lola's mom, Anne, \"accidentally\" reads her teenage daughter's racy journal, she realizes just how wide their communication gap has grown.. Tags: coming of age, mother daughter relationship, teen movie, teenager, based on film, working mom, woman director"} +{"id": "4657", "title": "Jindabyne", "year": 2006, "duration_min": 123, "rating": 5.7, "genres": "Crime, Drama, Mystery, Thriller", "genres_pipe": "|Crime|Drama|Mystery|Thriller|", "keywords": "small town, fishing, male friendship, australia, marriage crisis, marriage, friendship, murder, australian aborigine, aboriginal, aborigine", "tags_pipe": "|small town|fishing|male friendship|australia|marriage crisis|marriage|friendship|murder|australian aborigine|aboriginal|aborigine|", "overview": "Stewart Kane, an Irishman living in the Australian town of Jindabyne, is on a fishing trip in isolated hill country with three other men when they discover the body of a murdered girl in the river. Rather than return to the town immediately, they continue fishing and report their gruesome find days later. The story of a murder and a marriage - a film about the things that haunt us.", "text_for_embedding": "Jindabyne (2006). Genres: Crime, Drama, Mystery, Thriller. Stewart Kane, an Irishman living in the Australian town of Jindabyne, is on a fishing trip in isolated hill country with three other men when they discover the body of a murdered girl in the river. Rather than return to the town immediately, they continue fishing and report their gruesome find days later. The story of a murder and a marriage - a film about the things that haunt us.. Tags: small town, fishing, male friendship, australia, marriage crisis, marriage, friendship, murder, australian aborigine, aboriginal, aborigine"} +{"id": "14395", "title": "Kabhi Alvida Naa Kehna", "year": 2006, "duration_min": 193, "rating": 6.1, "genres": "Drama, Romance", "genres_pipe": "|Drama|Romance|", "keywords": "adultery, extramarital affair", "tags_pipe": "|adultery|extramarital affair|", "overview": "Dev and Maya are both married to different people. Settled into a life of domestic ritual, and convinced that they are happy in their respective relationships, they still yearn for something deeper and more meaningful, which is precisely what they find in each other.", "text_for_embedding": "Kabhi Alvida Naa Kehna (2006). Genres: Drama, Romance. Dev and Maya are both married to different people. Settled into a life of domestic ritual, and convinced that they are happy in their respective relationships, they still yearn for something deeper and more meaningful, which is precisely what they find in each other.. Tags: adultery, extramarital affair"} +{"id": "24137", "title": "An Ideal Husband", "year": 1999, "duration_min": 97, "rating": 6.3, "genres": "Drama, Comedy, Romance", "genres_pipe": "|Drama|Comedy|Romance|", "keywords": "", "tags_pipe": "", "overview": "Sir Robert Chiltern is a successful Government minister, well-off and with a loving wife. All this is threatened when Mrs Cheveley appears in London with damning evidence of a past misdeed. Sir Robert turns for help to his friend Lord Goring, an apparently idle philanderer and the despair of his father. Goring knows the lady of old, and, for him, takes the whole thing pretty seriously.", "text_for_embedding": "An Ideal Husband (1999). Genres: Drama, Comedy, Romance. Sir Robert Chiltern is a successful Government minister, well-off and with a loving wife. All this is threatened when Mrs Cheveley appears in London with damning evidence of a past misdeed. Sir Robert turns for help to his friend Lord Goring, an apparently idle philanderer and the despair of his father. Goring knows the lady of old, and, for him, takes the whole thing pretty seriously.. Tags: "} +{"id": "190847", "title": "The Last Days on Mars", "year": 2013, "duration_min": 98, "rating": 5.2, "genres": "Science Fiction, Thriller, Horror", "genres_pipe": "|Science Fiction|Thriller|Horror|", "keywords": "mars, science fiction, zombie", "tags_pipe": "|mars|science fiction|zombie|", "overview": "On the last day of the first manned mission to Mars, a crew member of Tantalus Base believes he has made an astounding discovery – fossilized evidence of bacterial life. Unwilling to let the relief crew claims all the glory, he disobeys orders to pack up and goes out on an unauthorized expedition to collect further samples. But a routine excavation turns to disaster when the porous ground collapses and he falls into a deep crevice and near certain death. His devastated colleagues attempt to recover his body. However, when another vanishes, they start to suspect that the life-form they have discovered is not without danger.", "text_for_embedding": "The Last Days on Mars (2013). Genres: Science Fiction, Thriller, Horror. On the last day of the first manned mission to Mars, a crew member of Tantalus Base believes he has made an astounding discovery – fossilized evidence of bacterial life. Unwilling to let the relief crew claims all the glory, he disobeys orders to pack up and goes out on an unauthorized expedition to collect further samples. But a routine excavation turns to disaster when the porous ground collapses and he falls into a deep crevice and near certain death. His devastated colleagues attempt to recover his body. However, when another vanishes, they start to suspect that the life-form they have discovered is not without danger.. Tags: mars, science fiction, zombie"} +{"id": "11056", "title": "Darkness", "year": 2002, "duration_min": 102, "rating": 5.6, "genres": "Horror", "genres_pipe": "|Horror|", "keywords": "loss of child, solar eclipse, haunted house, family, psychopathy", "tags_pipe": "|loss of child|solar eclipse|haunted house|family|psychopathy|", "overview": "A teenage girl moves into a remote countryside house with her family, only to discover that their gloomy new home has a horrifying past that threatens to destroy the family.", "text_for_embedding": "Darkness (2002). Genres: Horror. A teenage girl moves into a remote countryside house with her family, only to discover that their gloomy new home has a horrifying past that threatens to destroy the family.. Tags: loss of child, solar eclipse, haunted house, family, psychopathy"} +{"id": "62", "title": "2001: A Space Odyssey", "year": 1968, "duration_min": 149, "rating": 7.9, "genres": "Science Fiction, Mystery, Adventure", "genres_pipe": "|Science Fiction|Mystery|Adventure|", "keywords": "moon, jupiter, artificial intelligence, man vs machine, technology, super computer, human being, space travel, space mission, moon base, astronaut, evolution, monolith, space station", "tags_pipe": "|moon|jupiter|artificial intelligence|man vs machine|technology|super computer|human being|space travel|space mission|moon base|astronaut|evolution|monolith|space station|", "overview": "Humanity finds a mysterious object buried beneath the lunar surface and sets off to find its origins with the help of HAL 9000, the world's most advanced super computer.", "text_for_embedding": "2001: A Space Odyssey (1968). Genres: Science Fiction, Mystery, Adventure. Humanity finds a mysterious object buried beneath the lunar surface and sets off to find its origins with the help of HAL 9000, the world's most advanced super computer.. Tags: moon, jupiter, artificial intelligence, man vs machine, technology, super computer, human being, space travel, space mission, moon base, astronaut, evolution, monolith, space station"} +{"id": "601", "title": "E.T. the Extra-Terrestrial", "year": 1982, "duration_min": 115, "rating": 7.3, "genres": "Science Fiction, Adventure, Family, Fantasy", "genres_pipe": "|Science Fiction|Adventure|Family|Fantasy|", "keywords": "farewell, homesickness, nasa, extraterrestrial technology, operation, space marine, loss of father, hiding place, riding a bicycle, flying saucer, prosecution, halloween, flowerpot, finger, single", "tags_pipe": "|farewell|homesickness|nasa|extraterrestrial technology|operation|space marine|loss of father|hiding place|riding a bicycle|flying saucer|prosecution|halloween|flowerpot|finger|single|", "overview": "After a gentle alien becomes stranded on Earth, the being is discovered and befriended by a young boy named Elliott. Bringing the extraterrestrial into his suburban California house, Elliott introduces E.T., as the alien is dubbed, to his brother and his little sister, Gertie, and the children decide to keep its existence a secret. Soon, however, E.T. falls ill, resulting in government intervention and a dire situation for both Elliott and the alien.", "text_for_embedding": "E.T. the Extra-Terrestrial (1982). Genres: Science Fiction, Adventure, Family, Fantasy. After a gentle alien becomes stranded on Earth, the being is discovered and befriended by a young boy named Elliott. Bringing the extraterrestrial into his suburban California house, Elliott introduces E.T., as the alien is dubbed, to his brother and his little sister, Gertie, and the children decide to keep its existence a secret. Soon, however, E.T. falls ill, resulting in government intervention and a dire situation for both Elliott and the alien.. Tags: farewell, homesickness, nasa, extraterrestrial technology, operation, space marine, loss of father, hiding place, riding a bicycle, flying saucer, prosecution, halloween, flowerpot, finger, single"} +{"id": "13067", "title": "In the Land of Women", "year": 2007, "duration_min": 97, "rating": 5.8, "genres": "Romance, Comedy, Drama", "genres_pipe": "|Romance|Comedy|Drama|", "keywords": "infidelity, party, love, cancer, neighbor, writer, teenager, illness, flashback, actress", "tags_pipe": "|infidelity|party|love|cancer|neighbor|writer|teenager|illness|flashback|actress|", "overview": "After a bad breakup with his girlfriend leaves him heartbroken, Carter Webb moves to Michigan to take care of his ailing grandmother. Once there, he gets mixed up in the lives of the mother and daughters who live across the street.", "text_for_embedding": "In the Land of Women (2007). Genres: Romance, Comedy, Drama. After a bad breakup with his girlfriend leaves him heartbroken, Carter Webb moves to Michigan to take care of his ailing grandmother. Once there, he gets mixed up in the lives of the mother and daughters who live across the street.. Tags: infidelity, party, love, cancer, neighbor, writer, teenager, illness, flashback, actress"} +{"id": "25379", "title": "The Blue Butterfly", "year": 2004, "duration_min": 97, "rating": 6.8, "genres": "Adventure, Drama, Family", "genres_pipe": "|Adventure|Drama|Family|", "keywords": "rain, butterfly, rainforest, woman director, insects, insectarium", "tags_pipe": "|rain|butterfly|rainforest|woman director|insects|insectarium|", "overview": "Based on a true story, The Blue Butterfly tells the story of a terminally ill 10-year-old boy whose dream is to catch the most beautiful butterfly on Earth, the mythic and elusive Blue Morpho. His mother persuades a renowned entomologist to take them on a trip to the jungle to search for the butterfly, leading to an adventure that will transform their lives", "text_for_embedding": "The Blue Butterfly (2004). Genres: Adventure, Drama, Family. Based on a true story, The Blue Butterfly tells the story of a terminally ill 10-year-old boy whose dream is to catch the most beautiful butterfly on Earth, the mythic and elusive Blue Morpho. His mother persuades a renowned entomologist to take them on a trip to the jungle to search for the butterfly, leading to an adventure that will transform their lives. Tags: rain, butterfly, rainforest, woman director, insects, insectarium"} +{"id": "88641", "title": "There Goes My Baby", "year": 1994, "duration_min": 99, "rating": 8.5, "genres": "Drama, Comedy", "genres_pipe": "|Drama|Comedy|", "keywords": "", "tags_pipe": "", "overview": "A group of high school seniors meets in the summer of 1965 and all struggle with the choices they have to make.", "text_for_embedding": "There Goes My Baby (1994). Genres: Drama, Comedy. A group of high school seniors meets in the summer of 1965 and all struggle with the choices they have to make.. Tags: "} +{"id": "58051", "title": "Housefull", "year": 2010, "duration_min": 135, "rating": 5.2, "genres": "Drama, Comedy, Romance, Foreign", "genres_pipe": "|Drama|Comedy|Romance|Foreign|", "keywords": "", "tags_pipe": "", "overview": "Believing himself to be a jinx and bringing bad luck upon himself and others, a man attempts to find true love, but ends up in very complicated relationships.", "text_for_embedding": "Housefull (2010). Genres: Drama, Comedy, Romance, Foreign. Believing himself to be a jinx and bringing bad luck upon himself and others, a man attempts to find true love, but ends up in very complicated relationships.. Tags: "} +{"id": "14877", "title": "September Dawn", "year": 2007, "duration_min": 110, "rating": 5.0, "genres": "Drama, Action, History, Western, Romance", "genres_pipe": "|Drama|Action|History|Western|Romance|", "keywords": "", "tags_pipe": "", "overview": "A story set against the Mountain Meadows Massacre, the film is based upon the tragedy which occurred in Utah in 1857. A group of settlers, traveling on wagons, was murdered by the native Mormons. All together, about 140 souls of men, women and children, were taken.", "text_for_embedding": "September Dawn (2007). Genres: Drama, Action, History, Western, Romance. A story set against the Mountain Meadows Massacre, the film is based upon the tragedy which occurred in Utah in 1857. A group of settlers, traveling on wagons, was murdered by the native Mormons. All together, about 140 souls of men, women and children, were taken.. Tags: "} +{"id": "96399", "title": "For Greater Glory - The True Story of Cristiada", "year": 2012, "duration_min": 145, "rating": 6.4, "genres": "History, Drama", "genres_pipe": "|History|Drama|", "keywords": "duringcreditsstinger", "tags_pipe": "|duringcreditsstinger|", "overview": "A chronicle of the Cristeros War (1926-1929), which was touched off by a rebellion against the Mexican government's attempt to secularize the country.", "text_for_embedding": "For Greater Glory - The True Story of Cristiada (2012). Genres: History, Drama. A chronicle of the Cristeros War (1926-1929), which was touched off by a rebellion against the Mexican government's attempt to secularize the country.. Tags: duringcreditsstinger"} +{"id": "304410", "title": "The Bélier Family", "year": 2014, "duration_min": 105, "rating": 7.0, "genres": "Comedy, Drama, Music", "genres_pipe": "|Comedy|Drama|Music|", "keywords": "deafness, music, coming of age, teenage girl, singing, family, sign language", "tags_pipe": "|deafness|music|coming of age|teenage girl|singing|family|sign language|", "overview": "The whole Bélier family is deaf, except for sixteen year old Paula who is the important translator in her parents' day to day life especially when it comes to matters concerning the family farm. When her music teacher discovers she has a fantastic singing voice and she gets an opportunity to enter a big Radio France contest the whole family's future is set up for big changes.", "text_for_embedding": "The Bélier Family (2014). Genres: Comedy, Drama, Music. The whole Bélier family is deaf, except for sixteen year old Paula who is the important translator in her parents' day to day life especially when it comes to matters concerning the family farm. When her music teacher discovers she has a fantastic singing voice and she gets an opportunity to enter a big Radio France contest the whole family's future is set up for big changes.. Tags: deafness, music, coming of age, teenage girl, singing, family, sign language"} +{"id": "489", "title": "Good Will Hunting", "year": 1997, "duration_min": 126, "rating": 7.9, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "baseball, boston, professor, m.i.t., harvard university, ambition, mathematics, genius, love, friends, janitor, irish, psychologist, university, courtroom", "tags_pipe": "|baseball|boston|professor|m.i.t.|harvard university|ambition|mathematics|genius|love|friends|janitor|irish|psychologist|university|courtroom|", "overview": "Will Hunting has a genius-level IQ but chooses to work as a janitor at MIT. When he solves a difficult graduate-level math problem, his talents are discovered by Professor Gerald Lambeau, who decides to help the misguided youth reach his potential. When Will is arrested for attacking a police officer, Professor Lambeau makes a deal to get leniency for him if he will get treatment from therapist Sean Maguire.", "text_for_embedding": "Good Will Hunting (1997). Genres: Drama. Will Hunting has a genius-level IQ but chooses to work as a janitor at MIT. When he solves a difficult graduate-level math problem, his talents are discovered by Professor Gerald Lambeau, who decides to help the misguided youth reach his potential. When Will is arrested for attacking a police officer, Professor Lambeau makes a deal to get leniency for him if he will get treatment from therapist Sean Maguire.. Tags: baseball, boston, professor, m.i.t., harvard university, ambition, mathematics, genius, love, friends, janitor, irish, psychologist, university, courtroom"} +{"id": "373314", "title": "Misconduct", "year": 2016, "duration_min": 106, "rating": 5.3, "genres": "Drama, Thriller", "genres_pipe": "|Drama|Thriller|", "keywords": "", "tags_pipe": "", "overview": "An ambitious lawyer finds himself caught in a power struggle between a corrupt pharmaceutical executive and his firm’s senior partner. When the case takes a deadly turn, he must race to uncover the truth before he loses everything.", "text_for_embedding": "Misconduct (2016). Genres: Drama, Thriller. An ambitious lawyer finds himself caught in a power struggle between a corrupt pharmaceutical executive and his firm’s senior partner. When the case takes a deadly turn, he must race to uncover the truth before he loses everything.. Tags: "} +{"id": "214", "title": "Saw III", "year": 2006, "duration_min": 108, "rating": 6.1, "genres": "Horror, Thriller, Crime", "genres_pipe": "|Horror|Thriller|Crime|", "keywords": "brain tumor, nudity, suffocation, mutilation, severed foot, famous theme, shot in the face", "tags_pipe": "|brain tumor|nudity|suffocation|mutilation|severed foot|famous theme|shot in the face|", "overview": "Jigsaw has disappeared. Along with his new apprentice Amanda, the puppet-master behind the cruel, intricate games that have terrified a community and baffled police has once again eluded capture and vanished. While city detective scramble to locate him, Doctor Lynn Denlon and Jeff Reinhart are unaware that they are about to become the latest pawns on his vicious chessboard.", "text_for_embedding": "Saw III (2006). Genres: Horror, Thriller, Crime. Jigsaw has disappeared. Along with his new apprentice Amanda, the puppet-master behind the cruel, intricate games that have terrified a community and baffled police has once again eluded capture and vanished. While city detective scramble to locate him, Doctor Lynn Denlon and Jeff Reinhart are unaware that they are about to become the latest pawns on his vicious chessboard.. Tags: brain tumor, nudity, suffocation, mutilation, severed foot, famous theme, shot in the face"} +{"id": "10890", "title": "Stripes", "year": 1981, "duration_min": 106, "rating": 6.5, "genres": "Action, Comedy", "genres_pipe": "|Action|Comedy|", "keywords": "date, ex-girlfriend, u.s. army, military spoof", "tags_pipe": "|date|ex-girlfriend|u.s. army|military spoof|", "overview": "John Winger, an indolent sad sack in his 30s, impulsively joins the U.S. Army after losing his job, his girlfriend and his apartment.", "text_for_embedding": "Stripes (1981). Genres: Action, Comedy. John Winger, an indolent sad sack in his 30s, impulsively joins the U.S. Army after losing his job, his girlfriend and his apartment.. Tags: date, ex-girlfriend, u.s. army, military spoof"} +{"id": "1588", "title": "Bring It On", "year": 2000, "duration_min": 98, "rating": 5.8, "genres": "Comedy", "genres_pipe": "|Comedy|", "keywords": "cheerleader, sport, high school, teenage girl, cheerleading, cheering crowd, duringcreditsstinger", "tags_pipe": "|cheerleader|sport|high school|teenage girl|cheerleading|cheering crowd|duringcreditsstinger|", "overview": "The Toro cheerleading squad from Rancho Carne High School in San Diego has got spirit, spunk, sass and a killer routine that's sure to land them the national championship trophy for the sixth year in a row. But for newly-elected team captain, the Toros' road to total cheer glory takes a shady turn when she discovers that their perfectly-choreographed routines were in fact stolen.", "text_for_embedding": "Bring It On (2000). Genres: Comedy. The Toro cheerleading squad from Rancho Carne High School in San Diego has got spirit, spunk, sass and a killer routine that's sure to land them the national championship trophy for the sixth year in a row. But for newly-elected team captain, the Toros' road to total cheer glory takes a shady turn when she discovers that their perfectly-choreographed routines were in fact stolen.. Tags: cheerleader, sport, high school, teenage girl, cheerleading, cheering crowd, duringcreditsstinger"} +{"id": "316727", "title": "The Purge: Election Year", "year": 2016, "duration_min": 105, "rating": 6.1, "genres": "Action, Horror, Thriller", "genres_pipe": "|Action|Horror|Thriller|", "keywords": "dystopia, sequel, legalized murder", "tags_pipe": "|dystopia|sequel|legalized murder|", "overview": "Two years after choosing not to kill the man who killed his son, former police sergeant Leo Barnes has become head of security for Senator Charlene Roan, the front runner in the next Presidential election due to her vow to eliminate the Purge. On the night of what should be the final Purge, a betrayal from within the government forces Barnes and Roan out onto the street where they must fight to survive the night.", "text_for_embedding": "The Purge: Election Year (2016). Genres: Action, Horror, Thriller. Two years after choosing not to kill the man who killed his son, former police sergeant Leo Barnes has become head of security for Senator Charlene Roan, the front runner in the next Presidential election due to her vow to eliminate the Purge. On the night of what should be the final Purge, a betrayal from within the government forces Barnes and Roan out onto the street where they must fight to survive the night.. Tags: dystopia, sequel, legalized murder"} +{"id": "10314", "title": "She's All That", "year": 1999, "duration_min": 95, "rating": 5.7, "genres": "Comedy, Romance", "genres_pipe": "|Comedy|Romance|", "keywords": "tv star, jeep, volleyball, misfit, teen angst, house party, teen movie, teenager, avant-garde, popularity, little people, high school student, young love, prom queen, pygmalion", "tags_pipe": "|tv star|jeep|volleyball|misfit|teen angst|house party|teen movie|teenager|avant-garde|popularity|little people|high school student|young love|prom queen|pygmalion|", "overview": "High school hotshot Zach Siler is the envy of his peers. But his popularity declines sharply when his cheerleader girlfriend, Taylor, leaves him for sleazy reality-television star Brock Hudson. Desperate to revive his fading reputation, Siler agrees to a seemingly impossible challenge. He has six weeks to gain the trust of nerdy outcast Laney Boggs -- and help her to become the school's next prom queen.", "text_for_embedding": "She's All That (1999). Genres: Comedy, Romance. High school hotshot Zach Siler is the envy of his peers. But his popularity declines sharply when his cheerleader girlfriend, Taylor, leaves him for sleazy reality-television star Brock Hudson. Desperate to revive his fading reputation, Siler agrees to a seemingly impossible challenge. He has six weeks to gain the trust of nerdy outcast Laney Boggs -- and help her to become the school's next prom queen.. Tags: tv star, jeep, volleyball, misfit, teen angst, house party, teen movie, teenager, avant-garde, popularity, little people, high school student, young love, prom queen, pygmalion"} +{"id": "663", "title": "Saw IV", "year": 2007, "duration_min": 93, "rating": 5.9, "genres": "Horror, Thriller, Crime", "genres_pipe": "|Horror|Thriller|Crime|", "keywords": "ice, victim, pain, games, psychopath, blood, electric chair, doctor, torture, violence, police officer, fbi agent, female corpse", "tags_pipe": "|ice|victim|pain|games|psychopath|blood|electric chair|doctor|torture|violence|police officer|fbi agent|female corpse|", "overview": "Jigsaw and his apprentice Amanda are dead. Now, upon the news of Detective Kerry's murder, two seasoned FBI profilers, Agent Strahm and Agent Perez, arrive in the terrified community to assist the veteran Detective Hoffman in sifting through Jigsaw's latest grisly remains and piecing together the puzzle. However, when SWAT Commander Rigg is abducted and thrust into a game, the last officer untouched by Jigsaw has but ninety minutes to overcome a series of demented traps and save an old friend...or face the deadly consequences.", "text_for_embedding": "Saw IV (2007). Genres: Horror, Thriller, Crime. Jigsaw and his apprentice Amanda are dead. Now, upon the news of Detective Kerry's murder, two seasoned FBI profilers, Agent Strahm and Agent Perez, arrive in the terrified community to assist the veteran Detective Hoffman in sifting through Jigsaw's latest grisly remains and piecing together the puzzle. However, when SWAT Commander Rigg is abducted and thrust into a game, the last officer untouched by Jigsaw has but ninety minutes to overcome a series of demented traps and save an old friend...or face the deadly consequences.. Tags: ice, victim, pain, games, psychopath, blood, electric chair, doctor, torture, violence, police officer, fbi agent, female corpse"} +{"id": "11804", "title": "White Noise", "year": 2005, "duration_min": 101, "rating": 5.6, "genres": "Drama, Horror, Thriller", "genres_pipe": "|Drama|Horror|Thriller|", "keywords": "wheelchair, time, voice, inspector, supernatural, loss, remote control, lifting person in air, paranormal phenomena, death, waterfront, audio cassette, logbook, electronic voice phenomena, near miss", "tags_pipe": "|wheelchair|time|voice|inspector|supernatural|loss|remote control|lifting person in air|paranormal phenomena|death|waterfront|audio cassette|logbook|electronic voice phenomena|near miss|", "overview": "An architect's desire to speak with his wife from beyond the grave using EVP (Electronic Voice Phenomenon), becomes an obsession with supernatural repercussions.", "text_for_embedding": "White Noise (2005). Genres: Drama, Horror, Thriller. An architect's desire to speak with his wife from beyond the grave using EVP (Electronic Voice Phenomenon), becomes an obsession with supernatural repercussions.. Tags: wheelchair, time, voice, inspector, supernatural, loss, remote control, lifting person in air, paranormal phenomena, death, waterfront, audio cassette, logbook, electronic voice phenomena, near miss"} +{"id": "16781", "title": "Madea's Family Reunion", "year": 2006, "duration_min": 110, "rating": 6.0, "genres": "Drama, Comedy, Romance", "genres_pipe": "|Drama|Comedy|Romance|", "keywords": "spanking, based on play", "tags_pipe": "|spanking|based on play|", "overview": "Based upon Tyler Perry's acclaimed stage production, Madea's Family Reunion continues the adventures of Southern matriarch Madea. She has just been court ordered to be in charge of Nikki, a rebellious runaway, her nieces, Lisa and Vanessa, are suffering relationship trouble, and through it all, she has to organize her family reunion.", "text_for_embedding": "Madea's Family Reunion (2006). Genres: Drama, Comedy, Romance. Based upon Tyler Perry's acclaimed stage production, Madea's Family Reunion continues the adventures of Southern matriarch Madea. She has just been court ordered to be in charge of Nikki, a rebellious runaway, her nieces, Lisa and Vanessa, are suffering relationship trouble, and through it all, she has to organize her family reunion.. Tags: spanking, based on play"} +{"id": "11873", "title": "The Color of Money", "year": 1986, "duration_min": 119, "rating": 6.7, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "bar, billard, talent, hustler, sport", "tags_pipe": "|bar|billard|talent|hustler|sport|", "overview": "Former pool hustler \"Fast Eddie\" Felson decides he wants to return to the game by taking a pupil. He meets talented but green Vincent Lauria and proposes a partnership. As they tour pool halls, Eddie teaches Vincent the tricks of scamming, but he eventually grows frustrated with Vincent's showboat antics, leading to an argument and a falling-out. Eddie takes up playing again and soon crosses paths with Vincent as an opponent.", "text_for_embedding": "The Color of Money (1986). Genres: Drama. Former pool hustler \"Fast Eddie\" Felson decides he wants to return to the game by taking a pupil. He meets talented but green Vincent Lauria and proposes a partnership. As they tour pool halls, Eddie teaches Vincent the tricks of scamming, but he eventually grows frustrated with Vincent's showboat antics, leading to an argument and a falling-out. Eddie takes up playing again and soon crosses paths with Vincent as an opponent.. Tags: bar, billard, talent, hustler, sport"} +{"id": "9289", "title": "The Longest Day", "year": 1962, "duration_min": 178, "rating": 7.2, "genres": "Action, Drama, History, War", "genres_pipe": "|Action|Drama|History|War|", "keywords": "world war ii, normandy, allied, widerstand, steel helmet, soldier", "tags_pipe": "|world war ii|normandy|allied|widerstand|steel helmet|soldier|", "overview": "The retelling of June 6, 1944, from the perspectives of the Germans, US, British, Canadians, and the Free French. Marshall Erwin Rommel, touring the defenses being established as part of the Reich's Atlantic Wall, notes to his officers that when the Allied invasion comes they must be stopped on the beach. \"For the Allies as well as the Germans, it will be the longest day\"", "text_for_embedding": "The Longest Day (1962). Genres: Action, Drama, History, War. The retelling of June 6, 1944, from the perspectives of the Germans, US, British, Canadians, and the Free French. Marshall Erwin Rommel, touring the defenses being established as part of the Reich's Atlantic Wall, notes to his officers that when the Allied invasion comes they must be stopped on the beach. \"For the Allies as well as the Germans, it will be the longest day\". Tags: world war ii, normandy, allied, widerstand, steel helmet, soldier"} +{"id": "10414", "title": "The Mighty Ducks", "year": 1992, "duration_min": 101, "rating": 6.4, "genres": "Comedy, Family", "genres_pipe": "|Comedy|Family|", "keywords": "sports team, sport, ice hockey, hockey game, winning, feel-good ending, the big game", "tags_pipe": "|sports team|sport|ice hockey|hockey game|winning|feel-good ending|the big game|", "overview": "After reckless young lawyer Gordon Bombay gets arrested for drunk driving, he must coach a kids hockey team for his community service. Gordon has experience on the ice, but isn't eager to return to hockey, a point hit home by his tense dealings with his own former coach, Jack Reilly. The reluctant Gordon eventually grows to appreciate his team, which includes promising young Charlie Conway, and leads them to take on Reilly's tough players.", "text_for_embedding": "The Mighty Ducks (1992). Genres: Comedy, Family. After reckless young lawyer Gordon Bombay gets arrested for drunk driving, he must coach a kids hockey team for his community service. Gordon has experience on the ice, but isn't eager to return to hockey, a point hit home by his tense dealings with his own former coach, Jack Reilly. The reluctant Gordon eventually grows to appreciate his team, which includes promising young Charlie Conway, and leads them to take on Reilly's tough players.. Tags: sports team, sport, ice hockey, hockey game, winning, feel-good ending, the big game"} +{"id": "1970", "title": "The Grudge", "year": 2004, "duration_min": 92, "rating": 5.8, "genres": "Horror, Mystery, Thriller", "genres_pipe": "|Horror|Mystery|Thriller|", "keywords": "male nudity, nurse, japanese, house, remake, curse, old woman, catatonia, ghost child, remake of japanese film", "tags_pipe": "|male nudity|nurse|japanese|house|remake|curse|old woman|catatonia|ghost child|remake of japanese film|", "overview": "American nurse, Karen Davis moves to Tokyo and encounters a vengeful supernatural spirit known as The Grudge that often possesses its victims. When a series of horrifying and mysterious deaths occur – with the spirit passing its curse onto each victim - Karen must find away to break the spell before she becomes the spirit's next victim.", "text_for_embedding": "The Grudge (2004). Genres: Horror, Mystery, Thriller. American nurse, Karen Davis moves to Tokyo and encounters a vengeful supernatural spirit known as The Grudge that often possesses its victims. When a series of horrifying and mysterious deaths occur – with the spirit passing its curse onto each victim - Karen must find away to break the spell before she becomes the spirit's next victim.. Tags: male nudity, nurse, japanese, house, remake, curse, old woman, catatonia, ghost child, remake of japanese film"} +{"id": "9614", "title": "Happy Gilmore", "year": 1996, "duration_min": 92, "rating": 6.5, "genres": "Comedy", "genres_pipe": "|Comedy|", "keywords": "loss of mother, loss of father, golf, sport, taxes", "tags_pipe": "|loss of mother|loss of father|golf|sport|taxes|", "overview": "Failed hockey player-turned-golf whiz Happy Gilmore -- whose unconventional approach and antics on the grass courts the ire of rival Shooter McGavin -- is determined to win a PGA tournament so he can save his granny's house with the prize money. Meanwhile, an attractive tour publicist tries to soften Happy's image.", "text_for_embedding": "Happy Gilmore (1996). Genres: Comedy. Failed hockey player-turned-golf whiz Happy Gilmore -- whose unconventional approach and antics on the grass courts the ire of rival Shooter McGavin -- is determined to win a PGA tournament so he can save his granny's house with the prize money. Meanwhile, an attractive tour publicist tries to soften Happy's image.. Tags: loss of mother, loss of father, golf, sport, taxes"} +{"id": "8922", "title": "Jeepers Creepers", "year": 2001, "duration_min": 90, "rating": 6.1, "genres": "Horror, Thriller", "genres_pipe": "|Horror|Thriller|", "keywords": "mass murder, song, brother, sister, aftercreditsstinger", "tags_pipe": "|mass murder|song|brother|sister|aftercreditsstinger|", "overview": "A college-age brother and sister get more than they bargained for on their road trip home from spring break. When the bickering siblings witness a creepy truck driver tossing body bags into a sewer near an abandoned church, they investigate. Bad move! Opening a Pandora's Box of unspeakable evil, the pair must flee for their lives -- with a monstrous \"shape\" in hot pursuit.", "text_for_embedding": "Jeepers Creepers (2001). Genres: Horror, Thriller. A college-age brother and sister get more than they bargained for on their road trip home from spring break. When the bickering siblings witness a creepy truck driver tossing body bags into a sewer near an abandoned church, they investigate. Bad move! Opening a Pandora's Box of unspeakable evil, the pair must flee for their lives -- with a monstrous \"shape\" in hot pursuit.. Tags: mass murder, song, brother, sister, aftercreditsstinger"} +{"id": "1648", "title": "Bill & Ted's Excellent Adventure", "year": 1989, "duration_min": 90, "rating": 6.7, "genres": "Adventure, Comedy, Science Fiction", "genres_pipe": "|Adventure|Comedy|Science Fiction|", "keywords": "jealousy, journey in the past, sigmund freud, time travel, heavy metal, socrates, billy the kid, school presentation, rhinoceros, phone booth, world peace, past, history, metal, best friend", "tags_pipe": "|jealousy|journey in the past|sigmund freud|time travel|heavy metal|socrates|billy the kid|school presentation|rhinoceros|phone booth|world peace|past|history|metal|best friend|", "overview": "In the small town of San Dimas, a few miles away from Los Angeles, there are two nearly brain dead teenage boys going by the names of Bill S, Preston ESQ. and Ted Theodore Logan, they have a dream together of starting their own rock and roll band called the \"Wyld Stallyns\". Unfortunately, they are still in high school and on the verge of failing out of their school as well, and if they do not pass their upcoming history report, they will be separated as a result of Ted's father sending him to military school. But, what Bill and Ted do not know is that they must stay together to save the future. So, a man from the future named Rufus came to help them pass their report. So, both Bill and Ted decided to gather up historical figures which they need for their report. They are hoping that this will help them pass their report so they can stay together.", "text_for_embedding": "Bill & Ted's Excellent Adventure (1989). Genres: Adventure, Comedy, Science Fiction. In the small town of San Dimas, a few miles away from Los Angeles, there are two nearly brain dead teenage boys going by the names of Bill S, Preston ESQ. and Ted Theodore Logan, they have a dream together of starting their own rock and roll band called the \"Wyld Stallyns\". Unfortunately, they are still in high school and on the verge of failing out of their school as well, and if they do not pass their upcoming history report, they will be separated as a result of Ted's father sending him to military school. But, what Bill and Ted do not know is that they must stay together to save the future. So, a man from the future named Rufus came to help them pass their report. So, both Bill and Ted decided to gather up historical figures which they need for their report. They are hoping that this will help them pass their report so they can stay together.. Tags: jealousy, journey in the past, sigmund freud, time travel, heavy metal, socrates, billy the kid, school presentation, rhinoceros, phone booth, world peace, past, history, metal, best friend"} +{"id": "17917", "title": "Oliver!", "year": 1968, "duration_min": 153, "rating": 7.0, "genres": "Drama, Family, Music", "genres_pipe": "|Drama|Family|Music|", "keywords": "pickpocket, musical, victorian england, orphan", "tags_pipe": "|pickpocket|musical|victorian england|orphan|", "overview": "Musical adaptation of Charles Dickens' Oliver Twist, a classic tale of an orphan who runs away from the workhouse and joins up with a group of boys headed by the Artful Dodger and trained to be pickpockets by master thief Fagin.", "text_for_embedding": "Oliver! (1968). Genres: Drama, Family, Music. Musical adaptation of Charles Dickens' Oliver Twist, a classic tale of an orphan who runs away from the workhouse and joins up with a group of boys headed by the Artful Dodger and trained to be pickpockets by master thief Fagin.. Tags: pickpocket, musical, victorian england, orphan"} +{"id": "74534", "title": "The Best Exotic Marigold Hotel", "year": 2011, "duration_min": 124, "rating": 6.9, "genres": "Drama, Comedy", "genres_pipe": "|Drama|Comedy|", "keywords": "hotel, based on novel, india, ensemble cast, elderly, jaipur india, personal growth, outsourcing", "tags_pipe": "|hotel|based on novel|india|ensemble cast|elderly|jaipur india|personal growth|outsourcing|", "overview": "British retirees travel to India to take up residence in what they believe is a newly restored hotel. Less luxurious than its advertisements, the Marigold Hotel nevertheless slowly begins to charm in unexpected ways as the residents find new purpose in their old age.", "text_for_embedding": "The Best Exotic Marigold Hotel (2011). Genres: Drama, Comedy. British retirees travel to India to take up residence in what they believe is a newly restored hotel. Less luxurious than its advertisements, the Marigold Hotel nevertheless slowly begins to charm in unexpected ways as the residents find new purpose in their old age.. Tags: hotel, based on novel, india, ensemble cast, elderly, jaipur india, personal growth, outsourcing"} +{"id": "19405", "title": "Recess: School's Out", "year": 2001, "duration_min": 83, "rating": 6.6, "genres": "Science Fiction, Animation, Comedy, Family", "genres_pipe": "|Science Fiction|Animation|Comedy|Family|", "keywords": "holiday, elementary school, friends, based on tv series, summer, classmates, recess", "tags_pipe": "|holiday|elementary school|friends|based on tv series|summer|classmates|recess|", "overview": "Recess: School's Out is a 2001 animated film based on the Disney television series Recess. This film was produced by Walt Disney Pictures and was released theatrically nationwide on February 16, 2001.It's the most exciting time of year at Third Street Elementary-- the end of the School Year! But boredom quickly sets in for protagonist TJ Detweiler, as his friends are headed for Summer Camp. One day, while passing by the school on his bike, he notices a green glow coming from the school's auditorium. This is the work of the insidious ex-principal of Third Street, Phillium Benedict and his gang of ninjas and secret service look-alikes! Benedict is planning to get rid of Summer Vacation using his newly-acquired Tractor Beam, which he stole from the US Military Base in an effort to raise US Test Scores, and it's up to the Recess Gang to stop him! In the end.", "text_for_embedding": "Recess: School's Out (2001). Genres: Science Fiction, Animation, Comedy, Family. Recess: School's Out is a 2001 animated film based on the Disney television series Recess. This film was produced by Walt Disney Pictures and was released theatrically nationwide on February 16, 2001.It's the most exciting time of year at Third Street Elementary-- the end of the School Year! But boredom quickly sets in for protagonist TJ Detweiler, as his friends are headed for Summer Camp. One day, while passing by the school on his bike, he notices a green glow coming from the school's auditorium. This is the work of the insidious ex-principal of Third Street, Phillium Benedict and his gang of ninjas and secret service look-alikes! Benedict is planning to get rid of Summer Vacation using his newly-acquired Tractor Beam, which he stole from the US Military Base in an effort to raise US Test Scores, and it's up to the Recess Gang to stop him! In the end.. Tags: holiday, elementary school, friends, based on tv series, summer, classmates, recess"} +{"id": "9355", "title": "Mad Max Beyond Thunderdome", "year": 1985, "duration_min": 107, "rating": 5.9, "genres": "Action, Adventure, Science Fiction", "genres_pipe": "|Action|Adventure|Science Fiction|", "keywords": "arena, sandstorm, dystopia, oasis, sequel, post nuclear, ozploitation", "tags_pipe": "|arena|sandstorm|dystopia|oasis|sequel|post nuclear|ozploitation|", "overview": "Mad Max becomes a pawn in a decadent oasis of a technological society, and when exiled, becomes the deliverer of a colony of children.", "text_for_embedding": "Mad Max Beyond Thunderdome (1985). Genres: Action, Adventure, Science Fiction. Mad Max becomes a pawn in a decadent oasis of a technological society, and when exiled, becomes the deliverer of a colony of children.. Tags: arena, sandstorm, dystopia, oasis, sequel, post nuclear, ozploitation"} +{"id": "10999", "title": "Commando", "year": 1985, "duration_min": 90, "rating": 6.4, "genres": "Action, Adventure, Thriller", "genres_pipe": "|Action|Adventure|Thriller|", "keywords": "kidnapping, lone wolf, daughter, father, rescue mission", "tags_pipe": "|kidnapping|lone wolf|daughter|father|rescue mission|", "overview": "John Matrix, the former leader of a special commando strike force that always got the toughest jobs done, is forced back into action when his young daughter is kidnapped. To find her, Matrix has to fight his way through an array of punks, killers, one of his former commandos, and a fully equipped private army. With the help of a feisty stewardess and an old friend, Matrix has only a few hours to overcome his greatest challenge: finding his daughter before she's killed.", "text_for_embedding": "Commando (1985). Genres: Action, Adventure, Thriller. John Matrix, the former leader of a special commando strike force that always got the toughest jobs done, is forced back into action when his young daughter is kidnapped. To find her, Matrix has to fight his way through an array of punks, killers, one of his former commandos, and a fully equipped private army. With the help of a feisty stewardess and an old friend, Matrix has only a few hours to overcome his greatest challenge: finding his daughter before she's killed.. Tags: kidnapping, lone wolf, daughter, father, rescue mission"} +{"id": "321258", "title": "The Boy", "year": 2016, "duration_min": 97, "rating": 5.8, "genres": "Horror, Mystery, Thriller", "genres_pipe": "|Horror|Mystery|Thriller|", "keywords": "suicide, england, fire, country house, shower, nanny, mask, boy, murder, mansion, violence, doll, burn victim, secret passageway, broken mirror", "tags_pipe": "|suicide|england|fire|country house|shower|nanny|mask|boy|murder|mansion|violence|doll|burn victim|secret passageway|broken mirror|", "overview": "A nanny, working for a family whose son has just passed away, finds herself put in charge of caring for a lifelike doll that the couple treat as a real child.", "text_for_embedding": "The Boy (2016). Genres: Horror, Mystery, Thriller. A nanny, working for a family whose son has just passed away, finds herself put in charge of caring for a lifelike doll that the couple treat as a real child.. Tags: suicide, england, fire, country house, shower, nanny, mask, boy, murder, mansion, violence, doll, burn victim, secret passageway, broken mirror"} +{"id": "44040", "title": "Devil", "year": 2010, "duration_min": 80, "rating": 5.8, "genres": "Horror, Mystery, Thriller", "genres_pipe": "|Horror|Mystery|Thriller|", "keywords": "claustrophobia, trapped in an elevator", "tags_pipe": "|claustrophobia|trapped in an elevator|", "overview": "A group of people trapped in a elevator realizes that the devil is among them.", "text_for_embedding": "Devil (2010). Genres: Horror, Mystery, Thriller. A group of people trapped in a elevator realizes that the devil is among them.. Tags: claustrophobia, trapped in an elevator"} +{"id": "10426", "title": "Friday After Next", "year": 2002, "duration_min": 85, "rating": 6.0, "genres": "Comedy", "genres_pipe": "|Comedy|", "keywords": "guard, shopping mall, thief, drug", "tags_pipe": "|guard|shopping mall|thief|drug|", "overview": "Craig and Day Day have finally moved out of their parents houses and into their own crib. The cousins work nights at a local mall as security guards. When their house is robbed on Christmas Eve they team up to track him down.", "text_for_embedding": "Friday After Next (2002). Genres: Comedy. Craig and Day Day have finally moved out of their parents houses and into their own crib. The cousins work nights at a local mall as security guards. When their house is robbed on Christmas Eve they team up to track him down.. Tags: guard, shopping mall, thief, drug"} +{"id": "280092", "title": "Insidious: Chapter 3", "year": 2015, "duration_min": 97, "rating": 6.2, "genres": "Drama, Horror, Thriller", "genres_pipe": "|Drama|Horror|Thriller|", "keywords": "sequel", "tags_pipe": "|sequel|", "overview": "A twisted new tale of terror begins for a teenage girl and her family, predating the haunting of the Lambert family in the earlier movies and revealing more mysteries of the otherworldly realm The Further.", "text_for_embedding": "Insidious: Chapter 3 (2015). Genres: Drama, Horror, Thriller. A twisted new tale of terror begins for a teenage girl and her family, predating the haunting of the Lambert family in the earlier movies and revealing more mysteries of the otherworldly realm The Further.. Tags: sequel"} +{"id": "13938", "title": "The Last Dragon", "year": 1985, "duration_min": 108, "rating": 6.4, "genres": "Action, Adventure, Comedy", "genres_pipe": "|Action|Adventure|Comedy|", "keywords": "martial arts, pizzeria, limousine, music", "tags_pipe": "|martial arts|pizzeria|limousine|music|", "overview": "A young man searches for the \"master\" to obtain the final level of martial arts mastery known as the glow. Along the way he must fight an evil martial arts expert and rescue a beautiful singer from an obsessed music promoter.", "text_for_embedding": "The Last Dragon (1985). Genres: Action, Adventure, Comedy. A young man searches for the \"master\" to obtain the final level of martial arts mastery known as the glow. Along the way he must fight an evil martial arts expert and rescue a beautiful singer from an obsessed music promoter.. Tags: martial arts, pizzeria, limousine, music"} +{"id": "10163", "title": "The Lawnmower Man", "year": 1992, "duration_min": 108, "rating": 5.4, "genres": "Horror, Thriller, Science Fiction", "genres_pipe": "|Horror|Thriller|Science Fiction|", "keywords": "dream, chimp, manipulation, botanist, virtual reality, lemonade, intelligent", "tags_pipe": "|dream|chimp|manipulation|botanist|virtual reality|lemonade|intelligent|", "overview": "A simple man is turned into a genius through the application of computer science.", "text_for_embedding": "The Lawnmower Man (1992). Genres: Horror, Thriller, Science Fiction. A simple man is turned into a genius through the application of computer science.. Tags: dream, chimp, manipulation, botanist, virtual reality, lemonade, intelligent"} +{"id": "12182", "title": "Nick and Norah's Infinite Playlist", "year": 2008, "duration_min": 89, "rating": 6.4, "genres": "Comedy, Music, Romance", "genres_pipe": "|Comedy|Music|Romance|", "keywords": "concert, teenager, one night, based on young adult novel, secret location", "tags_pipe": "|concert|teenager|one night|based on young adult novel|secret location|", "overview": "Nick cannot stop obsessing over his ex-girlfriend, Tris, until Tris' friend Norah suddenly shows interest in him at a club. Thus beings an odd night filled with ups and downs as the two keep running into Tris and her new boyfriend while searching for Norah's drunken friend, Caroline, with help from Nick's band mates. As the night winds down, the two have to figure out what they want from each other.", "text_for_embedding": "Nick and Norah's Infinite Playlist (2008). Genres: Comedy, Music, Romance. Nick cannot stop obsessing over his ex-girlfriend, Tris, until Tris' friend Norah suddenly shows interest in him at a club. Thus beings an odd night filled with ups and downs as the two keep running into Tris and her new boyfriend while searching for Norah's drunken friend, Caroline, with help from Nick's band mates. As the night winds down, the two have to figure out what they want from each other.. Tags: concert, teenager, one night, based on young adult novel, secret location"} +{"id": "1832", "title": "Dogma", "year": 1999, "duration_min": 130, "rating": 6.8, "genres": "Fantasy, Comedy, Adventure", "genres_pipe": "|Fantasy|Comedy|Adventure|", "keywords": "angel, wisconsin, church service, church, aftercreditsstinger, duringcreditsstinger", "tags_pipe": "|angel|wisconsin|church service|church|aftercreditsstinger|duringcreditsstinger|", "overview": "The latest battle in the eternal war between Good and Evil has come to New Jersey in the late, late 20th Century. Angels, demons, apostles and prophets (of a sort) walk among the cynics and innocents of America and duke it out for the fate of humankind.", "text_for_embedding": "Dogma (1999). Genres: Fantasy, Comedy, Adventure. The latest battle in the eternal war between Good and Evil has come to New Jersey in the late, late 20th Century. Angels, demons, apostles and prophets (of a sort) walk among the cynics and innocents of America and duke it out for the fate of humankind.. Tags: angel, wisconsin, church service, church, aftercreditsstinger, duringcreditsstinger"} +{"id": "9034", "title": "The Banger Sisters", "year": 2002, "duration_min": 98, "rating": 5.5, "genres": "Comedy, Drama", "genres_pipe": "|Comedy|Drama|", "keywords": "tattoo, rock star, groupie, past, family", "tags_pipe": "|tattoo|rock star|groupie|past|family|", "overview": "In the late '60s, the self-proclaimed belles of the rock 'n' roll ball, rocked the worlds of every music legend whose pants they could take off -- and they have the pictures to prove it. But it's been more than two decades since the Banger Sisters earned their nickname -- or even laid eyes on each other. Their reunion is the collision of two women's worlds; one who's living in the past, and one who's hiding from it. Together they learn to live in the moment.", "text_for_embedding": "The Banger Sisters (2002). Genres: Comedy, Drama. In the late '60s, the self-proclaimed belles of the rock 'n' roll ball, rocked the worlds of every music legend whose pants they could take off -- and they have the pictures to prove it. But it's been more than two decades since the Banger Sisters earned their nickname -- or even laid eyes on each other. Their reunion is the collision of two women's worlds; one who's living in the past, and one who's hiding from it. Together they learn to live in the moment.. Tags: tattoo, rock star, groupie, past, family"} +{"id": "15301", "title": "Twilight Zone: The Movie", "year": 1983, "duration_min": 101, "rating": 6.2, "genres": "Drama, Fantasy, Horror, Science Fiction, Thriller", "genres_pipe": "|Drama|Fantasy|Horror|Science Fiction|Thriller|", "keywords": "nazis, anthology, remake, twilight zone", "tags_pipe": "|nazis|anthology|remake|twilight zone|", "overview": "Four directors collaborated to remake four episodes of the popular television series 'The Twilight Zone' for this movie. The episodes are updated slightly and in color (the television show was in black-and-white), but very true to the originals, where eerie and disturbing situations gradually spin out of control. \"A Quality of Mercy\", \"Kick the Can\", \"It's a Good Life\", and \"Nightmare at 20,000 Feet\".", "text_for_embedding": "Twilight Zone: The Movie (1983). Genres: Drama, Fantasy, Horror, Science Fiction, Thriller. Four directors collaborated to remake four episodes of the popular television series 'The Twilight Zone' for this movie. The episodes are updated slightly and in color (the television show was in black-and-white), but very true to the originals, where eerie and disturbing situations gradually spin out of control. \"A Quality of Mercy\", \"Kick the Can\", \"It's a Good Life\", and \"Nightmare at 20,000 Feet\".. Tags: nazis, anthology, remake, twilight zone"} +{"id": "10135", "title": "Road House", "year": 1989, "duration_min": 114, "rating": 6.3, "genres": "Action, Thriller", "genres_pipe": "|Action|Thriller|", "keywords": "new love, protection money, nightclub, rausschmeißer, revenge, hoodlum, brawl", "tags_pipe": "|new love|protection money|nightclub|rausschmeißer|revenge|hoodlum|brawl|", "overview": "The Double Deuce is the meanest, loudest and rowdiest bar south of the Mason-Dixon Line, and Dalton (Patrick Swayze) has been hired to clean it up. He might not look like much, but the Ph.D.-educated bouncer proves he's more than capable -- busting the heads of troublemakers and turning the roadhouse into a jumping hot-spot. But Dalton's romance with the gorgeous Dr. Clay (Kelly Lynch) puts him on the bad side of cutthroat local big shot Brad Wesley (Ben Gazzara).", "text_for_embedding": "Road House (1989). Genres: Action, Thriller. The Double Deuce is the meanest, loudest and rowdiest bar south of the Mason-Dixon Line, and Dalton (Patrick Swayze) has been hired to clean it up. He might not look like much, but the Ph.D.-educated bouncer proves he's more than capable -- busting the heads of troublemakers and turning the roadhouse into a jumping hot-spot. But Dalton's romance with the gorgeous Dr. Clay (Kelly Lynch) puts him on the bad side of cutthroat local big shot Brad Wesley (Ben Gazzara).. Tags: new love, protection money, nightclub, rausschmeißer, revenge, hoodlum, brawl"} +{"id": "26352", "title": "A Low Down Dirty Shame", "year": 1994, "duration_min": 100, "rating": 6.0, "genres": "Action, Comedy, Crime", "genres_pipe": "|Action|Comedy|Crime|", "keywords": "fbi, drug crime, violence, drug, private detective, blast", "tags_pipe": "|fbi|drug crime|violence|drug|private detective|blast|", "overview": "A black detective becomes embroiled in a web of danger while searching for a fortune in missing drug money. During the course of his investigation, he encounters various old connections, ultimately confronting the criminal responsible for Shame's expulsion from the force. He must also deal with two women, Angela, a beautiful old flame, and Peaches, his energetic but annoying sidekick.", "text_for_embedding": "A Low Down Dirty Shame (1994). Genres: Action, Comedy, Crime. A black detective becomes embroiled in a web of danger while searching for a fortune in missing drug money. During the course of his investigation, he encounters various old connections, ultimately confronting the criminal responsible for Shame's expulsion from the force. He must also deal with two women, Angela, a beautiful old flame, and Peaches, his energetic but annoying sidekick.. Tags: fbi, drug crime, violence, drug, private detective, blast"} +{"id": "20616", "title": "Swimfan", "year": 2002, "duration_min": 84, "rating": 5.0, "genres": "Drama, Thriller", "genres_pipe": "|Drama|Thriller|", "keywords": "competition, coma, infidelity, obsession, bathing, high school, femme fatale, athlete, hospital, swimmer, swimming, troubled teen", "tags_pipe": "|competition|coma|infidelity|obsession|bathing|high school|femme fatale|athlete|hospital|swimmer|swimming|troubled teen|", "overview": "Ben Cronin has it all: the admiration of his many friends, a terrific girlfriend, and he's on the fast-track to an athletic scholarship. Ben's rock-solid, promising future and romance are turned upside-down with the arrival of Madison Bell. Madison, the new girl in town, quickly sets her sights on the impressionable Ben. While their first few meetings are innocent enough, the obsessive and seductive Madison wants more ... much more.", "text_for_embedding": "Swimfan (2002). Genres: Drama, Thriller. Ben Cronin has it all: the admiration of his many friends, a terrific girlfriend, and he's on the fast-track to an athletic scholarship. Ben's rock-solid, promising future and romance are turned upside-down with the arrival of Madison Bell. Madison, the new girl in town, quickly sets her sights on the impressionable Ben. While their first few meetings are innocent enough, the obsessive and seductive Madison wants more ... much more.. Tags: competition, coma, infidelity, obsession, bathing, high school, femme fatale, athlete, hospital, swimmer, swimming, troubled teen"} +{"id": "9794", "title": "Employee of the Month", "year": 2006, "duration_min": 103, "rating": 5.3, "genres": "Comedy, Romance", "genres_pipe": "|Comedy|Romance|", "keywords": "salesclerk, midlife crisis, prenzlauer berg, vulgar, slacker, business consultant", "tags_pipe": "|salesclerk|midlife crisis|prenzlauer berg|vulgar|slacker|business consultant|", "overview": "When he hears that the new female employee digs ambitious men who are the store employee of the month, a slacker gets his act together but finds himself in competition with his rival, an ambitious co-worker.", "text_for_embedding": "Employee of the Month (2006). Genres: Comedy, Romance. When he hears that the new female employee digs ambitious men who are the store employee of the month, a slacker gets his act together but finds himself in competition with his rival, an ambitious co-worker.. Tags: salesclerk, midlife crisis, prenzlauer berg, vulgar, slacker, business consultant"} +{"id": "15037", "title": "Can't Hardly Wait", "year": 1998, "duration_min": 100, "rating": 6.1, "genres": "Comedy, Drama, Romance", "genres_pipe": "|Comedy|Drama|Romance|", "keywords": "alcohol, regret, homophobia, radio, cheerleader, love letter, college, graduation, groupie, costume, nerd, high school, party, friends, dating", "tags_pipe": "|alcohol|regret|homophobia|radio|cheerleader|love letter|college|graduation|groupie|costume|nerd|high school|party|friends|dating|", "overview": "It's graduation day at Huntington Hills High, and you know what that means - time to party. And not just any party, either. This one will be a night to remember, as the nerds become studs, the jocks are humiliated, and freshman crushes blossom into grown-up romance.", "text_for_embedding": "Can't Hardly Wait (1998). Genres: Comedy, Drama, Romance. It's graduation day at Huntington Hills High, and you know what that means - time to party. And not just any party, either. This one will be a night to remember, as the nerds become studs, the jocks are humiliated, and freshman crushes blossom into grown-up romance.. Tags: alcohol, regret, homophobia, radio, cheerleader, love letter, college, graduation, groupie, costume, nerd, high school, party, friends, dating"} +{"id": "227", "title": "The Outsiders", "year": 1983, "duration_min": 91, "rating": 6.9, "genres": "Crime, Drama", "genres_pipe": "|Crime|Drama|", "keywords": "street gang, children's home, coming of age, gang, juvenile delinquent, based on young adult novel", "tags_pipe": "|street gang|children's home|coming of age|gang|juvenile delinquent|based on young adult novel|", "overview": "When two poor greasers, Johnny, and Ponyboy are assaulted by a vicious gang, the socs, and Johnny kills one of the attackers, tension begins to mount between the two rival gangs, setting off a turbulent chain of events.", "text_for_embedding": "The Outsiders (1983). Genres: Crime, Drama. When two poor greasers, Johnny, and Ponyboy are assaulted by a vicious gang, the socs, and Johnny kills one of the attackers, tension begins to mount between the two rival gangs, setting off a turbulent chain of events.. Tags: street gang, children's home, coming of age, gang, juvenile delinquent, based on young adult novel"} +{"id": "294272", "title": "Pete's Dragon", "year": 2016, "duration_min": 102, "rating": 6.2, "genres": "Adventure, Family, Fantasy", "genres_pipe": "|Adventure|Family|Fantasy|", "keywords": "feral child, remake, dragon, orphan, 1980s, live action and animation", "tags_pipe": "|feral child|remake|dragon|orphan|1980s|live action and animation|", "overview": "Pete is a mysterious 10-year-old with no family and no home who claims to live in the woods with a giant, green dragon named Elliott. With the help of Natalie, an 11-year-old girl whose father Jack owns the local lumber mill, forest ranger Grace sets out to determine where Pete came from, where he belongs, and the truth about this dragon.", "text_for_embedding": "Pete's Dragon (2016). Genres: Adventure, Family, Fantasy. Pete is a mysterious 10-year-old with no family and no home who claims to live in the woods with a giant, green dragon named Elliott. With the help of Natalie, an 11-year-old girl whose father Jack owns the local lumber mill, forest ranger Grace sets out to determine where Pete came from, where he belongs, and the truth about this dragon.. Tags: feral child, remake, dragon, orphan, 1980s, live action and animation"} +{"id": "11336", "title": "The Dead Zone", "year": 1983, "duration_min": 103, "rating": 6.9, "genres": "Horror, Science Fiction, Thriller", "genres_pipe": "|Horror|Science Fiction|Thriller|", "keywords": "coma, sheriff, based on novel, sacrifice, suspense, psychopathic killer, premonition, independent film, vision, doctor, car accident, series of murders, psychic, dark hero, gothic", "tags_pipe": "|coma|sheriff|based on novel|sacrifice|suspense|psychopathic killer|premonition|independent film|vision|doctor|car accident|series of murders|psychic|dark hero|gothic|", "overview": "Johnny Smith is a schoolteacher with his whole life ahead of him but, after leaving his fiancee's home one night, is involved in a car crash which leaves him in a coma for 5 years. When he wakes, he discovers he has an ability to see into the past, present and future life of anyone with whom he comes into physical contact.", "text_for_embedding": "The Dead Zone (1983). Genres: Horror, Science Fiction, Thriller. Johnny Smith is a schoolteacher with his whole life ahead of him but, after leaving his fiancee's home one night, is involved in a car crash which leaves him in a coma for 5 years. When he wakes, he discovers he has an ability to see into the past, present and future life of anyone with whom he comes into physical contact.. Tags: coma, sheriff, based on novel, sacrifice, suspense, psychopathic killer, premonition, independent film, vision, doctor, car accident, series of murders, psychic, dark hero, gothic"} +{"id": "283445", "title": "Sinister 2", "year": 2015, "duration_min": 97, "rating": 5.4, "genres": "Horror", "genres_pipe": "|Horror|", "keywords": "haunted house, sequel, twins", "tags_pipe": "|haunted house|sequel|twins|", "overview": "A young mother and her twin sons move into a rural house that's marked for death.", "text_for_embedding": "Sinister 2 (2015). Genres: Horror. A young mother and her twin sons move into a rural house that's marked for death.. Tags: haunted house, sequel, twins"} +{"id": "88036", "title": "Sparkle", "year": 2012, "duration_min": 116, "rating": 5.8, "genres": "Drama, Music", "genres_pipe": "|Drama|Music|", "keywords": "soong sisters, duringcreditsstinger", "tags_pipe": "|soong sisters|duringcreditsstinger|", "overview": "Musical prodigy, Sparkle (Jordin Sparks) struggles to become a star while overcoming issues that are tearing her family apart. From an affluent Detroit area and daughter to a single mother (Whitney Houston), she tries to balance a new romance with music manager Stix (Derek Luke) while dealing with the unexpected challenges her new life will bring as she and her two sisters (Carmen Ejogo and Tika Sumpter) strive to become a dynamic singing group during the Motown-era.", "text_for_embedding": "Sparkle (2012). Genres: Drama, Music. Musical prodigy, Sparkle (Jordin Sparks) struggles to become a star while overcoming issues that are tearing her family apart. From an affluent Detroit area and daughter to a single mother (Whitney Houston), she tries to balance a new romance with music manager Stix (Derek Luke) while dealing with the unexpected challenges her new life will bring as she and her two sisters (Carmen Ejogo and Tika Sumpter) strive to become a dynamic singing group during the Motown-era.. Tags: soong sisters, duringcreditsstinger"} +{"id": "10984", "title": "Valentine", "year": 2001, "duration_min": 96, "rating": 5.0, "genres": "Horror, Thriller", "genres_pipe": "|Horror|Thriller|", "keywords": "mobbing, success, violence against women, revenge, serial killer, valentine's day", "tags_pipe": "|mobbing|success|violence against women|revenge|serial killer|valentine's day|", "overview": "Five friends are stalked and murdered by a masked assailant while preparing for Valentine's Day.", "text_for_embedding": "Valentine (2001). Genres: Horror, Thriller. Five friends are stalked and murdered by a masked assailant while preparing for Valentine's Day.. Tags: mobbing, success, violence against women, revenge, serial killer, valentine's day"} +{"id": "22824", "title": "The Fourth Kind", "year": 2009, "duration_min": 98, "rating": 5.8, "genres": "Mystery, Science Fiction, Thriller", "genres_pipe": "|Mystery|Science Fiction|Thriller|", "keywords": "brother sister relationship, wheelchair, hypnosis, investigation, cover-up, ufo, alaska, disappearance, hospital, alien abduction, patient, psychotherapy, fake documentary, based on supposedly true story, nome alaska", "tags_pipe": "|brother sister relationship|wheelchair|hypnosis|investigation|cover-up|ufo|alaska|disappearance|hospital|alien abduction|patient|psychotherapy|fake documentary|based on supposedly true story|nome alaska|", "overview": "Since the 1960s, a disproportionate number of the population in and around Nome, Alaska, have gone missing. Despite FBI investigations, the disappearances remain a mystery. Dr. Abigail Tyler, a psychologist, may be on the verge of blowing the unsolved cases wide open when, during the course of treating her patients, she finds evidence of alien abductions.", "text_for_embedding": "The Fourth Kind (2009). Genres: Mystery, Science Fiction, Thriller. Since the 1960s, a disproportionate number of the population in and around Nome, Alaska, have gone missing. Despite FBI investigations, the disappearances remain a mystery. Dr. Abigail Tyler, a psychologist, may be on the verge of blowing the unsolved cases wide open when, during the course of treating her patients, she finds evidence of alien abductions.. Tags: brother sister relationship, wheelchair, hypnosis, investigation, cover-up, ufo, alaska, disappearance, hospital, alien abduction, patient, psychotherapy, fake documentary, based on supposedly true story, nome alaska"} +{"id": "9526", "title": "A Prairie Home Companion", "year": 2006, "duration_min": 105, "rating": 6.4, "genres": "Drama, Comedy, Music", "genres_pipe": "|Drama|Comedy|Music|", "keywords": "usa, country music, commercial, radio presenter, radio transmission, bühnenauftritt, backstage, singer", "tags_pipe": "|usa|country music|commercial|radio presenter|radio transmission|bühnenauftritt|backstage|singer|", "overview": "A look at what goes on backstage during the last broadcast of America's most celebrated radio show, where singing cowboys Dusty and Lefty, a country music siren, and a host of others hold court", "text_for_embedding": "A Prairie Home Companion (2006). Genres: Drama, Comedy, Music. A look at what goes on backstage during the last broadcast of America's most celebrated radio show, where singing cowboys Dusty and Lefty, a country music siren, and a host of others hold court. Tags: usa, country music, commercial, radio presenter, radio transmission, bühnenauftritt, backstage, singer"} +{"id": "39349", "title": "Sugar Hill", "year": 1994, "duration_min": 123, "rating": 5.2, "genres": "Drama, Action, Thriller", "genres_pipe": "|Drama|Action|Thriller|", "keywords": "", "tags_pipe": "", "overview": "Sugar Hill is a 1994 American crime-drama/neo-noir film starring Wesley Snipes and Michael Wright as brothers Roemello and Raynathan Skuggs. The film focuses on the two brothers, who are major drug dealers in the Harlem neighborhood of New York City.", "text_for_embedding": "Sugar Hill (1994). Genres: Drama, Action, Thriller. Sugar Hill is a 1994 American crime-drama/neo-noir film starring Wesley Snipes and Michael Wright as brothers Roemello and Raynathan Skuggs. The film focuses on the two brothers, who are major drug dealers in the Harlem neighborhood of New York City.. Tags: "} +{"id": "15983", "title": "Invasion U.S.A.", "year": 1985, "duration_min": 107, "rating": 5.3, "genres": "Action, Thriller", "genres_pipe": "|Action|Thriller|", "keywords": "", "tags_pipe": "", "overview": "A one-man army comes to the rescue of the United States when a spy attempts an invasion.", "text_for_embedding": "Invasion U.S.A. (1985). Genres: Action, Thriller. A one-man army comes to the rescue of the United States when a spy attempts an invasion.. Tags: "} +{"id": "14544", "title": "Roll Bounce", "year": 2005, "duration_min": 112, "rating": 6.1, "genres": "Comedy, Drama, Family", "genres_pipe": "|Comedy|Drama|Family|", "keywords": "", "tags_pipe": "", "overview": "From Wikipedia, the free encyclopedia. Roll Bounce is a 2005 American comedy-drama film written by Norman Vance Jr. and directed by Malcolm D. Lee. The film stars hip hop artist Bow Wow as the leader of a roller skating crew in 1970s Chicago. The film also stars Nick Cannon, Meagan Good, Brandon T. Jackson, Wesley Jonathan, Chi McBride, Kellita Smith, and Jurnee Smollett. Description above from the Wikipedia article Roll Bounce, licensed under CC-BY-SA, full list of contributors on Wikipedia.", "text_for_embedding": "Roll Bounce (2005). Genres: Comedy, Drama, Family. From Wikipedia, the free encyclopedia. Roll Bounce is a 2005 American comedy-drama film written by Norman Vance Jr. and directed by Malcolm D. Lee. The film stars hip hop artist Bow Wow as the leader of a roller skating crew in 1970s Chicago. The film also stars Nick Cannon, Meagan Good, Brandon T. Jackson, Wesley Jonathan, Chi McBride, Kellita Smith, and Jurnee Smollett. Description above from the Wikipedia article Roll Bounce, licensed under CC-BY-SA, full list of contributors on Wikipedia.. Tags: "} +{"id": "11545", "title": "Rushmore", "year": 1998, "duration_min": 93, "rating": 7.5, "genres": "Comedy, Drama", "genres_pipe": "|Comedy|Drama|", "keywords": "private school, lone wolf, theatre play, theatre group, theatre director, independent film", "tags_pipe": "|private school|lone wolf|theatre play|theatre group|theatre director|independent film|", "overview": "When a beautiful first-grade teacher arrives at a prep school, she soon attracts the attention of an ambitious teenager named Max, who quickly falls in love with her. Max turns to the father of two of his schoolmates for advice on how to woo the teacher. However, the situation soon gets complicated when Max's new friend becomes involved with her, setting the two pals against one another in a war for her attention.", "text_for_embedding": "Rushmore (1998). Genres: Comedy, Drama. When a beautiful first-grade teacher arrives at a prep school, she soon attracts the attention of an ambitious teenager named Max, who quickly falls in love with her. Max turns to the father of two of his schoolmates for advice on how to woo the teacher. However, the situation soon gets complicated when Max's new friend becomes involved with her, setting the two pals against one another in a war for her attention.. Tags: private school, lone wolf, theatre play, theatre group, theatre director, independent film"} +{"id": "42684", "title": "Skyline", "year": 2010, "duration_min": 100, "rating": 4.7, "genres": "Science Fiction", "genres_pipe": "|Science Fiction|", "keywords": "missile, light, transformation, low-budget, alien, fireplace, los angeles, cell phone, rooftop, duringcreditsstinger", "tags_pipe": "|missile|light|transformation|low-budget|alien|fireplace|los angeles|cell phone|rooftop|duringcreditsstinger|", "overview": "When strange lights descend on the city of Los Angeles, people are drawn outside like moths to a flame where an extraterrestrial force threatens to swallow the entire human population off the face of the Earth. Now the band of survivors must fight for their lives as the world unravels around them.", "text_for_embedding": "Skyline (2010). Genres: Science Fiction. When strange lights descend on the city of Los Angeles, people are drawn outside like moths to a flame where an extraterrestrial force threatens to swallow the entire human population off the face of the Earth. Now the band of survivors must fight for their lives as the world unravels around them.. Tags: missile, light, transformation, low-budget, alien, fireplace, los angeles, cell phone, rooftop, duringcreditsstinger"} +{"id": "268238", "title": "The Second Best Exotic Marigold Hotel", "year": 2015, "duration_min": 122, "rating": 6.3, "genres": "Drama, Comedy", "genres_pipe": "|Drama|Comedy|", "keywords": "india, retirement home", "tags_pipe": "|india|retirement home|", "overview": "As the Best Exotic Marigold Hotel has only a single remaining vacancy - posing a rooming predicament for two fresh arrivals - Sonny pursues his expansionist dream of opening a second hotel.", "text_for_embedding": "The Second Best Exotic Marigold Hotel (2015). Genres: Drama, Comedy. As the Best Exotic Marigold Hotel has only a single remaining vacancy - posing a rooming predicament for two fresh arrivals - Sonny pursues his expansionist dream of opening a second hotel.. Tags: india, retirement home"} +{"id": "8359", "title": "Kit Kittredge: An American Girl", "year": 2008, "duration_min": 101, "rating": 6.4, "genres": "Comedy, Drama, Family", "genres_pipe": "|Comedy|Drama|Family|", "keywords": "cincinnati, woman director", "tags_pipe": "|cincinnati|woman director|", "overview": "The Great Depression hits home for nine year old Kit Kittredge when her dad loses his business and leaves to find work. Oscar nominee Abigail Breslin stars as Kit, leading a splendid cast in the first ever \"American Girl\" theatrical movie. In order to keep their home, Kit and her mother must take in boarders - paying house - guests who turn out to be full of fascinating stories. When mother's lockbox containing all their money is stolen, Kit's new hobo friend Will is the prime suspect. Kit refuses to believe that Will would steal, and her efforts to sniff out the real story get her and friends into big trouble. The police say the robbery was an inside job, committed by someone they know. So if it wasn't Will, then who did it.", "text_for_embedding": "Kit Kittredge: An American Girl (2008). Genres: Comedy, Drama, Family. The Great Depression hits home for nine year old Kit Kittredge when her dad loses his business and leaves to find work. Oscar nominee Abigail Breslin stars as Kit, leading a splendid cast in the first ever \"American Girl\" theatrical movie. In order to keep their home, Kit and her mother must take in boarders - paying house - guests who turn out to be full of fascinating stories. When mother's lockbox containing all their money is stolen, Kit's new hobo friend Will is the prime suspect. Kit refuses to believe that Will would steal, and her efforts to sniff out the real story get her and friends into big trouble. The police say the robbery was an inside job, committed by someone they know. So if it wasn't Will, then who did it.. Tags: cincinnati, woman director"} +{"id": "15648", "title": "The Perfect Man", "year": 2005, "duration_min": 100, "rating": 5.5, "genres": "Comedy, Drama, Family, Romance", "genres_pipe": "|Comedy|Drama|Family|Romance|", "keywords": "mother, man-woman relation, single, matchmaking, single mother, catfishing", "tags_pipe": "|mother|man-woman relation|single|matchmaking|single mother|catfishing|", "overview": "Holly is tired of moving every time her mom Jean breaks up with yet another second-rate guy. To distract her mother from her latest bad choice, Holly conceives the perfect plan for the perfect man, an imaginary secret admirer who will romance Jean and boost her self-esteem.", "text_for_embedding": "The Perfect Man (2005). Genres: Comedy, Drama, Family, Romance. Holly is tired of moving every time her mom Jean breaks up with yet another second-rate guy. To distract her mother from her latest bad choice, Holly conceives the perfect plan for the perfect man, an imaginary secret admirer who will romance Jean and boost her self-esteem.. Tags: mother, man-woman relation, single, matchmaking, single mother, catfishing"} +{"id": "41823", "title": "Mo' Better Blues", "year": 1990, "duration_min": 129, "rating": 6.3, "genres": "Drama, Romance", "genres_pipe": "|Drama|Romance|", "keywords": "musical", "tags_pipe": "|musical|", "overview": "Opens with Bleek as a child learning to play the trumpet, his friends want him to come out and play but mother insists he finish his lessons. Bleek grows into adulthood and forms his own band - The Bleek Gilliam Quartet. The story of Bleek's and Shadow's friendly rivalry on stage which spills into their professional relationship and threatens to tear apart the quartet.", "text_for_embedding": "Mo' Better Blues (1990). Genres: Drama, Romance. Opens with Bleek as a child learning to play the trumpet, his friends want him to come out and play but mother insists he finish his lessons. Bleek grows into adulthood and forms his own band - The Bleek Gilliam Quartet. The story of Bleek's and Shadow's friendly rivalry on stage which spills into their professional relationship and threatens to tear apart the quartet.. Tags: musical"} +{"id": "11891", "title": "Kung Pow: Enter the Fist", "year": 2002, "duration_min": 81, "rating": 6.1, "genres": "Action, Comedy", "genres_pipe": "|Action|Comedy|", "keywords": "loss of family, loss of parents, supernatural powers, invulnerability, spoof, evil, murder hunt", "tags_pipe": "|loss of family|loss of parents|supernatural powers|invulnerability|spoof|evil|murder hunt|", "overview": "A movie within a movie, created to spoof the martial arts genre. Writer/director Steve Oedekerk uses contemporary characters and splices them into a 1970s kung-fu film, weaving the new and old together.\r As the main character, The Chosen One, Oedekerk sets off to avenge the deaths of his parents at the hands of kung-fu legend Master Pain. Along the way, he encounters some strange characters", "text_for_embedding": "Kung Pow: Enter the Fist (2002). Genres: Action, Comedy. A movie within a movie, created to spoof the martial arts genre. Writer/director Steve Oedekerk uses contemporary characters and splices them into a 1970s kung-fu film, weaving the new and old together.\r As the main character, The Chosen One, Oedekerk sets off to avenge the deaths of his parents at the hands of kung-fu legend Master Pain. Along the way, he encounters some strange characters. Tags: loss of family, loss of parents, supernatural powers, invulnerability, spoof, evil, murder hunt"} +{"id": "9362", "title": "Tremors", "year": 1990, "duration_min": 96, "rating": 6.6, "genres": "Action, Horror", "genres_pipe": "|Action|Horror|", "keywords": "nevada, small town, tractor, stranded, cult favorite, tentacle, rural, graboids, seismologist, binoculars, man eaten by monster, giant worm", "tags_pipe": "|nevada|small town|tractor|stranded|cult favorite|tentacle|rural|graboids|seismologist|binoculars|man eaten by monster|giant worm|", "overview": "Hick handymen Val McKee and Earl Bassett can barely eke out a living in the Nevada hamlet of Perfection, so they decide to leave town -- despite an admonition from a shapely seismology coed who's picking up odd readings on her equipment. Before long, Val and Earl discover what's responsible for those readings: 30-foot-long carnivorous worms with a proclivity for sucking their prey underground.", "text_for_embedding": "Tremors (1990). Genres: Action, Horror. Hick handymen Val McKee and Earl Bassett can barely eke out a living in the Nevada hamlet of Perfection, so they decide to leave town -- despite an admonition from a shapely seismology coed who's picking up odd readings on her equipment. Before long, Val and Earl discover what's responsible for those readings: 30-foot-long carnivorous worms with a proclivity for sucking their prey underground.. Tags: nevada, small town, tractor, stranded, cult favorite, tentacle, rural, graboids, seismologist, binoculars, man eaten by monster, giant worm"} +{"id": "9902", "title": "Wrong Turn", "year": 2003, "duration_min": 84, "rating": 6.0, "genres": "Horror, Thriller", "genres_pipe": "|Horror|Thriller|", "keywords": "life and death, death of a friend, parts of dead body", "tags_pipe": "|life and death|death of a friend|parts of dead body|", "overview": "Chris crashes into a carload of other young people, and the group of stranded motorists is soon lost in the woods of West Virginia, where they're hunted by three cannibalistic mountain men who are grossly disfigured by generations of inbreeding.", "text_for_embedding": "Wrong Turn (2003). Genres: Horror, Thriller. Chris crashes into a carload of other young people, and the group of stranded motorists is soon lost in the woods of West Virginia, where they're hunted by three cannibalistic mountain men who are grossly disfigured by generations of inbreeding.. Tags: life and death, death of a friend, parts of dead body"} +{"id": "14729", "title": "The Long Riders", "year": 1980, "duration_min": 99, "rating": 6.6, "genres": "Western, History", "genres_pipe": "|Western|History|", "keywords": "brother brother relationship, jesse james, cole younger", "tags_pipe": "|brother brother relationship|jesse james|cole younger|", "overview": "The origins, exploits and the ultimate fate of the James gang is told in a sympathetic portrayal of the bank robbers made up of brothers who begin their legendary bank raids because of revenge.", "text_for_embedding": "The Long Riders (1980). Genres: Western, History. The origins, exploits and the ultimate fate of the James gang is told in a sympathetic portrayal of the bank robbers made up of brothers who begin their legendary bank raids because of revenge.. Tags: brother brother relationship, jesse james, cole younger"} +{"id": "9455", "title": "The Corruptor", "year": 1999, "duration_min": 110, "rating": 6.0, "genres": "Action, Crime, Mystery, Thriller", "genres_pipe": "|Action|Crime|Mystery|Thriller|", "keywords": "new york, life and death, gang war, police, china town, triad", "tags_pipe": "|new york|life and death|gang war|police|china town|triad|", "overview": "Danny is a young cop partnered with Nick, a seasoned but ethically tainted veteran. As the two try to stop a gang war in Chinatown, Danny relies on Nick but grows increasingly uncomfortable with the way Nick gets things done.", "text_for_embedding": "The Corruptor (1999). Genres: Action, Crime, Mystery, Thriller. Danny is a young cop partnered with Nick, a seasoned but ethically tainted veteran. As the two try to stop a gang war in Chinatown, Danny relies on Nick but grows increasingly uncomfortable with the way Nick gets things done.. Tags: new york, life and death, gang war, police, china town, triad"} +{"id": "103731", "title": "Mud", "year": 2013, "duration_min": 130, "rating": 7.0, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "river, snake, arkansas, fugitive, river boat", "tags_pipe": "|river|snake|arkansas|fugitive|river boat|", "overview": "Two teenage boys encounter a fugitive and make a pact to help him escape from an island in the Mississippi.", "text_for_embedding": "Mud (2013). Genres: Drama. Two teenage boys encounter a fugitive and make a pact to help him escape from an island in the Mississippi.. Tags: river, snake, arkansas, fugitive, river boat"} +{"id": "10090", "title": "Reno 911!: Miami", "year": 2007, "duration_min": 84, "rating": 5.6, "genres": "Action, Adventure, Comedy, Crime", "genres_pipe": "|Action|Adventure|Comedy|Crime|", "keywords": "sex, terrorist, beach, nudity, police, parody, attack, shootout, mockumentary, explosion, drug", "tags_pipe": "|sex|terrorist|beach|nudity|police|parody|attack|shootout|mockumentary|explosion|drug|", "overview": "A rag-tag team of Reno cops are called in to save the day after a terrorist attack disrupts a national police convention in Miami Beach during spring break. Based on the Comedy Central series.", "text_for_embedding": "Reno 911!: Miami (2007). Genres: Action, Adventure, Comedy, Crime. A rag-tag team of Reno cops are called in to save the day after a terrorist attack disrupts a national police convention in Miami Beach during spring break. Based on the Comedy Central series.. Tags: sex, terrorist, beach, nudity, police, parody, attack, shootout, mockumentary, explosion, drug"} +{"id": "164558", "title": "One Direction: This Is Us", "year": 2013, "duration_min": 92, "rating": 8.0, "genres": "Documentary, Music", "genres_pipe": "|Documentary|Music|", "keywords": "concert", "tags_pipe": "|concert|", "overview": "Go behind the scenes during One Directions sell out \"Take Me Home\" tour and experience life on the road.", "text_for_embedding": "One Direction: This Is Us (2013). Genres: Documentary, Music. Go behind the scenes during One Directions sell out \"Take Me Home\" tour and experience life on the road.. Tags: concert"} +{"id": "19905", "title": "The Goods: Live Hard, Sell Hard", "year": 2009, "duration_min": 90, "rating": 5.4, "genres": "Comedy", "genres_pipe": "|Comedy|", "keywords": "duringcreditsstinger", "tags_pipe": "|duringcreditsstinger|", "overview": "Who is Don Ready? Salesman? Lover? Song Stylist? Semi-professional dolphin trainer? Ready is all of the above - except for a dolphin trainer. When he’s asked to help save an ailing local car dealership from bankruptcy, Ready and his ragtag crew descend on the town of Temecula like a pack of coyotes on a basket full of burgers.", "text_for_embedding": "The Goods: Live Hard, Sell Hard (2009). Genres: Comedy. Who is Don Ready? Salesman? Lover? Song Stylist? Semi-professional dolphin trainer? Ready is all of the above - except for a dolphin trainer. When he’s asked to help save an ailing local car dealership from bankruptcy, Ready and his ragtag crew descend on the town of Temecula like a pack of coyotes on a basket full of burgers.. Tags: duringcreditsstinger"} +{"id": "17710", "title": "Hey Arnold! The Movie", "year": 2002, "duration_min": 76, "rating": 5.6, "genres": "Animation, Family", "genres_pipe": "|Animation|Family|", "keywords": "", "tags_pipe": "", "overview": "When a powerful developer named Mr. Scheck wants to knock down all the stores and houses in Arnold's neighborhood to build a huge \"mall-plex\", it looks likes the neighborhood is doomed to disappear. But with the help of a superhero and a mysterious deep-voiced stranger, Arnold and Gerald will need to recover a crucial document in order to save their beloved neighborhood.", "text_for_embedding": "Hey Arnold! The Movie (2002). Genres: Animation, Family. When a powerful developer named Mr. Scheck wants to knock down all the stores and houses in Arnold's neighborhood to build a huge \"mall-plex\", it looks likes the neighborhood is doomed to disappear. But with the help of a superhero and a mysterious deep-voiced stranger, Arnold and Gerald will need to recover a crucial document in order to save their beloved neighborhood.. Tags: "} +{"id": "75900", "title": "My Week with Marilyn", "year": 2011, "duration_min": 99, "rating": 6.6, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "based on novel, biography, historical figure, marilyn monroe", "tags_pipe": "|based on novel|biography|historical figure|marilyn monroe|", "overview": "Sir Laurence Olivier is making a movie in London. Young Colin Clark, an eager film student, wants to be involved and he navigates himself a job on the set. When film star Marilyn Monroe arrives for the start of shooting, all of London is excited to see the blonde bombshell, while Olivier is struggling to meet her many demands and acting ineptness, and Colin is intrigued by her. Colin's intrigue is met when Marilyn invites him into her inner world where she struggles with her fame, her beauty and her desire to be a great actress.", "text_for_embedding": "My Week with Marilyn (2011). Genres: Drama. Sir Laurence Olivier is making a movie in London. Young Colin Clark, an eager film student, wants to be involved and he navigates himself a job on the set. When film star Marilyn Monroe arrives for the start of shooting, all of London is excited to see the blonde bombshell, while Olivier is struggling to meet her many demands and acting ineptness, and Colin is intrigued by her. Colin's intrigue is met when Marilyn invites him into her inner world where she struggles with her fame, her beauty and her desire to be a great actress.. Tags: based on novel, biography, historical figure, marilyn monroe"} +{"id": "9515", "title": "The Matador", "year": 2005, "duration_min": 96, "rating": 6.2, "genres": "Action, Comedy, Crime, Drama, Thriller", "genres_pipe": "|Action|Comedy|Crime|Drama|Thriller|", "keywords": "mexico city, midlife crisis, cocktail, independent film, stranger, hit man", "tags_pipe": "|mexico city|midlife crisis|cocktail|independent film|stranger|hit man|", "overview": "The life of Danny Wright, a salesman forever on the road, veers into dangerous and surreal territory when he wanders into a Mexican bar and meets a mysterious stranger, Julian, who's very likely a hit man. Their meeting sets off a chain of events that will change their lives forever, as Wright is suddenly thrust into a far-from-mundane existence that he takes to surprisingly well … once he gets acclimated to it.", "text_for_embedding": "The Matador (2005). Genres: Action, Comedy, Crime, Drama, Thriller. The life of Danny Wright, a salesman forever on the road, veers into dangerous and surreal territory when he wanders into a Mexican bar and meets a mysterious stranger, Julian, who's very likely a hit man. Their meeting sets off a chain of events that will change their lives forever, as Wright is suddenly thrust into a far-from-mundane existence that he takes to surprisingly well … once he gets acclimated to it.. Tags: mexico city, midlife crisis, cocktail, independent film, stranger, hit man"} +{"id": "27322", "title": "Love Jones", "year": 1997, "duration_min": 104, "rating": 8.1, "genres": "Comedy, Drama, Romance", "genres_pipe": "|Comedy|Drama|Romance|", "keywords": "sex, ex-boyfriend, independent film, african american", "tags_pipe": "|sex|ex-boyfriend|independent film|african american|", "overview": "Darius Lovehall is a young black poet in Chicago who starts dating Nina Moseley, a beautiful and talented photographer. While trying to figure out if they've got a \"love thing\" or are just \"kicking it,\" they hang out with their friend, talking about love and sex. Then Nina tests the strength of Darius' feelings and sets a chain of romantic complications into motion.", "text_for_embedding": "Love Jones (1997). Genres: Comedy, Drama, Romance. Darius Lovehall is a young black poet in Chicago who starts dating Nina Moseley, a beautiful and talented photographer. While trying to figure out if they've got a \"love thing\" or are just \"kicking it,\" they hang out with their friend, talking about love and sex. Then Nina tests the strength of Darius' feelings and sets a chain of romantic complications into motion.. Tags: sex, ex-boyfriend, independent film, african american"} +{"id": "328425", "title": "The Gift", "year": 2015, "duration_min": 108, "rating": 6.7, "genres": "Thriller, Mystery", "genres_pipe": "|Thriller|Mystery|", "keywords": "detective, stalker, gift, bully, psychological thriller", "tags_pipe": "|detective|stalker|gift|bully|psychological thriller|", "overview": "A husband and wife try to reinvigorate their relationship but their lives are threatened by a \"friend\" from the husband's past who holds a horrifying secret about him, sending their world into a tailspin.", "text_for_embedding": "The Gift (2015). Genres: Thriller, Mystery. A husband and wife try to reinvigorate their relationship but their lives are threatened by a \"friend\" from the husband's past who holds a horrifying secret about him, sending their world into a tailspin.. Tags: detective, stalker, gift, bully, psychological thriller"} +{"id": "14120", "title": "End of the Spear", "year": 2005, "duration_min": 108, "rating": 6.1, "genres": "Adventure, Drama", "genres_pipe": "|Adventure|Drama|", "keywords": "drama", "tags_pipe": "|drama|", "overview": "\"End of the Spear\" is the story of Mincayani, a Waodani tribesman from the jungles of Ecuador. When five young missionaries, among them Jim Elliot and Nate Saint, are speared to death by the Waodani in 1956, a series of events unfold to change the lives of not only the slain missionaries' families, but also Mincayani and his people", "text_for_embedding": "End of the Spear (2005). Genres: Adventure, Drama. \"End of the Spear\" is the story of Mincayani, a Waodani tribesman from the jungles of Ecuador. When five young missionaries, among them Jim Elliot and Nate Saint, are speared to death by the Waodani in 1956, a series of events unfold to change the lives of not only the slain missionaries' families, but also Mincayani and his people. Tags: drama"} +{"id": "10050", "title": "Get Over It", "year": 2001, "duration_min": 87, "rating": 5.5, "genres": "Comedy, Romance", "genres_pipe": "|Comedy|Romance|", "keywords": "theatre play, theatre group, high school, falling in love", "tags_pipe": "|theatre play|theatre group|high school|falling in love|", "overview": "When Berke Landers, a popular high school basketball star, gets dumped by his life-long girlfriend, Allison, he soon begins to lose it. But with the help of his best friend Felix's sister Kelly, he follows his ex into the school's spring musical. Thus ensues a love triangle loosely based upon Shakespeare's \"A Midsummer Night's Dream\", where Berke is only to find himself getting over Allison and beginning to fall for Kelly.", "text_for_embedding": "Get Over It (2001). Genres: Comedy, Romance. When Berke Landers, a popular high school basketball star, gets dumped by his life-long girlfriend, Allison, he soon begins to lose it. But with the help of his best friend Felix's sister Kelly, he follows his ex into the school's spring musical. Thus ensues a love triangle loosely based upon Shakespeare's \"A Midsummer Night's Dream\", where Berke is only to find himself getting over Allison and beginning to fall for Kelly.. Tags: theatre play, theatre group, high school, falling in love"} +{"id": "1542", "title": "Office Space", "year": 1999, "duration_min": 89, "rating": 7.4, "genres": "Comedy, Crime", "genres_pipe": "|Comedy|Crime|", "keywords": "suburbia, downsizing, software engineer, burnout, dallas texas, beach resort, coworker relationship, laziness, duringcreditsstinger, business rivalry", "tags_pipe": "|suburbia|downsizing|software engineer|burnout|dallas texas|beach resort|coworker relationship|laziness|duringcreditsstinger|business rivalry|", "overview": "Three office workers strike back at their evil employers by hatching a hapless attempt to embezzle money.", "text_for_embedding": "Office Space (1999). Genres: Comedy, Crime. Three office workers strike back at their evil employers by hatching a hapless attempt to embezzle money.. Tags: suburbia, downsizing, software engineer, burnout, dallas texas, beach resort, coworker relationship, laziness, duringcreditsstinger, business rivalry"} +{"id": "10490", "title": "Drop Dead Gorgeous", "year": 1999, "duration_min": 98, "rating": 6.4, "genres": "Comedy", "genres_pipe": "|Comedy|", "keywords": "minnesota, mother role, beauty contest, girl from the province, hicktown, evil mother, mother daughter relationship, envy, pretty woman, mocumentary", "tags_pipe": "|minnesota|mother role|beauty contest|girl from the province|hicktown|evil mother|mother daughter relationship|envy|pretty woman|mocumentary|", "overview": "In a small Minnesota town, the annual beauty pageant is being covered by a TV crew. Former winner Gladys Leeman wants to make sure her daughter follows in her footsteps; explosions, falling lights, and trailer fires prove that. As the Leemans are the richest family in town, the police are pretty relaxed about it all. Despite everything, main rival (but sweet) Amber Atkins won't give up without a fight.", "text_for_embedding": "Drop Dead Gorgeous (1999). Genres: Comedy. In a small Minnesota town, the annual beauty pageant is being covered by a TV crew. Former winner Gladys Leeman wants to make sure her daughter follows in her footsteps; explosions, falling lights, and trailer fires prove that. As the Leemans are the richest family in town, the police are pretty relaxed about it all. Despite everything, main rival (but sweet) Amber Atkins won't give up without a fight.. Tags: minnesota, mother role, beauty contest, girl from the province, hicktown, evil mother, mother daughter relationship, envy, pretty woman, mocumentary"} +{"id": "87093", "title": "Big Eyes", "year": 2014, "duration_min": 105, "rating": 6.8, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "wife husband relationship, artist, court case", "tags_pipe": "|wife husband relationship|artist|court case|", "overview": "The story of the awakening of the painter, Margaret Keane, her phenomenal success in the 1950s, and the subsequent legal difficulties she had with her husband, who claimed credit for her works in the 1960s.", "text_for_embedding": "Big Eyes (2014). Genres: Drama. The story of the awakening of the painter, Margaret Keane, her phenomenal success in the 1950s, and the subsequent legal difficulties she had with her husband, who claimed credit for her works in the 1960s.. Tags: wife husband relationship, artist, court case"} +{"id": "10029", "title": "Very Bad Things", "year": 1998, "duration_min": 100, "rating": 6.2, "genres": "Comedy, Crime, Thriller", "genres_pipe": "|Comedy|Crime|Thriller|", "keywords": "prostitute, hotel, cocaine, nudity, psychopath, stag night, friends, murder, independent film, marijuana, blood, wedding, las vegas, violence, death", "tags_pipe": "|prostitute|hotel|cocaine|nudity|psychopath|stag night|friends|murder|independent film|marijuana|blood|wedding|las vegas|violence|death|", "overview": "Kyle Fisher has one last night to celebrate life as a single man before marrying Laura, so he sets out to Vegas with four of his best buddies. But a drug and alcohol filled night on the town with a stripper who goes all the way, turns into a cold night in the desert with shovels when the stripper goes all the way into a body bag after dying in their bathroom. And that's just the first of the bodies to pile up before Kyle can walk down the aisle...", "text_for_embedding": "Very Bad Things (1998). Genres: Comedy, Crime, Thriller. Kyle Fisher has one last night to celebrate life as a single man before marrying Laura, so he sets out to Vegas with four of his best buddies. But a drug and alcohol filled night on the town with a stripper who goes all the way, turns into a cold night in the desert with shovels when the stripper goes all the way into a body bag after dying in their bathroom. And that's just the first of the bodies to pile up before Kyle can walk down the aisle.... Tags: prostitute, hotel, cocaine, nudity, psychopath, stag night, friends, murder, independent film, marijuana, blood, wedding, las vegas, violence, death"} +{"id": "9893", "title": "Sleepover", "year": 2004, "duration_min": 89, "rating": 5.3, "genres": "Comedy, Family", "genres_pipe": "|Comedy|Family|", "keywords": "high school, scavenger hunt, teenage crush, slumber party, teenager, teen comedy", "tags_pipe": "|high school|scavenger hunt|teenage crush|slumber party|teenager|teen comedy|", "overview": "As their first year of high school looms ahead, best friends Julie, Hannah, Yancy and Farrah have one last summer sleepover. Little do they know they're about to embark on the adventure of a lifetime. Desperate to shed their nerdy status, they take part in a night-long scavenger hunt that pits them against their popular archrivals. Everything under the sun goes on -- from taking Yancy's father's car to sneaking into nightclubs!", "text_for_embedding": "Sleepover (2004). Genres: Comedy, Family. As their first year of high school looms ahead, best friends Julie, Hannah, Yancy and Farrah have one last summer sleepover. Little do they know they're about to embark on the adventure of a lifetime. Desperate to shed their nerdy status, they take part in a night-long scavenger hunt that pits them against their popular archrivals. Everything under the sun goes on -- from taking Yancy's father's car to sneaking into nightclubs!. Tags: high school, scavenger hunt, teenage crush, slumber party, teenager, teen comedy"} +{"id": "11507", "title": "Body Double", "year": 1984, "duration_min": 114, "rating": 6.4, "genres": "Crime, Mystery, Horror, Thriller", "genres_pipe": "|Crime|Mystery|Horror|Thriller|", "keywords": "female nudity, pornography, claustrophobia, nudity, witness, police, movie in movie, murder, neighbor, los angeles, peeping tom, porn actress, struggling actor, voyeurism, actor", "tags_pipe": "|female nudity|pornography|claustrophobia|nudity|witness|police|movie in movie|murder|neighbor|los angeles|peeping tom|porn actress|struggling actor|voyeurism|actor|", "overview": "After losing an acting role and his girlfriend, Jake Scully finally catches a break: he gets offered a gig house-sitting in the Hollywood Hills. While peering through the beautiful home's telescope one night, he spies a gorgeous blonde dancing in her window. But when he witnesses the girl's murder, it leads Scully through the netherworld of the adult entertainment industry on a search for answers -- with porn actress Holly Body as his guide.", "text_for_embedding": "Body Double (1984). Genres: Crime, Mystery, Horror, Thriller. After losing an acting role and his girlfriend, Jake Scully finally catches a break: he gets offered a gig house-sitting in the Hollywood Hills. While peering through the beautiful home's telescope one night, he spies a gorgeous blonde dancing in her window. But when he witnesses the girl's murder, it leads Scully through the netherworld of the adult entertainment industry on a search for answers -- with porn actress Holly Body as his guide.. Tags: female nudity, pornography, claustrophobia, nudity, witness, police, movie in movie, murder, neighbor, los angeles, peeping tom, porn actress, struggling actor, voyeurism, actor"} +{"id": "37931", "title": "MacGruber", "year": 2010, "duration_min": 90, "rating": 5.1, "genres": "Action, Adventure, Comedy", "genres_pipe": "|Action|Adventure|Comedy|", "keywords": "aftercreditsstinger, duringcreditsstinger", "tags_pipe": "|aftercreditsstinger|duringcreditsstinger|", "overview": "Ex-special operative MacGruber (Forte) is called back into action to take down his archenemy, Dieter Von Cunth (Kilmer), who's in possession of a nuclear warhead and bent on destroying Washington, DC.", "text_for_embedding": "MacGruber (2010). Genres: Action, Adventure, Comedy. Ex-special operative MacGruber (Forte) is called back into action to take down his archenemy, Dieter Von Cunth (Kilmer), who's in possession of a nuclear warhead and bent on destroying Washington, DC.. Tags: aftercreditsstinger, duringcreditsstinger"} +{"id": "3472", "title": "Dirty Pretty Things", "year": 2002, "duration_min": 97, "rating": 6.8, "genres": "Crime, Drama, Thriller", "genres_pipe": "|Crime|Drama|Thriller|", "keywords": "london england, prostitute, hotel, night watchman, illegal immigration, immigration law, transplanted organ, turk, delinquency", "tags_pipe": "|london england|prostitute|hotel|night watchman|illegal immigration|immigration law|transplanted organ|turk|delinquency|", "overview": "An urban hotel in London is a gathering and flash point for legal and illegal immigrants attempting to cobble together their lives in a new country. The immigrants include Senay, a Turkish woman, and a Nigerian doctor named Okwe who is working as a night porter at the hotel. The pair discover the hotel is a front for all sorts of clandestine activities. Their only wish is to avoid possible deportation. Okwe becomes more entangled in the goings on when he is called to fix a toilet in one of the rooms. He discovers the plumbing has been clogged by a human heart.", "text_for_embedding": "Dirty Pretty Things (2002). Genres: Crime, Drama, Thriller. An urban hotel in London is a gathering and flash point for legal and illegal immigrants attempting to cobble together their lives in a new country. The immigrants include Senay, a Turkish woman, and a Nigerian doctor named Okwe who is working as a night porter at the hotel. The pair discover the hotel is a front for all sorts of clandestine activities. Their only wish is to avoid possible deportation. Okwe becomes more entangled in the goings on when he is called to fix a toilet in one of the rooms. He discovers the plumbing has been clogged by a human heart.. Tags: london england, prostitute, hotel, night watchman, illegal immigration, immigration law, transplanted organ, turk, delinquency"} +{"id": "87818", "title": "Movie 43", "year": 2013, "duration_min": 90, "rating": 4.4, "genres": "Comedy", "genres_pipe": "|Comedy|", "keywords": "slapstick, ensemble cast, duringcreditsstinger, woman director, laxative", "tags_pipe": "|slapstick|ensemble cast|duringcreditsstinger|woman director|laxative|", "overview": "The film is composed of multiple comedy shorts presented through an overarching segment titled \"The Pitch\", in which Charlie Wessler, a mad screenwriter, is attempting to pitch a script to film executive Griffin Schraeder. After revealing several of the stories in his script, Wessler becomes agitated when Schraeder dismisses his outrageous ideas, and he pulls a gun on him and forces him to listen to multiple other stories before making Schraeder consult his manager, Bob Mone, to purchase the film.", "text_for_embedding": "Movie 43 (2013). Genres: Comedy. The film is composed of multiple comedy shorts presented through an overarching segment titled \"The Pitch\", in which Charlie Wessler, a mad screenwriter, is attempting to pitch a script to film executive Griffin Schraeder. After revealing several of the stories in his script, Wessler becomes agitated when Schraeder dismisses his outrageous ideas, and he pulls a gun on him and forces him to listen to multiple other stories before making Schraeder consult his manager, Bob Mone, to purchase the film.. Tags: slapstick, ensemble cast, duringcreditsstinger, woman director, laxative"} +{"id": "13160", "title": "Over Her Dead Body", "year": 2008, "duration_min": 95, "rating": 5.3, "genres": "Comedy", "genres_pipe": "|Comedy|", "keywords": "diary, romantic comedy, death of lover, spirit, death by accident, psychic, moving on", "tags_pipe": "|diary|romantic comedy|death of lover|spirit|death by accident|psychic|moving on|", "overview": "After his fiancée, Kate, dies in an accident on their wedding day, veterinarian Henry grows depressed. To help him move on, his sister has him visit psychic Ashley and gives her Kate's diary. Ashley uses the journal's details to convincingly deliver the fake message that Kate wants Henry to move on. However, Kate's ghost is watching over Ashley and Henry. Furious when they fall for each other, she vows to sabotage their relationship.", "text_for_embedding": "Over Her Dead Body (2008). Genres: Comedy. After his fiancée, Kate, dies in an accident on their wedding day, veterinarian Henry grows depressed. To help him move on, his sister has him visit psychic Ashley and gives her Kate's diary. Ashley uses the journal's details to convincingly deliver the fake message that Kate wants Henry to move on. However, Kate's ghost is watching over Ashley and Henry. Furious when they fall for each other, she vows to sabotage their relationship.. Tags: diary, romantic comedy, death of lover, spirit, death by accident, psychic, moving on"} +{"id": "88005", "title": "Seeking a Friend for the End of the World", "year": 2012, "duration_min": 101, "rating": 6.3, "genres": "Comedy, Drama, Romance, Science Fiction", "genres_pipe": "|Comedy|Drama|Romance|Science Fiction|", "keywords": "asteroid, road trip, end of the world, woman director", "tags_pipe": "|asteroid|road trip|end of the world|woman director|", "overview": "As an asteroid nears Earth, a man finds himself alone after his wife leaves in a panic. He decides to take a road trip to reunite with his high school sweetheart. Accompanying him is a neighbor who inadvertently puts a wrench in his plan.", "text_for_embedding": "Seeking a Friend for the End of the World (2012). Genres: Comedy, Drama, Romance, Science Fiction. As an asteroid nears Earth, a man finds himself alone after his wife leaves in a panic. He decides to take a road trip to reunite with his high school sweetheart. Accompanying him is a neighbor who inadvertently puts a wrench in his plan.. Tags: asteroid, road trip, end of the world, woman director"} +{"id": "52067", "title": "Cedar Rapids", "year": 2011, "duration_min": 87, "rating": 5.9, "genres": "Comedy", "genres_pipe": "|Comedy|", "keywords": "hotel, infidelity, one-night stand, friendship, swimming pool, drinking, naive, duringcreditsstinger", "tags_pipe": "|hotel|infidelity|one-night stand|friendship|swimming pool|drinking|naive|duringcreditsstinger|", "overview": "A naive Midwesterner insurance salesman travels to a big-city convention in an effort to save the jobs of his co-workers.", "text_for_embedding": "Cedar Rapids (2011). Genres: Comedy. A naive Midwesterner insurance salesman travels to a big-city convention in an effort to save the jobs of his co-workers.. Tags: hotel, infidelity, one-night stand, friendship, swimming pool, drinking, naive, duringcreditsstinger"} +{"id": "73", "title": "American History X", "year": 1998, "duration_min": 119, "rating": 8.2, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "usa, neo-nazi, prison, skinhead, brother brother relationship, rape, fascism, brother, basketball, jail, school, swastika, los angeles, family, hate", "tags_pipe": "|usa|neo-nazi|prison|skinhead|brother brother relationship|rape|fascism|brother|basketball|jail|school|swastika|los angeles|family|hate|", "overview": "Derek Vineyard is paroled after serving 3 years in prison for killing two thugs who tried to break into/steal his truck. Through his brother, Danny Vineyard's narration, we learn that before going to prison, Derek was a skinhead and the leader of a violent white supremacist gang that committed acts of racial crime throughout L.A. and his actions greatly influenced Danny. Reformed and fresh out of prison, Derek severs contact with the gang and becomes determined to keep Danny from going down the same violent path as he did.", "text_for_embedding": "American History X (1998). Genres: Drama. Derek Vineyard is paroled after serving 3 years in prison for killing two thugs who tried to break into/steal his truck. Through his brother, Danny Vineyard's narration, we learn that before going to prison, Derek was a skinhead and the leader of a violent white supremacist gang that committed acts of racial crime throughout L.A. and his actions greatly influenced Danny. Reformed and fresh out of prison, Derek severs contact with the gang and becomes determined to keep Danny from going down the same violent path as he did.. Tags: usa, neo-nazi, prison, skinhead, brother brother relationship, rape, fascism, brother, basketball, jail, school, swastika, los angeles, family, hate"} +{"id": "134597", "title": "The Collection", "year": 2012, "duration_min": 94, "rating": 5.9, "genres": "Horror, Thriller", "genres_pipe": "|Horror|Thriller|", "keywords": "mercenary, party, sequel, gore, escape, serial killer, masked killer, trap", "tags_pipe": "|mercenary|party|sequel|gore|escape|serial killer|masked killer|trap|", "overview": "Arkin escapes with his life from the vicious grips of \"The Collector\" during an entrapment party where he adds beautiful Elena to his \"Collection.\" Instead of recovering from the trauma, Arkin is suddenly abducted from the hospital by mercenaries hired by Elena's wealthy father. Arkin is blackmailed to team up with the mercenaries and track down The Collector's booby trapped warehouse and save Elena.", "text_for_embedding": "The Collection (2012). Genres: Horror, Thriller. Arkin escapes with his life from the vicious grips of \"The Collector\" during an entrapment party where he adds beautiful Elena to his \"Collection.\" Instead of recovering from the trauma, Arkin is suddenly abducted from the hospital by mercenaries hired by Elena's wealthy father. Arkin is blackmailed to team up with the mercenaries and track down The Collector's booby trapped warehouse and save Elena.. Tags: mercenary, party, sequel, gore, escape, serial killer, masked killer, trap"} +{"id": "24034", "title": "Teacher's Pet", "year": 2004, "duration_min": 74, "rating": 5.5, "genres": "Animation, Drama, Family, Music", "genres_pipe": "|Animation|Drama|Family|Music|", "keywords": "", "tags_pipe": "", "overview": "Spot (Lane) is a dog who can talk and read. Posing as a human, he sneaks into school with his master Leonard (Flemming). Educational adventures ensue", "text_for_embedding": "Teacher's Pet (2004). Genres: Animation, Drama, Family, Music. Spot (Lane) is a dog who can talk and read. Posing as a human, he sneaks into school with his master Leonard (Flemming). Educational adventures ensue. Tags: "} +{"id": "14283", "title": "The Red Violin", "year": 1998, "duration_min": 131, "rating": 7.3, "genres": "Drama, Thriller, Mystery, Music, Romance", "genres_pipe": "|Drama|Thriller|Mystery|Music|Romance|", "keywords": "auction, violin", "tags_pipe": "|auction|violin|", "overview": "Spans 300 years in the life of one famed musical instrument that winds up in present-day Montreal on the auction block. Crafted by the Italian master Bussotti (Cecchi) in 1681, the red violin derives its unusual color from the human blood mixed into the finish. With this legacy, the violin travels to Austria, England, China, and Canada, leaving both beauty and tragedy in its wake.", "text_for_embedding": "The Red Violin (1998). Genres: Drama, Thriller, Mystery, Music, Romance. Spans 300 years in the life of one famed musical instrument that winds up in present-day Montreal on the auction block. Crafted by the Italian master Bussotti (Cecchi) in 1681, the red violin derives its unusual color from the human blood mixed into the finish. With this legacy, the violin travels to Austria, England, China, and Canada, leaving both beauty and tragedy in its wake.. Tags: auction, violin"} +{"id": "404", "title": "The Straight Story", "year": 1999, "duration_min": 112, "rating": 7.7, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "brother brother relationship, mississippi, wisconsin, lawnmower, iowa, biography, based on true story, independent film, family relationships, family, road movie", "tags_pipe": "|brother brother relationship|mississippi|wisconsin|lawnmower|iowa|biography|based on true story|independent film|family relationships|family|road movie|", "overview": "\"The Straight Story\" chronicles a trip made by 73-year-old Alvin Straight from Laurens, Iowa, to Mt. Zion, Wisconsin, in 1994 while riding a lawn mower. The man undertook his strange journey to mend his relationship with his ill, estranged, 75-year-old brother Lyle.", "text_for_embedding": "The Straight Story (1999). Genres: Drama. \"The Straight Story\" chronicles a trip made by 73-year-old Alvin Straight from Laurens, Iowa, to Mt. Zion, Wisconsin, in 1994 while riding a lawn mower. The man undertook his strange journey to mend his relationship with his ill, estranged, 75-year-old brother Lyle.. Tags: brother brother relationship, mississippi, wisconsin, lawnmower, iowa, biography, based on true story, independent film, family relationships, family, road movie"} +{"id": "13201", "title": "Deuces Wild", "year": 2002, "duration_min": 96, "rating": 5.5, "genres": "Action, Crime, Drama, Romance", "genres_pipe": "|Action|Crime|Drama|Romance|", "keywords": "gang, new york city, drug overdose", "tags_pipe": "|gang|new york city|drug overdose|", "overview": "1950s New York City. A bad and bloody gang war is about to erupt on the dysfunctional streets of Brooklyn. The Deuces at war with the vicious Vipers. Scott Kalvert directs this tale of lust, drugs, mayhem and madness during one hot summer on the streets of New York.", "text_for_embedding": "Deuces Wild (2002). Genres: Action, Crime, Drama, Romance. 1950s New York City. A bad and bloody gang war is about to erupt on the dysfunctional streets of Brooklyn. The Deuces at war with the vicious Vipers. Scott Kalvert directs this tale of lust, drugs, mayhem and madness during one hot summer on the streets of New York.. Tags: gang, new york city, drug overdose"} +{"id": "209403", "title": "Bad Words", "year": 2013, "duration_min": 88, "rating": 6.4, "genres": "Comedy", "genres_pipe": "|Comedy|", "keywords": "competition, satire, spelling bee, estranged father, unlikely friendship, anger issues", "tags_pipe": "|competition|satire|spelling bee|estranged father|unlikely friendship|anger issues|", "overview": "A misanthropic man sets out to exact revenge on his estranged father, by finding a loophole and attempting to win the National Spelling Bee as an adult. Figuring it would destroy his father, and everything he's worked so hard for as head of the Spelling Bee Championship Organization, Guy Trilby (Jason Bateman) eventually discovers winning isn't necessary for revenge, and that friendship is a blessing not a curse.", "text_for_embedding": "Bad Words (2013). Genres: Comedy. A misanthropic man sets out to exact revenge on his estranged father, by finding a loophole and attempting to win the National Spelling Bee as an adult. Figuring it would destroy his father, and everything he's worked so hard for as head of the Spelling Bee Championship Organization, Guy Trilby (Jason Bateman) eventually discovers winning isn't necessary for revenge, and that friendship is a blessing not a curse.. Tags: competition, satire, spelling bee, estranged father, unlikely friendship, anger issues"} +{"id": "7942", "title": "Run, Fatboy, Run", "year": 2007, "duration_min": 100, "rating": 6.2, "genres": "Comedy, Romance", "genres_pipe": "|Comedy|Romance|", "keywords": "father son relationship, new love, fiancé, training, rent, jogging, marathon, wedding, pregnancy", "tags_pipe": "|father son relationship|new love|fiancé|training|rent|jogging|marathon|wedding|pregnancy|", "overview": "Five years after jilting his pregnant fiancée on their wedding day, out-of-shape Dennis decides to run a marathon to win her back.", "text_for_embedding": "Run, Fatboy, Run (2007). Genres: Comedy, Romance. Five years after jilting his pregnant fiancée on their wedding day, out-of-shape Dennis decides to run a marathon to win her back.. Tags: father son relationship, new love, fiancé, training, rent, jogging, marathon, wedding, pregnancy"} +{"id": "73247", "title": "Heartbeeps", "year": 1981, "duration_min": 79, "rating": 3.8, "genres": "Comedy, Romance, Family", "genres_pipe": "|Comedy|Romance|Family|", "keywords": "servant, future, chase, lovers, outlaw, robot", "tags_pipe": "|servant|future|chase|lovers|outlaw|robot|", "overview": "Heartbeeps stars Andy Kaufman and Bernadette Peters as domestic robots who fall in love and run off together.", "text_for_embedding": "Heartbeeps (1981). Genres: Comedy, Romance, Family. Heartbeeps stars Andy Kaufman and Bernadette Peters as domestic robots who fall in love and run off together.. Tags: servant, future, chase, lovers, outlaw, robot"} +{"id": "253331", "title": "Black or White", "year": 2014, "duration_min": 121, "rating": 6.5, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "grieving widower, widower", "tags_pipe": "|grieving widower|widower|", "overview": "A grieving widower is drawn into a custody battle over his granddaughter, whom he helped raise her entire life.", "text_for_embedding": "Black or White (2014). Genres: Drama. A grieving widower is drawn into a custody battle over his granddaughter, whom he helped raise her entire life.. Tags: grieving widower, widower"} +{"id": "34043", "title": "On the Line", "year": 2001, "duration_min": 85, "rating": 4.1, "genres": "Comedy, Family, Romance", "genres_pipe": "|Comedy|Family|Romance|", "keywords": "", "tags_pipe": "", "overview": "'N Sync heartthrobs Lance Bass and Joey Fatone stretch their thespian muscles in their acting debut. A young man (Bass) is smitten with a girl (Emmanuelle Chriqui) he meets on a subway train and spends the rest of the movie trying to reunite with her. The man's best friend (Fatone) helps him in his quest by wallpapering Chicago with posters and signs that soon become the talk of the town.", "text_for_embedding": "On the Line (2001). Genres: Comedy, Family, Romance. 'N Sync heartthrobs Lance Bass and Joey Fatone stretch their thespian muscles in their acting debut. A young man (Bass) is smitten with a girl (Emmanuelle Chriqui) he meets on a subway train and spends the rest of the movie trying to reunite with her. The man's best friend (Fatone) helps him in his quest by wallpapering Chicago with posters and signs that soon become the talk of the town.. Tags: "} +{"id": "9952", "title": "Rescue Dawn", "year": 2006, "duration_min": 126, "rating": 6.9, "genres": "Adventure, Drama, War", "genres_pipe": "|Adventure|Drama|War|", "keywords": "war crimes, violence, laotian soldier, pipe smoking, rice paddy, letter from home, ant's nest, net fishing, dragging someone", "tags_pipe": "|war crimes|violence|laotian soldier|pipe smoking|rice paddy|letter from home|ant's nest|net fishing|dragging someone|", "overview": "A US Fighter pilot's epic struggle of survival after being shot down on a mission over Laos during the Vietnam War.", "text_for_embedding": "Rescue Dawn (2006). Genres: Adventure, Drama, War. A US Fighter pilot's epic struggle of survival after being shot down on a mission over Laos during the Vietnam War.. Tags: war crimes, violence, laotian soldier, pipe smoking, rice paddy, letter from home, ant's nest, net fishing, dragging someone"} +{"id": "256924", "title": "Danny Collins", "year": 2015, "duration_min": 107, "rating": 6.6, "genres": "Comedy, Drama, Music", "genres_pipe": "|Comedy|Drama|Music|", "keywords": "rock star, middle age", "tags_pipe": "|rock star|middle age|", "overview": "An ageing rock star decides to change his life when he discovers a 40-year-old letter written to him by John Lennon.", "text_for_embedding": "Danny Collins (2015). Genres: Comedy, Drama, Music. An ageing rock star decides to change his life when he discovers a 40-year-old letter written to him by John Lennon.. Tags: rock star, middle age"} +{"id": "82532", "title": "Jeff, Who Lives at Home", "year": 2011, "duration_min": 83, "rating": 6.1, "genres": "Drama, Comedy", "genres_pipe": "|Drama|Comedy|", "keywords": "slacker, basement, destiny, glue, stoner, wrong number, mumblecore", "tags_pipe": "|slacker|basement|destiny|glue|stoner|wrong number|mumblecore|", "overview": "Dispatched from his basement room on an errand for his mother, slacker Jeff might discover his destiny (finally) when he spends the day with his brother as he tracks his possibly adulterous wife.", "text_for_embedding": "Jeff, Who Lives at Home (2011). Genres: Drama, Comedy. Dispatched from his basement room on an errand for his mother, slacker Jeff might discover his destiny (finally) when he spends the day with his brother as he tracks his possibly adulterous wife.. Tags: slacker, basement, destiny, glue, stoner, wrong number, mumblecore"} +{"id": "41110", "title": "I Am Love", "year": 2009, "duration_min": 120, "rating": 6.9, "genres": "Drama, Romance", "genres_pipe": "|Drama|Romance|", "keywords": "adultery, restaurant, textile industry, male friendship, bourgeoisie, food, chef, high society", "tags_pipe": "|adultery|restaurant|textile industry|male friendship|bourgeoisie|food|chef|high society|", "overview": "Emma left Russia to live with her husband in Italy. Now a member of a powerful industrial family, she is the respected mother of three, but feels unfulfilled. One day, Antonio, a talented chef and her son's friend, makes her senses kindle.", "text_for_embedding": "I Am Love (2009). Genres: Drama, Romance. Emma left Russia to live with her husband in Italy. Now a member of a powerful industrial family, she is the respected mother of three, but feels unfulfilled. One day, Antonio, a talented chef and her son's friend, makes her senses kindle.. Tags: adultery, restaurant, textile industry, male friendship, bourgeoisie, food, chef, high society"} +{"id": "134371", "title": "Atlas Shrugged Part II", "year": 2012, "duration_min": 112, "rating": 5.4, "genres": "Drama, Science Fiction, Mystery", "genres_pipe": "|Drama|Science Fiction|Mystery|", "keywords": "ayn rand", "tags_pipe": "|ayn rand|", "overview": "The global economy is on the brink of collapse. Brilliant creators, from artists to industrialists, continue to mysteriously disappear. Unemployment has risen to 24%. Gas is now $42 per gallon. Dagny Taggart, Vice President in Charge of Operations for Taggart Transcontinental, has discovered what may very well be the answer to the mounting energy crisis - found abandoned amongst ruins, a miraculous motor that could seemingly power the World. But, the motor is dead... there is no one left to decipher its secret... and, someone is watching. It’s a race against the clock to find the inventor and stop the destroyer before the motor of the World is stopped for good. A motor that would power the World. A World whose motor would be stopped. Who is John Galt?", "text_for_embedding": "Atlas Shrugged Part II (2012). Genres: Drama, Science Fiction, Mystery. The global economy is on the brink of collapse. Brilliant creators, from artists to industrialists, continue to mysteriously disappear. Unemployment has risen to 24%. Gas is now $42 per gallon. Dagny Taggart, Vice President in Charge of Operations for Taggart Transcontinental, has discovered what may very well be the answer to the mounting energy crisis - found abandoned amongst ruins, a miraculous motor that could seemingly power the World. But, the motor is dead... there is no one left to decipher its secret... and, someone is watching. It’s a race against the clock to find the inventor and stop the destroyer before the motor of the World is stopped for good. A motor that would power the World. A World whose motor would be stopped. Who is John Galt?. Tags: ayn rand"} +{"id": "2088", "title": "Romeo Is Bleeding", "year": 1993, "duration_min": 100, "rating": 5.7, "genres": "Action, Crime, Drama, Thriller", "genres_pipe": "|Action|Crime|Drama|Thriller|", "keywords": "police operation, sex addiction, police, mafia boss, suspense, bad cop, hitwoman", "tags_pipe": "|police operation|sex addiction|police|mafia boss|suspense|bad cop|hitwoman|", "overview": "A corrupt cop gets in over his head when he tries to assassinate a beautiful Russian hit-woman.", "text_for_embedding": "Romeo Is Bleeding (1993). Genres: Action, Crime, Drama, Thriller. A corrupt cop gets in over his head when he tries to assassinate a beautiful Russian hit-woman.. Tags: police operation, sex addiction, police, mafia boss, suspense, bad cop, hitwoman"} +{"id": "10388", "title": "The Limey", "year": 1999, "duration_min": 89, "rating": 6.6, "genres": "Action, Crime, Drama, Mystery, Thriller", "genres_pipe": "|Action|Crime|Drama|Mystery|Thriller|", "keywords": "prison, release from prison, suitcase, record producer, investigation, daughter, loss, revenge, stakeout, ex-con, warehouse, hired killer, narcotics, motel room, neo-noir", "tags_pipe": "|prison|release from prison|suitcase|record producer|investigation|daughter|loss|revenge|stakeout|ex-con|warehouse|hired killer|narcotics|motel room|neo-noir|", "overview": "The Limey follows Wilson (Terence Stamp), a tough English ex-con who travels to Los Angeles to avenge his daughter's death. Upon arrival, Wilson goes to task battling Valentine (Peter Fonda) and an army of L.A.'s toughest criminals, hoping to find clues and piece together what happened. After surviving a near-death beating, getting thrown from a building and being chased down a dangerous mountain road, the Englishman decides to dole out some bodily harm of his own.", "text_for_embedding": "The Limey (1999). Genres: Action, Crime, Drama, Mystery, Thriller. The Limey follows Wilson (Terence Stamp), a tough English ex-con who travels to Los Angeles to avenge his daughter's death. Upon arrival, Wilson goes to task battling Valentine (Peter Fonda) and an army of L.A.'s toughest criminals, hoping to find clues and piece together what happened. After surviving a near-death beating, getting thrown from a building and being chased down a dangerous mountain road, the Englishman decides to dole out some bodily harm of his own.. Tags: prison, release from prison, suitcase, record producer, investigation, daughter, loss, revenge, stakeout, ex-con, warehouse, hired killer, narcotics, motel room, neo-noir"} +{"id": "1640", "title": "Crash", "year": 2004, "duration_min": 112, "rating": 7.2, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "race politics, daughter, installer, police, fall, car crash, racism, los angeles, bigotry, social services, collision", "tags_pipe": "|race politics|daughter|installer|police|fall|car crash|racism|los angeles|bigotry|social services|collision|", "overview": "Los Angeles citizens with vastly separate lives collide in interweaving stories of race, loss and redemption.", "text_for_embedding": "Crash (2004). Genres: Drama. Los Angeles citizens with vastly separate lives collide in interweaving stories of race, loss and redemption.. Tags: race politics, daughter, installer, police, fall, car crash, racism, los angeles, bigotry, social services, collision"} +{"id": "25520", "title": "The House of Mirth", "year": 2000, "duration_min": 140, "rating": 6.4, "genres": "Drama, Romance", "genres_pipe": "|Drama|Romance|", "keywords": "", "tags_pipe": "", "overview": "A woman risks losing her chance of happiness with the only man she has ever loved.", "text_for_embedding": "The House of Mirth (2000). Genres: Drama, Romance. A woman risks losing her chance of happiness with the only man she has ever loved.. Tags: "} +{"id": "27342", "title": "Malone", "year": 1987, "duration_min": 92, "rating": 6.8, "genres": "Action, Thriller", "genres_pipe": "|Action|Thriller|", "keywords": "cia, assassin", "tags_pipe": "|cia|assassin|", "overview": "Erstwhile C.I.A. assassin Richard Malone hopes for a tranquil retirement in the placid Pacific Northwest, but what he gets is a rumble with a right-wing extremist plotting a secret revolution. Adapted from the novel \"Shotgun,\" by William Wingate.", "text_for_embedding": "Malone (1987). Genres: Action, Thriller. Erstwhile C.I.A. assassin Richard Malone hopes for a tranquil retirement in the placid Pacific Northwest, but what he gets is a rumble with a right-wing extremist plotting a secret revolution. Adapted from the novel \"Shotgun,\" by William Wingate.. Tags: cia, assassin"} +{"id": "13689", "title": "Peaceful Warrior", "year": 2006, "duration_min": 120, "rating": 7.3, "genres": "Drama, Romance", "genres_pipe": "|Drama|Romance|", "keywords": "", "tags_pipe": "", "overview": "A chance encounter with a stranger changes the life of a college gymnast.", "text_for_embedding": "Peaceful Warrior (2006). Genres: Drama, Romance. A chance encounter with a stranger changes the life of a college gymnast.. Tags: "} +{"id": "67911", "title": "Bucky Larson: Born to Be a Star", "year": 2011, "duration_min": 97, "rating": 4.4, "genres": "Comedy", "genres_pipe": "|Comedy|", "keywords": "porno star, hollywood", "tags_pipe": "|porno star|hollywood|", "overview": "A kid from the Midwest moves out to Hollywood in order to follow in his parents footsteps -- and become a porn star.", "text_for_embedding": "Bucky Larson: Born to Be a Star (2011). Genres: Comedy. A kid from the Midwest moves out to Hollywood in order to follow in his parents footsteps -- and become a porn star.. Tags: porno star, hollywood"} +{"id": "24664", "title": "Bamboozled", "year": 2000, "duration_min": 135, "rating": 6.3, "genres": "Comedy, Drama", "genres_pipe": "|Comedy|Drama|", "keywords": "", "tags_pipe": "", "overview": "TV producer Pierre Delacroix (Damon Wayans) becomes frustrated when network brass reject his sitcom idea. Hoping to get fired, Delacroix pitches the worst idea he can think of: a minstrel show. The network not only airs it, but it incredibly becomes a smash hit. Michael Rapaport co-stars in this searing satire.", "text_for_embedding": "Bamboozled (2000). Genres: Comedy, Drama. TV producer Pierre Delacroix (Damon Wayans) becomes frustrated when network brass reject his sitcom idea. Hoping to get fired, Delacroix pitches the worst idea he can think of: a minstrel show. The network not only airs it, but it incredibly becomes a smash hit. Michael Rapaport co-stars in this searing satire.. Tags: "} +{"id": "329440", "title": "The Forest", "year": 2016, "duration_min": 95, "rating": 4.8, "genres": "Horror, Thriller", "genres_pipe": "|Horror|Thriller|", "keywords": "japan, forest", "tags_pipe": "|japan|forest|", "overview": "Set in the Aokigahara Forest, a real-life place in Japan where people go to end their lives. Against this backdrop, a young American woman comes in search of her twin sister, who has mysteriously disappeared.", "text_for_embedding": "The Forest (2016). Genres: Horror, Thriller. Set in the Aokigahara Forest, a real-life place in Japan where people go to end their lives. Against this backdrop, a young American woman comes in search of her twin sister, who has mysteriously disappeared.. Tags: japan, forest"} +{"id": "47890", "title": "Sphinx", "year": 1981, "duration_min": 118, "rating": 6.0, "genres": "Adventure, Mystery, Thriller", "genres_pipe": "|Adventure|Mystery|Thriller|", "keywords": "cairo, based on novel, egypt, pyramid, museum, mummy, murder, independent film, curse, egyptologist, archeologist", "tags_pipe": "|cairo|based on novel|egypt|pyramid|museum|mummy|murder|independent film|curse|egyptologist|archeologist|", "overview": "Egyptologist Erica Baron finds more than she bargained for during her long-planned trip to The Land of the Pharoahs - murder, theft, betrayal, love, and a mummy's curse!", "text_for_embedding": "Sphinx (1981). Genres: Adventure, Mystery, Thriller. Egyptologist Erica Baron finds more than she bargained for during her long-planned trip to The Land of the Pharoahs - murder, theft, betrayal, love, and a mummy's curse!. Tags: cairo, based on novel, egypt, pyramid, museum, mummy, murder, independent film, curse, egyptologist, archeologist"} +{"id": "252512", "title": "While We're Young", "year": 2015, "duration_min": 97, "rating": 5.8, "genres": "Comedy, Drama, Mystery", "genres_pipe": "|Comedy|Drama|Mystery|", "keywords": "father-in-law, marriage, documentary filmmaking, hipster, middle age, documentary filmmaker, generation-x, generation-z, psychedelic drug", "tags_pipe": "|father-in-law|marriage|documentary filmmaking|hipster|middle age|documentary filmmaker|generation-x|generation-z|psychedelic drug|", "overview": "An uptight documentary filmmaker and his wife find their lives loosened up a bit after befriending a free-spirited younger couple.", "text_for_embedding": "While We're Young (2015). Genres: Comedy, Drama, Mystery. An uptight documentary filmmaker and his wife find their lives loosened up a bit after befriending a free-spirited younger couple.. Tags: father-in-law, marriage, documentary filmmaking, hipster, middle age, documentary filmmaker, generation-x, generation-z, psychedelic drug"} +{"id": "55720", "title": "A Better Life", "year": 2011, "duration_min": 98, "rating": 7.0, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "california, garden, immigrant, truck, illegal immigrant, gardener, stolen truck", "tags_pipe": "|california|garden|immigrant|truck|illegal immigrant|gardener|stolen truck|", "overview": "A gardener in East L.A. struggles to keep his son away from gangs and immigration agents while traveling across town to perform landscaping work for the city's wealthy landowners.", "text_for_embedding": "A Better Life (2011). Genres: Drama. A gardener in East L.A. struggles to keep his son away from gangs and immigration agents while traveling across town to perform landscaping work for the city's wealthy landowners.. Tags: california, garden, immigrant, truck, illegal immigrant, gardener, stolen truck"} +{"id": "9613", "title": "Spider", "year": 2002, "duration_min": 98, "rating": 6.4, "genres": "Drama, Mystery, Thriller", "genres_pipe": "|Drama|Mystery|Thriller|", "keywords": "secret, asylum, bed and breakfast place, past, psychopath", "tags_pipe": "|secret|asylum|bed and breakfast place|past|psychopath|", "overview": "A mentally disturbed man takes residence in a halfway house. His mind gradually slips back into the realm created by his illness, where he replays a key part of his childhood.", "text_for_embedding": "Spider (2002). Genres: Drama, Mystery, Thriller. A mentally disturbed man takes residence in a halfway house. His mind gradually slips back into the realm created by his illness, where he replays a key part of his childhood.. Tags: secret, asylum, bed and breakfast place, past, psychopath"} +{"id": "29076", "title": "Gun Shy", "year": 2000, "duration_min": 101, "rating": 5.4, "genres": "Action, Comedy, Romance, Thriller", "genres_pipe": "|Action|Comedy|Romance|Thriller|", "keywords": "female nudity, drug cartel, nervous breakdown", "tags_pipe": "|female nudity|drug cartel|nervous breakdown|", "overview": "Legendary undercover DEA agent Charlie Mayough has suddenly lost his nerves of steel. On the verge of a career-induced mental breakdown, and in complete fear of trigger-happy Mafia leader Fulvio Nesstra, Charlie seeks psychiatric help and finds himself relying on the support of an unstable therapy group and nurse Judy just to get through his work.", "text_for_embedding": "Gun Shy (2000). Genres: Action, Comedy, Romance, Thriller. Legendary undercover DEA agent Charlie Mayough has suddenly lost his nerves of steel. On the verge of a career-induced mental breakdown, and in complete fear of trigger-happy Mafia leader Fulvio Nesstra, Charlie seeks psychiatric help and finds himself relying on the support of an unstable therapy group and nurse Judy just to get through his work.. Tags: female nudity, drug cartel, nervous breakdown"} +{"id": "29339", "title": "Nicholas Nickleby", "year": 2002, "duration_min": 132, "rating": 6.8, "genres": "Adventure, Drama, Action, Family", "genres_pipe": "|Adventure|Drama|Action|Family|", "keywords": "", "tags_pipe": "", "overview": "The Charles Dickens story of Nicholas Nickleby, a young boy in search of a better life for his recently torn-apart family. A young compassionate man struggles to save his family and friends from the abusive exploitation of his coldheartedly grasping uncle.", "text_for_embedding": "Nicholas Nickleby (2002). Genres: Adventure, Drama, Action, Family. The Charles Dickens story of Nicholas Nickleby, a young boy in search of a better life for his recently torn-apart family. A young compassionate man struggles to save his family and friends from the abusive exploitation of his coldheartedly grasping uncle.. Tags: "} +{"id": "68812", "title": "The Iceman", "year": 2012, "duration_min": 105, "rating": 6.4, "genres": "Thriller, Crime, Drama", "genres_pipe": "|Thriller|Crime|Drama|", "keywords": "new jersey, restaurant, hitman, van, arrest, psychopath, based on true story, jail, serial murder, stabbing, crime family, bombing, ice cream man  , drug deal, contract killer", "tags_pipe": "|new jersey|restaurant|hitman|van|arrest|psychopath|based on true story|jail|serial murder|stabbing|crime family|bombing|ice cream man  |drug deal|contract killer|", "overview": "The true story of Richard Kuklinski, the notorious contract killer and family man.", "text_for_embedding": "The Iceman (2012). Genres: Thriller, Crime, Drama. The true story of Richard Kuklinski, the notorious contract killer and family man.. Tags: new jersey, restaurant, hitman, van, arrest, psychopath, based on true story, jail, serial murder, stabbing, crime family, bombing, ice cream man  , drug deal, contract killer"} +{"id": "32740", "title": "Krrish", "year": 2006, "duration_min": 154, "rating": 5.5, "genres": "Action, Science Fiction", "genres_pipe": "|Action|Science Fiction|", "keywords": "", "tags_pipe": "", "overview": "Krishna (Roshan) is born with magical powers - a legacy from his father. Priya (Chopra) comes into his life and becomes his world. When she beckons him to Singapore, he follows. In Singapore, Dr. Siddhant Arya (Shah), the megalomaniac scientist is on the verge of changing the future forever. Only one man stands between Dr. Siddharth Arya and his destructive dreams. To block his ruthless ambitions -- Krishna must become Krrish.", "text_for_embedding": "Krrish (2006). Genres: Action, Science Fiction. Krishna (Roshan) is born with magical powers - a legacy from his father. Priya (Chopra) comes into his life and becomes his world. When she beckons him to Singapore, he follows. In Singapore, Dr. Siddhant Arya (Shah), the megalomaniac scientist is on the verge of changing the future forever. Only one man stands between Dr. Siddharth Arya and his destructive dreams. To block his ruthless ambitions -- Krishna must become Krrish.. Tags: "} +{"id": "14195", "title": "Cecil B. Demented", "year": 2000, "duration_min": 87, "rating": 6.2, "genres": "Thriller, Comedy, Crime", "genres_pipe": "|Thriller|Comedy|Crime|", "keywords": "heroin, blindfold, bong, perversion, burned alive, independent film", "tags_pipe": "|heroin|blindfold|bong|perversion|burned alive|independent film|", "overview": "An insane independent film director and his renegade group of teenage film makers kidnap an A-list Hollywood actress and force her to star in their underground film.", "text_for_embedding": "Cecil B. Demented (2000). Genres: Thriller, Comedy, Crime. An insane independent film director and his renegade group of teenage film makers kidnap an A-list Hollywood actress and force her to star in their underground film.. Tags: heroin, blindfold, bong, perversion, burned alive, independent film"} +{"id": "73567", "title": "Killer Joe", "year": 2011, "duration_min": 102, "rating": 6.5, "genres": "Crime, Drama, Thriller", "genres_pipe": "|Crime|Drama|Thriller|", "keywords": "trailer park, gun, texas, deal, psychopath, sexual humiliation, money, lingerie, arson, police detective, physical abuse, neo-noir, burial, pizza shop, drugs", "tags_pipe": "|trailer park|gun|texas|deal|psychopath|sexual humiliation|money|lingerie|arson|police detective|physical abuse|neo-noir|burial|pizza shop|drugs|", "overview": "A cop (Matthew McConaughey) who moonlights as a hit man agrees to kill the hated mother of a desperate drug dealer (Emile Hirsch) in exchange for a tumble with the young man's virginal sister (Juno Temple).", "text_for_embedding": "Killer Joe (2011). Genres: Crime, Drama, Thriller. A cop (Matthew McConaughey) who moonlights as a hit man agrees to kill the hated mother of a desperate drug dealer (Emile Hirsch) in exchange for a tumble with the young man's virginal sister (Juno Temple).. Tags: trailer park, gun, texas, deal, psychopath, sexual humiliation, money, lingerie, arson, police detective, physical abuse, neo-noir, burial, pizza shop, drugs"} +{"id": "41479", "title": "The Joneses", "year": 2009, "duration_min": 96, "rating": 6.1, "genres": "Comedy, Drama", "genres_pipe": "|Comedy|Drama|", "keywords": "independent film, duringcreditsstinger", "tags_pipe": "|independent film|duringcreditsstinger|", "overview": "A seemingly perfect family moves into a suburban neighborhood, but when it comes to the truth as to why they're living there, they don't exactly come clean with their neighbors.", "text_for_embedding": "The Joneses (2009). Genres: Comedy, Drama. A seemingly perfect family moves into a suburban neighborhood, but when it comes to the truth as to why they're living there, they don't exactly come clean with their neighbors.. Tags: independent film, duringcreditsstinger"} +{"id": "15394", "title": "Owning Mahowny", "year": 2003, "duration_min": 104, "rating": 6.8, "genres": "Crime, Drama, Thriller", "genres_pipe": "|Crime|Drama|Thriller|", "keywords": "female nudity, gambling, casino, nudity, banker, toronto, fraud, niagara falls, based on true story, atlantic city, money, las vegas, surveillance, gambler, bank fraud", "tags_pipe": "|female nudity|gambling|casino|nudity|banker|toronto|fraud|niagara falls|based on true story|atlantic city|money|las vegas|surveillance|gambler|bank fraud|", "overview": "Dan Mahowny was a rising star at the Canadian Imperial Bank of Commerce. At twenty-four he was assistant manager of a major branch in the heart of Toronto's financial district. To his colleagues he was a workaholic. To his customers, he was astute, decisive and helpful. To his friends, he was a quiet, but humorous man who enjoyed watching sports on television. To his girlfriend, he was shy but engaging. None of them knew the other side of Dan Mahowny--the side that executed the largest single-handed bank fraud in Canadian history, grossing over $10 million in eighteen months to feed his gambling obsession.", "text_for_embedding": "Owning Mahowny (2003). Genres: Crime, Drama, Thriller. Dan Mahowny was a rising star at the Canadian Imperial Bank of Commerce. At twenty-four he was assistant manager of a major branch in the heart of Toronto's financial district. To his colleagues he was a workaholic. To his customers, he was astute, decisive and helpful. To his friends, he was a quiet, but humorous man who enjoyed watching sports on television. To his girlfriend, he was shy but engaging. None of them knew the other side of Dan Mahowny--the side that executed the largest single-handed bank fraud in Canadian history, grossing over $10 million in eighteen months to feed his gambling obsession.. Tags: female nudity, gambling, casino, nudity, banker, toronto, fraud, niagara falls, based on true story, atlantic city, money, las vegas, surveillance, gambler, bank fraud"} +{"id": "10071", "title": "The Brothers Solomon", "year": 2007, "duration_min": 93, "rating": 4.9, "genres": "Comedy", "genres_pipe": "|Comedy|", "keywords": "brother brother relationship, jealousy, pregnancy and birth, autoritian education, arctic", "tags_pipe": "|brother brother relationship|jealousy|pregnancy and birth|autoritian education|arctic|", "overview": "A pair of well-meaning, but socially inept brothers try to find their perfect mates in order to provide their dying father with a grandchild.", "text_for_embedding": "The Brothers Solomon (2007). Genres: Comedy. A pair of well-meaning, but socially inept brothers try to find their perfect mates in order to provide their dying father with a grandchild.. Tags: brother brother relationship, jealousy, pregnancy and birth, autoritian education, arctic"} +{"id": "1989", "title": "My Blueberry Nights", "year": 2007, "duration_min": 111, "rating": 6.0, "genres": "Drama, Romance", "genres_pipe": "|Drama|Romance|", "keywords": "usa, kaffeehaus, poker, lovesickness, waitress, bar, night life, night, melancholy, approach, loneliness", "tags_pipe": "|usa|kaffeehaus|poker|lovesickness|waitress|bar|night life|night|melancholy|approach|loneliness|", "overview": "Elizabeth has just been through a particularly nasty breakup, and now she's ready to leave her friends and memories behind as she chases her dreams across the country. In order to support herself on her journey, Elizabeth picks up a series of waitress jobs along the way. As Elizabeth crosses paths with a series of lost souls.", "text_for_embedding": "My Blueberry Nights (2007). Genres: Drama, Romance. Elizabeth has just been through a particularly nasty breakup, and now she's ready to leave her friends and memories behind as she chases her dreams across the country. In order to support herself on her journey, Elizabeth picks up a series of waitress jobs along the way. As Elizabeth crosses paths with a series of lost souls.. Tags: usa, kaffeehaus, poker, lovesickness, waitress, bar, night life, night, melancholy, approach, loneliness"} +{"id": "91076", "title": "Illuminata", "year": 1998, "duration_min": 119, "rating": 6.3, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "playwright, critic, theater", "tags_pipe": "|playwright|critic|theater|", "overview": "It's the start of the 20th century, and Tuccio, resident playwright of a theatre repertory company offers the owners of the company his new play, \"Illuminata\". They reject it, saying it's not finished, and intrigue starts that involves influential critic Bevalaqua, theatre star Celimene, young lead actors and other theatre residents", "text_for_embedding": "Illuminata (1998). Genres: Drama. It's the start of the 20th century, and Tuccio, resident playwright of a theatre repertory company offers the owners of the company his new play, \"Illuminata\". They reject it, saying it's not finished, and intrigue starts that involves influential critic Bevalaqua, theatre star Celimene, young lead actors and other theatre residents. Tags: playwright, critic, theater"} +{"id": "12779", "title": "Swept Away", "year": 2002, "duration_min": 89, "rating": 4.8, "genres": "Comedy, Romance", "genres_pipe": "|Comedy|Romance|", "keywords": "adultery, island, shipwreck, tropical island", "tags_pipe": "|adultery|island|shipwreck|tropical island|", "overview": "Stranded and alone on a desert island during a cruise, a spoiled rich woman and a deckhand fall in love and make a date to reunite after their rescue.", "text_for_embedding": "Swept Away (2002). Genres: Comedy, Romance. Stranded and alone on a desert island during a cruise, a spoiled rich woman and a deckhand fall in love and make a date to reunite after their rescue.. Tags: adultery, island, shipwreck, tropical island"} +{"id": "13191", "title": "War, Inc.", "year": 2008, "duration_min": 106, "rating": 5.6, "genres": "Action, Adventure, Comedy, Thriller", "genres_pipe": "|Action|Adventure|Comedy|Thriller|", "keywords": "hitman, political satire", "tags_pipe": "|hitman|political satire|", "overview": "War Inc. is set in the future, when the fictional desert country of Turaqistan is torn by a riot after a private corporation, Tamerlane, owned by the former Vice President of the United States, has taken over the whole country. Brand Hauser, a hit man who suppresses his emotions by gobbling down hot sauce, is hired by the corporation's head to kill the CEO of their competitors.", "text_for_embedding": "War, Inc. (2008). Genres: Action, Adventure, Comedy, Thriller. War Inc. is set in the future, when the fictional desert country of Turaqistan is torn by a riot after a private corporation, Tamerlane, owned by the former Vice President of the United States, has taken over the whole country. Brand Hauser, a hit man who suppresses his emotions by gobbling down hot sauce, is hired by the corporation's head to kill the CEO of their competitors.. Tags: hitman, political satire"} +{"id": "11770", "title": "Shaolin Soccer", "year": 2001, "duration_min": 113, "rating": 6.6, "genres": "Action, Comedy", "genres_pipe": "|Action|Comedy|", "keywords": "martial arts, stadium, champion, shaolin, steel helmet, soccer", "tags_pipe": "|martial arts|stadium|champion|shaolin|steel helmet|soccer|", "overview": "A young Shaolin follower reunites with his discouraged brothers to form a soccer team using their martial art skills to their advantage.", "text_for_embedding": "Shaolin Soccer (2001). Genres: Action, Comedy. A young Shaolin follower reunites with his discouraged brothers to form a soccer team using their martial art skills to their advantage.. Tags: martial arts, stadium, champion, shaolin, steel helmet, soccer"} +{"id": "12703", "title": "The Brown Bunny", "year": 2004, "duration_min": 93, "rating": 5.5, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "rape, ambulance, ex-girlfriend, memory, unsimulated sex, motorcycle", "tags_pipe": "|rape|ambulance|ex-girlfriend|memory|unsimulated sex|motorcycle|", "overview": "Bud Clay races motorcycles in the 250cc Formula II class of road racing. After a race in New Hampshire, he has five days to get to his next race in California. During his road trip, he is haunted by memories of the last time he saw Daisy, his true love.", "text_for_embedding": "The Brown Bunny (2004). Genres: Drama. Bud Clay races motorcycles in the 250cc Formula II class of road racing. After a race in New Hampshire, he has five days to get to his next race in California. During his road trip, he is haunted by memories of the last time he saw Daisy, his true love.. Tags: rape, ambulance, ex-girlfriend, memory, unsimulated sex, motorcycle"} +{"id": "64559", "title": "The Swindle", "year": 1997, "duration_min": 105, "rating": 6.4, "genres": "Comedy, Crime, Thriller", "genres_pipe": "|Comedy|Crime|Thriller|", "keywords": "", "tags_pipe": "", "overview": "Betty and Victor are a pair of scam artists. One day Betty brings in Maurice, a treasurer of a multinational company. Maurice is due to transfer 5 millions francs out of Switzerland, and Betty is convinced he plans to steal that money.", "text_for_embedding": "The Swindle (1997). Genres: Comedy, Crime, Thriller. Betty and Victor are a pair of scam artists. One day Betty brings in Maurice, a treasurer of a multinational company. Maurice is due to transfer 5 millions francs out of Switzerland, and Betty is convinced he plans to steal that money.. Tags: "} +{"id": "222649", "title": "Rosewater", "year": 2014, "duration_min": 103, "rating": 6.5, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "prison, biography, reporter, interrogation, iran, american spy", "tags_pipe": "|prison|biography|reporter|interrogation|iran|american spy|", "overview": "In 2009, Iranian Canadian journalist Maziar Bahari was covering Iran's volatile elections for Newsweek. One of the few reporters living in the country with access to US media, he made an appearance on The Daily Show with Jon Stewart, in a taped interview with comedian Jason Jones. The interview was intended as satire, but if the Tehran authorities got the joke they didn't like it - and it would quickly came back to haunt Bahari when he was rousted from his family home and thrown into prison. Making his directorial debut, Jon Stewart tells the tale of Bahari's months-long imprisonment and interrogation in this powerful and affecting docudrama featuring a potent and performance by Gael García Bernal recounting Bahari's efforts to maintain his hope and his sanity in the face of isolation and persecution-through memories of his family, recollections of the music he loves, and thoughts of his wife and unborn child.", "text_for_embedding": "Rosewater (2014). Genres: Drama. In 2009, Iranian Canadian journalist Maziar Bahari was covering Iran's volatile elections for Newsweek. One of the few reporters living in the country with access to US media, he made an appearance on The Daily Show with Jon Stewart, in a taped interview with comedian Jason Jones. The interview was intended as satire, but if the Tehran authorities got the joke they didn't like it - and it would quickly came back to haunt Bahari when he was rousted from his family home and thrown into prison. Making his directorial debut, Jon Stewart tells the tale of Bahari's months-long imprisonment and interrogation in this powerful and affecting docudrama featuring a potent and performance by Gael García Bernal recounting Bahari's efforts to maintain his hope and his sanity in the face of isolation and persecution-through memories of his family, recollections of the music he loves, and thoughts of his wife and unborn child.. Tags: prison, biography, reporter, interrogation, iran, american spy"} +{"id": "115872", "title": "The Chambermaid on the Titanic", "year": 1997, "duration_min": 100, "rating": 5.3, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "", "tags_pipe": "", "overview": "Horty, a French foundry worker, wins a contest and is sent to see the sailing of the Titanic. In England, Marie, saying she is a chambermaid on the Titanic and cannot get a room, asks to share his room. They do, chastely; when he awakens, she is gone, but he sees her at the sailing and gets a photo of her. When he returns home, he suspects that his wife Zoe has been sleeping with Simeon, the foundry owner. Horty goes to the bar, where his friends get him drunk and he starts telling an erotic fantasy of what happened with him and Marie, drawing a larger audience each night.", "text_for_embedding": "The Chambermaid on the Titanic (1997). Genres: Drama. Horty, a French foundry worker, wins a contest and is sent to see the sailing of the Titanic. In England, Marie, saying she is a chambermaid on the Titanic and cannot get a room, asks to share his room. They do, chastely; when he awakens, she is gone, but he sees her at the sailing and gets a photo of her. When he returns home, he suspects that his wife Zoe has been sleeping with Simeon, the foundry owner. Horty goes to the bar, where his friends get him drunk and he starts telling an erotic fantasy of what happened with him and Marie, drawing a larger audience each night.. Tags: "} +{"id": "101173", "title": "Coriolanus", "year": 2011, "duration_min": 123, "rating": 5.9, "genres": "Drama, Thriller", "genres_pipe": "|Drama|Thriller|", "keywords": "senate, general, market, rivalry, tragedy, tears, scar, stabbing, truce, flag, vote", "tags_pipe": "|senate|general|market|rivalry|tragedy|tears|scar|stabbing|truce|flag|vote|", "overview": "Caius Martius, aka Coriolanus, is an arrogant and fearsome general who has built a career on protecting Rome from its enemies. Pushed by his ambitious mother to seek the position of consul, Coriolanus is at odds with the masses and unpopular with certain colleagues. When a riot results in his expulsion from Rome, Coriolanus seeks out his sworn enemy, Tullus Aufidius. Together, the pair vow to destroy the great city.", "text_for_embedding": "Coriolanus (2011). Genres: Drama, Thriller. Caius Martius, aka Coriolanus, is an arrogant and fearsome general who has built a career on protecting Rome from its enemies. Pushed by his ambitious mother to seek the position of consul, Coriolanus is at odds with the masses and unpopular with certain colleagues. When a riot results in his expulsion from Rome, Coriolanus seeks out his sworn enemy, Tullus Aufidius. Together, the pair vow to destroy the great city.. Tags: senate, general, market, rivalry, tragedy, tears, scar, stabbing, truce, flag, vote"} +{"id": "25350", "title": "Imaginary Heroes", "year": 2004, "duration_min": 111, "rating": 6.3, "genres": "Comedy, Drama", "genres_pipe": "|Comedy|Drama|", "keywords": "suicide, suicide mission", "tags_pipe": "|suicide|suicide mission|", "overview": "Matt Travis is good-looking, popular, and his school's best competitive swimmer, so everyone is shocked when he inexplicably commits suicide. As the following year unfolds, each member of his family struggles to recover from the tragedy with mixed results.", "text_for_embedding": "Imaginary Heroes (2004). Genres: Comedy, Drama. Matt Travis is good-looking, popular, and his school's best competitive swimmer, so everyone is shocked when he inexplicably commits suicide. As the following year unfolds, each member of his family struggles to recover from the tragedy with mixed results.. Tags: suicide, suicide mission"} +{"id": "10034", "title": "High Heels and Low Lifes", "year": 2001, "duration_min": 86, "rating": 6.4, "genres": "Action, Crime, Comedy", "genres_pipe": "|Action|Crime|Comedy|", "keywords": "nurse, blackmail, teacher, best friend, bank robbery", "tags_pipe": "|nurse|blackmail|teacher|best friend|bank robbery|", "overview": "A nurse eavesdrops with a friend on a cell phone conversation that describes a bank heist. She and the friend then conspire to blackmail the robbers for $2 million.", "text_for_embedding": "High Heels and Low Lifes (2001). Genres: Action, Crime, Comedy. A nurse eavesdrops with a friend on a cell phone conversation that describes a bank heist. She and the friend then conspire to blackmail the robbers for $2 million.. Tags: nurse, blackmail, teacher, best friend, bank robbery"} +{"id": "20178", "title": "World's Greatest Dad", "year": 2009, "duration_min": 99, "rating": 6.5, "genres": "Comedy, Romance", "genres_pipe": "|Comedy|Romance|", "keywords": "male nudity, poetry, adolescence, lie, nudity, rejection, high school, independent film, teacher, vulgarity, student", "tags_pipe": "|male nudity|poetry|adolescence|lie|nudity|rejection|high school|independent film|teacher|vulgarity|student|", "overview": "Robin Williams stars as Lance Clayton, a man who has learned to settle. He dreamed of being a rich and famous writer, but has only managed to make it as a high school poetry teacher. His only son Kyle (Daryl Sabara) is an insufferable jackass who won’t give his father the time of day. He is dating Claire (Alexie Gilmore), the school’s adorable art teacher, but she doesn’t want to get serious --", "text_for_embedding": "World's Greatest Dad (2009). Genres: Comedy, Romance. Robin Williams stars as Lance Clayton, a man who has learned to settle. He dreamed of being a rich and famous writer, but has only managed to make it as a high school poetry teacher. His only son Kyle (Daryl Sabara) is an insufferable jackass who won’t give his father the time of day. He is dating Claire (Alexie Gilmore), the school’s adorable art teacher, but she doesn’t want to get serious --. Tags: male nudity, poetry, adolescence, lie, nudity, rejection, high school, independent film, teacher, vulgarity, student"} +{"id": "5072", "title": "Severance", "year": 2006, "duration_min": 96, "rating": 6.4, "genres": "Horror, Comedy, Thriller", "genres_pipe": "|Horror|Comedy|Thriller|", "keywords": "will to survive, killer, forced retirement, defence company, jump the shark, team building", "tags_pipe": "|will to survive|killer|forced retirement|defence company|jump the shark|team building|", "overview": "Members (Danny Dyer, Laura Harris, Tim McInnerny) of the Palisades Defense Corp. sales group arrive in Europe for a team-building exercise. A fallen tree blocks the route, and they must hike to their destination. However, a psychotic killer lurks in the woods, and he has a horrible fate in mind for each of the co-workers.", "text_for_embedding": "Severance (2006). Genres: Horror, Comedy, Thriller. Members (Danny Dyer, Laura Harris, Tim McInnerny) of the Palisades Defense Corp. sales group arrive in Europe for a team-building exercise. A fallen tree blocks the route, and they must hike to their destination. However, a psychotic killer lurks in the woods, and he has a horrible fate in mind for each of the co-workers.. Tags: will to survive, killer, forced retirement, defence company, jump the shark, team building"} +{"id": "18191", "title": "Edmond", "year": 2005, "duration_min": 82, "rating": 6.0, "genres": "Drama, Thriller", "genres_pipe": "|Drama|Thriller|", "keywords": "new york, sex-shop, prostitute, sex, fortune teller, underworld, murder, prejudice, racism, violence, pawnshop, bipolar disorder", "tags_pipe": "|new york|sex-shop|prostitute|sex|fortune teller|underworld|murder|prejudice|racism|violence|pawnshop|bipolar disorder|", "overview": "Seemingly mild-mannered businessman Edmond Burke visits a fortuneteller and hears a remark that spurs him to leave his wife abruptly and seek what is missing from his life. Encounters with strangers and unsavory people weaken the barriers encompassing his long-suppressed rage, until Edmond explodes in violence.", "text_for_embedding": "Edmond (2005). Genres: Drama, Thriller. Seemingly mild-mannered businessman Edmond Burke visits a fortuneteller and hears a remark that spurs him to leave his wife abruptly and seek what is missing from his life. Encounters with strangers and unsavory people weaken the barriers encompassing his long-suppressed rage, until Edmond explodes in violence.. Tags: new york, sex-shop, prostitute, sex, fortune teller, underworld, murder, prejudice, racism, violence, pawnshop, bipolar disorder"} +{"id": "31007", "title": "Welcome to the Rileys", "year": 2010, "duration_min": 110, "rating": 6.4, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "prostitute, rape, stripper, independent film, teenage girl, smoking marijuana", "tags_pipe": "|prostitute|rape|stripper|independent film|teenage girl|smoking marijuana|", "overview": "Years after their teenage daughter’s death, Lois and Doug Riley, an upstanding Indiana couple, are frozen by estranging grief. Doug escapes to New Orleans on a business trip. Compelled by urgencies he doesn’t understand, he insinuates himself into the life of an underage hooker, becoming her platonic guardian.", "text_for_embedding": "Welcome to the Rileys (2010). Genres: Drama. Years after their teenage daughter’s death, Lois and Doug Riley, an upstanding Indiana couple, are frozen by estranging grief. Doug escapes to New Orleans on a business trip. Compelled by urgencies he doesn’t understand, he insinuates himself into the life of an underage hooker, becoming her platonic guardian.. Tags: prostitute, rape, stripper, independent film, teenage girl, smoking marijuana"} +{"id": "11546", "title": "Police Academy: Mission to Moscow", "year": 1994, "duration_min": 83, "rating": 4.1, "genres": "Comedy, Crime", "genres_pipe": "|Comedy|Crime|", "keywords": "video game, mafia, police academy, moscow, commandant", "tags_pipe": "|video game|mafia|police academy|moscow|commandant|", "overview": "The Russians need help in dealing with the Mafia and so they seek help with the veterans of the Police Academy. They head off to Moscow, in order to find evidence against Konstantin Konali, who marketed a computer game that everyone in the world is playing.", "text_for_embedding": "Police Academy: Mission to Moscow (1994). Genres: Comedy, Crime. The Russians need help in dealing with the Mafia and so they seek help with the veterans of the Police Academy. They head off to Moscow, in order to find evidence against Konstantin Konali, who marketed a computer game that everyone in the world is playing.. Tags: video game, mafia, police academy, moscow, commandant"} +{"id": "184374", "title": "Cinco de Mayo: La Batalla", "year": 2013, "duration_min": 125, "rating": 5.8, "genres": "War, History, Drama", "genres_pipe": "|War|History|Drama|", "keywords": "mexican", "tags_pipe": "|mexican|", "overview": "On May 5th, 1862, a few thousand Mexican soldiers put their lives on the line against the world's largest and most powerful army in one legendary battle for freedom and for Mexico.", "text_for_embedding": "Cinco de Mayo: La Batalla (2013). Genres: War, History, Drama. On May 5th, 1862, a few thousand Mexican soldiers put their lives on the line against the world's largest and most powerful army in one legendary battle for freedom and for Mexico.. Tags: mexican"} +{"id": "268171", "title": "Elsa & Fred", "year": 2014, "duration_min": 104, "rating": 6.2, "genres": "Comedy, Family, Romance", "genres_pipe": "|Comedy|Family|Romance|", "keywords": "widower", "tags_pipe": "|widower|", "overview": "Aged, embittered widower, Fred learns to enjoy life thanks to his elderly yet vibrant neighbor, Elsa. Upon learning Elsa is terminally ill, Fred takes her to the Fontana di Trevi in Rome in order to reenact her favorite scene from ‘La Dolce Vita’.", "text_for_embedding": "Elsa & Fred (2014). Genres: Comedy, Family, Romance. Aged, embittered widower, Fred learns to enjoy life thanks to his elderly yet vibrant neighbor, Elsa. Upon learning Elsa is terminally ill, Fred takes her to the Fontana di Trevi in Rome in order to reenact her favorite scene from ‘La Dolce Vita’.. Tags: widower"} +{"id": "78149", "title": "An Alan Smithee Film: Burn, Hollywood, Burn", "year": 1998, "duration_min": 86, "rating": 3.0, "genres": "Comedy", "genres_pipe": "|Comedy|", "keywords": "alan smithee", "tags_pipe": "|alan smithee|", "overview": "Filmmaker Alan Smithee finds himself the unwilling puppet of a potentially bad, big budget action film which he proceeds to steal the reels and leave the cast and crew in a frenzy.", "text_for_embedding": "An Alan Smithee Film: Burn, Hollywood, Burn (1998). Genres: Comedy. Filmmaker Alan Smithee finds himself the unwilling puppet of a potentially bad, big budget action film which he proceeds to steal the reels and leave the cast and crew in a frenzy.. Tags: alan smithee"} +{"id": "24663", "title": "The Open Road", "year": 2009, "duration_min": 90, "rating": 4.8, "genres": "Comedy, Drama, Romance", "genres_pipe": "|Comedy|Drama|Romance|", "keywords": "independent film", "tags_pipe": "|independent film|", "overview": "Minor leaguer Carlton Garret takes an unexpected road trip to track down his estranged father, legendary baseball player Kyle Garret when Carlton’s mother becomes sick. Once reunited, Carlton struggles to deal with the series of misadventures caused by his father’s antics. Attempts at bonding come to a head as the mismatched duo make their way from Ohio back home to Houston to reunite the family.", "text_for_embedding": "The Open Road (2009). Genres: Comedy, Drama, Romance. Minor leaguer Carlton Garret takes an unexpected road trip to track down his estranged father, legendary baseball player Kyle Garret when Carlton’s mother becomes sick. Once reunited, Carlton struggles to deal with the series of misadventures caused by his father’s antics. Attempts at bonding come to a head as the mismatched duo make their way from Ohio back home to Houston to reunite the family.. Tags: independent film"} +{"id": "39037", "title": "The Good Guy", "year": 2009, "duration_min": 90, "rating": 5.4, "genres": "Comedy, Romance", "genres_pipe": "|Comedy|Romance|", "keywords": "independent film", "tags_pipe": "|independent film|", "overview": "Ambitious young Manhattanite and urban conservationist Beth (Bledel) wants it all: a good job, good friends, and a good guy to share the city with. Of course that last one is often the trickiest of all. Beth falls hard for Tommy (Porter), a sexy, young Wall Street hot-shot. But just as everything seems to be falling into place, complications arise in the form of Tommy's sensitive and handsome co-worker Daniel (Greenberg). Beth soon learns that the game of love in the big city is a lot like Wall Street -- high risk, high reward and everybody has an angle.", "text_for_embedding": "The Good Guy (2009). Genres: Comedy, Romance. Ambitious young Manhattanite and urban conservationist Beth (Bledel) wants it all: a good job, good friends, and a good guy to share the city with. Of course that last one is often the trickiest of all. Beth falls hard for Tommy (Porter), a sexy, young Wall Street hot-shot. But just as everything seems to be falling into place, complications arise in the form of Tommy's sensitive and handsome co-worker Daniel (Greenberg). Beth soon learns that the game of love in the big city is a lot like Wall Street -- high risk, high reward and everybody has an angle.. Tags: independent film"} +{"id": "22805", "title": "Motherhood", "year": 2009, "duration_min": 90, "rating": 4.7, "genres": "Comedy, Drama", "genres_pipe": "|Comedy|Drama|", "keywords": "mother role, blog, woman director", "tags_pipe": "|mother role|blog|woman director|", "overview": "Motherhood is a comedy written and directed by Katherine Dieckmann, and stars Uma Thurman, Anthony Edwards and Minnie Driver. Shot on location in New York’s West Village, focuses on the dilemmas of motherhood, such as marriage, work, and self, shown in the trials and tribulations of one pivotal day.", "text_for_embedding": "Motherhood (2009). Genres: Comedy, Drama. Motherhood is a comedy written and directed by Katherine Dieckmann, and stars Uma Thurman, Anthony Edwards and Minnie Driver. Shot on location in New York’s West Village, focuses on the dilemmas of motherhood, such as marriage, work, and self, shown in the trials and tribulations of one pivotal day.. Tags: mother role, blog, woman director"} +{"id": "39055", "title": "Free Style", "year": 2008, "duration_min": 94, "rating": 5.8, "genres": "Drama, Family", "genres_pipe": "|Drama|Family|", "keywords": "duringcreditsstinger", "tags_pipe": "|duringcreditsstinger|", "overview": "Cale Bryant is determined to win a coveted spot on the Grand National motocross racing team. With the support of his loving mother, precocious little sister and new girlfriend, Cale proves against all odds that he has the heart, the willpower and the courage never to give up on his dream.", "text_for_embedding": "Free Style (2008). Genres: Drama, Family. Cale Bryant is determined to win a coveted spot on the Grand National motocross racing team. With the support of his loving mother, precocious little sister and new girlfriend, Cale proves against all odds that he has the heart, the willpower and the courage never to give up on his dream.. Tags: duringcreditsstinger"} +{"id": "245846", "title": "Strangerland", "year": 2015, "duration_min": 111, "rating": 5.1, "genres": "Drama, Thriller", "genres_pipe": "|Drama|Thriller|", "keywords": "australia, missing child, outback, alcoholic drink, troubled marriage, woman director, australian outback, missing daughter", "tags_pipe": "|australia|missing child|outback|alcoholic drink|troubled marriage|woman director|australian outback|missing daughter|", "overview": "Newly arrived to a remote desert town, Catherine and Matthew are tormented by a suspicion when their two teenage children mysteriously vanish.", "text_for_embedding": "Strangerland (2015). Genres: Drama, Thriller. Newly arrived to a remote desert town, Catherine and Matthew are tormented by a suspicion when their two teenage children mysteriously vanish.. Tags: australia, missing child, outback, alcoholic drink, troubled marriage, woman director, australian outback, missing daughter"} +{"id": "25186", "title": "Janky Promoters", "year": 2009, "duration_min": 85, "rating": 7.0, "genres": "Comedy", "genres_pipe": "|Comedy|", "keywords": "", "tags_pipe": "", "overview": "Two shady concert promoters get into hot water when their chance to book a superstar rapper goes awry.", "text_for_embedding": "Janky Promoters (2009). Genres: Comedy. Two shady concert promoters get into hot water when their chance to book a superstar rapper goes awry.. Tags: "} +{"id": "15017", "title": "Blonde Ambition", "year": 2007, "duration_min": 93, "rating": 3.9, "genres": "Comedy, Romance", "genres_pipe": "|Comedy|Romance|", "keywords": "stripper, friends, best friend", "tags_pipe": "|stripper|friends|best friend|", "overview": "A young professional woman (Simpson) unwittingly becomes the pawn of two business executives in their bid to oust the head of a mega-conglomerate.", "text_for_embedding": "Blonde Ambition (2007). Genres: Comedy, Romance. A young professional woman (Simpson) unwittingly becomes the pawn of two business executives in their bid to oust the head of a mega-conglomerate.. Tags: stripper, friends, best friend"} +{"id": "12245", "title": "The Oxford Murders", "year": 2008, "duration_min": 107, "rating": 5.7, "genres": "Crime, Mystery, Thriller", "genres_pipe": "|Crime|Mystery|Thriller|", "keywords": "mathematician, mathematics, oxford, symbol, triangle, mass child killing", "tags_pipe": "|mathematician|mathematics|oxford|symbol|triangle|mass child killing|", "overview": "At Oxford University, a professor and a grad student work together to try and stop a potential series of murders seemingly linked by mathematical symbols", "text_for_embedding": "The Oxford Murders (2008). Genres: Crime, Mystery, Thriller. At Oxford University, a professor and a grad student work together to try and stop a potential series of murders seemingly linked by mathematical symbols. Tags: mathematician, mathematics, oxford, symbol, triangle, mass child killing"} +{"id": "49787", "title": "The Reef", "year": 2010, "duration_min": 94, "rating": 5.4, "genres": "Drama, Horror, Thriller", "genres_pipe": "|Drama|Horror|Thriller|", "keywords": "boat, boat accident, underwater, shark, great white shark", "tags_pipe": "|boat|boat accident|underwater|shark|great white shark|", "overview": "A great white shark hunts the crew of a capsized sailboat along the Great Barrier Reef.", "text_for_embedding": "The Reef (2010). Genres: Drama, Horror, Thriller. A great white shark hunts the crew of a capsized sailboat along the Great Barrier Reef.. Tags: boat, boat accident, underwater, shark, great white shark"} +{"id": "16358", "title": "Eulogy", "year": 2004, "duration_min": 91, "rating": 6.4, "genres": "Comedy, Drama", "genres_pipe": "|Comedy|Drama|", "keywords": "family secrets, dysfunctional family, independent film, death in family, family conflict, exploding boat", "tags_pipe": "|family secrets|dysfunctional family|independent film|death in family|family conflict|exploding boat|", "overview": "A black comedy that follows three generations of a family, who come together for the funeral of the patriarch - unveiling a litany of family secrets and covert relationships.", "text_for_embedding": "Eulogy (2004). Genres: Comedy, Drama. A black comedy that follows three generations of a family, who come together for the funeral of the patriarch - unveiling a litany of family secrets and covert relationships.. Tags: family secrets, dysfunctional family, independent film, death in family, family conflict, exploding boat"} +{"id": "7006", "title": "White Noise 2: The Light", "year": 2007, "duration_min": 99, "rating": 5.6, "genres": "Thriller, Drama, Horror, Fantasy", "genres_pipe": "|Thriller|Drama|Horror|Fantasy|", "keywords": "suicide, murder", "tags_pipe": "|suicide|murder|", "overview": "A man's family brought back from the verge of death, he then discovers he can identify people who are about to die.", "text_for_embedding": "White Noise 2: The Light (2007). Genres: Thriller, Drama, Horror, Fantasy. A man's family brought back from the verge of death, he then discovers he can identify people who are about to die.. Tags: suicide, murder"} +{"id": "66767", "title": "Beat the World", "year": 2011, "duration_min": 91, "rating": 4.3, "genres": "Music, Drama", "genres_pipe": "|Music|Drama|", "keywords": "sporting event", "tags_pipe": "|sporting event|", "overview": "Three dance crews – one Latin American, one European and one Canadian – prepare to battle at the International Beat the World competition in Detroit. Along the way, they struggle with gambling debt, bad break-ups and their own egos. In the final showdown to become world champions they find that their lifelong hopes, dreams and even lives, are at stake.", "text_for_embedding": "Beat the World (2011). Genres: Music, Drama. Three dance crews – one Latin American, one European and one Canadian – prepare to battle at the International Beat the World competition in Detroit. Along the way, they struggle with gambling debt, bad break-ups and their own egos. In the final showdown to become world champions they find that their lifelong hopes, dreams and even lives, are at stake.. Tags: sporting event"} +{"id": "17622", "title": "Fifty Dead Men Walking", "year": 2008, "duration_min": 117, "rating": 6.1, "genres": "Action, Thriller", "genres_pipe": "|Action|Thriller|", "keywords": "ira, slot machine, riot police, woman director", "tags_pipe": "|ira|slot machine|riot police|woman director|", "overview": "Based on Martin McGartland's real life story as a informant for the British Police to spy on the IRA. Taking place from 1987-1991, Martin (Jim Sturgess) works his way up the ranks of the IRA, while keeping his informant with the police Fergis (Ben Kingsley) at bay. In the process he saved numerous lives and is still in hiding from the IRA today.", "text_for_embedding": "Fifty Dead Men Walking (2008). Genres: Action, Thriller. Based on Martin McGartland's real life story as a informant for the British Police to spy on the IRA. Taking place from 1987-1991, Martin (Jim Sturgess) works his way up the ranks of the IRA, while keeping his informant with the police Fergis (Ben Kingsley) at bay. In the process he saved numerous lives and is still in hiding from the IRA today.. Tags: ira, slot machine, riot police, woman director"} +{"id": "283671", "title": "Jungle Shuffle", "year": 2014, "duration_min": 85, "rating": 6.5, "genres": "Family, Animation, Adventure", "genres_pipe": "|Family|Animation|Adventure|", "keywords": "poacher, jungle", "tags_pipe": "|poacher|jungle|", "overview": "In this turbulent jungle adventure an outcast coati male has to team up with a quirky spider monkey to save a coati princess from the hands of a human poacher and his mysterious client.", "text_for_embedding": "Jungle Shuffle (2014). Genres: Family, Animation, Adventure. In this turbulent jungle adventure an outcast coati male has to team up with a quirky spider monkey to save a coati princess from the hands of a human poacher and his mysterious client.. Tags: poacher, jungle"} +{"id": "18516", "title": "Adam Resurrected", "year": 2008, "duration_min": 106, "rating": 6.4, "genres": "Drama, War", "genres_pipe": "|Drama|War|", "keywords": "holocaust, nazis, israeli", "tags_pipe": "|holocaust|nazis|israeli|", "overview": "Before the war, in Berlin, Adam was an entertainer- cabaret impresario, magician, musician-loved by all until he finds himself in a concentration camp, confronted by Commandant Klein. Adam survives the camp by becoming the Klein's \"dog\", entertaining him while his wife and daughter are sent off to die. \"Adam Resurrected\" is the story of a man who once was a dog who meets a dog who once was a boy.", "text_for_embedding": "Adam Resurrected (2008). Genres: Drama, War. Before the war, in Berlin, Adam was an entertainer- cabaret impresario, magician, musician-loved by all until he finds himself in a concentration camp, confronted by Commandant Klein. Adam survives the camp by becoming the Klein's \"dog\", entertaining him while his wife and daughter are sent off to die. \"Adam Resurrected\" is the story of a man who once was a dog who meets a dog who once was a boy.. Tags: holocaust, nazis, israeli"} +{"id": "217708", "title": "Of Horses and Men", "year": 2013, "duration_min": 85, "rating": 6.9, "genres": "Drama, Romance, Comedy", "genres_pipe": "|Drama|Romance|Comedy|", "keywords": "horse, snow storm, icelandic", "tags_pipe": "|horse|snow storm|icelandic|", "overview": "A country romance about the human streak in the horse and the horse in the human. Love and death become interlaced and with terrible consequences.The fortunes of the people in the country through the horses' perception.", "text_for_embedding": "Of Horses and Men (2013). Genres: Drama, Romance, Comedy. A country romance about the human streak in the horse and the horse in the human. Love and death become interlaced and with terrible consequences.The fortunes of the people in the country through the horses' perception.. Tags: horse, snow storm, icelandic"} +{"id": "42057", "title": "It's a Wonderful Afterlife", "year": 2010, "duration_min": 99, "rating": 4.3, "genres": "Comedy, Romance", "genres_pipe": "|Comedy|Romance|", "keywords": "london england, indian lead, murder, matchmaking, ghost, woman director", "tags_pipe": "|london england|indian lead|murder|matchmaking|ghost|woman director|", "overview": "Indian mother Mrs Sethi's (Azmi) obsession with marrying off her daughter turns murderous. With jokes that routinely miss the mark and cringeworthy slapstick, this black comedy farce shouldn't work. Somehow, though, it does. (c) Empire Magazine", "text_for_embedding": "It's a Wonderful Afterlife (2010). Genres: Comedy, Romance. Indian mother Mrs Sethi's (Azmi) obsession with marrying off her daughter turns murderous. With jokes that routinely miss the mark and cringeworthy slapstick, this black comedy farce shouldn't work. Somehow, though, it does. (c) Empire Magazine. Tags: london england, indian lead, murder, matchmaking, ghost, woman director"} +{"id": "17577", "title": "The Devil's Tomb", "year": 2009, "duration_min": 90, "rating": 4.0, "genres": "Action, Horror, Thriller, Science Fiction", "genres_pipe": "|Action|Horror|Thriller|Science Fiction|", "keywords": "duct tape gag, bandana, headshot, camoflage uniform, sadistic laughter, flashback, military unit", "tags_pipe": "|duct tape gag|bandana|headshot|camoflage uniform|sadistic laughter|flashback|military unit|", "overview": "Captain Mack leads an elite military unit on a search for a missing scientist, and comes face-to-face with an an ancient evil lying beneath the Middle Eastern desert. Evil that is not of this world. Evil that should never be unearthed.", "text_for_embedding": "The Devil's Tomb (2009). Genres: Action, Horror, Thriller, Science Fiction. Captain Mack leads an elite military unit on a search for a missing scientist, and comes face-to-face with an an ancient evil lying beneath the Middle Eastern desert. Evil that is not of this world. Evil that should never be unearthed.. Tags: duct tape gag, bandana, headshot, camoflage uniform, sadistic laughter, flashback, military unit"} +{"id": "14608", "title": "Partition", "year": 2007, "duration_min": 116, "rating": 6.4, "genres": "Drama, Foreign, Romance", "genres_pipe": "|Drama|Foreign|Romance|", "keywords": "drama, independent film", "tags_pipe": "|drama|independent film|", "overview": "Determined to leave the ravages of war behind, 38 year old Gian Singh resigns from the British Indian Army to a quiet life. His world is soon thrown in turmoil, when he suddenly finds himself responsible for the life of a 17 year old girl, traumatized by the events that separated her from her family.", "text_for_embedding": "Partition (2007). Genres: Drama, Foreign, Romance. Determined to leave the ravages of war behind, 38 year old Gian Singh resigns from the British Indian Army to a quiet life. His world is soon thrown in turmoil, when he suddenly finds himself responsible for the life of a 17 year old girl, traumatized by the events that separated her from her family.. Tags: drama, independent film"} +{"id": "34417", "title": "Good Intentions", "year": 2010, "duration_min": 85, "rating": 5.0, "genres": "Comedy", "genres_pipe": "|Comedy|", "keywords": "independent film", "tags_pipe": "|independent film|", "overview": "Meet Etta Milford. Loving Wife. Doting Mother. Armed Robber. Etta's husband constantly blows their money on make-shift inventions. When she decides to secretly take \"investment\" matters into her own hands - things quickly go awry! With their savings gone, her husband suspicious, and their children out of control, Etta concocts a scheme to get back their money and save her family.", "text_for_embedding": "Good Intentions (2010). Genres: Comedy. Meet Etta Milford. Loving Wife. Doting Mother. Armed Robber. Etta's husband constantly blows their money on make-shift inventions. When she decides to secretly take \"investment\" matters into her own hands - things quickly go awry! With their savings gone, her husband suspicious, and their children out of control, Etta concocts a scheme to get back their money and save her family.. Tags: independent film"} +{"id": "15067", "title": "The Good, The Bad, The Weird", "year": 2008, "duration_min": 130, "rating": 7.1, "genres": "Action, Adventure, Comedy, Western", "genres_pipe": "|Action|Adventure|Comedy|Western|", "keywords": "gunslinger, gun", "tags_pipe": "|gunslinger|gun|", "overview": "The story of three Korean outlaws in 1930s Manchuria and their dealings with the Japanese army and Chinese and Russian bandits. The Good (a Bounty hunter), the Bad (a hitman), and the Weird (a thief) battle the army and the bandits in a race to use a treasure map to uncover the riches of legend.", "text_for_embedding": "The Good, The Bad, The Weird (2008). Genres: Action, Adventure, Comedy, Western. The story of three Korean outlaws in 1930s Manchuria and their dealings with the Japanese army and Chinese and Russian bandits. The Good (a Bounty hunter), the Bad (a hitman), and the Weird (a thief) battle the army and the bandits in a race to use a treasure map to uncover the riches of legend.. Tags: gunslinger, gun"} +{"id": "78383", "title": "Nurse 3-D", "year": 2013, "duration_min": 99, "rating": 4.9, "genres": "Horror, Thriller", "genres_pipe": "|Horror|Thriller|", "keywords": "nurse, sexual murder, revenge, lesbian relationship, dark comedy, hospital", "tags_pipe": "|nurse|sexual murder|revenge|lesbian relationship|dark comedy|hospital|", "overview": "Abby Russell, a beautiful, dedicated nurse with a sinister side, has a secret life in which she targets and punishes dishonest men.", "text_for_embedding": "Nurse 3-D (2013). Genres: Horror, Thriller. Abby Russell, a beautiful, dedicated nurse with a sinister side, has a secret life in which she targets and punishes dishonest men.. Tags: nurse, sexual murder, revenge, lesbian relationship, dark comedy, hospital"} +{"id": "43090", "title": "Gunless", "year": 2010, "duration_min": 89, "rating": 6.7, "genres": "Drama, Action, Comedy, Western", "genres_pipe": "|Drama|Action|Comedy|Western|", "keywords": "gunslinger, bounty hunter, blacksmith, duel, wild west", "tags_pipe": "|gunslinger|bounty hunter|blacksmith|duel|wild west|", "overview": "A quiet and peaceful community in the Dominion of Canada is shaken up by the arrival of a wounded and stinky gun-toting American cowboy, simply known as The Montana Kid, wanted for the alleged killing of seven men. A subsequent clarification reveals that his real name is Sean Rafferty, and he admits to killing, not seven, but eleven men. Things only get worse after Sean gets in the bad books of the local militia, and with armed bounty hunters hot on his trail, challenges the local unarmed blacksmith, Jack Smith, to a duel - wild west style! Written by rAjOo", "text_for_embedding": "Gunless (2010). Genres: Drama, Action, Comedy, Western. A quiet and peaceful community in the Dominion of Canada is shaken up by the arrival of a wounded and stinky gun-toting American cowboy, simply known as The Montana Kid, wanted for the alleged killing of seven men. A subsequent clarification reveals that his real name is Sean Rafferty, and he admits to killing, not seven, but eleven men. Things only get worse after Sean gets in the bad books of the local militia, and with armed bounty hunters hot on his trail, challenges the local unarmed blacksmith, Jack Smith, to a duel - wild west style! Written by rAjOo. Tags: gunslinger, bounty hunter, blacksmith, duel, wild west"} +{"id": "16614", "title": "Adventureland", "year": 2009, "duration_min": 107, "rating": 6.4, "genres": "Comedy", "genres_pipe": "|Comedy|", "keywords": "comedy, cheating on partner, amusement park, summer job, carny, marijuana joint, baldness, picking one's nose, reckless driving, reconciliation, pushing a car, marijuana pipe, ticket booth, scene, raised middle finger", "tags_pipe": "|comedy|cheating on partner|amusement park|summer job|carny|marijuana joint|baldness|picking one's nose|reckless driving|reconciliation|pushing a car|marijuana pipe|ticket booth|scene|raised middle finger|", "overview": "In the summer of 1987, a college graduate takes a 'nowhere' job at his local amusement park, only to find it's the perfect course to get him prepared for the real world.", "text_for_embedding": "Adventureland (2009). Genres: Comedy. In the summer of 1987, a college graduate takes a 'nowhere' job at his local amusement park, only to find it's the perfect course to get him prepared for the real world.. Tags: comedy, cheating on partner, amusement park, summer job, carny, marijuana joint, baldness, picking one's nose, reckless driving, reconciliation, pushing a car, marijuana pipe, ticket booth, scene, raised middle finger"} +{"id": "9700", "title": "The Lost City", "year": 2005, "duration_min": 144, "rating": 6.0, "genres": "Drama, Romance", "genres_pipe": "|Drama|Romance|", "keywords": "cuba, fidel castro, che guevara", "tags_pipe": "|cuba|fidel castro|che guevara|", "overview": "In Havana, Cuba in the late 1950's, a wealthy family, one of whose sons is a prominent nightclub owner, is caught in the violent transition from the oppressive regime of Batista to the Marxist government of Fidel Castro. Castro's regime ultimately leads the nightclub owner to flee to New York.", "text_for_embedding": "The Lost City (2005). Genres: Drama, Romance. In Havana, Cuba in the late 1950's, a wealthy family, one of whose sons is a prominent nightclub owner, is caught in the violent transition from the oppressive regime of Batista to the Marxist government of Fidel Castro. Castro's regime ultimately leads the nightclub owner to flee to New York.. Tags: cuba, fidel castro, che guevara"} +{"id": "10471", "title": "Next Friday", "year": 2000, "duration_min": 98, "rating": 6.4, "genres": "Comedy", "genres_pipe": "|Comedy|", "keywords": "prison, repayment, gang war, boy gang, revenge, escape from prison, escape, los angeles, gang member, mexican american, cholo", "tags_pipe": "|prison|repayment|gang war|boy gang|revenge|escape from prison|escape|los angeles|gang member|mexican american|cholo|", "overview": "Ice Cube returns as Craig Jones, a streetwise man from South Central Los Angeles who has a knack for getting into trouble. This time out, Craig is still trying to outsmart neighborhood bully Debo (Tommy \"Tiny\" Lister Jr.); after Craig gets the better of Debo in a fist fight, Debo is determined to flatten Craig in a rematch. Looking to stay out of Debo's way, Craig's dad decides that it would be a good idea for Craig to hide out with his Uncle Elroy and cousin Day-Day in Rancho Cucamonga... but trouble seems to find him there also.", "text_for_embedding": "Next Friday (2000). Genres: Comedy. Ice Cube returns as Craig Jones, a streetwise man from South Central Los Angeles who has a knack for getting into trouble. This time out, Craig is still trying to outsmart neighborhood bully Debo (Tommy \"Tiny\" Lister Jr.); after Craig gets the better of Debo in a fist fight, Debo is determined to flatten Craig in a rematch. Looking to stay out of Debo's way, Craig's dad decides that it would be a good idea for Craig to hide out with his Uncle Elroy and cousin Day-Day in Rancho Cucamonga... but trouble seems to find him there also.. Tags: prison, repayment, gang war, boy gang, revenge, escape from prison, escape, los angeles, gang member, mexican american, cholo"} +{"id": "250066", "title": "American Heist", "year": 2014, "duration_min": 94, "rating": 4.3, "genres": "Action", "genres_pipe": "|Action|", "keywords": "brother brother relationship, robbery, bank", "tags_pipe": "|brother brother relationship|robbery|bank|", "overview": "Two brothers, both with troubled paths, find themselves in the middle of one last bank job.", "text_for_embedding": "American Heist (2014). Genres: Action. Two brothers, both with troubled paths, find themselves in the middle of one last bank job.. Tags: brother brother relationship, robbery, bank"} +{"id": "667", "title": "You Only Live Twice", "year": 1967, "duration_min": 117, "rating": 6.5, "genres": "Action, Thriller, Adventure", "genres_pipe": "|Action|Thriller|Adventure|", "keywords": "london england, japan, england, assassination, helicopter, vulkan, assassin, asia, secret identity, nasa, island, russia, missile, war ship, ninja fighter", "tags_pipe": "|london england|japan|england|assassination|helicopter|vulkan|assassin|asia|secret identity|nasa|island|russia|missile|war ship|ninja fighter|", "overview": "A mysterious space craft kidnaps a Russian and American space capsule and brings the world on the verge of another World War. James Bond investigates the case in Japan and meets with his archenemy Blofeld. The fifth film from the legendary James Bond series starring Sean Connery as the British super agent.", "text_for_embedding": "You Only Live Twice (1967). Genres: Action, Thriller, Adventure. A mysterious space craft kidnaps a Russian and American space capsule and brings the world on the verge of another World War. James Bond investigates the case in Japan and meets with his archenemy Blofeld. The fifth film from the legendary James Bond series starring Sean Connery as the British super agent.. Tags: london england, japan, england, assassination, helicopter, vulkan, assassin, asia, secret identity, nasa, island, russia, missile, war ship, ninja fighter"} +{"id": "208869", "title": "Plastic", "year": 2014, "duration_min": 102, "rating": 6.1, "genres": "Drama, Action, Comedy, Crime", "genres_pipe": "|Drama|Action|Comedy|Crime|", "keywords": "", "tags_pipe": "", "overview": "Sam & Fordy run a credit card fraud scheme, but when they steal from the wrong man, they find themselves threatened by sadistic gangster. They need to raise £5m and pull off a daring diamond heist to clear their debt.", "text_for_embedding": "Plastic (2014). Genres: Drama, Action, Comedy, Crime. Sam & Fordy run a credit card fraud scheme, but when they steal from the wrong man, they find themselves threatened by sadistic gangster. They need to raise £5m and pull off a daring diamond heist to clear their debt.. Tags: "} +{"id": "86837", "title": "Amour", "year": 2012, "duration_min": 127, "rating": 7.5, "genres": "Drama, Romance", "genres_pipe": "|Drama|Romance|", "keywords": "nurse, music teacher, aging, daughter, music, love, retired, illness, pigeon, stroke, octogenarian, old couple", "tags_pipe": "|nurse|music teacher|aging|daughter|music|love|retired|illness|pigeon|stroke|octogenarian|old couple|", "overview": "Georges and Anne are in their eighties. They are cultivated, retired music teachers. Their daughter, who is also a musician, lives abroad with her family. One day, Anne has a stroke, and the couple's bond of love is severely tested.", "text_for_embedding": "Amour (2012). Genres: Drama, Romance. Georges and Anne are in their eighties. They are cultivated, retired music teachers. Their daughter, who is also a musician, lives abroad with her family. One day, Anne has a stroke, and the couple's bond of love is severely tested.. Tags: nurse, music teacher, aging, daughter, music, love, retired, illness, pigeon, stroke, octogenarian, old couple"} +{"id": "10306", "title": "Poltergeist III", "year": 1988, "duration_min": 98, "rating": 4.5, "genres": "Horror, Thriller", "genres_pipe": "|Horror|Thriller|", "keywords": "chicago, religion and supernatural, supernatural powers, devil, demon", "tags_pipe": "|chicago|religion and supernatural|supernatural powers|devil|demon|", "overview": "Carol Anne has been sent to live with her Aunt and Uncle in an effort to hide her from the clutches of the ghostly Reverend Kane, but he tracks her down and terrorises her in her relatives' appartment in a tall glass building. Will he finally achieve his target and capture Carol Anne again, or will Tangina be able, yet again, to thwart him?", "text_for_embedding": "Poltergeist III (1988). Genres: Horror, Thriller. Carol Anne has been sent to live with her Aunt and Uncle in an effort to hide her from the clutches of the ghostly Reverend Kane, but he tracks her down and terrorises her in her relatives' appartment in a tall glass building. Will he finally achieve his target and capture Carol Anne again, or will Tangina be able, yet again, to thwart him?. Tags: chicago, religion and supernatural, supernatural powers, devil, demon"} +{"id": "106845", "title": "Re-Kill", "year": 2015, "duration_min": 87, "rating": 4.9, "genres": "Horror, Science Fiction", "genres_pipe": "|Horror|Science Fiction|", "keywords": "reality tv, conspiracy, zombie, zombie apocalypse", "tags_pipe": "|reality tv|conspiracy|zombie|zombie apocalypse|", "overview": "Five years after a zombie outbreak, the men and women of R-Division hunt down and destroy the undead. When they see signs of a second outbreak, they fear humanity may not survive.", "text_for_embedding": "Re-Kill (2015). Genres: Horror, Science Fiction. Five years after a zombie outbreak, the men and women of R-Division hunt down and destroy the undead. When they see signs of a second outbreak, they fear humanity may not survive.. Tags: reality tv, conspiracy, zombie, zombie apocalypse"} +{"id": "11576", "title": "It's a Mad, Mad, Mad, Mad World", "year": 1963, "duration_min": 163, "rating": 7.0, "genres": "Action, Adventure, Comedy, Crime", "genres_pipe": "|Action|Adventure|Comedy|Crime|", "keywords": "competition, prison, california, chase, humor, national park, treasure hunt, slapstick, money, car chase, desert, race, cash, planes, funny", "tags_pipe": "|competition|prison|california|chase|humor|national park|treasure hunt|slapstick|money|car chase|desert|race|cash|planes|funny|", "overview": "A group of strangers come across a man dying after a car crash who proceeds to tell them about the $350,000 he buried in California. What follows is the madcap adventures of those strangers as each attempts to claim the prize for himself.", "text_for_embedding": "It's a Mad, Mad, Mad, Mad World (1963). Genres: Action, Adventure, Comedy, Crime. A group of strangers come across a man dying after a car crash who proceeds to tell them about the $350,000 he buried in California. What follows is the madcap adventures of those strangers as each attempts to claim the prize for himself.. Tags: competition, prison, california, chase, humor, national park, treasure hunt, slapstick, money, car chase, desert, race, cash, planes, funny"} +{"id": "219", "title": "Volver", "year": 2006, "duration_min": 121, "rating": 7.3, "genres": "Comedy, Drama, Romance", "genres_pipe": "|Comedy|Drama|Romance|", "keywords": "child abuse, rape, fire, sexual abuse, madrid, secret, return, solidarity, village, superstition, crime, death, ghost, abusive father", "tags_pipe": "|child abuse|rape|fire|sexual abuse|madrid|secret|return|solidarity|village|superstition|crime|death|ghost|abusive father|", "overview": "Raimunda (Penélope Cruz) works and lives Madrid with her husband Paco and daughter Paula. Her sister Sole (Lola Dueñas) lives nearby and they both miss their mother Irene (Carmen Maura), who died several years ago in a house fire along with their father. A former neighbor from their hometown reports that she has seen the ghost of Irene and both daughters do not believe her. After a murder and a family tragedy, Irene's spirit materializes around her daughters to help comfort them.", "text_for_embedding": "Volver (2006). Genres: Comedy, Drama, Romance. Raimunda (Penélope Cruz) works and lives Madrid with her husband Paco and daughter Paula. Her sister Sole (Lola Dueñas) lives nearby and they both miss their mother Irene (Carmen Maura), who died several years ago in a house fire along with their father. A former neighbor from their hometown reports that she has seen the ghost of Irene and both daughters do not believe her. After a murder and a family tragedy, Irene's spirit materializes around her daughters to help comfort them.. Tags: child abuse, rape, fire, sexual abuse, madrid, secret, return, solidarity, village, superstition, crime, death, ghost, abusive father"} +{"id": "11827", "title": "Heavy Metal", "year": 1981, "duration_min": 90, "rating": 6.2, "genres": "Animation, Science Fiction", "genres_pipe": "|Animation|Science Fiction|", "keywords": "flying car, taxi, heavy metal, cult favorite, midnight movie, drug use, adult animation", "tags_pipe": "|flying car|taxi|heavy metal|cult favorite|midnight movie|drug use|adult animation|", "overview": "A glowing orb terrorizes a young girl with a collection of stories of dark fantasy, eroticism and horror.", "text_for_embedding": "Heavy Metal (1981). Genres: Animation, Science Fiction. A glowing orb terrorizes a young girl with a collection of stories of dark fantasy, eroticism and horror.. Tags: flying car, taxi, heavy metal, cult favorite, midnight movie, drug use, adult animation"} +{"id": "22820", "title": "Gentlemen Broncos", "year": 2009, "duration_min": 89, "rating": 6.2, "genres": "Action, Comedy, Thriller", "genres_pipe": "|Action|Comedy|Thriller|", "keywords": "writing, plagiarism, independent film, homeschooling, aftercreditsstinger, duringcreditsstinger", "tags_pipe": "|writing|plagiarism|independent film|homeschooling|aftercreditsstinger|duringcreditsstinger|", "overview": "A teenager attends a fantasy writers' convention where he discovers his idea has been stolen by an established novelist.", "text_for_embedding": "Gentlemen Broncos (2009). Genres: Action, Comedy, Thriller. A teenager attends a fantasy writers' convention where he discovers his idea has been stolen by an established novelist.. Tags: writing, plagiarism, independent film, homeschooling, aftercreditsstinger, duringcreditsstinger"} +{"id": "31174", "title": "Richard III", "year": 1995, "duration_min": 104, "rating": 6.9, "genres": "Drama, War", "genres_pipe": "|Drama|War|", "keywords": "england, shakespeare, kidnapping, murder, king", "tags_pipe": "|england|shakespeare|kidnapping|murder|king|", "overview": "Shakespeare's Play transplanted into a 1930s setting.", "text_for_embedding": "Richard III (1995). Genres: Drama, War. Shakespeare's Play transplanted into a 1930s setting.. Tags: england, shakespeare, kidnapping, murder, king"} +{"id": "244316", "title": "Into the Grizzly Maze", "year": 2015, "duration_min": 94, "rating": 5.1, "genres": "Action, Horror, Thriller", "genres_pipe": "|Action|Horror|Thriller|", "keywords": "grizzly bear, wilderness, forest, alaska, survival, bear", "tags_pipe": "|grizzly bear|wilderness|forest|alaska|survival|bear|", "overview": "Two estranged brothers reunite at their childhood home in the Alaskan wild. They set out on a two-day hike and are stalked by an unrelenting grizzly bear.", "text_for_embedding": "Into the Grizzly Maze (2015). Genres: Action, Horror, Thriller. Two estranged brothers reunite at their childhood home in the Alaskan wild. They set out on a two-day hike and are stalked by an unrelenting grizzly bear.. Tags: grizzly bear, wilderness, forest, alaska, survival, bear"} +{"id": "37737", "title": "Kites", "year": 2010, "duration_min": 131, "rating": 6.0, "genres": "Drama, Action, Romance", "genres_pipe": "|Drama|Action|Romance|", "keywords": "", "tags_pipe": "", "overview": "In the harsh terrain of the Mexican desert, a mortally wounded man is left for dead in the heat of the desert sun. This is Jay. Once a street smart, carefree young guy. Now, a wanted man. As death looms, the only thing that keeps him alive is the quest to find the love of his life, Natasha. A woman betrothed to another man, but surely destined for Jay. A woman who comes into his life like a bolt of lightning and changes it forever.", "text_for_embedding": "Kites (2010). Genres: Drama, Action, Romance. In the harsh terrain of the Mexican desert, a mortally wounded man is left for dead in the heat of the desert sun. This is Jay. Once a street smart, carefree young guy. Now, a wanted man. As death looms, the only thing that keeps him alive is the quest to find the love of his life, Natasha. A woman betrothed to another man, but surely destined for Jay. A woman who comes into his life like a bolt of lightning and changes it forever.. Tags: "} +{"id": "62215", "title": "Melancholia", "year": 2011, "duration_min": 136, "rating": 7.0, "genres": "Drama, Science Fiction", "genres_pipe": "|Drama|Science Fiction|", "keywords": "wedding reception, power outage, destruction of planet, wedding toast", "tags_pipe": "|wedding reception|power outage|destruction of planet|wedding toast|", "overview": "Two sisters find their already strained relationship challenged as a mysterious new planet threatens to collide with Earth.", "text_for_embedding": "Melancholia (2011). Genres: Drama, Science Fiction. Two sisters find their already strained relationship challenged as a mysterious new planet threatens to collide with Earth.. Tags: wedding reception, power outage, destruction of planet, wedding toast"} +{"id": "66125", "title": "Red Dog", "year": 2011, "duration_min": 92, "rating": 7.1, "genres": "Drama, Comedy, Family", "genres_pipe": "|Drama|Comedy|Family|", "keywords": "1970s, human animal relationship, australia, grief, search, dog, death, mourning, based on true events, australian outback, dog missing", "tags_pipe": "|1970s|human animal relationship|australia|grief|search|dog|death|mourning|based on true events|australian outback|dog missing|", "overview": "Based on the legendary true story of the Red Dog who united a disparate local community while roaming the Australian outback in search of his long lost master.", "text_for_embedding": "Red Dog (2011). Genres: Drama, Comedy, Family. Based on the legendary true story of the Red Dog who united a disparate local community while roaming the Australian outback in search of his long lost master.. Tags: 1970s, human animal relationship, australia, grief, search, dog, death, mourning, based on true events, australian outback, dog missing"} +{"id": "132316", "title": "Jab Tak Hai Jaan", "year": 2012, "duration_min": 176, "rating": 7.3, "genres": "Drama, Romance", "genres_pipe": "|Drama|Romance|", "keywords": "bollywood, fall in love", "tags_pipe": "|bollywood|fall in love|", "overview": "An ex-army man, leading a double life in London, must choose between his wife and muse. Jab Tak Hai Jaan movie is a love triangle,and also marks the return of Yash Chopra as a director after eight years. In Jab Tak Hai Jaan, Shahrukh Khan plays the character of Samar who is an angry, unforgiving, with loads of emotional baggage. His role will span two ages, one in his late twenties as a musician based in London and the other at an older age as an introverted, composed, dutiful army officer in Kashmir. Katrina as Meera play as a seductress, an unattainable beauty. And Anushka as Akira who is 21 year old and works for Discovery Channel and makes documentaries.", "text_for_embedding": "Jab Tak Hai Jaan (2012). Genres: Drama, Romance. An ex-army man, leading a double life in London, must choose between his wife and muse. Jab Tak Hai Jaan movie is a love triangle,and also marks the return of Yash Chopra as a director after eight years. In Jab Tak Hai Jaan, Shahrukh Khan plays the character of Samar who is an angry, unforgiving, with loads of emotional baggage. His role will span two ages, one in his late twenties as a musician based in London and the other at an older age as an introverted, composed, dutiful army officer in Kashmir. Katrina as Meera play as a seductress, an unattainable beauty. And Anushka as Akira who is 21 year old and works for Discovery Channel and makes documentaries.. Tags: bollywood, fall in love"} +{"id": "348", "title": "Alien", "year": 1979, "duration_min": 117, "rating": 7.9, "genres": "Horror, Action, Thriller, Science Fiction", "genres_pipe": "|Horror|Action|Thriller|Science Fiction|", "keywords": "android, countdown, space marine, space suit, beheading, dystopia, biology, cowardice, spaceship, space, alien, female protagonist, outer space, parasite, h. r. giger", "tags_pipe": "|android|countdown|space marine|space suit|beheading|dystopia|biology|cowardice|spaceship|space|alien|female protagonist|outer space|parasite|h. r. giger|", "overview": "During its return to the earth, commercial spaceship Nostromo intercepts a distress signal from a distant planet. When a three-member team of the crew discovers a chamber containing thousands of eggs on the planet, a creature inside one of the eggs attacks an explorer. The entire crew is unaware of the impending nightmare set to descend upon them when the alien parasite planted inside its unfortunate host is birthed.", "text_for_embedding": "Alien (1979). Genres: Horror, Action, Thriller, Science Fiction. During its return to the earth, commercial spaceship Nostromo intercepts a distress signal from a distant planet. When a three-member team of the crew discovers a chamber containing thousands of eggs on the planet, a creature inside one of the eggs attacks an explorer. The entire crew is unaware of the impending nightmare set to descend upon them when the alien parasite planted inside its unfortunate host is birthed.. Tags: android, countdown, space marine, space suit, beheading, dystopia, biology, cowardice, spaceship, space, alien, female protagonist, outer space, parasite, h. r. giger"} +{"id": "30497", "title": "The Texas Chain Saw Massacre", "year": 1974, "duration_min": 83, "rating": 7.2, "genres": "Horror", "genres_pipe": "|Horror|", "keywords": "gas station, texas, van, gore, midnight movie, surprise ending, shock in the end, leatherface, hitchhiker, slaughterhouse, slasher, chainsaw, family, polaroid, cannibals", "tags_pipe": "|gas station|texas|van|gore|midnight movie|surprise ending|shock in the end|leatherface|hitchhiker|slaughterhouse|slasher|chainsaw|family|polaroid|cannibals|", "overview": "Five friends visiting their grandfather's house in the country are hunted and terrorized by a chain-saw wielding killer and his family of grave-robbing cannibals.", "text_for_embedding": "The Texas Chain Saw Massacre (1974). Genres: Horror. Five friends visiting their grandfather's house in the country are hunted and terrorized by a chain-saw wielding killer and his family of grave-robbing cannibals.. Tags: gas station, texas, van, gore, midnight movie, surprise ending, shock in the end, leatherface, hitchhiker, slaughterhouse, slasher, chainsaw, family, polaroid, cannibals"} +{"id": "27586", "title": "The Runaways", "year": 2010, "duration_min": 106, "rating": 6.3, "genres": "Drama, Music", "genres_pipe": "|Drama|Music|", "keywords": "women, 1970s, publicity, iron, music, pill, independent film, night club, teenage girl, microphone, rock music, guitarist, photo shoot, teenage sexuality, drummer", "tags_pipe": "|women|1970s|publicity|iron|music|pill|independent film|night club|teenage girl|microphone|rock music|guitarist|photo shoot|teenage sexuality|drummer|", "overview": "Joan Jett and Cherie Currie, two rebellious teenagers from Southern California, become the frontwomen for the Runaways -- the now-legendary group that paved the way for future generations of female rockers. Under the Svengalilike influence of impresario Kim Fowley, the band becomes a huge success.", "text_for_embedding": "The Runaways (2010). Genres: Drama, Music. Joan Jett and Cherie Currie, two rebellious teenagers from Southern California, become the frontwomen for the Runaways -- the now-legendary group that paved the way for future generations of female rockers. Under the Svengalilike influence of impresario Kim Fowley, the band becomes a huge success.. Tags: women, 1970s, publicity, iron, music, pill, independent film, night club, teenage girl, microphone, rock music, guitarist, photo shoot, teenage sexuality, drummer"} +{"id": "14811", "title": "Fiddler on the Roof", "year": 1971, "duration_min": 181, "rating": 7.4, "genres": "Drama, Romance", "genres_pipe": "|Drama|Romance|", "keywords": "tradition, dream, musical, pogrom, mother daughter relationship, breaking the fourth wall, milkman, russian orthodox church, judaism, tavern, constable, suitor, russian soldier, elopement", "tags_pipe": "|tradition|dream|musical|pogrom|mother daughter relationship|breaking the fourth wall|milkman|russian orthodox church|judaism|tavern|constable|suitor|russian soldier|elopement|", "overview": "This lavishly produced and critically acclaimed screen adaptation of the international stage sensation tells the life-affirming story of Tevye (Topol), a poor milkman whose love, pride and faith help him face the oppression of turn-of-the-century Czarist Russia. Nominated for eight Academy Awards.", "text_for_embedding": "Fiddler on the Roof (1971). Genres: Drama, Romance. This lavishly produced and critically acclaimed screen adaptation of the international stage sensation tells the life-affirming story of Tevye (Topol), a poor milkman whose love, pride and faith help him face the oppression of turn-of-the-century Czarist Russia. Nominated for eight Academy Awards.. Tags: tradition, dream, musical, pogrom, mother daughter relationship, breaking the fourth wall, milkman, russian orthodox church, judaism, tavern, constable, suitor, russian soldier, elopement"} +{"id": "660", "title": "Thunderball", "year": 1965, "duration_min": 130, "rating": 6.5, "genres": "Adventure, Action, Thriller", "genres_pipe": "|Adventure|Action|Thriller|", "keywords": "paris, florida, fighter pilot, sanatorium, secret organization, nuclear missile, coral reef, bahamas, scuba diving, scuba, british secret service", "tags_pipe": "|paris|florida|fighter pilot|sanatorium|secret organization|nuclear missile|coral reef|bahamas|scuba diving|scuba|british secret service|", "overview": "A criminal organization has obtained two nuclear bombs and are asking for a 100 million pound ransom in the form of diamonds in seven days or they will use the weapons. The secret service sends James Bond to the Bahamas to once again save the world.", "text_for_embedding": "Thunderball (1965). Genres: Adventure, Action, Thriller. A criminal organization has obtained two nuclear bombs and are asking for a 100 million pound ransom in the form of diamonds in seven days or they will use the weapons. The secret service sends James Bond to the Bahamas to once again save the world.. Tags: paris, florida, fighter pilot, sanatorium, secret organization, nuclear missile, coral reef, bahamas, scuba diving, scuba, british secret service"} +{"id": "68684", "title": "Detention", "year": 2011, "duration_min": 93, "rating": 5.7, "genres": "Horror, Comedy, Science Fiction", "genres_pipe": "|Horror|Comedy|Science Fiction|", "keywords": "high school, murder, slasher, horror spoof", "tags_pipe": "|high school|murder|slasher|horror spoof|", "overview": "As a killer named Cinderhella stalks the student body at the high school in Grizzly Lake, a group of co-eds band together to survive while they're all serving detention.", "text_for_embedding": "Detention (2011). Genres: Horror, Comedy, Science Fiction. As a killer named Cinderhella stalks the student body at the high school in Grizzly Lake, a group of co-eds band together to survive while they're all serving detention.. Tags: high school, murder, slasher, horror spoof"} +{"id": "40794", "title": "Loose Cannons", "year": 2010, "duration_min": 110, "rating": 7.0, "genres": "Comedy, Drama, Romance", "genres_pipe": "|Comedy|Drama|Romance|", "keywords": "", "tags_pipe": "", "overview": "Tommaso is the youngest son of the Cantones, a large, traditional southern Italian family operating a pasta-making business since the 1960s. On a trip home from Rome, where he studies literature and lives with his boyfriend, Tommaso decides to tell his parents the truth about himself. But when he is finally ready to come out in front of the entire family, his older brother Antonio ruins his plans.", "text_for_embedding": "Loose Cannons (2010). Genres: Comedy, Drama, Romance. Tommaso is the youngest son of the Cantones, a large, traditional southern Italian family operating a pasta-making business since the 1960s. On a trip home from Rome, where he studies literature and lives with his boyfriend, Tommaso decides to tell his parents the truth about himself. But when he is finally ready to come out in front of the entire family, his older brother Antonio ruins his plans.. Tags: "} +{"id": "9400", "title": "Set It Off", "year": 1996, "duration_min": 118, "rating": 6.9, "genres": "Drama, Action, Crime", "genres_pipe": "|Drama|Action|Crime|", "keywords": "single parent, bank robber, last chance, los angeles", "tags_pipe": "|single parent|bank robber|last chance|los angeles|", "overview": "Four black women, all of whom have suffered for lack of money and at the hands of the majority, undertake to rob banks. While initially successful, a policeman who was involved in shooting one of the women's brothers is on their trail. As the women add to the loot, their tastes and interests begin to change and their suspicions of each other increase on the way to a climactic robbery.", "text_for_embedding": "Set It Off (1996). Genres: Drama, Action, Crime. Four black women, all of whom have suffered for lack of money and at the hands of the majority, undertake to rob banks. While initially successful, a policeman who was involved in shooting one of the women's brothers is on their trail. As the women add to the loot, their tastes and interests begin to change and their suspicions of each other increase on the way to a climactic robbery.. Tags: single parent, bank robber, last chance, los angeles"} +{"id": "16162", "title": "The Best Man", "year": 1999, "duration_min": 120, "rating": 6.8, "genres": "Drama, Comedy", "genres_pipe": "|Drama|Comedy|", "keywords": "", "tags_pipe": "", "overview": "Harper, a writer who's about to explode into the mainstream leaves behind his girlfriend Robin and heads to New York City to serve as best man for his friend Lance's wedding. Once there, he reunites with the rest of his college circle.", "text_for_embedding": "The Best Man (1999). Genres: Drama, Comedy. Harper, a writer who's about to explode into the mainstream leaves behind his girlfriend Robin and heads to New York City to serve as best man for his friend Lance's wedding. Once there, he reunites with the rest of his college circle.. Tags: "} +{"id": "10585", "title": "Child's Play", "year": 1988, "duration_min": 87, "rating": 6.3, "genres": "Horror, Thriller", "genres_pipe": "|Horror|Thriller|", "keywords": "gun, birthday, voodoo, toy, stalker, murder, blood, slasher, explosion, killer, doll, evil, toy comes to life, ginger", "tags_pipe": "|gun|birthday|voodoo|toy|stalker|murder|blood|slasher|explosion|killer|doll|evil|toy comes to life|ginger|", "overview": "A single mother gives her son a beloved doll for his birthday, only to discover that it is possessed with the soul of a serial killer.", "text_for_embedding": "Child's Play (1988). Genres: Horror, Thriller. A single mother gives her son a beloved doll for his birthday, only to discover that it is possessed with the soul of a serial killer.. Tags: gun, birthday, voodoo, toy, stalker, murder, blood, slasher, explosion, killer, doll, evil, toy comes to life, ginger"} +{"id": "2359", "title": "Sicko", "year": 2007, "duration_min": 123, "rating": 7.3, "genres": "Documentary", "genres_pipe": "|Documentary|", "keywords": "bureaucracy, usa, corruption, cuba, medicine, guantanamo bay, assurance, health care, money, hospital, doctor, illness, existence", "tags_pipe": "|bureaucracy|usa|corruption|cuba|medicine|guantanamo bay|assurance|health care|money|hospital|doctor|illness|existence|", "overview": "Sicko is a Michael Moore documentary about the corrupt health care system in The United States who's main goal is to make profit even if it means losing peoples lives. \"The more people you deny health insurance the more money we make\" is the business model for health care providers in America.", "text_for_embedding": "Sicko (2007). Genres: Documentary. Sicko is a Michael Moore documentary about the corrupt health care system in The United States who's main goal is to make profit even if it means losing peoples lives. \"The more people you deny health insurance the more money we make\" is the business model for health care providers in America.. Tags: bureaucracy, usa, corruption, cuba, medicine, guantanamo bay, assurance, health care, money, hospital, doctor, illness, existence"} +{"id": "238636", "title": "The Purge: Anarchy", "year": 2014, "duration_min": 104, "rating": 6.6, "genres": "Horror, Thriller", "genres_pipe": "|Horror|Thriller|", "keywords": "bus, assault rifle, sniper, machete, dystopia, psychopath, sequel, revenge, murder, survival, motorcycle, violence, one day, masked man, apartment", "tags_pipe": "|bus|assault rifle|sniper|machete|dystopia|psychopath|sequel|revenge|murder|survival|motorcycle|violence|one day|masked man|apartment|", "overview": "Three groups of people are trying to survive Purge Night, when their stories intertwine and are left stranded in The Purge trying to survive the chaos and violence that occurs.", "text_for_embedding": "The Purge: Anarchy (2014). Genres: Horror, Thriller. Three groups of people are trying to survive Purge Night, when their stories intertwine and are left stranded in The Purge trying to survive the chaos and violence that occurs.. Tags: bus, assault rifle, sniper, machete, dystopia, psychopath, sequel, revenge, murder, survival, motorcycle, violence, one day, masked man, apartment"} +{"id": "10472", "title": "Down to You", "year": 2000, "duration_min": 91, "rating": 4.9, "genres": "Comedy, Drama, Family, Romance", "genres_pipe": "|Comedy|Drama|Family|Romance|", "keywords": "lovesickness, new love, love of one's life, relocation, man-woman relation, love", "tags_pipe": "|lovesickness|new love|love of one's life|relocation|man-woman relation|love|", "overview": "College coeds in New York City, Al, the son of a celebrity chef, and Imogen, a talented artist, become smitten the second they lay eyes on one another at a bar. However, the road to happiness is not a smooth one. Outside forces, including a predatory porn star who wants to lure Al into her bed, threaten to pull apart the young lovers before their romance has a chance to really flourish.", "text_for_embedding": "Down to You (2000). Genres: Comedy, Drama, Family, Romance. College coeds in New York City, Al, the son of a celebrity chef, and Imogen, a talented artist, become smitten the second they lay eyes on one another at a bar. However, the road to happiness is not a smooth one. Outside forces, including a predatory porn star who wants to lure Al into her bed, threaten to pull apart the young lovers before their romance has a chance to really flourish.. Tags: lovesickness, new love, love of one's life, relocation, man-woman relation, love"} +{"id": "11282", "title": "Harold & Kumar Go to White Castle", "year": 2004, "duration_min": 88, "rating": 6.6, "genres": "Comedy, Adventure", "genres_pipe": "|Comedy|Adventure|", "keywords": "brother brother relationship, amsterdam, trip, road trip, cannabis, marijuana, police chase, smoking marijuana, buddy, stoner, fast food, one night, buddy comedy, munchies, crop circle", "tags_pipe": "|brother brother relationship|amsterdam|trip|road trip|cannabis|marijuana|police chase|smoking marijuana|buddy|stoner|fast food|one night|buddy comedy|munchies|crop circle|", "overview": "Sometimes, it takes a strange night to put everything else into focus. And that's exactly what happens to Harold and his roommate, Kumar, when they set out to get the best stoner fix money can buy: White Castle hamburgers. Both guys are at a crossroads, about to make major decisions that will affect the course of their lives. Yet they arrive at wisdom by accident as they drive around New Jersey in search of fast food.", "text_for_embedding": "Harold & Kumar Go to White Castle (2004). Genres: Comedy, Adventure. Sometimes, it takes a strange night to put everything else into focus. And that's exactly what happens to Harold and his roommate, Kumar, when they set out to get the best stoner fix money can buy: White Castle hamburgers. Both guys are at a crossroads, about to make major decisions that will affect the course of their lives. Yet they arrive at wisdom by accident as they drive around New Jersey in search of fast food.. Tags: brother brother relationship, amsterdam, trip, road trip, cannabis, marijuana, police chase, smoking marijuana, buddy, stoner, fast food, one night, buddy comedy, munchies, crop circle"} +{"id": "6521", "title": "The Contender", "year": 2000, "duration_min": 126, "rating": 6.7, "genres": "Drama, Thriller", "genres_pipe": "|Drama|Thriller|", "keywords": "politics, suspense", "tags_pipe": "|politics|suspense|", "overview": "Political thriller about Laine Hanson's nomination and confirmation as Vice President. An allegation that she was involved in a sexual orgy at the age of 19 is leaked to the press. As pressure mounts on Laine, she's torn between fighting back or sticking to her principles and refusing to comment on the allegations.", "text_for_embedding": "The Contender (2000). Genres: Drama, Thriller. Political thriller about Laine Hanson's nomination and confirmation as Vice President. An allegation that she was involved in a sexual orgy at the age of 19 is leaked to the press. As pressure mounts on Laine, she's torn between fighting back or sticking to her principles and refusing to comment on the allegations.. Tags: politics, suspense"} +{"id": "14181", "title": "Boiler Room", "year": 2000, "duration_min": 118, "rating": 6.5, "genres": "Crime, Drama, Thriller", "genres_pipe": "|Crime|Drama|Thriller|", "keywords": "finances, stock broker, investment firm", "tags_pipe": "|finances|stock broker|investment firm|", "overview": "A college dropout gets a job as a broker for a suburban investment firm, which puts him on the fast track to success, but the job might not be as legitimate as it sounds.", "text_for_embedding": "Boiler Room (2000). Genres: Crime, Drama, Thriller. A college dropout gets a job as a broker for a suburban investment firm, which puts him on the fast track to success, but the job might not be as legitimate as it sounds.. Tags: finances, stock broker, investment firm"} +{"id": "1621", "title": "Trading Places", "year": 1983, "duration_min": 116, "rating": 7.1, "genres": "Comedy", "genres_pipe": "|Comedy|", "keywords": "christmas tree, from rags to riches, broker, beggar, dollar, wager, fish out of water, millionaire, commodities, investor, big shot, hoodlum, wrongful arrest, santa hat", "tags_pipe": "|christmas tree|from rags to riches|broker|beggar|dollar|wager|fish out of water|millionaire|commodities|investor|big shot|hoodlum|wrongful arrest|santa hat|", "overview": "A snobbish investor and a wily street con-artist find their positions reversed as part of a bet by two callous millionaires.", "text_for_embedding": "Trading Places (1983). Genres: Comedy. A snobbish investor and a wily street con-artist find their positions reversed as part of a bet by two callous millionaires.. Tags: christmas tree, from rags to riches, broker, beggar, dollar, wager, fish out of water, millionaire, commodities, investor, big shot, hoodlum, wrongful arrest, santa hat"} +{"id": "9656", "title": "Black Christmas", "year": 2006, "duration_min": 84, "rating": 4.8, "genres": "Horror, Thriller", "genres_pipe": "|Horror|Thriller|", "keywords": "holiday, difficult childhood, childhood memory, childhood trauma, psychopath, serial killer, murderer, christmas eve, christmas horror", "tags_pipe": "|holiday|difficult childhood|childhood memory|childhood trauma|psychopath|serial killer|murderer|christmas eve|christmas horror|", "overview": "An escaped maniac returns to his childhood home on Christmas Eve, which is now a sorority house, and begins to murder the sorority sisters one by one. A remake of the 1974 horror movie, Black Christmas (1974).", "text_for_embedding": "Black Christmas (2006). Genres: Horror, Thriller. An escaped maniac returns to his childhood home on Christmas Eve, which is now a sorority house, and begins to murder the sorority sisters one by one. A remake of the 1974 horror movie, Black Christmas (1974).. Tags: holiday, difficult childhood, childhood memory, childhood trauma, psychopath, serial killer, murderer, christmas eve, christmas horror"} +{"id": "16428", "title": "Breakin' All the Rules", "year": 2004, "duration_min": 85, "rating": 5.8, "genres": "Comedy, Romance", "genres_pipe": "|Comedy|Romance|", "keywords": "best selling author", "tags_pipe": "|best selling author|", "overview": "Inspired by his fiancée (who dumped him), a man publishes a break-up handbook for men, becoming a bestselling author in the process.", "text_for_embedding": "Breakin' All the Rules (2004). Genres: Comedy, Romance. Inspired by his fiancée (who dumped him), a man publishes a break-up handbook for men, becoming a bestselling author in the process.. Tags: best selling author"} +{"id": "10705", "title": "Henry V", "year": 1989, "duration_min": 137, "rating": 7.4, "genres": "War, Drama, History, Action, Romance", "genres_pipe": "|War|Drama|History|Action|Romance|", "keywords": "shakespeare, hero, kingdom, war, based on play, gritty, medieval, king of england", "tags_pipe": "|shakespeare|hero|kingdom|war|based on play|gritty|medieval|king of england|", "overview": "Gritty adaption of William Shakespeare's play about the English King's bloody conquest of France.", "text_for_embedding": "Henry V (1989). Genres: War, Drama, History, Action, Romance. Gritty adaption of William Shakespeare's play about the English King's bloody conquest of France.. Tags: shakespeare, hero, kingdom, war, based on play, gritty, medieval, king of england"} +{"id": "8272", "title": "The Savages", "year": 2007, "duration_min": 114, "rating": 6.8, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "father son relationship, depression, parents kids relationship, brother sister relationship, professor, pflegeheim, professor for literature, son, brother, daughter, alzheimer, sister, relation, pflegen, alienation", "tags_pipe": "|father son relationship|depression|parents kids relationship|brother sister relationship|professor|pflegeheim|professor for literature|son|brother|daughter|alzheimer|sister|relation|pflegen|alienation|", "overview": "A sister and brother face the realities of familial responsibility as they begin to care for their ailing father.", "text_for_embedding": "The Savages (2007). Genres: Drama. A sister and brother face the realities of familial responsibility as they begin to care for their ailing father.. Tags: father son relationship, depression, parents kids relationship, brother sister relationship, professor, pflegeheim, professor for literature, son, brother, daughter, alzheimer, sister, relation, pflegen, alienation"} +{"id": "24621", "title": "Chasing Papi", "year": 2003, "duration_min": 80, "rating": 6.3, "genres": "Comedy, Romance", "genres_pipe": "|Comedy|Romance|", "keywords": "woman director", "tags_pipe": "|woman director|", "overview": "Playboy Thomas Fuentes has so far been able to skate by in life on good looks and charm alone. But when his duplicitous relationships with three women -- impassioned waitress Cici, meticulous lawyer Lorena and bored socialite Patricia -- spiral out of control, he suffers a mental breakdown. His doctor recommends that he choose just one girlfriend -- but can he choose in time before they discover his deception?", "text_for_embedding": "Chasing Papi (2003). Genres: Comedy, Romance. Playboy Thomas Fuentes has so far been able to skate by in life on good looks and charm alone. But when his duplicitous relationships with three women -- impassioned waitress Cici, meticulous lawyer Lorena and bored socialite Patricia -- spiral out of control, he suffers a mental breakdown. His doctor recommends that he choose just one girlfriend -- but can he choose in time before they discover his deception?. Tags: woman director"} +{"id": "1619", "title": "The Way of the Gun", "year": 2000, "duration_min": 119, "rating": 6.4, "genres": "Action, Crime, Drama, Thriller", "genres_pipe": "|Action|Crime|Drama|Thriller|", "keywords": "gunslinger, mexico, hotel, ransom, mexican standoff, kidnapping, sperm bank, from rags to riches, surrogate mother, money, gunfight, drifter, gangster, criminal, desert", "tags_pipe": "|gunslinger|mexico|hotel|ransom|mexican standoff|kidnapping|sperm bank|from rags to riches|surrogate mother|money|gunfight|drifter|gangster|criminal|desert|", "overview": "Parker and Longbaugh are a pair of low-level petty criminals, living off the grid and funding their existence through unconventional and often illegal means. Wanting to move past petty crime, they vow to get the proverbial \"big score.", "text_for_embedding": "The Way of the Gun (2000). Genres: Action, Crime, Drama, Thriller. Parker and Longbaugh are a pair of low-level petty criminals, living off the grid and funding their existence through unconventional and often illegal means. Wanting to move past petty crime, they vow to get the proverbial \"big score.. Tags: gunslinger, mexico, hotel, ransom, mexican standoff, kidnapping, sperm bank, from rags to riches, surrogate mother, money, gunfight, drifter, gangster, criminal, desert"} +{"id": "9685", "title": "Igby Goes Down", "year": 2002, "duration_min": 97, "rating": 6.5, "genres": "Comedy, Drama", "genres_pipe": "|Comedy|Drama|", "keywords": "father son relationship, patenonkel, independent film, falling in love", "tags_pipe": "|father son relationship|patenonkel|independent film|falling in love|", "overview": "A young man's peculiar upbringing renders him unable to competently cope with the struggle of growing up.", "text_for_embedding": "Igby Goes Down (2002). Genres: Comedy, Drama. A young man's peculiar upbringing renders him unable to competently cope with the struggle of growing up.. Tags: father son relationship, patenonkel, independent film, falling in love"} +{"id": "14425", "title": "PCU", "year": 1994, "duration_min": 79, "rating": 6.0, "genres": "Comedy", "genres_pipe": "|Comedy|", "keywords": "mascot, beer keg, political correctness, ultimate frisbee, funky music, fund raiser, stage diving", "tags_pipe": "|mascot|beer keg|political correctness|ultimate frisbee|funky music|fund raiser|stage diving|", "overview": "Nervous high school senior Tom Lawrence visits Port Chester University, where he gets a taste of politically correct college life when he's guided by fraternity wild man Droz and his housemates at The Pit. But Droz and his pals have rivals in nasty preppy Rand McPherson and the school's steely president. With their house threatened with expulsion, Droz and company decide to throw a raging party where the various factions will collide.", "text_for_embedding": "PCU (1994). Genres: Comedy. Nervous high school senior Tom Lawrence visits Port Chester University, where he gets a taste of politically correct college life when he's guided by fraternity wild man Droz and his housemates at The Pit. But Droz and his pals have rivals in nasty preppy Rand McPherson and the school's steely president. With their house threatened with expulsion, Droz and company decide to throw a raging party where the various factions will collide.. Tags: mascot, beer keg, political correctness, ultimate frisbee, funky music, fund raiser, stage diving"} +{"id": "14624", "title": "The Ultimate Gift", "year": 2006, "duration_min": 114, "rating": 6.8, "genres": "Romance, Drama, Family", "genres_pipe": "|Romance|Drama|Family|", "keywords": "grandfather grandson relationship, independent film, wealth, inheritance fight", "tags_pipe": "|grandfather grandson relationship|independent film|wealth|inheritance fight|", "overview": "When his wealthy grandfather finally dies, Jason Stevens fully expects to benefit when it comes to the reading of the will. But instead of a sizable inheritance, Jason receives a test, a series of tasks he must complete before he can get any money.", "text_for_embedding": "The Ultimate Gift (2006). Genres: Romance, Drama, Family. When his wealthy grandfather finally dies, Jason Stevens fully expects to benefit when it comes to the reading of the will. But instead of a sizable inheritance, Jason receives a test, a series of tasks he must complete before he can get any money.. Tags: grandfather grandson relationship, independent film, wealth, inheritance fight"} +{"id": "10179", "title": "The Ice Pirates", "year": 1984, "duration_min": 91, "rating": 5.7, "genres": "Action, Science Fiction, Comedy", "genres_pipe": "|Action|Science Fiction|Comedy|", "keywords": "rebel, space war, water, sci-fi comedy", "tags_pipe": "|rebel|space war|water|sci-fi comedy|", "overview": "The time is the distant future, where by far the most precious commodity in the galaxy is water. The last surviving water planet was somehow removed to the unreachable centre of the galaxy at the end of the galactic trade wars. The galaxy is ruled by an evil emperor (John Carradine) presiding over a trade oligarchy that controls all mining and sale of ice from asteroids and comets.", "text_for_embedding": "The Ice Pirates (1984). Genres: Action, Science Fiction, Comedy. The time is the distant future, where by far the most precious commodity in the galaxy is water. The last surviving water planet was somehow removed to the unreachable centre of the galaxy at the end of the galactic trade wars. The galaxy is ruled by an evil emperor (John Carradine) presiding over a trade oligarchy that controls all mining and sale of ice from asteroids and comets.. Tags: rebel, space war, water, sci-fi comedy"} +{"id": "15568", "title": "Gracie", "year": 2007, "duration_min": 97, "rating": 6.0, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "", "tags_pipe": "", "overview": "This is the story of a teenager named Gracie Bowen, who lives in South Orange, New Jersey, is crazy about soccer, as are her three brothers and former soccer star father. Although Gracie wants to join her brothers and father in the nightly practices, she is discouraged by everyone except her elder brother, Johnny. Her father does not believe that girls should play soccer and tells her that she is neither tough enough nor talented enough to play with the boys team. Undeterred, Gracie finds reserves of strength she never knew existed, and persists in changing everyone's beliefs in what she is capable of, including her own. She faces an uphill battle when she fights to give women the opportunity to play competitive soccer. But as the beautiful and strong person that she has always been but she also brings her family together in the face of their own tragedy.", "text_for_embedding": "Gracie (2007). Genres: Drama. This is the story of a teenager named Gracie Bowen, who lives in South Orange, New Jersey, is crazy about soccer, as are her three brothers and former soccer star father. Although Gracie wants to join her brothers and father in the nightly practices, she is discouraged by everyone except her elder brother, Johnny. Her father does not believe that girls should play soccer and tells her that she is neither tough enough nor talented enough to play with the boys team. Undeterred, Gracie finds reserves of strength she never knew existed, and persists in changing everyone's beliefs in what she is capable of, including her own. She faces an uphill battle when she fights to give women the opportunity to play competitive soccer. But as the beautiful and strong person that she has always been but she also brings her family together in the face of their own tragedy.. Tags: "} +{"id": "14057", "title": "Trust the Man", "year": 2005, "duration_min": 103, "rating": 5.5, "genres": "Comedy, Drama, Romance", "genres_pipe": "|Comedy|Drama|Romance|", "keywords": "independent film", "tags_pipe": "|independent film|", "overview": "Overachieving actress, Rebecca (Moore), must come to grips with her failing marriage to stay-at-home dad, Tom (Duchovny). While Rebecca's slacker brother, Tobey (Billy Crudup), can't seem to commit to his aspiring-novelist girlfriend, Elaine (Maggie Gyllenhaal). As both relationships spin out of control, the two couples embark on a quest to rediscover the magic and romance of falling in love in New York.", "text_for_embedding": "Trust the Man (2005). Genres: Comedy, Drama, Romance. Overachieving actress, Rebecca (Moore), must come to grips with her failing marriage to stay-at-home dad, Tom (Duchovny). While Rebecca's slacker brother, Tobey (Billy Crudup), can't seem to commit to his aspiring-novelist girlfriend, Elaine (Maggie Gyllenhaal). As both relationships spin out of control, the two couples embark on a quest to rediscover the magic and romance of falling in love in New York.. Tags: independent film"} +{"id": "12621", "title": "Hamlet 2", "year": 2008, "duration_min": 92, "rating": 6.1, "genres": "Comedy, Music", "genres_pipe": "|Comedy|Music|", "keywords": "music teacher, musical, theatre milieu, high school, latina, teacher, sweat", "tags_pipe": "|music teacher|musical|theatre milieu|high school|latina|teacher|sweat|", "overview": "From the same people that brought you \"Little Miss Sunshine,\" Hamlet 2 is the story of Dana Marschz, a high school drama teacher facing the cancellation of his program. A spoof on the typical story of bringing inner city and privileged youth together to succeed, this offbeat comedy contains a hilarious musical finale.", "text_for_embedding": "Hamlet 2 (2008). Genres: Comedy, Music. From the same people that brought you \"Little Miss Sunshine,\" Hamlet 2 is the story of Dana Marschz, a high school drama teacher facing the cancellation of his program. A spoof on the typical story of bringing inner city and privileged youth together to succeed, this offbeat comedy contains a hilarious musical finale.. Tags: music teacher, musical, theatre milieu, high school, latina, teacher, sweat"} +{"id": "1808", "title": "Velvet Goldmine", "year": 1998, "duration_min": 119, "rating": 6.9, "genres": "Drama, Music", "genres_pipe": "|Drama|Music|", "keywords": "gay, great britain, narration, glam rock, bisexual, music journalism, school uniform,  begins with text, imaginary band, baby left on doorstep, fictional band, down feather, 19th century, 1980s", "tags_pipe": "|gay|great britain|narration|glam rock|bisexual|music journalism|school uniform| begins with text|imaginary band|baby left on doorstep|fictional band|down feather|19th century|1980s|", "overview": "Almost a decade has elapsed since Bowie esque glam superstar Brian Slade staged his own death and escaped the spotlight of the London scene. Now, investigative journalist Arthur Stuart is on assignment to uncover the truth of the enigmatic Slade's rise and fall. Stuart, himself forged by the music of the 1970s, explores the larger-than-life stars who were once his idols and what has become of them since the turn of the new decade.", "text_for_embedding": "Velvet Goldmine (1998). Genres: Drama, Music. Almost a decade has elapsed since Bowie esque glam superstar Brian Slade staged his own death and escaped the spotlight of the London scene. Now, investigative journalist Arthur Stuart is on assignment to uncover the truth of the enigmatic Slade's rise and fall. Stuart, himself forged by the music of the 1970s, explores the larger-than-life stars who were once his idols and what has become of them since the turn of the new decade.. Tags: gay, great britain, narration, glam rock, bisexual, music journalism, school uniform,  begins with text, imaginary band, baby left on doorstep, fictional band, down feather, 19th century, 1980s"} +{"id": "293670", "title": "The Wailing", "year": 2016, "duration_min": 156, "rating": 7.2, "genres": "Horror, Mystery", "genres_pipe": "|Horror|Mystery|", "keywords": "sex, small town, exorcism, investigation, daughter, police, possession, murder, priest, curse, korea, shaman, zombie, demon, rural", "tags_pipe": "|sex|small town|exorcism|investigation|daughter|police|possession|murder|priest|curse|korea|shaman|zombie|demon|rural|", "overview": "A stranger arrives in a little village and soon after a mysterious sickness starts spreading. A policeman is drawn into the incident and is forced to solve the mystery in order to save his daughter.", "text_for_embedding": "The Wailing (2016). Genres: Horror, Mystery. A stranger arrives in a little village and soon after a mysterious sickness starts spreading. A policeman is drawn into the incident and is forced to solve the mystery in order to save his daughter.. Tags: sex, small town, exorcism, investigation, daughter, police, possession, murder, priest, curse, korea, shaman, zombie, demon, rural"} +{"id": "67675", "title": "Glee: The Concert Movie", "year": 2011, "duration_min": 84, "rating": 6.8, "genres": "Documentary, Music, Family", "genres_pipe": "|Documentary|Music|Family|", "keywords": "concert, live performance, duringcreditsstinger", "tags_pipe": "|concert|live performance|duringcreditsstinger|", "overview": "A concert documentary shot during the Glee Live! In Concert! summer 2011 tour, featuring song performances and Glee fans' life stories and how the show influenced them.", "text_for_embedding": "Glee: The Concert Movie (2011). Genres: Documentary, Music, Family. A concert documentary shot during the Glee Live! In Concert! summer 2011 tour, featuring song performances and Glee fans' life stories and how the show influenced them.. Tags: concert, live performance, duringcreditsstinger"} +{"id": "27329", "title": "The Legend of Suriyothai", "year": 2001, "duration_min": 185, "rating": 5.1, "genres": "Drama, Foreign, History, War", "genres_pipe": "|Drama|Foreign|History|War|", "keywords": "queen, thailand, invasion", "tags_pipe": "|queen|thailand|invasion|", "overview": "During the 16th century, as Thailand contends with both a civil war and Burmese invasion, a beautiful princess rises up to help protect the glory of the Kingdom of Ayothaya. Based on the life of Queen Suriyothai.", "text_for_embedding": "The Legend of Suriyothai (2001). Genres: Drama, Foreign, History, War. During the 16th century, as Thailand contends with both a civil war and Burmese invasion, a beautiful princess rises up to help protect the glory of the Kingdom of Ayothaya. Based on the life of Queen Suriyothai.. Tags: queen, thailand, invasion"} +{"id": "29514", "title": "Two Evil Eyes", "year": 1990, "duration_min": 120, "rating": 6.0, "genres": "Horror, Thriller", "genres_pipe": "|Horror|Thriller|", "keywords": "cat, photographer, nightmare, hallucination, hypnosis, greed, alcoholism, anthology, zombie, spirit, violence, horror anthology", "tags_pipe": "|cat|photographer|nightmare|hallucination|hypnosis|greed|alcoholism|anthology|zombie|spirit|violence|horror anthology|", "overview": "Two horror segments based on Edgar Allan Poe stories set in and around the city of Pittsburgh. \"The Facts in the Case of M. Valdemar\" concerns a cheating wife who is trying to scam her dying husband out of millions by having her doctor/hypnotist lover hypnotize the geezer into signing his dough over to her. The old man dies while under hypnosis and is stuck in the limbo between the here and the hereafter. The door to the physical world is opened and the undead attempt to enter it. \"Black Cat\" is the story of Rodd Usher, an alcoholic photographer/artist, who descends into madness after he kills a stray cat that his live-in girlfriend Annabelle brings home. One murder leads to another, and the complex cover-ups begin.", "text_for_embedding": "Two Evil Eyes (1990). Genres: Horror, Thriller. Two horror segments based on Edgar Allan Poe stories set in and around the city of Pittsburgh. \"The Facts in the Case of M. Valdemar\" concerns a cheating wife who is trying to scam her dying husband out of millions by having her doctor/hypnotist lover hypnotize the geezer into signing his dough over to her. The old man dies while under hypnosis and is stuck in the limbo between the here and the hereafter. The door to the physical world is opened and the undead attempt to enter it. \"Black Cat\" is the story of Rodd Usher, an alcoholic photographer/artist, who descends into madness after he kills a stray cat that his live-in girlfriend Annabelle brings home. One murder leads to another, and the complex cover-ups begin.. Tags: cat, photographer, nightmare, hallucination, hypnosis, greed, alcoholism, anthology, zombie, spirit, violence, horror anthology"} +{"id": "250349", "title": "Barbecue", "year": 2014, "duration_min": 98, "rating": 5.8, "genres": "Comedy", "genres_pipe": "|Comedy|", "keywords": "", "tags_pipe": "", "overview": "On his 50th birthday, a man who's been watching his weight, health and temper all his life suffers a heart attack. He's been doing everything he was told he should do and it still didn't help. He decides to turn the page and let loose.", "text_for_embedding": "Barbecue (2014). Genres: Comedy. On his 50th birthday, a man who's been watching his weight, health and temper all his life suffers a heart attack. He's been doing everything he was told he should do and it still didn't help. He decides to turn the page and let loose.. Tags: "} +{"id": "12454", "title": "All or Nothing", "year": 2002, "duration_min": 128, "rating": 7.0, "genres": "Comedy, Drama", "genres_pipe": "|Comedy|Drama|", "keywords": "", "tags_pipe": "", "overview": "Penny's love for her partner, taxi-driver Phil, has run dry. He is a gentle, philosophical guy, and she works on the checkout at a supermarket...", "text_for_embedding": "All or Nothing (2002). Genres: Comedy, Drama. Penny's love for her partner, taxi-driver Phil, has run dry. He is a gentle, philosophical guy, and she works on the checkout at a supermarket.... Tags: "} +{"id": "39806", "title": "Princess Kaiulani", "year": 2010, "duration_min": 130, "rating": 4.8, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "biography, historical figure, princess, drama, based on true story", "tags_pipe": "|biography|historical figure|princess|drama|based on true story|", "overview": "Lush scenery and gorgeous photography highlight this bio of Princess Kaiulani (Q'Orianka Kilcher), a 19th-century Hawaiian princess raised in England but determined to maintain her people's independence from aggressive American businessmen. After being sent to England as a child by her Scottish father, Kaiulani returns to Hawaii and becomes a political activist who fights to retain her throne, even though she must leave her English paramour.", "text_for_embedding": "Princess Kaiulani (2010). Genres: Drama. Lush scenery and gorgeous photography highlight this bio of Princess Kaiulani (Q'Orianka Kilcher), a 19th-century Hawaiian princess raised in England but determined to maintain her people's independence from aggressive American businessmen. After being sent to England as a child by her Scottish father, Kaiulani returns to Hawaii and becomes a political activist who fights to retain her throne, even though she must leave her English paramour.. Tags: biography, historical figure, princess, drama, based on true story"} +{"id": "15699", "title": "Opal Dream", "year": 2006, "duration_min": 86, "rating": 6.1, "genres": "Drama, Family, Foreign", "genres_pipe": "|Drama|Family|Foreign|", "keywords": "miner, australia, terminal illness, imaginary friend, independent film", "tags_pipe": "|miner|australia|terminal illness|imaginary friend|independent film|", "overview": "Pobby & Dingan are invisible. They live in an opal town in Australia and are friends with Kellyanne, the 9 year-old daughter of an opal miner. The film tells the story of the bizarre and inexplicable disappearance of Pobby & Dingan, Kellyanne's imaginary friends, and the impact this has on her family and the whole town. The story is told through the eyes of Kellyanne's 11 years old brother Ashmol.", "text_for_embedding": "Opal Dream (2006). Genres: Drama, Family, Foreign. Pobby & Dingan are invisible. They live in an opal town in Australia and are friends with Kellyanne, the 9 year-old daughter of an opal miner. The film tells the story of the bizarre and inexplicable disappearance of Pobby & Dingan, Kellyanne's imaginary friends, and the impact this has on her family and the whole town. The story is told through the eyes of Kellyanne's 11 years old brother Ashmol.. Tags: miner, australia, terminal illness, imaginary friend, independent film"} +{"id": "8883", "title": "Flame & Citron", "year": 2008, "duration_min": 130, "rating": 6.8, "genres": "Crime, Drama, History, War", "genres_pipe": "|Crime|Drama|History|War|", "keywords": "assassin, copenhagen, resistance, repayment, world war ii, traitor, double agent, moral conflict, independent film, crime, gestapo, dishonesty", "tags_pipe": "|assassin|copenhagen|resistance|repayment|world war ii|traitor|double agent|moral conflict|independent film|crime|gestapo|dishonesty|", "overview": "During Nazi occupation, red-headed Bent Faurschou-Hviid (\"Flame\") and Jørgen Haagen Schmith (\"Citron\"), assassins in the Danish resistance, take orders from Winther, who's in direct contact with Allied leaders. One shoots, the other drives. Until 1944, they kill only Danes; then Winther gives orders to kill Germans. When a target tells Bent that Winther's using them to settle private scores, doubt sets in, complicated by Bent's relationship with the mysterious Kitty Selmer, who may be a double agent. Also, someone in their circle is a traitor. Can Bent and Jørgen kill an über-target, evade capture, and survive the war? And is this heroism, naiveté, or mere hatred?", "text_for_embedding": "Flame & Citron (2008). Genres: Crime, Drama, History, War. During Nazi occupation, red-headed Bent Faurschou-Hviid (\"Flame\") and Jørgen Haagen Schmith (\"Citron\"), assassins in the Danish resistance, take orders from Winther, who's in direct contact with Allied leaders. One shoots, the other drives. Until 1944, they kill only Danes; then Winther gives orders to kill Germans. When a target tells Bent that Winther's using them to settle private scores, doubt sets in, complicated by Bent's relationship with the mysterious Kitty Selmer, who may be a double agent. Also, someone in their circle is a traitor. Can Bent and Jørgen kill an über-target, evade capture, and survive the war? And is this heroism, naiveté, or mere hatred?. Tags: assassin, copenhagen, resistance, repayment, world war ii, traitor, double agent, moral conflict, independent film, crime, gestapo, dishonesty"} +{"id": "17926", "title": "Undiscovered", "year": 2005, "duration_min": 97, "rating": 4.5, "genres": "Comedy, Romance", "genres_pipe": "|Comedy|Romance|", "keywords": "independent film, aspiring singer, singer, los angeles", "tags_pipe": "|independent film|aspiring singer|singer|los angeles|", "overview": "A group of aspiring entertainers try to establish careers for themselves in the city of Los Angeles.", "text_for_embedding": "Undiscovered (2005). Genres: Comedy, Romance. A group of aspiring entertainers try to establish careers for themselves in the city of Los Angeles.. Tags: independent film, aspiring singer, singer, los angeles"} +{"id": "291081", "title": "Red Riding: In the Year of Our Lord 1974", "year": 2009, "duration_min": 102, "rating": 7.0, "genres": "Thriller, Mystery, Crime, Drama", "genres_pipe": "|Thriller|Mystery|Crime|Drama|", "keywords": "", "tags_pipe": "", "overview": "It's Yorkshire in 1974, and fear, mistrust and institutionalised police corruption are running riot. Rookie journalist Eddie Dunford is determined to search for the truth in an increasingly complex maze of lies and deceit surrounding the police investigation into a series of child abductions. When young Clare Kemplay goes missing, Eddie and his colleague, Barry, persuade their editor to let them investigate links with two similar abductions in the last decade. But after a mutilated body is found on a construction site owned by a local property magnate, Eddie and Barry are drawn into a deadly world of secrecy, intimidation, shocking revelations and police brutality.", "text_for_embedding": "Red Riding: In the Year of Our Lord 1974 (2009). Genres: Thriller, Mystery, Crime, Drama. It's Yorkshire in 1974, and fear, mistrust and institutionalised police corruption are running riot. Rookie journalist Eddie Dunford is determined to search for the truth in an increasingly complex maze of lies and deceit surrounding the police investigation into a series of child abductions. When young Clare Kemplay goes missing, Eddie and his colleague, Barry, persuade their editor to let them investigate links with two similar abductions in the last decade. But after a mutilated body is found on a construction site owned by a local property magnate, Eddie and Barry are drawn into a deadly world of secrecy, intimidation, shocking revelations and police brutality.. Tags: "} +{"id": "41248", "title": "The Girl on the Train", "year": 2009, "duration_min": 105, "rating": 5.6, "genres": "Drama, Romance", "genres_pipe": "|Drama|Romance|", "keywords": "", "tags_pipe": "", "overview": "The Girl on the Train is a 2009 French drama film directed by André Téchiné. Jeanne is a young woman, striking but otherwise without qualities. Her mother tries to get her a job in the office of a lawyer, Bleistein, her lover years ago. Jeanne fails the interview but falls into a relationship with Franck, a wrestler whose dreams and claims of being in a legitimate business partnership Jeanne is only too happy to believe. When Franck is arrested, he turns on Jeanne for her naivety; she's stung and seeks attention by making up a story of an attack on a train. Is there any way out for her?", "text_for_embedding": "The Girl on the Train (2009). Genres: Drama, Romance. The Girl on the Train is a 2009 French drama film directed by André Téchiné. Jeanne is a young woman, striking but otherwise without qualities. Her mother tries to get her a job in the office of a lawyer, Bleistein, her lover years ago. Jeanne fails the interview but falls into a relationship with Franck, a wrestler whose dreams and claims of being in a legitimate business partnership Jeanne is only too happy to believe. When Franck is arrested, he turns on Jeanne for her naivety; she's stung and seeks attention by making up a story of an attack on a train. Is there any way out for her?. Tags: "} +{"id": "25968", "title": "Veronika Decides to Die", "year": 2009, "duration_min": 103, "rating": 5.8, "genres": "Drama, Romance", "genres_pipe": "|Drama|Romance|", "keywords": "new york, sex, asylum, controversial, independent film, psychiatrist, treatment, woman director, mental", "tags_pipe": "|new york|sex|asylum|controversial|independent film|psychiatrist|treatment|woman director|mental|", "overview": "After a frantic suicide attempt, Veronika awakens inside a mysterious mental asylum. Under the supervision of an unorthodox psychiatrist who specializes in controversial treatment, Veronika learns that she has only weeks to live.", "text_for_embedding": "Veronika Decides to Die (2009). Genres: Drama, Romance. After a frantic suicide attempt, Veronika awakens inside a mysterious mental asylum. Under the supervision of an unorthodox psychiatrist who specializes in controversial treatment, Veronika learns that she has only weeks to live.. Tags: new york, sex, asylum, controversial, independent film, psychiatrist, treatment, woman director, mental"} +{"id": "9671", "title": "Crocodile Dundee", "year": 1986, "duration_min": 97, "rating": 6.3, "genres": "Adventure, Comedy", "genres_pipe": "|Adventure|Comedy|", "keywords": "new york, prostitute, hotel, journalist, culture clash, subway, crocodile, wilderness, knife, tourist, limousine, poacher, city, australian outback, kangaroo", "tags_pipe": "|new york|prostitute|hotel|journalist|culture clash|subway|crocodile|wilderness|knife|tourist|limousine|poacher|city|australian outback|kangaroo|", "overview": "When a New York reporter plucks crocodile hunter Dundee from the Australian Outback for a visit to the Big Apple, it's a clash of cultures and a recipe for good-natured comedy as naïve Dundee negotiates the concrete jungle. Dundee proves that his instincts are quite useful in the city and adeptly handles everything from wily muggers to high-society snoots without breaking a sweat.", "text_for_embedding": "Crocodile Dundee (1986). Genres: Adventure, Comedy. When a New York reporter plucks crocodile hunter Dundee from the Australian Outback for a visit to the Big Apple, it's a clash of cultures and a recipe for good-natured comedy as naïve Dundee negotiates the concrete jungle. Dundee proves that his instincts are quite useful in the city and adeptly handles everything from wily muggers to high-society snoots without breaking a sweat.. Tags: new york, prostitute, hotel, journalist, culture clash, subway, crocodile, wilderness, knife, tourist, limousine, poacher, city, australian outback, kangaroo"} +{"id": "52010", "title": "Ultramarines: A Warhammer 40,000 Movie", "year": 2010, "duration_min": 76, "rating": 5.2, "genres": "Animation, Science Fiction", "genres_pipe": "|Animation|Science Fiction|", "keywords": "", "tags_pipe": "", "overview": "A squad of Ultramarines answer a distress call from an Imperial Shrine World. A full Company of Imperial Fists was stationed there, but there is no answer from them. The squad investigates to find out what has happened there.", "text_for_embedding": "Ultramarines: A Warhammer 40,000 Movie (2010). Genres: Animation, Science Fiction. A squad of Ultramarines answer a distress call from an Imperial Shrine World. A full Company of Imperial Fists was stationed there, but there is no answer from them. The squad investigates to find out what has happened there.. Tags: "} +{"id": "11588", "title": "The I Inside", "year": 2004, "duration_min": 90, "rating": 5.9, "genres": "Thriller, Mystery, Science Fiction", "genres_pipe": "|Thriller|Mystery|Science Fiction|", "keywords": "infidelity, amnesia, paranoia, nightmare, time, puzzle, murder, suspense, memory, hospital, doctor, fear, guilt, discovery, loop", "tags_pipe": "|infidelity|amnesia|paranoia|nightmare|time|puzzle|murder|suspense|memory|hospital|doctor|fear|guilt|discovery|loop|", "overview": "Simon Cable wakes up in a hospital bed, confused and disoriented. He soon discovers from doctors that he has amnesia and is unable to remember the last two years of his life. Cable investigates what has happened to him and slowly pieces together his enigmatic past.", "text_for_embedding": "The I Inside (2004). Genres: Thriller, Mystery, Science Fiction. Simon Cable wakes up in a hospital bed, confused and disoriented. He soon discovers from doctors that he has amnesia and is unable to remember the last two years of his life. Cable investigates what has happened to him and slowly pieces together his enigmatic past.. Tags: infidelity, amnesia, paranoia, nightmare, time, puzzle, murder, suspense, memory, hospital, doctor, fear, guilt, discovery, loop"} +{"id": "43418", "title": "Beneath Hill 60", "year": 2010, "duration_min": 122, "rating": 7.3, "genres": "Drama, History, War", "genres_pipe": "|Drama|History|War|", "keywords": "", "tags_pipe": "", "overview": "The true story of Australia's cat-and-mouse underground mine warfare – one of the most misunderstood, misrepresented and mystifying conflicts of WW I. It was a secret struggle BENEATH the Western Front that combined daring engineering, technology and science, and few on the surface knew of the brave, claustrophobic and sometimes barbaric work of these tunnellers.", "text_for_embedding": "Beneath Hill 60 (2010). Genres: Drama, History, War. The true story of Australia's cat-and-mouse underground mine warfare – one of the most misunderstood, misrepresented and mystifying conflicts of WW I. It was a secret struggle BENEATH the Western Front that combined daring engineering, technology and science, and few on the surface knew of the brave, claustrophobic and sometimes barbaric work of these tunnellers.. Tags: "} +{"id": "71157", "title": "Polisse", "year": 2011, "duration_min": 127, "rating": 7.9, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "woman director", "tags_pipe": "|woman director|", "overview": "The daily grind for the cops of the Police Department's Juvenile Protection Unit - taking in child molesters, busting underage pickpockets, interrogating abusive parents, confronting the excesses of teen sexuality, enjoying solidarity with colleagues and laughing uncontrollably at the most unthinkable moments. Knowing the worst exists and living with it. How do these cops balance their private lives and the reality they confront every working day? Fred, the group's hypersensitive wild card, is going to have a hard time facing the scrutiny of Melissa, a photographer on a Ministry of the Interior assignment to document the unit.", "text_for_embedding": "Polisse (2011). Genres: Drama. The daily grind for the cops of the Police Department's Juvenile Protection Unit - taking in child molesters, busting underage pickpockets, interrogating abusive parents, confronting the excesses of teen sexuality, enjoying solidarity with colleagues and laughing uncontrollably at the most unthinkable moments. Knowing the worst exists and living with it. How do these cops balance their private lives and the reality they confront every working day? Fred, the group's hypersensitive wild card, is going to have a hard time facing the scrutiny of Melissa, a photographer on a Ministry of the Interior assignment to document the unit.. Tags: woman director"} +{"id": "13483", "title": "Awake", "year": 2007, "duration_min": 84, "rating": 6.3, "genres": "Thriller, Crime, Mystery", "genres_pipe": "|Thriller|Crime|Mystery|", "keywords": "", "tags_pipe": "", "overview": "While undergoing heart surgery, a man experiences a phenomenon called ‘anesthetic awareness’, which leaves him awake but paralyzed throughout the operation. As various obstacles present themselves, his wife must make life-altering decisions while wrestling with her own personal drama.", "text_for_embedding": "Awake (2007). Genres: Thriller, Crime, Mystery. While undergoing heart surgery, a man experiences a phenomenon called ‘anesthetic awareness’, which leaves him awake but paralyzed throughout the operation. As various obstacles present themselves, his wife must make life-altering decisions while wrestling with her own personal drama.. Tags: "} +{"id": "333355", "title": "Star Wars: Clone Wars: Volume 1", "year": 2005, "duration_min": 69, "rating": 8.0, "genres": "Action, Adventure, Animation, Fantasy, Science Fiction", "genres_pipe": "|Action|Adventure|Animation|Fantasy|Science Fiction|", "keywords": "war, space opera, clone troopers", "tags_pipe": "|war|space opera|clone troopers|", "overview": "The Saga continues with the Emmy-winning \"Star Wars: Clone Wars.\" This animated micro-series, directed by Genndy Tartakovsky, captures George Lucas' vision in a dynamic animated style that is a visual delight for all ages. \"Star Wars: Clone Wars\" Volume 1 reveals the epic adventures that bridge the story arc between \"Star Wars: Episode II: Attack of the Clones\" and \"Star Wars: Episode III: Revenge of the Sith.\" Follow the valiant Jedi Knights and the Brave soldiers of the Republic's clone army as they battle against the droid forces of the Separatists, led by the evil Sith Lord, Count Dooku. Witness the battles that made galactic heroes out of Anakin Skywalker and Obi-Wan Kenobi, and along the way get a first look at the new menace from Episode III, General Grevious. This is a must-have for any \"Star Wars\" collection.", "text_for_embedding": "Star Wars: Clone Wars: Volume 1 (2005). Genres: Action, Adventure, Animation, Fantasy, Science Fiction. The Saga continues with the Emmy-winning \"Star Wars: Clone Wars.\" This animated micro-series, directed by Genndy Tartakovsky, captures George Lucas' vision in a dynamic animated style that is a visual delight for all ages. \"Star Wars: Clone Wars\" Volume 1 reveals the epic adventures that bridge the story arc between \"Star Wars: Episode II: Attack of the Clones\" and \"Star Wars: Episode III: Revenge of the Sith.\" Follow the valiant Jedi Knights and the Brave soldiers of the Republic's clone army as they battle against the droid forces of the Separatists, led by the evil Sith Lord, Count Dooku. Witness the battles that made galactic heroes out of Anakin Skywalker and Obi-Wan Kenobi, and along the way get a first look at the new menace from Episode III, General Grevious. This is a must-have for any \"Star Wars\" collection.. Tags: war, space opera, clone troopers"} +{"id": "327833", "title": "Skin Trade", "year": 2014, "duration_min": 96, "rating": 5.6, "genres": "Thriller, Action, Drama", "genres_pipe": "|Thriller|Action|Drama|", "keywords": "martial arts, bangkok, human trafficking, muay thai, rogue cop, sex slavery", "tags_pipe": "|martial arts|bangkok|human trafficking|muay thai|rogue cop|sex slavery|", "overview": "After his family is killed by a Serbian gangster with international interests. NYC detective Nick goes to S.E. Asia and teams up with a Thai detective to get revenge and destroy the syndicates human trafficking network.", "text_for_embedding": "Skin Trade (2014). Genres: Thriller, Action, Drama. After his family is killed by a Serbian gangster with international interests. NYC detective Nick goes to S.E. Asia and teams up with a Thai detective to get revenge and destroy the syndicates human trafficking network.. Tags: martial arts, bangkok, human trafficking, muay thai, rogue cop, sex slavery"} +{"id": "1547", "title": "The Lost Boys", "year": 1987, "duration_min": 97, "rating": 6.8, "genres": "Horror, Comedy", "genres_pipe": "|Horror|Comedy|", "keywords": "street gang, small town, vampire, comic book, boardwalk, single, amusement park, mother son relationship", "tags_pipe": "|street gang|small town|vampire|comic book|boardwalk|single|amusement park|mother son relationship|", "overview": "A mother and her two teenage sons move to a seemingly nice and quiet small coastal California town yet soon find out that it's overrun by bike gangs and vampires. A couple of teenage friends take it upon themselves to hunt down the vampires that they suspect of a few mysterious murders and restore peace and calm to their town.", "text_for_embedding": "The Lost Boys (1987). Genres: Horror, Comedy. A mother and her two teenage sons move to a seemingly nice and quiet small coastal California town yet soon find out that it's overrun by bike gangs and vampires. A couple of teenage friends take it upon themselves to hunt down the vampires that they suspect of a few mysterious murders and restore peace and calm to their town.. Tags: street gang, small town, vampire, comic book, boardwalk, single, amusement park, mother son relationship"} +{"id": "25196", "title": "Crazy Heart", "year": 2009, "duration_min": 112, "rating": 6.8, "genres": "Drama, Music, Romance", "genres_pipe": "|Drama|Music|Romance|", "keywords": "taxi, country music, journalist, guitar, bar, musician, alcoholism, independent film, singer, memory, texan, alcoholic, drink, guilt, biscuit", "tags_pipe": "|taxi|country music|journalist|guitar|bar|musician|alcoholism|independent film|singer|memory|texan|alcoholic|drink|guilt|biscuit|", "overview": "When reporter Jean Craddock interviews Bad Blake -- an alcoholic, seen-better-days country music legend -- they connect, and the hard-living crooner sees a possible saving grace in a life with Jean and her young son. But can he leave behind an existence playing in the shadow of Tommy, the upstart kid he once mentored?", "text_for_embedding": "Crazy Heart (2009). Genres: Drama, Music, Romance. When reporter Jean Craddock interviews Bad Blake -- an alcoholic, seen-better-days country music legend -- they connect, and the hard-living crooner sees a possible saving grace in a life with Jean and her young son. But can he leave behind an existence playing in the shadow of Tommy, the upstart kid he once mentored?. Tags: taxi, country music, journalist, guitar, bar, musician, alcoholism, independent film, singer, memory, texan, alcoholic, drink, guilt, biscuit"} +{"id": "16323", "title": "The Rose", "year": 1979, "duration_min": 125, "rating": 6.8, "genres": "Drama, Music, Romance", "genres_pipe": "|Drama|Music|Romance|", "keywords": "drug, rock band, roses", "tags_pipe": "|drug|rock band|roses|", "overview": "Midler is the rock-and-roll singer Mary Rose Foster (known as the Rose to her legions of fans), whose romantic relationships and mental health are continuously imperiled by the demands of life on the road.", "text_for_embedding": "The Rose (1979). Genres: Drama, Music, Romance. Midler is the rock-and-roll singer Mary Rose Foster (known as the Rose to her legions of fans), whose romantic relationships and mental health are continuously imperiled by the demands of life on the road.. Tags: drug, rock band, roses"} +{"id": "175528", "title": "Baggage Claim", "year": 2013, "duration_min": 96, "rating": 5.6, "genres": "Comedy", "genres_pipe": "|Comedy|", "keywords": "", "tags_pipe": "", "overview": "Pledging to keep herself from being the oldest and the only woman in her entire family never to wed, Montana embarks on a thirty-day, thirty-thousand-mile expedition to charm a potential suitor into becoming her fiancé.", "text_for_embedding": "Baggage Claim (2013). Genres: Comedy. Pledging to keep herself from being the oldest and the only woman in her entire family never to wed, Montana embarks on a thirty-day, thirty-thousand-mile expedition to charm a potential suitor into becoming her fiancé.. Tags: "} +{"id": "8069", "title": "Barbarella", "year": 1968, "duration_min": 98, "rating": 5.7, "genres": "Science Fiction", "genres_pipe": "|Science Fiction|", "keywords": "sexual fantasy, alien planet, distant future, cult classic, female mercenary", "tags_pipe": "|sexual fantasy|alien planet|distant future|cult classic|female mercenary|", "overview": "In the far future, a highly sexual woman is tasked with finding and stopping the evil Durand-Durand. Along the way she encounters various unusual people.", "text_for_embedding": "Barbarella (1968). Genres: Science Fiction. In the far future, a highly sexual woman is tasked with finding and stopping the evil Durand-Durand. Along the way she encounters various unusual people.. Tags: sexual fantasy, alien planet, distant future, cult classic, female mercenary"} +{"id": "71805", "title": "Shipwrecked", "year": 1990, "duration_min": 92, "rating": 6.1, "genres": "Adventure, Family", "genres_pipe": "|Adventure|Family|", "keywords": "island, ship, pirate, sailor, cabin boy, 19th century", "tags_pipe": "|island|ship|pirate|sailor|cabin boy|19th century|", "overview": "A young Norwegian boy in 1850s England goes to work as a cabin boy and discovers some of his shipmates are actually pirates.", "text_for_embedding": "Shipwrecked (1990). Genres: Adventure, Family. A young Norwegian boy in 1850s England goes to work as a cabin boy and discovers some of his shipmates are actually pirates.. Tags: island, ship, pirate, sailor, cabin boy, 19th century"} +{"id": "9451", "title": "Election", "year": 1999, "duration_min": 99, "rating": 6.7, "genres": "Comedy", "genres_pipe": "|Comedy|", "keywords": "jealousy, infidelity, vandalism, museum, motel, graduation, scandal, ambition, politics, high school, bias, satire, party, crush, independent film", "tags_pipe": "|jealousy|infidelity|vandalism|museum|motel|graduation|scandal|ambition|politics|high school|bias|satire|party|crush|independent film|", "overview": "A high school teacher's personal life becomes complicated as he works with students during the school elections.", "text_for_embedding": "Election (1999). Genres: Comedy. A high school teacher's personal life becomes complicated as he works with students during the school elections.. Tags: jealousy, infidelity, vandalism, museum, motel, graduation, scandal, ambition, politics, high school, bias, satire, party, crush, independent film"} +{"id": "16727", "title": "The Namesake", "year": 2006, "duration_min": 122, "rating": 6.8, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "indian lead, independent film, woman director", "tags_pipe": "|indian lead|independent film|woman director|", "overview": "American-born Gogol, the son of Indian immigrants, wants to fit in among his fellow New Yorkers, despite his family's unwillingness to let go of their traditional ways.", "text_for_embedding": "The Namesake (2006). Genres: Drama. American-born Gogol, the son of Indian immigrants, wants to fit in among his fellow New Yorkers, despite his family's unwillingness to let go of their traditional ways.. Tags: indian lead, independent film, woman director"} +{"id": "272693", "title": "The DUFF", "year": 2015, "duration_min": 100, "rating": 6.8, "genres": "Romance, Comedy", "genres_pipe": "|Romance|Comedy|", "keywords": "high school, teenager, popularity, high school student, teen comedy, duringcreditsstinger, girl next door, based on young adult novel", "tags_pipe": "|high school|teenager|popularity|high school student|teen comedy|duringcreditsstinger|girl next door|based on young adult novel|", "overview": "Bianca's universe turns upside down when she learns that her high school refers to her as a ‘DUFF' (Designated Ugly Fat Friend). Hoping to erase that label, she enlists the help of a charming jock and her favorite teacher. Together they'll face the school's mean girl and remind everyone that we are all someone's DUFF… and that's totally fine.", "text_for_embedding": "The DUFF (2015). Genres: Romance, Comedy. Bianca's universe turns upside down when she learns that her high school refers to her as a ‘DUFF' (Designated Ugly Fat Friend). Hoping to erase that label, she enlists the help of a charming jock and her favorite teacher. Together they'll face the school's mean girl and remind everyone that we are all someone's DUFF… and that's totally fine.. Tags: high school, teenager, popularity, high school student, teen comedy, duringcreditsstinger, girl next door, based on young adult novel"} +{"id": "10696", "title": "Glitter", "year": 2001, "duration_min": 104, "rating": 3.4, "genres": "Drama, Romance", "genres_pipe": "|Drama|Romance|", "keywords": "talent, career woman, talent show, movie star", "tags_pipe": "|talent|career woman|talent show|movie star|", "overview": "Similar to Mariah's life story. Mariah plays the role of a young singer who is eager to become a big star. She dates a DJ who helps her get into the music business.", "text_for_embedding": "Glitter (2001). Genres: Drama, Romance. Similar to Mariah's life story. Mariah plays the role of a young singer who is eager to become a big star. She dates a DJ who helps her get into the music business.. Tags: talent, career woman, talent show, movie star"} +{"id": "150202", "title": "The Haunting in Connecticut 2: Ghosts of Georgia", "year": 2013, "duration_min": 101, "rating": 5.6, "genres": "Horror, Drama, Thriller", "genres_pipe": "|Horror|Drama|Thriller|", "keywords": "new home, ghost, 1990s", "tags_pipe": "|new home|ghost|1990s|", "overview": "Sequel to the 2009 mezzo-mezzo supernatural horror purporting to be based on a true story in which a cancer-afflicted teen starts seeing things in the new Victorian house he and his family moved into.", "text_for_embedding": "The Haunting in Connecticut 2: Ghosts of Georgia (2013). Genres: Horror, Drama, Thriller. Sequel to the 2009 mezzo-mezzo supernatural horror purporting to be based on a true story in which a cancer-afflicted teen starts seeing things in the new Victorian house he and his family moved into.. Tags: new home, ghost, 1990s"} +{"id": "19644", "title": "Silmido", "year": 2003, "duration_min": 135, "rating": 6.6, "genres": "Action, Drama, History", "genres_pipe": "|Action|Drama|History|", "keywords": "prison, island, korea", "tags_pipe": "|prison|island|korea|", "overview": "On 31 January 1968, 31 North Korean commandos infiltrated South Korea in a failed mission to assassinate President Park Chung-hee. In revenge, the South Korean military assembled a team of 31 criminals on the island of Silmido to kill Kim Il-sung for a suicide mission to redeem their honor, but was cancelled, leaving them frustrated. It is loosely based on a military uprising in the 1970s.", "text_for_embedding": "Silmido (2003). Genres: Action, Drama, History. On 31 January 1968, 31 North Korean commandos infiltrated South Korea in a failed mission to assassinate President Park Chung-hee. In revenge, the South Korean military assembled a team of 31 criminals on the island of Silmido to kill Kim Il-sung for a suicide mission to redeem their honor, but was cancelled, leaving them frustrated. It is loosely based on a military uprising in the 1970s.. Tags: prison, island, korea"} +{"id": "29963", "title": "Bright Star", "year": 2009, "duration_min": 119, "rating": 6.8, "genres": "Drama, Romance", "genres_pipe": "|Drama|Romance|", "keywords": "poet, independent film, duringcreditsstinger, woman director", "tags_pipe": "|poet|independent film|duringcreditsstinger|woman director|", "overview": "In 1818, high-spirited young Fanny Brawne finds herself increasingly intrigued by the handsome but aloof poet John Keats, who lives next door to her family friends the Dilkes. After reading a book of his poetry, she finds herself even more drawn to the taciturn Keats. Although he agrees to teach her about poetry, Keats cannot act on his reciprocated feelings for Fanny, since as a struggling poet he has no money to support a wife.", "text_for_embedding": "Bright Star (2009). Genres: Drama, Romance. In 1818, high-spirited young Fanny Brawne finds herself increasingly intrigued by the handsome but aloof poet John Keats, who lives next door to her family friends the Dilkes. After reading a book of his poetry, she finds herself even more drawn to the taciturn Keats. Although he agrees to teach her about poetry, Keats cannot act on his reciprocated feelings for Fanny, since as a struggling poet he has no money to support a wife.. Tags: poet, independent film, duringcreditsstinger, woman director"} +{"id": "26022", "title": "My Name Is Khan", "year": 2010, "duration_min": 145, "rating": 7.7, "genres": "Drama, Romance", "genres_pipe": "|Drama|Romance|", "keywords": "bollywood", "tags_pipe": "|bollywood|", "overview": "Rizwan Khan, a Muslim from the Borivali section of Mumbai, has Asperger's syndrome. He marries a Hindu single mother, Mandira, in San Francisco. After 9/11, Rizwan is detained by authorities at LAX who treat him as a terrorist because of his condition and his race.", "text_for_embedding": "My Name Is Khan (2010). Genres: Drama, Romance. Rizwan Khan, a Muslim from the Borivali section of Mumbai, has Asperger's syndrome. He marries a Hindu single mother, Mandira, in San Francisco. After 9/11, Rizwan is detained by authorities at LAX who treat him as a terrorist because of his condition and his race.. Tags: bollywood"} +{"id": "152747", "title": "All Is Lost", "year": 2013, "duration_min": 106, "rating": 6.6, "genres": "Action, Adventure, Drama", "genres_pipe": "|Action|Adventure|Drama|", "keywords": "yacht, sailor, storm at sea, unconsciousness, life raft, container, emergency, distress, very little dialogue", "tags_pipe": "|yacht|sailor|storm at sea|unconsciousness|life raft|container|emergency|distress|very little dialogue|", "overview": "Deep into a solo voyage in the Indian Ocean, an unnamed man (Redford) wakes to find his 39-foot yacht taking on water after a collision with a shipping container left floating on the high seas. With his navigation equipment and radio disabled, the man sails unknowingly into the path of a violent storm. Despite his success in patching the breached hull, his mariner's intuition and a strength that belies his age, the man barely survives the tempest. Using only a sextant and nautical maps to chart his progress, he is forced to rely on ocean currents to carry him into a shipping lane in hopes of hailing a passing vessel. But with the sun unrelenting, sharks circling and his meager supplies dwindling, the ever-resourceful sailor soon finds himself staring his mortality in the face.", "text_for_embedding": "All Is Lost (2013). Genres: Action, Adventure, Drama. Deep into a solo voyage in the Indian Ocean, an unnamed man (Redford) wakes to find his 39-foot yacht taking on water after a collision with a shipping container left floating on the high seas. With his navigation equipment and radio disabled, the man sails unknowingly into the path of a violent storm. Despite his success in patching the breached hull, his mariner's intuition and a strength that belies his age, the man barely survives the tempest. Using only a sextant and nautical maps to chart his progress, he is forced to rely on ocean currents to carry him into a shipping lane in hopes of hailing a passing vessel. But with the sun unrelenting, sharks circling and his meager supplies dwindling, the ever-resourceful sailor soon finds himself staring his mortality in the face.. Tags: yacht, sailor, storm at sea, unconsciousness, life raft, container, emergency, distress, very little dialogue"} +{"id": "62676", "title": "Limbo", "year": 1999, "duration_min": 126, "rating": 7.0, "genres": "Adventure, Drama, Thriller", "genres_pipe": "|Adventure|Drama|Thriller|", "keywords": "", "tags_pipe": "", "overview": "Unconventional narrative about the interactions amongst a group of people in a small town in Alaska, each of whom has guards a secret.", "text_for_embedding": "Limbo (1999). Genres: Adventure, Drama, Thriller. Unconventional narrative about the interactions amongst a group of people in a small town in Alaska, each of whom has guards a secret.. Tags: "} +{"id": "20360", "title": "Namastey London", "year": 2007, "duration_min": 128, "rating": 6.6, "genres": "Drama, Foreign, Romance", "genres_pipe": "|Drama|Foreign|Romance|", "keywords": "", "tags_pipe": "", "overview": "Indian-born Manmohan Malhotra decided to re-locate to London, England, established himself, returned to India, got married to Bebo, and after a period of 4 years got a visa for her so that she could live with him. Shortly thereafter she gave birth to Jasmeet. Manmohan was always embarrassed of Bebo, as she was overly healthy and not quite sophisticated, as a result he always left her at home, while he socialized. Bebo did not want Jasmeet to end up like her, so got her admitted in an English Medium school, encouraged to mingle with Caucasian friends, and as a result Jasmeet was transformed in to Jazz - a stunningly beautiful young woman, British in looks, talk, habits, and heart. Manmohan's plans to get her married to an Indian boy are all in vain. His friend, Parvez Khan, is in a similar situation with his son, Imran, openly romancing a Caucasian blonde, Susan. Manmohan decides to take his family for a tour in India...", "text_for_embedding": "Namastey London (2007). Genres: Drama, Foreign, Romance. Indian-born Manmohan Malhotra decided to re-locate to London, England, established himself, returned to India, got married to Bebo, and after a period of 4 years got a visa for her so that she could live with him. Shortly thereafter she gave birth to Jasmeet. Manmohan was always embarrassed of Bebo, as she was overly healthy and not quite sophisticated, as a result he always left her at home, while he socialized. Bebo did not want Jasmeet to end up like her, so got her admitted in an English Medium school, encouraged to mingle with Caucasian friends, and as a result Jasmeet was transformed in to Jazz - a stunningly beautiful young woman, British in looks, talk, habits, and heart. Manmohan's plans to get her married to an Indian boy are all in vain. His friend, Parvez Khan, is in a similar situation with his son, Imran, openly romancing a Caucasian blonde, Susan. Manmohan decides to take his family for a tour in India.... Tags: "} +{"id": "1116", "title": "The Wind That Shakes the Barley", "year": 2006, "duration_min": 124, "rating": 7.1, "genres": "Drama, History, War", "genres_pipe": "|Drama|History|War|", "keywords": "london england, brother brother relationship, england, civil war, resistance, guerrilla, irland, underground, opression, traitor, mercenary, independence, british army, dublin, irish civil war", "tags_pipe": "|london england|brother brother relationship|england|civil war|resistance|guerrilla|irland|underground|opression|traitor|mercenary|independence|british army|dublin|irish civil war|", "overview": "Set during the 1920’s Irish revolution against the British, an Irish medical student is about to start his new job in London – but after he witnesses the mercenary atrocities of the British, he decides to join his brother in the IRA to fight for Irish independence.", "text_for_embedding": "The Wind That Shakes the Barley (2006). Genres: Drama, History, War. Set during the 1920’s Irish revolution against the British, an Irish medical student is about to start his new job in London – but after he witnesses the mercenary atrocities of the British, he decides to join his brother in the IRA to fight for Irish independence.. Tags: london england, brother brother relationship, england, civil war, resistance, guerrilla, irland, underground, opression, traitor, mercenary, independence, british army, dublin, irish civil war"} +{"id": "185008", "title": "Yeh Jawaani Hai Deewani", "year": 2013, "duration_min": 159, "rating": 7.2, "genres": "Romance", "genres_pipe": "|Romance|", "keywords": "", "tags_pipe": "", "overview": "Yeh Jawaani Hai Deewani features two polar opposite characters, who at one point were classmates in Modern School. The first is Naina Talwar (Deepika Padukone), a studious bespectacled young girl. The second is Bunny (Ranbir Kapoor), a carefree young travel-show host, intent on breaking out of the pattern of getting an education, a career, a wife, children, retirement, and eventually death.", "text_for_embedding": "Yeh Jawaani Hai Deewani (2013). Genres: Romance. Yeh Jawaani Hai Deewani features two polar opposite characters, who at one point were classmates in Modern School. The first is Naina Talwar (Deepika Padukone), a studious bespectacled young girl. The second is Bunny (Ranbir Kapoor), a carefree young travel-show host, intent on breaking out of the pattern of getting an education, a career, a wife, children, retirement, and eventually death.. Tags: "} +{"id": "11620", "title": "Quo Vadis", "year": 1951, "duration_min": 171, "rating": 7.0, "genres": "Drama, History, Romance", "genres_pipe": "|Drama|History|Romance|", "keywords": "ancient rome, epic, kaiser nero", "tags_pipe": "|ancient rome|epic|kaiser nero|", "overview": "Set against the back drop of Rome in crisis, General Marcus Vinicius returns to the city from the battle fields and falls in love with a Christian woman, Lygia. Caught in the grip of insanity, Nero's atrocities become more extreme and he burns Rome, laying the blame on the Christians. Vinicius races to save Lygia from the wrath of Nero as the empire of Rome collapses around them.", "text_for_embedding": "Quo Vadis (1951). Genres: Drama, History, Romance. Set against the back drop of Rome in crisis, General Marcus Vinicius returns to the city from the battle fields and falls in love with a Christian woman, Lygia. Caught in the grip of insanity, Nero's atrocities become more extreme and he burns Rome, laying the blame on the Christians. Vinicius races to save Lygia from the wrath of Nero as the empire of Rome collapses around them.. Tags: ancient rome, epic, kaiser nero"} +{"id": "14353", "title": "Repo! The Genetic Opera", "year": 2008, "duration_min": 98, "rating": 6.7, "genres": "Horror, Comedy, Music, Science Fiction", "genres_pipe": "|Horror|Comedy|Music|Science Fiction|", "keywords": "dystopia", "tags_pipe": "|dystopia|", "overview": "A worldwide epidemic encourages a bio-tech company to launch an organ-financing program similar in nature to a standard car loan. The repossession clause is a killer, however.", "text_for_embedding": "Repo! The Genetic Opera (2008). Genres: Horror, Comedy, Music, Science Fiction. A worldwide epidemic encourages a bio-tech company to launch an organ-financing program similar in nature to a standard car loan. The repossession clause is a killer, however.. Tags: dystopia"} +{"id": "11818", "title": "Valley of the Wolves: Iraq", "year": 2006, "duration_min": 122, "rating": 4.3, "genres": "Adventure, Drama, Action", "genres_pipe": "|Adventure|Drama|Action|", "keywords": "intelligence, turk, soldier, gangster, iraq war", "tags_pipe": "|intelligence|turk|soldier|gangster|iraq war|", "overview": "The movie opens with a fictionalized depiction of a real-life incident: the arrest on July 4, 2003 of 11 Turkish special forces soldiers and 13 civilians by U.S. forces of the 173rd Airborne commanded by Colonel William C. Mayville in the northern Iraqi Kurdish town of Sulaymaniyah. The Turkish soldiers suppose that this is an ordinary visit from their NATO allies. But this time is different.", "text_for_embedding": "Valley of the Wolves: Iraq (2006). Genres: Adventure, Drama, Action. The movie opens with a fictionalized depiction of a real-life incident: the arrest on July 4, 2003 of 11 Turkish special forces soldiers and 13 civilians by U.S. forces of the 173rd Airborne commanded by Colonel William C. Mayville in the northern Iraqi Kurdish town of Sulaymaniyah. The Turkish soldiers suppose that this is an ordinary visit from their NATO allies. But this time is different.. Tags: intelligence, turk, soldier, gangster, iraq war"} +{"id": "680", "title": "Pulp Fiction", "year": 1994, "duration_min": 154, "rating": 8.3, "genres": "Thriller, Crime", "genres_pipe": "|Thriller|Crime|", "keywords": "transporter, brothel, drug dealer, boxer, massage, stolen money, crime boss, dance contest, junkyard, kamikaze, ambiguous ending, briefcase, redemption, heirloom, pulp fiction", "tags_pipe": "|transporter|brothel|drug dealer|boxer|massage|stolen money|crime boss|dance contest|junkyard|kamikaze|ambiguous ending|briefcase|redemption|heirloom|pulp fiction|", "overview": "A burger-loving hit man, his philosophical partner, a drug-addled gangster's moll and a washed-up boxer converge in this sprawling, comedic crime caper. Their adventures unfurl in three stories that ingeniously trip back and forth in time.", "text_for_embedding": "Pulp Fiction (1994). Genres: Thriller, Crime. A burger-loving hit man, his philosophical partner, a drug-addled gangster's moll and a washed-up boxer converge in this sprawling, comedic crime caper. Their adventures unfurl in three stories that ingeniously trip back and forth in time.. Tags: transporter, brothel, drug dealer, boxer, massage, stolen money, crime boss, dance contest, junkyard, kamikaze, ambiguous ending, briefcase, redemption, heirloom, pulp fiction"} +{"id": "11176", "title": "The Muppet Movie", "year": 1979, "duration_min": 97, "rating": 7.0, "genres": "Adventure, Comedy, Family", "genres_pipe": "|Adventure|Comedy|Family|", "keywords": "chicken, musical, frog, puppet, fame, hollywood, gonzo, muppet, kermit, fozzie bear, kermit the frog, floyd, dr teeth, miss piggy, studebaker", "tags_pipe": "|chicken|musical|frog|puppet|fame|hollywood|gonzo|muppet|kermit|fozzie bear|kermit the frog|floyd|dr teeth|miss piggy|studebaker|", "overview": "Kermit the Frog is persuaded by agent Dom DeLuise to pursue a career in Hollywood. Along the way, Kermit picks up Fozzie Bear, Miss Piggy, Gonzo, and a motley crew of other Muppets with similar aspirations. Meanwhile, Kermit must elude the grasp of a frog-leg restaurant magnate.", "text_for_embedding": "The Muppet Movie (1979). Genres: Adventure, Comedy, Family. Kermit the Frog is persuaded by agent Dom DeLuise to pursue a career in Hollywood. Along the way, Kermit picks up Fozzie Bear, Miss Piggy, Gonzo, and a motley crew of other Muppets with similar aspirations. Meanwhile, Kermit must elude the grasp of a frog-leg restaurant magnate.. Tags: chicken, musical, frog, puppet, fame, hollywood, gonzo, muppet, kermit, fozzie bear, kermit the frog, floyd, dr teeth, miss piggy, studebaker"} +{"id": "242582", "title": "Nightcrawler", "year": 2014, "duration_min": 117, "rating": 7.6, "genres": "Crime, Drama, Thriller", "genres_pipe": "|Crime|Drama|Thriller|", "keywords": "journalism, underground, tv station, sociopath, home invasion, car chase, tv news, employer employee relationship, ethics, stringer", "tags_pipe": "|journalism|underground|tv station|sociopath|home invasion|car chase|tv news|employer employee relationship|ethics|stringer|", "overview": "When Lou Bloom, desperate for work, muscles into the world of L.A. crime journalism, he blurs the line between observer and participant to become the star of his own story. Aiding him in his effort is Nina, a TV-news veteran.", "text_for_embedding": "Nightcrawler (2014). Genres: Crime, Drama, Thriller. When Lou Bloom, desperate for work, muscles into the world of L.A. crime journalism, he blurs the line between observer and participant to become the star of his own story. Aiding him in his effort is Nina, a TV-news veteran.. Tags: journalism, underground, tv station, sociopath, home invasion, car chase, tv news, employer employee relationship, ethics, stringer"} +{"id": "11217", "title": "Club Dread", "year": 2004, "duration_min": 104, "rating": 5.1, "genres": "Comedy, Horror", "genres_pipe": "|Comedy|Horror|", "keywords": "island, machete, beautiful woman, serial killer, murder hunt", "tags_pipe": "|island|machete|beautiful woman|serial killer|murder hunt|", "overview": "When a serial killer interrupts the fun at the swanky Coconut Pete's Coconut Beach Resort -- a hedonistic island paradise for swingers --- it's up to the club's staff to stop the violence ... or at least hide it!", "text_for_embedding": "Club Dread (2004). Genres: Comedy, Horror. When a serial killer interrupts the fun at the swanky Coconut Pete's Coconut Beach Resort -- a hedonistic island paradise for swingers --- it's up to the club's staff to stop the violence ... or at least hide it!. Tags: island, machete, beautiful woman, serial killer, murder hunt"} +{"id": "15121", "title": "The Sound of Music", "year": 1965, "duration_min": 174, "rating": 7.4, "genres": "Drama, Family, Music, Romance", "genres_pipe": "|Drama|Family|Music|Romance|", "keywords": "resistance, austria, world war ii, musical, music competition, salzburg, based on play, classic, alps, governess, convent, music contest, novice, puppet show, nun in love", "tags_pipe": "|resistance|austria|world war ii|musical|music competition|salzburg|based on play|classic|alps|governess|convent|music contest|novice|puppet show|nun in love|", "overview": "Film adaptation of a classic Rodgers and Hammerstein musical based on a nun who becomes a governess for an Austrian family.", "text_for_embedding": "The Sound of Music (1965). Genres: Drama, Family, Music, Romance. Film adaptation of a classic Rodgers and Hammerstein musical based on a nun who becomes a governess for an Austrian family.. Tags: resistance, austria, world war ii, musical, music competition, salzburg, based on play, classic, alps, governess, convent, music contest, novice, puppet show, nun in love"} +{"id": "2619", "title": "Splash", "year": 1984, "duration_min": 111, "rating": 6.1, "genres": "Comedy, Fantasy, Romance", "genres_pipe": "|Comedy|Fantasy|Romance|", "keywords": "bachelor, mermaid", "tags_pipe": "|bachelor|mermaid|", "overview": "A successful businessman falls in love with the girl of his dreams. There's one big complication though; he's fallen hook, line and sinker for a mermaid.", "text_for_embedding": "Splash (1984). Genres: Comedy, Fantasy, Romance. A successful businessman falls in love with the girl of his dreams. There's one big complication though; he's fallen hook, line and sinker for a mermaid.. Tags: bachelor, mermaid"} +{"id": "773", "title": "Little Miss Sunshine", "year": 2006, "duration_min": 102, "rating": 7.5, "genres": "Comedy, Drama", "genres_pipe": "|Comedy|Drama|", "keywords": "california, brother sister relationship, wife husband relationship, family's daily life, oscar award, highway, professor for literature, beauty contest, beauty queen contest, road trip, family relationships, family holiday, road movie, woman director, beauty pageant", "tags_pipe": "|california|brother sister relationship|wife husband relationship|family's daily life|oscar award|highway|professor for literature|beauty contest|beauty queen contest|road trip|family relationships|family holiday|road movie|woman director|beauty pageant|", "overview": "A family loaded with quirky, colorful characters piles into an old van and road trips to California for little Olive to compete in a beauty pageant.", "text_for_embedding": "Little Miss Sunshine (2006). Genres: Comedy, Drama. A family loaded with quirky, colorful characters piles into an old van and road trips to California for little Olive to compete in a beauty pageant.. Tags: california, brother sister relationship, wife husband relationship, family's daily life, oscar award, highway, professor for literature, beauty contest, beauty queen contest, road trip, family relationships, family holiday, road movie, woman director, beauty pageant"} +{"id": "235", "title": "Stand by Me", "year": 1986, "duration_min": 89, "rating": 7.8, "genres": "Crime, Drama", "genres_pipe": "|Crime|Drama|", "keywords": "based on novel, friendship, coming of age, railroad track, story within the story,  flipping coin, campfire story, reference to superman, normandy beach, child, 1950s, boys", "tags_pipe": "|based on novel|friendship|coming of age|railroad track|story within the story| flipping coin|campfire story|reference to superman|normandy beach|child|1950s|boys|", "overview": "After the death of a friend, a writer recounts a boyhood journey to find the body of a missing boy.", "text_for_embedding": "Stand by Me (1986). Genres: Crime, Drama. After the death of a friend, a writer recounts a boyhood journey to find the body of a missing boy.. Tags: based on novel, friendship, coming of age, railroad track, story within the story,  flipping coin, campfire story, reference to superman, normandy beach, child, 1950s, boys"} +{"id": "170", "title": "28 Days Later", "year": 2002, "duration_min": 113, "rating": 7.1, "genres": "Horror, Thriller, Science Fiction", "genres_pipe": "|Horror|Thriller|Science Fiction|", "keywords": "london england, manchester city, submachine gun, gas station, survivor, daughter, zombie, virus", "tags_pipe": "|london england|manchester city|submachine gun|gas station|survivor|daughter|zombie|virus|", "overview": "Twenty-eight days after a killer virus was accidentally unleashed from a British research facility, a small group of London survivors are caught in a desperate struggle to protect themselves from the infected. Carried by animals and humans, the virus turns those it infects into homicidal maniacs -- and it's absolutely impossible to contain.", "text_for_embedding": "28 Days Later (2002). Genres: Horror, Thriller, Science Fiction. Twenty-eight days after a killer virus was accidentally unleashed from a British research facility, a small group of London survivors are caught in a desperate struggle to protect themselves from the infected. Carried by animals and humans, the virus turns those it infects into homicidal maniacs -- and it's absolutely impossible to contain.. Tags: london england, manchester city, submachine gun, gas station, survivor, daughter, zombie, virus"} +{"id": "14114", "title": "You Got Served", "year": 2004, "duration_min": 95, "rating": 4.8, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "hip-hop, dance performance, dance, breakdance, musical", "tags_pipe": "|hip-hop|dance performance|dance|breakdance|musical|", "overview": "At Mr. Rad's Warehouse, the best hip-hop crews in Los Angeles compete for money and respect. But when a suburban crew crashes the party, stealing their dancers - and their moves - two warring friends have to pull together to represent the street. Starring hip-hop sensations Marques Houston, Omari Grandberry, Lil' Kim and comedian Steve Harvey.", "text_for_embedding": "You Got Served (2004). Genres: Drama. At Mr. Rad's Warehouse, the best hip-hop crews in Los Angeles compete for money and respect. But when a suburban crew crashes the party, stealing their dancers - and their moves - two warring friends have to pull together to represent the street. Starring hip-hop sensations Marques Houston, Omari Grandberry, Lil' Kim and comedian Steve Harvey.. Tags: hip-hop, dance performance, dance, breakdance, musical"} +{"id": "10734", "title": "Escape from Alcatraz", "year": 1979, "duration_min": 111, "rating": 7.2, "genres": "Crime, Drama", "genres_pipe": "|Crime|Drama|", "keywords": "prison, based on novel, island, mouse, alcatraz, biography, prison warden, escapee convict, pubic hair, escape from prison, dummy, inmate, nude fight, 1960s", "tags_pipe": "|prison|based on novel|island|mouse|alcatraz|biography|prison warden|escapee convict|pubic hair|escape from prison|dummy|inmate|nude fight|1960s|", "overview": "Escape from Alcatraz tells the story of the only three men ever to escape from the infamous maximum security prison at Alcatraz. In 29 years, the seemingly impenetrable federal penitentiary, which housed Al Capone and \"Birdman\" Robert Stroud, was only broken once - by three men never heard of again.", "text_for_embedding": "Escape from Alcatraz (1979). Genres: Crime, Drama. Escape from Alcatraz tells the story of the only three men ever to escape from the infamous maximum security prison at Alcatraz. In 29 years, the seemingly impenetrable federal penitentiary, which housed Al Capone and \"Birdman\" Robert Stroud, was only broken once - by three men never heard of again.. Tags: prison, based on novel, island, mouse, alcatraz, biography, prison warden, escapee convict, pubic hair, escape from prison, dummy, inmate, nude fight, 1960s"} +{"id": "37964", "title": "Brown Sugar", "year": 2002, "duration_min": 109, "rating": 7.0, "genres": "Comedy, Romance", "genres_pipe": "|Comedy|Romance|", "keywords": "", "tags_pipe": "", "overview": "Sidney is a writer who's just left her L.A. Times music review gig to edit New York hip-hop magazine XXL. Dre is an executive with a hip-hop record company based in New York. They've known each other since they met as children, when both discovered hip-hop for the first time. Now that they're back together, they should be perfect for each other, except that Dre's about to marry lawyer Reese and Sidney claims not to be interested in Dre romantically. Meanwhile, Dre is growing increasingly restless with his company's focus on profit over artistry, which leads to signing the gimmicky duo Ren and Ten while ignoring the talented Chris", "text_for_embedding": "Brown Sugar (2002). Genres: Comedy, Romance. Sidney is a writer who's just left her L.A. Times music review gig to edit New York hip-hop magazine XXL. Dre is an executive with a hip-hop record company based in New York. They've known each other since they met as children, when both discovered hip-hop for the first time. Now that they're back together, they should be perfect for each other, except that Dre's about to marry lawyer Reese and Sidney claims not to be interested in Dre romantically. Meanwhile, Dre is growing increasingly restless with his company's focus on profit over artistry, which leads to signing the gimmicky duo Ren and Ten while ignoring the talented Chris. Tags: "} +{"id": "28121", "title": "A Thin Line Between Love and Hate", "year": 1996, "duration_min": 108, "rating": 5.7, "genres": "Comedy, Thriller, Crime, Romance", "genres_pipe": "|Comedy|Thriller|Crime|Romance|", "keywords": "revenge, african american, dating", "tags_pipe": "|revenge|african american|dating|", "overview": "Nightclub manager Darnell Wright is a perpetual playboy who is almost as devoted to his job as he is to the pursuit of beautiful women. After he sets his sights on the ultra-classy Brandi Web, he launches an all-out assault to win her heart. Ultimately, charm, lust and passion prevail, but Darnell learns the hard way that when you play, you pay. Brandi is much harder to get rid of than she was to get--especially when she realizes that she has a rival vying for Darnell's affection. When he finally decides to call it quits, Brandi becomes an obsessed femme fatale stalking the new love of her life.", "text_for_embedding": "A Thin Line Between Love and Hate (1996). Genres: Comedy, Thriller, Crime, Romance. Nightclub manager Darnell Wright is a perpetual playboy who is almost as devoted to his job as he is to the pursuit of beautiful women. After he sets his sights on the ultra-classy Brandi Web, he launches an all-out assault to win her heart. Ultimately, charm, lust and passion prevail, but Darnell learns the hard way that when you play, you pay. Brandi is much harder to get rid of than she was to get--especially when she realizes that she has a rival vying for Darnell's affection. When he finally decides to call it quits, Brandi becomes an obsessed femme fatale stalking the new love of her life.. Tags: revenge, african american, dating"} +{"id": "40807", "title": "50/50", "year": 2011, "duration_min": 100, "rating": 7.0, "genres": "Comedy, Drama", "genres_pipe": "|Comedy|Drama|", "keywords": "painter, father son relationship, therapist, cancer, psychologist, best friend, doctor, patient, vomiting, driver's license, chemotherapy, therapist patient relationship", "tags_pipe": "|painter|father son relationship|therapist|cancer|psychologist|best friend|doctor|patient|vomiting|driver's license|chemotherapy|therapist patient relationship|", "overview": "Inspired by a true story, a comedy centered on a 27-year-old guy who learns of his cancer diagnosis, and his subsequent struggle to beat the disease.", "text_for_embedding": "50/50 (2011). Genres: Comedy, Drama. Inspired by a true story, a comedy centered on a 27-year-old guy who learns of his cancer diagnosis, and his subsequent struggle to beat the disease.. Tags: painter, father son relationship, therapist, cancer, psychologist, best friend, doctor, patient, vomiting, driver's license, chemotherapy, therapist patient relationship"} +{"id": "10885", "title": "Shutter", "year": 2008, "duration_min": 85, "rating": 5.3, "genres": "Horror, Mystery, Thriller", "genres_pipe": "|Horror|Mystery|Thriller|", "keywords": "japan, suicide, photographer, honeymoon, nightmare, ghostbuster, ghost world, photography, remake, revenge, road accident, wedding, car accident, spirit, death", "tags_pipe": "|japan|suicide|photographer|honeymoon|nightmare|ghostbuster|ghost world|photography|remake|revenge|road accident|wedding|car accident|spirit|death|", "overview": "A newly married couple discovers disturbing, ghostly images in photographs they develop after a tragic accident. Fearing the manifestations may be connected, they investigate and learn that some mysteries are better left unsolved.", "text_for_embedding": "Shutter (2008). Genres: Horror, Mystery, Thriller. A newly married couple discovers disturbing, ghostly images in photographs they develop after a tragic accident. Fearing the manifestations may be connected, they investigate and learn that some mysteries are better left unsolved.. Tags: japan, suicide, photographer, honeymoon, nightmare, ghostbuster, ghost world, photography, remake, revenge, road accident, wedding, car accident, spirit, death"} +{"id": "225565", "title": "That Awkward Moment", "year": 2014, "duration_min": 94, "rating": 6.1, "genres": "Comedy, Romance", "genres_pipe": "|Comedy|Romance|", "keywords": "male friendship, friendship, dating, relationship, duringcreditsstinger, young adult", "tags_pipe": "|male friendship|friendship|dating|relationship|duringcreditsstinger|young adult|", "overview": "Best pals Jason and Daniel indulge in casual flings and revel in their carefree, unattached lives. After learning that the marriage of their friend Mikey is over, they gladly welcome him back into their circle. The three young men make a pact to have fun and avoid commitment. However, when all three find themselves involved in serious relationships, they must keep their romances secret from one another.", "text_for_embedding": "That Awkward Moment (2014). Genres: Comedy, Romance. Best pals Jason and Daniel indulge in casual flings and revel in their carefree, unattached lives. After learning that the marriage of their friend Mikey is over, they gladly welcome him back into their circle. The three young men make a pact to have fun and avoid commitment. However, when all three find themselves involved in serious relationships, they must keep their romances secret from one another.. Tags: male friendship, friendship, dating, relationship, duringcreditsstinger, young adult"} +{"id": "16471", "title": "Modern Problems", "year": 1981, "duration_min": 89, "rating": 5.6, "genres": "Comedy", "genres_pipe": "|Comedy|", "keywords": "", "tags_pipe": "", "overview": "Jealous, harried air traffic controller Max Fielder, recently dumped by his girlfriend, comes into contact with nuclear waste and is granted the power of telekinesis, which he uses to not only win her back, but to gain a little revenge.", "text_for_embedding": "Modern Problems (1981). Genres: Comedy. Jealous, harried air traffic controller Max Fielder, recently dumped by his girlfriend, comes into contact with nuclear waste and is granted the power of telekinesis, which he uses to not only win her back, but to gain a little revenge.. Tags: "} +{"id": "385736", "title": "Kicks", "year": 2016, "duration_min": 80, "rating": 7.5, "genres": "Adventure", "genres_pipe": "|Adventure|", "keywords": "blow job, cigarette smoking, illegal drugs, smoking weed, shoes", "tags_pipe": "|blow job|cigarette smoking|illegal drugs|smoking weed|shoes|", "overview": "When his hard-earned kicks get snatched by a local hood, fifteen-year old Brandon and his two best friends go on an ill-advised mission across the Bay Area to retrieve the stolen sneakers.", "text_for_embedding": "Kicks (2016). Genres: Adventure. When his hard-earned kicks get snatched by a local hood, fifteen-year old Brandon and his two best friends go on an ill-advised mission across the Bay Area to retrieve the stolen sneakers.. Tags: blow job, cigarette smoking, illegal drugs, smoking weed, shoes"} +{"id": "11971", "title": "Much Ado About Nothing", "year": 1993, "duration_min": 111, "rating": 7.2, "genres": "Drama, Comedy, Romance", "genres_pipe": "|Drama|Comedy|Romance|", "keywords": "shakespeare, bachelor, new love, rage and hate, lover, wedding, intrigue", "tags_pipe": "|shakespeare|bachelor|new love|rage and hate|lover|wedding|intrigue|", "overview": "In this Shakespearean farce, Hero and her groom-to-be, Claudio, team up with Claudio's commanding officer, Don Pedro, the week before their wedding to hatch a matchmaking scheme. Their targets are sharp-witted duo Benedick and Beatrice -- a tough task indeed, considering their corresponding distaste for love and each other. Meanwhile, meddling Don John plots to ruin the wedding.", "text_for_embedding": "Much Ado About Nothing (1993). Genres: Drama, Comedy, Romance. In this Shakespearean farce, Hero and her groom-to-be, Claudio, team up with Claudio's commanding officer, Don Pedro, the week before their wedding to hatch a matchmaking scheme. Their targets are sharp-witted duo Benedick and Beatrice -- a tough task indeed, considering their corresponding distaste for love and each other. Meanwhile, meddling Don John plots to ruin the wedding.. Tags: shakespeare, bachelor, new love, rage and hate, lover, wedding, intrigue"} +{"id": "668", "title": "On Her Majesty's Secret Service", "year": 1969, "duration_min": 142, "rating": 6.5, "genres": "Adventure, Action, Thriller", "genres_pipe": "|Adventure|Action|Thriller|", "keywords": "london england, suicide, england, switzerland, secret identity, new identity, honeymoon, secret mission, secret organization, secret lab, villain, kilt, family history, title of nobility, snow storm", "tags_pipe": "|london england|suicide|england|switzerland|secret identity|new identity|honeymoon|secret mission|secret organization|secret lab|villain|kilt|family history|title of nobility|snow storm|", "overview": "James Bond tracks archnemesis Ernst Blofeld to a mountaintop retreat where he's training an army of beautiful but lethal women. Along the way, Bond falls for Italian contessa Tracy Draco -- and marries her in order to get closer to Blofeld. Meanwhile, he locates Blofeld in the Alps and embarks on a classic ski chase.", "text_for_embedding": "On Her Majesty's Secret Service (1969). Genres: Adventure, Action, Thriller. James Bond tracks archnemesis Ernst Blofeld to a mountaintop retreat where he's training an army of beautiful but lethal women. Along the way, Bond falls for Italian contessa Tracy Draco -- and marries her in order to get closer to Blofeld. Meanwhile, he locates Blofeld in the Alps and embarks on a classic ski chase.. Tags: london england, suicide, england, switzerland, secret identity, new identity, honeymoon, secret mission, secret organization, secret lab, villain, kilt, family history, title of nobility, snow storm"} +{"id": "11596", "title": "New Nightmare", "year": 1994, "duration_min": 112, "rating": 6.4, "genres": "Horror, Thriller, Mystery, Fantasy", "genres_pipe": "|Horror|Thriller|Mystery|Fantasy|", "keywords": "fire, kidnapping, nightmare, earthquake, insomnia, supernatural, celebrity, mascot, alternate dimension, fame, hospital, hollywood, storytelling, alternate reality, self-referential", "tags_pipe": "|fire|kidnapping|nightmare|earthquake|insomnia|supernatural|celebrity|mascot|alternate dimension|fame|hospital|hollywood|storytelling|alternate reality|self-referential|", "overview": "Freddy's back … and he's badder than ever! Nancy, the historical nemesis of the man with the satanic snarl and pitchfork fingers, discovers that a new monstrous demon has taken on Freddy's persona. Can Nancy stop this new threat in time to save her son?", "text_for_embedding": "New Nightmare (1994). Genres: Horror, Thriller, Mystery, Fantasy. Freddy's back … and he's badder than ever! Nancy, the historical nemesis of the man with the satanic snarl and pitchfork fingers, discovers that a new monstrous demon has taken on Freddy's persona. Can Nancy stop this new threat in time to save her son?. Tags: fire, kidnapping, nightmare, earthquake, insomnia, supernatural, celebrity, mascot, alternate dimension, fame, hospital, hollywood, storytelling, alternate reality, self-referential"} +{"id": "14429", "title": "Drive Me Crazy", "year": 1999, "duration_min": 91, "rating": 5.8, "genres": "Drama, Comedy, Romance, Family", "genres_pipe": "|Drama|Comedy|Romance|Family|", "keywords": "high school, prom, next door neighbor", "tags_pipe": "|high school|prom|next door neighbor|", "overview": "Nicole and Chase live next door to each other but are worlds apart. However, they plot a scheme to date each other in order to attract the interest and jealousy of their respective romantic prey. But in the mist of planning a gala centennial celebration, Nicole and Chase find that the one they always wanted was closer than they ever thought.", "text_for_embedding": "Drive Me Crazy (1999). Genres: Drama, Comedy, Romance, Family. Nicole and Chase live next door to each other but are worlds apart. However, they plot a scheme to date each other in order to attract the interest and jealousy of their respective romantic prey. But in the mist of planning a gala centennial celebration, Nicole and Chase find that the one they always wanted was closer than they ever thought.. Tags: high school, prom, next door neighbor"} +{"id": "13751", "title": "Akeelah and the Bee", "year": 2006, "duration_min": 112, "rating": 6.7, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "black people, spelling, spelling bee", "tags_pipe": "|black people|spelling|spelling bee|", "overview": "Eleven year-old Akeelah Anderson's life is not easy: her father is dead, her mom ignores her, her brother runs with the local gangbangers. She's smart, but her environment threatens to strangle her aspirations. Responding to a threat by her school's principal, Akeelah participates in a spelling bee to avoid detention for her many absences. Much to her surprise and embarrassment, she wins. Her principal asks her to seek coaching from an English professor named Dr. Larabee for the more prestigious regional bee. As the possibility of making it all the way to the Scripps National Spelling Bee looms, Akeelah could provide her community with someone to rally around and be proud of -- but only if she can overcome her insecurities and her distracting home life. She also must get past Dr. Larabee's demons, and a field of more experienced and privileged fellow spellers.", "text_for_embedding": "Akeelah and the Bee (2006). Genres: Drama. Eleven year-old Akeelah Anderson's life is not easy: her father is dead, her mom ignores her, her brother runs with the local gangbangers. She's smart, but her environment threatens to strangle her aspirations. Responding to a threat by her school's principal, Akeelah participates in a spelling bee to avoid detention for her many absences. Much to her surprise and embarrassment, she wins. Her principal asks her to seek coaching from an English professor named Dr. Larabee for the more prestigious regional bee. As the possibility of making it all the way to the Scripps National Spelling Bee looms, Akeelah could provide her community with someone to rally around and be proud of -- but only if she can overcome her insecurities and her distracting home life. She also must get past Dr. Larabee's demons, and a field of more experienced and privileged fellow spellers.. Tags: black people, spelling, spelling bee"} +{"id": "9490", "title": "Half Baked", "year": 1998, "duration_min": 82, "rating": 6.4, "genres": "Comedy, Crime", "genres_pipe": "|Comedy|Crime|", "keywords": "smoking, company, marijuana, drug, woman director", "tags_pipe": "|smoking|company|marijuana|drug|woman director|", "overview": "Three lovable party buds try to bail their friend out of jail. But just when the guys have mastered a plan, everything comes dangerously close to going up in smoke.", "text_for_embedding": "Half Baked (1998). Genres: Comedy, Crime. Three lovable party buds try to bail their friend out of jail. But just when the guys have mastered a plan, everything comes dangerously close to going up in smoke.. Tags: smoking, company, marijuana, drug, woman director"} +{"id": "14536", "title": "New in Town", "year": 2009, "duration_min": 97, "rating": 5.2, "genres": "Comedy", "genres_pipe": "|Comedy|", "keywords": "minnesota, small town, economy, plants, vegetarian, love, rural setting, labor, manufacturing, middle america, rube, ice fishing", "tags_pipe": "|minnesota|small town|economy|plants|vegetarian|love|rural setting|labor|manufacturing|middle america|rube|ice fishing|", "overview": "Lucy Hill is an ambitious up-and-coming executive living in Miami. She loves her shoes, she loves her cars and she loves climbing the corporate ladder. When she is offered a temporary assignment – in the middle of nowhere – to restructure a manufacturing plant, she jumps at the opportunity, knowing that a big promotion is close at hand. What begins as a straight-forward assignment becomes a life-changing experience as Lucy discovers greater meaning in her life and, most unexpectedly, the man of her dreams.", "text_for_embedding": "New in Town (2009). Genres: Comedy. Lucy Hill is an ambitious up-and-coming executive living in Miami. She loves her shoes, she loves her cars and she loves climbing the corporate ladder. When she is offered a temporary assignment – in the middle of nowhere – to restructure a manufacturing plant, she jumps at the opportunity, knowing that a big promotion is close at hand. What begins as a straight-forward assignment becomes a life-changing experience as Lucy discovers greater meaning in her life and, most unexpectedly, the man of her dreams.. Tags: minnesota, small town, economy, plants, vegetarian, love, rural setting, labor, manufacturing, middle america, rube, ice fishing"} +{"id": "1359", "title": "American Psycho", "year": 2000, "duration_min": 102, "rating": 7.3, "genres": "Thriller, Drama, Crime", "genres_pipe": "|Thriller|Drama|Crime|", "keywords": "based on novel, wall street, psychopath, white collar, harvard business school, child of divorce, unreliable narrator, woman director, voice imitation", "tags_pipe": "|based on novel|wall street|psychopath|white collar|harvard business school|child of divorce|unreliable narrator|woman director|voice imitation|", "overview": "A wealthy New York investment banking executive hides his alternate psychopathic ego from his co-workers and friends as he escalates deeper into his illogical, gratuitous fantasies.", "text_for_embedding": "American Psycho (2000). Genres: Thriller, Drama, Crime. A wealthy New York investment banking executive hides his alternate psychopathic ego from his co-workers and friends as he escalates deeper into his illogical, gratuitous fantasies.. Tags: based on novel, wall street, psychopath, white collar, harvard business school, child of divorce, unreliable narrator, woman director, voice imitation"} +{"id": "9962", "title": "The Good Girl", "year": 2002, "duration_min": 93, "rating": 6.1, "genres": "Drama, Comedy, Romance", "genres_pipe": "|Drama|Comedy|Romance|", "keywords": "suicide, sex, jealousy, dream, blackmail, lie, nudity, motel, marriage, faith, drug, extramarital affair, store", "tags_pipe": "|suicide|sex|jealousy|dream|blackmail|lie|nudity|motel|marriage|faith|drug|extramarital affair|store|", "overview": "A discount store clerk strikes up an affair with a stock boy who considers himself the incarnation of Holden Caulfield.", "text_for_embedding": "The Good Girl (2002). Genres: Drama, Comedy, Romance. A discount store clerk strikes up an affair with a stock boy who considers himself the incarnation of Holden Caulfield.. Tags: suicide, sex, jealousy, dream, blackmail, lie, nudity, motel, marriage, faith, drug, extramarital affair, store"} +{"id": "15049", "title": "Bon Cop Bad Cop", "year": 2006, "duration_min": 116, "rating": 6.5, "genres": "Action, Comedy, Crime", "genres_pipe": "|Action|Comedy|Crime|", "keywords": "canada, police, murder, killer, buddy cop", "tags_pipe": "|canada|police|murder|killer|buddy cop|", "overview": "When the body of the executive of hockey Benoit Brisset is found on the billboard of the border of Quebec and Ontario, the jurisdiction of the crime is shared between the two police forces and detectives David Bouchard from Montreal and Martin Ward from Toronto are assigned to work together. With totally different styles, attitudes and languages.", "text_for_embedding": "Bon Cop Bad Cop (2006). Genres: Action, Comedy, Crime. When the body of the executive of hockey Benoit Brisset is found on the billboard of the border of Quebec and Ontario, the jurisdiction of the crime is shared between the two police forces and detectives David Bouchard from Montreal and Martin Ward from Toronto are assigned to work together. With totally different styles, attitudes and languages.. Tags: canada, police, murder, killer, buddy cop"} +{"id": "22821", "title": "The Boondock Saints II: All Saints Day", "year": 2009, "duration_min": 118, "rating": 5.9, "genres": "Action, Thriller, Crime", "genres_pipe": "|Action|Thriller|Crime|", "keywords": "boston, sheep, friendship, sequel, revenge, ireland", "tags_pipe": "|boston|sheep|friendship|sequel|revenge|ireland|", "overview": "Skillfully framed by an unknown enemy for the murder of a priest, wanted vigilante MacManus brothers Murphy and Connor must come out of hiding on a sheep farm in Ireland to fight for justice in Boston.", "text_for_embedding": "The Boondock Saints II: All Saints Day (2009). Genres: Action, Thriller, Crime. Skillfully framed by an unknown enemy for the murder of a priest, wanted vigilante MacManus brothers Murphy and Connor must come out of hiding on a sheep farm in Ireland to fight for justice in Boston.. Tags: boston, sheep, friendship, sequel, revenge, ireland"} +{"id": "42819", "title": "The City of Your Final Destination", "year": 2009, "duration_min": 114, "rating": 5.7, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "based on novel, uruguay", "tags_pipe": "|based on novel|uruguay|", "overview": "28-year-old Kansas University doctoral student Omar Razaghi wins a grant to write a biography of Latin American writer Jules Gund. Omar must get through to three people who were close to Gund--his brother, widow, and younger mistress--so he can get authorization to write the biography. Written by Marisa_Gabriella, edited by Krystal Frauendienst", "text_for_embedding": "The City of Your Final Destination (2009). Genres: Drama. 28-year-old Kansas University doctoral student Omar Razaghi wins a grant to write a biography of Latin American writer Jules Gund. Omar must get through to three people who were close to Gund--his brother, widow, and younger mistress--so he can get authorization to write the biography. Written by Marisa_Gabriella, edited by Krystal Frauendienst. Tags: based on novel, uruguay"} +{"id": "209263", "title": "Enough Said", "year": 2013, "duration_min": 93, "rating": 6.6, "genres": "Comedy, Drama, Romance", "genres_pipe": "|Comedy|Drama|Romance|", "keywords": "masseuse, thanksgiving, party, romance, mother daughter relationship, dating, relationship, divorce, divorcee, woman director, massage therapist", "tags_pipe": "|masseuse|thanksgiving|party|romance|mother daughter relationship|dating|relationship|divorce|divorcee|woman director|massage therapist|", "overview": "Eva is a divorced soon-to-be empty-nester wondering about her next act. Then she meets Marianne, the embodiment of her perfect self. Armed with a restored outlook on being middle-aged and single, Eva decides to take a chance on her new love interest Albert — a sweet, funny and like-minded man. But things get complicated when Eva discovers that Albert is in fact the dreaded ex–husband of Marianne...", "text_for_embedding": "Enough Said (2013). Genres: Comedy, Drama, Romance. Eva is a divorced soon-to-be empty-nester wondering about her next act. Then she meets Marianne, the embodiment of her perfect self. Armed with a restored outlook on being middle-aged and single, Eva decides to take a chance on her new love interest Albert — a sweet, funny and like-minded man. But things get complicated when Eva discovers that Albert is in fact the dreaded ex–husband of Marianne.... Tags: masseuse, thanksgiving, party, romance, mother daughter relationship, dating, relationship, divorce, divorcee, woman director, massage therapist"} +{"id": "37735", "title": "Easy A", "year": 2010, "duration_min": 92, "rating": 6.7, "genres": "Comedy", "genres_pipe": "|Comedy|", "keywords": "lie, high school, school, teen movie, rumor", "tags_pipe": "|lie|high school|school|teen movie|rumor|", "overview": "After a little white lie about losing her virginity gets out, a clean cut high school girl sees her life paralleling Hester Prynne's in \"The Scarlet Letter,\" which she is currently studying in school - until she decides to use the rumor mill to advance her social and financial standing.", "text_for_embedding": "Easy A (2010). Genres: Comedy. After a little white lie about losing her virginity gets out, a clean cut high school girl sees her life paralleling Hester Prynne's in \"The Scarlet Letter,\" which she is currently studying in school - until she decides to use the rumor mill to advance her social and financial standing.. Tags: lie, high school, school, teen movie, rumor"} +{"id": "59930", "title": "The Inkwell", "year": 1994, "duration_min": 110, "rating": 3.9, "genres": "Comedy, Drama, Romance", "genres_pipe": "|Comedy|Drama|Romance|", "keywords": "", "tags_pipe": "", "overview": "The Inkwell is about a 16-year-old boy coming of age on Martha's Vineyard in the summer of 1976.", "text_for_embedding": "The Inkwell (1994). Genres: Comedy, Drama, Romance. The Inkwell is about a 16-year-old boy coming of age on Martha's Vineyard in the summer of 1976.. Tags: "} +{"id": "10873", "title": "Shadow of the Vampire", "year": 2000, "duration_min": 92, "rating": 6.6, "genres": "Drama, Horror", "genres_pipe": "|Drama|Horror|", "keywords": "film director, dracula,  nosferatu", "tags_pipe": "|film director|dracula| nosferatu|", "overview": "Director F.W. Murnau (John Malkovich) makes a Faustian pact with a vampire (Willem Dafoe) to get him to star in his 1922 film \"Nosferatu.\"", "text_for_embedding": "Shadow of the Vampire (2000). Genres: Drama, Horror. Director F.W. Murnau (John Malkovich) makes a Faustian pact with a vampire (Willem Dafoe) to get him to star in his 1922 film \"Nosferatu.\". Tags: film director, dracula,  nosferatu"} +{"id": "51588", "title": "Prom", "year": 2011, "duration_min": 104, "rating": 5.7, "genres": "Comedy", "genres_pipe": "|Comedy|", "keywords": "single parent, waitress, fountain, friendship, high school, prom, music fan", "tags_pipe": "|single parent|waitress|fountain|friendship|high school|prom|music fan|", "overview": "At “Prom,” every couple has a story and no two are exactly alike. As the big dance approaches for Nova Prescott, it’s a battle of wills as she finds herself drawn to the guy who gets in the way of her perfect prom. Fellow seniors Mei and Tyler harbor secrets, while others face all the insecurity and anticipation that surrounds one of high school’s most seminal events.", "text_for_embedding": "Prom (2011). Genres: Comedy. At “Prom,” every couple has a story and no two are exactly alike. As the big dance approaches for Nova Prescott, it’s a battle of wills as she finds herself drawn to the guy who gets in the way of her perfect prom. Fellow seniors Mei and Tyler harbor secrets, while others face all the insecurity and anticipation that surrounds one of high school’s most seminal events.. Tags: single parent, waitress, fountain, friendship, high school, prom, music fan"} +{"id": "23570", "title": "The Pallbearer", "year": 1996, "duration_min": 97, "rating": 4.6, "genres": "Comedy, Romance", "genres_pipe": "|Comedy|Romance|", "keywords": "independent film, mistaken identity", "tags_pipe": "|independent film|mistaken identity|", "overview": "Aspiring architect Tom Thompson is told by mysterious Ruth Abernathy that his best friend, \"Bill,\" has taken his own life. Except that Tom has never met Bill and neither have his incredulous friends. So when Tom foolishly agrees to give the eulogy at Bill's funeral, it sets him on a collision course with Ruth -- who is revealed to be Bill's oversexed mother -- and Julie DeMarco, the longtime crush Tom hasn't seen since they were teens.", "text_for_embedding": "The Pallbearer (1996). Genres: Comedy, Romance. Aspiring architect Tom Thompson is told by mysterious Ruth Abernathy that his best friend, \"Bill,\" has taken his own life. Except that Tom has never met Bill and neither have his incredulous friends. So when Tom foolishly agrees to give the eulogy at Bill's funeral, it sets him on a collision course with Ruth -- who is revealed to be Bill's oversexed mother -- and Julie DeMarco, the longtime crush Tom hasn't seen since they were teens.. Tags: independent film, mistaken identity"} +{"id": "19489", "title": "Held Up", "year": 1999, "duration_min": 89, "rating": 4.9, "genres": "Comedy", "genres_pipe": "|Comedy|", "keywords": "", "tags_pipe": "", "overview": "While they're on vacation in the Southwest, Rae finds out her man Michael spent their house money on a classic car, so she dumps him, hitching a ride to Vegas for a flight home. A kid promptly steals Michael's car, leaving him at the Zip & Sip, a convenience store. Three bumbling robbers promptly stage a hold up. Two take off with the cash stranding the third, with a mysterious crate, just as the cops arrive. The robber takes the store hostage. As incompetent cops bring in a SWAT team and try a by-the-book rescue, Michael has to keep the robber calm, find out what's in the crate, aid the negotiations, and get back to Rae. The Stockholm Syndrome asserts its effect.", "text_for_embedding": "Held Up (1999). Genres: Comedy. While they're on vacation in the Southwest, Rae finds out her man Michael spent their house money on a classic car, so she dumps him, hitching a ride to Vegas for a flight home. A kid promptly steals Michael's car, leaving him at the Zip & Sip, a convenience store. Three bumbling robbers promptly stage a hold up. Two take off with the cash stranding the third, with a mysterious crate, just as the cops arrive. The robber takes the store hostage. As incompetent cops bring in a SWAT team and try a by-the-book rescue, Michael has to keep the robber calm, find out what's in the crate, aid the negotiations, and get back to Rae. The Stockholm Syndrome asserts its effect.. Tags: "} +{"id": "14629", "title": "Woman on Top", "year": 2000, "duration_min": 92, "rating": 5.5, "genres": "Comedy, Drama, Romance", "genres_pipe": "|Comedy|Drama|Romance|", "keywords": "woman director", "tags_pipe": "|woman director|", "overview": "Set to the intoxicating rhythms of Brazil, \"Woman on Top\" is a spicy, sexy comedy about the magic of food, love and music. Meet Isabella, a sultry enchantress born with the special gift of melting the palates and hearts of men everywhere. When she decides to break free from her rocky marriage and the stifling kitchen of her husband's restaurant in Brazil, she spirits off to San Francisco in pursuit of her dreams of a real culinary career.", "text_for_embedding": "Woman on Top (2000). Genres: Comedy, Drama, Romance. Set to the intoxicating rhythms of Brazil, \"Woman on Top\" is a spicy, sexy comedy about the magic of food, love and music. Meet Isabella, a sultry enchantress born with the special gift of melting the palates and hearts of men everywhere. When she decides to break free from her rocky marriage and the stifling kitchen of her husband's restaurant in Brazil, she spirits off to San Francisco in pursuit of her dreams of a real culinary career.. Tags: woman director"} +{"id": "8293", "title": "Howards End", "year": 1992, "duration_min": 140, "rating": 6.9, "genres": "Drama, Romance", "genres_pipe": "|Drama|Romance|", "keywords": "based on novel, sister sister relationship, empowerment, sister, turn of the century, edwardian england", "tags_pipe": "|based on novel|sister sister relationship|empowerment|sister|turn of the century|edwardian england|", "overview": "Merchant Ivory’s adaptation of EM Forster’s classic 1910 novel, starring Emma Thompson, Helena Bonham Carter, Anthony Hopkins & Vanessa Redgrave returns to the big screen in a beautiful new 4K restoration. Stunning location photography, lavishly detailed sets & elegant period costumes, this compelling saga follows the interwoven fates and misfortunes of three families amid the changing times of Edwardian England. It tells the story of two free-spirited, cosmopolitan sisters, Margaret (Emma Thompson) and Helen Schlegel (Helena Bonham Carter), who collide with the world of the very wealthy ­­– one sister benefiting from the acquaintance with the Wilcoxes (owners of the beloved country home Howards End), the other all but destroyed by it. Anthony Hopkins is the conservative industrialist Henry Wilcox and Vanessa Redgrave is his ailing wife Ruth Wilcox.", "text_for_embedding": "Howards End (1992). Genres: Drama, Romance. Merchant Ivory’s adaptation of EM Forster’s classic 1910 novel, starring Emma Thompson, Helena Bonham Carter, Anthony Hopkins & Vanessa Redgrave returns to the big screen in a beautiful new 4K restoration. Stunning location photography, lavishly detailed sets & elegant period costumes, this compelling saga follows the interwoven fates and misfortunes of three families amid the changing times of Edwardian England. It tells the story of two free-spirited, cosmopolitan sisters, Margaret (Emma Thompson) and Helen Schlegel (Helena Bonham Carter), who collide with the world of the very wealthy ­­– one sister benefiting from the acquaintance with the Wilcoxes (owners of the beloved country home Howards End), the other all but destroyed by it. Anthony Hopkins is the conservative industrialist Henry Wilcox and Vanessa Redgrave is his ailing wife Ruth Wilcox.. Tags: based on novel, sister sister relationship, empowerment, sister, turn of the century, edwardian england"} +{"id": "291270", "title": "Anomalisa", "year": 2015, "duration_min": 90, "rating": 7.0, "genres": "Animation, Comedy, Drama, Romance", "genres_pipe": "|Animation|Comedy|Drama|Romance|", "keywords": "sex, depression, existentialism", "tags_pipe": "|sex|depression|existentialism|", "overview": "A man crippled by the mundanity of his life experiences something out of the ordinary.", "text_for_embedding": "Anomalisa (2015). Genres: Animation, Comedy, Drama, Romance. A man crippled by the mundanity of his life experiences something out of the ordinary.. Tags: sex, depression, existentialism"} +{"id": "44009", "title": "Another Year", "year": 2010, "duration_min": 129, "rating": 7.0, "genres": "Comedy, Drama", "genres_pipe": "|Comedy|Drama|", "keywords": "jealousy, cooking, garden, funeral, season, loneliness, unrequited love, red wine", "tags_pipe": "|jealousy|cooking|garden|funeral|season|loneliness|unrequited love|red wine|", "overview": "Mike Leigh’s much praised 2010 tragicomical drama. During a year, a very content couple approaching retirement are visited by friends and family less happy with their lives.", "text_for_embedding": "Another Year (2010). Genres: Comedy, Drama. Mike Leigh’s much praised 2010 tragicomical drama. During a year, a very content couple approaching retirement are visited by friends and family less happy with their lives.. Tags: jealousy, cooking, garden, funeral, season, loneliness, unrequited love, red wine"} +{"id": "1958", "title": "8 Women", "year": 2002, "duration_min": 111, "rating": 6.9, "genres": "Comedy, Thriller, Music, Crime, Mystery", "genres_pipe": "|Comedy|Thriller|Music|Crime|Mystery|", "keywords": "upper class, women, father murder, daughter, maid, father figure, murder hunt", "tags_pipe": "|upper class|women|father murder|daughter|maid|father figure|murder hunt|", "overview": "Eight women gather to celebrate Christmas in a snowbound cottage, only to find the family patriarch dead with a knife in his back. Trapped in the house, every woman becomes a suspect, each having her own motive and secret.", "text_for_embedding": "8 Women (2002). Genres: Comedy, Thriller, Music, Crime, Mystery. Eight women gather to celebrate Christmas in a snowbound cottage, only to find the family patriarch dead with a knife in his back. Trapped in the house, every woman becomes a suspect, each having her own motive and secret.. Tags: upper class, women, father murder, daughter, maid, father figure, murder hunt"} +{"id": "13154", "title": "Showdown in Little Tokyo", "year": 1991, "duration_min": 79, "rating": 5.7, "genres": "Action, Thriller", "genres_pipe": "|Action|Thriller|", "keywords": "yakuza, los angeles, samurai sword", "tags_pipe": "|yakuza|los angeles|samurai sword|", "overview": "An American with a Japanese upbringing, Chris Kenner is a police officer assigned to the Little Tokyo section of Los Angeles. Kenner is partnered with Johnny Murata, a Japanese-American who isn't in touch with his roots. Despite their differences, both men excel at martial arts, and utilize their formidable skills when they go up against Yoshida, a vicious yakuza drug dealer with ties to Kenner's past.", "text_for_embedding": "Showdown in Little Tokyo (1991). Genres: Action, Thriller. An American with a Japanese upbringing, Chris Kenner is a police officer assigned to the Little Tokyo section of Los Angeles. Kenner is partnered with Johnny Murata, a Japanese-American who isn't in touch with his roots. Despite their differences, both men excel at martial arts, and utilize their formidable skills when they go up against Yoshida, a vicious yakuza drug dealer with ties to Kenner's past.. Tags: yakuza, los angeles, samurai sword"} +{"id": "26618", "title": "Clay Pigeons", "year": 1998, "duration_min": 104, "rating": 6.3, "genres": "Comedy, Crime, Drama, Thriller", "genres_pipe": "|Comedy|Crime|Drama|Thriller|", "keywords": "small town, fbi, widow, murder, independent film, serial killer", "tags_pipe": "|small town|fbi|widow|murder|independent film|serial killer|", "overview": "Clay is a young man in a small town who witnesses his friend, Earl kill himself because of the ongoing affair that Clay was having with the man's wife, Amanda. Feeling guilty, Clay now resists the widow when she presses him to continue with their sexual affairs. Clay inadvertently befriends a serial killer named Lester Long, who murders the widow in an attempt to \"help\" his \"fishing buddy.\"", "text_for_embedding": "Clay Pigeons (1998). Genres: Comedy, Crime, Drama, Thriller. Clay is a young man in a small town who witnesses his friend, Earl kill himself because of the ongoing affair that Clay was having with the man's wife, Amanda. Feeling guilty, Clay now resists the widow when she presses him to continue with their sexual affairs. Clay inadvertently befriends a serial killer named Lester Long, who murders the widow in an attempt to \"help\" his \"fishing buddy.\". Tags: small town, fbi, widow, murder, independent film, serial killer"} +{"id": "43923", "title": "It's Kind of a Funny Story", "year": 2010, "duration_min": 101, "rating": 6.9, "genres": "Comedy, Drama", "genres_pipe": "|Comedy|Drama|", "keywords": "suicide, depression, independent film, coming of age, teen movie, teenager, psychiatric ward, woman director, based on young adult novel", "tags_pipe": "|suicide|depression|independent film|coming of age|teen movie|teenager|psychiatric ward|woman director|based on young adult novel|", "overview": "A clinically depressed teenager gets a new start after he checks himself into an adult psychiatric ward.", "text_for_embedding": "It's Kind of a Funny Story (2010). Genres: Comedy, Drama. A clinically depressed teenager gets a new start after he checks himself into an adult psychiatric ward.. Tags: suicide, depression, independent film, coming of age, teen movie, teenager, psychiatric ward, woman director, based on young adult novel"} +{"id": "46138", "title": "Made in Dagenham", "year": 2010, "duration_min": 113, "rating": 6.6, "genres": "Comedy, Drama, History", "genres_pipe": "|Comedy|Drama|History|", "keywords": "machinist, aftercreditsstinger, duringcreditsstinger, equal pay, discrimination, government minister, sewing machine", "tags_pipe": "|machinist|aftercreditsstinger|duringcreditsstinger|equal pay|discrimination|government minister|sewing machine|", "overview": "A dramatization of the 1968 strike at the Ford Dagenham car plant, where female workers walked out in protest against sexual discrimination.", "text_for_embedding": "Made in Dagenham (2010). Genres: Comedy, Drama, History. A dramatization of the 1968 strike at the Ford Dagenham car plant, where female workers walked out in protest against sexual discrimination.. Tags: machinist, aftercreditsstinger, duringcreditsstinger, equal pay, discrimination, government minister, sewing machine"} +{"id": "45791", "title": "When Did You Last See Your Father?", "year": 2007, "duration_min": 92, "rating": 6.9, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "father son relationship, memory, hospital, confrontation, family, illness, old girlfriend", "tags_pipe": "|father son relationship|memory|hospital|confrontation|family|illness|old girlfriend|", "overview": "The story of a son's conflicting memories of his dying father.", "text_for_embedding": "When Did You Last See Your Father? (2007). Genres: Drama. The story of a son's conflicting memories of his dying father.. Tags: father son relationship, memory, hospital, confrontation, family, illness, old girlfriend"} +{"id": "26306", "title": "Prefontaine", "year": 1997, "duration_min": 106, "rating": 6.7, "genres": "Drama, Romance", "genres_pipe": "|Drama|Romance|", "keywords": "oregon, olympic games, sport, runner", "tags_pipe": "|oregon|olympic games|sport|runner|", "overview": "It's the true-life story of legendary track star Steve Prefontaine, the exciting and sometimes controversial \"James Dean of Track,\" whose spirit captured the heart of the nation! Cocky, charismatic, and tough, \"Pre\" was a running rebel who defied rules, pushed limits ... and smashed records ...", "text_for_embedding": "Prefontaine (1997). Genres: Drama, Romance. It's the true-life story of legendary track star Steve Prefontaine, the exciting and sometimes controversial \"James Dean of Track,\" whose spirit captured the heart of the nation! Cocky, charismatic, and tough, \"Pre\" was a running rebel who defied rules, pushed limits ... and smashed records .... Tags: oregon, olympic games, sport, runner"} +{"id": "110683", "title": "The Wicked Lady", "year": 1983, "duration_min": 98, "rating": 4.3, "genres": "Drama, Adventure", "genres_pipe": "|Drama|Adventure|", "keywords": "highwayman", "tags_pipe": "|highwayman|", "overview": "Caroline is to be wed to Sir Ralph and invites her sister Barbara to be her bridesmaid. Barbara seduces Ralph, however, and she becomes the new Lady, but despite her new wealthy situation, she gets bored and turns to highway robbery for thrills. While on the road she meets a famous highwayman, and they continue as a team, but some people begin suspecting her identity, and she risks death if she continues her nefarious activities.", "text_for_embedding": "The Wicked Lady (1983). Genres: Drama, Adventure. Caroline is to be wed to Sir Ralph and invites her sister Barbara to be her bridesmaid. Barbara seduces Ralph, however, and she becomes the new Lady, but despite her new wealthy situation, she gets bored and turns to highway robbery for thrills. While on the road she meets a famous highwayman, and they continue as a team, but some people begin suspecting her identity, and she risks death if she continues her nefarious activities.. Tags: highwayman"} +{"id": "26963", "title": "The Secret of Kells", "year": 2009, "duration_min": 75, "rating": 7.3, "genres": "Animation, Family, Fantasy", "genres_pipe": "|Animation|Family|Fantasy|", "keywords": "barbarian, underwater, trapped, sea monster, woman director", "tags_pipe": "|barbarian|underwater|trapped|sea monster|woman director|", "overview": "Adventure awaits 12 year old Brendan who must fight Vikings and a serpent god to find a crystal and complete the legendary Book of Kells. In order to finish Brother Aiden's book, Brendan must overcome his deepest fears on a secret quest that will take him beyond the abbey walls and into the enchanted forest where dangerous mythical creatures hide. Will Brendan succeed in his quest?", "text_for_embedding": "The Secret of Kells (2009). Genres: Animation, Family, Fantasy. Adventure awaits 12 year old Brendan who must fight Vikings and a serpent god to find a crystal and complete the legendary Book of Kells. In order to finish Brother Aiden's book, Brendan must overcome his deepest fears on a secret quest that will take him beyond the abbey walls and into the enchanted forest where dangerous mythical creatures hide. Will Brendan succeed in his quest?. Tags: barbarian, underwater, trapped, sea monster, woman director"} +{"id": "198277", "title": "Begin Again", "year": 2013, "duration_min": 104, "rating": 7.3, "genres": "Comedy, Music, Romance, Drama", "genres_pipe": "|Comedy|Music|Romance|Drama|", "keywords": "", "tags_pipe": "", "overview": "Gretta's celebrity boyfriend breaks up with her after a long-term relationship, leaving the singer to find success on her own. With the help of record producer, Dan and hip-hop celebrity, Trouble Gum, Gretta strives to fulfil her musical ambitions.", "text_for_embedding": "Begin Again (2013). Genres: Comedy, Music, Romance, Drama. Gretta's celebrity boyfriend breaks up with her after a long-term relationship, leaving the singer to find success on her own. With the help of record producer, Dan and hip-hop celebrity, Trouble Gum, Gretta strives to fulfil her musical ambitions.. Tags: "} +{"id": "7870", "title": "Down in the Valley", "year": 2005, "duration_min": 112, "rating": 5.9, "genres": "Drama, Romance", "genres_pipe": "|Drama|Romance|", "keywords": "indian territory, beach, stetson, san fernando valley, strange person", "tags_pipe": "|indian territory|beach|stetson|san fernando valley|strange person|", "overview": "On a trip to the beach, a teenage girl named Tobe meets a charismatic stranger named Harlan, who dresses like a cowboy and claims to be a former ranch hand. The pair feel an instant attraction and begin a relationship, but her father, a lawman, is suspicious of her lover.", "text_for_embedding": "Down in the Valley (2005). Genres: Drama, Romance. On a trip to the beach, a teenage girl named Tobe meets a charismatic stranger named Harlan, who dresses like a cowboy and claims to be a former ranch hand. The pair feel an instant attraction and begin a relationship, but her father, a lawman, is suspicious of her lover.. Tags: indian territory, beach, stetson, san fernando valley, strange person"} +{"id": "13072", "title": "Brooklyn Rules", "year": 2007, "duration_min": 99, "rating": 5.8, "genres": "Drama, Action, Thriller", "genres_pipe": "|Drama|Action|Thriller|", "keywords": "", "tags_pipe": "", "overview": "Brooklyn, 1985. With the mob world as a backdrop, three life-long friends struggle with questions of love, loss and loyalty.", "text_for_embedding": "Brooklyn Rules (2007). Genres: Drama, Action, Thriller. Brooklyn, 1985. With the mob world as a backdrop, three life-long friends struggle with questions of love, loss and loyalty.. Tags: "} +{"id": "153397", "title": "Restless", "year": 2012, "duration_min": 180, "rating": 4.9, "genres": "TV Movie, Romance, Drama", "genres_pipe": "|TV Movie|Romance|Drama|", "keywords": "spy, war, british secret service", "tags_pipe": "|spy|war|british secret service|", "overview": "A young woman finds out that her mother worked as a spy for the British Secret Service during World War II and has been on the run ever since.", "text_for_embedding": "Restless (2012). Genres: TV Movie, Romance, Drama. A young woman finds out that her mother worked as a spy for the British Secret Service during World War II and has been on the run ever since.. Tags: spy, war, british secret service"} +{"id": "30141", "title": "The Singing Detective", "year": 2003, "duration_min": 109, "rating": 5.9, "genres": "Comedy, Music, Mystery, Crime", "genres_pipe": "|Comedy|Music|Mystery|Crime|", "keywords": "", "tags_pipe": "", "overview": "From his hospital bed, a writer suffering from a skin disease hallucinates musical numbers and paranoid plots.", "text_for_embedding": "The Singing Detective (2003). Genres: Comedy, Music, Mystery, Crime. From his hospital bed, a writer suffering from a skin disease hallucinates musical numbers and paranoid plots.. Tags: "} +{"id": "17044", "title": "The Land Girls", "year": 1998, "duration_min": 111, "rating": 7.0, "genres": "Drama, Romance, War", "genres_pipe": "|Drama|Romance|War|", "keywords": "", "tags_pipe": "", "overview": "During World War II, the organisation \"The Women's Land Army\" recruited women to work on British farms while the men were off to war. Three such \"land girls\" of different social backgrounds - quiet Stella, young hairdresser Prue, and Cambridge graduate Ag - become best friends in spite of their different backgrounds.", "text_for_embedding": "The Land Girls (1998). Genres: Drama, Romance, War. During World War II, the organisation \"The Women's Land Army\" recruited women to work on British farms while the men were off to war. Three such \"land girls\" of different social backgrounds - quiet Stella, young hairdresser Prue, and Cambridge graduate Ag - become best friends in spite of their different backgrounds.. Tags: "} +{"id": "10288", "title": "Fido", "year": 2006, "duration_min": 91, "rating": 6.6, "genres": "Romance, Comedy, Drama, Horror", "genres_pipe": "|Romance|Comedy|Drama|Horror|", "keywords": "vororte, black humor, satire, dark comedy, gore, decapitation, spoof, zombie, canuxploitation", "tags_pipe": "|vororte|black humor|satire|dark comedy|gore|decapitation|spoof|zombie|canuxploitation|", "overview": "Timmy Robinson's best friend in the whole wide world is a six-foot tall rotting zombie named Fido. But when Fido eats the next-door neighbor, Mom and Dad hit the roof, and Timmy has to go to the ends of the earth to keep Fido a part of the family. A boy-and-his-dog movie for grown ups, \"Fido\" will rip your heart out.", "text_for_embedding": "Fido (2006). Genres: Romance, Comedy, Drama, Horror. Timmy Robinson's best friend in the whole wide world is a six-foot tall rotting zombie named Fido. But when Fido eats the next-door neighbor, Mom and Dad hit the roof, and Timmy has to go to the ends of the earth to keep Fido a part of the family. A boy-and-his-dog movie for grown ups, \"Fido\" will rip your heart out.. Tags: vororte, black humor, satire, dark comedy, gore, decapitation, spoof, zombie, canuxploitation"} +{"id": "12183", "title": "The Wendell Baker Story", "year": 2005, "duration_min": 99, "rating": 5.2, "genres": "Comedy, Drama, Romance", "genres_pipe": "|Comedy|Drama|Romance|", "keywords": "con man, release from prison, independent film", "tags_pipe": "|con man|release from prison|independent film|", "overview": "Luke Wilson plays a good-hearted ex-con who gets a job in a retirement hotel. Three elderly residents help him win back his girlfriend as he lends them a hand in fighting hotel corruption.", "text_for_embedding": "The Wendell Baker Story (2005). Genres: Comedy, Drama, Romance. Luke Wilson plays a good-hearted ex-con who gets a job in a retirement hotel. Three elderly residents help him win back his girlfriend as he lends them a hand in fighting hotel corruption.. Tags: con man, release from prison, independent film"} +{"id": "44147", "title": "Wild Target", "year": 2010, "duration_min": 98, "rating": 6.4, "genres": "Action, Comedy", "genres_pipe": "|Action|Comedy|", "keywords": "london england, mother, robbery, detective, assassin, hitman, insomnia, apprentice, remake, revenge, murder, gangster, crime, art, surveillance", "tags_pipe": "|london england|mother|robbery|detective|assassin|hitman|insomnia|apprentice|remake|revenge|murder|gangster|crime|art|surveillance|", "overview": "Victor Maynard is a middle-aged, solitary assassin, who lives to please his formidable mother, despite his own peerless reputation for lethal efficiency. His professional routine is interrupted when he finds himself drawn to one of his intended victims, Rose. He spares her life, unexpectedly acquiring in the process a young apprentice, Tony. Believing Victor to be a private detective, his two new companions tag along, while he attempts to thwart the murderous attentions of his unhappy client", "text_for_embedding": "Wild Target (2010). Genres: Action, Comedy. Victor Maynard is a middle-aged, solitary assassin, who lives to please his formidable mother, despite his own peerless reputation for lethal efficiency. His professional routine is interrupted when he finds himself drawn to one of his intended victims, Rose. He spares her life, unexpectedly acquiring in the process a young apprentice, Tony. Believing Victor to be a private detective, his two new companions tag along, while he attempts to thwart the murderous attentions of his unhappy client. Tags: london england, mother, robbery, detective, assassin, hitman, insomnia, apprentice, remake, revenge, murder, gangster, crime, art, surveillance"} +{"id": "12192", "title": "Pathology", "year": 2008, "duration_min": 95, "rating": 5.6, "genres": "Crime, Horror, Thriller", "genres_pipe": "|Crime|Horror|Thriller|", "keywords": "female nudity, pathology, student of medicine, extortion, drug use, game, cadaver, perfect murder", "tags_pipe": "|female nudity|pathology|student of medicine|extortion|drug use|game|cadaver|perfect murder|", "overview": "Medical student Ted Grey (Milo Ventimiglia) graduates at the top of his class and quickly joins an elite pathology program, whose top students invite him into their circle. There he uncovers a gruesome secret: They play a game in which one tries to commit the perfect, undetectable murder, then the others compete to determine the victim's cause of death.", "text_for_embedding": "Pathology (2008). Genres: Crime, Horror, Thriller. Medical student Ted Grey (Milo Ventimiglia) graduates at the top of his class and quickly joins an elite pathology program, whose top students invite him into their circle. There he uncovers a gruesome secret: They play a game in which one tries to commit the perfect, undetectable murder, then the others compete to determine the victim's cause of death.. Tags: female nudity, pathology, student of medicine, extortion, drug use, game, cadaver, perfect murder"} +{"id": "36597", "title": "Wuthering Heights", "year": 2009, "duration_min": 142, "rating": 6.9, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "woman director", "tags_pipe": "|woman director|", "overview": "Foundling Heathcliff is raised by the wealthy Earnshaws in Yorkshire but in later life launches a vendetta against the family.", "text_for_embedding": "Wuthering Heights (2009). Genres: Drama. Foundling Heathcliff is raised by the wealthy Earnshaws in Yorkshire but in later life launches a vendetta against the family.. Tags: woman director"} +{"id": "13197", "title": "10th & Wolf", "year": 2006, "duration_min": 107, "rating": 6.3, "genres": "Action, Crime, Drama, Mystery, Thriller", "genres_pipe": "|Action|Crime|Drama|Mystery|Thriller|", "keywords": "undercover, mafia, mobster, crime family", "tags_pipe": "|undercover|mafia|mobster|crime family|", "overview": "A former street tough returns to his Philadelphia home after a stint in the military. Back on his home turf, he once again finds himself tangling with the mob boss who was instrumental in his going off to be a soldier.", "text_for_embedding": "10th & Wolf (2006). Genres: Action, Crime, Drama, Mystery, Thriller. A former street tough returns to his Philadelphia home after a stint in the military. Back on his home turf, he once again finds himself tangling with the mob boss who was instrumental in his going off to be a soldier.. Tags: undercover, mafia, mobster, crime family"} +{"id": "10913", "title": "Dear Wendy", "year": 2005, "duration_min": 105, "rating": 5.6, "genres": "Comedy, Crime, Drama, Romance", "genres_pipe": "|Comedy|Crime|Drama|Romance|", "keywords": "underdog, secret society, friendship, pistol, self esteem", "tags_pipe": "|underdog|secret society|friendship|pistol|self esteem|", "overview": "In a blue-collar American town, a group of teens bands together to form the Dandies, a gang of gunslingers led by Dick Dandelion. Following a code of strict pacifism at odds with the fact that they all carry guns, the group eventually lets in Sebastian, the grandson of Dick's childhood nanny, Clarabelle, who fears the other gangs in the area. Dick and company try to protect Clarabelle, but events transpire that push the gang past posturing.", "text_for_embedding": "Dear Wendy (2005). Genres: Comedy, Crime, Drama, Romance. In a blue-collar American town, a group of teens bands together to form the Dandies, a gang of gunslingers led by Dick Dandelion. Following a code of strict pacifism at odds with the fact that they all carry guns, the group eventually lets in Sebastian, the grandson of Dick's childhood nanny, Clarabelle, who fears the other gangs in the area. Dick and company try to protect Clarabelle, but events transpire that push the gang past posturing.. Tags: underdog, secret society, friendship, pistol, self esteem"} +{"id": "251321", "title": "Aloft", "year": 2014, "duration_min": 112, "rating": 5.1, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "new age, woman director, healer", "tags_pipe": "|new age|woman director|healer|", "overview": "As we follow a mother and her son, we delve into a past marred by an accident that tears them apart. She will become a renowned artist and healer, and he will grow into his own and a peculiar falconer who bears the marks of a double absence. In the present, a young journalist will bring about an encounter between the two that puts the very meaning of life and art into question, so that we may contemplate the possibility of living life to its fullest, despite the uncertainties littering our paths.", "text_for_embedding": "Aloft (2014). Genres: Drama. As we follow a mother and her son, we delve into a past marred by an accident that tears them apart. She will become a renowned artist and healer, and he will grow into his own and a peculiar falconer who bears the marks of a double absence. In the present, a young journalist will bring about an encounter between the two that puts the very meaning of life and art into question, so that we may contemplate the possibility of living life to its fullest, despite the uncertainties littering our paths.. Tags: new age, woman director, healer"} +{"id": "149", "title": "Akira", "year": 1988, "duration_min": 124, "rating": 7.8, "genres": "Science Fiction, Animation", "genres_pipe": "|Science Fiction|Animation|", "keywords": "saving the world, total destruction, megacity, street gang, underground, general, stadium, experiment, atomic bomb, mutation, dystopia, army, cyberpunk, anime, motorcycle gangs", "tags_pipe": "|saving the world|total destruction|megacity|street gang|underground|general|stadium|experiment|atomic bomb|mutation|dystopia|army|cyberpunk|anime|motorcycle gangs|", "overview": "Childhood friends Tetsuo and Kaneda are pulled into the post-apocalyptic underworld of Neo-Tokyo and forced to fight for their very survival. Kaneda is a bike gang leader, and Tetsuo is a member of a tough motorcycle crew who becomes involved in a covert government project called Akira. But a bloody battle ensues when Kaneda sets out to save his friend.", "text_for_embedding": "Akira (1988). Genres: Science Fiction, Animation. Childhood friends Tetsuo and Kaneda are pulled into the post-apocalyptic underworld of Neo-Tokyo and forced to fight for their very survival. Kaneda is a bike gang leader, and Tetsuo is a member of a tough motorcycle crew who becomes involved in a covert government project called Akira. But a bloody battle ensues when Kaneda sets out to save his friend.. Tags: saving the world, total destruction, megacity, street gang, underground, general, stadium, experiment, atomic bomb, mutation, dystopia, army, cyberpunk, anime, motorcycle gangs"} +{"id": "10425", "title": "The Death and Life of Bobby Z", "year": 2007, "duration_min": 97, "rating": 5.8, "genres": "Drama, Action, Thriller, Crime", "genres_pipe": "|Drama|Action|Thriller|Crime|", "keywords": "vineyard, rifle, drug trade, violence, shot in the stomach, double cross, estate, face slap, tdrug lord, faked death, baja california, san remo, landfill, gallop, rolling eyes", "tags_pipe": "|vineyard|rifle|drug trade|violence|shot in the stomach|double cross|estate|face slap|tdrug lord|faked death|baja california|san remo|landfill|gallop|rolling eyes|", "overview": "A DEA agent provides former Marine Tim Kearney with a way out of his prison sentence: impersonate Bobby Z, a recently deceased drug dealer, in a hostage switch with a crime lord. When the negotiations go awry, Kearney flees, with Z's son in tow.", "text_for_embedding": "The Death and Life of Bobby Z (2007). Genres: Drama, Action, Thriller, Crime. A DEA agent provides former Marine Tim Kearney with a way out of his prison sentence: impersonate Bobby Z, a recently deceased drug dealer, in a hostage switch with a crime lord. When the negotiations go awry, Kearney flees, with Z's son in tow.. Tags: vineyard, rifle, drug trade, violence, shot in the stomach, double cross, estate, face slap, tdrug lord, faked death, baja california, san remo, landfill, gallop, rolling eyes"} +{"id": "49081", "title": "The Rocket: The Legend of Rocket Richard", "year": 2005, "duration_min": 124, "rating": 6.1, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "quebec, sport, ice hockey, hockey player, montreal canadiens", "tags_pipe": "|quebec|sport|ice hockey|hockey player|montreal canadiens|", "overview": "In the late 1930s, a young machinist named Maurice Richard distinguished himself as a ice hockey player of preternatural talent. Although that was enough to get him into the Montreal Canadiens, his frequent injuries cost him the confidence of his team and the fans. In the face of these doubts, Richard eventually shows the kind of aggressive and skillful play that would make him one of the greatest players of all time as \"The Rocket.\" However for all his success, Richard and his fellow French Canadians face constant discrimination in a league dominated by the English speaking. Although a man of few words, Richard begins to speak his own mind about the injustice which creates a organizational conflict that would culminate in his infamous 1955 season suspension that sparks an ethnic riot in protest. In the face of these challenges, Richard must decide who exactly is he playing for.", "text_for_embedding": "The Rocket: The Legend of Rocket Richard (2005). Genres: Drama. In the late 1930s, a young machinist named Maurice Richard distinguished himself as a ice hockey player of preternatural talent. Although that was enough to get him into the Montreal Canadiens, his frequent injuries cost him the confidence of his team and the fans. In the face of these doubts, Richard eventually shows the kind of aggressive and skillful play that would make him one of the greatest players of all time as \"The Rocket.\" However for all his success, Richard and his fellow French Canadians face constant discrimination in a league dominated by the English speaking. Although a man of few words, Richard begins to speak his own mind about the injustice which creates a organizational conflict that would culminate in his infamous 1955 season suspension that sparks an ethnic riot in protest. In the face of these challenges, Richard must decide who exactly is he playing for.. Tags: quebec, sport, ice hockey, hockey player, montreal canadiens"} +{"id": "256687", "title": "Swelter", "year": 2014, "duration_min": 96, "rating": 4.6, "genres": "Action, Drama, Thriller", "genres_pipe": "|Action|Drama|Thriller|", "keywords": "", "tags_pipe": "", "overview": "Ten years after their casino heist, four escaped convicts trace their former partner to a desert town, where he is now a lawman with no memory of his criminal past.", "text_for_embedding": "Swelter (2014). Genres: Action, Drama, Thriller. Ten years after their casino heist, four escaped convicts trace their former partner to a desert town, where he is now a lawman with no memory of his criminal past.. Tags: "} +{"id": "220488", "title": "My Lucky Star", "year": 2013, "duration_min": 114, "rating": 4.3, "genres": "Comedy, Romance", "genres_pipe": "|Comedy|Romance|", "keywords": "hong kong, macau, woman director", "tags_pipe": "|hong kong|macau|woman director|", "overview": "My Lucky Star is a 2013 Chinese romance film directed by Dennie Gordon and starring Zhang Ziyi and Leehom Wang. The film also serves as a prequel to the 2009 film Sophie's Revenge.", "text_for_embedding": "My Lucky Star (2013). Genres: Comedy, Romance. My Lucky Star is a 2013 Chinese romance film directed by Dennie Gordon and starring Zhang Ziyi and Leehom Wang. The film also serves as a prequel to the 2009 film Sophie's Revenge.. Tags: hong kong, macau, woman director"} +{"id": "1544", "title": "Imagine Me & You", "year": 2005, "duration_min": 93, "rating": 7.0, "genres": "Drama, Comedy, Romance", "genres_pipe": "|Drama|Comedy|Romance|", "keywords": "london england, flower shop, homosexuality, lesbian, lgbt", "tags_pipe": "|london england|flower shop|homosexuality|lesbian|lgbt|", "overview": "During her wedding ceremony, Rachel notices Luce in the audience and feels instantly drawn to her. The two women become close friends, and when Rachel learns that Luce is a lesbian, she realizes that despite her happy marriage to Heck, she is falling for Luce. As she questions her sexual orientation, Rachel must decide between her stable relationship with Heck and her exhilarating new romance with Luce.", "text_for_embedding": "Imagine Me & You (2005). Genres: Drama, Comedy, Romance. During her wedding ceremony, Rachel notices Luce in the audience and feels instantly drawn to her. The two women become close friends, and when Rachel learns that Luce is a lesbian, she realizes that despite her happy marriage to Heck, she is falling for Luce. As she questions her sexual orientation, Rachel must decide between her stable relationship with Heck and her exhilarating new romance with Luce.. Tags: london england, flower shop, homosexuality, lesbian, lgbt"} +{"id": "374461", "title": "Mr. Church", "year": 2016, "duration_min": 104, "rating": 7.0, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "cook, friendship", "tags_pipe": "|cook|friendship|", "overview": "A unique friendship develops when a little girl and her dying mother inherit a cook - Mr. Church. What begins as an arrangement that should only last six months, instead spans fifteen years.", "text_for_embedding": "Mr. Church (2016). Genres: Drama. A unique friendship develops when a little girl and her dying mother inherit a cook - Mr. Church. What begins as an arrangement that should only last six months, instead spans fifteen years.. Tags: cook, friendship"} +{"id": "302", "title": "Swimming Pool", "year": 2003, "duration_min": 102, "rating": 6.4, "genres": "Thriller, Crime", "genres_pipe": "|Thriller|Crime|", "keywords": "london england, female nudity, women, countryside, based on novel, subway, provence, country house, writing, innkeeper, generations confilct, dying and death, daughter, swimming pool, murder", "tags_pipe": "|london england|female nudity|women|countryside|based on novel|subway|provence|country house|writing|innkeeper|generations confilct|dying and death|daughter|swimming pool|murder|", "overview": "In the middle of this amusing thriller is a relationship between two different types of females, one is a well know British author and the other is a sex-crazed French teen. The two get into some relationship trouble while living together in this film of psychological imagery and an erotic exploration of the female body.", "text_for_embedding": "Swimming Pool (2003). Genres: Thriller, Crime. In the middle of this amusing thriller is a relationship between two different types of females, one is a well know British author and the other is a sex-crazed French teen. The two get into some relationship trouble while living together in this film of psychological imagery and an erotic exploration of the female body.. Tags: london england, female nudity, women, countryside, based on novel, subway, provence, country house, writing, innkeeper, generations confilct, dying and death, daughter, swimming pool, murder"} +{"id": "182873", "title": "Green Street Hooligans: Underground", "year": 2013, "duration_min": 90, "rating": 5.4, "genres": "Action, Drama", "genres_pipe": "|Action|Drama|", "keywords": "", "tags_pipe": "", "overview": "An old firm leader returns to Green Street for Revanche after receiving a call that his little brother was killed, but is he able to cope with a new type of hooliganism and can he find his killer?", "text_for_embedding": "Green Street Hooligans: Underground (2013). Genres: Action, Drama. An old firm leader returns to Green Street for Revanche after receiving a call that his little brother was killed, but is he able to cope with a new type of hooliganism and can he find his killer?. Tags: "} +{"id": "21512", "title": "The Blood of Heroes", "year": 1989, "duration_min": 100, "rating": 5.9, "genres": "Action, Adventure, Science Fiction", "genres_pipe": "|Action|Adventure|Science Fiction|", "keywords": "martial arts, post-apocalyptic, sport, revenge, independent film, blood, violence, desert, combat", "tags_pipe": "|martial arts|post-apocalyptic|sport|revenge|independent film|blood|violence|desert|combat|", "overview": "Set in a futuristic world where the only sport that has survived in a wasted society is the brutal game known as jugging. Sallow, the leader of a rag-tag team, has played in the main Leagues before, but was cast out because of indiscretions with a lady. However now joined by a talented newcomer, Kidda, an ambitious young peasant girl he and his team find they have one last chance for glory", "text_for_embedding": "The Blood of Heroes (1989). Genres: Action, Adventure, Science Fiction. Set in a futuristic world where the only sport that has survived in a wasted society is the brutal game known as jugging. Sallow, the leader of a rag-tag team, has played in the main Leagues before, but was cast out because of indiscretions with a lady. However now joined by a talented newcomer, Kidda, an ambitious young peasant girl he and his team find they have one last chance for glory. Tags: martial arts, post-apocalyptic, sport, revenge, independent film, blood, violence, desert, combat"} +{"id": "389425", "title": "Code of Honor", "year": 2016, "duration_min": 106, "rating": 4.1, "genres": "Action, Crime, Thriller", "genres_pipe": "|Action|Crime|Thriller|", "keywords": "", "tags_pipe": "", "overview": "Colonel Robert Sikes is on a mission to rid his city of crime. As a stealthy, one-man assault team, he will take on street gangs, mobsters, and politicians with extreme prejudice until his mission is complete. His former protégé, William Porter, teams up with the local police department to bring his former commander to justice and prevent him from further vigilantism.", "text_for_embedding": "Code of Honor (2016). Genres: Action, Crime, Thriller. Colonel Robert Sikes is on a mission to rid his city of crime. As a stealthy, one-man assault team, he will take on street gangs, mobsters, and politicians with extreme prejudice until his mission is complete. His former protégé, William Porter, teams up with the local police department to bring his former commander to justice and prevent him from further vigilantism.. Tags: "} +{"id": "403", "title": "Driving Miss Daisy", "year": 1989, "duration_min": 99, "rating": 7.0, "genres": "Comedy, Drama", "genres_pipe": "|Comedy|Drama|", "keywords": "individual, black people, chauffeur, atlanta, widow, anti semitism, jewish, african american, car, old age", "tags_pipe": "|individual|black people|chauffeur|atlanta|widow|anti semitism|jewish|african american|car|old age|", "overview": "The story of an old Jewish widow named Daisy Werthan and her relationship with her colored chauffeur Hoke. From an initial mere work relationship grew in 25 years a strong friendship between the two very different characters in a time when those types of relationships where shunned upon. Oscar winning tragic comedy with a star-studded cast and based on a play of the same name by Alfred Uhry.", "text_for_embedding": "Driving Miss Daisy (1989). Genres: Comedy, Drama. The story of an old Jewish widow named Daisy Werthan and her relationship with her colored chauffeur Hoke. From an initial mere work relationship grew in 25 years a strong friendship between the two very different characters in a time when those types of relationships where shunned upon. Oscar winning tragic comedy with a star-studded cast and based on a play of the same name by Alfred Uhry.. Tags: individual, black people, chauffeur, atlanta, widow, anti semitism, jewish, african american, car, old age"} +{"id": "29461", "title": "Soul Food", "year": 1997, "duration_min": 114, "rating": 6.6, "genres": "Comedy, Drama", "genres_pipe": "|Comedy|Drama|", "keywords": "sister, family relationships, unity", "tags_pipe": "|sister|family relationships|unity|", "overview": "Traditional Sunday dinners at Mama Joe's (Irma P. Hall) turn sour when sisters Teri (Vanessa L. Williams), Bird (Nia Long) and Maxine (Vivica A. Fox) start bringing their problems to the dinner table in this ensemble comedy. When tragedy strikes, it's up to grandson Ahmad (Brandon Hammond) to pull the family together and put the soul back into the family's weekly gatherings. Michael Beach, Mekhi P", "text_for_embedding": "Soul Food (1997). Genres: Comedy, Drama. Traditional Sunday dinners at Mama Joe's (Irma P. Hall) turn sour when sisters Teri (Vanessa L. Williams), Bird (Nia Long) and Maxine (Vivica A. Fox) start bringing their problems to the dinner table in this ensemble comedy. When tragedy strikes, it's up to grandson Ahmad (Brandon Hammond) to pull the family together and put the soul back into the family's weekly gatherings. Michael Beach, Mekhi P. Tags: sister, family relationships, unity"} +{"id": "33542", "title": "Rumble in the Bronx", "year": 1995, "duration_min": 91, "rating": 6.5, "genres": "Crime, Action, Comedy, Thriller", "genres_pipe": "|Crime|Action|Comedy|Thriller|", "keywords": "new york, martial arts, supermarket, gang war, disabled child, gang, wedding, diamond, bronx, duringcreditsstinger", "tags_pipe": "|new york|martial arts|supermarket|gang war|disabled child|gang|wedding|diamond|bronx|duringcreditsstinger|", "overview": "Keong comes from Hong Kong to visit New York for his uncle's wedding. His uncle runs a market in the Bronx and Keong offers to help out while Uncle is on his honeymoon. During his stay in the Bronx, Keong befriends a neighbor kid and beats up some neighborhood thugs who cause problems at the market. One of those petty thugs in the local gang stumbles into a criminal situation way over his head.", "text_for_embedding": "Rumble in the Bronx (1995). Genres: Crime, Action, Comedy, Thriller. Keong comes from Hong Kong to visit New York for his uncle's wedding. His uncle runs a market in the Bronx and Keong offers to help out while Uncle is on his honeymoon. During his stay in the Bronx, Keong befriends a neighbor kid and beats up some neighborhood thugs who cause problems at the market. One of those petty thugs in the local gang stumbles into a criminal situation way over his head.. Tags: new york, martial arts, supermarket, gang war, disabled child, gang, wedding, diamond, bronx, duringcreditsstinger"} +{"id": "283708", "title": "Far from Men", "year": 2014, "duration_min": 110, "rating": 6.6, "genres": "Drama, War", "genres_pipe": "|Drama|War|", "keywords": "fire, classroom, hostage, rain, horse, rifle, children, teacher, school, rural setting, school teacher, based on short story, algeria, journey, 1950s", "tags_pipe": "|fire|classroom|hostage|rain|horse|rifle|children|teacher|school|rural setting|school teacher|based on short story|algeria|journey|1950s|", "overview": "A French teacher in a small Algerian village during the Algerian War forms an unexpected bond with a dissident who is ordered to be turned in to the authorities.", "text_for_embedding": "Far from Men (2014). Genres: Drama, War. A French teacher in a small Algerian village during the Algerian War forms an unexpected bond with a dissident who is ordered to be turned in to the authorities.. Tags: fire, classroom, hostage, rain, horse, rifle, children, teacher, school, rural setting, school teacher, based on short story, algeria, journey, 1950s"} +{"id": "9388", "title": "Thank You for Smoking", "year": 2005, "duration_min": 92, "rating": 7.1, "genres": "Comedy, Drama", "genres_pipe": "|Comedy|Drama|", "keywords": "father son relationship, capitalism, based on novel, smoking, lie, cigarette, research, law, health, marketing, politics, politician, tobacco, liar, dark comedy", "tags_pipe": "|father son relationship|capitalism|based on novel|smoking|lie|cigarette|research|law|health|marketing|politics|politician|tobacco|liar|dark comedy|", "overview": "The chief spokesperson and lobbyist Nick Naylor is the Vice-President of the Academy of Tobacco Studies. He is talented in speaking and spins argument to defend the cigarette industry in the most difficult situations. His best friends are Polly Bailey that works in the Moderation Council in alcohol business, and Bobby Jay Bliss of the gun business own advisory group SAFETY. They frequently meet each other in a bar and they self-entitle the Mod Squad a.k.a. Merchants of Death, disputing which industry has killed more people. Nick's greatest enemy is Vermont's Senator Ortolan Finistirre, who defends in the Senate the use a skull and crossed bones in the cigarette packs. Nick's son Joey Naylor lives with his mother, and has the chance to know his father in a business trip. When the ambitious reporter Heather Holloway betrays Nick disclosing confidences he had in bed with her, his life turns upside-down. But Nick is good in what he does for the mortgage.", "text_for_embedding": "Thank You for Smoking (2005). Genres: Comedy, Drama. The chief spokesperson and lobbyist Nick Naylor is the Vice-President of the Academy of Tobacco Studies. He is talented in speaking and spins argument to defend the cigarette industry in the most difficult situations. His best friends are Polly Bailey that works in the Moderation Council in alcohol business, and Bobby Jay Bliss of the gun business own advisory group SAFETY. They frequently meet each other in a bar and they self-entitle the Mod Squad a.k.a. Merchants of Death, disputing which industry has killed more people. Nick's greatest enemy is Vermont's Senator Ortolan Finistirre, who defends in the Senate the use a skull and crossed bones in the cigarette packs. Nick's son Joey Naylor lives with his mother, and has the chance to know his father in a business trip. When the ambitious reporter Heather Holloway betrays Nick disclosing confidences he had in bed with her, his life turns upside-down. But Nick is good in what he does for the mortgage.. Tags: father son relationship, capitalism, based on novel, smoking, lie, cigarette, research, law, health, marketing, politics, politician, tobacco, liar, dark comedy"} +{"id": "1691", "title": "Hostel: Part II", "year": 2007, "duration_min": 93, "rating": 5.6, "genres": "Horror", "genres_pipe": "|Horror|", "keywords": "prague, bratislava, castration, ladies' man, student, torture, penis, torture porn", "tags_pipe": "|prague|bratislava|castration|ladies' man|student|torture|penis|torture porn|", "overview": "Following a geographical tour of Slovakia, three young American women are lured into a hostel by a handsome young man who sells them to the twisted masters, ties them up and brings upon an unthinkable world of pain.", "text_for_embedding": "Hostel: Part II (2007). Genres: Horror. Following a geographical tour of Slovakia, three young American women are lured into a hostel by a handsome young man who sells them to the twisted masters, ties them up and brings upon an unthinkable world of pain.. Tags: prague, bratislava, castration, ladies' man, student, torture, penis, torture porn"} +{"id": "24684", "title": "An Education", "year": 2009, "duration_min": 100, "rating": 6.8, "genres": "Drama, Romance", "genres_pipe": "|Drama|Romance|", "keywords": "adolescence, age difference, self-discovery, coming of age, love affair, youth, family, woman director, teaching the ways of the world, parents and children, love and romance, teenage life", "tags_pipe": "|adolescence|age difference|self-discovery|coming of age|love affair|youth|family|woman director|teaching the ways of the world|parents and children|love and romance|teenage life|", "overview": "A coming-of-age story about a teenage girl in 1960s suburban London, and how her life changes with the arrival of a playboy nearly twice her age.", "text_for_embedding": "An Education (2009). Genres: Drama, Romance. A coming-of-age story about a teenage girl in 1960s suburban London, and how her life changes with the arrival of a playboy nearly twice her age.. Tags: adolescence, age difference, self-discovery, coming of age, love affair, youth, family, woman director, teaching the ways of the world, parents and children, love and romance, teenage life"} +{"id": "2610", "title": "Shopgirl", "year": 2005, "duration_min": 104, "rating": 5.7, "genres": "Comedy, Drama, Romance", "genres_pipe": "|Comedy|Drama|Romance|", "keywords": "salesclerk", "tags_pipe": "|salesclerk|", "overview": "Mirabelle is a disenchanted salesgirl and aspiring artist who sells gloves and accessories at a department store. She has two men in her life: wealthy divorcée Ray Porter and struggling musician Jeremy. Mirabelle falls in love with the glamorous Ray, and her life takes a magical turn, but eventually she realizes that she must empower herself and make a choice between them.", "text_for_embedding": "Shopgirl (2005). Genres: Comedy, Drama, Romance. Mirabelle is a disenchanted salesgirl and aspiring artist who sells gloves and accessories at a department store. She has two men in her life: wealthy divorcée Ray Porter and struggling musician Jeremy. Mirabelle falls in love with the glamorous Ray, and her life takes a magical turn, but eventually she realizes that she must empower herself and make a choice between them.. Tags: salesclerk"} +{"id": "11308", "title": "The Hotel New Hampshire", "year": 1984, "duration_min": 109, "rating": 5.8, "genres": "Comedy, Drama", "genres_pipe": "|Comedy|Drama|", "keywords": "suicide, bomb, prostitute, rape, sex, hotel, based on novel, terrorist, fight, nudity, satire", "tags_pipe": "|suicide|bomb|prostitute|rape|sex|hotel|based on novel|terrorist|fight|nudity|satire|", "overview": "The film talks about a family that weathers all sorts of disasters and keeps going in spite of it all. It is noted for its wonderful assortment of oddball characters.", "text_for_embedding": "The Hotel New Hampshire (1984). Genres: Comedy, Drama. The film talks about a family that weathers all sorts of disasters and keeps going in spite of it all. It is noted for its wonderful assortment of oddball characters.. Tags: suicide, bomb, prostitute, rape, sex, hotel, based on novel, terrorist, fight, nudity, satire"} +{"id": "11022", "title": "Narc", "year": 2002, "duration_min": 105, "rating": 6.8, "genres": "Action, Crime, Drama, Thriller", "genres_pipe": "|Action|Crime|Drama|Thriller|", "keywords": "assertion, investigation, internal affairs, narcotics cop", "tags_pipe": "|assertion|investigation|internal affairs|narcotics cop|", "overview": "An undercover narc dies, the investigation stalls, so the Detroit P.D. brings back Nick Tellis, fired 18-months ago when a stray bullet hits a pregnant woman. Tellis teams with Henry Oak, a friend of the dead narc and an aggressive cop constantly under the scrutiny of internal affairs. They follow leads and informants turn up dead.", "text_for_embedding": "Narc (2002). Genres: Action, Crime, Drama, Thriller. An undercover narc dies, the investigation stalls, so the Detroit P.D. brings back Nick Tellis, fired 18-months ago when a stray bullet hits a pregnant woman. Tellis teams with Henry Oak, a friend of the dead narc and an aggressive cop constantly under the scrutiny of internal affairs. They follow leads and informants turn up dead.. Tags: assertion, investigation, internal affairs, narcotics cop"} +{"id": "34341", "title": "Men with Brooms", "year": 2002, "duration_min": 102, "rating": 4.5, "genres": "Comedy", "genres_pipe": "|Comedy|", "keywords": "sport", "tags_pipe": "|sport|", "overview": "A witty and clever comedy that follows four longtime curling friends reunited by the last wishes of their recently deceased coach and set out to win the Golden Broom. Realising that the out of shape crew will be hard-pressed to win without a coach, Cutter swallows his pride and calls upon a retired curling champion - his estranged father. Now, these men with brooms, along with their new eccentric coach and Cutter's new romantic interest Amy, set off on a comedic journey which takes them from frozen lakes to huge arenas, searching for perfect stones, lost loves and second chances.", "text_for_embedding": "Men with Brooms (2002). Genres: Comedy. A witty and clever comedy that follows four longtime curling friends reunited by the last wishes of their recently deceased coach and set out to win the Golden Broom. Realising that the out of shape crew will be hard-pressed to win without a coach, Cutter swallows his pride and calls upon a retired curling champion - his estranged father. Now, these men with brooms, along with their new eccentric coach and Cutter's new romantic interest Amy, set off on a comedic journey which takes them from frozen lakes to huge arenas, searching for perfect stones, lost loves and second chances.. Tags: sport"} +{"id": "15365", "title": "Witless Protection", "year": 2008, "duration_min": 97, "rating": 4.0, "genres": "Action, Adventure, Comedy, Crime", "genres_pipe": "|Action|Adventure|Comedy|Crime|", "keywords": "", "tags_pipe": "", "overview": "The story centers on a small-town sheriff who witnesses what he believes is a kidnapping and rushes to rescue a woman. The kidnappers turn out to be FBI agents assigned to protect her and deliver her to a big Enron-type corruption trial in Chicago but are later found to be on the take and are villains who are bent on killing her", "text_for_embedding": "Witless Protection (2008). Genres: Action, Adventure, Comedy, Crime. The story centers on a small-town sheriff who witnesses what he believes is a kidnapping and rushes to rescue a woman. The kidnappers turn out to be FBI agents assigned to protect her and deliver her to a big Enron-type corruption trial in Chicago but are later found to be on the take and are villains who are bent on killing her. Tags: "} +{"id": "36046", "title": "The Work and the Glory", "year": 2004, "duration_min": 110, "rating": 6.1, "genres": "Drama, Romance", "genres_pipe": "|Drama|Romance|", "keywords": "", "tags_pipe": "", "overview": "When Benjamin Steed and Mary Ann Steed relocate their family to upstate New York in the early 1800's, they unwittingly settle in a town divided along religious lines. After their new hired help turns out to be at the center of the uproar, each member of the Steed family must come to terms with their own beliefs in the face of heavy persecution. Together they struggle to weather the raging controversy surrounding a young man named Joseph Smith.", "text_for_embedding": "The Work and the Glory (2004). Genres: Drama, Romance. When Benjamin Steed and Mary Ann Steed relocate their family to upstate New York in the early 1800's, they unwittingly settle in a town divided along religious lines. After their new hired help turns out to be at the center of the uproar, each member of the Steed family must come to terms with their own beliefs in the face of heavy persecution. Together they struggle to weather the raging controversy surrounding a young man named Joseph Smith.. Tags: "} +{"id": "12569", "title": "Extract", "year": 2009, "duration_min": 92, "rating": 5.7, "genres": "Comedy", "genres_pipe": "|Comedy|", "keywords": "infidelity, con man, thief, independent film, business, manufacturing, industrial accident, duringcreditsstinger, sexless marriage, misfortune", "tags_pipe": "|infidelity|con man|thief|independent film|business|manufacturing|industrial accident|duringcreditsstinger|sexless marriage|misfortune|", "overview": "The owner of a factory that produces flavor extracts, Joel Reynold seems to have it all, but really doesn't. What's missing is sexual attention from his wife, Suzie. Joel hatches a convoluted plan to get Suzie to cheat on him, thereby clearing the way for Joel to have an affair with Cindy, an employee. But what Joel doesn't know is that Cindy is a sociopathic con artist, and a freak workplace accident clears the way for her to ruin Joel forever.", "text_for_embedding": "Extract (2009). Genres: Comedy. The owner of a factory that produces flavor extracts, Joel Reynold seems to have it all, but really doesn't. What's missing is sexual attention from his wife, Suzie. Joel hatches a convoluted plan to get Suzie to cheat on him, thereby clearing the way for Joel to have an affair with Cindy, an employee. But what Joel doesn't know is that Cindy is a sociopathic con artist, and a freak workplace accident clears the way for her to ruin Joel forever.. Tags: infidelity, con man, thief, independent film, business, manufacturing, industrial accident, duringcreditsstinger, sexless marriage, misfortune"} +{"id": "24356", "title": "Masked and Anonymous", "year": 2003, "duration_min": 112, "rating": 5.2, "genres": "Drama, Music", "genres_pipe": "|Drama|Music|", "keywords": "journalist, musical, concert, independent film", "tags_pipe": "|journalist|musical|concert|independent film|", "overview": "Amidst unrest, organizers put on a benefit concert.", "text_for_embedding": "Masked and Anonymous (2003). Genres: Drama, Music. Amidst unrest, organizers put on a benefit concert.. Tags: journalist, musical, concert, independent film"} +{"id": "55903", "title": "Betty Fisher and Other Stories", "year": 2001, "duration_min": 103, "rating": 7.0, "genres": "Drama, Thriller, Crime, Foreign", "genres_pipe": "|Drama|Thriller|Crime|Foreign|", "keywords": "", "tags_pipe": "", "overview": "Grieving after the death of her young son Joseph, novelist Betty Fisher enters a dark depression. Hoping to bring her out of it, her mother Margot arranges to kidnap another child, Jose, to replace the son Betty lost. Although she knows it's wrong, Betty accepts Jose as her new son. Meanwhile, Jose's mother Carole is looking for her son with the help of her boyfriend Francois and some of his criminal cohorts.", "text_for_embedding": "Betty Fisher and Other Stories (2001). Genres: Drama, Thriller, Crime, Foreign. Grieving after the death of her young son Joseph, novelist Betty Fisher enters a dark depression. Hoping to bring her out of it, her mother Margot arranges to kidnap another child, Jose, to replace the son Betty lost. Although she knows it's wrong, Betty accepts Jose as her new son. Meanwhile, Jose's mother Carole is looking for her son with the help of her boyfriend Francois and some of his criminal cohorts.. Tags: "} +{"id": "2577", "title": "Code 46", "year": 2003, "duration_min": 92, "rating": 6.2, "genres": "Drama, Romance, Science Fiction, Thriller", "genres_pipe": "|Drama|Romance|Science Fiction|Thriller|", "keywords": "seattle, shanghai, future, insurance salesman, dystopia", "tags_pipe": "|seattle|shanghai|future|insurance salesman|dystopia|", "overview": "A futuristic 'Brief Encounter', a love story in which the romance is doomed by genetic incompatibility.", "text_for_embedding": "Code 46 (2003). Genres: Drama, Romance, Science Fiction, Thriller. A futuristic 'Brief Encounter', a love story in which the romance is doomed by genetic incompatibility.. Tags: seattle, shanghai, future, insurance salesman, dystopia"} +{"id": "103903", "title": "Outside Bet", "year": 2012, "duration_min": 101, "rating": 5.8, "genres": "Comedy", "genres_pipe": "|Comedy|", "keywords": "racehorse", "tags_pipe": "|racehorse|", "overview": "A group of print workers in 1980s London club together to buy a race horse.", "text_for_embedding": "Outside Bet (2012). Genres: Comedy. A group of print workers in 1980s London club together to buy a race horse.. Tags: racehorse"} +{"id": "73873", "title": "Albert Nobbs", "year": 2011, "duration_min": 113, "rating": 6.2, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "butler, dublin, maid", "tags_pipe": "|butler|dublin|maid|", "overview": "Albert Nobbs struggles to survive in late 19th century Ireland, where women aren't encouraged to be independent. Posing as a man, so she can work as a butler in Dublin's most posh hotel, Albert meets a handsome painter and looks to escape the lie she has been living.", "text_for_embedding": "Albert Nobbs (2011). Genres: Drama. Albert Nobbs struggles to survive in late 19th century Ireland, where women aren't encouraged to be independent. Posing as a man, so she can work as a butler in Dublin's most posh hotel, Albert meets a handsome painter and looks to escape the lie she has been living.. Tags: butler, dublin, maid"} +{"id": "312113", "title": "Black November", "year": 2012, "duration_min": 95, "rating": 6.4, "genres": "Drama, Action, Crime", "genres_pipe": "|Drama|Action|Crime|", "keywords": "", "tags_pipe": "", "overview": "A volatile, oil-rich Nigerian community wages war against their corrupt government and a multi-national oil corporation to protect their land from being destroyed by excessive drilling and spills. To seek justice, a rebel organization kidnaps an American oil executive and demands that his corporation end the destruction and pollution. Inspired by true events, Black November is the gripping story of how a community rises up and takes drastic measures to make sure their voices are heard.", "text_for_embedding": "Black November (2012). Genres: Drama, Action, Crime. A volatile, oil-rich Nigerian community wages war against their corrupt government and a multi-national oil corporation to protect their land from being destroyed by excessive drilling and spills. To seek justice, a rebel organization kidnaps an American oil executive and demands that his corporation end the destruction and pollution. Inspired by true events, Black November is the gripping story of how a community rises up and takes drastic measures to make sure their voices are heard.. Tags: "} +{"id": "14165", "title": "Ta Ra Rum Pum", "year": 2007, "duration_min": 156, "rating": 6.0, "genres": "Family, Comedy, Romance", "genres_pipe": "|Family|Comedy|Romance|", "keywords": "new york, from rags to riches, family relationships, bollywood, racer, starvation", "tags_pipe": "|new york|from rags to riches|family relationships|bollywood|racer|starvation|", "overview": "A poor New York resident, who is of Indian origin, dreams of becoming a fast car race driver. He endeavors, and his efforts are rewarded when he selected by a little-known group called 'RACING SADDLES'. He joins them and soon becomes their ace race driver. This man, whose name is Rajveer, then meets with a rich American woman, also of Indian origin, whose name is Radhika. Both fall in love with each other. They cannot get married, because Radhika's family hates Rajveer mainly because he is very poor. But Radhika is very stubborn, so she marries him. She loses all her rights to her family's wealth. They get married and become parents of two children. They also become very rich. Then Rajveer has an accident which changes their lives forever. They get into debt and stand to lose everything. Will Radhika be forced to return back to her family?", "text_for_embedding": "Ta Ra Rum Pum (2007). Genres: Family, Comedy, Romance. A poor New York resident, who is of Indian origin, dreams of becoming a fast car race driver. He endeavors, and his efforts are rewarded when he selected by a little-known group called 'RACING SADDLES'. He joins them and soon becomes their ace race driver. This man, whose name is Rajveer, then meets with a rich American woman, also of Indian origin, whose name is Radhika. Both fall in love with each other. They cannot get married, because Radhika's family hates Rajveer mainly because he is very poor. But Radhika is very stubborn, so she marries him. She loses all her rights to her family's wealth. They get married and become parents of two children. They also become very rich. Then Rajveer has an accident which changes their lives forever. They get into debt and stand to lose everything. Will Radhika be forced to return back to her family?. Tags: new york, from rags to riches, family relationships, bollywood, racer, starvation"} +{"id": "2011", "title": "Persepolis", "year": 2007, "duration_min": 95, "rating": 7.7, "genres": "Animation, Drama", "genres_pipe": "|Animation|Drama|", "keywords": "civil war, parents kids relationship, 1970s, puberty, totalitarian regime, cutting the cord, punk, bomb alarm, war, adult animation, punk band, woman director", "tags_pipe": "|civil war|parents kids relationship|1970s|puberty|totalitarian regime|cutting the cord|punk|bomb alarm|war|adult animation|punk band|woman director|", "overview": "In 1970s Iran, Marjane 'Marji' Statrapi watches events through her young eyes and her idealistic family of a long dream being fulfilled of the hated Shah's defeat in the Iranian Revolution of 1979. However as Marji grows up, she witnesses first hand how the new Iran, now ruled by Islamic fundamentalists, has become a repressive tyranny on its own.", "text_for_embedding": "Persepolis (2007). Genres: Animation, Drama. In 1970s Iran, Marjane 'Marji' Statrapi watches events through her young eyes and her idealistic family of a long dream being fulfilled of the hated Shah's defeat in the Iranian Revolution of 1979. However as Marji grows up, she witnesses first hand how the new Iran, now ruled by Islamic fundamentalists, has become a repressive tyranny on its own.. Tags: civil war, parents kids relationship, 1970s, puberty, totalitarian regime, cutting the cord, punk, bomb alarm, war, adult animation, punk band, woman director"} +{"id": "45650", "title": "The Hole", "year": 2009, "duration_min": 92, "rating": 5.6, "genres": "Thriller, Adventure, Fantasy", "genres_pipe": "|Thriller|Adventure|Fantasy|", "keywords": "basement, hole, little brother", "tags_pipe": "|basement|hole|little brother|", "overview": "After moving into a new neighbourhood, brothers Dane & Lucas and their neighbour Julie discover a bottomless hole in the basement of their home. They find that once the hole is exposed, evil is unleashed. With strange shadows lurking around every corner and nightmares coming to life, they are forced to come face to face with their darkest fears to put an end to the mystery of THE HOLE.", "text_for_embedding": "The Hole (2009). Genres: Thriller, Adventure, Fantasy. After moving into a new neighbourhood, brothers Dane & Lucas and their neighbour Julie discover a bottomless hole in the basement of their home. They find that once the hole is exposed, evil is unleashed. With strange shadows lurking around every corner and nightmares coming to life, they are forced to come face to face with their darkest fears to put an end to the mystery of THE HOLE.. Tags: basement, hole, little brother"} +{"id": "7735", "title": "The Wave", "year": 2008, "duration_min": 107, "rating": 7.5, "genres": "Drama, Thriller", "genres_pipe": "|Drama|Thriller|", "keywords": "dictator, trainer, classroom, fascism, group dynamics, education, national socialism, training, squatter, anarchist, group, gymnasium, learning and teaching, violence in schools, homepage", "tags_pipe": "|dictator|trainer|classroom|fascism|group dynamics|education|national socialism|training|squatter|anarchist|group|gymnasium|learning and teaching|violence in schools|homepage|", "overview": "A school teacher discusses types of government with his class. His students find it too boring to repeatedly go over national socialism and believe that dictatorship cannot be established in modern Germany. He starts an experiment to show how easily the masses can become manipulated.", "text_for_embedding": "The Wave (2008). Genres: Drama, Thriller. A school teacher discusses types of government with his class. His students find it too boring to repeatedly go over national socialism and believe that dictatorship cannot be established in modern Germany. He starts an experiment to show how easily the masses can become manipulated.. Tags: dictator, trainer, classroom, fascism, group dynamics, education, national socialism, training, squatter, anarchist, group, gymnasium, learning and teaching, violence in schools, homepage"} +{"id": "301365", "title": "The Neon Demon", "year": 2016, "duration_min": 117, "rating": 6.4, "genres": "Thriller, Horror", "genres_pipe": "|Thriller|Horror|", "keywords": "model", "tags_pipe": "|model|", "overview": "When aspiring model Jesse moves to Los Angeles, her youth and vitality are devoured by a group of beauty-obsessed women who will take any means necessary to get what she has.", "text_for_embedding": "The Neon Demon (2016). Genres: Thriller, Horror. When aspiring model Jesse moves to Los Angeles, her youth and vitality are devoured by a group of beauty-obsessed women who will take any means necessary to get what she has.. Tags: model"} +{"id": "25941", "title": "Harry Brown", "year": 2009, "duration_min": 103, "rating": 6.7, "genres": "Thriller, Crime, Drama, Action", "genres_pipe": "|Thriller|Crime|Drama|Action|", "keywords": "self-defense, widower", "tags_pipe": "|self-defense|widower|", "overview": "An elderly ex-serviceman and widower looks to avenge his best friend's murder by doling out his own form of justice.", "text_for_embedding": "Harry Brown (2009). Genres: Thriller, Crime, Drama, Action. An elderly ex-serviceman and widower looks to avenge his best friend's murder by doling out his own form of justice.. Tags: self-defense, widower"} +{"id": "29064", "title": "The Omega Code", "year": 1999, "duration_min": 100, "rating": 4.4, "genres": "Horror, Thriller", "genres_pipe": "|Horror|Thriller|", "keywords": "bible, suspense, biblical code, revelation (book)", "tags_pipe": "|bible|suspense|biblical code|revelation (book)|", "overview": "In this spiritual thriller, an ancient prophecy is about to be fulfilled as a secret code brings the world to the edge of Apocalypse. Gillen Lane (Casper Van Dien) is a expert on theology and mythology who has gained international fame as a motivational speaker.", "text_for_embedding": "The Omega Code (1999). Genres: Horror, Thriller. In this spiritual thriller, an ancient prophecy is about to be fulfilled as a secret code brings the world to the edge of Apocalypse. Gillen Lane (Casper Van Dien) is a expert on theology and mythology who has gained international fame as a motivational speaker.. Tags: bible, suspense, biblical code, revelation (book)"} +{"id": "7326", "title": "Juno", "year": 2007, "duration_min": 96, "rating": 7.0, "genres": "Comedy, Drama, Romance", "genres_pipe": "|Comedy|Drama|Romance|", "keywords": "sexuality, becoming an adult, puberty, first time, oscar award, pregnancy and birth, pregnant minor, precocity, partnership, teenager, teenage pregnancy", "tags_pipe": "|sexuality|becoming an adult|puberty|first time|oscar award|pregnancy and birth|pregnant minor|precocity|partnership|teenager|teenage pregnancy|", "overview": "A young girl named Juno gets herself pregnant and tries to stand on her own, but soon learns a few lessons about being grown up.", "text_for_embedding": "Juno (2007). Genres: Comedy, Drama, Romance. A young girl named Juno gets herself pregnant and tries to stand on her own, but soon learns a few lessons about being grown up.. Tags: sexuality, becoming an adult, puberty, first time, oscar award, pregnancy and birth, pregnant minor, precocity, partnership, teenager, teenage pregnancy"} +{"id": "326284", "title": "Pound of Flesh", "year": 2015, "duration_min": 104, "rating": 5.5, "genres": "Action", "genres_pipe": "|Action|", "keywords": "", "tags_pipe": "", "overview": "In China to donate his kidney to his dying niece, former black-ops agent Deacon awakes the day before the operation to find he is the latest victim of organ theft. Stitched up and pissed-off, Deacon descends from his opulent hotel in search of his stolen kidney and carves a blood-soaked path through the darkest corners of the city. The clock is ticking for his niece and with each step he loses blood.", "text_for_embedding": "Pound of Flesh (2015). Genres: Action. In China to donate his kidney to his dying niece, former black-ops agent Deacon awakes the day before the operation to find he is the latest victim of organ theft. Stitched up and pissed-off, Deacon descends from his opulent hotel in search of his stolen kidney and carves a blood-soaked path through the darkest corners of the city. The clock is ticking for his niece and with each step he loses blood.. Tags: "} +{"id": "681", "title": "Diamonds Are Forever", "year": 1971, "duration_min": 120, "rating": 6.3, "genres": "Adventure, Action, Thriller", "genres_pipe": "|Adventure|Action|Thriller|", "keywords": "spy, fight, secret organization, satellite, secret agent, plastic surgery, smuggling, murder, extortion, violence, millionaire, fingerprints, dirt bike, woman drowned, casino owner", "tags_pipe": "|spy|fight|secret organization|satellite|secret agent|plastic surgery|smuggling|murder|extortion|violence|millionaire|fingerprints|dirt bike|woman drowned|casino owner|", "overview": "Diamonds are stolen only to be sold again in the international market. James Bond infiltrates a smuggling mission to find out who’s guilty. The mission takes him to Las Vegas where Bond meets his archenemy Blofeld.", "text_for_embedding": "Diamonds Are Forever (1971). Genres: Adventure, Action, Thriller. Diamonds are stolen only to be sold again in the international market. James Bond infiltrates a smuggling mission to find out who’s guilty. The mission takes him to Las Vegas where Bond meets his archenemy Blofeld.. Tags: spy, fight, secret organization, satellite, secret agent, plastic surgery, smuggling, murder, extortion, violence, millionaire, fingerprints, dirt bike, woman drowned, casino owner"} +{"id": "238", "title": "The Godfather", "year": 1972, "duration_min": 175, "rating": 8.4, "genres": "Drama, Crime", "genres_pipe": "|Drama|Crime|", "keywords": "italy, love at first sight, loss of father, patriarch, organized crime, mafia, lawyer, italian american, crime family, rise to power, mob boss, 1940s", "tags_pipe": "|italy|love at first sight|loss of father|patriarch|organized crime|mafia|lawyer|italian american|crime family|rise to power|mob boss|1940s|", "overview": "Spanning the years 1945 to 1955, a chronicle of the fictional Italian-American Corleone crime family. When organized crime family patriarch, Vito Corleone barely survives an attempt on his life, his youngest son, Michael steps in to take care of the would-be killers, launching a campaign of bloody revenge.", "text_for_embedding": "The Godfather (1972). Genres: Drama, Crime. Spanning the years 1945 to 1955, a chronicle of the fictional Italian-American Corleone crime family. When organized crime family patriarch, Vito Corleone barely survives an attempt on his life, his youngest son, Michael steps in to take care of the would-be killers, launching a campaign of bloody revenge.. Tags: italy, love at first sight, loss of father, patriarch, organized crime, mafia, lawyer, italian american, crime family, rise to power, mob boss, 1940s"} +{"id": "535", "title": "Flashdance", "year": 1983, "duration_min": 95, "rating": 6.1, "genres": "Drama, Music, Romance", "genres_pipe": "|Drama|Music|Romance|", "keywords": "dancing, dance, locksmith, welder", "tags_pipe": "|dancing|dance|locksmith|welder|", "overview": "The popular 1980’s dance movie that depicts the life of an exotic dancer with a side job as a welder who true desire is to get into ballet school. It’s her dream to be a professional dancer and now is her chance. The film has a great soundtrack with an Oscar winning song.", "text_for_embedding": "Flashdance (1983). Genres: Drama, Music, Romance. The popular 1980’s dance movie that depicts the life of an exotic dancer with a side job as a welder who true desire is to get into ballet school. It’s her dream to be a professional dancer and now is her chance. The film has a great soundtrack with an Oscar winning song.. Tags: dancing, dance, locksmith, welder"} +{"id": "19913", "title": "(500) Days of Summer", "year": 2009, "duration_min": 95, "rating": 7.2, "genres": "Comedy, Drama, Romance", "genres_pipe": "|Comedy|Drama|Romance|", "keywords": "date, sex, jealousy, fight, architect, gallery, interview, sister, party, love, friends, fate, los angeles, summer, ikea", "tags_pipe": "|date|sex|jealousy|fight|architect|gallery|interview|sister|party|love|friends|fate|los angeles|summer|ikea|", "overview": "Tom (Joseph Gordon-Levitt), greeting-card writer and hopeless romantic, is caught completely off-guard when his girlfriend, Summer (Zooey Deschanel), suddenly dumps him. He reflects on their 500 days together to try to figure out where their love affair went sour, and in doing so, Tom rediscovers his true passions in life.", "text_for_embedding": "(500) Days of Summer (2009). Genres: Comedy, Drama, Romance. Tom (Joseph Gordon-Levitt), greeting-card writer and hopeless romantic, is caught completely off-guard when his girlfriend, Summer (Zooey Deschanel), suddenly dumps him. He reflects on their 500 days together to try to figure out where their love affair went sour, and in doing so, Tom rediscovers his true passions in life.. Tags: date, sex, jealousy, fight, architect, gallery, interview, sister, party, love, friends, fate, los angeles, summer, ikea"} +{"id": "713", "title": "The Piano", "year": 1993, "duration_min": 121, "rating": 7.1, "genres": "Drama, Romance", "genres_pipe": "|Drama|Romance|", "keywords": "love triangle, scotland, mother, adultery, sexuality, jealousy, culture clash, isolation, eroticism, strangeness, penalty, violent husband, new zealand, maori, arranged marriage", "tags_pipe": "|love triangle|scotland|mother|adultery|sexuality|jealousy|culture clash|isolation|eroticism|strangeness|penalty|violent husband|new zealand|maori|arranged marriage|", "overview": "After a long voyage from Scotland, pianist Ada McGrath and her young daughter, Flora, are left with all their belongings, including a piano, on a New Zealand beach. Ada, who has been mute since childhood, has been sold into marriage to a local man named Alisdair Stewart. Making little attempt to warm up to Alisdair, Ada soon becomes intrigued by his Maori-friendly acquaintance, George Baines, leading to tense, life-altering conflicts.", "text_for_embedding": "The Piano (1993). Genres: Drama, Romance. After a long voyage from Scotland, pianist Ada McGrath and her young daughter, Flora, are left with all their belongings, including a piano, on a New Zealand beach. Ada, who has been mute since childhood, has been sold into marriage to a local man named Alisdair Stewart. Making little attempt to warm up to Alisdair, Ada soon becomes intrigued by his Maori-friendly acquaintance, George Baines, leading to tense, life-altering conflicts.. Tags: love triangle, scotland, mother, adultery, sexuality, jealousy, culture clash, isolation, eroticism, strangeness, penalty, violent husband, new zealand, maori, arranged marriage"} +{"id": "77930", "title": "Magic Mike", "year": 2012, "duration_min": 110, "rating": 6.1, "genres": "Drama, Comedy", "genres_pipe": "|Drama|Comedy|", "keywords": "dancing, florida, strip club, male stripper, novice", "tags_pipe": "|dancing|florida|strip club|male stripper|novice|", "overview": "Mike, an experienced stripper, takes a younger performer called The Kid under his wing and schools him in the arts of partying, picking up women, and making easy money.", "text_for_embedding": "Magic Mike (2012). Genres: Drama, Comedy. Mike, an experienced stripper, takes a younger performer called The Kid under his wing and schools him in the arts of partying, picking up women, and making easy money.. Tags: dancing, florida, strip club, male stripper, novice"} +{"id": "10727", "title": "Darkness Falls", "year": 2003, "duration_min": 86, "rating": 4.9, "genres": "Thriller, Horror", "genres_pipe": "|Thriller|Horror|", "keywords": "witch, loss of mother, small town, death penalty, lighthouse, cowardliness, spirit, witch hunt", "tags_pipe": "|witch|loss of mother|small town|death penalty|lighthouse|cowardliness|spirit|witch hunt|", "overview": "A vengeful spirit has taken the form of the Tooth Fairy to exact vengeance on the town that lynched her 150 years earlier. Her only opposition is the only child, now grown up, who has survived her before", "text_for_embedding": "Darkness Falls (2003). Genres: Thriller, Horror. A vengeful spirit has taken the form of the Tooth Fairy to exact vengeance on the town that lynched her 150 years earlier. Her only opposition is the only child, now grown up, who has survived her before. Tags: witch, loss of mother, small town, death penalty, lighthouse, cowardliness, spirit, witch hunt"} +{"id": "253", "title": "Live and Let Die", "year": 1973, "duration_min": 121, "rating": 6.4, "genres": "Adventure, Action, Thriller", "genres_pipe": "|Adventure|Action|Thriller|", "keywords": "london england, new york, bomb, england, spy, sheriff, dual identity, secret identity, drug traffic, tarot cards, heroin, crocodile, jamaica, secret mission, secret intelligence service", "tags_pipe": "|london england|new york|bomb|england|spy|sheriff|dual identity|secret identity|drug traffic|tarot cards|heroin|crocodile|jamaica|secret mission|secret intelligence service|", "overview": "James Bond must investigate a mysterious murder case of a British agent in New Orleans. Soon he finds himself up against a gangster boss named Mr. Big.", "text_for_embedding": "Live and Let Die (1973). Genres: Adventure, Action, Thriller. James Bond must investigate a mysterious murder case of a British agent in New Orleans. Soon he finds himself up against a gangster boss named Mr. Big.. Tags: london england, new york, bomb, england, spy, sheriff, dual identity, secret identity, drug traffic, tarot cards, heroin, crocodile, jamaica, secret mission, secret intelligence service"} +{"id": "17908", "title": "My Dog Skip", "year": 2000, "duration_min": 95, "rating": 6.5, "genres": "Comedy, Drama, Family", "genres_pipe": "|Comedy|Drama|Family|", "keywords": "mississippi, childhood memory, dog", "tags_pipe": "|mississippi|childhood memory|dog|", "overview": "A shy boy is unable to make friends in Yazoo City, Mississippi in 1942, until his parents give him a terrier puppy for his ninth birthday. The dog, which he names Skip, becomes well known and loved throughout the community and enriches the life of the boy, Willie, as he grows into manhood. Based on the best-selling Mississippi memoir by the late Willie Morris.", "text_for_embedding": "My Dog Skip (2000). Genres: Comedy, Drama, Family. A shy boy is unable to make friends in Yazoo City, Mississippi in 1942, until his parents give him a terrier puppy for his ninth birthday. The dog, which he names Skip, becomes well known and loved throughout the community and enriches the life of the boy, Willie, as he grows into manhood. Based on the best-selling Mississippi memoir by the late Willie Morris.. Tags: mississippi, childhood memory, dog"} +{"id": "8390", "title": "Definitely, Maybe", "year": 2008, "duration_min": 112, "rating": 6.7, "genres": "Comedy, Romance", "genres_pipe": "|Comedy|Romance|", "keywords": "lovesickness, love of one's life, narration, lovers, kiss, daughter, affection, relation, make a match, sex education, relationship, divorce, father daughter relationship, past relationship", "tags_pipe": "|lovesickness|love of one's life|narration|lovers|kiss|daughter|affection|relation|make a match|sex education|relationship|divorce|father daughter relationship|past relationship|", "overview": "When Will decides to tell his daughter the story of how he met her mother, he discovers that a second look at the past might also give him a second chance at the future.", "text_for_embedding": "Definitely, Maybe (2008). Genres: Comedy, Romance. When Will decides to tell his daughter the story of how he met her mother, he discovers that a second look at the past might also give him a second chance at the future.. Tags: lovesickness, love of one's life, narration, lovers, kiss, daughter, affection, relation, make a match, sex education, relationship, divorce, father daughter relationship, past relationship"} +{"id": "57119", "title": "Jumping the Broom", "year": 2011, "duration_min": 112, "rating": 6.0, "genres": "Comedy", "genres_pipe": "|Comedy|", "keywords": "african american, wedding, class differences, martha's vineyard", "tags_pipe": "|african american|wedding|class differences|martha's vineyard|", "overview": "Two very different families converge on Martha's Vineyard one weekend for a wedding.", "text_for_embedding": "Jumping the Broom (2011). Genres: Comedy. Two very different families converge on Martha's Vineyard one weekend for a wedding.. Tags: african american, wedding, class differences, martha's vineyard"} +{"id": "3291", "title": "Good Night, and Good Luck.", "year": 2005, "duration_min": 93, "rating": 6.8, "genres": "Drama, History", "genres_pipe": "|Drama|History|", "keywords": "telecaster, communist, political activism, tv show, politician, government, anti-communism", "tags_pipe": "|telecaster|communist|political activism|tv show|politician|government|anti-communism|", "overview": "The story of journalist, Edward R Murrow's stand against Senator McCarthy's anti-communist witch-hunts in the early 1950s.", "text_for_embedding": "Good Night, and Good Luck. (2005). Genres: Drama, History. The story of journalist, Edward R Murrow's stand against Senator McCarthy's anti-communist witch-hunts in the early 1950s.. Tags: telecaster, communist, political activism, tv show, politician, government, anti-communism"} +{"id": "398", "title": "Capote", "year": 2005, "duration_min": 114, "rating": 6.8, "genres": "Crime, Drama", "genres_pipe": "|Crime|Drama|", "keywords": "gay, self-fulfilling prophecy, based on novel, journalism, identity, dream, literature research, literature, dying and death, biography", "tags_pipe": "|gay|self-fulfilling prophecy|based on novel|journalism|identity|dream|literature research|literature|dying and death|biography|", "overview": "A biopic of the writer, Truman Capote and his assignment for The New Yorker to write the non-fiction book, 'In Cold Blood'.", "text_for_embedding": "Capote (2005). Genres: Crime, Drama. A biopic of the writer, Truman Capote and his assignment for The New Yorker to write the non-fiction book, 'In Cold Blood'.. Tags: gay, self-fulfilling prophecy, based on novel, journalism, identity, dream, literature research, literature, dying and death, biography"} +{"id": "8068", "title": "Desperado", "year": 1995, "duration_min": 104, "rating": 6.8, "genres": "Thriller, Action, Crime", "genres_pipe": "|Thriller|Action|Crime|", "keywords": "gunslinger, anti terror, ambush, mexico, showdown, guitar, nudity, hitman, bartender, revenge, tragic hero, shootout, mariachi, explosion, extreme violence", "tags_pipe": "|gunslinger|anti terror|ambush|mexico|showdown|guitar|nudity|hitman|bartender|revenge|tragic hero|shootout|mariachi|explosion|extreme violence|", "overview": "A gunslinger is embroiled in a war with a local drug runner.", "text_for_embedding": "Desperado (1995). Genres: Thriller, Action, Crime. A gunslinger is embroiled in a war with a local drug runner.. Tags: gunslinger, anti terror, ambush, mexico, showdown, guitar, nudity, hitman, bartender, revenge, tragic hero, shootout, mariachi, explosion, extreme violence"} +{"id": "10803", "title": "Logan's Run", "year": 1976, "duration_min": 119, "rating": 6.6, "genres": "Adventure, Action, Romance, Science Fiction", "genres_pipe": "|Adventure|Action|Romance|Science Fiction|", "keywords": "female nudity, killer robot, nudity, utopia, teleportation, post-apocalyptic, dystopia, plastic surgery, escape, fugitive, robot, domed city, dystopic future, totalitarianism, population control", "tags_pipe": "|female nudity|killer robot|nudity|utopia|teleportation|post-apocalyptic|dystopia|plastic surgery|escape|fugitive|robot|domed city|dystopic future|totalitarianism|population control|", "overview": "An idyllic sci-fi future has one major drawback: All citizens get a chance of being 'renewed' in a Civic Ceremony at their 30th birthday, unless they run and escape before their time comes.", "text_for_embedding": "Logan's Run (1976). Genres: Adventure, Action, Romance, Science Fiction. An idyllic sci-fi future has one major drawback: All citizens get a chance of being 'renewed' in a Civic Ceremony at their 30th birthday, unless they run and escape before their time comes.. Tags: female nudity, killer robot, nudity, utopia, teleportation, post-apocalyptic, dystopia, plastic surgery, escape, fugitive, robot, domed city, dystopic future, totalitarianism, population control"} +{"id": "682", "title": "The Man with the Golden Gun", "year": 1974, "duration_min": 125, "rating": 6.3, "genres": "Adventure, Action, Thriller", "genres_pipe": "|Adventure|Action|Thriller|", "keywords": "london england, england, martial arts, assassin, exotic island, gold, hitman, secret mission, villain, bangkok, thailand, floatplane, karate, hong kong, duel", "tags_pipe": "|london england|england|martial arts|assassin|exotic island|gold|hitman|secret mission|villain|bangkok|thailand|floatplane|karate|hong kong|duel|", "overview": "A golden bullet has 007 engraved on it as it smashes into the secret service headquarters. The bullet came from the professional killer Scaramanga who has yet to miss a target and James Bond begins a mission to try and stop him.", "text_for_embedding": "The Man with the Golden Gun (1974). Genres: Adventure, Action, Thriller. A golden bullet has 007 engraved on it as it smashes into the secret service headquarters. The bullet came from the professional killer Scaramanga who has yet to miss a target and James Bond begins a mission to try and stop him.. Tags: london england, england, martial arts, assassin, exotic island, gold, hitman, secret mission, villain, bangkok, thailand, floatplane, karate, hong kong, duel"} +{"id": "10117", "title": "Action Jackson", "year": 1988, "duration_min": 96, "rating": 4.9, "genres": "Action, Adventure, Comedy, Crime, Drama", "genres_pipe": "|Action|Adventure|Comedy|Crime|Drama|", "keywords": "showdown, suspicion of murder, boxer, suspension, organized crime, shootout, car chase, detroit, drug addict, one against many, megalomaniac, maverick cop, framed for murder, bar fight, exploding boat", "tags_pipe": "|showdown|suspicion of murder|boxer|suspension|organized crime|shootout|car chase|detroit|drug addict|one against many|megalomaniac|maverick cop|framed for murder|bar fight|exploding boat|", "overview": "Vengence drives a tough Detroit cop to stay on the trail of a power hungry auto magnate who's systematically eliminating his competition.", "text_for_embedding": "Action Jackson (1988). Genres: Action, Adventure, Comedy, Crime, Drama. Vengence drives a tough Detroit cop to stay on the trail of a power hungry auto magnate who's systematically eliminating his competition.. Tags: showdown, suspicion of murder, boxer, suspension, organized crime, shootout, car chase, detroit, drug addict, one against many, megalomaniac, maverick cop, framed for murder, bar fight, exploding boat"} +{"id": "9392", "title": "The Descent", "year": 2005, "duration_min": 99, "rating": 6.8, "genres": "Adventure, Horror", "genres_pipe": "|Adventure|Horror|", "keywords": "mutant, expedition, cave, darkness, rope, climbing, bestie, appalachia, friends, female protagonist, survival horror", "tags_pipe": "|mutant|expedition|cave|darkness|rope|climbing|bestie|appalachia|friends|female protagonist|survival horror|", "overview": "After a tragic accident, six friends reunite for a caving expedition. Their adventure soon goes horribly wrong when a collapse traps them deep underground and they find themselves pursued by bloodthirsty creatures. As their friendships deteriorate, they find themselves in a desperate struggle to survive the creatures and each other.", "text_for_embedding": "The Descent (2005). Genres: Adventure, Horror. After a tragic accident, six friends reunite for a caving expedition. Their adventure soon goes horribly wrong when a collapse traps them deep underground and they find themselves pursued by bloodthirsty creatures. As their friendships deteriorate, they find themselves in a desperate struggle to survive the creatures and each other.. Tags: mutant, expedition, cave, darkness, rope, climbing, bestie, appalachia, friends, female protagonist, survival horror"} +{"id": "24977", "title": "Michael Jordan to the Max", "year": 2000, "duration_min": 46, "rating": 7.5, "genres": "Documentary", "genres_pipe": "|Documentary|", "keywords": "sport", "tags_pipe": "|sport|", "overview": "This documentary showcases basketball player Michael Jordan's awe-inspiring moves, providing behind-the-scenes and on-the-court action, including footage of Jordan and the Chicago Bulls going head-to-head against the Utah Jazz in the 1997 NBA Finals. Phil Jackson and Bob Costas are interviewed (among others), and the awesome soundtrack includes songs by Earth, Wind and Fire, Fatboy Slim and Freddie King.", "text_for_embedding": "Michael Jordan to the Max (2000). Genres: Documentary. This documentary showcases basketball player Michael Jordan's awe-inspiring moves, providing behind-the-scenes and on-the-court action, including footage of Jordan and the Chicago Bulls going head-to-head against the Utah Jazz in the 1997 NBA Finals. Phil Jackson and Bob Costas are interviewed (among others), and the awesome soundtrack includes songs by Earth, Wind and Fire, Fatboy Slim and Freddie King.. Tags: sport"} +{"id": "79316", "title": "Devil's Due", "year": 2014, "duration_min": 89, "rating": 4.4, "genres": "Horror", "genres_pipe": "|Horror|", "keywords": "found footage", "tags_pipe": "|found footage|", "overview": "An unexpected pregnancy takes a terrifying turn for newlyweds Zach and Samantha McCall.", "text_for_embedding": "Devil's Due (2014). Genres: Horror. An unexpected pregnancy takes a terrifying turn for newlyweds Zach and Samantha McCall.. Tags: found footage"} +{"id": "2074", "title": "Flirting with Disaster", "year": 1996, "duration_min": 92, "rating": 6.3, "genres": "Comedy, Romance", "genres_pipe": "|Comedy|Romance|", "keywords": "lsd, looking for birth parents, half-brother, independent film", "tags_pipe": "|lsd|looking for birth parents|half-brother|independent film|", "overview": "Adopted as a child, new father Mel Colpin (Ben Stiller) decides he cannot name his son until he knows his birth parents, and determines to make a cross-country quest to find them. Accompanied by his wife, Nancy (Patricia Arquette), and an inept yet gorgeous adoption agent, Tina (Tea Leoni), he departs on an epic road trip that quickly devolves into a farce of mistaken identities, wrong turns, and overzealous and love-struck ATF agents (Josh Brolin, Richard Jenkins).", "text_for_embedding": "Flirting with Disaster (1996). Genres: Comedy, Romance. Adopted as a child, new father Mel Colpin (Ben Stiller) decides he cannot name his son until he knows his birth parents, and determines to make a cross-country quest to find them. Accompanied by his wife, Nancy (Patricia Arquette), and an inept yet gorgeous adoption agent, Tina (Tea Leoni), he departs on an epic road trip that quickly devolves into a farce of mistaken identities, wrong turns, and overzealous and love-struck ATF agents (Josh Brolin, Richard Jenkins).. Tags: lsd, looking for birth parents, half-brother, independent film"} +{"id": "1696", "title": "The Devil's Rejects", "year": 2005, "duration_min": 107, "rating": 6.6, "genres": "Drama, Horror, Crime", "genres_pipe": "|Drama|Horror|Crime|", "keywords": "sadistic, killing, fire, sheriff, bounty hunter, cocaine, motel, ax, sadism, psychopath, road trip, sequel, murder, rampage, antisocial personality disorder", "tags_pipe": "|sadistic|killing|fire|sheriff|bounty hunter|cocaine|motel|ax|sadism|psychopath|road trip|sequel|murder|rampage|antisocial personality disorder|", "overview": "The sequel to House of 1000 Corpses – the Firefly family are ambushed at their isolated home by Sheriff Wydell and a squad of armed men guns blazing – yet only Otis and his sister, Baby, manage to escape the barrage of bullets unharmed. Hiding out in a backwater motel, the wanted siblings wait to rendezvous with their errant father, Captain Spaulding, killing whoever happens to stand in their way.", "text_for_embedding": "The Devil's Rejects (2005). Genres: Drama, Horror, Crime. The sequel to House of 1000 Corpses – the Firefly family are ambushed at their isolated home by Sheriff Wydell and a squad of armed men guns blazing – yet only Otis and his sister, Baby, manage to escape the barrage of bullets unharmed. Hiding out in a backwater motel, the wanted siblings wait to rendezvous with their errant father, Captain Spaulding, killing whoever happens to stand in their way.. Tags: sadistic, killing, fire, sheriff, bounty hunter, cocaine, motel, ax, sadism, psychopath, road trip, sequel, murder, rampage, antisocial personality disorder"} +{"id": "308639", "title": "Dope", "year": 2015, "duration_min": 103, "rating": 7.2, "genres": "Crime, Drama, Comedy", "genres_pipe": "|Crime|Drama|Comedy|", "keywords": "california, hip-hop, harvard university, geek, coming of age, teenager, drug, high school student", "tags_pipe": "|california|hip-hop|harvard university|geek|coming of age|teenager|drug|high school student|", "overview": "Malcolm is carefully surviving life in a tough neighborhood in Los Angeles while juggling college applications, academic interviews, and the SAT. A chance invitation to an underground party leads him into an adventure that could allow him to go from being a geek, to being dope, to ultimately being himself.", "text_for_embedding": "Dope (2015). Genres: Crime, Drama, Comedy. Malcolm is carefully surviving life in a tough neighborhood in Los Angeles while juggling college applications, academic interviews, and the SAT. A chance invitation to an underground party leads him into an adventure that could allow him to go from being a geek, to being dope, to ultimately being himself.. Tags: california, hip-hop, harvard university, geek, coming of age, teenager, drug, high school student"} +{"id": "22314", "title": "In Too Deep", "year": 1999, "duration_min": 97, "rating": 6.2, "genres": "Drama, Action, Thriller, Crime", "genres_pipe": "|Drama|Action|Thriller|Crime|", "keywords": "", "tags_pipe": "", "overview": "A fearless cop is taking on a ruthless crimelord. He knew the risks. He just didn't know how far he would have to go.", "text_for_embedding": "In Too Deep (1999). Genres: Drama, Action, Thriller, Crime. A fearless cop is taking on a ruthless crimelord. He knew the risks. He just didn't know how far he would have to go.. Tags: "} +{"id": "2662", "title": "House of 1000 Corpses", "year": 2003, "duration_min": 89, "rating": 6.0, "genres": "Horror", "genres_pipe": "|Horror|", "keywords": "upper class, halloween, psychopath, urban legend, youth, satanic ritual", "tags_pipe": "|upper class|halloween|psychopath|urban legend|youth|satanic ritual|", "overview": "Two teenage couples traveling across the backwoods of Texas searching for urban legends of serial killers end up as prisoners of a bizarre and sadistic backwater family of serial killers.", "text_for_embedding": "House of 1000 Corpses (2003). Genres: Horror. Two teenage couples traveling across the backwoods of Texas searching for urban legends of serial killers end up as prisoners of a bizarre and sadistic backwater family of serial killers.. Tags: upper class, halloween, psychopath, urban legend, youth, satanic ritual"} +{"id": "77156", "title": "Alien Zone", "year": 1978, "duration_min": 90, "rating": 4.0, "genres": "Horror, Action, Thriller, Science Fiction", "genres_pipe": "|Horror|Action|Thriller|Science Fiction|", "keywords": "", "tags_pipe": "", "overview": "A man who is having an affair with a married woman is dropped off on the wrong street when going back to his hotel. He takes refuge out of the rain when an old man invites him in. He turns out to be a mortician, who tells him the stories of the people who have wound up in his establishment over the course of four stories.", "text_for_embedding": "Alien Zone (1978). Genres: Horror, Action, Thriller, Science Fiction. A man who is having an affair with a married woman is dropped off on the wrong street when going back to his hotel. He takes refuge out of the rain when an old man invites him in. He turns out to be a mortician, who tells him the stories of the people who have wound up in his establishment over the course of four stories.. Tags: "} +{"id": "12573", "title": "A Serious Man", "year": 2009, "duration_min": 105, "rating": 6.6, "genres": "Comedy, Drama", "genres_pipe": "|Comedy|Drama|", "keywords": "professor, dark comedy, telephone call, aftercreditsstinger, 1960s", "tags_pipe": "|professor|dark comedy|telephone call|aftercreditsstinger|1960s|", "overview": "A Serious Man is the story of an ordinary man's search for clarity in a universe where Jefferson Airplane is on the radio and F-Troop is on TV. It is 1967, and Larry Gopnik, a physics professor at a quiet Midwestern university, has just been informed by his wife Judith that she is leaving him. She has fallen in love with one of his more pompous acquaintances Sy Ableman.", "text_for_embedding": "A Serious Man (2009). Genres: Comedy, Drama. A Serious Man is the story of an ordinary man's search for clarity in a universe where Jefferson Airplane is on the radio and F-Troop is on TV. It is 1967, and Larry Gopnik, a physics professor at a quiet Midwestern university, has just been informed by his wife Judith that she is leaving him. She has fallen in love with one of his more pompous acquaintances Sy Ableman.. Tags: professor, dark comedy, telephone call, aftercreditsstinger, 1960s"} +{"id": "44718", "title": "Get Low", "year": 2010, "duration_min": 103, "rating": 6.5, "genres": "Comedy, Drama, Mystery", "genres_pipe": "|Comedy|Drama|Mystery|", "keywords": "independent film", "tags_pipe": "|independent film|", "overview": "A movie spun out of equal parts folk tale, fable and real-life legend about the mysterious, 1930s Tennessee hermit who famously threw his own rollicking funeral party... while he was still alive.", "text_for_embedding": "Get Low (2010). Genres: Comedy, Drama, Mystery. A movie spun out of equal parts folk tale, fable and real-life legend about the mysterious, 1930s Tennessee hermit who famously threw his own rollicking funeral party... while he was still alive.. Tags: independent film"} +{"id": "11342", "title": "Warlock", "year": 1989, "duration_min": 103, "rating": 5.8, "genres": "Adventure, Comedy, Fantasy, Horror", "genres_pipe": "|Adventure|Comedy|Fantasy|Horror|", "keywords": "witch, cemetery, magic, time travel, aging, curse, warlock, witch hunter", "tags_pipe": "|witch|cemetery|magic|time travel|aging|curse|warlock|witch hunter|", "overview": "A warlock flees from the 17th to the 20th century, with a witch-hunter in hot pursuit. A Warlock (Julian Sands) is taken captive in Boston, Massachusetts in 1691 by a witch-hunter Giles Redferne (Richard Grant). He is sentenced to death for his activities, including the bewitching of Redferne's bride-to-be, but before the execution a demon appears and propels the Warlock forward in time to 20th century Los Angeles, California. Redferne follows through the portal.\r The Warlock attempts to assemble The Grand Grimoire, a Satanic book that will reveal the \"true\" name of God. Redferne and the Warlock then embark on a cat-and-mouse chase with the Grand Grimoire, and Kassandra (Lori Singer), a waitress who encounters Giles while he's attempting to find Warlock.", "text_for_embedding": "Warlock (1989). Genres: Adventure, Comedy, Fantasy, Horror. A warlock flees from the 17th to the 20th century, with a witch-hunter in hot pursuit. A Warlock (Julian Sands) is taken captive in Boston, Massachusetts in 1691 by a witch-hunter Giles Redferne (Richard Grant). He is sentenced to death for his activities, including the bewitching of Redferne's bride-to-be, but before the execution a demon appears and propels the Warlock forward in time to 20th century Los Angeles, California. Redferne follows through the portal.\r The Warlock attempts to assemble The Grand Grimoire, a Satanic book that will reveal the \"true\" name of God. Redferne and the Warlock then embark on a cat-and-mouse chase with the Grand Grimoire, and Kassandra (Lori Singer), a waitress who encounters Giles while he's attempting to find Warlock.. Tags: witch, cemetery, magic, time travel, aging, curse, warlock, witch hunter"} +{"id": "241771", "title": "Beyond the Lights", "year": 2014, "duration_min": 116, "rating": 7.0, "genres": "Romance, Drama", "genres_pipe": "|Romance|Drama|", "keywords": "talent, success, musician, woman director", "tags_pipe": "|talent|success|musician|woman director|", "overview": "Noni Jean is a hot new rising star. But not all is what it seems, and the pressure causes Noni to nearly fall apart - until she meets Kaz Nicol, a promising young cop and aspiring politician who's been assigned to her detail. Can Kaz's love give Noni the courage to find her own voice and break free to become the artist she was meant to be?", "text_for_embedding": "Beyond the Lights (2014). Genres: Romance, Drama. Noni Jean is a hot new rising star. But not all is what it seems, and the pressure causes Noni to nearly fall apart - until she meets Kaz Nicol, a promising young cop and aspiring politician who's been assigned to her detail. Can Kaz's love give Noni the courage to find her own voice and break free to become the artist she was meant to be?. Tags: talent, success, musician, woman director"} +{"id": "34653", "title": "A Single Man", "year": 2009, "duration_min": 101, "rating": 7.3, "genres": "Drama, Romance", "genres_pipe": "|Drama|Romance|", "keywords": "gay, based on novel, suicidal, death of lover, teacher student relationship, grieving, 1960s", "tags_pipe": "|gay|based on novel|suicidal|death of lover|teacher student relationship|grieving|1960s|", "overview": "Adapted from a 1964 novel of the same name, the film follows a day in the life of George Falconer, a British college professor reeling with the recent and sudden loss of his longtime partner. This traumatic event makes George challenge his own will to live as he seeks the console of close friend Charley who is struggling with her own questions about life.", "text_for_embedding": "A Single Man (2009). Genres: Drama, Romance. Adapted from a 1964 novel of the same name, the film follows a day in the life of George Falconer, a British college professor reeling with the recent and sudden loss of his longtime partner. This traumatic event makes George challenge his own will to live as he seeks the console of close friend Charley who is struggling with her own questions about life.. Tags: gay, based on novel, suicidal, death of lover, teacher student relationship, grieving, 1960s"} +{"id": "11051", "title": "The Last Temptation of Christ", "year": 1988, "duration_min": 164, "rating": 7.0, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "christianity, traitor, jesus christ, roman, crucifixion, longing, moral conflict, cross, blasphemy, temptation, mary magdalene", "tags_pipe": "|christianity|traitor|jesus christ|roman|crucifixion|longing|moral conflict|cross|blasphemy|temptation|mary magdalene|", "overview": "Jesus, a humble Judean carpenter beginning to see that he is the son of God, is drawn into revolutionary action against the Roman occupiers by Judas -- despite his protestations that love, not violence, is the path to salvation. The burden of being the savior of mankind torments Jesus throughout his life, leading him to doubt. As he is put to death on the cross, Jesus is tempted by visions of an ordinary life married to Mary Magdalene.", "text_for_embedding": "The Last Temptation of Christ (1988). Genres: Drama. Jesus, a humble Judean carpenter beginning to see that he is the son of God, is drawn into revolutionary action against the Roman occupiers by Judas -- despite his protestations that love, not violence, is the path to salvation. The burden of being the savior of mankind torments Jesus throughout his life, leading him to doubt. As he is put to death on the cross, Jesus is tempted by visions of an ordinary life married to Mary Magdalene.. Tags: christianity, traitor, jesus christ, roman, crucifixion, longing, moral conflict, cross, blasphemy, temptation, mary magdalene"} +{"id": "14578", "title": "Outside Providence", "year": 1999, "duration_min": 96, "rating": 5.6, "genres": "Romance, Comedy, Drama", "genres_pipe": "|Romance|Comedy|Drama|", "keywords": "suicide, sex, sexuality, college, police, campus, party, love, revenge, prank, independent film, student, teenager, drug, humiliation", "tags_pipe": "|suicide|sex|sexuality|college|police|campus|party|love|revenge|prank|independent film|student|teenager|drug|humiliation|", "overview": "In this coming-of-age comedy, Tim Dunphy is leading a go-nowhere existence, spending his days smoking pot and hanging out with his best friend, Drugs Delaney. But Tim's lazy days of getting high are jettisoned after a brush with the law convinces his blue-collar dad to send him to a Connecticut prep school. The one saving grace of the new school is Jane, a fellow student Tim falls for immediately.", "text_for_embedding": "Outside Providence (1999). Genres: Romance, Comedy, Drama. In this coming-of-age comedy, Tim Dunphy is leading a go-nowhere existence, spending his days smoking pot and hanging out with his best friend, Drugs Delaney. But Tim's lazy days of getting high are jettisoned after a brush with the law convinces his blue-collar dad to send him to a Connecticut prep school. The one saving grace of the new school is Jane, a fellow student Tim falls for immediately.. Tags: suicide, sex, sexuality, college, police, campus, party, love, revenge, prank, independent film, student, teenager, drug, humiliation"} +{"id": "57825", "title": "Bride & Prejudice", "year": 2004, "duration_min": 111, "rating": 6.5, "genres": "Drama, Comedy, Music, Romance", "genres_pipe": "|Drama|Comedy|Music|Romance|", "keywords": "indian lead, bollywood, modern day adaptation, pride & prejudice, woman director", "tags_pipe": "|indian lead|bollywood|modern day adaptation|pride & prejudice|woman director|", "overview": "A Bollywood update of Jane Austen's classic tale, in which Mrs. Bakshi is eager to find suitable husbands for her four unmarried daughters. When the rich single gentlemen Balraj and Darcy come to visit, the Bakshis have high hopes, though circumstance and boorish opinions threaten to get in the way of romance.", "text_for_embedding": "Bride & Prejudice (2004). Genres: Drama, Comedy, Music, Romance. A Bollywood update of Jane Austen's classic tale, in which Mrs. Bakshi is eager to find suitable husbands for her four unmarried daughters. When the rich single gentlemen Balraj and Darcy come to visit, the Bakshis have high hopes, though circumstance and boorish opinions threaten to get in the way of romance.. Tags: indian lead, bollywood, modern day adaptation, pride & prejudice, woman director"} +{"id": "9555", "title": "Rabbit-Proof Fence", "year": 2002, "duration_min": 94, "rating": 6.8, "genres": "Adventure, Drama, Action, History", "genres_pipe": "|Adventure|Drama|Action|History|", "keywords": "child abuse, sister sister relationship, prosecution, australia, approved school , based on true story, independent film, tracker, survival, outback, colonialism, australian aborigine, australian outback, aboriginal, aborigine", "tags_pipe": "|child abuse|sister sister relationship|prosecution|australia|approved school |based on true story|independent film|tracker|survival|outback|colonialism|australian aborigine|australian outback|aboriginal|aborigine|", "overview": "In 1931, three aboriginal girls escape after being plucked from their homes to be trained as domestic staff and set off on a trek across the Outback.", "text_for_embedding": "Rabbit-Proof Fence (2002). Genres: Adventure, Drama, Action, History. In 1931, three aboriginal girls escape after being plucked from their homes to be trained as domestic staff and set off on a trek across the Outback.. Tags: child abuse, sister sister relationship, prosecution, australia, approved school , based on true story, independent film, tracker, survival, outback, colonialism, australian aborigine, australian outback, aboriginal, aborigine"} +{"id": "15581", "title": "Who's Your Caddy?", "year": 2007, "duration_min": 93, "rating": 3.8, "genres": "Comedy", "genres_pipe": "|Comedy|", "keywords": "sport", "tags_pipe": "|sport|", "overview": "When \"street smart\" rapper Christopher \"C-Note\" Hawkins (Big Boi) applies for a membership to all-white Carolina Pines Country Club, the establishment's proprietors are hardly ready to oblige him.", "text_for_embedding": "Who's Your Caddy? (2007). Genres: Comedy. When \"street smart\" rapper Christopher \"C-Note\" Hawkins (Big Boi) applies for a membership to all-white Carolina Pines Country Club, the establishment's proprietors are hardly ready to oblige him.. Tags: sport"} +{"id": "13006", "title": "Split Second", "year": 1992, "duration_min": 90, "rating": 5.7, "genres": "Thriller, Action, Horror, Science Fiction, Crime", "genres_pipe": "|Thriller|Action|Horror|Science Fiction|Crime|", "keywords": "flooding, futuristic, police detective", "tags_pipe": "|flooding|futuristic|police detective|", "overview": "In a futuristic London, the rising sea levels mean that large areas are under feet of water. Hauer plays a cop who previously lost his partner to some strange creature. Now the creature is back and its after him.", "text_for_embedding": "Split Second (1992). Genres: Thriller, Action, Horror, Science Fiction, Crime. In a futuristic London, the rising sea levels mean that large areas are under feet of water. Hauer plays a cop who previously lost his partner to some strange creature. Now the creature is back and its after him.. Tags: flooding, futuristic, police detective"} +{"id": "16651", "title": "The Other Side of Heaven", "year": 2001, "duration_min": 113, "rating": 6.7, "genres": "Action, Adventure, Drama, Family", "genres_pipe": "|Action|Adventure|Drama|Family|", "keywords": "based on novel, biography", "tags_pipe": "|based on novel|biography|", "overview": "John H. Groberg, a middle class kid from Idaho Falls, crosses the Pacific to become a Mormon missionary in the remote and exotic Tongan island kingdom during the 1950's. He leaves behind a loving family and the true love of his life, Jean. Through letters and musings across the miles, John shares his humbling and sometimes hilarious adventures with \"the girl back home\", and her letters buoy up his spirits in difficult times. John must struggle to overcome language barriers, physical hardship and deep-rooted suspicion to earn the trust and love of the Tongan people he has come to serve. Throughout his adventure-filled three years on the islands, he discovers friends and wisdom in the most unlikely places. John H. Groberg's Tongan odyssey will change his life forever.", "text_for_embedding": "The Other Side of Heaven (2001). Genres: Action, Adventure, Drama, Family. John H. Groberg, a middle class kid from Idaho Falls, crosses the Pacific to become a Mormon missionary in the remote and exotic Tongan island kingdom during the 1950's. He leaves behind a loving family and the true love of his life, Jean. Through letters and musings across the miles, John shares his humbling and sometimes hilarious adventures with \"the girl back home\", and her letters buoy up his spirits in difficult times. John must struggle to overcome language barriers, physical hardship and deep-rooted suspicion to earn the trust and love of the Tongan people he has come to serve. Throughout his adventure-filled three years on the islands, he discovers friends and wisdom in the most unlikely places. John H. Groberg's Tongan odyssey will change his life forever.. Tags: based on novel, biography"} +{"id": "4251", "title": "Veer-Zaara", "year": 2004, "duration_min": 192, "rating": 7.4, "genres": "Drama, Romance", "genres_pipe": "|Drama|Romance|", "keywords": "love of one's life, pilot, class society, pakistan, india, kashmir conflict", "tags_pipe": "|love of one's life|pilot|class society|pakistan|india|kashmir conflict|", "overview": "The story of the love between Veer Pratap Singh, an Indian, and Zaara Hayaat Khan, a Pakistani...a love so great it knows no boundaries...", "text_for_embedding": "Veer-Zaara (2004). Genres: Drama, Romance. The story of the love between Veer Pratap Singh, an Indian, and Zaara Hayaat Khan, a Pakistani...a love so great it knows no boundaries.... Tags: love of one's life, pilot, class society, pakistan, india, kashmir conflict"} +{"id": "12400", "title": "Redbelt", "year": 2008, "duration_min": 99, "rating": 6.4, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "film making, film producer, video surveillance, sport, interracial marriage, auto accident, instructor, jujitsu, movie star, nightstick, husband, life relationship, set up, window smashing", "tags_pipe": "|film making|film producer|video surveillance|sport|interracial marriage|auto accident|instructor|jujitsu|movie star|nightstick|husband|life relationship|set up|window smashing|", "overview": "Is there room for principle in Los Angeles? Mike Terry teaches jujitsu and barely makes ends meet. His Brazilian wife, whose family promotes fights, wants to see Mike in the ring making money, but to him competition is degrading. A woman sideswipes Mike's car and then, after an odd sequence of events, shoots out the studio's window. Later that evening, Mike rescues an action movie star in a fistfight at a bar. In return, the actor befriends Mike, gives him a gift, offers him work on his newest film, and introduces Mike's wife to his own - the women initiate business dealings. Then, things go sour all at once, Mike's debts mount, and going into the ring may be his only option.", "text_for_embedding": "Redbelt (2008). Genres: Drama. Is there room for principle in Los Angeles? Mike Terry teaches jujitsu and barely makes ends meet. His Brazilian wife, whose family promotes fights, wants to see Mike in the ring making money, but to him competition is degrading. A woman sideswipes Mike's car and then, after an odd sequence of events, shoots out the studio's window. Later that evening, Mike rescues an action movie star in a fistfight at a bar. In return, the actor befriends Mike, gives him a gift, offers him work on his newest film, and introduces Mike's wife to his own - the women initiate business dealings. Then, things go sour all at once, Mike's debts mount, and going into the ring may be his only option.. Tags: film making, film producer, video surveillance, sport, interracial marriage, auto accident, instructor, jujitsu, movie star, nightstick, husband, life relationship, set up, window smashing"} +{"id": "39053", "title": "Cyrus", "year": 2010, "duration_min": 91, "rating": 6.1, "genres": "Comedy, Drama, Romance", "genres_pipe": "|Comedy|Drama|Romance|", "keywords": "mumblecore", "tags_pipe": "|mumblecore|", "overview": "With John's social life at a standstill and his ex-wife about to get remarried, a down on his luck divorcée finally meets the woman of his dreams, only to discover she has another man in her life - her son. Before long, the two are locked in a battle of wits for the woman they both love-and it appears only one man can be left standing when it's over.", "text_for_embedding": "Cyrus (2010). Genres: Comedy, Drama, Romance. With John's social life at a standstill and his ex-wife about to get remarried, a down on his luck divorcée finally meets the woman of his dreams, only to discover she has another man in her life - her son. Before long, the two are locked in a battle of wits for the woman they both love-and it appears only one man can be left standing when it's over.. Tags: mumblecore"} +{"id": "104896", "title": "A Dog Of Flanders", "year": 1999, "duration_min": 96, "rating": 6.4, "genres": "Drama, Family", "genres_pipe": "|Drama|Family|", "keywords": "", "tags_pipe": "", "overview": "Poor but happy, young Nello and his grandfather live alone, delivering milk as a livelihood, in the outskirts of Antwerp, a city in Flanders (the Flemish or Dutch-speaking part of modern-day Belgium). They discover a beaten dog (a Bouvier, a large sturdy dog native to Flanders) and adopt it and nurse it back to health, naming it Patrasche, the middle name of Nello's mother Mary, who died when Nello was very young. Nello's mother was a talented artist, and like his mother, he delights in drawing, and his friend Aloise is his model and greatest fan and supporter.", "text_for_embedding": "A Dog Of Flanders (1999). Genres: Drama, Family. Poor but happy, young Nello and his grandfather live alone, delivering milk as a livelihood, in the outskirts of Antwerp, a city in Flanders (the Flemish or Dutch-speaking part of modern-day Belgium). They discover a beaten dog (a Bouvier, a large sturdy dog native to Flanders) and adopt it and nurse it back to health, naming it Patrasche, the middle name of Nello's mother Mary, who died when Nello was very young. Nello's mother was a talented artist, and like his mother, he delights in drawing, and his friend Aloise is his model and greatest fan and supporter.. Tags: "} +{"id": "14112", "title": "Auto Focus", "year": 2002, "duration_min": 104, "rating": 6.1, "genres": "Drama, Crime", "genres_pipe": "|Drama|Crime|", "keywords": "male nudity, adultery, based on novel, infidelity, tv show, blow job, video, biography, sex addiction, based on true story, independent film, sex addict", "tags_pipe": "|male nudity|adultery|based on novel|infidelity|tv show|blow job|video|biography|sex addiction|based on true story|independent film|sex addict|", "overview": "A successful TV star during the 1960s, former \"Hogan's Heroes\" actor Bob Crane projects a wholesome family-man image, but this front masks his persona as a sex addict who records and photographs his many encounters with women, often with the help of his seedy friend, John Henry Carpenter. This biographical drama reveals how Crane's double life takes its toll on him and his family, and ultimately contributes to his death", "text_for_embedding": "Auto Focus (2002). Genres: Drama, Crime. A successful TV star during the 1960s, former \"Hogan's Heroes\" actor Bob Crane projects a wholesome family-man image, but this front masks his persona as a sex addict who records and photographs his many encounters with women, often with the help of his seedy friend, John Henry Carpenter. This biographical drama reveals how Crane's double life takes its toll on him and his family, and ultimately contributes to his death. Tags: male nudity, adultery, based on novel, infidelity, tv show, blow job, video, biography, sex addiction, based on true story, independent film, sex addict"} +{"id": "12271", "title": "Factory Girl", "year": 2006, "duration_min": 90, "rating": 6.2, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "new york, alcohol, sex, infidelity, nudity, artist, gallery, interview, studio, biography, addiction, party, love, independent film, singer", "tags_pipe": "|new york|alcohol|sex|infidelity|nudity|artist|gallery|interview|studio|biography|addiction|party|love|independent film|singer|", "overview": "In the mid-1960s, wealthy debutant Edie Sedgwick meets artist Andy Warhol. She joins Warhol's famous Factory and becomes his muse. Although she seems to have it all, Edie cannot have the love she craves from Andy, and she has an affair with a charismatic musician, who pushes her to seek independence from the artist and the milieu.", "text_for_embedding": "Factory Girl (2006). Genres: Drama. In the mid-1960s, wealthy debutant Edie Sedgwick meets artist Andy Warhol. She joins Warhol's famous Factory and becomes his muse. Although she seems to have it all, Edie cannot have the love she craves from Andy, and she has an affair with a charismatic musician, who pushes her to seek independence from the artist and the milieu.. Tags: new york, alcohol, sex, infidelity, nudity, artist, gallery, interview, studio, biography, addiction, party, love, independent film, singer"} +{"id": "71859", "title": "We Need to Talk About Kevin", "year": 2011, "duration_min": 112, "rating": 7.4, "genres": "Drama, Thriller", "genres_pipe": "|Drama|Thriller|", "keywords": "suburb, violence, killing spree, prison visit, guinea pig, broken arm, potty training, woman director", "tags_pipe": "|suburb|violence|killing spree|prison visit|guinea pig|broken arm|potty training|woman director|", "overview": "The mother of a teenage sociopath who went on a high-school killing spree recalls her son's deranged behavior during childhood, as she deals with her grief.", "text_for_embedding": "We Need to Talk About Kevin (2011). Genres: Drama, Thriller. The mother of a teenage sociopath who went on a high-school killing spree recalls her son's deranged behavior during childhood, as she deals with her grief.. Tags: suburb, violence, killing spree, prison visit, guinea pig, broken arm, potty training, woman director"} +{"id": "226354", "title": "The Christmas Candle", "year": 2013, "duration_min": 100, "rating": 5.8, "genres": "Drama, Family", "genres_pipe": "|Drama|Family|", "keywords": "angel, miracle, village, christian, candle, christmas", "tags_pipe": "|angel|miracle|village|christian|candle|christmas|", "overview": "Deep in the heart of the English countryside lies the enchanting village of Gladbury. Legend has it every 25 years an angel visits the village candlemaker and touches a single candle. Whoever lights this candle receives a miracle on Christmas Eve. But in 1890, at the dawn of the electric age, this centuries old legend may come to an end.", "text_for_embedding": "The Christmas Candle (2013). Genres: Drama, Family. Deep in the heart of the English countryside lies the enchanting village of Gladbury. Legend has it every 25 years an angel visits the village candlemaker and touches a single candle. Whoever lights this candle receives a miracle on Christmas Eve. But in 1890, at the dawn of the electric age, this centuries old legend may come to an end.. Tags: angel, miracle, village, christian, candle, christmas"} +{"id": "48620", "title": "The Mighty Macs", "year": 2009, "duration_min": 102, "rating": 5.0, "genres": "Action, Drama", "genres_pipe": "|Action|Drama|", "keywords": "sport, catholic, mother superior, catholic school, convent school", "tags_pipe": "|sport|catholic|mother superior|catholic school|convent school|", "overview": "In the early 70s, Cathy Rush becomes the head basketball coach at a tiny, all-girls Catholic college. Though her team has no gym and no uniforms -- and the school itself is in danger of being sold -- Coach Rush looks to steer her girls to their first national championship.", "text_for_embedding": "The Mighty Macs (2009). Genres: Action, Drama. In the early 70s, Cathy Rush becomes the head basketball coach at a tiny, all-girls Catholic college. Though her team has no gym and no uniforms -- and the school itself is in danger of being sold -- Coach Rush looks to steer her girls to their first national championship.. Tags: sport, catholic, mother superior, catholic school, convent school"} +{"id": "33676", "title": "Losin' It", "year": 1983, "duration_min": 100, "rating": 4.5, "genres": "Comedy", "genres_pipe": "|Comedy|", "keywords": "male nudity, female nudity, mexico, prostitute, nudity, high school, locker room, independent film, teen sex comedy, teenager, canuxploitation, virginity", "tags_pipe": "|male nudity|female nudity|mexico|prostitute|nudity|high school|locker room|independent film|teen sex comedy|teenager|canuxploitation|virginity|", "overview": "Set in 1965, four Los Angeles school friends -- Woody, Dave, Spider and Wendell -- go on a series of misadventures when they head to Tijuana, Mexico, for a night of cruisin', causing trouble, and to lose their virginity.", "text_for_embedding": "Losin' It (1983). Genres: Comedy. Set in 1965, four Los Angeles school friends -- Woody, Dave, Spider and Wendell -- go on a series of misadventures when they head to Tijuana, Mexico, for a night of cruisin', causing trouble, and to lose their virginity.. Tags: male nudity, female nudity, mexico, prostitute, nudity, high school, locker room, independent film, teen sex comedy, teenager, canuxploitation, virginity"} +{"id": "37080", "title": "Mother and Child", "year": 2009, "duration_min": 125, "rating": 6.7, "genres": "Drama, Romance", "genres_pipe": "|Drama|Romance|", "keywords": "adoptive mother, nymphomaniac, mother daughter relationship", "tags_pipe": "|adoptive mother|nymphomaniac|mother daughter relationship|", "overview": "The lives of three women have a commonality: adoption. Karen is a physical therapist who regrets that, as a teenager, she gave up her daughter for adoption. Elizabeth was an adopted child and is now a successful lawyer, but her personal life lacks warmth. Lucy and her husband have failed to conceive and now hope to adopt a baby to make their family complete.", "text_for_embedding": "Mother and Child (2009). Genres: Drama, Romance. The lives of three women have a commonality: adoption. Karen is a physical therapist who regrets that, as a teenager, she gave up her daughter for adoption. Elizabeth was an adopted child and is now a successful lawyer, but her personal life lacks warmth. Lucy and her husband have failed to conceive and now hope to adopt a baby to make their family complete.. Tags: adoptive mother, nymphomaniac, mother daughter relationship"} +{"id": "25388", "title": "March or Die", "year": 1977, "duration_min": 107, "rating": 6.2, "genres": "Action, Adventure, Drama, War", "genres_pipe": "|Action|Adventure|Drama|War|", "keywords": "gypsy, middle east, foreign legion, wilderness, archaeologist", "tags_pipe": "|gypsy|middle east|foreign legion|wilderness|archaeologist|", "overview": "The French Foreign Legion, in the early 20s, is tasked to protect a group of Archaeologists in the middle east. After scenes depicting the hardship of day-to-day Foreign Legion life, and the ragtag collection of people who join, the local Arabs take offence at the Archaeologists and declare Jihad. A large battle takes place, with the inevitable last stand.", "text_for_embedding": "March or Die (1977). Genres: Action, Adventure, Drama, War. The French Foreign Legion, in the early 20s, is tasked to protect a group of Archaeologists in the middle east. After scenes depicting the hardship of day-to-day Foreign Legion life, and the ragtag collection of people who join, the local Arabs take offence at the Archaeologists and declare Jihad. A large battle takes place, with the inevitable last stand.. Tags: gypsy, middle east, foreign legion, wilderness, archaeologist"} +{"id": "11687", "title": "The Visitors", "year": 1993, "duration_min": 107, "rating": 7.1, "genres": "Fantasy, Comedy, Science Fiction", "genres_pipe": "|Fantasy|Comedy|Science Fiction|", "keywords": "servant, time travel, clumsy fellow, middle ages, nobility", "tags_pipe": "|servant|time travel|clumsy fellow|middle ages|nobility|", "overview": "This outrageous time-travel comedy follows the misadventures of a wacky medieval knight (Jean Reno) and his faithful servant when they are accidentally transported to contemporary times by a senile sorcererMayhem rules as these 12th-century visitors try adapting to the wildly confusing modern world. To avoid being stuck here for good, however, they soon begin an all-out cosmic assault on their former castle -- now a luxury hotel -- in their quest to return to the past", "text_for_embedding": "The Visitors (1993). Genres: Fantasy, Comedy, Science Fiction. This outrageous time-travel comedy follows the misadventures of a wacky medieval knight (Jean Reno) and his faithful servant when they are accidentally transported to contemporary times by a senile sorcererMayhem rules as these 12th-century visitors try adapting to the wildly confusing modern world. To avoid being stuck here for good, however, they soon begin an all-out cosmic assault on their former castle -- now a luxury hotel -- in their quest to return to the past. Tags: servant, time travel, clumsy fellow, middle ages, nobility"} +{"id": "39210", "title": "Somewhere", "year": 2010, "duration_min": 98, "rating": 6.0, "genres": "Comedy, Drama", "genres_pipe": "|Comedy|Drama|", "keywords": "milan, independent film, luxury hotel, man in towel , woman director", "tags_pipe": "|milan|independent film|luxury hotel|man in towel |woman director|", "overview": "A hard-living Hollywood actor re-examines his life after his 11-year-old daughter surprises him with a visit.", "text_for_embedding": "Somewhere (2010). Genres: Comedy, Drama. A hard-living Hollywood actor re-examines his life after his 11-year-old daughter surprises him with a visit.. Tags: milan, independent film, luxury hotel, man in towel , woman director"} +{"id": "30128", "title": "I Hope They Serve Beer in Hell", "year": 2009, "duration_min": 106, "rating": 5.7, "genres": "Comedy, Drama", "genres_pipe": "|Comedy|Drama|", "keywords": "female nudity, based on novel, stripper, flop, dark comedy, aftercreditsstinger", "tags_pipe": "|female nudity|based on novel|stripper|flop|dark comedy|aftercreditsstinger|", "overview": "Tucker decides to take an impromptu trip to celebrate his friend's bachelor party. He drags his friend into a lie with his fiancée, gets him into trouble and then abandons him in order to pursue a hilarious carnal interest. Tucker is disinvited to the wedding, and in order to get back in, Tucker has to find a way to balance his narcissism with the demands of friendship.", "text_for_embedding": "I Hope They Serve Beer in Hell (2009). Genres: Comedy, Drama. Tucker decides to take an impromptu trip to celebrate his friend's bachelor party. He drags his friend into a lie with his fiancée, gets him into trouble and then abandons him in order to pursue a hilarious carnal interest. Tucker is disinvited to the wedding, and in order to get back in, Tucker has to find a way to balance his narcissism with the demands of friendship.. Tags: female nudity, based on novel, stripper, flop, dark comedy, aftercreditsstinger"} +{"id": "31535", "title": "Chairman of the Board", "year": 1998, "duration_min": 95, "rating": 2.7, "genres": "Comedy", "genres_pipe": "|Comedy|", "keywords": "inventor, invention, scandal", "tags_pipe": "|inventor|invention|scandal|", "overview": "A surfer becomes the head of a major company.", "text_for_embedding": "Chairman of the Board (1998). Genres: Comedy. A surfer becomes the head of a major company.. Tags: inventor, invention, scandal"} +{"id": "44835", "title": "Hesher", "year": 2010, "duration_min": 106, "rating": 6.7, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "loss of mother, clerk, grocery, loss of relative, loss of wife, briefs, duringcreditsstinger", "tags_pipe": "|loss of mother|clerk|grocery|loss of relative|loss of wife|briefs|duringcreditsstinger|", "overview": "A young boy has lost his mother and is losing touch with his father and the world around him. Then he meets Hesher who manages to make his life even more chaotic.", "text_for_embedding": "Hesher (2010). Genres: Drama. A young boy has lost his mother and is losing touch with his father and the world around him. Then he meets Hesher who manages to make his life even more chaotic.. Tags: loss of mother, clerk, grocery, loss of relative, loss of wife, briefs, duringcreditsstinger"} +{"id": "192134", "title": "Dom Hemingway", "year": 2013, "duration_min": 93, "rating": 5.8, "genres": "Comedy, Crime, Drama", "genres_pipe": "|Comedy|Crime|Drama|", "keywords": "growing up, money, crime, fatherhood", "tags_pipe": "|growing up|money|crime|fatherhood|", "overview": "After spending 12 years in prison for keeping his mouth shut, notorious safe-cracker Dom Hemingway is back on the streets of London looking to collect what he's owed.", "text_for_embedding": "Dom Hemingway (2013). Genres: Comedy, Crime, Drama. After spending 12 years in prison for keeping his mouth shut, notorious safe-cracker Dom Hemingway is back on the streets of London looking to collect what he's owed.. Tags: growing up, money, crime, fatherhood"} +{"id": "1956", "title": "Gerry", "year": 2002, "duration_min": 103, "rating": 6.2, "genres": "Mystery, Drama, Adventure", "genres_pipe": "|Mystery|Drama|Adventure|", "keywords": "desperation, highway, wilderness, getting lost, friendship, murder, best friend, desert, very little dialogue, tarkovskyesque, friend", "tags_pipe": "|desperation|highway|wilderness|getting lost|friendship|murder|best friend|desert|very little dialogue|tarkovskyesque|friend|", "overview": "Two friends named Gerry become lost in the desert after taking a wrong turn. Their attempts to find their way home only lead them into further trouble.", "text_for_embedding": "Gerry (2002). Genres: Mystery, Drama, Adventure. Two friends named Gerry become lost in the desert after taking a wrong turn. Their attempts to find their way home only lead them into further trouble.. Tags: desperation, highway, wilderness, getting lost, friendship, murder, best friend, desert, very little dialogue, tarkovskyesque, friend"} +{"id": "24985", "title": "The Heart of Me", "year": 2002, "duration_min": 96, "rating": 7.7, "genres": "Drama, Romance", "genres_pipe": "|Drama|Romance|", "keywords": "", "tags_pipe": "", "overview": "Drama set in 1930s London with two sisters, Madeleine married to Rickie, and Dinah, who falls in love with him. Rickie and Dinah begin an affair which is to have repercussions throughout all their lives.", "text_for_embedding": "The Heart of Me (2002). Genres: Drama, Romance. Drama set in 1930s London with two sisters, Madeleine married to Rickie, and Dinah, who falls in love with him. Rickie and Dinah begin an affair which is to have repercussions throughout all their lives.. Tags: "} +{"id": "306745", "title": "Freeheld", "year": 2015, "duration_min": 103, "rating": 7.1, "genres": "Romance, Drama", "genres_pipe": "|Romance|Drama|", "keywords": "new jersey, equality, lesbian relationship, cancer", "tags_pipe": "|new jersey|equality|lesbian relationship|cancer|", "overview": "New Jersey car mechanic Stacie Andree and her police detective girlfriend Laurel Hester both battle to secure Hester's pension benefits after she was diagnosed with a terminal illness.", "text_for_embedding": "Freeheld (2015). Genres: Romance, Drama. New Jersey car mechanic Stacie Andree and her police detective girlfriend Laurel Hester both battle to secure Hester's pension benefits after she was diagnosed with a terminal illness.. Tags: new jersey, equality, lesbian relationship, cancer"} +{"id": "47088", "title": "The Extra Man", "year": 2010, "duration_min": 108, "rating": 5.9, "genres": "Comedy", "genres_pipe": "|Comedy|", "keywords": "independent film, woman director", "tags_pipe": "|independent film|woman director|", "overview": "THE EXTRA MAN is a sophisticated and moving comedy from filmmakers Shari Springer Berman and Robert Pulcini. THE EXTRA MAN follows Louis Ives (Paul Dano), a lonely dreamer who fancies himself the hero of an F. Scott Fitzgerald novel. When a deeply embarrassing incident forces him to leave his job at an exclusive Princeton prep school, Louis heads to New York City to make a fresh start. He quickly finds a 9 to 5 job at an environmental magazine, where he encounters an entrancing, green-obsessed co-worker Mary (Katie Holmes).", "text_for_embedding": "The Extra Man (2010). Genres: Comedy. THE EXTRA MAN is a sophisticated and moving comedy from filmmakers Shari Springer Berman and Robert Pulcini. THE EXTRA MAN follows Louis Ives (Paul Dano), a lonely dreamer who fancies himself the hero of an F. Scott Fitzgerald novel. When a deeply embarrassing incident forces him to leave his job at an exclusive Princeton prep school, Louis heads to New York City to make a fresh start. He quickly finds a 9 to 5 job at an environmental magazine, where he encounters an entrancing, green-obsessed co-worker Mary (Katie Holmes).. Tags: independent film, woman director"} +{"id": "110402", "title": "Hard to Be a God", "year": 2013, "duration_min": 170, "rating": 6.7, "genres": "Drama, Science Fiction", "genres_pipe": "|Drama|Science Fiction|", "keywords": "", "tags_pipe": "", "overview": "A group of scientists is sent to the planet Arkanar to help the local civilization, which is in the Medieval phase of its own history, to find the right path to progress. Their task is a difficult one: they cannot interfere violently and in no case can they kill. The scientist Rumata tries to save the local intellectuals from their punishment and cannot avoid taking a position. As if the question were: what would you do in God's place? Director's statement Aleksei wanted to make this film his entire life. The road was a long one. This is not a film about cruelty, but about love. A love that was there, tangible, alive, and that resisted through the hardest of conditions.", "text_for_embedding": "Hard to Be a God (2013). Genres: Drama, Science Fiction. A group of scientists is sent to the planet Arkanar to help the local civilization, which is in the Medieval phase of its own history, to find the right path to progress. Their task is a difficult one: they cannot interfere violently and in no case can they kill. The scientist Rumata tries to save the local intellectuals from their punishment and cannot avoid taking a position. As if the question were: what would you do in God's place? Director's statement Aleksei wanted to make this film his entire life. The road was a long one. This is not a film about cruelty, but about love. A love that was there, tangible, alive, and that resisted through the hardest of conditions.. Tags: "} +{"id": "27004", "title": "Ca$h", "year": 2010, "duration_min": 108, "rating": 6.0, "genres": "Crime, Thriller, Comedy", "genres_pipe": "|Crime|Thriller|Comedy|", "keywords": "independent film, money", "tags_pipe": "|independent film|money|", "overview": "A stroke of good luck turns lethal for Sam Phelan and his wife Leslie when they are faced with a life-changing decision that brings strange and sinister Pyke Kubic to their doorstep. As Pyke leads Sam and Leslie on a tumultuous adventure through the streets of Chicago, each are pulled deeper and deeper into a desperate spiral of deception and violence – all in the name of money.", "text_for_embedding": "Ca$h (2010). Genres: Crime, Thriller, Comedy. A stroke of good luck turns lethal for Sam Phelan and his wife Leslie when they are faced with a life-changing decision that brings strange and sinister Pyke Kubic to their doorstep. As Pyke leads Sam and Leslie on a tumultuous adventure through the streets of Chicago, each are pulled deeper and deeper into a desperate spiral of deception and violence – all in the name of money.. Tags: independent film, money"} +{"id": "15013", "title": "Wah-Wah", "year": 2005, "duration_min": 120, "rating": 6.3, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "adultery, brain tumor, south africa, alcoholism, divorce", "tags_pipe": "|adultery|brain tumor|south africa|alcoholism|divorce|", "overview": "Set at the end of the 1960s, as Swaziland is about to receive independence from United Kingdom, the film follows the young Ralph Compton, at 12, through his parents' traumatic separation, till he's 14. The film is largely based on Richard E. Grant's own experiences as a teenager in Swaziland, where his father was head of education for the British government administration.", "text_for_embedding": "Wah-Wah (2005). Genres: Drama. Set at the end of the 1960s, as Swaziland is about to receive independence from United Kingdom, the film follows the young Ralph Compton, at 12, through his parents' traumatic separation, till he's 14. The film is largely based on Richard E. Grant's own experiences as a teenager in Swaziland, where his father was head of education for the British government administration.. Tags: adultery, brain tumor, south africa, alcoholism, divorce"} +{"id": "8374", "title": "The Boondock Saints", "year": 1999, "duration_min": 108, "rating": 7.2, "genres": "Action, Thriller, Crime", "genres_pipe": "|Action|Thriller|Crime|", "keywords": "arbitrary law, boston, twin brother, russian mafia, prologue, irish, police station, pager, duringcreditsstinger", "tags_pipe": "|arbitrary law|boston|twin brother|russian mafia|prologue|irish|police station|pager|duringcreditsstinger|", "overview": "With a God-inspired moral obligation to act against evil, twin brothers Conner and Murphy set out to rid Boston of criminals. However, rather than working within the system, these Irish Americans decide to take swift retribution into their own hands.", "text_for_embedding": "The Boondock Saints (1999). Genres: Action, Thriller, Crime. With a God-inspired moral obligation to act against evil, twin brothers Conner and Murphy set out to rid Boston of criminals. However, rather than working within the system, these Irish Americans decide to take swift retribution into their own hands.. Tags: arbitrary law, boston, twin brother, russian mafia, prologue, irish, police station, pager, duringcreditsstinger"} +{"id": "277519", "title": "Z Storm", "year": 2014, "duration_min": 92, "rating": 5.8, "genres": "Crime, Thriller", "genres_pipe": "|Crime|Thriller|", "keywords": "", "tags_pipe": "", "overview": "This is a story about the biggest financial fraud attempted in Hong Kong, directed at the Government of Hong Kong and involved all 7 million Hong Kong citizens... no one is free from the scheme. Within the four decades of guarding Hong Kong's financial integrity, the ICAC has never come across an opponent so huge and so well organized as in the Z Torrent file... shadowy figures from the underworld of South America, Italy and Europe all ready to plot against the estimated 150 million dollars of Hong Kong citizens' tax money which was pooled in a fund called the WELFARE FUND. High profile chartered accountants, high ranking law enforcers, power lawyers, the super entrepreneurs; they all have their shares of play but none can really grasp the big picture; they are there only for what they desire most.", "text_for_embedding": "Z Storm (2014). Genres: Crime, Thriller. This is a story about the biggest financial fraud attempted in Hong Kong, directed at the Government of Hong Kong and involved all 7 million Hong Kong citizens... no one is free from the scheme. Within the four decades of guarding Hong Kong's financial integrity, the ICAC has never come across an opponent so huge and so well organized as in the Z Torrent file... shadowy figures from the underworld of South America, Italy and Europe all ready to plot against the estimated 150 million dollars of Hong Kong citizens' tax money which was pooled in a fund called the WELFARE FUND. High profile chartered accountants, high ranking law enforcers, power lawyers, the super entrepreneurs; they all have their shares of play but none can really grasp the big picture; they are there only for what they desire most.. Tags: "} +{"id": "78381", "title": "Twixt", "year": 2011, "duration_min": 84, "rating": 5.0, "genres": "Horror, Thriller", "genres_pipe": "|Horror|Thriller|", "keywords": "sheriff, vampire, orphanage, writer, edgar allen poe, ghost, murder mystery", "tags_pipe": "|sheriff|vampire|orphanage|writer|edgar allen poe|ghost|murder mystery|", "overview": "A writer with a declining career arrives in a small town as part of his book tour and gets caught up in a murder mystery involving a young girl. That night in a dream, he is approached by a mysterious young ghost named V. He's unsure of her connection to the murder in the town, but is grateful for the story being handed to him. Ultimately he is led to the truth of the story, surprised to find that the ending has more to do with his own life than he could ever have anticipated.", "text_for_embedding": "Twixt (2011). Genres: Horror, Thriller. A writer with a declining career arrives in a small town as part of his book tour and gets caught up in a murder mystery involving a young girl. That night in a dream, he is approached by a mysterious young ghost named V. He's unsure of her connection to the murder in the town, but is grateful for the story being handed to him. Ultimately he is led to the truth of the story, surprised to find that the ending has more to do with his own life than he could ever have anticipated.. Tags: sheriff, vampire, orphanage, writer, edgar allen poe, ghost, murder mystery"} +{"id": "164372", "title": "The Snow Queen", "year": 2012, "duration_min": 76, "rating": 5.1, "genres": "Animation, Fantasy", "genres_pipe": "|Animation|Fantasy|", "keywords": "", "tags_pipe": "", "overview": "The ice-cold Snow Queen wishes to turn the world into a frozen landscape, with no light, no joy, no happiness, and no free will. A young man, Kai, is rumored to be the son of a man who is the queen's only remaining threat. He is abducted and held captive in the queen's palace, and it's up to his sister, Gerda, to rescue him. Gerda journeys across an icy land, facing difficult obstacles and meeting wonderful new friends that help her in her quest to set Kai free, defeat the Snow Queen, and save the world from eternal frost.", "text_for_embedding": "The Snow Queen (2012). Genres: Animation, Fantasy. The ice-cold Snow Queen wishes to turn the world into a frozen landscape, with no light, no joy, no happiness, and no free will. A young man, Kai, is rumored to be the son of a man who is the queen's only remaining threat. He is abducted and held captive in the queen's palace, and it's up to his sister, Gerda, to rescue him. Gerda journeys across an icy land, facing difficult obstacles and meeting wonderful new friends that help her in her quest to set Kai free, defeat the Snow Queen, and save the world from eternal frost.. Tags: "} +{"id": "294512", "title": "Alpha and Omega: The Legend of the Saw Tooth Cave", "year": 2014, "duration_min": 53, "rating": 6.5, "genres": "Family, Animation, Comedy, Adventure", "genres_pipe": "|Family|Animation|Comedy|Adventure|", "keywords": "", "tags_pipe": "", "overview": "The Alphas and Omegas share a thrilling adventure after Runt discovers the Saw Tooth Cave. Runt finds a wolf in need and lends a helping paw. Stars Ben Diskin & Kate Higgins. American computer-animated action-comedy/fantasy film exclusively from Walmart. It is the fourth film in the Alpha and Omega franchise and the sequel to Alpha and Omega, A Howl-iday Adventure, and The Great Wolf Games.", "text_for_embedding": "Alpha and Omega: The Legend of the Saw Tooth Cave (2014). Genres: Family, Animation, Comedy, Adventure. The Alphas and Omegas share a thrilling adventure after Runt discovers the Saw Tooth Cave. Runt finds a wolf in need and lends a helping paw. Stars Ben Diskin & Kate Higgins. American computer-animated action-comedy/fantasy film exclusively from Walmart. It is the fourth film in the Alpha and Omega franchise and the sequel to Alpha and Omega, A Howl-iday Adventure, and The Great Wolf Games.. Tags: "} +{"id": "8879", "title": "Pale Rider", "year": 1985, "duration_min": 115, "rating": 7.0, "genres": "Romance, Western", "genres_pipe": "|Romance|Western|", "keywords": "gunslinger, showdown, marshal, blackmail, mine, settler, gold mining town, violence, killer, preacher, gold miner, strange person", "tags_pipe": "|gunslinger|showdown|marshal|blackmail|mine|settler|gold mining town|violence|killer|preacher|gold miner|strange person|", "overview": "A small gold mining camp is terrorised by a ruthless land owner wanting to take their land. Clint Eastwood arrives riding a pale horse just as a young girl is praying to God to help the miners. He is revealed to be a preacher with mysterious and possible otherworldly origins who teams up with the miners to defeat the land owner and the corrupt sheriff.", "text_for_embedding": "Pale Rider (1985). Genres: Romance, Western. A small gold mining camp is terrorised by a ruthless land owner wanting to take their land. Clint Eastwood arrives riding a pale horse just as a young girl is praying to God to help the miners. He is revealed to be a preacher with mysterious and possible otherworldly origins who teams up with the miners to defeat the land owner and the corrupt sheriff.. Tags: gunslinger, showdown, marshal, blackmail, mine, settler, gold mining town, violence, killer, preacher, gold miner, strange person"} +{"id": "13001", "title": "Stargate: The Ark of Truth", "year": 2008, "duration_min": 97, "rating": 6.9, "genres": "Adventure, Science Fiction", "genres_pipe": "|Adventure|Science Fiction|", "keywords": "wormhole, space travel, supernatural powers, spaceship, alien", "tags_pipe": "|wormhole|space travel|supernatural powers|spaceship|alien|", "overview": "SG-1 searches for an ancient weapon which could help them defeat the Ori, and discover it may be in the Ori's own home galaxy. As the Ori prepare to send ships through to the Milky Way to attack Earth, SG-1 travels to the Ori galaxy aboard the Odyssey. The International Oversight committee have their own plans and SG-1 finds themselves in a distant galaxy fighting two powerful enemies.", "text_for_embedding": "Stargate: The Ark of Truth (2008). Genres: Adventure, Science Fiction. SG-1 searches for an ancient weapon which could help them defeat the Ori, and discover it may be in the Ori's own home galaxy. As the Ori prepare to send ships through to the Milky Way to attack Earth, SG-1 travels to the Ori galaxy aboard the Odyssey. The International Oversight committee have their own plans and SG-1 finds themselves in a distant galaxy fighting two powerful enemies.. Tags: wormhole, space travel, supernatural powers, spaceship, alien"} +{"id": "9571", "title": "Dazed and Confused", "year": 1993, "duration_min": 102, "rating": 7.4, "genres": "Comedy, Drama", "genres_pipe": "|Comedy|Drama|", "keywords": "1970s, texas, high school, comedy, coming of age, summer, teenager, period drama, great soundtrack", "tags_pipe": "|1970s|texas|high school|comedy|coming of age|summer|teenager|period drama|great soundtrack|", "overview": "The adventures of a group of Texas teens on their last day of school in 1976, centering on student Randall Floyd, who moves easily among stoners, jocks and geeks. Floyd is a star athlete, but he also likes smoking weed, which presents a conundrum when his football coach demands he sign a \"no drugs\" pledge.", "text_for_embedding": "Dazed and Confused (1993). Genres: Comedy, Drama. The adventures of a group of Texas teens on their last day of school in 1976, centering on student Randall Floyd, who moves easily among stoners, jocks and geeks. Floyd is a star athlete, but he also likes smoking weed, which presents a conundrum when his football coach demands he sign a \"no drugs\" pledge.. Tags: 1970s, texas, high school, comedy, coming of age, summer, teenager, period drama, great soundtrack"} +{"id": "13649", "title": "High School Musical 2", "year": 2007, "duration_min": 104, "rating": 6.1, "genres": "Comedy, Drama, Family, Music", "genres_pipe": "|Comedy|Drama|Family|Music|", "keywords": "musical, music, summer, teenager, summer job, country club", "tags_pipe": "|musical|music|summer|teenager|summer job|country club|", "overview": "The East High Wildcats are ready to have the time of their lives. Troy (Zac Efron) is thrilled when he’s offered a job in a country club, but it’s all part of Sharpay’s (Ashley Tisdale) plot to lure him away from Gabriella (Vanessa Hudgens). How will it all turn out? All questions are answered on the night of the club’s Talent Show.", "text_for_embedding": "High School Musical 2 (2007). Genres: Comedy, Drama, Family, Music. The East High Wildcats are ready to have the time of their lives. Troy (Zac Efron) is thrilled when he’s offered a job in a country club, but it’s all part of Sharpay’s (Ashley Tisdale) plot to lure him away from Gabriella (Vanessa Hudgens). How will it all turn out? All questions are answered on the night of the club’s Talent Show.. Tags: musical, music, summer, teenager, summer job, country club"} +{"id": "325373", "title": "Two Lovers and a Bear", "year": 2016, "duration_min": 96, "rating": 6.8, "genres": "Drama, Romance", "genres_pipe": "|Drama|Romance|", "keywords": "small town, lovers, bear, north pole", "tags_pipe": "|small town|lovers|bear|north pole|", "overview": "Set in a small town near the North Pole where roads lead to nowhere, the story follows Roman and Lucy, two burning souls who come together to make a leap for life and inner peace.", "text_for_embedding": "Two Lovers and a Bear (2016). Genres: Drama, Romance. Set in a small town near the North Pole where roads lead to nowhere, the story follows Roman and Lucy, two burning souls who come together to make a leap for life and inner peace.. Tags: small town, lovers, bear, north pole"} +{"id": "334527", "title": "Criminal Activities", "year": 2015, "duration_min": 94, "rating": 5.8, "genres": "Thriller, Crime, Drama", "genres_pipe": "|Thriller|Crime|Drama|", "keywords": "mobster, money problems, borrow, trouble, classmates, investment, bűnös utakon", "tags_pipe": "|mobster|money problems|borrow|trouble|classmates|investment|bűnös utakon|", "overview": "Four young men make a risky investment together that puts them in trouble with the mob.", "text_for_embedding": "Criminal Activities (2015). Genres: Thriller, Crime, Drama. Four young men make a risky investment together that puts them in trouble with the mob.. Tags: mobster, money problems, borrow, trouble, classmates, investment, bűnös utakon"} +{"id": "2211", "title": "Aimee & Jaguar", "year": 1999, "duration_min": 125, "rating": 6.3, "genres": "Drama, History, Romance", "genres_pipe": "|Drama|History|Romance|", "keywords": "berlin, jew, forbidden love, lesbian relationship, homosexuality, lesbian interest", "tags_pipe": "|berlin|jew|forbidden love|lesbian relationship|homosexuality|lesbian interest|", "overview": "Berlin 1943/44 (\"The Battle of Berlin\"). Felice, an intelligent and courageous Jewish woman who lives under a false name, belongs to an underground organization. Lilly, a devoted mother of four, though an occasional unfaithful wife, is desperate for love. An unusual and passionate love between them blossoms despite the danger of persecution and nightly bombing raids. The Gestapo is on Felice's trail. Her friends flee, she decides to sit out the war with Lilly. One hot day in August 1944, the Gestapo is waiting in Lilly's flat...", "text_for_embedding": "Aimee & Jaguar (1999). Genres: Drama, History, Romance. Berlin 1943/44 (\"The Battle of Berlin\"). Felice, an intelligent and courageous Jewish woman who lives under a false name, belongs to an underground organization. Lilly, a devoted mother of four, though an occasional unfaithful wife, is desperate for love. An unusual and passionate love between them blossoms despite the danger of persecution and nightly bombing raids. The Gestapo is on Felice's trail. Her friends flee, she decides to sit out the war with Lilly. One hot day in August 1944, the Gestapo is waiting in Lilly's flat.... Tags: berlin, jew, forbidden love, lesbian relationship, homosexuality, lesbian interest"} +{"id": "13919", "title": "The Chumscrubber", "year": 2005, "duration_min": 108, "rating": 6.7, "genres": "Comedy, Drama", "genres_pipe": "|Comedy|Drama|", "keywords": "suicide, father son relationship, surreal, independent film, parallel world", "tags_pipe": "|suicide|father son relationship|surreal|independent film|parallel world|", "overview": "The Chumscrubber is a dark comedy about the lives of people who live in upper-class suburbia. It all begins when Dean Stiffle finds the body of his friend, Troy. He doesn't bother telling any of the adults because he knows they won't care. Everyone in town is too self consumed to worry about anything else than themselves. And everybody is on some form of drug just to get through their days.", "text_for_embedding": "The Chumscrubber (2005). Genres: Comedy, Drama. The Chumscrubber is a dark comedy about the lives of people who live in upper-class suburbia. It all begins when Dean Stiffle finds the body of his friend, Troy. He doesn't bother telling any of the adults because he knows they won't care. Everyone in town is too self consumed to worry about anything else than themselves. And everybody is on some form of drug just to get through their days.. Tags: suicide, father son relationship, surreal, independent film, parallel world"} +{"id": "14576", "title": "Shade", "year": 2003, "duration_min": 101, "rating": 6.1, "genres": "Action, Thriller, Crime", "genres_pipe": "|Action|Thriller|Crime|", "keywords": "", "tags_pipe": "", "overview": "Tiffany, Charlie and Vernon are con artists looking to up the ante from their typical scams. They figure a good way of doing this is taking down Dean \"The Dean\" Stevens, a well-known cardsharp, in a rigged game. However, they first need enough money to enter a game with Stevens, so they decide to strike a deal with fellow crook Larry Jennings to scam a local gangster -- which turns out to be a bad idea.", "text_for_embedding": "Shade (2003). Genres: Action, Thriller, Crime. Tiffany, Charlie and Vernon are con artists looking to up the ante from their typical scams. They figure a good way of doing this is taking down Dean \"The Dean\" Stevens, a well-known cardsharp, in a rigged game. However, they first need enough money to enter a game with Stevens, so they decide to strike a deal with fellow crook Larry Jennings to scam a local gangster -- which turns out to be a bad idea.. Tags: "} +{"id": "82505", "title": "House at the End of the Street", "year": 2012, "duration_min": 101, "rating": 5.6, "genres": "Horror, Thriller", "genres_pipe": "|Horror|Thriller|", "keywords": "mother daughter relationship, cross dressing, violence, mother son relationship, father son conflict", "tags_pipe": "|mother daughter relationship|cross dressing|violence|mother son relationship|father son conflict|", "overview": "A mother and daughter move to a new town and find themselves living next door to a house where a young girl murdered her parents. When the daughter befriends the surviving son, she learns the story is far from over.", "text_for_embedding": "House at the End of the Street (2012). Genres: Horror, Thriller. A mother and daughter move to a new town and find themselves living next door to a house where a young girl murdered her parents. When the daughter befriends the surviving son, she learns the story is far from over.. Tags: mother daughter relationship, cross dressing, violence, mother son relationship, father son conflict"} +{"id": "46738", "title": "Incendies", "year": 2010, "duration_min": 130, "rating": 7.9, "genres": "Drama, War, Mystery", "genres_pipe": "|Drama|War|Mystery|", "keywords": "prison, middle east, rape, muslim, militia, interpreter, son, christian, orphanage, swimming pool, massacre, checkpoint, political assassination, twins, will", "tags_pipe": "|prison|middle east|rape|muslim|militia|interpreter|son|christian|orphanage|swimming pool|massacre|checkpoint|political assassination|twins|will|", "overview": "A mother's last wishes send twins Jeanne and Simon on a journey to Middle East in search of their tangled roots. Adapted from Wajdi Mouawad's acclaimed play, Incendies tells the powerful and moving tale of two young adults' voyage to the core of deep-rooted hatred, never-ending wars and enduring love.", "text_for_embedding": "Incendies (2010). Genres: Drama, War, Mystery. A mother's last wishes send twins Jeanne and Simon on a journey to Middle East in search of their tangled roots. Adapted from Wajdi Mouawad's acclaimed play, Incendies tells the powerful and moving tale of two young adults' voyage to the core of deep-rooted hatred, never-ending wars and enduring love.. Tags: prison, middle east, rape, muslim, militia, interpreter, son, christian, orphanage, swimming pool, massacre, checkpoint, political assassination, twins, will"} +{"id": "38970", "title": "Remember Me, My Love", "year": 2003, "duration_min": 125, "rating": 5.8, "genres": "Drama, Comedy, Romance", "genres_pipe": "|Drama|Comedy|Romance|", "keywords": "eroticism", "tags_pipe": "|eroticism|", "overview": "The story of a normal Italian family in which come out the dreams of those who have lost their possibilities and of those who want to realize them. Carlo and Giulia are a married couple who have each given up their aspirations in order to live an average life. Their 19-year-old son, Paolo, is having trouble finding an identity, while their 18-year-old daughter, Valentina, has already figured out how to use sex to her advantage. The family goes through a crisis when Carlo begins having an affair, Giulia attempt to seduce the director of a local stage production she is in, and Valentina does what she does best to land an audition for a TV show", "text_for_embedding": "Remember Me, My Love (2003). Genres: Drama, Comedy, Romance. The story of a normal Italian family in which come out the dreams of those who have lost their possibilities and of those who want to realize them. Carlo and Giulia are a married couple who have each given up their aspirations in order to live an average life. Their 19-year-old son, Paolo, is having trouble finding an identity, while their 18-year-old daughter, Valentina, has already figured out how to use sex to her advantage. The family goes through a crisis when Carlo begins having an affair, Giulia attempt to seduce the director of a local stage production she is in, and Valentina does what she does best to land an audition for a TV show. Tags: eroticism"} +{"id": "41009", "title": "Perrier’s Bounty", "year": 2009, "duration_min": 88, "rating": 5.1, "genres": "Action, Comedy, Crime, Drama", "genres_pipe": "|Action|Comedy|Crime|Drama|", "keywords": "suspense", "tags_pipe": "|suspense|", "overview": "A gangster named Perrier looks to exact his revenge on a trio of fugitives responsible for the accidental death of one of his cronies.", "text_for_embedding": "Perrier’s Bounty (2009). Genres: Action, Comedy, Crime, Drama. A gangster named Perrier looks to exact his revenge on a trio of fugitives responsible for the accidental death of one of his cronies.. Tags: suspense"} +{"id": "7347", "title": "Elite Squad", "year": 2007, "duration_min": 115, "rating": 7.8, "genres": "Drama, Action, Crime", "genres_pipe": "|Drama|Action|Crime|", "keywords": "slum, police brutality, brazilian, war on drugs, rio de janeiro, drug traffic, drug dealer, torture by the police, special forces, law enforcement", "tags_pipe": "|slum|police brutality|brazilian|war on drugs|rio de janeiro|drug traffic|drug dealer|torture by the police|special forces|law enforcement|", "overview": "In 1997, before the visit of the pope to Rio de Janeiro, Captain Nascimento from BOPE (Special Police Operations Battalion) is assigned to eliminate the risks of the drug dealers in a dangerous slum nearby where the pope intends to be lodged.", "text_for_embedding": "Elite Squad (2007). Genres: Drama, Action, Crime. In 1997, before the visit of the pope to Rio de Janeiro, Captain Nascimento from BOPE (Special Police Operations Battalion) is assigned to eliminate the risks of the drug dealers in a dangerous slum nearby where the pope intends to be lodged.. Tags: slum, police brutality, brazilian, war on drugs, rio de janeiro, drug traffic, drug dealer, torture by the police, special forces, law enforcement"} +{"id": "250546", "title": "Annabelle", "year": 2014, "duration_min": 99, "rating": 5.6, "genres": "Horror", "genres_pipe": "|Horror|", "keywords": "prequel, evil doll, killer doll, spin off, doll, demonic possession, killer toys, toy comes to life", "tags_pipe": "|prequel|evil doll|killer doll|spin off|doll|demonic possession|killer toys|toy comes to life|", "overview": "John Form has found the perfect gift for his expectant wife, Mia - a beautiful, rare vintage doll in a pure white wedding dress. But Mia's delight with Annabelle doesn't last long. On one horrific night, their home is invaded by members of a satanic cult, who violently attack the couple. Spilled blood and terror are not all they leave behind. The cultists have conjured an entity so malevolent that nothing they did will compare to the sinister conduit to the damned that is now... Annabelle.", "text_for_embedding": "Annabelle (2014). Genres: Horror. John Form has found the perfect gift for his expectant wife, Mia - a beautiful, rare vintage doll in a pure white wedding dress. But Mia's delight with Annabelle doesn't last long. On one horrific night, their home is invaded by members of a satanic cult, who violently attack the couple. Spilled blood and terror are not all they leave behind. The cultists have conjured an entity so malevolent that nothing they did will compare to the sinister conduit to the damned that is now... Annabelle.. Tags: prequel, evil doll, killer doll, spin off, doll, demonic possession, killer toys, toy comes to life"} +{"id": "38415", "title": "Bran Nue Dae", "year": 2009, "duration_min": 82, "rating": 5.2, "genres": "Comedy, Drama, Foreign, Romance", "genres_pipe": "|Comedy|Drama|Foreign|Romance|", "keywords": "musical, woman director", "tags_pipe": "|musical|woman director|", "overview": "In the Summer of 1965 a young man is filled with the life of the idyllic old pearling port Broome - fishing, hanging out with his mates and his girl. However his mother returns him to the religious mission for further schooling. After being punished for an act of youthful rebellion, he runs away from the mission on a journey that ultimately leads him back home.", "text_for_embedding": "Bran Nue Dae (2009). Genres: Comedy, Drama, Foreign, Romance. In the Summer of 1965 a young man is filled with the life of the idyllic old pearling port Broome - fishing, hanging out with his mates and his girl. However his mother returns him to the religious mission for further schooling. After being punished for an act of youthful rebellion, he runs away from the mission on a journey that ultimately leads him back home.. Tags: musical, woman director"} +{"id": "650", "title": "Boyz n the Hood", "year": 1991, "duration_min": 112, "rating": 7.4, "genres": "Crime, Drama", "genres_pipe": "|Crime|Drama|", "keywords": "street gang, black people, rap music, hip-hop, street war, rapper, violence in schools, los angeles", "tags_pipe": "|street gang|black people|rap music|hip-hop|street war|rapper|violence in schools|los angeles|", "overview": "Boyz n the Hood is the popular and successful film and social criticism from John Singleton about the conditions in South Central Los Angeles where teenagers are involved in gun fights and drug dealing on a daily basis.", "text_for_embedding": "Boyz n the Hood (1991). Genres: Crime, Drama. Boyz n the Hood is the popular and successful film and social criticism from John Singleton about the conditions in South Central Los Angeles where teenagers are involved in gun fights and drug dealing on a daily basis.. Tags: street gang, black people, rap music, hip-hop, street war, rapper, violence in schools, los angeles"} +{"id": "16620", "title": "La Bamba", "year": 1987, "duration_min": 108, "rating": 6.8, "genres": "Drama, Music", "genres_pipe": "|Drama|Music|", "keywords": "musical, death, dying young, nostalgic, mexican american, rising star, marital rape", "tags_pipe": "|musical|death|dying young|nostalgic|mexican american|rising star|marital rape|", "overview": "Biographical story of the rise from nowhere of singer Ritchie Valens whose life was cut short by a plane crash.", "text_for_embedding": "La Bamba (1987). Genres: Drama, Music. Biographical story of the rise from nowhere of singer Ritchie Valens whose life was cut short by a plane crash.. Tags: musical, death, dying young, nostalgic, mexican american, rising star, marital rape"} +{"id": "25113", "title": "The Four Seasons", "year": 1981, "duration_min": 107, "rating": 6.3, "genres": "Comedy, Drama, Romance", "genres_pipe": "|Comedy|Drama|Romance|", "keywords": "", "tags_pipe": "", "overview": "Three middle-aged wealthy couples take vacations together in Spring, Summer, Autumn and Winter. Along the way we are treated to mid-life, marital, parental and other crises.", "text_for_embedding": "The Four Seasons (1981). Genres: Comedy, Drama, Romance. Three middle-aged wealthy couples take vacations together in Spring, Summer, Autumn and Winter. Along the way we are treated to mid-life, marital, parental and other crises.. Tags: "} +{"id": "11033", "title": "Dressed to Kill", "year": 1980, "duration_min": 105, "rating": 6.8, "genres": "Horror, Mystery, Thriller", "genres_pipe": "|Horror|Mystery|Thriller|", "keywords": "transvestism, taxi, prostitute, subway, shower, one-night stand, manipulation, nightmare, seduction, photography, friendship, assault, alter ego, murder, stalking", "tags_pipe": "|transvestism|taxi|prostitute|subway|shower|one-night stand|manipulation|nightmare|seduction|photography|friendship|assault|alter ego|murder|stalking|", "overview": "A mysterious, tall, blonde woman, wearing sunglasses murders one of a psychiatrist's patients, and now she's after the prostitute who witnessed it.", "text_for_embedding": "Dressed to Kill (1980). Genres: Horror, Mystery, Thriller. A mysterious, tall, blonde woman, wearing sunglasses murders one of a psychiatrist's patients, and now she's after the prostitute who witnessed it.. Tags: transvestism, taxi, prostitute, subway, shower, one-night stand, manipulation, nightmare, seduction, photography, friendship, assault, alter ego, murder, stalking"} +{"id": "34723", "title": "The Adventures of Huck Finn", "year": 1993, "duration_min": 108, "rating": 6.2, "genres": "Action, Adventure, Drama, Family", "genres_pipe": "|Action|Adventure|Drama|Family|", "keywords": "southern accent, wanted man, lynch mob, reflection in water, lesson, nosebleed, bloodhound, fake accent, grave digging", "tags_pipe": "|southern accent|wanted man|lynch mob|reflection in water|lesson|nosebleed|bloodhound|fake accent|grave digging|", "overview": "Climb aboard for an extraordinary version of Mark Twain's sweeping adventure when Walt Disney presents The Adventures of Huck Finn, starring Elijah Wood (The Lord of the Rings). Directed by Stephen Sommers (The Mummy, The Mummy Returns), it's the unforgettable saga of a mischievous youngster and a runaway slave", "text_for_embedding": "The Adventures of Huck Finn (1993). Genres: Action, Adventure, Drama, Family. Climb aboard for an extraordinary version of Mark Twain's sweeping adventure when Walt Disney presents The Adventures of Huck Finn, starring Elijah Wood (The Lord of the Rings). Directed by Stephen Sommers (The Mummy, The Mummy Returns), it's the unforgettable saga of a mischievous youngster and a runaway slave. Tags: southern accent, wanted man, lynch mob, reflection in water, lesson, nosebleed, bloodhound, fake accent, grave digging"} +{"id": "9430", "title": "Go", "year": 1999, "duration_min": 98, "rating": 7.0, "genres": "Crime, Comedy, Thriller", "genres_pipe": "|Crime|Comedy|Thriller|", "keywords": "ecstasy, drug dealing, drug, reference to family circus, high, bisexual man, multiple storylines", "tags_pipe": "|ecstasy|drug dealing|drug|reference to family circus|high|bisexual man|multiple storylines|", "overview": "Told from three perspectives, a story of a bunch of young Californians trying to get some cash, do and deal some drugs, score money and sex in Las Vegas, and generally experience the rush of life.", "text_for_embedding": "Go (1999). Genres: Crime, Comedy, Thriller. Told from three perspectives, a story of a bunch of young Californians trying to get some cash, do and deal some drugs, score money and sex in Las Vegas, and generally experience the rush of life.. Tags: ecstasy, drug dealing, drug, reference to family circus, high, bisexual man, multiple storylines"} +{"id": "8998", "title": "Friends with Money", "year": 2006, "duration_min": 88, "rating": 5.1, "genres": "Comedy, Drama, Romance", "genres_pipe": "|Comedy|Drama|Romance|", "keywords": "midlife crisis, marriage, money, divorce, fashion, woman director", "tags_pipe": "|midlife crisis|marriage|money|divorce|fashion|woman director|", "overview": "After she quits her lucrative job, Olivia finds herself unsure about her future and her relationships with her successful and wealthy friends.", "text_for_embedding": "Friends with Money (2006). Genres: Comedy, Drama, Romance. After she quits her lucrative job, Olivia finds herself unsure about her future and her relationships with her successful and wealthy friends.. Tags: midlife crisis, marriage, money, divorce, fashion, woman director"} +{"id": "10514", "title": "The Andromeda Strain", "year": 1971, "duration_min": 131, "rating": 7.0, "genres": "Science Fiction, Thriller", "genres_pipe": "|Science Fiction|Thriller|", "keywords": "nasa, new mexico, biological weapon, epilepsy, secret lab, alien phenomenons, chemistry, biology, suspense, nuclear threat, science", "tags_pipe": "|nasa|new mexico|biological weapon|epilepsy|secret lab|alien phenomenons|chemistry|biology|suspense|nuclear threat|science|", "overview": "When virtually all of the residents of Piedmont, New Mexico, are found dead after the return to Earth of a space satellite, the head of the US Air Force's Project Scoop declares an emergency. A group of eminent scientists led by Dr. Jeremy Stone scramble to a secure laboratory and try to first isolate the life form while determining why two people from Piedmont - an old alcoholic and a six-month-old baby - survived. The scientists methodically study the alien life form unaware that it has already mutated and presents a far greater danger in the lab, which is equipped with a nuclear self-destruct device designed to prevent the escape of dangerous biological agents..", "text_for_embedding": "The Andromeda Strain (1971). Genres: Science Fiction, Thriller. When virtually all of the residents of Piedmont, New Mexico, are found dead after the return to Earth of a space satellite, the head of the US Air Force's Project Scoop declares an emergency. A group of eminent scientists led by Dr. Jeremy Stone scramble to a secure laboratory and try to first isolate the life form while determining why two people from Piedmont - an old alcoholic and a six-month-old baby - survived. The scientists methodically study the alien life form unaware that it has already mutated and presents a far greater danger in the lab, which is equipped with a nuclear self-destruct device designed to prevent the escape of dangerous biological agents... Tags: nasa, new mexico, biological weapon, epilepsy, secret lab, alien phenomenons, chemistry, biology, suspense, nuclear threat, science"} +{"id": "10496", "title": "Bats", "year": 1999, "duration_min": 91, "rating": 4.1, "genres": "Horror, Thriller", "genres_pipe": "|Horror|Thriller|", "keywords": "mutation, bat, attack, closed mine, bat attack, boy eaten", "tags_pipe": "|mutation|bat|attack|closed mine|bat attack|boy eaten|", "overview": "Genetically mutated bats escape and it's up to a bat expert and the local sheriff to stop them.", "text_for_embedding": "Bats (1999). Genres: Horror, Thriller. Genetically mutated bats escape and it's up to a bat expert and the local sheriff to stop them.. Tags: mutation, bat, attack, closed mine, bat attack, boy eaten"} +{"id": "1591", "title": "Nowhere in Africa", "year": 2001, "duration_min": 140, "rating": 7.0, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "loss of family, emigration, world war ii, jew, national socialism, kenia, only child, farm, marriage crisis, capture, woman director, emigrant", "tags_pipe": "|loss of family|emigration|world war ii|jew|national socialism|kenia|only child|farm|marriage crisis|capture|woman director|emigrant|", "overview": "A Jewish woman named Jettel Redlich flees Nazi Germany with her daughter Regina, to join her husband, Walter, on a farm in Kenya. At first, Jettel refuses to adjust to her new circumstances, bringing with her a set of china dishes and an evening gown. While Regina adapts readily to this new world, forming a strong bond with her father's cook, an African named Owuor.", "text_for_embedding": "Nowhere in Africa (2001). Genres: Drama. A Jewish woman named Jettel Redlich flees Nazi Germany with her daughter Regina, to join her husband, Walter, on a farm in Kenya. At first, Jettel refuses to adjust to her new circumstances, bringing with her a set of china dishes and an evening gown. While Regina adapts readily to this new world, forming a strong bond with her father's cook, an African named Owuor.. Tags: loss of family, emigration, world war ii, jew, national socialism, kenia, only child, farm, marriage crisis, capture, woman director, emigrant"} +{"id": "76025", "title": "Shame", "year": 2011, "duration_min": 100, "rating": 7.0, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "pornography, brother sister relationship, sex addiction, new york city, thirty something, sex addict", "tags_pipe": "|pornography|brother sister relationship|sex addiction|new york city|thirty something|sex addict|", "overview": "Brandon is a New Yorker who shuns intimacy with women but feeds his desires with a compulsive addiction to sex. When his wayward younger sister moves into his apartment stirring memories of their shared painful past, Brandon's insular life spirals out of control.", "text_for_embedding": "Shame (2011). Genres: Drama. Brandon is a New Yorker who shuns intimacy with women but feeds his desires with a compulsive addiction to sex. When his wayward younger sister moves into his apartment stirring memories of their shared painful past, Brandon's insular life spirals out of control.. Tags: pornography, brother sister relationship, sex addiction, new york city, thirty something, sex addict"} +{"id": "4836", "title": "Layer Cake", "year": 2004, "duration_min": 105, "rating": 7.0, "genres": "Drama, Thriller, Crime", "genres_pipe": "|Drama|Thriller|Crime|", "keywords": "kidnapping, ecstasy, drug traffic, drug mule, hitman, mission of murder, planned murder, drug smuggle, exit, murder", "tags_pipe": "|kidnapping|ecstasy|drug traffic|drug mule|hitman|mission of murder|planned murder|drug smuggle|exit|murder|", "overview": "When a seemingly straight-forward drug deal goes awry, XXXX has to break his die-hard rules and turn up the heat, not only to outwit the old regime and come out on top, but to save his own skin...", "text_for_embedding": "Layer Cake (2004). Genres: Drama, Thriller, Crime. When a seemingly straight-forward drug deal goes awry, XXXX has to break his die-hard rules and turn up the heat, not only to outwit the old regime and come out on top, but to save his own skin.... Tags: kidnapping, ecstasy, drug traffic, drug mule, hitman, mission of murder, planned murder, drug smuggle, exit, murder"} +{"id": "14631", "title": "The Work and the Glory II: American Zion", "year": 2005, "duration_min": 100, "rating": 8.0, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "", "tags_pipe": "", "overview": "\"The Work and The Glory: American Zion\" sets the story of the fictional Steed family against the historically factual backdrop of the Mormon people's move into the West. Divided by their diverse reactions to a nascent ideology, the Steeds struggle to hold together as the strength of their convictions and their filial bonds are tested. The stirring narrative of the faith that led a persecuted people to Missouri and beyond is one of the most poignant untold tales of American history. It is the account of a valiant struggle to exercise the rights promised by a fledgling nation. \"The Work and the Glory: American Zion\" unearths the story of the passion behind the movement which eventually launched the largest American migration and the colonization of the West: the vision of a promised land in America.", "text_for_embedding": "The Work and the Glory II: American Zion (2005). Genres: Drama. \"The Work and The Glory: American Zion\" sets the story of the fictional Steed family against the historically factual backdrop of the Mormon people's move into the West. Divided by their diverse reactions to a nascent ideology, the Steeds struggle to hold together as the strength of their convictions and their filial bonds are tested. The stirring narrative of the faith that led a persecuted people to Missouri and beyond is one of the most poignant untold tales of American history. It is the account of a valiant struggle to exercise the rights promised by a fledgling nation. \"The Work and the Glory: American Zion\" unearths the story of the passion behind the movement which eventually launched the largest American migration and the colonization of the West: the vision of a promised land in America.. Tags: "} +{"id": "87499", "title": "The East", "year": 2013, "duration_min": 116, "rating": 6.5, "genres": "Drama, Thriller", "genres_pipe": "|Drama|Thriller|", "keywords": "secret organization, murder, environmentalism, vanity film, eco-terrorists, multiple felonies", "tags_pipe": "|secret organization|murder|environmentalism|vanity film|eco-terrorists|multiple felonies|", "overview": "An operative for an elite private intelligence firm finds her priorities irrevocably changed after she is tasked with infiltrating an anarchist group known for executing covert attacks upon major corporations.", "text_for_embedding": "The East (2013). Genres: Drama, Thriller. An operative for an elite private intelligence firm finds her priorities irrevocably changed after she is tasked with infiltrating an anarchist group known for executing covert attacks upon major corporations.. Tags: secret organization, murder, environmentalism, vanity film, eco-terrorists, multiple felonies"} +{"id": "18923", "title": "A Home at the End of the World", "year": 2004, "duration_min": 96, "rating": 6.8, "genres": "Romance, Drama", "genres_pipe": "|Romance|Drama|", "keywords": "gay, aids, based on novel, art house, tantrum, bisexual, lgbt", "tags_pipe": "|gay|aids|based on novel|art house|tantrum|bisexual|lgbt|", "overview": "Three friends form a bond over the year, Johnathan is gay, Clare is straight and Bobby is neither, instead he loves the people he loves. As their lives go on there is tension and tears which culminate in a strong yet fragile friendship between the three.", "text_for_embedding": "A Home at the End of the World (2004). Genres: Romance, Drama. Three friends form a bond over the year, Johnathan is gay, Clare is straight and Bobby is neither, instead he loves the people he loves. As their lives go on there is tension and tears which culminate in a strong yet fragile friendship between the three.. Tags: gay, aids, based on novel, art house, tantrum, bisexual, lgbt"} +{"id": "26665", "title": "Aberdeen", "year": 2000, "duration_min": 113, "rating": 7.0, "genres": "Drama, Comedy, Foreign", "genres_pipe": "|Drama|Comedy|Foreign|", "keywords": "alcohol, cocaine, daughter, road trip, independent film, lawyer", "tags_pipe": "|alcohol|cocaine|daughter|road trip|independent film|lawyer|", "overview": "Kaisa is a Scot, a successful London lawyer, who snorts coke and has one-night stands with strangers. Her mother calls from Aberdeen with some story begging her to fly to Norway and collect her alcoholic dad whom she hasn't seen in years.", "text_for_embedding": "Aberdeen (2000). Genres: Drama, Comedy, Foreign. Kaisa is a Scot, a successful London lawyer, who snorts coke and has one-night stands with strangers. Her mother calls from Aberdeen with some story begging her to fly to Norway and collect her alcoholic dad whom she hasn't seen in years.. Tags: alcohol, cocaine, daughter, road trip, independent film, lawyer"} +{"id": "28089", "title": "The Messenger", "year": 2009, "duration_min": 113, "rating": 7.1, "genres": "Drama, History", "genres_pipe": "|Drama|History|", "keywords": "independent film, wounded, soldier, iraq war", "tags_pipe": "|independent film|wounded|soldier|iraq war|", "overview": "Will Montgomery (Ben Foster), a U.S. Army Staff Sergeant who has returned home from Iraq, is assigned to the Army’s Casualty Notification service. Montgomery is partnered with Captain Tony Stone (Woody Harrelson), to give notice to the families of fallen soldiers. The Sergeant is drawn to Olivia Pitterson (Samantha Morton), to whom he has delivered news of her husband’s death.", "text_for_embedding": "The Messenger (2009). Genres: Drama, History. Will Montgomery (Ben Foster), a U.S. Army Staff Sergeant who has returned home from Iraq, is assigned to the Army’s Casualty Notification service. Montgomery is partnered with Captain Tony Stone (Woody Harrelson), to give notice to the families of fallen soldiers. The Sergeant is drawn to Olivia Pitterson (Samantha Morton), to whom he has delivered news of her husband’s death.. Tags: independent film, wounded, soldier, iraq war"} +{"id": "62255", "title": "Tracker", "year": 2010, "duration_min": 102, "rating": 6.0, "genres": "Action, Drama, Thriller, Adventure", "genres_pipe": "|Action|Drama|Thriller|Adventure|", "keywords": "", "tags_pipe": "", "overview": "An ex-Boer war guerrilla in New Zealand is sent out to bring back a Maori accused of killing a British soldier. Gradually they grow to know and respect one another but a posse, led by the British Commanding officer is close behind and his sole intention is to see the Maori hang. Written by Filmfinders 1903. A guerilla fighter from the South African Boer war called Arjan (Winstone) takes on a manhunt for Maori seaman Kereama (Morrison), who is accused of murdering a British soldier. What follows is a cat and mouse pursuit through the varied landscape of NZ with both hunter and huntee testing their bushcraft and wits against that of the other. Written by Anonymous", "text_for_embedding": "Tracker (2010). Genres: Action, Drama, Thriller, Adventure. An ex-Boer war guerrilla in New Zealand is sent out to bring back a Maori accused of killing a British soldier. Gradually they grow to know and respect one another but a posse, led by the British Commanding officer is close behind and his sole intention is to see the Maori hang. Written by Filmfinders 1903. A guerilla fighter from the South African Boer war called Arjan (Winstone) takes on a manhunt for Maori seaman Kereama (Morrison), who is accused of murdering a British soldier. What follows is a cat and mouse pursuit through the varied landscape of NZ with both hunter and huntee testing their bushcraft and wits against that of the other. Written by Anonymous. Tags: "} +{"id": "5708", "title": "Control", "year": 2007, "duration_min": 121, "rating": 7.5, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "manchester city, medicine, new love, epilepsy, wife, punk, recording contract, record producer, record label, music, independent film, extramarital affair, music band", "tags_pipe": "|manchester city|medicine|new love|epilepsy|wife|punk|recording contract|record producer|record label|music|independent film|extramarital affair|music band|", "overview": "Control is the biography of Joy Division lead singer Ian Curtis, taking his story from schoolboy days of 1973 to his suicide on the eve of the band's first American tour in 1980.", "text_for_embedding": "Control (2007). Genres: Drama. Control is the biography of Joy Division lead singer Ian Curtis, taking his story from schoolboy days of 1973 to his suicide on the eve of the band's first American tour in 1980.. Tags: manchester city, medicine, new love, epilepsy, wife, punk, recording contract, record producer, record label, music, independent film, extramarital affair, music band"} +{"id": "218", "title": "The Terminator", "year": 1984, "duration_min": 108, "rating": 7.3, "genres": "Action, Thriller, Science Fiction", "genres_pipe": "|Action|Thriller|Science Fiction|", "keywords": "saving the world, artificial intelligence, rebel, cyborg, shotgun, killer robot, sun glasses, dystopia, car chase, laser gun, urban setting, future war", "tags_pipe": "|saving the world|artificial intelligence|rebel|cyborg|shotgun|killer robot|sun glasses|dystopia|car chase|laser gun|urban setting|future war|", "overview": "In the post-apocalyptic future, reigning tyrannical supercomputers teleport a cyborg assassin known as the \"Terminator\" back to 1984 to kill Sarah Connor, whose unborn son is destined to lead insurgents against 21st century mechanical hegemony. Meanwhile, the human-resistance movement dispatches a lone warrior to safeguard Sarah. Can he stop the virtually indestructible killing machine?", "text_for_embedding": "The Terminator (1984). Genres: Action, Thriller, Science Fiction. In the post-apocalyptic future, reigning tyrannical supercomputers teleport a cyborg assassin known as the \"Terminator\" back to 1984 to kill Sarah Connor, whose unborn son is destined to lead insurgents against 21st century mechanical hegemony. Meanwhile, the human-resistance movement dispatches a lone warrior to safeguard Sarah. Can he stop the virtually indestructible killing machine?. Tags: saving the world, artificial intelligence, rebel, cyborg, shotgun, killer robot, sun glasses, dystopia, car chase, laser gun, urban setting, future war"} +{"id": "338", "title": "Good bye, Lenin!", "year": 2003, "duration_min": 121, "rating": 7.4, "genres": "Comedy, Drama, Romance", "genres_pipe": "|Comedy|Drama|Romance|", "keywords": "bureaucracy, berlin wall, police state, coma, loss of mother, wife husband relationship, patriotism, german democratic republic, socialism, news broadcast, loss of father, lenin, single,  , filmes contra o comunismo", "tags_pipe": "|bureaucracy|berlin wall|police state|coma|loss of mother|wife husband relationship|patriotism|german democratic republic|socialism|news broadcast|loss of father|lenin|single| |filmes contra o comunismo|", "overview": "An affectionate and refreshing East/West-Germany comedy about a boy who’s mother was in a coma while the Berlin wall fell and when she wakes up he must try to keep her from learning what happen (since she was an avid communist supporter) to avoid shocking her which could lead to another heart attack.", "text_for_embedding": "Good bye, Lenin! (2003). Genres: Comedy, Drama, Romance. An affectionate and refreshing East/West-Germany comedy about a boy who’s mother was in a coma while the Berlin wall fell and when she wakes up he must try to keep her from learning what happen (since she was an avid communist supporter) to avoid shocking her which could lead to another heart attack.. Tags: bureaucracy, berlin wall, police state, coma, loss of mother, wife husband relationship, patriotism, german democratic republic, socialism, news broadcast, loss of father, lenin, single,  , filmes contra o comunismo"} +{"id": "21641", "title": "The Damned United", "year": 2009, "duration_min": 97, "rating": 7.2, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "england, leeds united, sport, brighton, soccer, cup, derby county, management, soccer team", "tags_pipe": "|england|leeds united|sport|brighton|soccer|cup|derby county|management|soccer team|", "overview": "Taking over Leeds United, Brian Clough's abrasive approach and his clear dislike of the players' dirty style of play make it certain there is going to be friction. Glimpses of his earlier career help explain both his hostility to previous manager Don Revie and how much he is missing right-hand man Peter Taylor", "text_for_embedding": "The Damned United (2009). Genres: Drama. Taking over Leeds United, Brian Clough's abrasive approach and his clear dislike of the players' dirty style of play make it certain there is going to be friction. Glimpses of his earlier career help explain both his hostility to previous manager Don Revie and how much he is missing right-hand man Peter Taylor. Tags: england, leeds united, sport, brighton, soccer, cup, derby county, management, soccer team"} +{"id": "10925", "title": "The Return of the Living Dead", "year": 1985, "duration_min": 91, "rating": 7.3, "genres": "Comedy, Horror", "genres_pipe": "|Comedy|Horror|", "keywords": "female nudity, crematorium, nudity, punk, company, independent film, undead, decapitation, zombie, paramedic, attic, cemetary, dismemberment, warehouse, stairs", "tags_pipe": "|female nudity|crematorium|nudity|punk|company|independent film|undead|decapitation|zombie|paramedic|attic|cemetary|dismemberment|warehouse|stairs|", "overview": "When a bumbling pair of employees at a medical supply warehouse accidentally release a deadly gas into the air, the vapors cause the dead to re-animate as they go on a rampage seeking their favorite food: brains!", "text_for_embedding": "The Return of the Living Dead (1985). Genres: Comedy, Horror. When a bumbling pair of employees at a medical supply warehouse accidentally release a deadly gas into the air, the vapors cause the dead to re-animate as they go on a rampage seeking their favorite food: brains!. Tags: female nudity, crematorium, nudity, punk, company, independent film, undead, decapitation, zombie, paramedic, attic, cemetary, dismemberment, warehouse, stairs"} +{"id": "2293", "title": "Mallrats", "year": 1995, "duration_min": 94, "rating": 6.8, "genres": "Romance, Comedy", "genres_pipe": "|Romance|Comedy|", "keywords": "sex, game show, slacker, shopping, mall, ex-boyfriend ex-girlfriend relationship, jay and silent bob, silent man, coke, bandleader, aftercreditsstinger", "tags_pipe": "|sex|game show|slacker|shopping|mall|ex-boyfriend ex-girlfriend relationship|jay and silent bob|silent man|coke|bandleader|aftercreditsstinger|", "overview": "Both dumped by their girlfriends, two best friends seek refuge in the local mall.", "text_for_embedding": "Mallrats (1995). Genres: Romance, Comedy. Both dumped by their girlfriends, two best friends seek refuge in the local mall.. Tags: sex, game show, slacker, shopping, mall, ex-boyfriend ex-girlfriend relationship, jay and silent bob, silent man, coke, bandleader, aftercreditsstinger"} +{"id": "621", "title": "Grease", "year": 1978, "duration_min": 110, "rating": 7.2, "genres": "Romance", "genres_pipe": "|Romance|", "keywords": "flying car, street gang, running, graduation, musical, rivalry, gossip, makeover, based on stage musical, automobile racing, nostalgic, greaser, wolf whistle, school dance, animated credits", "tags_pipe": "|flying car|street gang|running|graduation|musical|rivalry|gossip|makeover|based on stage musical|automobile racing|nostalgic|greaser|wolf whistle|school dance|animated credits|", "overview": "Australian good girl Sandy and greaser Danny fell in love over the summer. But when they unexpectedly discover they're now in the same high school, will they be able to rekindle their romance despite their eccentric friends?", "text_for_embedding": "Grease (1978). Genres: Romance. Australian good girl Sandy and greaser Danny fell in love over the summer. But when they unexpectedly discover they're now in the same high school, will they be able to rekindle their romance despite their eccentric friends?. Tags: flying car, street gang, running, graduation, musical, rivalry, gossip, makeover, based on stage musical, automobile racing, nostalgic, greaser, wolf whistle, school dance, animated credits"} +{"id": "792", "title": "Platoon", "year": 1986, "duration_min": 120, "rating": 7.5, "genres": "Drama, War, Action", "genres_pipe": "|Drama|War|Action|", "keywords": "famous score, hero, mine, vietnam war, village, gore, jungle, f word, soldier, battle, combat, 1960s", "tags_pipe": "|famous score|hero|mine|vietnam war|village|gore|jungle|f word|soldier|battle|combat|1960s|", "overview": "As a young and naive recruit in Vietnam, Chris Taylor faces a moral crisis when confronted with the horrors of war and the duality of man.", "text_for_embedding": "Platoon (1986). Genres: Drama, War, Action. As a young and naive recruit in Vietnam, Chris Taylor faces a moral crisis when confronted with the horrors of war and the duality of man.. Tags: famous score, hero, mine, vietnam war, village, gore, jungle, f word, soldier, battle, combat, 1960s"} +{"id": "1777", "title": "Fahrenheit 9/11", "year": 2004, "duration_min": 122, "rating": 6.8, "genres": "Documentary", "genres_pipe": "|Documentary|", "keywords": "usa president, jihad, saudi arabia, war on terror, iraq, government, war, steel helmet, conspiracy theory", "tags_pipe": "|usa president|jihad|saudi arabia|war on terror|iraq|government|war|steel helmet|conspiracy theory|", "overview": "Michael Moore's view on what happened to the United States after September 11; and how the Bush Administration allegedly used the tragic event to push forward its agenda for unjust wars in Afghanistan and Iraq.", "text_for_embedding": "Fahrenheit 9/11 (2004). Genres: Documentary. Michael Moore's view on what happened to the United States after September 11; and how the Bush Administration allegedly used the tragic event to push forward its agenda for unjust wars in Afghanistan and Iraq.. Tags: usa president, jihad, saudi arabia, war on terror, iraq, government, war, steel helmet, conspiracy theory"} +{"id": "642", "title": "Butch Cassidy and the Sundance Kid", "year": 1969, "duration_min": 110, "rating": 7.4, "genres": "History, Drama, Western, Crime", "genres_pipe": "|History|Drama|Western|Crime|", "keywords": "wyoming, historical figure, loot sharing", "tags_pipe": "|wyoming|historical figure|loot sharing|", "overview": "In late 1890s Wyoming, Butch Cassidy is the affable, clever and talkative leader of the outlaw Hole in the Wall Gang. His closest companion is the laconic dead-shot 'Sundance Kid'. As the west rapidly becomes civilized, the law finally catches up to Butch, Sundance and their gang. Chased doggedly by a special posse, the two decide to make their way to South America in hopes of evading their pursuers once and for all.", "text_for_embedding": "Butch Cassidy and the Sundance Kid (1969). Genres: History, Drama, Western, Crime. In late 1890s Wyoming, Butch Cassidy is the affable, clever and talkative leader of the outlaw Hole in the Wall Gang. His closest companion is the laconic dead-shot 'Sundance Kid'. As the west rapidly becomes civilized, the law finally catches up to Butch, Sundance and their gang. Chased doggedly by a special posse, the two decide to make their way to South America in hopes of evading their pursuers once and for all.. Tags: wyoming, historical figure, loot sharing"} +{"id": "433", "title": "Mary Poppins", "year": 1964, "duration_min": 139, "rating": 7.4, "genres": "Comedy, Family, Fantasy", "genres_pipe": "|Comedy|Family|Fantasy|", "keywords": "london england, dancing, parents kids relationship, bank, brother sister relationship, famous score, confidence, nanny, laughing, magic, chimney sweeper, musical, live action and animation", "tags_pipe": "|london england|dancing|parents kids relationship|bank|brother sister relationship|famous score|confidence|nanny|laughing|magic|chimney sweeper|musical|live action and animation|", "overview": "The movie combines a diverting story, songs, color and sequences of live action blended with the movements of animated figures. Mary Poppins is a kind of Super-nanny who flies in with her umbrella in response to the request of the Banks children and proceeds to put things right with the aid of her rather extraordinary magical powers before flying off again.", "text_for_embedding": "Mary Poppins (1964). Genres: Comedy, Family, Fantasy. The movie combines a diverting story, songs, color and sequences of live action blended with the movements of animated figures. Mary Poppins is a kind of Super-nanny who flies in with her umbrella in response to the request of the Banks children and proceeds to put things right with the aid of her rather extraordinary magical powers before flying off again.. Tags: london england, dancing, parents kids relationship, bank, brother sister relationship, famous score, confidence, nanny, laughing, magic, chimney sweeper, musical, live action and animation"} +{"id": "16619", "title": "Ordinary People", "year": 1980, "duration_min": 124, "rating": 7.4, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "post traumatic stress disorder, depression, suicide attempt, grief, dysfunctional family, guilt, death of son, grieving", "tags_pipe": "|post traumatic stress disorder|depression|suicide attempt|grief|dysfunctional family|guilt|death of son|grieving|", "overview": "Beth, Calvin, and their son Conrad are living in the aftermath of the death of the other son. Conrad is overcome by grief and misplaced guilt to the extent of a suicide attempt. He is in therapy. Beth had always preferred his brother and is having difficulty being supportive to Conrad. Calvin is trapped between the two trying to hold the family together.", "text_for_embedding": "Ordinary People (1980). Genres: Drama. Beth, Calvin, and their son Conrad are living in the aftermath of the death of the other son. Conrad is overcome by grief and misplaced guilt to the extent of a suicide attempt. He is in therapy. Beth had always preferred his brother and is having difficulty being supportive to Conrad. Calvin is trapped between the two trying to hold the family together.. Tags: post traumatic stress disorder, depression, suicide attempt, grief, dysfunctional family, guilt, death of son, grieving"} +{"id": "1725", "title": "West Side Story", "year": 1961, "duration_min": 152, "rating": 7.0, "genres": "Crime, Drama, Music", "genres_pipe": "|Crime|Drama|Music|", "keywords": "slum, street gang, love at first sight, showdown, puerto rican, immigrant, highway, forbidden love, musical, rivalry, feud, interracial relationship, sondheim, attempted rape, policeman", "tags_pipe": "|slum|street gang|love at first sight|showdown|puerto rican|immigrant|highway|forbidden love|musical|rivalry|feud|interracial relationship|sondheim|attempted rape|policeman|", "overview": "In the slums of the upper West Side of Manhattan, New York, a gang of Polish-American teenagers called the Jets compete with a rival gang of recently immigrated Puerto Ricans, the Sharks, to \"own\" the neighborhood streets. Tensions are high between the gangs but two kids, one from each rival gang, fall in love leading to tragedy.", "text_for_embedding": "West Side Story (1961). Genres: Crime, Drama, Music. In the slums of the upper West Side of Manhattan, New York, a gang of Polish-American teenagers called the Jets compete with a rival gang of recently immigrated Puerto Ricans, the Sharks, to \"own\" the neighborhood streets. Tensions are high between the gangs but two kids, one from each rival gang, fall in love leading to tragedy.. Tags: slum, street gang, love at first sight, showdown, puerto rican, immigrant, highway, forbidden love, musical, rivalry, feud, interracial relationship, sondheim, attempted rape, policeman"} +{"id": "11977", "title": "Caddyshack", "year": 1980, "duration_min": 98, "rating": 6.6, "genres": "Comedy", "genres_pipe": "|Comedy|", "keywords": "golf, underwear, sport, golf course, gopher", "tags_pipe": "|golf|underwear|sport|golf course|gopher|", "overview": "At an exclusive country club, an ambitious young caddy, Danny Noonan, eagerly pursues a caddy scholarship in hopes of attending college and, in turn, avoiding a job at the lumber yard. In order to succeed, he must first win the favour of the elitist Judge Smails, and then the caddy golf tournament which Smails sponsors.", "text_for_embedding": "Caddyshack (1980). Genres: Comedy. At an exclusive country club, an ambitious young caddy, Danny Noonan, eagerly pursues a caddy scholarship in hopes of attending college and, in turn, avoiding a job at the lumber yard. In order to succeed, he must first win the favour of the elitist Judge Smails, and then the caddy golf tournament which Smails sponsors.. Tags: golf, underwear, sport, golf course, gopher"} +{"id": "20322", "title": "The Brothers", "year": 2001, "duration_min": 106, "rating": 6.5, "genres": "Comedy, Drama, Romance", "genres_pipe": "|Comedy|Drama|Romance|", "keywords": "independent film, track and field, gangster rap", "tags_pipe": "|independent film|track and field|gangster rap|", "overview": "This is the story of four African-American \"yuppies\" (a banker, a doctor, a lawyer, and a \"playboy\") who call themselves \"The Brothers\". When the playboy gets engaged, the other three friends find themselves having to come to terms with their own issues of commitment and honesty...", "text_for_embedding": "The Brothers (2001). Genres: Comedy, Drama, Romance. This is the story of four African-American \"yuppies\" (a banker, a doctor, a lawyer, and a \"playboy\") who call themselves \"The Brothers\". When the playboy gets engaged, the other three friends find themselves having to come to terms with their own issues of commitment and honesty.... Tags: independent film, track and field, gangster rap"} +{"id": "16158", "title": "The Wood", "year": 1999, "duration_min": 106, "rating": 7.1, "genres": "Comedy, Drama, Romance", "genres_pipe": "|Comedy|Drama|Romance|", "keywords": "", "tags_pipe": "", "overview": "In the panicky, uncertain hours before his wedding, a groom with prenuptial jitters and his two best friends reminisce about growing up together in the middle-class African-American neighborhood of Inglewood, California. Flashing back to the twenty-something trio's childhood exploits, the memories capture the mood and nostalgia of the '80s era.", "text_for_embedding": "The Wood (1999). Genres: Comedy, Drama, Romance. In the panicky, uncertain hours before his wedding, a groom with prenuptial jitters and his two best friends reminisce about growing up together in the middle-class African-American neighborhood of Inglewood, California. Flashing back to the twenty-something trio's childhood exploits, the memories capture the mood and nostalgia of the '80s era.. Tags: "} +{"id": "629", "title": "The Usual Suspects", "year": 1995, "duration_min": 106, "rating": 8.1, "genres": "Drama, Crime, Thriller", "genres_pipe": "|Drama|Crime|Thriller|", "keywords": "law, relatives, theft, criminal, criminal mastermind, hungarian, sibling", "tags_pipe": "|law|relatives|theft|criminal|criminal mastermind|hungarian|sibling|", "overview": "Held in an L.A. interrogation room, Verbal Kint attempts to convince the feds that a mythic crime lord, Keyser Soze, not only exists, but was also responsible for drawing him and his four partners into a multi-million dollar heist that ended with an explosion in San Pedro harbor – leaving few survivors. Verbal lures his interrogators with an incredible story of the crime lord's almost supernatural prowess.", "text_for_embedding": "The Usual Suspects (1995). Genres: Drama, Crime, Thriller. Held in an L.A. interrogation room, Verbal Kint attempts to convince the feds that a mythic crime lord, Keyser Soze, not only exists, but was also responsible for drawing him and his four partners into a multi-million dollar heist that ended with an explosion in San Pedro harbor – leaving few survivors. Verbal lures his interrogators with an incredible story of the crime lord's almost supernatural prowess.. Tags: law, relatives, theft, criminal, criminal mastermind, hungarian, sibling"} +{"id": "10160", "title": "A Nightmare on Elm Street 5: The Dream Child", "year": 1989, "duration_min": 89, "rating": 5.5, "genres": "Horror, Thriller", "genres_pipe": "|Horror|Thriller|", "keywords": "nun, baby, monster, asylum, nightmare, supernatural, resurrection, vision, torture, pregnancy, birth, disfigurement, fetus, womb, dreams", "tags_pipe": "|nun|baby|monster|asylum|nightmare|supernatural|resurrection|vision|torture|pregnancy|birth|disfigurement|fetus|womb|dreams|", "overview": "Alice, having survived the previous installment of the Nightmare series, finds the deadly dreams of Freddy Krueger starting once again. This time, the taunting murderer is striking through the sleeping mind of Alice's unborn child. His intention is to be \"born again\" into the real world. The only one who can stop Freddy is his dead mother, but can Alice free her spirit in time to save her own son?", "text_for_embedding": "A Nightmare on Elm Street 5: The Dream Child (1989). Genres: Horror, Thriller. Alice, having survived the previous installment of the Nightmare series, finds the deadly dreams of Freddy Krueger starting once again. This time, the taunting murderer is striking through the sleeping mind of Alice's unborn child. His intention is to be \"born again\" into the real world. The only one who can stop Freddy is his dead mother, but can Alice free her spirit in time to save her own son?. Tags: nun, baby, monster, asylum, nightmare, supernatural, resurrection, vision, torture, pregnancy, birth, disfigurement, fetus, womb, dreams"} +{"id": "11452", "title": "National Lampoon’s Van Wilder", "year": 2002, "duration_min": 92, "rating": 5.9, "genres": "Comedy, Romance", "genres_pipe": "|Comedy|Romance|", "keywords": "male nudity, female nudity, sex, college, locker room, doggystyle, flirting, exposé, pug, bon bon, fraternity pledge, greek letter, laxative", "tags_pipe": "|male nudity|female nudity|sex|college|locker room|doggystyle|flirting|exposé|pug|bon bon|fraternity pledge|greek letter|laxative|", "overview": "Van Wilder has been attending college for far too many years and is scared to graduate, but Van’s father eventually realizes what is going on. When he stops paying his son's tuition fees, Van must come up with the money if he wants to stay in college, so he and his friends come up with a great fund-raising idea – throwing parties. However, when the college magazine finds out and reporter, Gwen is sent to do a story on Van Wilder, things get a little complicated.", "text_for_embedding": "National Lampoon’s Van Wilder (2002). Genres: Comedy, Romance. Van Wilder has been attending college for far too many years and is scared to graduate, but Van’s father eventually realizes what is going on. When he stops paying his son's tuition fees, Van must come up with the money if he wants to stay in college, so he and his friends come up with a great fund-raising idea – throwing parties. However, when the college magazine finds out and reporter, Gwen is sent to do a story on Van Wilder, things get a little complicated.. Tags: male nudity, female nudity, sex, college, locker room, doggystyle, flirting, exposé, pug, bon bon, fraternity pledge, greek letter, laxative"} +{"id": "12163", "title": "The Wrestler", "year": 2008, "duration_min": 109, "rating": 7.3, "genres": "Drama, Romance", "genres_pipe": "|Drama|Romance|", "keywords": "supermarket, heart attack, ambition, daughter, wrestling, sport, stripper, steroids, fame, barbed wire, wrestler, redemption", "tags_pipe": "|supermarket|heart attack|ambition|daughter|wrestling|sport|stripper|steroids|fame|barbed wire|wrestler|redemption|", "overview": "Aging wrestler Randy \"The Ram\" Robinson is long past his prime but still ready and rarin' to go on the pro-wrestling circuit. After a particularly brutal beating, however, Randy hangs up his tights, pursues a serious relationship with a long-in-the-tooth stripper, and tries to reconnect with his estranged daughter. But he can't resist the lure of the ring and readies himself for a comeback.", "text_for_embedding": "The Wrestler (2008). Genres: Drama, Romance. Aging wrestler Randy \"The Ram\" Robinson is long past his prime but still ready and rarin' to go on the pro-wrestling circuit. After a particularly brutal beating, however, Randy hangs up his tights, pursues a serious relationship with a long-in-the-tooth stripper, and tries to reconnect with his estranged daughter. But he can't resist the lure of the ring and readies himself for a comeback.. Tags: supermarket, heart attack, ambition, daughter, wrestling, sport, stripper, steroids, fame, barbed wire, wrestler, redemption"} +{"id": "32275", "title": "Duel in the Sun", "year": 1946, "duration_min": 144, "rating": 6.2, "genres": "Western", "genres_pipe": "|Western|", "keywords": "half breed", "tags_pipe": "|half breed|", "overview": "Beautiful half-breed Pearl Chavez becomes the ward of her dead father's first love and finds herself torn between her sons, one good and the other bad.", "text_for_embedding": "Duel in the Sun (1946). Genres: Western. Beautiful half-breed Pearl Chavez becomes the ward of her dead father's first love and finds herself torn between her sons, one good and the other bad.. Tags: half breed"} +{"id": "13785", "title": "Best in Show", "year": 2000, "duration_min": 90, "rating": 6.7, "genres": "Comedy", "genres_pipe": "|Comedy|", "keywords": "illinois, pet shop, poodle, independent film, mockumentary, terrier, kimono", "tags_pipe": "|illinois|pet shop|poodle|independent film|mockumentary|terrier|kimono|", "overview": "The tension is palpable, the excitement is mounting and the heady scent of competition is in the air as hundreds of eager contestants from across America prepare to take part in what is undoubtedly one of the greatest events of their lives -- the Mayflower Dog Show. The canine contestants and their owners are as wondrously diverse as the great country that has bred them.", "text_for_embedding": "Best in Show (2000). Genres: Comedy. The tension is palpable, the excitement is mounting and the heady scent of competition is in the air as hundreds of eager contestants from across America prepare to take part in what is undoubtedly one of the greatest events of their lives -- the Mayflower Dog Show. The canine contestants and their owners are as wondrously diverse as the great country that has bred them.. Tags: illinois, pet shop, poodle, independent film, mockumentary, terrier, kimono"} +{"id": "1103", "title": "Escape from New York", "year": 1981, "duration_min": 99, "rating": 6.9, "genres": "Science Fiction, Action", "genres_pipe": "|Science Fiction|Action|", "keywords": "taxi, street gang, usa president, war veteran, hostage, kidnapping, liberation of prisoners, anti hero, gangster boss, dystopia, police operation, attempt to escape, cyberpunk, reluctant hero", "tags_pipe": "|taxi|street gang|usa president|war veteran|hostage|kidnapping|liberation of prisoners|anti hero|gangster boss|dystopia|police operation|attempt to escape|cyberpunk|reluctant hero|", "overview": "In 1997, the island of Manhattan has been walled off and turned into a giant maximum security prison within which the country's worst criminals are left to form their own anarchic society. However, when the President of the United States crash lands on the island, the authorities turn to a former soldier and current convict, Snake Plissken, to rescue him.", "text_for_embedding": "Escape from New York (1981). Genres: Science Fiction, Action. In 1997, the island of Manhattan has been walled off and turned into a giant maximum security prison within which the country's worst criminals are left to form their own anarchic society. However, when the President of the United States crash lands on the island, the authorities turn to a former soldier and current convict, Snake Plissken, to rescue him.. Tags: taxi, street gang, usa president, war veteran, hostage, kidnapping, liberation of prisoners, anti hero, gangster boss, dystopia, police operation, attempt to escape, cyberpunk, reluctant hero"} +{"id": "36739", "title": "School Daze", "year": 1988, "duration_min": 121, "rating": 6.2, "genres": "Comedy, Drama", "genres_pipe": "|Comedy|Drama|", "keywords": "musical", "tags_pipe": "|musical|", "overview": "In the South of the United States are taking place confrontations between two groups of students who have different ideas and are not able to accept the one of the oponent.", "text_for_embedding": "School Daze (1988). Genres: Comedy, Drama. In the South of the United States are taking place confrontations between two groups of students who have different ideas and are not able to accept the one of the oponent.. Tags: musical"} +{"id": "14144", "title": "Daddy Day Camp", "year": 2007, "duration_min": 89, "rating": 4.4, "genres": "Comedy, Family", "genres_pipe": "|Comedy|Family|", "keywords": "competition, grandfather grandson relationship, vomit, summer camp, toilet, rivalry, colonel", "tags_pipe": "|competition|grandfather grandson relationship|vomit|summer camp|toilet|rivalry|colonel|", "overview": "Seeking to offer his son the satisfying summer camp experience that eluded him as a child, the operator of a neighborhood daycare center opens his own camp, only to face financial hardship and stiff competition from a rival camp.", "text_for_embedding": "Daddy Day Camp (2007). Genres: Comedy, Family. Seeking to offer his son the satisfying summer camp experience that eluded him as a child, the operator of a neighborhood daycare center opens his own camp, only to face financial hardship and stiff competition from a rival camp.. Tags: competition, grandfather grandson relationship, vomit, summer camp, toilet, rivalry, colonel"} +{"id": "10622", "title": "Mr. Nice Guy", "year": 1997, "duration_min": 113, "rating": 6.3, "genres": "Crime, Action, Comedy", "genres_pipe": "|Crime|Action|Comedy|", "keywords": "journalist, martial arts, cook, drug dealer", "tags_pipe": "|journalist|martial arts|cook|drug dealer|", "overview": "A Chinese chef accidentally gets involved with a news reporter who filmed a drug bust that went awry and is now being chased by gangs who are trying to get the video tape.", "text_for_embedding": "Mr. Nice Guy (1997). Genres: Crime, Action, Comedy. A Chinese chef accidentally gets involved with a news reporter who filmed a drug bust that went awry and is now being chased by gangs who are trying to get the video tape.. Tags: journalist, martial arts, cook, drug dealer"} +{"id": "13370", "title": "A Mighty Wind", "year": 2003, "duration_min": 91, "rating": 6.6, "genres": "Comedy, Music", "genres_pipe": "|Comedy|Music|", "keywords": "mockumentary, folk singer", "tags_pipe": "|mockumentary|folk singer|", "overview": "In \"A Mighty Wind\", director Christopher Guest reunites the team from \"Best In Show\" and \"Waiting for Guffman\" to tell tell the story of 60's-era folk musicians, who inspired by the death of their former manager, get back on the stage for one concert in New York City's Town Hall.", "text_for_embedding": "A Mighty Wind (2003). Genres: Comedy, Music. In \"A Mighty Wind\", director Christopher Guest reunites the team from \"Best In Show\" and \"Waiting for Guffman\" to tell tell the story of 60's-era folk musicians, who inspired by the death of their former manager, get back on the stage for one concert in New York City's Town Hall.. Tags: mockumentary, folk singer"} +{"id": "11191", "title": "Mystic Pizza", "year": 1988, "duration_min": 104, "rating": 5.9, "genres": "Comedy, Drama, Romance", "genres_pipe": "|Comedy|Drama|Romance|", "keywords": "independent film, commitment, lobster, portuguese american", "tags_pipe": "|independent film|commitment|lobster|portuguese american|", "overview": "Three teenage girls come of age while working at a pizza parlor in Mystic Connecticut.", "text_for_embedding": "Mystic Pizza (1988). Genres: Comedy, Drama, Romance. Three teenage girls come of age while working at a pizza parlor in Mystic Connecticut.. Tags: independent film, commitment, lobster, portuguese american"} +{"id": "10215", "title": "Sliding Doors", "year": 1998, "duration_min": 99, "rating": 6.5, "genres": "Comedy, Drama, Fantasy, Romance", "genres_pipe": "|Comedy|Drama|Fantasy|Romance|", "keywords": "double life, commercial, fantasy, chance, marketing, time travel, in flagranti, ambiguous ending, alternative reality", "tags_pipe": "|double life|commercial|fantasy|chance|marketing|time travel|in flagranti|ambiguous ending|alternative reality|", "overview": "Gwyneth Paltrow plays London publicist Helen, effortlessly sliding between parallel storylines that show what happens if she does or does not catch a train back to her apartment. Love. Romantic entanglements. Deception. Trust. Friendship. Comedy. All come into focus as the two stories shift back and forth, overlap and surprisingly converge.", "text_for_embedding": "Sliding Doors (1998). Genres: Comedy, Drama, Fantasy, Romance. Gwyneth Paltrow plays London publicist Helen, effortlessly sliding between parallel storylines that show what happens if she does or does not catch a train back to her apartment. Love. Romantic entanglements. Deception. Trust. Friendship. Comedy. All come into focus as the two stories shift back and forth, overlap and surprisingly converge.. Tags: double life, commercial, fantasy, chance, marketing, time travel, in flagranti, ambiguous ending, alternative reality"} +{"id": "25066", "title": "Tales from the Hood", "year": 1995, "duration_min": 98, "rating": 5.4, "genres": "Crime, Horror, Thriller", "genres_pipe": "|Crime|Horror|Thriller|", "keywords": "prison, child abuse, ku klux klan, police brutality, ghetto, anthology, evil doll, murder, hood, dirty cop, funeral home", "tags_pipe": "|prison|child abuse|ku klux klan|police brutality|ghetto|anthology|evil doll|murder|hood|dirty cop|funeral home|", "overview": "A strange funeral director tells four strange tales of horror with an African American focus to three drug dealers he traps in his place of business.", "text_for_embedding": "Tales from the Hood (1995). Genres: Crime, Horror, Thriller. A strange funeral director tells four strange tales of horror with an African American focus to three drug dealers he traps in his place of business.. Tags: prison, child abuse, ku klux klan, police brutality, ghetto, anthology, evil doll, murder, hood, dirty cop, funeral home"} +{"id": "1523", "title": "The Last King of Scotland", "year": 2006, "duration_min": 121, "rating": 7.4, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "dictator, 1970s, general, kidnapping, naivety, luxury, oscar award, charisma, polygamy, uganda, dictatorship", "tags_pipe": "|dictator|1970s|general|kidnapping|naivety|luxury|oscar award|charisma|polygamy|uganda|dictatorship|", "overview": "Young Scottish doctor, Nicholas Garrigan decides it's time for an adventure after he finishes his formal education, so he decides to try his luck in Uganda, and arrives during the downfall of President Obote. General Idi Amin comes to power and asks Garrigan to become his personal doctor.", "text_for_embedding": "The Last King of Scotland (2006). Genres: Drama. Young Scottish doctor, Nicholas Garrigan decides it's time for an adventure after he finishes his formal education, so he decides to try his luck in Uganda, and arrives during the downfall of President Obote. General Idi Amin comes to power and asks Garrigan to become his personal doctor.. Tags: dictator, 1970s, general, kidnapping, naivety, luxury, oscar award, charisma, polygamy, uganda, dictatorship"} +{"id": "11361", "title": "Halloween 5: The Revenge of Michael Myers", "year": 1989, "duration_min": 96, "rating": 5.2, "genres": "Horror, Thriller", "genres_pipe": "|Horror|Thriller|", "keywords": "sheriff, barn, black, sequel, boogeyman, masked killer, slasher, youth, psychiatrist, killer, kitten, scythe, heroine, pitchfork, psychotronic", "tags_pipe": "|sheriff|barn|black|sequel|boogeyman|masked killer|slasher|youth|psychiatrist|killer|kitten|scythe|heroine|pitchfork|psychotronic|", "overview": "Presumed dead after a shoot-out with the Haddonfield police, Michael Myers is secretly nursed back to health -- and returns a year later to kill again and once more targets his young niece, Jamie. Jamie is now recovering in the local children's hospital after attacking her stepmother and losing her voice. Her mental link with her evil uncle may be the key to uprooting her family tree.", "text_for_embedding": "Halloween 5: The Revenge of Michael Myers (1989). Genres: Horror, Thriller. Presumed dead after a shoot-out with the Haddonfield police, Michael Myers is secretly nursed back to health -- and returns a year later to kill again and once more targets his young niece, Jamie. Jamie is now recovering in the local children's hospital after attacking her stepmother and losing her voice. Her mental link with her evil uncle may be the key to uprooting her family tree.. Tags: sheriff, barn, black, sequel, boogeyman, masked killer, slasher, youth, psychiatrist, killer, kitten, scythe, heroine, pitchfork, psychotronic"} +{"id": "92591", "title": "Bernie", "year": 2012, "duration_min": 100, "rating": 6.5, "genres": "Comedy, Crime, Drama", "genres_pipe": "|Comedy|Crime|Drama|", "keywords": "prison visit, funeral director, funeral home, amateur theater, embezzlement, missing persons case, hidden corpse, estranged family member, jury trial, hick, stock broker, corpse in freezer, confession of crime, duringcreditsstinger", "tags_pipe": "|prison visit|funeral director|funeral home|amateur theater|embezzlement|missing persons case|hidden corpse|estranged family member|jury trial|hick|stock broker|corpse in freezer|confession of crime|duringcreditsstinger|", "overview": "In this true story in the tiny, rural town of Carthage, TX, assistant funeral director Bernie Tiede was one of the town's most beloved residents. Everyone loved and appreciated Bernie, and it came as no surprise when he befriended Marjorie Nugent, an affluent widow who was as well known for her sour attitude as her fortune. Until that day news came that Marjorie Nugent had been dead for some time, and Bernie Tiede was being charged with the murder.", "text_for_embedding": "Bernie (2012). Genres: Comedy, Crime, Drama. In this true story in the tiny, rural town of Carthage, TX, assistant funeral director Bernie Tiede was one of the town's most beloved residents. Everyone loved and appreciated Bernie, and it came as no surprise when he befriended Marjorie Nugent, an affluent widow who was as well known for her sour attitude as her fortune. Until that day news came that Marjorie Nugent had been dead for some time, and Bernie Tiede was being charged with the murder.. Tags: prison visit, funeral director, funeral home, amateur theater, embezzlement, missing persons case, hidden corpse, estranged family member, jury trial, hick, stock broker, corpse in freezer, confession of crime, duringcreditsstinger"} +{"id": "57612", "title": "Dolphins and Whales: Tribes of the Ocean", "year": 2008, "duration_min": 42, "rating": 8.0, "genres": "Documentary", "genres_pipe": "|Documentary|", "keywords": "dolphin, whale, killer whale, imax, 3d, manatee, conservation", "tags_pipe": "|dolphin|whale|killer whale|imax|3d|manatee|conservation|", "overview": "This documentary goes to coral reefs of the Bahamas and the waters of the Kingdom of Tonga for a close encounter with the surviving tribes of the ocean: wild dolphins and belugas, the love of a Humpback mother for her newborn calf, the singing Humpback males, an orca the mighty King of the ocean, and the gentle manatee. Little-known aspects of these creatures capable of sophisticated communication and social interaction. Documents the life of these graceful, majestic yet endangered sea creatures", "text_for_embedding": "Dolphins and Whales: Tribes of the Ocean (2008). Genres: Documentary. This documentary goes to coral reefs of the Bahamas and the waters of the Kingdom of Tonga for a close encounter with the surviving tribes of the ocean: wild dolphins and belugas, the love of a Humpback mother for her newborn calf, the singing Humpback males, an orca the mighty King of the ocean, and the gentle manatee. Little-known aspects of these creatures capable of sophisticated communication and social interaction. Documents the life of these graceful, majestic yet endangered sea creatures. Tags: dolphin, whale, killer whale, imax, 3d, manatee, conservation"} +{"id": "12509", "title": "Pollock", "year": 2000, "duration_min": 122, "rating": 6.6, "genres": "Drama, Romance", "genres_pipe": "|Drama|Romance|", "keywords": "artist, success, relationship problems, alcoholism, independent film, falling in love", "tags_pipe": "|artist|success|relationship problems|alcoholism|independent film|falling in love|", "overview": "In August of 1949, Life Magazine ran a banner headline that begged the question: \"Jackson Pollock: Is he the greatest living painter in the United States?\" The film is a look back into the life of an extraordinary man, a man who has fittingly been called \"an artist dedicated to concealment, a celebrity who nobody knew.\" As he struggled with self-doubt, engaging in a lonely tug-of-war between needing to express himself and wanting to shut the world out, Pollock began a downward spiral.", "text_for_embedding": "Pollock (2000). Genres: Drama, Romance. In August of 1949, Life Magazine ran a banner headline that begged the question: \"Jackson Pollock: Is he the greatest living painter in the United States?\" The film is a look back into the life of an extraordinary man, a man who has fittingly been called \"an artist dedicated to concealment, a celebrity who nobody knew.\" As he struggled with self-doubt, engaging in a lonely tug-of-war between needing to express himself and wanting to shut the world out, Pollock began a downward spiral.. Tags: artist, success, relationship problems, alcoholism, independent film, falling in love"} +{"id": "15256", "title": "200 Cigarettes", "year": 1999, "duration_min": 101, "rating": 6.1, "genres": "Comedy, Drama, Romance", "genres_pipe": "|Comedy|Drama|Romance|", "keywords": "new year's eve, independent film, relationship, woman director, lower east side", "tags_pipe": "|new year's eve|independent film|relationship|woman director|lower east side|", "overview": "A collection of twentysomethings try to cope with relationships, loneliness, desire and their individual neuroses.", "text_for_embedding": "200 Cigarettes (1999). Genres: Comedy, Drama, Romance. A collection of twentysomethings try to cope with relationships, loneliness, desire and their individual neuroses.. Tags: new year's eve, independent film, relationship, woman director, lower east side"} +{"id": "83686", "title": "The Words", "year": 2012, "duration_min": 96, "rating": 6.4, "genres": "Drama, Thriller", "genres_pipe": "|Drama|Thriller|", "keywords": "plagiarized book, stolen novel, plagiarized novel, aspiring writer", "tags_pipe": "|plagiarized book|stolen novel|plagiarized novel|aspiring writer|", "overview": "The Words follows young writer Rory Jansen who finally achieves long sought after literary success after publishing the next great American novel. There's only one catch - he didn't write it. As the past comes back to haunt him and his literary star continues to rise, Jansen is forced to confront the steep price that must be paid for stealing another man's work, and for placing ambition and success above life's most fundamental three words.", "text_for_embedding": "The Words (2012). Genres: Drama, Thriller. The Words follows young writer Rory Jansen who finally achieves long sought after literary success after publishing the next great American novel. There's only one catch - he didn't write it. As the past comes back to haunt him and his literary star continues to rise, Jansen is forced to confront the steep price that must be paid for stealing another man's work, and for placing ambition and success above life's most fundamental three words.. Tags: plagiarized book, stolen novel, plagiarized novel, aspiring writer"} +{"id": "80304", "title": "Casa De Mi Padre", "year": 2012, "duration_min": 84, "rating": 5.5, "genres": "Comedy, Western", "genres_pipe": "|Comedy|Western|", "keywords": "mexico, organized crime, drug lord, padre, aftercreditsstinger, duringcreditsstinger", "tags_pipe": "|mexico|organized crime|drug lord|padre|aftercreditsstinger|duringcreditsstinger|", "overview": "Scheming of a way to save their father's ranch, the Alvarez brothers find themselves in a war with Mexico's most feared drug lord.", "text_for_embedding": "Casa De Mi Padre (2012). Genres: Comedy, Western. Scheming of a way to save their father's ranch, the Alvarez brothers find themselves in a war with Mexico's most feared drug lord.. Tags: mexico, organized crime, drug lord, padre, aftercreditsstinger, duringcreditsstinger"} +{"id": "28053", "title": "City Island", "year": 2009, "duration_min": 104, "rating": 6.9, "genres": "Drama, Comedy", "genres_pipe": "|Drama|Comedy|", "keywords": "secret, fetishism, stripper, family secrets, convict, chubby woman, extramarital affair", "tags_pipe": "|secret|fetishism|stripper|family secrets|convict|chubby woman|extramarital affair|", "overview": "The Rizzos, a family who doesn't share their habits, aspirations, and careers with one another, find their delicate web of lies disturbed by the arrival of a young ex-con brought home by Vince, the patriarch of the family, who is a corrections officer in real life, and a hopeful actor in private.", "text_for_embedding": "City Island (2009). Genres: Drama, Comedy. The Rizzos, a family who doesn't share their habits, aspirations, and careers with one another, find their delicate web of lies disturbed by the arrival of a young ex-con brought home by Vince, the patriarch of the family, who is a corrections officer in real life, and a hopeful actor in private.. Tags: secret, fetishism, stripper, family secrets, convict, chubby woman, extramarital affair"} +{"id": "67913", "title": "The Guard", "year": 2011, "duration_min": 96, "rating": 6.8, "genres": "Action, Comedy, Thriller, Crime", "genres_pipe": "|Action|Comedy|Thriller|Crime|", "keywords": "prostitute, blackmail, drug smuggle, rural ireland, dry humour", "tags_pipe": "|prostitute|blackmail|drug smuggle|rural ireland|dry humour|", "overview": "Two policemen must join forces to take on an international drug- smuggling gang - one, an unorthodox Irish policeman and the other, a straitlaced FBI agent. Sergeant Gerry Boyle is an eccentric small-town cop with a confrontational and crass personality and a subversive sense of humor. A longtime policeman in County Galway, Boyle is a maverick with his own moral code. He has seen enough of the world to know there isn't much to it and has had plenty of time to think about it. When a fellow police officer disappears and Boyle's small town becomes key to a large drug trafficking investigation, he is forced to at least feign interest when dealing with the humorless FBI agent Wendell Everett assigned to the case.", "text_for_embedding": "The Guard (2011). Genres: Action, Comedy, Thriller, Crime. Two policemen must join forces to take on an international drug- smuggling gang - one, an unorthodox Irish policeman and the other, a straitlaced FBI agent. Sergeant Gerry Boyle is an eccentric small-town cop with a confrontational and crass personality and a subversive sense of humor. A longtime policeman in County Galway, Boyle is a maverick with his own moral code. He has seen enough of the world to know there isn't much to it and has had plenty of time to think about it. When a fellow police officer disappears and Boyle's small town becomes key to a large drug trafficking investigation, he is forced to at least feign interest when dealing with the humorless FBI agent Wendell Everett assigned to the case.. Tags: prostitute, blackmail, drug smuggle, rural ireland, dry humour"} +{"id": "13991", "title": "College", "year": 2008, "duration_min": 94, "rating": 4.8, "genres": "Comedy", "genres_pipe": "|Comedy|", "keywords": "sexuality, college, girlfriend, vomit, celebration, fraternity, frat party", "tags_pipe": "|sexuality|college|girlfriend|vomit|celebration|fraternity|frat party|", "overview": "A wild weekend is in store for three high school seniors who visit a local college campus as prospective freshmen.", "text_for_embedding": "College (2008). Genres: Comedy. A wild weekend is in store for three high school seniors who visit a local college campus as prospective freshmen.. Tags: sexuality, college, girlfriend, vomit, celebration, fraternity, frat party"} +{"id": "1443", "title": "The Virgin Suicides", "year": 1999, "duration_min": 97, "rating": 7.1, "genres": "Drama, Romance", "genres_pipe": "|Drama|Romance|", "keywords": "michigan, 1970s, youth, family, woman director", "tags_pipe": "|michigan|1970s|youth|family|woman director|", "overview": "A group of male friends become obsessed with five mysterious sisters who are sheltered by their strict, religious parents.", "text_for_embedding": "The Virgin Suicides (1999). Genres: Drama, Romance. A group of male friends become obsessed with five mysterious sisters who are sheltered by their strict, religious parents.. Tags: michigan, 1970s, youth, family, woman director"} +{"id": "8545", "title": "Little Voice", "year": 1998, "duration_min": 97, "rating": 6.6, "genres": "Comedy, Drama", "genres_pipe": "|Comedy|Drama|", "keywords": "parents kids relationship, voice, loneliness, independent film, singer, cowardliness, carrier pigeon", "tags_pipe": "|parents kids relationship|voice|loneliness|independent film|singer|cowardliness|carrier pigeon|", "overview": "After the death of her father, Little Voice or LV becomes a virtual recluse, never going out and hardly ever saying a word. She just sits in her bedroom listening to her father's collection of old records of Shirley Bassey, Marilyn Monroe and various other famous female singers. But at night time, LV sings, imitating these great singers with surprising accuracy. One night she is overheard by one of her mother's boyfriends, who happens to be a talent agent. He manages to convince her that her talent is special and arranges for her to perform at the local night club, but several problems arise.", "text_for_embedding": "Little Voice (1998). Genres: Comedy, Drama. After the death of her father, Little Voice or LV becomes a virtual recluse, never going out and hardly ever saying a word. She just sits in her bedroom listening to her father's collection of old records of Shirley Bassey, Marilyn Monroe and various other famous female singers. But at night time, LV sings, imitating these great singers with surprising accuracy. One night she is overheard by one of her mother's boyfriends, who happens to be a talent agent. He manages to convince her that her talent is special and arranges for her to perform at the local night club, but several problems arise.. Tags: parents kids relationship, voice, loneliness, independent film, singer, cowardliness, carrier pigeon"} +{"id": "19556", "title": "Miss March", "year": 2009, "duration_min": 89, "rating": 5.4, "genres": "Comedy, Romance", "genres_pipe": "|Comedy|Romance|", "keywords": "sex, first time, virgin, road trip, playboy, duringcreditsstinger", "tags_pipe": "|sex|first time|virgin|road trip|playboy|duringcreditsstinger|", "overview": "A young man awakens from a four-year coma to hear that his once virginal high-school sweetheart has since become a centerfold in one of the world's most famous men's magazines. He and his sex-crazed best friend decide to take a cross-country road trip in order to crash a party at the magazine's legendary mansion headquarters and win back the girl.", "text_for_embedding": "Miss March (2009). Genres: Comedy, Romance. A young man awakens from a four-year coma to hear that his once virginal high-school sweetheart has since become a centerfold in one of the world's most famous men's magazines. He and his sex-crazed best friend decide to take a cross-country road trip in order to crash a party at the magazine's legendary mansion headquarters and win back the girl.. Tags: sex, first time, virgin, road trip, playboy, duringcreditsstinger"} +{"id": "231576", "title": "Wish I Was Here", "year": 2014, "duration_min": 120, "rating": 6.4, "genres": "Drama, Comedy", "genres_pipe": "|Drama|Comedy|", "keywords": "jew, independent film, homeschooling, family, struggling actor", "tags_pipe": "|jew|independent film|homeschooling|family|struggling actor|", "overview": "Aidan Bloom, a struggling actor, father and husband, is 35 years old and still trying to find a purpose for his life. He and his wife are barely getting by financially and Aidan passes his time by fantasizing about being the great futuristic Space-Knight he'd always dreamed he'd be as a little kid. When his ailing father can no longer afford to pay for private school for his two kids and the only available public school is on its last legs, Aidan reluctantly agrees to attempt to home-school them. Through teaching them about life his way, Aidan gradually discovers some of the parts of himself he couldn't find.", "text_for_embedding": "Wish I Was Here (2014). Genres: Drama, Comedy. Aidan Bloom, a struggling actor, father and husband, is 35 years old and still trying to find a purpose for his life. He and his wife are barely getting by financially and Aidan passes his time by fantasizing about being the great futuristic Space-Knight he'd always dreamed he'd be as a little kid. When his ailing father can no longer afford to pay for private school for his two kids and the only available public school is on its last legs, Aidan reluctantly agrees to attempt to home-school them. Through teaching them about life his way, Aidan gradually discovers some of the parts of himself he couldn't find.. Tags: jew, independent film, homeschooling, family, struggling actor"} +{"id": "16172", "title": "Simply Irresistible", "year": 1999, "duration_min": 95, "rating": 5.5, "genres": "Comedy", "genres_pipe": "|Comedy|", "keywords": "restaurant, department store, kitchen, love, crab, chef, irresistible", "tags_pipe": "|restaurant|department store|kitchen|love|crab|chef|irresistible|", "overview": "After her mother's death, mediocre chef Amanda Shelton is having trouble attracting customers to her family's restaurant. While shopping for ingredients, she is given a magical crab by mysterious Gene O'Reilly. Afterward, Amanda's dishes suddenly become excellent, inducing strong emotional reactions in everyone who eats them. Tom Bartlett, who is preparing to open his own eatery, tries her cooking and falls in love.", "text_for_embedding": "Simply Irresistible (1999). Genres: Comedy. After her mother's death, mediocre chef Amanda Shelton is having trouble attracting customers to her family's restaurant. While shopping for ingredients, she is given a magical crab by mysterious Gene O'Reilly. Afterward, Amanda's dishes suddenly become excellent, inducing strong emotional reactions in everyone who eats them. Tom Bartlett, who is preparing to open his own eatery, tries her cooking and falls in love.. Tags: restaurant, department store, kitchen, love, crab, chef, irresistible"} +{"id": "13403", "title": "Hedwig and the Angry Inch", "year": 2001, "duration_min": 95, "rating": 7.4, "genres": "Comedy, Music", "genres_pipe": "|Comedy|Music|", "keywords": "transvestism, gay, sex, singer, transgender, glam rock, self identity, rock odyssey, reference to kant, military brat, restaurant chain, lgbt in the military, child molestation, theatrical manager", "tags_pipe": "|transvestism|gay|sex|singer|transgender|glam rock|self identity|rock odyssey|reference to kant|military brat|restaurant chain|lgbt in the military|child molestation|theatrical manager|", "overview": "A transexual punk rock girl from East Berlin tours the US with her rock band as she tells her life story and follows the ex-boyfriend/bandmate who stole her songs.", "text_for_embedding": "Hedwig and the Angry Inch (2001). Genres: Comedy, Music. A transexual punk rock girl from East Berlin tours the US with her rock band as she tells her life story and follows the ex-boyfriend/bandmate who stole her songs.. Tags: transvestism, gay, sex, singer, transgender, glam rock, self identity, rock odyssey, reference to kant, military brat, restaurant chain, lgbt in the military, child molestation, theatrical manager"} +{"id": "15797", "title": "Only the Strong", "year": 1993, "duration_min": 99, "rating": 6.9, "genres": "Action", "genres_pipe": "|Action|", "keywords": "", "tags_pipe": "", "overview": "Former Green Beret Louis Stevens returns to his hometown of Miami after completing military service in Brazil, only to learn that his old high school has become a haven for gangs and drug dealers. After Stevens uses his capoeira skills to kick several drug dealers off of the school property, Kerrigan, one of Stevens' old teachers, sees the impact that Stevens has on the students. Kerrigan gives him the task of teaching Capoeira to a handful of the worst at-risk students at the school.", "text_for_embedding": "Only the Strong (1993). Genres: Action. Former Green Beret Louis Stevens returns to his hometown of Miami after completing military service in Brazil, only to learn that his old high school has become a haven for gangs and drug dealers. After Stevens uses his capoeira skills to kick several drug dealers off of the school property, Kerrigan, one of Stevens' old teachers, sees the impact that Stevens has on the students. Kerrigan gives him the task of teaching Capoeira to a handful of the worst at-risk students at the school.. Tags: "} +{"id": "347764", "title": "Goddess of Love", "year": 2015, "duration_min": 96, "rating": 6.2, "genres": "Mystery, Drama, Thriller, Horror", "genres_pipe": "|Mystery|Drama|Thriller|Horror|", "keywords": "", "tags_pipe": "", "overview": "Enter into a baroque vortex of madness when an emotionally unstable woman is shattered after tremendous heartbreak. Brian was the love of Venus’ life and the thought of him having an affair with another woman begins her volatile descent into the dark side of psychosexual insanity.", "text_for_embedding": "Goddess of Love (2015). Genres: Mystery, Drama, Thriller, Horror. Enter into a baroque vortex of madness when an emotionally unstable woman is shattered after tremendous heartbreak. Brian was the love of Venus’ life and the thought of him having an affair with another woman begins her volatile descent into the dark side of psychosexual insanity.. Tags: "} +{"id": "13537", "title": "Shattered Glass", "year": 2003, "duration_min": 94, "rating": 6.6, "genres": "Drama, History", "genres_pipe": "|Drama|History|", "keywords": "", "tags_pipe": "", "overview": "Fact-based 2003 drama about the young journalist Stephen Glass, who got a job at The New Republic in 1995 and for three years fabricated at least half of the stories he wrote.", "text_for_embedding": "Shattered Glass (2003). Genres: Drama, History. Fact-based 2003 drama about the young journalist Stephen Glass, who got a job at The New Republic in 1995 and for three years fabricated at least half of the stories he wrote.. Tags: "} +{"id": "20794", "title": "Novocaine", "year": 2001, "duration_min": 95, "rating": 6.0, "genres": "Comedy, Crime, Thriller", "genres_pipe": "|Comedy|Crime|Thriller|", "keywords": "murder, independent film, drug, dentist", "tags_pipe": "|murder|independent film|drug|dentist|", "overview": "A dentist finds himself a murder suspect after a sexy patient seduces him into prescribing her drugs", "text_for_embedding": "Novocaine (2001). Genres: Comedy, Crime, Thriller. A dentist finds himself a murder suspect after a sexy patient seduces him into prescribing her drugs. Tags: murder, independent film, drug, dentist"} +{"id": "31064", "title": "The Business of Strangers", "year": 2001, "duration_min": 84, "rating": 5.7, "genres": "Drama, Thriller", "genres_pipe": "|Drama|Thriller|", "keywords": "rape, sex, airport, authority, assistant, power, revenge, independent film, trust", "tags_pipe": "|rape|sex|airport|authority|assistant|power|revenge|independent film|trust|", "overview": "Julie Styron thinks she is going to be fired, but instead discovers that she is being promoted. Trapped in an airport hotel, she wants to celebrate but finds only the company of her young assistant, Paula Murphy. As the night progresses, the two women get to know each other. They flirt, they drink, they lie; personal flaws are revealed and exposed. But at the end of the night their relationship turns and becomes a complex battle of power, authority, and wit.", "text_for_embedding": "The Business of Strangers (2001). Genres: Drama, Thriller. Julie Styron thinks she is going to be fired, but instead discovers that she is being promoted. Trapped in an airport hotel, she wants to celebrate but finds only the company of her young assistant, Paula Murphy. As the night progresses, the two women get to know each other. They flirt, they drink, they lie; personal flaws are revealed and exposed. But at the end of the night their relationship turns and becomes a complex battle of power, authority, and wit.. Tags: rape, sex, airport, authority, assistant, power, revenge, independent film, trust"} +{"id": "576", "title": "The Wild Bunch", "year": 1969, "duration_min": 145, "rating": 7.6, "genres": "Adventure, Western", "genres_pipe": "|Adventure|Western|", "keywords": "underdog, robbery, bounty hunter, texas, mexican revolution, friendship, honor, gang, shootout, soldier, steam locomotive, righteous rage", "tags_pipe": "|underdog|robbery|bounty hunter|texas|mexican revolution|friendship|honor|gang|shootout|soldier|steam locomotive|righteous rage|", "overview": "Aging outlaw Pike Bishop (William Holden) prepares to retire after one final robbery. Joined by his gang, which includes Dutch Engstrom (Ernest Borgnine) and brothers Lyle (Warren Oates) and Tector Gorch (Ben Johnson), Bishop discovers the heist is a setup orchestrated in part by his old partner, Deke Thornton (Robert Ryan). As the remaining gang takes refuge in Mexican territory, Thornton trails them, resulting in fierce gunfights with plenty of casualties", "text_for_embedding": "The Wild Bunch (1969). Genres: Adventure, Western. Aging outlaw Pike Bishop (William Holden) prepares to retire after one final robbery. Joined by his gang, which includes Dutch Engstrom (Ernest Borgnine) and brothers Lyle (Warren Oates) and Tector Gorch (Ben Johnson), Bishop discovers the heist is a setup orchestrated in part by his old partner, Deke Thornton (Robert Ryan). As the remaining gang takes refuge in Mexican territory, Thornton trails them, resulting in fierce gunfights with plenty of casualties. Tags: underdog, robbery, bounty hunter, texas, mexican revolution, friendship, honor, gang, shootout, soldier, steam locomotive, righteous rage"} +{"id": "13990", "title": "The Wackness", "year": 2008, "duration_min": 99, "rating": 6.2, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "coming of age, marijuana, summer", "tags_pipe": "|coming of age|marijuana|summer|", "overview": "Set in New York City in the sweltering summer, The Wackness tells the story of a troubled teenage drug dealer, who trades pot for therapy sessions with a drug-addled psychiatrist. Things get more complicated when he falls for one of his classmates, who just happens to be the doctors daughter. This is a coming-of-age story about sex, drugs, music and what it takes to be a man.", "text_for_embedding": "The Wackness (2008). Genres: Drama. Set in New York City in the sweltering summer, The Wackness tells the story of a troubled teenage drug dealer, who trades pot for therapy sessions with a drug-addled psychiatrist. Things get more complicated when he falls for one of his classmates, who just happens to be the doctors daughter. This is a coming-of-age story about sex, drugs, music and what it takes to be a man.. Tags: coming of age, marijuana, summer"} +{"id": "11583", "title": "The First Great Train Robbery", "year": 1979, "duration_min": 110, "rating": 6.6, "genres": "Thriller, Adventure, Drama, Crime", "genres_pipe": "|Thriller|Adventure|Drama|Crime|", "keywords": "public hanging, strongbox, gold theft, british history, historic figure, piano playing, eye patch, horse carriage, opening action scene, unwanted kiss", "tags_pipe": "|public hanging|strongbox|gold theft|british history|historic figure|piano playing|eye patch|horse carriage|opening action scene|unwanted kiss|", "overview": "In Victorian England, a master criminal makes elaborate plans to steal a shipment of gold from a moving train.", "text_for_embedding": "The First Great Train Robbery (1979). Genres: Thriller, Adventure, Drama, Crime. In Victorian England, a master criminal makes elaborate plans to steal a shipment of gold from a moving train.. Tags: public hanging, strongbox, gold theft, british history, historic figure, piano playing, eye patch, horse carriage, opening action scene, unwanted kiss"} +{"id": "18602", "title": "Morvern Callar", "year": 2002, "duration_min": 97, "rating": 7.2, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "independent film, woman director", "tags_pipe": "|independent film|woman director|", "overview": "Following her boyfriend's suicide, supermarket clerk Morvern Callar passes off his unpublished novel as her own...", "text_for_embedding": "Morvern Callar (2002). Genres: Drama. Following her boyfriend's suicide, supermarket clerk Morvern Callar passes off his unpublished novel as her own.... Tags: independent film, woman director"} +{"id": "27549", "title": "Beastmaster 2: Through the Portal of Time", "year": 1991, "duration_min": 107, "rating": 4.6, "genres": "Action, Adventure, Fantasy, Science Fiction", "genres_pipe": "|Action|Adventure|Fantasy|Science Fiction|", "keywords": "based on novel, time travel, sequel, psychotronic, sword and sandal, beastmaster, warrior, time portal, gun fight, sword and sorcery", "tags_pipe": "|based on novel|time travel|sequel|psychotronic|sword and sandal|beastmaster|warrior|time portal|gun fight|sword and sorcery|", "overview": "Mark Singer returns as Dar, the warrior who can talk to the beasts. Dar is forced to travel to earth to stop his evil brother from stealing an atomic bomb, and turning their native land from a desert into... well... a desert! Written by Jim Palin", "text_for_embedding": "Beastmaster 2: Through the Portal of Time (1991). Genres: Action, Adventure, Fantasy, Science Fiction. Mark Singer returns as Dar, the warrior who can talk to the beasts. Dar is forced to travel to earth to stop his evil brother from stealing an atomic bomb, and turning their native land from a desert into... well... a desert! Written by Jim Palin. Tags: based on novel, time travel, sequel, psychotronic, sword and sandal, beastmaster, warrior, time portal, gun fight, sword and sorcery"} +{"id": "59728", "title": "The 5th Quarter", "year": 2011, "duration_min": 97, "rating": 4.7, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "american football, loss of brother, funeral, sport, prayer, gymnasium, coach, based on true story, number in title, family relationships, auto accident", "tags_pipe": "|american football|loss of brother|funeral|sport|prayer|gymnasium|coach|based on true story|number in title|family relationships|auto accident|", "overview": "In the wake of a car crash that killed his brother, football player Jon Abbate leads his school's struggling team to its most successful season ever.", "text_for_embedding": "The 5th Quarter (2011). Genres: Drama. In the wake of a car crash that killed his brother, football player Jon Abbate leads his school's struggling team to its most successful season ever.. Tags: american football, loss of brother, funeral, sport, prayer, gymnasium, coach, based on true story, number in title, family relationships, auto accident"} +{"id": "10930", "title": "The Flower of Evil", "year": 2003, "duration_min": 104, "rating": 5.7, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "return, suppressed past, bourgeoisie, mayor elections, suspense, wealth, family conflict", "tags_pipe": "|return|suppressed past|bourgeoisie|mayor elections|suspense|wealth|family conflict|", "overview": "Three generations of a wealthy Bordeaux family are caught in the crossfire when Anne decides to run for mayor, thanks to a political pamphlet that revives an old murder scandal.", "text_for_embedding": "The Flower of Evil (2003). Genres: Drama. Three generations of a wealthy Bordeaux family are caught in the crossfire when Anne decides to run for mayor, thanks to a political pamphlet that revives an old murder scandal.. Tags: return, suppressed past, bourgeoisie, mayor elections, suspense, wealth, family conflict"} +{"id": "32395", "title": "The Greatest", "year": 2009, "duration_min": 99, "rating": 6.2, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "woman director", "tags_pipe": "|woman director|", "overview": "Teenagers Rose and Bennett were in love, and then a car crash claimed Bennett's life. He left behind a grieving mother, father and younger brother, and Rose was left all alone. She has no family to turn to for support, so when she finds out she's pregnant, she winds up at the Brewer's door. She needs their help, and although they can't quite admit it, they each need her so they can begin to heal.", "text_for_embedding": "The Greatest (2009). Genres: Drama. Teenagers Rose and Bennett were in love, and then a car crash claimed Bennett's life. He left behind a grieving mother, father and younger brother, and Rose was left all alone. She has no family to turn to for support, so when she finds out she's pregnant, she winds up at the Brewer's door. She needs their help, and although they can't quite admit it, they each need her so they can begin to heal.. Tags: woman director"} +{"id": "58882", "title": "Snow Flower and the Secret Fan", "year": 2011, "duration_min": 104, "rating": 5.3, "genres": "Drama, History", "genres_pipe": "|Drama|History|", "keywords": "fan, duringcreditsstinger", "tags_pipe": "|fan|duringcreditsstinger|", "overview": "A story set in 19th century China and centered on the lifelong friendship between two girls who develop their own secret code as a way to contend with the rigid cultural norms imposed on women.", "text_for_embedding": "Snow Flower and the Secret Fan (2011). Genres: Drama, History. A story set in 19th century China and centered on the lifelong friendship between two girls who develop their own secret code as a way to contend with the rigid cultural norms imposed on women.. Tags: fan, duringcreditsstinger"} +{"id": "7547", "title": "Come Early Morning", "year": 2006, "duration_min": 97, "rating": 5.9, "genres": "Drama, Romance", "genres_pipe": "|Drama|Romance|", "keywords": "bar, motel, one-night stand, beer, blonde, dog, woman director", "tags_pipe": "|bar|motel|one-night stand|beer|blonde|dog|woman director|", "overview": "Lucy wakes up in bed with a stranger and obviously from a night of drinking. She checks out and pays for the motel room on her account. Through her grandmother, she finds out her father is in town and pays him a visit. She agrees to go to his new church.", "text_for_embedding": "Come Early Morning (2006). Genres: Drama, Romance. Lucy wakes up in bed with a stranger and obviously from a night of drinking. She checks out and pays for the motel room on her account. Through her grandmother, she finds out her father is in town and pays him a visit. She agrees to go to his new church.. Tags: bar, motel, one-night stand, beer, blonde, dog, woman director"} +{"id": "35944", "title": "Lucky Break", "year": 2001, "duration_min": 107, "rating": 6.5, "genres": "Action, Comedy", "genres_pipe": "|Action|Comedy|", "keywords": "", "tags_pipe": "", "overview": "Half-way through his 12-year prison sentence for an incompetent armed robbery, Jimmy Hands gets a lucky break: he's transferred to a prison from which he can probably escape. He convinces the governor to stage a musical in an old chapel next to the prison's outer wall. He rounds up volunteer actors and puts his escape plan into production. Two other barriers, besides the wall, confront him: the arrival of a nasty inmate, John Toombes, who insists on joining the escape, and Jimmy's feelings of attraction for Anabel, a social worker who agrees to appear in the play. Opening night approaches: is this Jimmy's breakout performance?", "text_for_embedding": "Lucky Break (2001). Genres: Action, Comedy. Half-way through his 12-year prison sentence for an incompetent armed robbery, Jimmy Hands gets a lucky break: he's transferred to a prison from which he can probably escape. He convinces the governor to stage a musical in an old chapel next to the prison's outer wall. He rounds up volunteer actors and puts his escape plan into production. Two other barriers, besides the wall, confront him: the arrival of a nasty inmate, John Toombes, who insists on joining the escape, and Jimmy's feelings of attraction for Anabel, a social worker who agrees to appear in the play. Opening night approaches: is this Jimmy's breakout performance?. Tags: "} +{"id": "42222", "title": "Julia", "year": 1977, "duration_min": 117, "rating": 6.3, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "friends, playwright", "tags_pipe": "|friends|playwright|", "overview": "At the behest of an old and dear friend, playwright Lillian Hellman undertakes a dangerous mission to smuggle funds into Nazi Germany.", "text_for_embedding": "Julia (1977). Genres: Drama. At the behest of an old and dear friend, playwright Lillian Hellman undertakes a dangerous mission to smuggle funds into Nazi Germany.. Tags: friends, playwright"} +{"id": "13827", "title": "Surfer, Dude", "year": 2008, "duration_min": 85, "rating": 4.7, "genres": "Comedy", "genres_pipe": "|Comedy|", "keywords": "surfing, sport", "tags_pipe": "|surfing|sport|", "overview": "A wave twisting tale of a soul searching surfer experiencing an existential crisis.", "text_for_embedding": "Surfer, Dude (2008). Genres: Comedy. A wave twisting tale of a soul searching surfer experiencing an existential crisis.. Tags: surfing, sport"} +{"id": "44260", "title": "Lake of Fire", "year": 2006, "duration_min": 152, "rating": 8.0, "genres": "Documentary", "genres_pipe": "|Documentary|", "keywords": "", "tags_pipe": "", "overview": "An unflinching look at the how the battle over abortion rights has played out in the United States over the last 15 years", "text_for_embedding": "Lake of Fire (2006). Genres: Documentary. An unflinching look at the how the battle over abortion rights has played out in the United States over the last 15 years. Tags: "} +{"id": "9282", "title": "11:14", "year": 2003, "duration_min": 86, "rating": 6.8, "genres": "Crime, Drama, Thriller", "genres_pipe": "|Crime|Drama|Thriller|", "keywords": "alcohol, sex, robbery, secret, gun, ambulance, vandalism, chase, arrest, police, cops, murder, crash, connected", "tags_pipe": "|alcohol|sex|robbery|secret|gun|ambulance|vandalism|chase|arrest|police|cops|murder|crash|connected|", "overview": "Tells the seemingly random yet vitally connected story of a set of incidents that all converge one evening at 11:14pm. The story follows the chain of events of five different characters and five different storylines that all converge to tell the story of murder and deceit.", "text_for_embedding": "11:14 (2003). Genres: Crime, Drama, Thriller. Tells the seemingly random yet vitally connected story of a set of incidents that all converge one evening at 11:14pm. The story follows the chain of events of five different characters and five different storylines that all converge to tell the story of murder and deceit.. Tags: alcohol, sex, robbery, secret, gun, ambulance, vandalism, chase, arrest, police, cops, murder, crash, connected"} +{"id": "38940", "title": "Men of War", "year": 1994, "duration_min": 103, "rating": 5.4, "genres": "Action, Thriller", "genres_pipe": "|Action|Thriller|", "keywords": "asia, island, mercenary, independent film, jungle", "tags_pipe": "|asia|island|mercenary|independent film|jungle|", "overview": "Nick Gunar is a burnt-out, jaded and hard-up former mercenary who is having a difficult time adjusting to civilian life. At the end of his rope, he is hired by the Nitro Mine Corporation to strong-arm the natives of a South China Sea island into giving up their rights to its valuable mineral resources. Nick loathes the thought of another mission, but this seemingly easy job will earn him enough money to get back with his estranged family. He recruits some of his former mercenary buddies to help him with the job. The island people refuse to give up their land and Nick decides to help them fight the greedy corporation that hired him. As greed and treachery begin to unravel, Nick's band of mercenaries choose sides.", "text_for_embedding": "Men of War (1994). Genres: Action, Thriller. Nick Gunar is a burnt-out, jaded and hard-up former mercenary who is having a difficult time adjusting to civilian life. At the end of his rope, he is hired by the Nitro Mine Corporation to strong-arm the natives of a South China Sea island into giving up their rights to its valuable mineral resources. Nick loathes the thought of another mission, but this seemingly easy job will earn him enough money to get back with his estranged family. He recruits some of his former mercenary buddies to help him with the job. The island people refuse to give up their land and Nick decides to help them fight the greedy corporation that hired him. As greed and treachery begin to unravel, Nick's band of mercenaries choose sides.. Tags: asia, island, mercenary, independent film, jungle"} +{"id": "35689", "title": "Don McKay", "year": 2009, "duration_min": 87, "rating": 5.4, "genres": "Crime, Mystery, Thriller", "genres_pipe": "|Crime|Mystery|Thriller|", "keywords": "independent film", "tags_pipe": "|independent film|", "overview": "Everything appears off-kilter when a man returns to his hometown after 25 years to visit his former lover.", "text_for_embedding": "Don McKay (2009). Genres: Crime, Mystery, Thriller. Everything appears off-kilter when a man returns to his hometown after 25 years to visit his former lover.. Tags: independent film"} +{"id": "97614", "title": "Deadfall", "year": 2012, "duration_min": 95, "rating": 5.6, "genres": "Crime, Drama, Thriller", "genres_pipe": "|Crime|Drama|Thriller|", "keywords": "partner, murder, on the run, fugitive, crime, family, homecoming, crime gone awry, dishonesty, siblings relations, chases and races, criminal heroes, cons and scams, murderous pair", "tags_pipe": "|partner|murder|on the run|fugitive|crime|family|homecoming|crime gone awry|dishonesty|siblings relations|chases and races|criminal heroes|cons and scams|murderous pair|", "overview": "A thriller that follows two siblings who decide to fend for themselves in the wake of a botched casino heist, and their unlikely reunion during another family's Thanksgiving celebration.", "text_for_embedding": "Deadfall (2012). Genres: Crime, Drama, Thriller. A thriller that follows two siblings who decide to fend for themselves in the wake of a botched casino heist, and their unlikely reunion during another family's Thanksgiving celebration.. Tags: partner, murder, on the run, fugitive, crime, family, homecoming, crime gone awry, dishonesty, siblings relations, chases and races, criminal heroes, cons and scams, murderous pair"} +{"id": "37206", "title": "A Shine of Rainbows", "year": 2009, "duration_min": 101, "rating": 6.3, "genres": "Drama, Family", "genres_pipe": "|Drama|Family|", "keywords": "orphan, rainbow", "tags_pipe": "|orphan|rainbow|", "overview": "An orphaned boy named Tomás is adopted by Maire O’Donnell to live on a whimsical Irish isle filled with new friends, secret caves and a lost baby pup seal stranded on the coast. But when Maire's reluctant husband Alec refuses to accept Tomás as his own son, the boy drifts down a fateful path of adventure and self-discovery, illuminating how rainbows can shine around - and within - us all.", "text_for_embedding": "A Shine of Rainbows (2009). Genres: Drama, Family. An orphaned boy named Tomás is adopted by Maire O’Donnell to live on a whimsical Irish isle filled with new friends, secret caves and a lost baby pup seal stranded on the coast. But when Maire's reluctant husband Alec refuses to accept Tomás as his own son, the boy drifts down a fateful path of adventure and self-discovery, illuminating how rainbows can shine around - and within - us all.. Tags: orphan, rainbow"} +{"id": "58626", "title": "The Hit List", "year": 2011, "duration_min": 90, "rating": 5.2, "genres": "Action, Thriller", "genres_pipe": "|Action|Thriller|", "keywords": "", "tags_pipe": "", "overview": "A disgruntled man creates a hit list with a stranger during a drunken night out and must then race to try to save those he marked for extermination as the bodies begin to pile up and all fingers point to him.", "text_for_embedding": "The Hit List (2011). Genres: Action, Thriller. A disgruntled man creates a hit list with a stranger during a drunken night out and must then race to try to save those he marked for extermination as the bodies begin to pile up and all fingers point to him.. Tags: "} +{"id": "183894", "title": "Emma", "year": 2009, "duration_min": 240, "rating": 7.6, "genres": "Romance, Comedy, Drama", "genres_pipe": "|Romance|Comedy|Drama|", "keywords": "", "tags_pipe": "", "overview": "Emma Woodhouse seems to be perfectly content, a loving father whom she cares for, friends, and a home. But Emma has a terrible habit - matchmaking. She cannot resist finding suitors for her friends, most of all Harriet Smith. Emma is desperate for Harriet to find happiness, but every suitor she finds for her friend ends up attracted to Emma herself. But is Emma so focused on Harriet's happiness that she is not considering her own happiness in love?", "text_for_embedding": "Emma (2009). Genres: Romance, Comedy, Drama. Emma Woodhouse seems to be perfectly content, a loving father whom she cares for, friends, and a home. But Emma has a terrible habit - matchmaking. She cannot resist finding suitors for her friends, most of all Harriet Smith. Emma is desperate for Harriet to find happiness, but every suitor she finds for her friend ends up attracted to Emma herself. But is Emma so focused on Harriet's happiness that she is not considering her own happiness in love?. Tags: "} +{"id": "837", "title": "Videodrome", "year": 1983, "duration_min": 87, "rating": 7.1, "genres": "Horror, Mystery, Science Fiction", "genres_pipe": "|Horror|Mystery|Science Fiction|", "keywords": "suicide, tv show, hallucination, tv station, radio presenter, toronto, dystopia, brainwashing, pittsburgh", "tags_pipe": "|suicide|tv show|hallucination|tv station|radio presenter|toronto|dystopia|brainwashing|pittsburgh|", "overview": "A sleazy cable-TV programmer begins to see his life and the future of media spin out of control in a very unusual fashion when he acquires a new kind of programming for his station.", "text_for_embedding": "Videodrome (1983). Genres: Horror, Mystery, Science Fiction. A sleazy cable-TV programmer begins to see his life and the future of media spin out of control in a very unusual fashion when he acquires a new kind of programming for his station.. Tags: suicide, tv show, hallucination, tv station, radio presenter, toronto, dystopia, brainwashing, pittsburgh"} +{"id": "1555", "title": "The Spanish Apartment", "year": 2002, "duration_min": 122, "rating": 7.0, "genres": "Drama, Comedy, Romance", "genres_pipe": "|Drama|Comedy|Romance|", "keywords": "paris, barcelona spain, alcohol, roommate, single, travel, crush, student, relationship, break-up, youth, celebration, group of friends", "tags_pipe": "|paris|barcelona spain|alcohol|roommate|single|travel|crush|student|relationship|break-up|youth|celebration|group of friends|", "overview": "A strait-laced French student moves into an apartment in Barcelona with a cast of six other characters from all over Europe. Together, they speak the international language of love and friendship.", "text_for_embedding": "The Spanish Apartment (2002). Genres: Drama, Comedy, Romance. A strait-laced French student moves into an apartment in Barcelona with a cast of six other characters from all over Europe. Together, they speak the international language of love and friendship.. Tags: paris, barcelona spain, alcohol, roommate, single, travel, crush, student, relationship, break-up, youth, celebration, group of friends"} +{"id": "244783", "title": "Song One", "year": 2014, "duration_min": 86, "rating": 5.5, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "woman director", "tags_pipe": "|woman director|", "overview": "Estranged from her family, Franny returns home when an accident leaves her brother comatose. Retracing his life as an aspiring musician, she tracks down his favorite musician, James Forester. Against the backdrop of Brooklyn’s music scene, Franny and James develop an unexpected relationship and face the realities of their lives.", "text_for_embedding": "Song One (2014). Genres: Drama. Estranged from her family, Franny returns home when an accident leaves her brother comatose. Retracing his life as an aspiring musician, she tracks down his favorite musician, James Forester. Against the backdrop of Brooklyn’s music scene, Franny and James develop an unexpected relationship and face the realities of their lives.. Tags: woman director"} +{"id": "16564", "title": "Winter in Wartime", "year": 2008, "duration_min": 103, "rating": 6.8, "genres": "Drama, History, War", "genres_pipe": "|Drama|History|War|", "keywords": "netherlands, world war ii", "tags_pipe": "|netherlands|world war ii|", "overview": "During World War II in the freezing Netherlands winter of 1944/1945 the western Netherlands are in the grip of a famine. Many people move east to provide for their families. Fourteen year old Michiel can't wait to join the Dutch resistance, to the dismay of his father, who, as mayor, works to prevent escalations in the village.", "text_for_embedding": "Winter in Wartime (2008). Genres: Drama, History, War. During World War II in the freezing Netherlands winter of 1944/1945 the western Netherlands are in the grip of a famine. Many people move east to provide for their families. Fourteen year old Michiel can't wait to join the Dutch resistance, to the dismay of his father, who, as mayor, works to prevent escalations in the village.. Tags: netherlands, world war ii"} +{"id": "168027", "title": "Freaky Deaky", "year": 2012, "duration_min": 90, "rating": 4.9, "genres": "Comedy", "genres_pipe": "|Comedy|", "keywords": "bomb squad, ex-fugitive, freaky", "tags_pipe": "|bomb squad|ex-fugitive|freaky|", "overview": "Set in 1974, a pair of '60s radicals rely on their bomb-making skills on their way to becoming capitalists.", "text_for_embedding": "Freaky Deaky (2012). Genres: Comedy. Set in 1974, a pair of '60s radicals rely on their bomb-making skills on their way to becoming capitalists.. Tags: bomb squad, ex-fugitive, freaky"} +{"id": "3482", "title": "The Train", "year": 1964, "duration_min": 133, "rating": 7.2, "genres": "Action, Drama, Thriller, War", "genres_pipe": "|Action|Drama|Thriller|War|", "keywords": "paris, france, world war ii, nazis, hijacking of train, artwork, train ride, painting, french resistance, train crash, nazi germany, art thief, art theft", "tags_pipe": "|paris|france|world war ii|nazis|hijacking of train|artwork|train ride|painting|french resistance|train crash|nazi germany|art thief|art theft|", "overview": "As the Allied forces approach Paris in August 1944, German Colonel Von Waldheim is desperate to take all of France's greatest paintings to Germany. He manages to secure a train to transport the valuable art works even as the chaos of retreat descends upon them. The French resistance however wants to stop them from stealing their national treasures but have received orders from London that they are not to be destroyed. The station master, Labiche, is tasked with scheduling the train and making it all happen smoothly but he is also part of a dwindling group of resistance fighters tasked with preventing the theft. He and others stage an elaborate ruse to keep the train from ever leaving French territory.", "text_for_embedding": "The Train (1964). Genres: Action, Drama, Thriller, War. As the Allied forces approach Paris in August 1944, German Colonel Von Waldheim is desperate to take all of France's greatest paintings to Germany. He manages to secure a train to transport the valuable art works even as the chaos of retreat descends upon them. The French resistance however wants to stop them from stealing their national treasures but have received orders from London that they are not to be destroyed. The station master, Labiche, is tasked with scheduling the train and making it all happen smoothly but he is also part of a dwindling group of resistance fighters tasked with preventing the theft. He and others stage an elaborate ruse to keep the train from ever leaving French territory.. Tags: paris, france, world war ii, nazis, hijacking of train, artwork, train ride, painting, french resistance, train crash, nazi germany, art thief, art theft"} +{"id": "135595", "title": "Trade Of Innocents", "year": 2012, "duration_min": 91, "rating": 5.5, "genres": "Drama, Thriller", "genres_pipe": "|Drama|Thriller|", "keywords": "", "tags_pipe": "", "overview": "In the back streets of a tourist town in present-day Southeast Asia, we find a filthy cinder block room; a bed with soiled sheets; a little girl waits for the next man. Alex (Dermot Mulroney), a human trafficking investigator, plays the role of her next customer as he negotiates with the pimp for the use of the child. Claire (Mira Sorvino), Alex's wife, is caught up in the flow of her new life in Southeast Asia and her role as a volunteer in an aftercare shelter for rescued girls where lives of local neighborhood girl's freedoms and dignity are threatened. Parallel story lines intertwine and unfold twists against the backdrop of the dangerous human trafficking world, in a story of struggle, life, hope and redemption in the \"TRADE of INNOCENTS.\"", "text_for_embedding": "Trade Of Innocents (2012). Genres: Drama, Thriller. In the back streets of a tourist town in present-day Southeast Asia, we find a filthy cinder block room; a bed with soiled sheets; a little girl waits for the next man. Alex (Dermot Mulroney), a human trafficking investigator, plays the role of her next customer as he negotiates with the pimp for the use of the child. Claire (Mira Sorvino), Alex's wife, is caught up in the flow of her new life in Southeast Asia and her role as a volunteer in an aftercare shelter for rescued girls where lives of local neighborhood girl's freedoms and dignity are threatened. Parallel story lines intertwine and unfold twists against the backdrop of the dangerous human trafficking world, in a story of struggle, life, hope and redemption in the \"TRADE of INNOCENTS.\". Tags: "} +{"id": "8982", "title": "The Protector", "year": 2005, "duration_min": 108, "rating": 6.8, "genres": "Action, Crime, Drama, Thriller", "genres_pipe": "|Action|Crime|Drama|Thriller|", "keywords": "buddhism, elephant, sydney, australia, fighter, tempel, gang, animal", "tags_pipe": "|buddhism|elephant|sydney|australia|fighter|tempel|gang|animal|", "overview": "In Bangkok, the young Kham was raised by his father in the jungle with elephants as members of their family. When his old elephant and the baby Kern are stolen by criminals, Kham finds that the animals were sent to Sidney. He travels to Australia, where he locates the baby elephant in a restaurant owned by the evil Madame Rose, the leader of an international Thai mafia. With the support of the efficient Thai sergeant Mark, who was involved in a conspiracy, Kham fights to rescue the animal from the mobsters.", "text_for_embedding": "The Protector (2005). Genres: Action, Crime, Drama, Thriller. In Bangkok, the young Kham was raised by his father in the jungle with elephants as members of their family. When his old elephant and the baby Kern are stolen by criminals, Kham finds that the animals were sent to Sidney. He travels to Australia, where he locates the baby elephant in a restaurant owned by the evil Madame Rose, the leader of an international Thai mafia. With the support of the efficient Thai sergeant Mark, who was involved in a conspiracy, Kham fights to rescue the animal from the mobsters.. Tags: buddhism, elephant, sydney, australia, fighter, tempel, gang, animal"} +{"id": "89861", "title": "Stiff Upper Lips", "year": 1998, "duration_min": 99, "rating": 10.0, "genres": "Comedy", "genres_pipe": "|Comedy|", "keywords": "italy, victorian england, young woman", "tags_pipe": "|italy|victorian england|young woman|", "overview": "Stiff Upper Lips is a broad parody of British period films, especially the lavish Merchant-Ivory productions of the 'eighties and early 'nineties. Although it specifically targets A Room with a View, Chariots of Fire, Maurice, A Passage to India, and many other films, in a more general way Stiff Upper Lips satirises popular perceptions of certain Edwardian traits: propriety, sexual repression, xenophobia, and class snobbery.", "text_for_embedding": "Stiff Upper Lips (1998). Genres: Comedy. Stiff Upper Lips is a broad parody of British period films, especially the lavish Merchant-Ivory productions of the 'eighties and early 'nineties. Although it specifically targets A Room with a View, Chariots of Fire, Maurice, A Passage to India, and many other films, in a more general way Stiff Upper Lips satirises popular perceptions of certain Edwardian traits: propriety, sexual repression, xenophobia, and class snobbery.. Tags: italy, victorian england, young woman"} +{"id": "455", "title": "Bend It Like Beckham", "year": 2002, "duration_min": 112, "rating": 6.2, "genres": "Comedy, Drama, Romance", "genres_pipe": "|Comedy|Drama|Romance|", "keywords": "london england, tradition, indian lead, culture clash, immigration, role of women, sikh, women's soccer, soccer, family, woman director", "tags_pipe": "|london england|tradition|indian lead|culture clash|immigration|role of women|sikh|women's soccer|soccer|family|woman director|", "overview": "Jess Bhamra, the daughter of a strict Indian couple in London, is not permitted to play organized soccer, even though she is 18. When Jess is playing for fun one day, her impressive skills are seen by Jules Paxton, who then convinces Jess to play for her semi-pro team. Jess uses elaborate excuses to hide her matches from her family while also dealing with her romantic feelings for her coach, Joe.", "text_for_embedding": "Bend It Like Beckham (2002). Genres: Comedy, Drama, Romance. Jess Bhamra, the daughter of a strict Indian couple in London, is not permitted to play organized soccer, even though she is 18. When Jess is playing for fun one day, her impressive skills are seen by Jules Paxton, who then convinces Jess to play for her semi-pro team. Jess uses elaborate excuses to hide her matches from her family while also dealing with her romantic feelings for her coach, Joe.. Tags: london england, tradition, indian lead, culture clash, immigration, role of women, sikh, women's soccer, soccer, family, woman director"} +{"id": "57022", "title": "Sunshine State", "year": 2002, "duration_min": 141, "rating": 6.0, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "independent film", "tags_pipe": "|independent film|", "overview": "A woman and her new husband returns to her hometown roots in coastal northern Florida, and must deal with family, business, and encroaching real estate development.", "text_for_embedding": "Sunshine State (2002). Genres: Drama. A woman and her new husband returns to her hometown roots in coastal northern Florida, and must deal with family, business, and encroaching real estate development.. Tags: independent film"} +{"id": "14351", "title": "Crossover", "year": 2006, "duration_min": 95, "rating": 4.2, "genres": "Action, Adventure, Drama", "genres_pipe": "|Action|Adventure|Drama|", "keywords": "street gang, black people, sport, high school sports", "tags_pipe": "|street gang|black people|sport|high school sports|", "overview": "The clock strikes midnight, money changes hands, the crowd is on their feet, and the court is alive with fast-paced razzle-dazzle basketball. These players don't play for a school or a pro team. They play for the street and it's underground...way underground.", "text_for_embedding": "Crossover (2006). Genres: Action, Adventure, Drama. The clock strikes midnight, money changes hands, the crowd is on their feet, and the court is alive with fast-paced razzle-dazzle basketball. These players don't play for a school or a pro team. They play for the street and it's underground...way underground.. Tags: street gang, black people, sport, high school sports"} +{"id": "147767", "title": "Khiladi 786", "year": 2012, "duration_min": 139, "rating": 4.7, "genres": "Action, Comedy", "genres_pipe": "|Action|Comedy|", "keywords": "", "tags_pipe": "", "overview": "The 8th installment in the Khiladi series.", "text_for_embedding": "Khiladi 786 (2012). Genres: Action, Comedy. The 8th installment in the Khiladi series.. Tags: "} +{"id": "10664", "title": "[REC]²", "year": 2009, "duration_min": 85, "rating": 6.4, "genres": "Thriller, Horror", "genres_pipe": "|Thriller|Horror|", "keywords": "religion and supernatural, blood sample, occult, swat team, gas mask, night vision, freezer, found footage", "tags_pipe": "|religion and supernatural|blood sample|occult|swat team|gas mask|night vision|freezer|found footage|", "overview": "The action continues from [REC], with the medical officer and a SWAT team outfitted with video cameras are sent into the sealed off apartment to control the situation.", "text_for_embedding": "[REC]² (2009). Genres: Thriller, Horror. The action continues from [REC], with the medical officer and a SWAT team outfitted with video cameras are sent into the sealed off apartment to control the situation.. Tags: religion and supernatural, blood sample, occult, swat team, gas mask, night vision, freezer, found footage"} +{"id": "55567", "title": "Standing Ovation", "year": 2010, "duration_min": 105, "rating": 3.9, "genres": "Comedy, Music, Family", "genres_pipe": "|Comedy|Music|Family|", "keywords": "", "tags_pipe": "", "overview": "A group of young girls is competing in a nation teen music video competition.", "text_for_embedding": "Standing Ovation (2010). Genres: Comedy, Music, Family. A group of young girls is competing in a nation teen music video competition.. Tags: "} +{"id": "9277", "title": "The Sting", "year": 1973, "duration_min": 129, "rating": 7.9, "genres": "Comedy, Crime, Drama", "genres_pipe": "|Comedy|Crime|Drama|", "keywords": "chicago, bet, horse race, repayment, con man, mafia boss, violence, ragtime, reference to mutt and jeff, off track betting, sting operation, alley, 1930s, 20th century", "tags_pipe": "|chicago|bet|horse race|repayment|con man|mafia boss|violence|ragtime|reference to mutt and jeff|off track betting|sting operation|alley|1930s|20th century|", "overview": "Set in the 1930's this intricate caper deals with an ambitious small-time crook and a veteran con man who seek revenge on a vicious crime lord who murdered one of their gang.", "text_for_embedding": "The Sting (1973). Genres: Comedy, Crime, Drama. Set in the 1930's this intricate caper deals with an ambitious small-time crook and a veteran con man who seek revenge on a vicious crime lord who murdered one of their gang.. Tags: chicago, bet, horse race, repayment, con man, mafia boss, violence, ragtime, reference to mutt and jeff, off track betting, sting operation, alley, 1930s, 20th century"} +{"id": "9443", "title": "Chariots of Fire", "year": 1981, "duration_min": 123, "rating": 6.8, "genres": "Drama, History", "genres_pipe": "|Drama|History|", "keywords": "underdog, scotland, jewry, patriotism, olympic games, jew, olympian sports team, ambition", "tags_pipe": "|underdog|scotland|jewry|patriotism|olympic games|jew|olympian sports team|ambition|", "overview": "The true story of British athletes preparing for and competing in the 1924 Summer Olympics.", "text_for_embedding": "Chariots of Fire (1981). Genres: Drama, History. The true story of British athletes preparing for and competing in the 1924 Summer Olympics.. Tags: underdog, scotland, jewry, patriotism, olympic games, jew, olympian sports team, ambition"} +{"id": "16186", "title": "Diary of a Mad Black Woman", "year": 2005, "duration_min": 116, "rating": 6.4, "genres": "Comedy, Drama, Romance", "genres_pipe": "|Comedy|Drama|Romance|", "keywords": "", "tags_pipe": "", "overview": "Charles McCarter and his wife Helen are about to celebrate their 18th-wedding anniversary when Helen comes home to find her clothes packed up in a U-Haul van parked in the driveway. Charles is divorcing Her. Helen moves in with her grandmother Madea, an old woman who doesn't take any lip from anyone. Madea helps Helen through these tough times by showing her what is really important in life.", "text_for_embedding": "Diary of a Mad Black Woman (2005). Genres: Comedy, Drama, Romance. Charles McCarter and his wife Helen are about to celebrate their 18th-wedding anniversary when Helen comes home to find her clothes packed up in a U-Haul van parked in the driveway. Charles is divorcing Her. Helen moves in with her grandmother Madea, an old woman who doesn't take any lip from anyone. Madea helps Helen through these tough times by showing her what is really important in life.. Tags: "} +{"id": "7863", "title": "Shine", "year": 1996, "duration_min": 105, "rating": 7.3, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "letter, jumping, child prodigy, pool, pianist, concert hall, breakdown", "tags_pipe": "|letter|jumping|child prodigy|pool|pianist|concert hall|breakdown|", "overview": "Pianist David Helfgott, driven by his father and teachers, has a breakdown. Years later he returns to the piano, to popular if not critical acclaim.", "text_for_embedding": "Shine (1996). Genres: Drama. Pianist David Helfgott, driven by his father and teachers, has a breakdown. Years later he returns to the piano, to popular if not critical acclaim.. Tags: letter, jumping, child prodigy, pool, pianist, concert hall, breakdown"} +{"id": "138697", "title": "Don Jon", "year": 2013, "duration_min": 90, "rating": 5.9, "genres": "Romance, Comedy, Drama", "genres_pipe": "|Romance|Comedy|Drama|", "keywords": "pornography, sex, sex addiction, male female relationship, internet porn, male masturbation, masturbation", "tags_pipe": "|pornography|sex|sex addiction|male female relationship|internet porn|male masturbation|masturbation|", "overview": "A New Jersey guy dedicated to his family, friends, and church, develops unrealistic expectations from watching porn and works to find happiness and intimacy with his potential true love.", "text_for_embedding": "Don Jon (2013). Genres: Romance, Comedy, Drama. A New Jersey guy dedicated to his family, friends, and church, develops unrealistic expectations from watching porn and works to find happiness and intimacy with his potential true love.. Tags: pornography, sex, sex addiction, male female relationship, internet porn, male masturbation, masturbation"} +{"id": "11901", "title": "High Plains Drifter", "year": 1973, "duration_min": 105, "rating": 7.4, "genres": "Western", "genres_pipe": "|Western|", "keywords": "gunslinger, desperation, outlaw", "tags_pipe": "|gunslinger|desperation|outlaw|", "overview": "A gunfighting stranger comes to the small settlement of Lago. After gunning down three gunmen who tried to kill him, the townsfolk decide to hire the Stranger to hold off three outlaws who are on their way.", "text_for_embedding": "High Plains Drifter (1973). Genres: Western. A gunfighting stranger comes to the small settlement of Lago. After gunning down three gunmen who tried to kill him, the townsfolk decide to hire the Stranger to hold off three outlaws who are on their way.. Tags: gunslinger, desperation, outlaw"} +{"id": "1548", "title": "Ghost World", "year": 2001, "duration_min": 111, "rating": 7.1, "genres": "Comedy, Drama", "genres_pipe": "|Comedy|Drama|", "keywords": "high school friends, art class, record collector, plaster, personal ad, blues music, nunchaku, prank telephone call, aftercreditsstinger", "tags_pipe": "|high school friends|art class|record collector|plaster|personal ad|blues music|nunchaku|prank telephone call|aftercreditsstinger|", "overview": "A quirky girl tries to figure out what to do now that she had graduated from high school, and forms a friendship with an eccentric 40-year-old record collector after playing a prank on him with her best friend.", "text_for_embedding": "Ghost World (2001). Genres: Comedy, Drama. A quirky girl tries to figure out what to do now that she had graduated from high school, and forms a friendship with an eccentric 40-year-old record collector after playing a prank on him with her best friend.. Tags: high school friends, art class, record collector, plaster, personal ad, blues music, nunchaku, prank telephone call, aftercreditsstinger"} +{"id": "11889", "title": "Iris", "year": 2001, "duration_min": 91, "rating": 6.2, "genres": "Drama, Romance", "genres_pipe": "|Drama|Romance|", "keywords": "based on novel, new love, love of one's life, retiree, aging, alzheimer, pflegen, love, author, short-term memory, photographic memory", "tags_pipe": "|based on novel|new love|love of one's life|retiree|aging|alzheimer|pflegen|love|author|short-term memory|photographic memory|", "overview": "True story of the lifelong romance between novelist Iris Murdoch and her husband John Bayley, from their student days through her battle with Alzheimer's disease.", "text_for_embedding": "Iris (2001). Genres: Drama, Romance. True story of the lifelong romance between novelist Iris Murdoch and her husband John Bayley, from their student days through her battle with Alzheimer's disease.. Tags: based on novel, new love, love of one's life, retiree, aging, alzheimer, pflegen, love, author, short-term memory, photographic memory"} +{"id": "33155", "title": "Galaxina", "year": 1980, "duration_min": 95, "rating": 3.3, "genres": "Comedy, Science Fiction", "genres_pipe": "|Comedy|Science Fiction|", "keywords": "android, harley davidson, cryogenics, space travel, love, parody, spaceship, space, alien, motorcycle, exercise, lasers, force field, meta film, forcefield", "tags_pipe": "|android|harley davidson|cryogenics|space travel|love|parody|spaceship|space|alien|motorcycle|exercise|lasers|force field|meta film|forcefield|", "overview": "Galaxina is a lifelike, voluptuous android who is assigned to oversee the operations of an intergalactic Space Police cruiser captained by incompetent Cornelius Butt. When a mission requires the ship's crew to be placed in suspended animation for decades, Galaxina finds herself alone for many years, developing emotions and falling in love with the ship's pilot, Thor.", "text_for_embedding": "Galaxina (1980). Genres: Comedy, Science Fiction. Galaxina is a lifelike, voluptuous android who is assigned to oversee the operations of an intergalactic Space Police cruiser captained by incompetent Cornelius Butt. When a mission requires the ship's crew to be placed in suspended animation for decades, Galaxina finds herself alone for many years, developing emotions and falling in love with the ship's pilot, Thor.. Tags: android, harley davidson, cryogenics, space travel, love, parody, spaceship, space, alien, motorcycle, exercise, lasers, force field, meta film, forcefield"} +{"id": "5528", "title": "The Chorus", "year": 2004, "duration_min": 96, "rating": 7.5, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "penalty, choir, diary, musical, boy's choir, dormitory, music, boarding school, children, principal, boys' boarding school, 1940s", "tags_pipe": "|penalty|choir|diary|musical|boy's choir|dormitory|music|boarding school|children|principal|boys' boarding school|1940s|", "overview": "Set in 1940's France, a new teacher at a school for disruptive boys gives hope and inspiration.", "text_for_embedding": "The Chorus (2004). Genres: Drama. Set in 1940's France, a new teacher at a school for disruptive boys gives hope and inspiration.. Tags: penalty, choir, diary, musical, boy's choir, dormitory, music, boarding school, children, principal, boys' boarding school, 1940s"} +{"id": "321", "title": "Mambo Italiano", "year": 2003, "duration_min": 92, "rating": 5.6, "genres": "Comedy, Romance", "genres_pipe": "|Comedy|Romance|", "keywords": "gay, father son relationship, sex, italo-american, lovesickness, italian, canada, new love, coming out, macho, based on play, gay relationship, family, family feud, lgbt", "tags_pipe": "|gay|father son relationship|sex|italo-american|lovesickness|italian|canada|new love|coming out|macho|based on play|gay relationship|family|family feud|lgbt|", "overview": "A sweet comic film about an Italian man who comes out of the closet and the affect it has on his life and his crazy family. A family movie about the stereotypes of homosexuals and Italians – called by critics \"the gay\" My Big Fat Greek Wedding.", "text_for_embedding": "Mambo Italiano (2003). Genres: Comedy, Romance. A sweet comic film about an Italian man who comes out of the closet and the affect it has on his life and his crazy family. A family movie about the stereotypes of homosexuals and Italians – called by critics \"the gay\" My Big Fat Greek Wedding.. Tags: gay, father son relationship, sex, italo-american, lovesickness, italian, canada, new love, coming out, macho, based on play, gay relationship, family, family feud, lgbt"} +{"id": "4997", "title": "Wonderland", "year": 2003, "duration_min": 104, "rating": 6.2, "genres": "Crime, Drama, Mystery, Thriller", "genres_pipe": "|Crime|Drama|Mystery|Thriller|", "keywords": "robbery, junkie, investigation, porno star, murder, los angeles, violence, drug", "tags_pipe": "|robbery|junkie|investigation|porno star|murder|los angeles|violence|drug|", "overview": "On the afternoon of July 1, 1981, Los Angeles police responded to a distress call on Wonderland Avenue and discovered a grisly quadruple homicide. The police investigation that followed uncovered two versions of the events leading up to the brutal murders - both involving legendary porn actor John Holmes. You're about to experience both versions.", "text_for_embedding": "Wonderland (2003). Genres: Crime, Drama, Mystery, Thriller. On the afternoon of July 1, 1981, Los Angeles police responded to a distress call on Wonderland Avenue and discovered a grisly quadruple homicide. The police investigation that followed uncovered two versions of the events leading up to the brutal murders - both involving legendary porn actor John Holmes. You're about to experience both versions.. Tags: robbery, junkie, investigation, porno star, murder, los angeles, violence, drug"} +{"id": "925", "title": "Do the Right Thing", "year": 1989, "duration_min": 120, "rating": 7.6, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "black people, italo-american, police brutality, sun glasses, culture clash, street war, heat, restaurant critic, radio transmission, punk, chaos, police operation, pizzeria, pizza, money", "tags_pipe": "|black people|italo-american|police brutality|sun glasses|culture clash|street war|heat|restaurant critic|radio transmission|punk|chaos|police operation|pizzeria|pizza|money|", "overview": "On the hottest day of the year on a street in the Bedford-Stuyvesant section of Brooklyn, everyone's hate and bigotry smolders and builds until it explodes into violence.", "text_for_embedding": "Do the Right Thing (1989). Genres: Drama. On the hottest day of the year on a street in the Bedford-Stuyvesant section of Brooklyn, everyone's hate and bigotry smolders and builds until it explodes into violence.. Tags: black people, italo-american, police brutality, sun glasses, culture clash, street war, heat, restaurant critic, radio transmission, punk, chaos, police operation, pizzeria, pizza, money"} +{"id": "27451", "title": "Harvard Man", "year": 2001, "duration_min": 99, "rating": 4.8, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "gambling, sex, college, basketball, mafia, drug", "tags_pipe": "|gambling|sex|college|basketball|mafia|drug|", "overview": "College has always been a time for experimentation, sexual, cultural and otherwise. \"Harvard Man\" plays out against a background of love, sex, basketball, crime and experimentation. Action and philosophy in young people's quest to discover their true identity.", "text_for_embedding": "Harvard Man (2001). Genres: Drama. College has always been a time for experimentation, sexual, cultural and otherwise. \"Harvard Man\" plays out against a background of love, sex, basketball, crime and experimentation. Action and philosophy in young people's quest to discover their true identity.. Tags: gambling, sex, college, basketball, mafia, drug"} +{"id": "73532", "title": "Le Havre", "year": 2011, "duration_min": 93, "rating": 6.8, "genres": "Drama, Comedy", "genres_pipe": "|Drama|Comedy|", "keywords": "poverty, policeman, shoe shiner, northern france", "tags_pipe": "|poverty|policeman|shoe shiner|northern france|", "overview": "Marcel Marx, a former bohemian and struggling author, has given up his literary ambitions and relocated to the port city Le Havre. He leads a simple life based around his wife Arletty, his favourite bar and his not too profitable profession as a shoeshiner. As Arletty suddenly becomes seriously ill, Marcel's path crosses with an underage illegal immigrant from Africa, who needs Marcel's help to hide from the police.", "text_for_embedding": "Le Havre (2011). Genres: Drama, Comedy. Marcel Marx, a former bohemian and struggling author, has given up his literary ambitions and relocated to the port city Le Havre. He leads a simple life based around his wife Arletty, his favourite bar and his not too profitable profession as a shoeshiner. As Arletty suddenly becomes seriously ill, Marcel's path crosses with an underage illegal immigrant from Africa, who needs Marcel's help to hide from the police.. Tags: poverty, policeman, shoe shiner, northern france"} +{"id": "979", "title": "Irreversible", "year": 2002, "duration_min": 97, "rating": 7.1, "genres": "Drama, Thriller, Crime, Mystery", "genres_pipe": "|Drama|Thriller|Crime|Mystery|", "keywords": "paris, prostitute, rape, sex, nudity, trauma, knife, assault, police, love, revenge, unsimulated sex, cruelty, brutality, violence", "tags_pipe": "|paris|prostitute|rape|sex|nudity|trauma|knife|assault|police|love|revenge|unsimulated sex|cruelty|brutality|violence|", "overview": "Events over the course of one traumatic night in Paris unfold in reverse-chronological order as the beautiful Alex is brutally raped and beaten by a stranger in the underpass. Her boyfriend and ex-lover take matters into their own hands by hiring two criminals to help them find the rapist so that they can exact revenge. A simultaneously beautiful and terrible examination of the destructive nature of cause and effect, and how time destroys everything.", "text_for_embedding": "Irreversible (2002). Genres: Drama, Thriller, Crime, Mystery. Events over the course of one traumatic night in Paris unfold in reverse-chronological order as the beautiful Alex is brutally raped and beaten by a stranger in the underpass. Her boyfriend and ex-lover take matters into their own hands by hiring two criminals to help them find the rapist so that they can exact revenge. A simultaneously beautiful and terrible examination of the destructive nature of cause and effect, and how time destroys everything.. Tags: paris, prostitute, rape, sex, nudity, trauma, knife, assault, police, love, revenge, unsimulated sex, cruelty, brutality, violence"} +{"id": "193722", "title": "R100", "year": 2013, "duration_min": 100, "rating": 5.4, "genres": "Comedy, Drama", "genres_pipe": "|Comedy|Drama|", "keywords": "dominatrix, bdsm", "tags_pipe": "|dominatrix|bdsm|", "overview": "Ruthless dominatrixes pursue a mild-mannered salesman who wants to get out of his unbreakable contract with a secret bondage club.", "text_for_embedding": "R100 (2013). Genres: Comedy, Drama. Ruthless dominatrixes pursue a mild-mannered salesman who wants to get out of his unbreakable contract with a secret bondage club.. Tags: dominatrix, bdsm"} +{"id": "7913", "title": "Rang De Basanti", "year": 2006, "duration_min": 157, "rating": 7.2, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "new delhi india, students' movement, war of independence, student, celebration", "tags_pipe": "|new delhi india|students' movement|war of independence|student|celebration|", "overview": "A young idealistic English filmmaker, Sue, arrives in India to make a film on Indian revolutionaries Bhagat Singh, Chandrashekhar Azad and their contemporaries and their fight for freedom from the British Raj. Owing to a lack of funds, she recruits students from Delhi University to act in her docu-drama. She finds DJ, who passed out five years back but still wants to be a part of the University because he doesn't think there's too much out there in the real world to look forward to. Karan, the son of Industrialist Rajnath Singhania, who shares an uncomfortable relationship with his father, but continues to live off him, albeit very grudgingly. Aslam, is a middle class Muslim boy, who lives in the by-lanes near Jama Masjid, poet, philosopher and guide to his friends. Sukhi, the group's baby, innocent, vulnerable and with a weakness for only one thing - girls. Laxman Pandey...", "text_for_embedding": "Rang De Basanti (2006). Genres: Drama. A young idealistic English filmmaker, Sue, arrives in India to make a film on Indian revolutionaries Bhagat Singh, Chandrashekhar Azad and their contemporaries and their fight for freedom from the British Raj. Owing to a lack of funds, she recruits students from Delhi University to act in her docu-drama. She finds DJ, who passed out five years back but still wants to be a part of the University because he doesn't think there's too much out there in the real world to look forward to. Karan, the son of Industrialist Rajnath Singhania, who shares an uncomfortable relationship with his father, but continues to live off him, albeit very grudgingly. Aslam, is a middle class Muslim boy, who lives in the by-lanes near Jama Masjid, poet, philosopher and guide to his friends. Sukhi, the group's baby, innocent, vulnerable and with a weakness for only one thing - girls. Laxman Pandey.... Tags: new delhi india, students' movement, war of independence, student, celebration"} +{"id": "253253", "title": "Animals", "year": 2014, "duration_min": 90, "rating": 6.2, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "", "tags_pipe": "", "overview": "ANIMALS tells the story of Jude and Bobbie: a young couple that exist somewhere between homelessness and the fantasy of their imaginations. Though they masterfully con and steal in an attempt to stay one step ahead of their addiction, they are ultimately forced to face the reality of their situation when one of them gets hospitalized.", "text_for_embedding": "Animals (2014). Genres: Drama. ANIMALS tells the story of Jude and Bobbie: a young couple that exist somewhere between homelessness and the fantasy of their imaginations. Though they masterfully con and steal in an attempt to stay one step ahead of their addiction, they are ultimately forced to face the reality of their situation when one of them gets hospitalized.. Tags: "} +{"id": "51995", "title": "Salvation Boulevard", "year": 2011, "duration_min": 96, "rating": 5.6, "genres": "Comedy, Thriller, Action, Drama", "genres_pipe": "|Comedy|Thriller|Action|Drama|", "keywords": "pastor, church service, spirituality, religion", "tags_pipe": "|pastor|church service|spirituality|religion|", "overview": "Set in the world of mega-churches in which a former Deadhead-turned-born again-Christian finds himself on the run from fundamentalist members of his mega-church who will do anything to protect their larger-than-life pastor.", "text_for_embedding": "Salvation Boulevard (2011). Genres: Comedy, Thriller, Action, Drama. Set in the world of mega-churches in which a former Deadhead-turned-born again-Christian finds himself on the run from fundamentalist members of his mega-church who will do anything to protect their larger-than-life pastor.. Tags: pastor, church service, spirituality, religion"} +{"id": "13173", "title": "The Ten", "year": 2007, "duration_min": 96, "rating": 4.9, "genres": "Comedy", "genres_pipe": "|Comedy|", "keywords": "independent film, ventriloquist dummy, multiple storylines, sabbath, brain scan, radiation sickness, parachutist, rubik's cube", "tags_pipe": "|independent film|ventriloquist dummy|multiple storylines|sabbath|brain scan|radiation sickness|parachutist|rubik's cube|", "overview": "Ten stories, each inspired by one of the ten commandments.", "text_for_embedding": "The Ten (2007). Genres: Comedy. Ten stories, each inspired by one of the ten commandments.. Tags: independent film, ventriloquist dummy, multiple storylines, sabbath, brain scan, radiation sickness, parachutist, rubik's cube"} +{"id": "22908", "title": "A Room for Romeo Brass", "year": 1999, "duration_min": 90, "rating": 7.3, "genres": "Drama, Comedy, Foreign", "genres_pipe": "|Drama|Comedy|Foreign|", "keywords": "rejection, friendship, youth", "tags_pipe": "|rejection|friendship|youth|", "overview": "Two twelve-year-old boys, Romeo and Gavin, undergo an extraordinary test of character and friendship when Morell, a naive but eccentric and dangerous stranger, comes between them. Morell befriends with the two boys and later asks them to help him pursue Romeo's beautiful elder sister. He gradually becomes more violent after she rejects him.", "text_for_embedding": "A Room for Romeo Brass (1999). Genres: Drama, Comedy, Foreign. Two twelve-year-old boys, Romeo and Gavin, undergo an extraordinary test of character and friendship when Morell, a naive but eccentric and dangerous stranger, comes between them. Morell befriends with the two boys and later asks them to help him pursue Romeo's beautiful elder sister. He gradually becomes more violent after she rejects him.. Tags: rejection, friendship, youth"} +{"id": "70670", "title": "Headhunters", "year": 2011, "duration_min": 100, "rating": 7.1, "genres": "Thriller, Crime", "genres_pipe": "|Thriller|Crime|", "keywords": "death of lover, art thief, art gallery, police investigation", "tags_pipe": "|death of lover|art thief|art gallery|police investigation|", "overview": "An accomplished headhunter risks everything to obtain a valuable painting owned by a former mercenary..", "text_for_embedding": "Headhunters (2011). Genres: Thriller, Crime. An accomplished headhunter risks everything to obtain a valuable painting owned by a former mercenary... Tags: death of lover, art thief, art gallery, police investigation"} +{"id": "84204", "title": "Grabbers", "year": 2012, "duration_min": 94, "rating": 6.0, "genres": "Science Fiction, Comedy, Thriller, Horror", "genres_pipe": "|Science Fiction|Comedy|Thriller|Horror|", "keywords": "monster, ireland, drunk, beheaded", "tags_pipe": "|monster|ireland|drunk|beheaded|", "overview": "Something sinister has come to the shores of Erin Island, unbeknownst to the quaint population of this sleepy fishing village resting somewhere off Ireland’s coast. First, some fishermen go missing. Then there is the rash of whale carcasses suddenly washing up on the beach. When the murders start, it’s up to two mismatched cops – an irresponsible alcoholic and his new partner, a by-the-book woman from the mainland – to protect the townsfolk from the giant, bloodsucking, tentacled aliens that prey upon them. Their only weapon, they discover, is booze. If they want to survive the creatures’ onslaught, everyone will have to get very, very drunk!", "text_for_embedding": "Grabbers (2012). Genres: Science Fiction, Comedy, Thriller, Horror. Something sinister has come to the shores of Erin Island, unbeknownst to the quaint population of this sleepy fishing village resting somewhere off Ireland’s coast. First, some fishermen go missing. Then there is the rash of whale carcasses suddenly washing up on the beach. When the murders start, it’s up to two mismatched cops – an irresponsible alcoholic and his new partner, a by-the-book woman from the mainland – to protect the townsfolk from the giant, bloodsucking, tentacled aliens that prey upon them. Their only weapon, they discover, is booze. If they want to survive the creatures’ onslaught, everyone will have to get very, very drunk!. Tags: monster, ireland, drunk, beheaded"} +{"id": "25248", "title": "Saint Ralph", "year": 2004, "duration_min": 95, "rating": 7.3, "genres": "Comedy, Drama", "genres_pipe": "|Comedy|Drama|", "keywords": "sport, independent film", "tags_pipe": "|sport|independent film|", "overview": "This Canadian made comedy/drama, set in Hamilton, Ontario in 1954, is a sweet and - at times - goofy story that becomes increasingly poignant as the minutes tick by.\r It's the fictional tale of a wayward 9th grader, Ralph (Adam Butcher), who is secretly living on his own while his widowed, hospitalized mother remains immersed in a coma. Frequently in trouble with Father Fitzpatrick (Gordon Pinsent), the principal of his all-boys, Catholic school, Ralph is considered something of a joke among peers until he decides to pull off a miracle that could save his mother, i.e., winning the Boston Marathon. Coached by a younger priest and former runner, Father Hibbert (Campbell Scott), whose cynicism has been lifted by the boy's pure hope, Ralph applies himself to his unlikely mission, fending off naysayers and getting help along a very challenging path from sundry allies and friends.", "text_for_embedding": "Saint Ralph (2004). Genres: Comedy, Drama. This Canadian made comedy/drama, set in Hamilton, Ontario in 1954, is a sweet and - at times - goofy story that becomes increasingly poignant as the minutes tick by.\r It's the fictional tale of a wayward 9th grader, Ralph (Adam Butcher), who is secretly living on his own while his widowed, hospitalized mother remains immersed in a coma. Frequently in trouble with Father Fitzpatrick (Gordon Pinsent), the principal of his all-boys, Catholic school, Ralph is considered something of a joke among peers until he decides to pull off a miracle that could save his mother, i.e., winning the Boston Marathon. Coached by a younger priest and former runner, Father Hibbert (Campbell Scott), whose cynicism has been lifted by the boy's pure hope, Ralph applies himself to his unlikely mission, fending off naysayers and getting help along a very challenging path from sundry allies and friends.. Tags: sport, independent film"} +{"id": "230266", "title": "Miss Julie", "year": 2014, "duration_min": 120, "rating": 5.9, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "love triangle, love, irish, valet, woman director, 19th century", "tags_pipe": "|love triangle|love|irish|valet|woman director|19th century|", "overview": "Over the course of a midsummer night in Fermanagh in 1890, an unsettled daughter of the Anglo-Irish aristocracy encourages her father's valet to seduce her.", "text_for_embedding": "Miss Julie (2014). Genres: Drama. Over the course of a midsummer night in Fermanagh in 1890, an unsettled daughter of the Anglo-Irish aristocracy encourages her father's valet to seduce her.. Tags: love triangle, love, irish, valet, woman director, 19th century"} +{"id": "16633", "title": "Somewhere in Time", "year": 1980, "duration_min": 103, "rating": 7.2, "genres": "Science Fiction, Drama, Fantasy, Romance", "genres_pipe": "|Science Fiction|Drama|Fantasy|Romance|", "keywords": "time travel, playwright, 1910s", "tags_pipe": "|time travel|playwright|1910s|", "overview": "Young writer, Richard Collier is met on the opening night of his first play by an old lady who begs him to, \"Come back to me.\" Mystified, he tries to find out about her, and learns that she is a famous stage actress from the early 1900s. Becoming more and more obsessed with her, he manages – by self-hypnosis – to travel back in time where he meets her. They fall in love, a matching that is not appreciated by her manager. Can their love outlast the immense problems caused by their 'time\" difference, and can Richard remain in a time that is not his?", "text_for_embedding": "Somewhere in Time (1980). Genres: Science Fiction, Drama, Fantasy, Romance. Young writer, Richard Collier is met on the opening night of his first play by an old lady who begs him to, \"Come back to me.\" Mystified, he tries to find out about her, and learns that she is a famous stage actress from the early 1900s. Becoming more and more obsessed with her, he manages – by self-hypnosis – to travel back in time where he meets her. They fall in love, a matching that is not appreciated by her manager. Can their love outlast the immense problems caused by their 'time\" difference, and can Richard remain in a time that is not his?. Tags: time travel, playwright, 1910s"} +{"id": "63006", "title": "Dum Maaro Dum", "year": 2011, "duration_min": 130, "rating": 5.4, "genres": "Drama, Action, Crime, Foreign", "genres_pipe": "|Drama|Action|Crime|Foreign|", "keywords": "goa, drug bust, rave party", "tags_pipe": "|goa|drug bust|rave party|", "overview": "We hurtle into the bylanes, beach shacks and raves of Goa with Lorry as his life spirals out of control, with Joki as he tries to redeem the past and with Kamath as he goes no-holds-barred after the mysterious shadow figure behind it all... Punctuated with a soundtrack that moves from pulsating dance tracks to haunting Konkani songs, shot right in the midst of the teeming international tourist hotspots, Dum Maaro Dum takes you on a dramatic, thrilling trip filled with twists, turns, suspense... and a shocking finale!", "text_for_embedding": "Dum Maaro Dum (2011). Genres: Drama, Action, Crime, Foreign. We hurtle into the bylanes, beach shacks and raves of Goa with Lorry as his life spirals out of control, with Joki as he tries to redeem the past and with Kamath as he goes no-holds-barred after the mysterious shadow figure behind it all... Punctuated with a soundtrack that moves from pulsating dance tracks to haunting Konkani songs, shot right in the midst of the teeming international tourist hotspots, Dum Maaro Dum takes you on a dramatic, thrilling trip filled with twists, turns, suspense... and a shocking finale!. Tags: goa, drug bust, rave party"} +{"id": "91586", "title": "Insidious: Chapter 2", "year": 2013, "duration_min": 106, "rating": 6.5, "genres": "Horror, Thriller", "genres_pipe": "|Horror|Thriller|", "keywords": "haunted house, possession, demon, family, ghost, bride in black", "tags_pipe": "|haunted house|possession|demon|family|ghost|bride in black|", "overview": "The haunted Lambert family seeks to uncover the mysterious childhood secret that has left them dangerously connected to the spirit world.", "text_for_embedding": "Insidious: Chapter 2 (2013). Genres: Horror, Thriller. The haunted Lambert family seeks to uncover the mysterious childhood secret that has left them dangerously connected to the spirit world.. Tags: haunted house, possession, demon, family, ghost, bride in black"} +{"id": "215", "title": "Saw II", "year": 2005, "duration_min": 92, "rating": 6.3, "genres": "Horror", "genres_pipe": "|Horror|", "keywords": "riddle, serial killer", "tags_pipe": "|riddle|serial killer|", "overview": "When a new murder victim is discovered with all the signs of Jigsaw's hand, Detective Eric Matthews begins a full investigation and apprehends Jigsaw with little effort. But for Jigsaw, getting caught is just another part of his plan. Eight more of his victims are already fighting for their lives and now it's time for Matthews to join the game...", "text_for_embedding": "Saw II (2005). Genres: Horror. When a new murder victim is discovered with all the signs of Jigsaw's hand, Detective Eric Matthews begins a full investigation and apprehends Jigsaw with little effort. But for Jigsaw, getting caught is just another part of his plan. Eight more of his victims are already fighting for their lives and now it's time for Matthews to join the game.... Tags: riddle, serial killer"} +{"id": "333371", "title": "10 Cloverfield Lane", "year": 2016, "duration_min": 103, "rating": 6.8, "genres": "Thriller, Science Fiction, Drama", "genres_pipe": "|Thriller|Science Fiction|Drama|", "keywords": "kidnapping, bunker, paranoia, basement, survivalist, apocalypse, car accident, captive", "tags_pipe": "|kidnapping|bunker|paranoia|basement|survivalist|apocalypse|car accident|captive|", "overview": "After a car accident, Michelle awakens to find herself in a mysterious bunker with two men named Howard and Emmett. Howard offers her a pair of crutches to help her remain mobile with her leg injury sustained from the car crash and tells her to \"get good on those\" before leaving the bunker. She has been given the information that there has been an alien attack and the outside world is poisoned. However, Howard and Emmett's intentions soon become questionable and Michelle is faced with a question: Is it better in here or out there?", "text_for_embedding": "10 Cloverfield Lane (2016). Genres: Thriller, Science Fiction, Drama. After a car accident, Michelle awakens to find herself in a mysterious bunker with two men named Howard and Emmett. Howard offers her a pair of crutches to help her remain mobile with her leg injury sustained from the car crash and tells her to \"get good on those\" before leaving the bunker. She has been given the information that there has been an alien attack and the outside world is poisoned. However, Howard and Emmett's intentions soon become questionable and Michelle is faced with a question: Is it better in here or out there?. Tags: kidnapping, bunker, paranoia, basement, survivalist, apocalypse, car accident, captive"} +{"id": "9012", "title": "Jackass: The Movie", "year": 2002, "duration_min": 87, "rating": 6.1, "genres": "Documentary, Comedy", "genres_pipe": "|Documentary|Comedy|", "keywords": "disgust, pain, stunts, music video, stuntman, stupidity, shocking", "tags_pipe": "|disgust|pain|stunts|music video|stuntman|stupidity|shocking|", "overview": "Johnny Knoxville and his crazy friends appear on the big screen for the very first time in Jackass: The Movie. They wander around Japan in panda outfits, wreak havoc on a once civilized golf course, they even do stunts involving LIVE alligators, and so on. While Johnny Knoxvile and his pals put their life at risk, they are entertaining people at the same time. Get ready for Jackass: The Movie!!", "text_for_embedding": "Jackass: The Movie (2002). Genres: Documentary, Comedy. Johnny Knoxville and his crazy friends appear on the big screen for the very first time in Jackass: The Movie. They wander around Japan in panda outfits, wreak havoc on a once civilized golf course, they even do stunts involving LIVE alligators, and so on. While Johnny Knoxvile and his pals put their life at risk, they are entertaining people at the same time. Get ready for Jackass: The Movie!!. Tags: disgust, pain, stunts, music video, stuntman, stupidity, shocking"} +{"id": "345911", "title": "Lights Out", "year": 2016, "duration_min": 81, "rating": 6.3, "genres": "Horror, Thriller", "genres_pipe": "|Horror|Thriller|", "keywords": "suicide, darkness, basement, based on short story, fear of the dark, ghost", "tags_pipe": "|suicide|darkness|basement|based on short story|fear of the dark|ghost|", "overview": "When Rebecca left home, she thought she left her childhood fears behind. Growing up, she was never really sure of what was and wasn’t real when the lights went out…and now her little brother, Martin, is experiencing the same unexplained and terrifying events that had once tested her sanity and threatened her safety. A frightening entity with a mysterious attachment to their mother, Sophie, has reemerged.", "text_for_embedding": "Lights Out (2016). Genres: Horror, Thriller. When Rebecca left home, she thought she left her childhood fears behind. Growing up, she was never really sure of what was and wasn’t real when the lights went out…and now her little brother, Martin, is experiencing the same unexplained and terrifying events that had once tested her sanity and threatened her safety. A frightening entity with a mysterious attachment to their mother, Sophie, has reemerged.. Tags: suicide, darkness, basement, based on short story, fear of the dark, ghost"} +{"id": "72571", "title": "Paranormal Activity 3", "year": 2011, "duration_min": 83, "rating": 5.9, "genres": "Horror", "genres_pipe": "|Horror|", "keywords": "witch, sister sister relationship, sequel, prequel, haunting, found footage", "tags_pipe": "|witch|sister sister relationship|sequel|prequel|haunting|found footage|", "overview": "In 1988, evil begins to terrorize young sisters Katie and Kristi for the first time when an invisible entity resides in their home.", "text_for_embedding": "Paranormal Activity 3 (2011). Genres: Horror. In 1988, evil begins to terrorize young sisters Katie and Kristi for the first time when an invisible entity resides in their home.. Tags: witch, sister sister relationship, sequel, prequel, haunting, found footage"} +{"id": "242512", "title": "Ouija", "year": 2014, "duration_min": 89, "rating": 4.9, "genres": "Horror", "genres_pipe": "|Horror|", "keywords": "death of a friend, swimming pool, ouija, ouija board, teenager, based on board game, ghost, spiritualism, supernatural horror", "tags_pipe": "|death of a friend|swimming pool|ouija|ouija board|teenager|based on board game|ghost|spiritualism|supernatural horror|", "overview": "A group of friends must confront their most terrifying fears when they awaken the dark powers of an ancient spirit board.", "text_for_embedding": "Ouija (2014). Genres: Horror. A group of friends must confront their most terrifying fears when they awaken the dark powers of an ancient spirit board.. Tags: death of a friend, swimming pool, ouija, ouija board, teenager, based on board game, ghost, spiritualism, supernatural horror"} +{"id": "10072", "title": "A Nightmare on Elm Street 3: Dream Warriors", "year": 1987, "duration_min": 96, "rating": 6.5, "genres": "Horror, Thriller", "genres_pipe": "|Horror|Thriller|", "keywords": "group therapy, nightmare, hypnosis, trapped, alcoholic, mental illness, catholicism, disfigurement, sleepwalking, mental hospital, psychotherapist, dreams", "tags_pipe": "|group therapy|nightmare|hypnosis|trapped|alcoholic|mental illness|catholicism|disfigurement|sleepwalking|mental hospital|psychotherapist|dreams|", "overview": "It's been many years since Freddy Krueger's first victim, Nancy, came face-to-face with Freddy and his sadistic, evil ways. Now, Nancy's all grown up; she's put her frightening nightmares behind her and is helping teens cope with their dreams. Too bad Freddy's decided to herald his return by invading the kids' dreams and scaring them into committing suicide.", "text_for_embedding": "A Nightmare on Elm Street 3: Dream Warriors (1987). Genres: Horror, Thriller. It's been many years since Freddy Krueger's first victim, Nancy, came face-to-face with Freddy and his sadistic, evil ways. Now, Nancy's all grown up; she's put her frightening nightmares behind her and is helping teens cope with their dreams. Too bad Freddy's decided to herald his return by invading the kids' dreams and scaring them into committing suicide.. Tags: group therapy, nightmare, hypnosis, trapped, alcoholic, mental illness, catholicism, disfigurement, sleepwalking, mental hospital, psychotherapist, dreams"} +{"id": "211954", "title": "Instructions Not Included", "year": 2013, "duration_min": 115, "rating": 7.5, "genres": "Comedy, Drama", "genres_pipe": "|Comedy|Drama|", "keywords": "bachelor, vespa", "tags_pipe": "|bachelor|vespa|", "overview": "Valentin is Acapulco's resident playboy, until a former fling leaves a baby on his doorstep and him heading with her out of Mexico.", "text_for_embedding": "Instructions Not Included (2013). Genres: Comedy, Drama. Valentin is Acapulco's resident playboy, until a former fling leaves a baby on his doorstep and him heading with her out of Mexico.. Tags: bachelor, vespa"} +{"id": "82990", "title": "Paranormal Activity 4", "year": 2012, "duration_min": 95, "rating": 5.2, "genres": "Horror", "genres_pipe": "|Horror|", "keywords": "garage, poltergeist, webcam, imaginary friend, bathtub, tricycle, found footage, laptop computer, videotape, evil child, levitation, aftercreditsstinger, neighbor neighbor relationship, adopted child", "tags_pipe": "|garage|poltergeist|webcam|imaginary friend|bathtub|tricycle|found footage|laptop computer|videotape|evil child|levitation|aftercreditsstinger|neighbor neighbor relationship|adopted child|", "overview": "It has been five years since the disappearance of Katie and Hunter, and a suburban family witness strange events in their neighborhood when a woman and a mysterious child move in.", "text_for_embedding": "Paranormal Activity 4 (2012). Genres: Horror. It has been five years since the disappearance of Katie and Hunter, and a suburban family witness strange events in their neighborhood when a woman and a mysterious child move in.. Tags: garage, poltergeist, webcam, imaginary friend, bathtub, tricycle, found footage, laptop computer, videotape, evil child, levitation, aftercreditsstinger, neighbor neighbor relationship, adopted child"} +{"id": "29912", "title": "The Robe", "year": 1953, "duration_min": 135, "rating": 6.4, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "crucifixion, ancient rome", "tags_pipe": "|crucifixion|ancient rome|", "overview": "Marcellus is a tribune in the time of Christ. He is in charge of the group that is assigned to crucify Jesus. Drunk, he wins Jesus' homespun robe after the crucifixion. He is tormented by nightmares and delusions after the event. Hoping to find a way to live with what he has done, and still not believing in Jesus, he returns to Palestine to try and learn what he can of the man he killed.", "text_for_embedding": "The Robe (1953). Genres: Drama. Marcellus is a tribune in the time of Christ. He is in charge of the group that is assigned to crucify Jesus. Drunk, he wins Jesus' homespun robe after the crucifixion. He is tormented by nightmares and delusions after the event. Hoping to find a way to live with what he has done, and still not believing in Jesus, he returns to Palestine to try and learn what he can of the man he killed.. Tags: crucifixion, ancient rome"} +{"id": "11843", "title": "The Return of the Pink Panther", "year": 1975, "duration_min": 113, "rating": 6.7, "genres": "Comedy", "genres_pipe": "|Comedy|", "keywords": "robbery, diamant, côte d'azur, inspector, panther", "tags_pipe": "|robbery|diamant|côte d'azur|inspector|panther|", "overview": "The famous Pink Panther jewel has once again been stolen and Inspector Clouseau is called in to catch the thief. The Inspector is convinced that 'The Phantom' has returned and utilises all of his resources – himself and his Asian manservant – to reveal the identity of 'The Phantom'.", "text_for_embedding": "The Return of the Pink Panther (1975). Genres: Comedy. The famous Pink Panther jewel has once again been stolen and Inspector Clouseau is called in to catch the thief. The Inspector is convinced that 'The Phantom' has returned and utilises all of his resources – himself and his Asian manservant – to reveal the identity of 'The Phantom'.. Tags: robbery, diamant, côte d'azur, inspector, panther"} +{"id": "11284", "title": "Freddy's Dead: The Final Nightmare", "year": 1991, "duration_min": 89, "rating": 5.1, "genres": "Horror, Thriller, Comedy", "genres_pipe": "|Horror|Thriller|Comedy|", "keywords": "amnesia, nightmare, alternate dimension, psychologist, memory loss, youth, killer, disfigurement, duringcreditsstinger, woman director, halfway house, dreams, memories", "tags_pipe": "|amnesia|nightmare|alternate dimension|psychologist|memory loss|youth|killer|disfigurement|duringcreditsstinger|woman director|halfway house|dreams|memories|", "overview": "Just when you thought it was safe to sleep, Freddy Krueger returns in this sixth installment of the Nightmare on Elm Street films, as psychologist Maggie Burroughs, tormented by recurring nightmares, meets a patient with the same horrific dreams. Their quest for answers leads to a certain house on Elm Street -- where the nightmares become reality.", "text_for_embedding": "Freddy's Dead: The Final Nightmare (1991). Genres: Horror, Thriller, Comedy. Just when you thought it was safe to sleep, Freddy Krueger returns in this sixth installment of the Nightmare on Elm Street films, as psychologist Maggie Burroughs, tormented by recurring nightmares, meets a patient with the same horrific dreams. Their quest for answers leads to a certain house on Elm Street -- where the nightmares become reality.. Tags: amnesia, nightmare, alternate dimension, psychologist, memory loss, youth, killer, disfigurement, duringcreditsstinger, woman director, halfway house, dreams, memories"} +{"id": "504", "title": "Monster", "year": 2003, "duration_min": 110, "rating": 7.0, "genres": "Crime, Drama", "genres_pipe": "|Crime|Drama|", "keywords": "female nudity, prostitute, rape, sexual abuse, desperation, death penalty, motel, job interview, based on true story, murder, betrayal, serial killer, poverty, prostitution, heartbreak", "tags_pipe": "|female nudity|prostitute|rape|sexual abuse|desperation|death penalty|motel|job interview|based on true story|murder|betrayal|serial killer|poverty|prostitution|heartbreak|", "overview": "Aileen Wuornos is an emotionally scarred highway hooker who shoots a sadistic trick who rapes her and ultimately becomes America's first female serial killer.", "text_for_embedding": "Monster (2003). Genres: Crime, Drama. Aileen Wuornos is an emotionally scarred highway hooker who shoots a sadistic trick who rapes her and ultimately becomes America's first female serial killer.. Tags: female nudity, prostitute, rape, sexual abuse, desperation, death penalty, motel, job interview, based on true story, murder, betrayal, serial killer, poverty, prostitution, heartbreak"} +{"id": "173", "title": "20,000 Leagues Under the Sea", "year": 1954, "duration_min": 127, "rating": 6.8, "genres": "Adventure, Drama, Science Fiction", "genres_pipe": "|Adventure|Drama|Science Fiction|", "keywords": "diving, ocean, submarine, jules verne, captain, atlantis, deep sea, war ship, diving suit, harpoon, ship, war, scuba diving, underwater, scuba", "tags_pipe": "|diving|ocean|submarine|jules verne|captain|atlantis|deep sea|war ship|diving suit|harpoon|ship|war|scuba diving|underwater|scuba|", "overview": "A ship sent to investigate a wave of mysterious sinkings encounters the advanced submarine, the Nautilus, commanded by Captain Nemo.", "text_for_embedding": "20,000 Leagues Under the Sea (1954). Genres: Adventure, Drama, Science Fiction. A ship sent to investigate a wave of mysterious sinkings encounters the advanced submarine, the Nautilus, commanded by Captain Nemo.. Tags: diving, ocean, submarine, jules verne, captain, atlantis, deep sea, war ship, diving suit, harpoon, ship, war, scuba diving, underwater, scuba"} +{"id": "227348", "title": "Paranormal Activity: The Marked Ones", "year": 2014, "duration_min": 84, "rating": 5.2, "genres": "Horror, Thriller", "genres_pipe": "|Horror|Thriller|", "keywords": "supernatural, demon, found footage", "tags_pipe": "|supernatural|demon|found footage|", "overview": "Seventeen-year-old Jesse has been hearing terrifying sounds coming from his neighbor’s apartment, but when he turns on his camera and sets out to uncover their source, he encounters an ancient evil that won’t rest until it’s claimed his very soul.", "text_for_embedding": "Paranormal Activity: The Marked Ones (2014). Genres: Horror, Thriller. Seventeen-year-old Jesse has been hearing terrifying sounds coming from his neighbor’s apartment, but when he turns on his camera and sets out to uncover their source, he encounters an ancient evil that won’t rest until it’s claimed his very soul.. Tags: supernatural, demon, found footage"} +{"id": "1955", "title": "The Elephant Man", "year": 1980, "duration_min": 124, "rating": 7.9, "genres": "Drama, History", "genres_pipe": "|Drama|History|", "keywords": "exploitation, biography, hospital, curiosity, sideshow, disfigurement, physical deformity, freak, 19th century, dignity", "tags_pipe": "|exploitation|biography|hospital|curiosity|sideshow|disfigurement|physical deformity|freak|19th century|dignity|", "overview": "A Victorian surgeon rescues a heavily disfigured man being mistreated by his \"owner\" as a side-show freak. Behind his monstrous façade, there is revealed a person of great intelligence and sensitivity. Based on the true story of Joseph Merrick (called John Merrick in the film), a severely deformed man in 19th century London.", "text_for_embedding": "The Elephant Man (1980). Genres: Drama, History. A Victorian surgeon rescues a heavily disfigured man being mistreated by his \"owner\" as a side-show freak. Behind his monstrous façade, there is revealed a person of great intelligence and sensitivity. Based on the true story of Joseph Merrick (called John Merrick in the film), a severely deformed man in 19th century London.. Tags: exploitation, biography, hospital, curiosity, sideshow, disfigurement, physical deformity, freak, 19th century, dignity"} +{"id": "152532", "title": "Dallas Buyers Club", "year": 2013, "duration_min": 117, "rating": 7.9, "genres": "Drama, History", "genres_pipe": "|Drama|History|", "keywords": "women, aids, biography, based on true story, hiv, drug, 1980s", "tags_pipe": "|women|aids|biography|based on true story|hiv|drug|1980s|", "overview": "Loosely based on the true-life tale of Ron Woodroof, a drug-taking, women-loving, homophobic man who in 1986 was diagnosed with HIV/AIDS and given thirty days to live.", "text_for_embedding": "Dallas Buyers Club (2013). Genres: Drama, History. Loosely based on the true-life tale of Ron Woodroof, a drug-taking, women-loving, homophobic man who in 1986 was diagnosed with HIV/AIDS and given thirty days to live.. Tags: women, aids, biography, based on true story, hiv, drug, 1980s"} +{"id": "243940", "title": "The Lazarus Effect", "year": 2015, "duration_min": 83, "rating": 5.1, "genres": "Thriller, Horror", "genres_pipe": "|Thriller|Horror|", "keywords": "terror, experiment, afterlife, paranormal, violence, death, evil, researcher, possesion", "tags_pipe": "|terror|experiment|afterlife|paranormal|violence|death|evil|researcher|possesion|", "overview": "Medical researcher Frank, his fiancee Zoe and their team have achieved the impossible: they have found a way to revive the dead. After a successful, but unsanctioned, experiment on a lifeless animal, they are ready to make their work public. However, when their dean learns what they've done, he shuts them down. Zoe is killed during an attempt to recreate the experiment, leading Frank to test the process on her. Zoe is revived -- but something evil is within her.", "text_for_embedding": "The Lazarus Effect (2015). Genres: Thriller, Horror. Medical researcher Frank, his fiancee Zoe and their team have achieved the impossible: they have found a way to revive the dead. After a successful, but unsanctioned, experiment on a lifeless animal, they are ready to make their work public. However, when their dean learns what they've done, he shuts them down. Zoe is killed during an attempt to recreate the experiment, leading Frank to test the process on her. Zoe is revived -- but something evil is within her.. Tags: terror, experiment, afterlife, paranormal, violence, death, evil, researcher, possesion"} +{"id": "77", "title": "Memento", "year": 2000, "duration_min": 113, "rating": 8.1, "genres": "Mystery, Thriller", "genres_pipe": "|Mystery|Thriller|", "keywords": "individual, insulin, tattoo, waitress, amnesia, motel, insurance salesman, revenge, memory loss, polaroid, flashback, neo-noir", "tags_pipe": "|individual|insulin|tattoo|waitress|amnesia|motel|insurance salesman|revenge|memory loss|polaroid|flashback|neo-noir|", "overview": "Suffering short-term memory loss after a head injury, Leonard Shelby embarks on a grim quest to find the lowlife who murdered his wife in this gritty, complex thriller that packs more knots than a hangman's noose. To carry out his plan, Shelby snaps Polaroids of people and places, jotting down contextual notes on the backs of photos to aid in his search and jog his memory. He even tattoos his own body in a desperate bid to remember.", "text_for_embedding": "Memento (2000). Genres: Mystery, Thriller. Suffering short-term memory loss after a head injury, Leonard Shelby embarks on a grim quest to find the lowlife who murdered his wife in this gritty, complex thriller that packs more knots than a hangman's noose. To carry out his plan, Shelby snaps Polaroids of people and places, jotting down contextual notes on the backs of photos to aid in his search and jog his memory. He even tattoos his own body in a desperate bid to remember.. Tags: individual, insulin, tattoo, waitress, amnesia, motel, insurance salesman, revenge, memory loss, polaroid, flashback, neo-noir"} +{"id": "157547", "title": "Oculus", "year": 2013, "duration_min": 104, "rating": 6.3, "genres": "Horror", "genres_pipe": "|Horror|", "keywords": "hallucination, supernatural, mirror, skepticism, ghost", "tags_pipe": "|hallucination|supernatural|mirror|skepticism|ghost|", "overview": "A woman tries to exonerate her brother's murder conviction by proving that the crime was committed by a supernatural phenomenon.", "text_for_embedding": "Oculus (2013). Genres: Horror. A woman tries to exonerate her brother's murder conviction by proving that the crime was committed by a supernatural phenomenon.. Tags: hallucination, supernatural, mirror, skepticism, ghost"} +{"id": "2295", "title": "Clerks II", "year": 2006, "duration_min": 97, "rating": 6.9, "genres": "Comedy", "genres_pipe": "|Comedy|", "keywords": "independent film, aftercreditsstinger, duringcreditsstinger", "tags_pipe": "|independent film|aftercreditsstinger|duringcreditsstinger|", "overview": "A calamity at Dante and Randall's shops sends them looking for new horizons - but they ultimately settle at Mooby's, a fictional Disney-McDonald's-style fast-food empire.", "text_for_embedding": "Clerks II (2006). Genres: Comedy. A calamity at Dante and Randall's shops sends them looking for new horizons - but they ultimately settle at Mooby's, a fictional Disney-McDonald's-style fast-food empire.. Tags: independent film, aftercreditsstinger, duringcreditsstinger"} +{"id": "71", "title": "Billy Elliot", "year": 2000, "duration_min": 110, "rating": 7.4, "genres": "Drama, Comedy, Music", "genres_pipe": "|Drama|Comedy|Music|", "keywords": "workers' quarter, dancing class, strike, northern england, scholarship, ballet", "tags_pipe": "|workers' quarter|dancing class|strike|northern england|scholarship|ballet|", "overview": "Set against the background of the 1984 Miner's Strike, Billy Elliot is an 11 year old boy who stumbles out of the boxing ring and onto the ballet floor. He faces many trials and triumphs as he strives to conquer his family's set ways, inner conflict, and standing on his toes!", "text_for_embedding": "Billy Elliot (2000). Genres: Drama, Comedy, Music. Set against the background of the 1984 Miner's Strike, Billy Elliot is an 11 year old boy who stumbles out of the boxing ring and onto the ballet floor. He faces many trials and triumphs as he strives to conquer his family's set ways, inner conflict, and standing on his toes!. Tags: workers' quarter, dancing class, strike, northern england, scholarship, ballet"} +{"id": "147773", "title": "The Way Way Back", "year": 2013, "duration_min": 103, "rating": 7.1, "genres": "Comedy, Drama", "genres_pipe": "|Comedy|Drama|", "keywords": "shyness, beach, bicycle, conversation, friendship, step father, vacation, job, neighbor, summer, teenager, water park, awkwardness", "tags_pipe": "|shyness|beach|bicycle|conversation|friendship|step father|vacation|job|neighbor|summer|teenager|water park|awkwardness|", "overview": "Over the course of his summer break, a teenager comes into his own thanks in part to the friendship he strikes up with one of the park's managers.", "text_for_embedding": "The Way Way Back (2013). Genres: Comedy, Drama. Over the course of his summer break, a teenager comes into his own thanks in part to the friendship he strikes up with one of the park's managers.. Tags: shyness, beach, bicycle, conversation, friendship, step father, vacation, job, neighbor, summer, teenager, water park, awkwardness"} +{"id": "16096", "title": "House Party 2", "year": 1991, "duration_min": 94, "rating": 4.7, "genres": "Comedy", "genres_pipe": "|Comedy|", "keywords": "", "tags_pipe": "", "overview": "Kid'N'Play leave their neighborhood and enter the world of adulthood and higher education. Play attempts to get rich quick in the music business while Kid faces the challenges of college.", "text_for_embedding": "House Party 2 (1991). Genres: Comedy. Kid'N'Play leave their neighborhood and enter the world of adulthood and higher education. Play attempts to get rich quick in the music business while Kid faces the challenges of college.. Tags: "} +{"id": "24266", "title": "The Man from Snowy River", "year": 1982, "duration_min": 104, "rating": 6.8, "genres": "Family, Drama, Action, Western, Romance", "genres_pipe": "|Family|Drama|Action|Western|Romance|", "keywords": "regret, river, horse, ranch, australia, brumby, brumbies, colt, stockman, clancy of the overflow", "tags_pipe": "|regret|river|horse|ranch|australia|brumby|brumbies|colt|stockman|clancy of the overflow|", "overview": "Jim Craig has lived his first 18 years in the mountains of Australia on his father's farm. The death of his father forces him to go to the low lands to earn enough money to get the farm back on its feet. Kirk Douglas plays two roles as twin brothers who haven't spoken for years, one of whom was Jim's father's best friend and the other of whom is the father of the girl he wants to marry.", "text_for_embedding": "The Man from Snowy River (1982). Genres: Family, Drama, Action, Western, Romance. Jim Craig has lived his first 18 years in the mountains of Australia on his father's farm. The death of his father forces him to go to the low lands to earn enough money to get the farm back on its feet. Kirk Douglas plays two roles as twin brothers who haven't spoken for years, one of whom was Jim's father's best friend and the other of whom is the father of the girl he wants to marry.. Tags: regret, river, horse, ranch, australia, brumby, brumbies, colt, stockman, clancy of the overflow"} +{"id": "16508", "title": "Doug's 1st Movie", "year": 1999, "duration_min": 77, "rating": 5.4, "genres": "Animation, Family, Comedy", "genres_pipe": "|Animation|Family|Comedy|", "keywords": "journalism, dance, daydream, friendship, pollution, cartoon, number in title, kids and family, valentine", "tags_pipe": "|journalism|dance|daydream|friendship|pollution|cartoon|number in title|kids and family|valentine|", "overview": "Doug and his pal Skeeter set's out to find the monster of Lucky Duck Lake. Though things get really out of hand when some one blurts out that the monster is real.", "text_for_embedding": "Doug's 1st Movie (1999). Genres: Animation, Family, Comedy. Doug and his pal Skeeter set's out to find the monster of Lucky Duck Lake. Though things get really out of hand when some one blurts out that the monster is real.. Tags: journalism, dance, daydream, friendship, pollution, cartoon, number in title, kids and family, valentine"} +{"id": "2895", "title": "The Apostle", "year": 1997, "duration_min": 134, "rating": 6.1, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "christianity, coma, jealousy, radio station, texas, apostle, minister, louisiana, forgiveness, independent film, preacher", "tags_pipe": "|christianity|coma|jealousy|radio station|texas|apostle|minister|louisiana|forgiveness|independent film|preacher|", "overview": "After his happy life spins out of control, a preacher from Texas changes his name, goes to Louisiana and starts preaching on the radio.", "text_for_embedding": "The Apostle (1997). Genres: Drama. After his happy life spins out of control, a preacher from Texas changes his name, goes to Louisiana and starts preaching on the radio.. Tags: christianity, coma, jealousy, radio station, texas, apostle, minister, louisiana, forgiveness, independent film, preacher"} +{"id": "15660", "title": "Mommie Dearest", "year": 1981, "duration_min": 129, "rating": 6.5, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "ax, biography, sociopath, lawyer, mansion, docudrama, perfection, adopted child", "tags_pipe": "|ax|biography|sociopath|lawyer|mansion|docudrama|perfection|adopted child|", "overview": "In this biographical film, glamorous yet lonely star Joan Crawford takes in two orphans, and at first their unconventional family seems happy. But after Joan's attempts at romantic fulfillment go sour and she is fired from her contract with MGM studios, her callous and abusive behavior towards her daughter Christina becomes even more pronounced. Christina leaves home and takes her first acting role, only to find her mother's presence still overshadowing her.", "text_for_embedding": "Mommie Dearest (1981). Genres: Drama. In this biographical film, glamorous yet lonely star Joan Crawford takes in two orphans, and at first their unconventional family seems happy. But after Joan's attempts at romantic fulfillment go sour and she is fired from her contract with MGM studios, her callous and abusive behavior towards her daughter Christina becomes even more pronounced. Christina leaves home and takes her first acting role, only to find her mother's presence still overshadowing her.. Tags: ax, biography, sociopath, lawyer, mansion, docudrama, perfection, adopted child"} +{"id": "59968", "title": "Our Idiot Brother", "year": 2011, "duration_min": 90, "rating": 5.9, "genres": "Comedy, Drama", "genres_pipe": "|Comedy|Drama|", "keywords": "brother sister relationship, sister sister relationship, family clan, idealist, duringcreditsstinger", "tags_pipe": "|brother sister relationship|sister sister relationship|family clan|idealist|duringcreditsstinger|", "overview": "Everybody has the sibling who is always just a little bit behind the curve when it comes to getting his life together. For sisters Liz, Miranda and Natalie, that person is their perennially upbeat brother Ned, an erstwhile organic farmer whose willingness to rely on the honesty of mankind is a less-than-optimum strategy for a tidy, trouble-free existence. Ned may be utterly lacking in common sense, but he is their brother and so, after his girlfriend dumps him and boots him off the farm, his sisters once again come to his rescue. As Liz, Miranda and Natalie each take a turn at housing Ned, their brother's unfailing commitment to honesty creates more than a few messes in their comfortable routines. But as each of their lives begins to unravel, Ned's family comes to realize that maybe, in believing and trusting the people around him, Ned isn't such an idiot after all.", "text_for_embedding": "Our Idiot Brother (2011). Genres: Comedy, Drama. Everybody has the sibling who is always just a little bit behind the curve when it comes to getting his life together. For sisters Liz, Miranda and Natalie, that person is their perennially upbeat brother Ned, an erstwhile organic farmer whose willingness to rely on the honesty of mankind is a less-than-optimum strategy for a tidy, trouble-free existence. Ned may be utterly lacking in common sense, but he is their brother and so, after his girlfriend dumps him and boots him off the farm, his sisters once again come to his rescue. As Liz, Miranda and Natalie each take a turn at housing Ned, their brother's unfailing commitment to honesty creates more than a few messes in their comfortable routines. But as each of their lives begins to unravel, Ned's family comes to realize that maybe, in believing and trusting the people around him, Ned isn't such an idiot after all.. Tags: brother sister relationship, sister sister relationship, family clan, idealist, duringcreditsstinger"} +{"id": "323677", "title": "Race", "year": 2016, "duration_min": 134, "rating": 7.1, "genres": "Action, Drama", "genres_pipe": "|Action|Drama|", "keywords": "olympic games, biography, sport, historical figure, nazi germany, racism, african american, track and field", "tags_pipe": "|olympic games|biography|sport|historical figure|nazi germany|racism|african american|track and field|", "overview": "Based on the incredible true story of Jesse Owens, the legendary athletic superstar whose quest to become the greatest track and field athlete in history thrusts him onto the world stage of the 1936 Olympics, where he faces off against Adolf Hitler's vision of Aryan supremacy. Starring Stephan James, Jason Sudeikis, Jeremy Irons, Carice Van Houten and William Hurt - Race is an enthralling film about courage, determination, tolerance, and friendship, and an inspiring drama about one man's fight to become an Olympic legend.", "text_for_embedding": "Race (2016). Genres: Action, Drama. Based on the incredible true story of Jesse Owens, the legendary athletic superstar whose quest to become the greatest track and field athlete in history thrusts him onto the world stage of the 1936 Olympics, where he faces off against Adolf Hitler's vision of Aryan supremacy. Starring Stephan James, Jason Sudeikis, Jeremy Irons, Carice Van Houten and William Hurt - Race is an enthralling film about courage, determination, tolerance, and friendship, and an inspiring drama about one man's fight to become an Olympic legend.. Tags: olympic games, biography, sport, historical figure, nazi germany, racism, african american, track and field"} +{"id": "19848", "title": "The Players Club", "year": 1998, "duration_min": 104, "rating": 6.4, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "strip club, stripper, dominatrix, cat fight", "tags_pipe": "|strip club|stripper|dominatrix|cat fight|", "overview": "Young single mother Diana struggles to provide for her child and pay for her college education. She ends up working at a shoe store, but meets two strippers from at a nearby gentlemen's club who convince her there's fast money to be made stripping. At the Players Club, however, Diana faces danger and heartbreak.", "text_for_embedding": "The Players Club (1998). Genres: Drama. Young single mother Diana struggles to provide for her child and pay for her college education. She ends up working at a shoe store, but meets two strippers from at a nearby gentlemen's club who convince her there's fast money to be made stripping. At the Players Club, however, Diana faces danger and heartbreak.. Tags: strip club, stripper, dominatrix, cat fight"} +{"id": "256274", "title": "As Above, So Below", "year": 2014, "duration_min": 93, "rating": 6.1, "genres": "Horror, Thriller", "genres_pipe": "|Horror|Thriller|", "keywords": "paris, treasure, catacombs, scientist, singing in a car, archaeologist, loss of friend, subjective camera, found footage, thick accent, female archeologist, burning car, philosopher's stone, french accent, rapping in a car", "tags_pipe": "|paris|treasure|catacombs|scientist|singing in a car|archaeologist|loss of friend|subjective camera|found footage|thick accent|female archeologist|burning car|philosopher's stone|french accent|rapping in a car|", "overview": "When a team of explorers ventures into the catacombs that lie beneath the streets of Paris, they uncover the dark secret that lies within this city of the dead.", "text_for_embedding": "As Above, So Below (2014). Genres: Horror, Thriller. When a team of explorers ventures into the catacombs that lie beneath the streets of Paris, they uncover the dark secret that lies within this city of the dead.. Tags: paris, treasure, catacombs, scientist, singing in a car, archaeologist, loss of friend, subjective camera, found footage, thick accent, female archeologist, burning car, philosopher's stone, french accent, rapping in a car"} +{"id": "235271", "title": "Addicted", "year": 2014, "duration_min": 105, "rating": 5.4, "genres": "Drama, Thriller", "genres_pipe": "|Drama|Thriller|", "keywords": "infidelity, obsession, lie, sin, interracial relationship, cheating wife, lust, attraction, deceit, temptation, hipersexualidad, faithful husband", "tags_pipe": "|infidelity|obsession|lie|sin|interracial relationship|cheating wife|lust|attraction|deceit|temptation|hipersexualidad|faithful husband|", "overview": "A gallerist risks her family and flourishing career when she enters into an affair with a talented painter and slowly loses control of her life.", "text_for_embedding": "Addicted (2014). Genres: Drama, Thriller. A gallerist risks her family and flourishing career when she enters into an affair with a talented painter and slowly loses control of her life.. Tags: infidelity, obsession, lie, sin, interracial relationship, cheating wife, lust, attraction, deceit, temptation, hipersexualidad, faithful husband"} +{"id": "45153", "title": "Eve's Bayou", "year": 1997, "duration_min": 109, "rating": 6.1, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "sister sister relationship, menstruation, superstition, independent film, curse, mother daughter relationship, tavern, aunt niece relationship, father daughter relationship, all black cast, woman director", "tags_pipe": "|sister sister relationship|menstruation|superstition|independent film|curse|mother daughter relationship|tavern|aunt niece relationship|father daughter relationship|all black cast|woman director|", "overview": "The story is set in 1962 Louisiana. The big Batiste family is headed by charming doctor Louis. Though he is married to beautiful Roz, he has a weakness for attractive women patients. One day Louis is flirting with married and sexy Metty Mereaux, not knowing that he is observed by his youngest idealistic daughter Eve, who is there by accident. Eve can not forget the incident which is traumatic for her naivete and shares a secret with older sister Cisely. Lies start to roll...", "text_for_embedding": "Eve's Bayou (1997). Genres: Drama. The story is set in 1962 Louisiana. The big Batiste family is headed by charming doctor Louis. Though he is married to beautiful Roz, he has a weakness for attractive women patients. One day Louis is flirting with married and sexy Metty Mereaux, not knowing that he is observed by his youngest idealistic daughter Eve, who is there by accident. Eve can not forget the incident which is traumatic for her naivete and shares a secret with older sister Cisely. Lies start to roll.... Tags: sister sister relationship, menstruation, superstition, independent film, curse, mother daughter relationship, tavern, aunt niece relationship, father daughter relationship, all black cast, woman director"} +{"id": "284293", "title": "Still Alice", "year": 2014, "duration_min": 99, "rating": 7.5, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "mother, professor, illness", "tags_pipe": "|mother|professor|illness|", "overview": "Alice Howland, happily married with three grown children, is a renowned linguistics professor who starts to forget words. When she receives a devastating diagnosis, Alice and her family find their bonds tested.", "text_for_embedding": "Still Alice (2014). Genres: Drama. Alice Howland, happily married with three grown children, is a renowned linguistics professor who starts to forget words. When she receives a devastating diagnosis, Alice and her family find their bonds tested.. Tags: mother, professor, illness"} +{"id": "24973", "title": "The Egyptian", "year": 1954, "duration_min": 139, "rating": 6.0, "genres": "History, Drama", "genres_pipe": "|History|Drama|", "keywords": "egypt", "tags_pipe": "|egypt|", "overview": "In eighteenth-dynasty Egypt, Sinuhe, a poor orphan, becomes a brilliant physician and with his friend Horemheb is appointed to the service of the new Pharoah. Sinuhe's personal triumphs and tragedies are played against the larger canvas of the turbulent events of the 18th dynasty. As Sinuhe is drawn into court intrigues he learns the answers to the questions he has sought since his birth.", "text_for_embedding": "The Egyptian (1954). Genres: History, Drama. In eighteenth-dynasty Egypt, Sinuhe, a poor orphan, becomes a brilliant physician and with his friend Horemheb is appointed to the service of the new Pharoah. Sinuhe's personal triumphs and tragedies are played against the larger canvas of the turbulent events of the 18th dynasty. As Sinuhe is drawn into court intrigues he learns the answers to the questions he has sought since his birth.. Tags: egypt"} +{"id": "21610", "title": "Nighthawks", "year": 1981, "duration_min": 99, "rating": 6.4, "genres": "Action, Crime, Thriller", "genres_pipe": "|Action|Crime|Thriller|", "keywords": "", "tags_pipe": "", "overview": "An international terrorist has New York in a grip of panic and it's up to Det. Sgt. Deke DaSilva to take him down.", "text_for_embedding": "Nighthawks (1981). Genres: Action, Crime, Thriller. An international terrorist has New York in a grip of panic and it's up to Det. Sgt. Deke DaSilva to take him down.. Tags: "} +{"id": "10283", "title": "Friday the 13th Part VIII: Jason Takes Manhattan", "year": 1989, "duration_min": 100, "rating": 4.8, "genres": "Horror, Thriller", "genres_pipe": "|Horror|Thriller|", "keywords": "new york, boat, mask, psychopath, high school, sewerage, times square, serial killer, teenager, jason vorhees", "tags_pipe": "|new york|boat|mask|psychopath|high school|sewerage|times square|serial killer|teenager|jason vorhees|", "overview": "The Big Apple's in big trouble, as indestructible psycho-fiend Jason Vorhees hits the road to New York City. After a shocking return from beyond the grave, the diabolical Jason ships out abroad a teen-filled \"love boat\" bound for New York, which he soon transforms into the ultimate voyage of the damned. Then one of his terrified victims escapes into the nightmarish maze of Manhattan's subways and sewers, only to confront Jason one final time.", "text_for_embedding": "Friday the 13th Part VIII: Jason Takes Manhattan (1989). Genres: Horror, Thriller. The Big Apple's in big trouble, as indestructible psycho-fiend Jason Vorhees hits the road to New York City. After a shocking return from beyond the grave, the diabolical Jason ships out abroad a teen-filled \"love boat\" bound for New York, which he soon transforms into the ultimate voyage of the damned. Then one of his terrified victims escapes into the nightmarish maze of Manhattan's subways and sewers, only to confront Jason one final time.. Tags: new york, boat, mask, psychopath, high school, sewerage, times square, serial killer, teenager, jason vorhees"} +{"id": "8346", "title": "My Big Fat Greek Wedding", "year": 2002, "duration_min": 95, "rating": 6.2, "genres": "Comedy, Drama, Romance", "genres_pipe": "|Comedy|Drama|Romance|", "keywords": "usa, parents kids relationship, greece, culture clash, midlife crisis, restaurant, bad mother-in-law, mother-in-law, parents-in-law, son-in-law, father-in-law, patriarch, bad father-in-law, greek, wedding", "tags_pipe": "|usa|parents kids relationship|greece|culture clash|midlife crisis|restaurant|bad mother-in-law|mother-in-law|parents-in-law|son-in-law|father-in-law|patriarch|bad father-in-law|greek|wedding|", "overview": "A young Greek woman falls in love with a non-Greek and struggles to get her family to accept him while she comes to terms with her heritage and cultural identity.", "text_for_embedding": "My Big Fat Greek Wedding (2002). Genres: Comedy, Drama, Romance. A young Greek woman falls in love with a non-Greek and struggles to get her family to accept him while she comes to terms with her heritage and cultural identity.. Tags: usa, parents kids relationship, greece, culture clash, midlife crisis, restaurant, bad mother-in-law, mother-in-law, parents-in-law, son-in-law, father-in-law, patriarch, bad father-in-law, greek, wedding"} +{"id": "122081", "title": "Spring Breakers", "year": 2013, "duration_min": 94, "rating": 5.0, "genres": "Drama, Crime", "genres_pipe": "|Drama|Crime|", "keywords": "female nudity, sex, florida, drug dealer, nudity, female friendship, party, art house, drug, spring break, young adult", "tags_pipe": "|female nudity|sex|florida|drug dealer|nudity|female friendship|party|art house|drug|spring break|young adult|", "overview": "After four college girls rob a restaurant to fund their spring break in Florida, they get entangled with a weird dude with his own criminal agenda.", "text_for_embedding": "Spring Breakers (2013). Genres: Drama, Crime. After four college girls rob a restaurant to fund their spring break in Florida, they get entangled with a weird dude with his own criminal agenda.. Tags: female nudity, sex, florida, drug dealer, nudity, female friendship, party, art house, drug, spring break, young adult"} +{"id": "10987", "title": "Halloween: The Curse of Michael Myers", "year": 1995, "duration_min": 88, "rating": 5.0, "genres": "Horror, Thriller", "genres_pipe": "|Horror|Thriller|", "keywords": "mass murder, nudity, halloween, attempt to escape, cult, psychopath, escape agent, murder, escape, slasher, doctor, niece, death, evil, michael myers", "tags_pipe": "|mass murder|nudity|halloween|attempt to escape|cult|psychopath|escape agent|murder|escape|slasher|doctor|niece|death|evil|michael myers|", "overview": "Six years ago, Michael Myers terrorized the town of Haddonfield, Illinois. He and his niece, Jamie Lloyd, have disappeared. Jamie was kidnapped by a bunch of evil druids who protect Michael Myers. And now, six years later, Jamie has escaped after giving birth to Michael's child. She runs to Haddonfield to get Dr. Loomis to help her again.", "text_for_embedding": "Halloween: The Curse of Michael Myers (1995). Genres: Horror, Thriller. Six years ago, Michael Myers terrorized the town of Haddonfield, Illinois. He and his niece, Jamie Lloyd, have disappeared. Jamie was kidnapped by a bunch of evil druids who protect Michael Myers. And now, six years later, Jamie has escaped after giving birth to Michael's child. She runs to Haddonfield to get Dr. Loomis to help her again.. Tags: mass murder, nudity, halloween, attempt to escape, cult, psychopath, escape agent, murder, escape, slasher, doctor, niece, death, evil, michael myers"} +{"id": "1391", "title": "Y Tu Mamá También", "year": 2001, "duration_min": 106, "rating": 7.3, "genres": "Drama, Romance", "genres_pipe": "|Drama|Romance|", "keywords": "mexico, sex, beach, group sex, male friendship, road trip, coming of age, teenager, lgbt, new mexican cinema", "tags_pipe": "|mexico|sex|beach|group sex|male friendship|road trip|coming of age|teenager|lgbt|new mexican cinema|", "overview": "In Mexico, two teenage boys and an attractive older woman embark on a road trip and learn a thing or two about life, friendship, sex, and each other.", "text_for_embedding": "Y Tu Mamá También (2001). Genres: Drama, Romance. In Mexico, two teenage boys and an attractive older woman embark on a road trip and learn a thing or two about life, friendship, sex, and each other.. Tags: mexico, sex, beach, group sex, male friendship, road trip, coming of age, teenager, lgbt, new mexican cinema"} +{"id": "747", "title": "Shaun of the Dead", "year": 2004, "duration_min": 99, "rating": 7.5, "genres": "Horror, Comedy", "genres_pipe": "|Horror|Comedy|", "keywords": "record collection, flower, cheese, pub, surrey, romantic comedy, zombie, english, tv show in film, cricket bat, broken bottle, survival horror, british pub, english pub, you've got red on you", "tags_pipe": "|record collection|flower|cheese|pub|surrey|romantic comedy|zombie|english|tv show in film|cricket bat|broken bottle|survival horror|british pub|english pub|you've got red on you|", "overview": "Shaun lives a supremely uneventful life, which revolves around his girlfriend, his mother, and, above all, his local pub. This gentle routine is threatened when the dead return to life and make strenuous attempts to snack on ordinary Londoners.", "text_for_embedding": "Shaun of the Dead (2004). Genres: Horror, Comedy. Shaun lives a supremely uneventful life, which revolves around his girlfriend, his mother, and, above all, his local pub. This gentle routine is threatened when the dead return to life and make strenuous attempts to snack on ordinary Londoners.. Tags: record collection, flower, cheese, pub, surrey, romantic comedy, zombie, english, tv show in film, cricket bat, broken bottle, survival horror, british pub, english pub, you've got red on you"} +{"id": "14745", "title": "The Haunting of Molly Hartley", "year": 2008, "duration_min": 82, "rating": 4.3, "genres": "Drama, Horror", "genres_pipe": "|Drama|Horror|", "keywords": "", "tags_pipe": "", "overview": "When teenage Molly Hartley moves to a new town, she's haunted by terrifying visions that may have to do with dark secrets from her past. Something evil lurks just beneath the lush surfaces of her private-school world, and it holds the rights to her very soul. On the eve of her 18th birthday, Molly is about to discover the truth of just who or what she is destined to become.", "text_for_embedding": "The Haunting of Molly Hartley (2008). Genres: Drama, Horror. When teenage Molly Hartley moves to a new town, she's haunted by terrifying visions that may have to do with dark secrets from her past. Something evil lurks just beneath the lush surfaces of her private-school world, and it holds the rights to her very soul. On the eve of her 18th birthday, Molly is about to discover the truth of just who or what she is destined to become.. Tags: "} +{"id": "26748", "title": "Lone Star", "year": 1996, "duration_min": 135, "rating": 6.9, "genres": "Drama, Mystery, Romance", "genres_pipe": "|Drama|Mystery|Romance|", "keywords": "sheriff, family secrets, neo-western, dark secrets", "tags_pipe": "|sheriff|family secrets|neo-western|dark secrets|", "overview": "When the skeleton of his murdered predecessor is found, Sheriff Sam Deeds unearths many other long-buried secrets in his Texas border town.", "text_for_embedding": "Lone Star (1996). Genres: Drama, Mystery, Romance. When the skeleton of his murdered predecessor is found, Sheriff Sam Deeds unearths many other long-buried secrets in his Texas border town.. Tags: sheriff, family secrets, neo-western, dark secrets"} +{"id": "11357", "title": "Halloween 4: The Return of Michael Myers", "year": 1988, "duration_min": 88, "rating": 5.9, "genres": "Horror, Thriller", "genres_pipe": "|Horror|Thriller|", "keywords": "sheriff, scissors, ambulance, halloween, twist, knife, sequel, murder, serial killer, masked killer, blood, niece, evil, michael myers, october", "tags_pipe": "|sheriff|scissors|ambulance|halloween|twist|knife|sequel|murder|serial killer|masked killer|blood|niece|evil|michael myers|october|", "overview": "The legend of that creepy masked-man, Michael Myers, comes to life once again in this fourth installment of the successful horror franchise. This time, it's Michael's niece, Jamie, who can't seem to escape her crazy uncle. With Michael on the loose, Jamie enlists the help of good old Dr. Loomis to stop the murderer. This time, though, there seems to be no end to Michael's madness.", "text_for_embedding": "Halloween 4: The Return of Michael Myers (1988). Genres: Horror, Thriller. The legend of that creepy masked-man, Michael Myers, comes to life once again in this fourth installment of the successful horror franchise. This time, it's Michael's niece, Jamie, who can't seem to escape her crazy uncle. With Michael on the loose, Jamie enlists the help of good old Dr. Loomis to stop the murderer. This time, though, there seems to be no end to Michael's madness.. Tags: sheriff, scissors, ambulance, halloween, twist, knife, sequel, murder, serial killer, masked killer, blood, niece, evil, michael myers, october"} +{"id": "24913", "title": "April Fool's Day", "year": 1986, "duration_min": 89, "rating": 5.8, "genres": "Horror, Mystery", "genres_pipe": "|Horror|Mystery|", "keywords": "island, party, murder, teen movie, slasher, april fool's day, holiday horror, canuxploitation, elimination derby, college friends", "tags_pipe": "|island|party|murder|teen movie|slasher|april fool's day|holiday horror|canuxploitation|elimination derby|college friends|", "overview": "A group of eight college friends gather together at an island mansion belonging to heiress Muffy St. John to celebrate their final year of school. They soon discover that each has a hidden secret from their past which is revealed, and soon after, they turn up dead.", "text_for_embedding": "April Fool's Day (1986). Genres: Horror, Mystery. A group of eight college friends gather together at an island mansion belonging to heiress Muffy St. John to celebrate their final year of school. They soon discover that each has a hidden secret from their past which is revealed, and soon after, they turn up dead.. Tags: island, party, murder, teen movie, slasher, april fool's day, holiday horror, canuxploitation, elimination derby, college friends"} +{"id": "13776", "title": "Diner", "year": 1982, "duration_min": 110, "rating": 6.9, "genres": "Comedy, Drama", "genres_pipe": "|Comedy|Drama|", "keywords": "diner, baltimore maryland, fake accident, gambling debt, twenty something, 1950s", "tags_pipe": "|diner|baltimore maryland|fake accident|gambling debt|twenty something|1950s|", "overview": "Set in 1959, Diner shows how five young men resist their adulthood and seek refuge in their beloved Diner. The mundane, childish, and titillating details of their lives are shared. But the golden moments pass, and the men shoulder their responsibilities, leaving the Diner behind.", "text_for_embedding": "Diner (1982). Genres: Comedy, Drama. Set in 1959, Diner shows how five young men resist their adulthood and seek refuge in their beloved Diner. The mundane, childish, and titillating details of their lives are shared. But the golden moments pass, and the men shoulder their responsibilities, leaving the Diner behind.. Tags: diner, baltimore maryland, fake accident, gambling debt, twenty something, 1950s"} +{"id": "14854", "title": "Lone Wolf McQuade", "year": 1983, "duration_min": 107, "rating": 5.5, "genres": "Action, Crime, Drama, Romance, Thriller, Western", "genres_pipe": "|Action|Crime|Drama|Romance|Thriller|Western|", "keywords": "martial arts, kung fu, texas, fbi, wheelchair, texas ranger, weapon, gun battle, drug, father daughter relationship, killing a dog", "tags_pipe": "|martial arts|kung fu|texas|fbi|wheelchair|texas ranger|weapon|gun battle|drug|father daughter relationship|killing a dog|", "overview": "The archetypical renegade Texas Ranger wages war against a drug kingpin with automatic weapons, his wits and martial arts after a gun battle leaves his partner dead. All of this inevitably culminates a martial arts showdown between the drug lord and the ranger, and involving the woman they both love.", "text_for_embedding": "Lone Wolf McQuade (1983). Genres: Action, Crime, Drama, Romance, Thriller, Western. The archetypical renegade Texas Ranger wages war against a drug kingpin with automatic weapons, his wits and martial arts after a gun battle leaves his partner dead. All of this inevitably culminates a martial arts showdown between the drug lord and the ranger, and involving the woman they both love.. Tags: martial arts, kung fu, texas, fbi, wheelchair, texas ranger, weapon, gun battle, drug, father daughter relationship, killing a dog"} +{"id": "50357", "title": "Apollo 18", "year": 2011, "duration_min": 86, "rating": 5.0, "genres": "Horror, Thriller, Science Fiction", "genres_pipe": "|Horror|Thriller|Science Fiction|", "keywords": "moon, nasa, infection, barbecue, moon landing, hammer, alien, mockumentary, astronaut, alien infection, found footage", "tags_pipe": "|moon|nasa|infection|barbecue|moon landing|hammer|alien|mockumentary|astronaut|alien infection|found footage|", "overview": "Officially, Apollo 17 was the last manned mission to the moon. But a year later in 1973, three American astronauts were sent on a secret mission to the moon funded by the US Department of Defense. What you are about to see is the actual footage which the astronauts captured on that mission. While NASA denies it's authenticity, others say it's the real reason we've never gone back to the moon.", "text_for_embedding": "Apollo 18 (2011). Genres: Horror, Thriller, Science Fiction. Officially, Apollo 17 was the last manned mission to the moon. But a year later in 1973, three American astronauts were sent on a secret mission to the moon funded by the US Department of Defense. What you are about to see is the actual footage which the astronauts captured on that mission. While NASA denies it's authenticity, others say it's the real reason we've never gone back to the moon.. Tags: moon, nasa, infection, barbecue, moon landing, hammer, alien, mockumentary, astronaut, alien infection, found footage"} +{"id": "13090", "title": "Sunshine Cleaning", "year": 2008, "duration_min": 102, "rating": 6.5, "genres": "Comedy, Drama", "genres_pipe": "|Comedy|Drama|", "keywords": "suicide, single parent, sister sister relationship, cleaning lady, new mexico, teamwork, family business , crime scene, woman director", "tags_pipe": "|suicide|single parent|sister sister relationship|cleaning lady|new mexico|teamwork|family business |crime scene|woman director|", "overview": "A single mother and her slacker sister find an unexpected way to turn their lives around in the off-beat dramatic comedy. In order to raise the tuition to send her young son to private school the mom starts an unusual business – a biohazard removal/crime scene clean-up service.", "text_for_embedding": "Sunshine Cleaning (2008). Genres: Comedy, Drama. A single mother and her slacker sister find an unexpected way to turn their lives around in the off-beat dramatic comedy. In order to raise the tuition to send her young son to private school the mom starts an unusual business – a biohazard removal/crime scene clean-up service.. Tags: suicide, single parent, sister sister relationship, cleaning lady, new mexico, teamwork, family business , crime scene, woman director"} +{"id": "192141", "title": "No Escape", "year": 2015, "duration_min": 103, "rating": 6.7, "genres": "Action, Thriller", "genres_pipe": "|Action|Thriller|", "keywords": "hotel, revolution, race against time, engineer, coup, survival, rebellion, execution, american, family, american abroad, u.s. embassy, foreign", "tags_pipe": "|hotel|revolution|race against time|engineer|coup|survival|rebellion|execution|american|family|american abroad|u.s. embassy|foreign|", "overview": "In their new overseas home, an American family soon finds themselves caught in the middle of a coup, and they frantically look for a safe escape in an environment where foreigners are being immediately executed.", "text_for_embedding": "No Escape (2015). Genres: Action, Thriller. In their new overseas home, an American family soon finds themselves caught in the middle of a coup, and they frantically look for a safe escape in an environment where foreigners are being immediately executed.. Tags: hotel, revolution, race against time, engineer, coup, survival, rebellion, execution, american, family, american abroad, u.s. embassy, foreign"} +{"id": "16441", "title": "The Beastmaster", "year": 1982, "duration_min": 118, "rating": 6.0, "genres": "Action, Fantasy", "genres_pipe": "|Action|Fantasy|", "keywords": "sword fight, animal", "tags_pipe": "|sword fight|animal|", "overview": "Dar, is the son of a king, who is hunted by a priest after his birth and grows up in another family. When he becomes a grown man his new father is murdered by savages and he discovers that he has the ability to communicate with the animals, which leads him on his quest for revenge against his father's killers.", "text_for_embedding": "The Beastmaster (1982). Genres: Action, Fantasy. Dar, is the son of a king, who is hunted by a priest after his birth and grows up in another family. When he becomes a grown man his new father is murdered by savages and he discovers that he has the ability to communicate with the animals, which leads him on his quest for revenge against his father's killers.. Tags: sword fight, animal"} +{"id": "29996", "title": "Solomon and Sheba", "year": 1959, "duration_min": 139, "rating": 5.4, "genres": "Drama, History, Romance, War", "genres_pipe": "|Drama|History|Romance|War|", "keywords": "israel, egypt, religion and supernatural, epic", "tags_pipe": "|israel|egypt|religion and supernatural|epic|", "overview": "Under the rule of King David, Israel is united and prosperous although surrounded by enemies including Egypt and its allies. The aging King David favors his younger son, Solomon, as his successor, but David's elder son Prince Adonijah, a warrior, declares himself King. When David learns of this, he publicly announces Solomon to be his successor. Adonijah and Joab, his general, withdraw in rage. Israel prospers under King Solomon's wise and benevolent rule and is seen as a threat to more tyrannical monarchs in the region. The Pharaoh of Egypt agrees to cede a Red Sea port to the Queen of Sheba in a plot to undermine Solomon's rule. Sheba is to seduce Solomon and introduce Sheban pagan worship into Jerusalem. Meanwhile, Prince Adonijah, now banished, also conspires with Pharaoh and is given an army to defeat Solomon. The film is a highly fictionalized dramatization of events depicted in The Bible -- First Kings chapter 10 and Second Chronicles chapter 9.", "text_for_embedding": "Solomon and Sheba (1959). Genres: Drama, History, Romance, War. Under the rule of King David, Israel is united and prosperous although surrounded by enemies including Egypt and its allies. The aging King David favors his younger son, Solomon, as his successor, but David's elder son Prince Adonijah, a warrior, declares himself King. When David learns of this, he publicly announces Solomon to be his successor. Adonijah and Joab, his general, withdraw in rage. Israel prospers under King Solomon's wise and benevolent rule and is seen as a threat to more tyrannical monarchs in the region. The Pharaoh of Egypt agrees to cede a Red Sea port to the Queen of Sheba in a plot to undermine Solomon's rule. Sheba is to seduce Solomon and introduce Sheban pagan worship into Jerusalem. Meanwhile, Prince Adonijah, now banished, also conspires with Pharaoh and is given an army to defeat Solomon. The film is a highly fictionalized dramatization of events depicted in The Bible -- First Kings chapter 10 and Second Chronicles chapter 9.. Tags: israel, egypt, religion and supernatural, epic"} +{"id": "351819", "title": "Fifty Shades of Black", "year": 2016, "duration_min": 92, "rating": 4.3, "genres": "Romance, Comedy", "genres_pipe": "|Romance|Comedy|", "keywords": "sex, black, parody, spoof, millionaire", "tags_pipe": "|sex|black|parody|spoof|millionaire|", "overview": "An inexperienced college student meets a wealthy businessman whose sexual practices put a strain on their relationship.", "text_for_embedding": "Fifty Shades of Black (2016). Genres: Romance, Comedy. An inexperienced college student meets a wealthy businessman whose sexual practices put a strain on their relationship.. Tags: sex, black, parody, spoof, millionaire"} +{"id": "14834", "title": "Not Easily Broken", "year": 2009, "duration_min": 99, "rating": 6.3, "genres": "Drama, Romance", "genres_pipe": "|Drama|Romance|", "keywords": "", "tags_pipe": "", "overview": "A car accident and shifting affections test the bond between a married couple.", "text_for_embedding": "Not Easily Broken (2009). Genres: Drama, Romance. A car accident and shifting affections test the bond between a married couple.. Tags: "} +{"id": "22649", "title": "A Farewell to Arms", "year": 1932, "duration_min": 89, "rating": 6.2, "genres": "Drama, Romance, War", "genres_pipe": "|Drama|Romance|War|", "keywords": "italy, nurse, love letter, officer, priest, escape, hospital, best friend, pre-code, air raid, ambulance driver, battle of the isonzo, air attack", "tags_pipe": "|italy|nurse|love letter|officer|priest|escape|hospital|best friend|pre-code|air raid|ambulance driver|battle of the isonzo|air attack|", "overview": "British nurse Catherine Barkley (Helen Hayes) and American Lieutenant Frederic Henry (Gary Cooper) fall in love during the First World War in Italy. Eventually separated by Frederic's transfer, tremendous challenges and difficult decisions face each, as the war rages on. Academy Awards winner for Best Cinematography and for Best Sound, Recording. Nominated for Best Picture and for Best Art Direction.", "text_for_embedding": "A Farewell to Arms (1932). Genres: Drama, Romance, War. British nurse Catherine Barkley (Helen Hayes) and American Lieutenant Frederic Henry (Gary Cooper) fall in love during the First World War in Italy. Eventually separated by Frederic's transfer, tremendous challenges and difficult decisions face each, as the war rages on. Academy Awards winner for Best Cinematography and for Best Sound, Recording. Nominated for Best Picture and for Best Art Direction.. Tags: italy, nurse, love letter, officer, priest, escape, hospital, best friend, pre-code, air raid, ambulance driver, battle of the isonzo, air attack"} +{"id": "378200", "title": "The Perfect Match", "year": 2016, "duration_min": 96, "rating": 5.2, "genres": "Comedy, Romance", "genres_pipe": "|Comedy|Romance|", "keywords": "bet, match, playboy, fear of commitment, best friend", "tags_pipe": "|bet|match|playboy|fear of commitment|best friend|", "overview": "Terrence J. stars as Charlie, a playboy who's convinced that relationships are dead. His two best friends, Donald Faison and Robert C. Riley, bet him that if he sticks to one woman for one month, he's bound to get attached. Charlie denies this until he crosses paths with the beautiful and mysterious Eva, played by singer/actress Cassie. They may agree to a casual affair, but eventually Charlie is questioning whether he may actually want more.", "text_for_embedding": "The Perfect Match (2016). Genres: Comedy, Romance. Terrence J. stars as Charlie, a playboy who's convinced that relationships are dead. His two best friends, Donald Faison and Robert C. Riley, bet him that if he sticks to one woman for one month, he's bound to get attached. Charlie denies this until he crosses paths with the beautiful and mysterious Eva, played by singer/actress Cassie. They may agree to a casual affair, but eventually Charlie is questioning whether he may actually want more.. Tags: bet, match, playboy, fear of commitment, best friend"} +{"id": "20455", "title": "Digimon: The Movie", "year": 2000, "duration_min": 82, "rating": 6.2, "genres": "Fantasy, Animation, Science Fiction, Family", "genres_pipe": "|Fantasy|Animation|Science Fiction|Family|", "keywords": "video game, monster, loss of energy, egg, computer, good vs evil, internet, based on video game, giant egg, animal trainer, superhero kids, anime", "tags_pipe": "|video game|monster|loss of energy|egg|computer|good vs evil|internet|based on video game|giant egg|animal trainer|superhero kids|anime|", "overview": "The first story focused on Tai and Kari Kamiya four years before their adventure in the Digital World. It shows their first encounter with Digimon and what happened to them (as well as the other children). Tai and Kari wake one morning to find a Digi-Egg that came out of their computer the night before and the egg soon hatches, revealing a Botamon. The Digimon then evolves into Koromon and then Agumon (not the same one that became friends with Tai in the series, and yet, somehow, both Koromon and Kari remember each other), who then goes out and unintentionally destroys a good part of the neighborhood with Kari riding on his back. A second Digi-Egg appears in the sky to reveal an evil digimon, Parrotmon. Agumon then Digivolves to Greymon but isn't strong enough to beat Parrotmon and is knocked out. Tai grabs Kari's whistle and wakes up Greymon, who defeats Parrotmon and disappears with him.", "text_for_embedding": "Digimon: The Movie (2000). Genres: Fantasy, Animation, Science Fiction, Family. The first story focused on Tai and Kari Kamiya four years before their adventure in the Digital World. It shows their first encounter with Digimon and what happened to them (as well as the other children). Tai and Kari wake one morning to find a Digi-Egg that came out of their computer the night before and the egg soon hatches, revealing a Botamon. The Digimon then evolves into Koromon and then Agumon (not the same one that became friends with Tai in the series, and yet, somehow, both Koromon and Kari remember each other), who then goes out and unintentionally destroys a good part of the neighborhood with Kari riding on his back. A second Digi-Egg appears in the sky to reveal an evil digimon, Parrotmon. Agumon then Digivolves to Greymon but isn't strong enough to beat Parrotmon and is knocked out. Tai grabs Kari's whistle and wakes up Greymon, who defeats Parrotmon and disappears with him.. Tags: video game, monster, loss of energy, egg, computer, good vs evil, internet, based on video game, giant egg, animal trainer, superhero kids, anime"} +{"id": "13193", "title": "Saved!", "year": 2004, "duration_min": 92, "rating": 6.3, "genres": "Comedy, Drama", "genres_pipe": "|Comedy|Drama|", "keywords": "christianity, gay, coming out, independent film, coming of age, lgbt child", "tags_pipe": "|christianity|gay|coming out|independent film|coming of age|lgbt child|", "overview": "Teenage Mary Cummings, who has \"been Born Again her whole life,\" is about to enter her senior year at American Eagle Christian High School near Baltimore with her Fundamentalist Christian friends Hilary Faye and Veronica, the three of whom have formed a girl group called the Christian Jewels. Everything seems perfect—until Mary’s \"perfect Christian boyfriend\" Dean tells her, as they’re swimming underwater, that he thinks he's gay.", "text_for_embedding": "Saved! (2004). Genres: Comedy, Drama. Teenage Mary Cummings, who has \"been Born Again her whole life,\" is about to enter her senior year at American Eagle Christian High School near Baltimore with her Fundamentalist Christian friends Hilary Faye and Veronica, the three of whom have formed a girl group called the Christian Jewels. Everything seems perfect—until Mary’s \"perfect Christian boyfriend\" Dean tells her, as they’re swimming underwater, that he thinks he's gay.. Tags: christianity, gay, coming out, independent film, coming of age, lgbt child"} +{"id": "11042", "title": "The Barbarian Invasions", "year": 2003, "duration_min": 99, "rating": 6.7, "genres": "Comedy, Crime, Drama", "genres_pipe": "|Comedy|Crime|Drama|", "keywords": "father son relationship, socialism, yuppie, professor, dying and death, cancer, money, university, illness, dying, family conflict, friend", "tags_pipe": "|father son relationship|socialism|yuppie|professor|dying and death|cancer|money|university|illness|dying|family conflict|friend|", "overview": "In this belated sequel to 'The Decline of the American Empire', 50-something Montreal college professor, Remy, learns that he is dying of liver cancer. He decides to make amends meet to his friends and family before he dies. He first tries to made peace with his ex-wife Louise, who asks their estranged son Sebastian, a successful businessman living in London, to come home. Sebastian makes the impossible happen, using his contacts and disrupting the entire Canadian system in every way possible to help his father fight his terminal illness to the bitter end, while he also tries to reunite his former friends, Pierre, Alain, Dominique, Diane, and Claude to see their old friend before he passes on.", "text_for_embedding": "The Barbarian Invasions (2003). Genres: Comedy, Crime, Drama. In this belated sequel to 'The Decline of the American Empire', 50-something Montreal college professor, Remy, learns that he is dying of liver cancer. He decides to make amends meet to his friends and family before he dies. He first tries to made peace with his ex-wife Louise, who asks their estranged son Sebastian, a successful businessman living in London, to come home. Sebastian makes the impossible happen, using his contacts and disrupting the entire Canadian system in every way possible to help his father fight his terminal illness to the bitter end, while he also tries to reunite his former friends, Pierre, Alain, Dominique, Diane, and Claude to see their old friend before he passes on.. Tags: father son relationship, socialism, yuppie, professor, dying and death, cancer, money, university, illness, dying, family conflict, friend"} +{"id": "10786", "title": "Robin and Marian", "year": 1976, "duration_min": 106, "rating": 6.6, "genres": "Action, Adventure, Drama, Romance", "genres_pipe": "|Action|Adventure|Drama|Romance|", "keywords": "england, crusade, robin hood, king richard", "tags_pipe": "|england|crusade|robin hood|king richard|", "overview": "Whatever became of Robin Hood after his famed tale of good deeds ended? Now you can find out, in this sequel that takes place years after Robin and his merry men bested the Sheriff of Nottingham. After following Richard the Lionhearted to the crusades, Robin (Sean Connery) returns to Sherwood Forest to find things drastically changed. Audrey Hepburn plays the stalwart Marian … who's joined a nunnery!", "text_for_embedding": "Robin and Marian (1976). Genres: Action, Adventure, Drama, Romance. Whatever became of Robin Hood after his famed tale of good deeds ended? Now you can find out, in this sequel that takes place years after Robin and his merry men bested the Sheriff of Nottingham. After following Richard the Lionhearted to the crusades, Robin (Sean Connery) returns to Sherwood Forest to find things drastically changed. Audrey Hepburn plays the stalwart Marian … who's joined a nunnery!. Tags: england, crusade, robin hood, king richard"} +{"id": "12484", "title": "The Forsaken", "year": 2001, "duration_min": 90, "rating": 4.9, "genres": "Action, Adventure, Horror, Thriller", "genres_pipe": "|Action|Adventure|Horror|Thriller|", "keywords": "vampire, full moon, poster, hitchhiker, homoeroticism, newspaper headline, vampire slayer, switchblade, gun in mouth, film canister, playing chicken, blood sucking, traffic violation, virus", "tags_pipe": "|vampire|full moon|poster|hitchhiker|homoeroticism|newspaper headline|vampire slayer|switchblade|gun in mouth|film canister|playing chicken|blood sucking|traffic violation|virus|", "overview": "A young man is in a race against time as he searches for a cure after becoming infected with a virus that will eventually turn him into a blood-sucking vampire.", "text_for_embedding": "The Forsaken (2001). Genres: Action, Adventure, Horror, Thriller. A young man is in a race against time as he searches for a cure after becoming infected with a virus that will eventually turn him into a blood-sucking vampire.. Tags: vampire, full moon, poster, hitchhiker, homoeroticism, newspaper headline, vampire slayer, switchblade, gun in mouth, film canister, playing chicken, blood sucking, traffic violation, virus"} +{"id": "17339", "title": "Force 10 from Navarone", "year": 1978, "duration_min": 118, "rating": 6.4, "genres": "Action, Adventure, War, Thriller", "genres_pipe": "|Action|Adventure|War|Thriller|", "keywords": "gun, traitor, nazis, bridge, major, colonel, blood, sergeant, battle, partisan, woman, task force, keith mallory", "tags_pipe": "|gun|traitor|nazis|bridge|major|colonel|blood|sergeant|battle|partisan|woman|task force|keith mallory|", "overview": "Mallory and Miller are back. The survivors of Navarone are sent on a mission along with a unit called Force 10, which is led by Colonel Barnsby. But Force 10 has a mission of their own which the boys know nothing about.", "text_for_embedding": "Force 10 from Navarone (1978). Genres: Action, Adventure, War, Thriller. Mallory and Miller are back. The survivors of Navarone are sent on a mission along with a unit called Force 10, which is led by Colonel Barnsby. But Force 10 has a mission of their own which the boys know nothing about.. Tags: gun, traitor, nazis, bridge, major, colonel, blood, sergeant, battle, partisan, woman, task force, keith mallory"} +{"id": "11959", "title": "UHF", "year": 1989, "duration_min": 97, "rating": 6.7, "genres": "Comedy", "genres_pipe": "|Comedy|", "keywords": "loser, tv station, game show, tv star, music video, satire, cult film, indiana jones spoof scene, music spoof", "tags_pipe": "|loser|tv station|game show|tv star|music video|satire|cult film|indiana jones spoof scene|music spoof|", "overview": "The eccentric new manager of a UHF television channel tries to save the station from financial ruin with an odd array of programming.", "text_for_embedding": "UHF (1989). Genres: Comedy. The eccentric new manager of a UHF television channel tries to save the station from financial ruin with an odd array of programming.. Tags: loser, tv station, game show, tv star, music video, satire, cult film, indiana jones spoof scene, music spoof"} +{"id": "9900", "title": "Grandma's Boy", "year": 2006, "duration_min": 94, "rating": 6.6, "genres": "Comedy", "genres_pipe": "|Comedy|", "keywords": "video game, grandmother grandson relationship, man child, stoner, game tester", "tags_pipe": "|video game|grandmother grandson relationship|man child|stoner|game tester|", "overview": "Even though he's 35, Alex acts more like he's 13, spending his days as the world's oldest video game tester and his evenings developing the next big Xbox game. But he gets kicked out of his apartment and is forced to move in with his grandmother.", "text_for_embedding": "Grandma's Boy (2006). Genres: Comedy. Even though he's 35, Alex acts more like he's 13, spending his days as the world's oldest video game tester and his evenings developing the next big Xbox game. But he gets kicked out of his apartment and is forced to move in with his grandmother.. Tags: video game, grandmother grandson relationship, man child, stoner, game tester"} +{"id": "14662", "title": "Slums of Beverly Hills", "year": 1998, "duration_min": 91, "rating": 6.5, "genres": "Comedy, Drama", "genres_pipe": "|Comedy|Drama|", "keywords": "sex, independent film, moving, beverly hills, woman director, nursing school, nomad", "tags_pipe": "|sex|independent film|moving|beverly hills|woman director|nursing school|nomad|", "overview": "In 1976, a lower-middle-class teenager struggles to cope living with her neurotic family of nomads on the outskirts of Beverly Hills.", "text_for_embedding": "Slums of Beverly Hills (1998). Genres: Comedy, Drama. In 1976, a lower-middle-class teenager struggles to cope living with her neurotic family of nomads on the outskirts of Beverly Hills.. Tags: sex, independent film, moving, beverly hills, woman director, nursing school, nomad"} +{"id": "335", "title": "Once Upon a Time in the West", "year": 1968, "duration_min": 175, "rating": 8.1, "genres": "Western", "genres_pipe": "|Western|", "keywords": "showdown, bounty, bounty hunter, loss of brother, sadness, blackmail, harmonica, anti hero, auction, dying and death, peasant, insanity, spaghetti western", "tags_pipe": "|showdown|bounty|bounty hunter|loss of brother|sadness|blackmail|harmonica|anti hero|auction|dying and death|peasant|insanity|spaghetti western|", "overview": "This classic western masterpiece is an epic film about a widow whose land and life are in danger as the railroad is getting closer and closer to taking them over. A mysterious harmonica player joins forces with a desperado to protect the woman and her land.", "text_for_embedding": "Once Upon a Time in the West (1968). Genres: Western. This classic western masterpiece is an epic film about a widow whose land and life are in danger as the railroad is getting closer and closer to taking them over. A mysterious harmonica player joins forces with a desperado to protect the woman and her land.. Tags: showdown, bounty, bounty hunter, loss of brother, sadness, blackmail, harmonica, anti hero, auction, dying and death, peasant, insanity, spaghetti western"} +{"id": "15745", "title": "Made", "year": 2001, "duration_min": 94, "rating": 6.3, "genres": "Action, Comedy, Thriller", "genres_pipe": "|Action|Comedy|Thriller|", "keywords": "", "tags_pipe": "", "overview": "Two aspiring boxers lifelong friends get involved in a money-laundering scheme through a low-level organized crime group.", "text_for_embedding": "Made (2001). Genres: Action, Comedy, Thriller. Two aspiring boxers lifelong friends get involved in a money-laundering scheme through a low-level organized crime group.. Tags: "} +{"id": "17431", "title": "Moon", "year": 2009, "duration_min": 97, "rating": 7.6, "genres": "Science Fiction, Drama", "genres_pipe": "|Science Fiction|Drama|", "keywords": "moon, artificial intelligence, clone, isolation, future, dystopia, space, cloning, moon base", "tags_pipe": "|moon|artificial intelligence|clone|isolation|future|dystopia|space|cloning|moon base|", "overview": "With only three weeks left in his three year contract, Sam Bell is getting anxious to finally return to Earth. He is the only occupant of a Moon-based manufacturing facility along with his computer and assistant, GERTY. When he has an accident however, he wakens to find that he is not alone.", "text_for_embedding": "Moon (2009). Genres: Science Fiction, Drama. With only three weeks left in his three year contract, Sam Bell is getting anxious to finally return to Earth. He is the only occupant of a Moon-based manufacturing facility along with his computer and assistant, GERTY. When he has an accident however, he wakens to find that he is not alone.. Tags: moon, artificial intelligence, clone, isolation, future, dystopia, space, cloning, moon base"} +{"id": "21014", "title": "Keeping Up with the Steins", "year": 2006, "duration_min": 90, "rating": 5.2, "genres": "Comedy", "genres_pipe": "|Comedy|", "keywords": "bar mitvah, party, independent film", "tags_pipe": "|bar mitvah|party|independent film|", "overview": "All hilarity breaks loose in this heartwarming coming-of-age comedy when three generations of Fiedlers collide in a crazy family reunion. As they prepare for the biggest Bar Mitzvah on the block, they begin to see that they're much more alike than they'd originally thought.", "text_for_embedding": "Keeping Up with the Steins (2006). Genres: Comedy. All hilarity breaks loose in this heartwarming coming-of-age comedy when three generations of Fiedlers collide in a crazy family reunion. As they prepare for the biggest Bar Mitzvah on the block, they begin to see that they're much more alike than they'd originally thought.. Tags: bar mitvah, party, independent film"} +{"id": "78394", "title": "Sea Rex 3D: Journey to a Prehistoric World", "year": 2010, "duration_min": 41, "rating": 5.9, "genres": "Documentary", "genres_pipe": "|Documentary|", "keywords": "prehistoric, dinosaur, imax, underwater scene, 3d, short", "tags_pipe": "|prehistoric|dinosaur|imax|underwater scene|3d|short|", "overview": "Through the power of IMAX 3D, experience a wondrous adventure from the dinosaur age. Join Julie, an imaginative young woman, in a unique voyage through time and space. Explore an amazing underwater universe inhabited by larger-than-life creatures which were ruling the seas before dinosaurs conquered the earth. See science come alive in an entertaining manner and get ready for a face-to-face encounter with the T-Rex of the seas!", "text_for_embedding": "Sea Rex 3D: Journey to a Prehistoric World (2010). Genres: Documentary. Through the power of IMAX 3D, experience a wondrous adventure from the dinosaur age. Join Julie, an imaginative young woman, in a unique voyage through time and space. Explore an amazing underwater universe inhabited by larger-than-life creatures which were ruling the seas before dinosaurs conquered the earth. See science come alive in an entertaining manner and get ready for a face-to-face encounter with the T-Rex of the seas!. Tags: prehistoric, dinosaur, imax, underwater scene, 3d, short"} +{"id": "10217", "title": "The Sweet Hereafter", "year": 1997, "duration_min": 112, "rating": 6.8, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "canada, suffering, village, paralysis, independent film, lawyer, school bus, vehicular accident", "tags_pipe": "|canada|suffering|village|paralysis|independent film|lawyer|school bus|vehicular accident|", "overview": "A small mountain community in Canada is devastated when a school bus accident leaves more than a dozen of its children dead. A big-city lawyer arrives to help the survivors' and victims' families prepare a class-action suit, but his efforts only seem to push the townspeople further apart. At the same time, one teenage survivor of the accident has to reckon with the loss of innocence brought about by a different kind of damage.", "text_for_embedding": "The Sweet Hereafter (1997). Genres: Drama. A small mountain community in Canada is devastated when a school bus accident leaves more than a dozen of its children dead. A big-city lawyer arrives to help the survivors' and victims' families prepare a class-action suit, but his efforts only seem to push the townspeople further apart. At the same time, one teenage survivor of the accident has to reckon with the loss of innocence brought about by a different kind of damage.. Tags: canada, suffering, village, paralysis, independent film, lawyer, school bus, vehicular accident"} +{"id": "46332", "title": "Of Gods and Men", "year": 2010, "duration_min": 120, "rating": 6.5, "genres": "Drama, History", "genres_pipe": "|Drama|History|", "keywords": "monk, sunrise, medicine, hostage, evacuation, koran, protection, french, community, peace, faith, based on true story, religion, terrorism", "tags_pipe": "|monk|sunrise|medicine|hostage|evacuation|koran|protection|french|community|peace|faith|based on true story|religion|terrorism|", "overview": "French drama based on the 1996 kidnapping and killing of seven monks in Algeria. A group of Trappist monks reside in the monastery of Tibhirine in Algeria, where they live in harmony with the largely muslim population. When a bloody conflict between Algeria's army and Muslim Jihadi insurgents disrupts the peace, they are forced to consider fleeing the monastery and deserting the villagers they have ministered to. In the face of deadly violence the monks wrestle with their faith and their convictions, eventually deciding to stay and help their neighbours keep the army and the insurgents at bay.", "text_for_embedding": "Of Gods and Men (2010). Genres: Drama, History. French drama based on the 1996 kidnapping and killing of seven monks in Algeria. A group of Trappist monks reside in the monastery of Tibhirine in Algeria, where they live in harmony with the largely muslim population. When a bloody conflict between Algeria's army and Muslim Jihadi insurgents disrupts the peace, they are forced to consider fleeing the monastery and deserting the villagers they have ministered to. In the face of deadly violence the monks wrestle with their faith and their convictions, eventually deciding to stay and help their neighbours keep the army and the insurgents at bay.. Tags: monk, sunrise, medicine, hostage, evacuation, koran, protection, french, community, peace, faith, based on true story, religion, terrorism"} +{"id": "13996", "title": "Bottle Shock", "year": 2008, "duration_min": 110, "rating": 6.6, "genres": "Comedy, Drama", "genres_pipe": "|Comedy|Drama|", "keywords": "wine garden, wine, winzer", "tags_pipe": "|wine garden|wine|winzer|", "overview": "Paris-based wine expert Steven Spurrier heads to California in search of cheap wine that he can use for a blind taste test in the French capital. Stumbling upon the Napa Valley, the stuck-up Englishman is shocked to discover a winery turning out top-notch chardonnay. Determined to make a name for himself, he sets about getting the booze back to Paris.", "text_for_embedding": "Bottle Shock (2008). Genres: Comedy, Drama. Paris-based wine expert Steven Spurrier heads to California in search of cheap wine that he can use for a blind taste test in the French capital. Stumbling upon the Napa Valley, the stuck-up Englishman is shocked to discover a winery turning out top-notch chardonnay. Determined to make a name for himself, he sets about getting the booze back to Paris.. Tags: wine garden, wine, winzer"} +{"id": "3028", "title": "Jekyll and Hyde ... Together Again", "year": 1982, "duration_min": 87, "rating": 4.6, "genres": "Comedy, Horror, Science Fiction", "genres_pipe": "|Comedy|Horror|Science Fiction|", "keywords": "double life, musical, jekyll and hyde", "tags_pipe": "|double life|musical|jekyll and hyde|", "overview": "Dr. Jekyll (Mark Blankfield) inhales white powder and becomes an obnoxious Southern Californian.", "text_for_embedding": "Jekyll and Hyde ... Together Again (1982). Genres: Comedy, Horror, Science Fiction. Dr. Jekyll (Mark Blankfield) inhales white powder and becomes an obnoxious Southern Californian.. Tags: double life, musical, jekyll and hyde"} +{"id": "1024", "title": "Heavenly Creatures", "year": 1994, "duration_min": 99, "rating": 7.0, "genres": "Drama, Fantasy", "genres_pipe": "|Drama|Fantasy|", "keywords": "mother, sex, secret, obsession, literature, nudity, fantasy, passion, love, friends, murder, independent film, lesbian, true, relationship", "tags_pipe": "|mother|sex|secret|obsession|literature|nudity|fantasy|passion|love|friends|murder|independent film|lesbian|true|relationship|", "overview": "Based on the true story of Juliet Hulme and Pauline Parker, two close friends who share a love of fantasy and literature, who conspire to kill Pauline's mother when she tries to end the girls' intense and obsessive relationship.", "text_for_embedding": "Heavenly Creatures (1994). Genres: Drama, Fantasy. Based on the true story of Juliet Hulme and Pauline Parker, two close friends who share a love of fantasy and literature, who conspire to kill Pauline's mother when she tries to end the girls' intense and obsessive relationship.. Tags: mother, sex, secret, obsession, literature, nudity, fantasy, passion, love, friends, murder, independent film, lesbian, true, relationship"} +{"id": "343795", "title": "90 Minutes in Heaven", "year": 2015, "duration_min": 121, "rating": 5.4, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "hospital, church", "tags_pipe": "|hospital|church|", "overview": "A man involved in a horrific car crash is pronounced dead, only to come back to life an hour and a half later, claiming to have seen Heaven.", "text_for_embedding": "90 Minutes in Heaven (2015). Genres: Drama. A man involved in a horrific car crash is pronounced dead, only to come back to life an hour and a half later, claiming to have seen Heaven.. Tags: hospital, church"} +{"id": "45658", "title": "Everything Must Go", "year": 2010, "duration_min": 97, "rating": 6.0, "genres": "Comedy, Drama, Romance", "genres_pipe": "|Comedy|Drama|Romance|", "keywords": "alcohol, arizona, beer, playboy, independent film, salesman, pregnant, repo man", "tags_pipe": "|alcohol|arizona|beer|playboy|independent film|salesman|pregnant|repo man|", "overview": "When an alcoholic relapses, causing him to lose his wife and his job, he holds a yard sale on his front lawn in an attempt to start over. A new neighbor might be the key to his return to form.", "text_for_embedding": "Everything Must Go (2010). Genres: Comedy, Drama, Romance. When an alcoholic relapses, causing him to lose his wife and his job, he holds a yard sale on his front lawn in an attempt to start over. A new neighbor might be the key to his return to form.. Tags: alcohol, arizona, beer, playboy, independent film, salesman, pregnant, repo man"} +{"id": "16148", "title": "Zero Effect", "year": 1998, "duration_min": 116, "rating": 6.0, "genres": "Comedy, Crime, Mystery, Thriller", "genres_pipe": "|Comedy|Crime|Mystery|Thriller|", "keywords": "detective, blackmail, independent film", "tags_pipe": "|detective|blackmail|independent film|", "overview": "Daryl Zero is a private investigator. Along with his assistant, Steve Arlo he solves impossible crimes and puzzles. Though a master investigator, when he is not working, Zero doesn't know what to do with himself. He has no social skills, writes bad music, and drives Arlo crazy. In his latest case, Zero must find out who is blackmailing a rich executive, and when his client won't tell him, why.", "text_for_embedding": "Zero Effect (1998). Genres: Comedy, Crime, Mystery, Thriller. Daryl Zero is a private investigator. Along with his assistant, Steve Arlo he solves impossible crimes and puzzles. Though a master investigator, when he is not working, Zero doesn't know what to do with himself. He has no social skills, writes bad music, and drives Arlo crazy. In his latest case, Zero must find out who is blackmailing a rich executive, and when his client won't tell him, why.. Tags: detective, blackmail, independent film"} +{"id": "4553", "title": "The Machinist", "year": 2004, "duration_min": 101, "rating": 7.3, "genres": "Thriller, Drama", "genres_pipe": "|Thriller|Drama|", "keywords": "factory, insomnia, post it, machinist, cleaning bathroom tile, osha, taunting, manhole, one armed man, torment, department of motor vehicles, mother's day, losing weight, old photograph, dostoevsky", "tags_pipe": "|factory|insomnia|post it|machinist|cleaning bathroom tile|osha|taunting|manhole|one armed man|torment|department of motor vehicles|mother's day|losing weight|old photograph|dostoevsky|", "overview": "The Machinist is the story of Trevor Reznik, a lathe-operator who is dying of insomnia. In a machine shop, occupational hazards are bad enough under normal circumstances; yet for Trevor the risks are compounded by fatigue. Trevor has lost the ability to sleep. This is no ordinary insomnia...", "text_for_embedding": "The Machinist (2004). Genres: Thriller, Drama. The Machinist is the story of Trevor Reznik, a lathe-operator who is dying of insomnia. In a machine shop, occupational hazards are bad enough under normal circumstances; yet for Trevor the risks are compounded by fatigue. Trevor has lost the ability to sleep. This is no ordinary insomnia.... Tags: factory, insomnia, post it, machinist, cleaning bathroom tile, osha, taunting, manhole, one armed man, torment, department of motor vehicles, mother's day, losing weight, old photograph, dostoevsky"} +{"id": "36351", "title": "Light Sleeper", "year": 1992, "duration_min": 103, "rating": 5.7, "genres": "Drama, Crime", "genres_pipe": "|Drama|Crime|", "keywords": "suicide, drug dealer, redemption, addict, existentialism", "tags_pipe": "|suicide|drug dealer|redemption|addict|existentialism|", "overview": "A drug dealer with upscale clientele is having moral problems going about his daily deliveries. A reformed addict, he has never gotten over the wife that left him, and the couple that use him for deliveries worry about his mental well-being and his effectiveness at his job. Meanwhile someone is killing women in apparently drug-related incidents.", "text_for_embedding": "Light Sleeper (1992). Genres: Drama, Crime. A drug dealer with upscale clientele is having moral problems going about his daily deliveries. A reformed addict, he has never gotten over the wife that left him, and the couple that use him for deliveries worry about his mental well-being and his effectiveness at his job. Meanwhile someone is killing women in apparently drug-related incidents.. Tags: suicide, drug dealer, redemption, addict, existentialism"} +{"id": "245916", "title": "Kill the Messenger", "year": 2014, "duration_min": 112, "rating": 6.6, "genres": "Thriller, Crime, Drama, Mystery", "genres_pipe": "|Thriller|Crime|Drama|Mystery|", "keywords": "biography", "tags_pipe": "|biography|", "overview": "A reporter becomes the target of a vicious smear campaign that drives him to the point of suicide after he exposes the CIA's role in arming Contra rebels in Nicaragua and importing cocaine into California. Based on the true story of journalist Gary Webb.", "text_for_embedding": "Kill the Messenger (2014). Genres: Thriller, Crime, Drama, Mystery. A reporter becomes the target of a vicious smear campaign that drives him to the point of suicide after he exposes the CIA's role in arming Contra rebels in Nicaragua and importing cocaine into California. Based on the true story of journalist Gary Webb.. Tags: biography"} +{"id": "27585", "title": "Rabbit Hole", "year": 2010, "duration_min": 91, "rating": 6.9, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "loss of son, trauma, toy, marriage, grief, memory, crying, parking lot, therapy, car seat", "tags_pipe": "|loss of son|trauma|toy|marriage|grief|memory|crying|parking lot|therapy|car seat|", "overview": "Life for a happy couple is turned upside down after their young son dies in an accident.", "text_for_embedding": "Rabbit Hole (2010). Genres: Drama. Life for a happy couple is turned upside down after their young son dies in an accident.. Tags: loss of son, trauma, toy, marriage, grief, memory, crying, parking lot, therapy, car seat"} +{"id": "1415", "title": "Party Monster", "year": 2003, "duration_min": 98, "rating": 5.9, "genres": "Comedy, Drama, Crime", "genres_pipe": "|Comedy|Drama|Crime|", "keywords": "new york, hotel, based on novel, birthday, bath, nightclub, donut, hallucination, costume, injection, death of a friend, arrest, police, party, friends", "tags_pipe": "|new york|hotel|based on novel|birthday|bath|nightclub|donut|hallucination|costume|injection|death of a friend|arrest|police|party|friends|", "overview": "The New York club scene of the 80s and 90s was a world like no other. Into this candy-colored, mirror ball playground stepped Michael Alig, a wannabe from nowhere special. Under the watchful eye of veteran club kid James St. James, Alig quickly rose to the top... and there was no place to go but down.", "text_for_embedding": "Party Monster (2003). Genres: Comedy, Drama, Crime. The New York club scene of the 80s and 90s was a world like no other. Into this candy-colored, mirror ball playground stepped Michael Alig, a wannabe from nowhere special. Under the watchful eye of veteran club kid James St. James, Alig quickly rose to the top... and there was no place to go but down.. Tags: new york, hotel, based on novel, birthday, bath, nightclub, donut, hallucination, costume, injection, death of a friend, arrest, police, party, friends"} +{"id": "313922", "title": "Green Room", "year": 2016, "duration_min": 95, "rating": 6.7, "genres": "Horror, Crime, Thriller", "genres_pipe": "|Horror|Crime|Thriller|", "keywords": "skinhead, heroin, music, cover-up, murder, suspense, gore, duct tape, swastika, pitbull, witness to murder, meat cleaver, bitten in the neck, neo nazi, punk band", "tags_pipe": "|skinhead|heroin|music|cover-up|murder|suspense|gore|duct tape|swastika|pitbull|witness to murder|meat cleaver|bitten in the neck|neo nazi|punk band|", "overview": "A young punk rock band find themselves trapped in a secluded venue after stumbling upon a horrific act of violence.", "text_for_embedding": "Green Room (2016). Genres: Horror, Crime, Thriller. A young punk rock band find themselves trapped in a secluded venue after stumbling upon a horrific act of violence.. Tags: skinhead, heroin, music, cover-up, murder, suspense, gore, duct tape, swastika, pitbull, witness to murder, meat cleaver, bitten in the neck, neo nazi, punk band"} +{"id": "14474", "title": "The Oh in Ohio", "year": 2006, "duration_min": 88, "rating": 5.8, "genres": "Comedy, Drama, Romance", "genres_pipe": "|Comedy|Drama|Romance|", "keywords": "sex, adultery, depression, infidelity, nightclub, nudity, orgasm, promise, bikini, guru, love, lesbian, lust, drug, therapy", "tags_pipe": "|sex|adultery|depression|infidelity|nightclub|nudity|orgasm|promise|bikini|guru|love|lesbian|lust|drug|therapy|", "overview": "Priscilla and Jack appear to be the perfect couple, but they have a secret: She is sexually frustrated. They separate in the hope of resolving the situation. While Jack moves into a bachelor pad and begins an affair with a student, Priscilla discovers the joys of self-pleasuring and finds an unusual bed-mate.", "text_for_embedding": "The Oh in Ohio (2006). Genres: Comedy, Drama, Romance. Priscilla and Jack appear to be the perfect couple, but they have a secret: She is sexually frustrated. They separate in the hope of resolving the situation. While Jack moves into a bachelor pad and begins an affair with a student, Priscilla discovers the joys of self-pleasuring and finds an unusual bed-mate.. Tags: sex, adultery, depression, infidelity, nightclub, nudity, orgasm, promise, bikini, guru, love, lesbian, lust, drug, therapy"} +{"id": "199933", "title": "Atlas Shrugged Part III: Who is John Galt?", "year": 2014, "duration_min": 99, "rating": 3.9, "genres": "Drama, Science Fiction, Mystery", "genres_pipe": "|Drama|Science Fiction|Mystery|", "keywords": "trilogy, ayn rand", "tags_pipe": "|trilogy|ayn rand|", "overview": "Approaching collapse, the nation's economy is quickly eroding. As crime and fear take over the countryside, the government continues to exert its brutal force against the nation's most productive who are mysteriously vanishing - leaving behind a wake of despair. One man has the answer. One woman stands in his way. Some will stop at nothing to control him. Others will stop at nothing to save him. He swore by his life. They swore to find him.", "text_for_embedding": "Atlas Shrugged Part III: Who is John Galt? (2014). Genres: Drama, Science Fiction, Mystery. Approaching collapse, the nation's economy is quickly eroding. As crime and fear take over the countryside, the government continues to exert its brutal force against the nation's most productive who are mysteriously vanishing - leaving behind a wake of despair. One man has the answer. One woman stands in his way. Some will stop at nothing to control him. Others will stop at nothing to save him. He swore by his life. They swore to find him.. Tags: trilogy, ayn rand"} +{"id": "13685", "title": "Bottle Rocket", "year": 1996, "duration_min": 91, "rating": 6.8, "genres": "Comedy, Crime, Drama", "genres_pipe": "|Comedy|Crime|Drama|", "keywords": "brother brother relationship, robbery, burglar, language barrier, motel, independent film, psychiatric hospital, maid, theft, nervous breakdown, escapade, laundry room", "tags_pipe": "|brother brother relationship|robbery|burglar|language barrier|motel|independent film|psychiatric hospital|maid|theft|nervous breakdown|escapade|laundry room|", "overview": "Upon his release from a mental hospital following a nervous breakdown, the directionless Anthony joins his friend Dignan, who seems far less sane than the former. Dignan has hatched a hair-brained scheme for an as-yet-unspecified crime spree that somehow involves his former boss, the (supposedly) legendary Mr. Henry.", "text_for_embedding": "Bottle Rocket (1996). Genres: Comedy, Crime, Drama. Upon his release from a mental hospital following a nervous breakdown, the directionless Anthony joins his friend Dignan, who seems far less sane than the former. Dignan has hatched a hair-brained scheme for an as-yet-unspecified crime spree that somehow involves his former boss, the (supposedly) legendary Mr. Henry.. Tags: brother brother relationship, robbery, burglar, language barrier, motel, independent film, psychiatric hospital, maid, theft, nervous breakdown, escapade, laundry room"} +{"id": "8744", "title": "Albino Alligator", "year": 1996, "duration_min": 97, "rating": 5.6, "genres": "Crime, Drama, Thriller", "genres_pipe": "|Crime|Drama|Thriller|", "keywords": "brother brother relationship, bar, gun, hostage, siege, police, suspense", "tags_pipe": "|brother brother relationship|bar|gun|hostage|siege|police|suspense|", "overview": "Three petty thieves who the police believe to be major criminals are chased into a basement bar where they take five hostages including all the bar employees. The rest of the movie deals with the cops lurking outside the bar while the trio try to get hold of the situation inside.", "text_for_embedding": "Albino Alligator (1996). Genres: Crime, Drama, Thriller. Three petty thieves who the police believe to be major criminals are chased into a basement bar where they take five hostages including all the bar employees. The rest of the movie deals with the cops lurking outside the bar while the trio try to get hold of the situation inside.. Tags: brother brother relationship, bar, gun, hostage, siege, police, suspense"} +{"id": "38428", "title": "Gandhi, My Father", "year": 2007, "duration_min": 136, "rating": 6.0, "genres": "Drama, Foreign, History", "genres_pipe": "|Drama|Foreign|History|", "keywords": "biography, mahatma gandhi, tragedy", "tags_pipe": "|biography|mahatma gandhi|tragedy|", "overview": "With Gandhi My Father, producer Anil Kapoor and director Feroz Abbas Khan have shed light onto Gandhi the person, rather than Gandhi the icon. Using Gandhi’s political career as a canvas, the film paints a picture of his intricate, complex, and strained relationship with his son Harilal Gandhi.", "text_for_embedding": "Gandhi, My Father (2007). Genres: Drama, Foreign, History. With Gandhi My Father, producer Anil Kapoor and director Feroz Abbas Khan have shed light onto Gandhi the person, rather than Gandhi the icon. Using Gandhi’s political career as a canvas, the film paints a picture of his intricate, complex, and strained relationship with his son Harilal Gandhi.. Tags: biography, mahatma gandhi, tragedy"} +{"id": "8847", "title": "Standard Operating Procedure", "year": 2008, "duration_min": 117, "rating": 6.6, "genres": "Documentary", "genres_pipe": "|Documentary|", "keywords": "prison, prisoner, jail guard, prison cell, bagdad, iraq, photography, detention camp, torture, soldier, humiliation", "tags_pipe": "|prison|prisoner|jail guard|prison cell|bagdad|iraq|photography|detention camp|torture|soldier|humiliation|", "overview": "Errol Morris examines the incidents of abuse and torture of suspected terrorists at the hands of U.S. forces at the Abu Ghraib prison.", "text_for_embedding": "Standard Operating Procedure (2008). Genres: Documentary. Errol Morris examines the incidents of abuse and torture of suspected terrorists at the hands of U.S. forces at the Abu Ghraib prison.. Tags: prison, prisoner, jail guard, prison cell, bagdad, iraq, photography, detention camp, torture, soldier, humiliation"} +{"id": "39269", "title": "Out of the Blue", "year": 1980, "duration_min": 94, "rating": 6.5, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "punk, independent film, coming of age, teenage girl, alcoholic father", "tags_pipe": "|punk|independent film|coming of age|teenage girl|alcoholic father|", "overview": "Dennis Hopper is a hard-drinking truck driver who loses control of his truck under the influence and slams it into a busload of screaming children. After serving his five year jail sentence, Hopper finds his daughter, Cebe (Linda Manz), the love of his live, grown into a rebellious punk in a backwater town, having barely been looked after by her junkie mon (Sharron Farrell). Cebe's hopes of once again becoming a \"normal\" family painfully proves to be doomed, as she desperately tries to hold everyone together. Hopper's loose, naturalistic style and sympathetic, yet critical attitude infuses the drama with a painful power that finally erupts in a devastating and thrillling conclusion.", "text_for_embedding": "Out of the Blue (1980). Genres: Drama. Dennis Hopper is a hard-drinking truck driver who loses control of his truck under the influence and slams it into a busload of screaming children. After serving his five year jail sentence, Hopper finds his daughter, Cebe (Linda Manz), the love of his live, grown into a rebellious punk in a backwater town, having barely been looked after by her junkie mon (Sharron Farrell). Cebe's hopes of once again becoming a \"normal\" family painfully proves to be doomed, as she desperately tries to hold everyone together. Hopper's loose, naturalistic style and sympathetic, yet critical attitude infuses the drama with a painful power that finally erupts in a devastating and thrillling conclusion.. Tags: punk, independent film, coming of age, teenage girl, alcoholic father"} +{"id": "46838", "title": "Tucker and Dale vs Evil", "year": 2010, "duration_min": 89, "rating": 7.3, "genres": "Comedy, Horror", "genres_pipe": "|Comedy|Horror|", "keywords": "cabin, chainsaw, hillbilly, body in chipper, cut off jeans", "tags_pipe": "|cabin|chainsaw|hillbilly|body in chipper|cut off jeans|", "overview": "Two hillbillies are suspected of being killers by a group of paranoid college kids camping near the duo's West Virginian cabin. As the body count climbs, so does the fear and confusion as the college kids try to seek revenge against the pair.", "text_for_embedding": "Tucker and Dale vs Evil (2010). Genres: Comedy, Horror. Two hillbillies are suspected of being killers by a group of paranoid college kids camping near the duo's West Virginian cabin. As the body count climbs, so does the fear and confusion as the college kids try to seek revenge against the pair.. Tags: cabin, chainsaw, hillbilly, body in chipper, cut off jeans"} +{"id": "51384", "title": "Lovely, Still", "year": 2008, "duration_min": 92, "rating": 6.2, "genres": "Drama, Romance", "genres_pipe": "|Drama|Romance|", "keywords": "independent film", "tags_pipe": "|independent film|", "overview": "A holiday fable that tells the story of an elderly man discovering love for the first time.", "text_for_embedding": "Lovely, Still (2008). Genres: Drama, Romance. A holiday fable that tells the story of an elderly man discovering love for the first time.. Tags: independent film"} +{"id": "56930", "title": "Tycoon", "year": 1947, "duration_min": 128, "rating": 6.6, "genres": "Action, Drama, Romance", "genres_pipe": "|Action|Drama|Romance|", "keywords": "mountains, engineer, railroad, ethics", "tags_pipe": "|mountains|engineer|railroad|ethics|", "overview": "Engineer Johnny Munroe is enlisted to build a railroad tunnel through a mountain to reach mines. His task is complicated, and his ethics are compromised, when he falls in love with his boss's daughter", "text_for_embedding": "Tycoon (1947). Genres: Action, Drama, Romance. Engineer Johnny Munroe is enlisted to build a railroad tunnel through a mountain to reach mines. His task is complicated, and his ethics are compromised, when he falls in love with his boss's daughter. Tags: mountains, engineer, railroad, ethics"} +{"id": "41730", "title": "Desert Blue", "year": 1999, "duration_min": 90, "rating": 5.5, "genres": "Comedy, Drama", "genres_pipe": "|Comedy|Drama|", "keywords": "bomb, fire, fbi, quarantine, independent film, water park, bonfire, explosives, four-wheelers, soda, aqueduct, beer bong, giant ice cream cone", "tags_pipe": "|bomb|fire|fbi|quarantine|independent film|water park|bonfire|explosives|four-wheelers|soda|aqueduct|beer bong|giant ice cream cone|", "overview": "An academic obsessed with \"roadside attractions\" and his tv-star daughter finally discover the world's largest ice cream cone, the centerpiece for an old gold-rush town struggling to stay on the map. They end up staying longer than expected because of an accident that spilled an unknown cola ingredient all over the highway. They spend the next few days with the various residents of the town which include a teenage girl who loves to blow things up and a boy trying to keep alive his fathers dream of building a beachside resort in the middle of the desert.", "text_for_embedding": "Desert Blue (1999). Genres: Comedy, Drama. An academic obsessed with \"roadside attractions\" and his tv-star daughter finally discover the world's largest ice cream cone, the centerpiece for an old gold-rush town struggling to stay on the map. They end up staying longer than expected because of an accident that spilled an unknown cola ingredient all over the highway. They spend the next few days with the various residents of the town which include a teenage girl who loves to blow things up and a boy trying to keep alive his fathers dream of building a beachside resort in the middle of the desert.. Tags: bomb, fire, fbi, quarantine, independent film, water park, bonfire, explosives, four-wheelers, soda, aqueduct, beer bong, giant ice cream cone"} +{"id": "18442", "title": "Decoys", "year": 2004, "duration_min": 95, "rating": 4.7, "genres": "Horror, Science Fiction, Thriller", "genres_pipe": "|Horror|Science Fiction|Thriller|", "keywords": "", "tags_pipe": "", "overview": "Luke and Roger are just another couple of college guys trying to lose their virginity. But when Luke sees something unusual, he begins to suspect that the girls on campus aren't exactly...human.", "text_for_embedding": "Decoys (2004). Genres: Horror, Science Fiction, Thriller. Luke and Roger are just another couple of college guys trying to lose their virginity. But when Luke sees something unusual, he begins to suspect that the girls on campus aren't exactly...human.. Tags: "} +{"id": "298312", "title": "The Visit", "year": 2015, "duration_min": 94, "rating": 6.0, "genres": "Horror, Thriller", "genres_pipe": "|Horror|Thriller|", "keywords": "rap music, pennsylvania, brother sister relationship, farm, grandparents, murder, children, independent film, farmhouse, single mother, violence, oven, found footage, hide and seek, diaper", "tags_pipe": "|rap music|pennsylvania|brother sister relationship|farm|grandparents|murder|children|independent film|farmhouse|single mother|violence|oven|found footage|hide and seek|diaper|", "overview": "The terrifying story of a brother and sister who are sent to their grandparents' remote Pennsylvania farm for a weeklong trip. Once the children discover that the elderly couple is involved in something deeply disturbing, they see their chances of getting back home are growing smaller every day.", "text_for_embedding": "The Visit (2015). Genres: Horror, Thriller. The terrifying story of a brother and sister who are sent to their grandparents' remote Pennsylvania farm for a weeklong trip. Once the children discover that the elderly couple is involved in something deeply disturbing, they see their chances of getting back home are growing smaller every day.. Tags: rap music, pennsylvania, brother sister relationship, farm, grandparents, murder, children, independent film, farmhouse, single mother, violence, oven, found footage, hide and seek, diaper"} +{"id": "11600", "title": "Redacted", "year": 2007, "duration_min": 90, "rating": 6.2, "genres": "Drama, War", "genres_pipe": "|Drama|War|", "keywords": "iraq, iraq war", "tags_pipe": "|iraq|iraq war|", "overview": "Redacted is a film written and directed by Brian De Palma that is a fictional drama loosely based on the Mahmudiyah killings in Iraq.", "text_for_embedding": "Redacted (2007). Genres: Drama, War. Redacted is a film written and directed by Brian De Palma that is a fictional drama loosely based on the Mahmudiyah killings in Iraq.. Tags: iraq, iraq war"} +{"id": "71547", "title": "Fascination", "year": 2004, "duration_min": 95, "rating": 3.8, "genres": "Romance, Thriller", "genres_pipe": "|Romance|Thriller|", "keywords": "beach, murder", "tags_pipe": "|beach|murder|", "overview": "Young Scott Doherty (Adam Garcia) gets suspicious when his mother (Jacqueline Bisset) plans to wed Oliver Vance (Stuart Wilson) soon after her husband's untimely death. Scott investigates with Oliver's pretty daughter, Kelly (Alice Evans), who shared Scott's doubts about the upcoming nuptials. Along the way, he falls in love with Kelly, but a fatal explosion turns Scott's life upside down - and the evidence points to him as the murderer. Has he been framed?", "text_for_embedding": "Fascination (2004). Genres: Romance, Thriller. Young Scott Doherty (Adam Garcia) gets suspicious when his mother (Jacqueline Bisset) plans to wed Oliver Vance (Stuart Wilson) soon after her husband's untimely death. Scott investigates with Oliver's pretty daughter, Kelly (Alice Evans), who shared Scott's doubts about the upcoming nuptials. Along the way, he falls in love with Kelly, but a fatal explosion turns Scott's life upside down - and the evidence points to him as the murderer. Has he been framed?. Tags: beach, murder"} +{"id": "57876", "title": "Area 51", "year": 2015, "duration_min": 91, "rating": 4.2, "genres": "Horror, Thriller, Science Fiction", "genres_pipe": "|Horror|Thriller|Science Fiction|", "keywords": "found footage, area 51", "tags_pipe": "|found footage|area 51|", "overview": "Three young conspiracy theorists attempt to uncover the mysteries of Area 51, the government's secret location rumored to have hosted encounters with alien beings. What they find at this hidden facility exposes unimaginable secrets.", "text_for_embedding": "Area 51 (2015). Genres: Horror, Thriller, Science Fiction. Three young conspiracy theorists attempt to uncover the mysteries of Area 51, the government's secret location rumored to have hosted encounters with alien beings. What they find at this hidden facility exposes unimaginable secrets.. Tags: found footage, area 51"} +{"id": "77495", "title": "Sleep Tight", "year": 2011, "duration_min": 107, "rating": 7.0, "genres": "Thriller", "genres_pipe": "|Thriller|", "keywords": "barcelona spain, blackmail, concierge, caretaker, stalking, apartment building, peep hole, chloroform", "tags_pipe": "|barcelona spain|blackmail|concierge|caretaker|stalking|apartment building|peep hole|chloroform|", "overview": "Apartment concierge Cesar is a miserable person who believes he was born without the ability to be happy. As a result, he decides his mission is to make life hell for everyone around him. A majority of the tenants are easy to agitate, but Clara proves to be harder than the most. So Cesar goes to creepy extremes to make this young woman mentally break down. Things get even more complicated in this twisted relationship when her boyfriend, Marcos, shows up.", "text_for_embedding": "Sleep Tight (2011). Genres: Thriller. Apartment concierge Cesar is a miserable person who believes he was born without the ability to be happy. As a result, he decides his mission is to make life hell for everyone around him. A majority of the tenants are easy to agitate, but Clara proves to be harder than the most. So Cesar goes to creepy extremes to make this young woman mentally break down. Things get even more complicated in this twisted relationship when her boyfriend, Marcos, shows up.. Tags: barcelona spain, blackmail, concierge, caretaker, stalking, apartment building, peep hole, chloroform"} +{"id": "13849", "title": "The Cottage", "year": 2008, "duration_min": 92, "rating": 6.3, "genres": "Horror, Comedy, Crime, Thriller", "genres_pipe": "|Horror|Comedy|Crime|Thriller|", "keywords": "ransom, hostage, hostage drama", "tags_pipe": "|ransom|hostage|hostage drama|", "overview": "In a remote part of the countryside, a bungled kidnapping turns into a living nightmare for four central characters when they cross paths with a psychopathic farmer and all hell breaks loose.", "text_for_embedding": "The Cottage (2008). Genres: Horror, Comedy, Crime, Thriller. In a remote part of the countryside, a bungled kidnapping turns into a living nightmare for four central characters when they cross paths with a psychopathic farmer and all hell breaks loose.. Tags: ransom, hostage, hostage drama"} +{"id": "14849", "title": "Dead Like Me: Life After Death", "year": 2009, "duration_min": 87, "rating": 5.8, "genres": "Drama, Fantasy, Comedy", "genres_pipe": "|Drama|Fantasy|Comedy|", "keywords": "suicide, life and death, coma, afterlife", "tags_pipe": "|suicide|life and death|coma|afterlife|", "overview": "When George and her colleagues get a new boss whose focus is on moving souls quickly and enjoying life without consequences, the team begins to break the strict reaper rules. While her friends fall victim to their desires for money, success, and fame, George breaks another rule by revealing her true identity to her living family.", "text_for_embedding": "Dead Like Me: Life After Death (2009). Genres: Drama, Fantasy, Comedy. When George and her colleagues get a new boss whose focus is on moving souls quickly and enjoying life without consequences, the team begins to break the strict reaper rules. While her friends fall victim to their desires for money, success, and fame, George breaks another rule by revealing her true identity to her living family.. Tags: suicide, life and death, coma, afterlife"} +{"id": "12486", "title": "Farce of the Penguins", "year": 2006, "duration_min": 80, "rating": 3.2, "genres": "Comedy, Documentary", "genres_pipe": "|Comedy|Documentary|", "keywords": "penguin, balzen, antarctic", "tags_pipe": "|penguin|balzen|antarctic|", "overview": "In this spoof of \"March of the Penguins,\" nature footage of penguins near the South Pole gets a soundtrack of human voices. Carl and Jimmy, best friends, walk 70 miles to the mating grounds where the female penguins wait. The huddled masses of females - especially Melissa and Vicki - talk about males, mating, and what might happen this year. Carl, Jimmy, and the other males make the long trek talking about food, fornication and flatulence. Until this year, Carl's sex life has been dismal, but he falls hard for Melissa. She seems to like him. A crisis develops when Jimmy comes upon something soft in the dark. Can friends forgive? Does parenthood await Carl and Melissa?", "text_for_embedding": "Farce of the Penguins (2006). Genres: Comedy, Documentary. In this spoof of \"March of the Penguins,\" nature footage of penguins near the South Pole gets a soundtrack of human voices. Carl and Jimmy, best friends, walk 70 miles to the mating grounds where the female penguins wait. The huddled masses of females - especially Melissa and Vicki - talk about males, mating, and what might happen this year. Carl, Jimmy, and the other males make the long trek talking about food, fornication and flatulence. Until this year, Carl's sex life has been dismal, but he falls hard for Melissa. She seems to like him. A crisis develops when Jimmy comes upon something soft in the dark. Can friends forgive? Does parenthood await Carl and Melissa?. Tags: penguin, balzen, antarctic"} +{"id": "19615", "title": "Flying By", "year": 2009, "duration_min": 95, "rating": 7.0, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "", "tags_pipe": "", "overview": "A real estate developer goes to his 25th high school reunion without his wife, and finds his old teenage band playing. They get him up on stage for a couple of songs, and convince him come to a rehearsal. His wife is outraged that he played. His daughter thinks it's kind of cool. His Mother, in a retirement home, encourages him to enjoy life. He feels some temporary relief from the pressures of business complexities and the stress of marriage tensions. The band gets booked at a popular bar, which leads to a last minute booking to open for a reunion tour, with the possibility of additional tour dates. But the band has internal conflicts. He faces a tough decision to give it a shot even though it will affect his marriage, his family, particularly his daughter, and his business.", "text_for_embedding": "Flying By (2009). Genres: Drama. A real estate developer goes to his 25th high school reunion without his wife, and finds his old teenage band playing. They get him up on stage for a couple of songs, and convince him come to a rehearsal. His wife is outraged that he played. His daughter thinks it's kind of cool. His Mother, in a retirement home, encourages him to enjoy life. He feels some temporary relief from the pressures of business complexities and the stress of marriage tensions. The band gets booked at a popular bar, which leads to a last minute booking to open for a reunion tour, with the possibility of additional tour dates. But the band has internal conflicts. He faces a tough decision to give it a shot even though it will affect his marriage, his family, particularly his daughter, and his business.. Tags: "} +{"id": "244403", "title": "Rudderless", "year": 2014, "duration_min": 105, "rating": 7.4, "genres": "Music, Drama, Comedy", "genres_pipe": "|Music|Drama|Comedy|", "keywords": "father son relationship, rock band, grieving father", "tags_pipe": "|father son relationship|rock band|grieving father|", "overview": "A grieving father in a downward spiral stumbles across a box of his recently deceased son's demo tapes and lyrics. Shocked by the discovery of this unknown talent, he forms a band in the hope of finding some catharsis.", "text_for_embedding": "Rudderless (2014). Genres: Music, Drama, Comedy. A grieving father in a downward spiral stumbles across a box of his recently deceased son's demo tapes and lyrics. Shocked by the discovery of this unknown talent, he forms a band in the hope of finding some catharsis.. Tags: father son relationship, rock band, grieving father"} +{"id": "292481", "title": "Henry & Me", "year": 2014, "duration_min": 67, "rating": 3.0, "genres": "Family, Animation", "genres_pipe": "|Family|Animation|", "keywords": "baseball, surrealism, children, new york yankees", "tags_pipe": "|baseball|surrealism|children|new york yankees|", "overview": "Henry & Me tells the courageous story of Jack (AUSTIN WILLIAMS), a brave young boy who is dealt a life changing blow. Low on confidence and filled with self-doubt, hope seems lost until a mysterious stranger named Henry (RICHARD GERE) appears. With the touch of his pin, Henry sweeps Jack away to a magical world where illness no longer exists and New York Yankee legends play forever. The incredible journey brings Jack face to face with Babe Ruth (CHAZZ PALMINTERI), Thurman Munson (PAUL SIMON), Lefty Gomez (LUIS GUZMAN) and Mickey Mantle (DAVID MANTLE) – who all teach Jack to face his fears and never give up. The movie climaxes at Yankee stadium, where Jack must test his newfound courage to save the season and find his way home. Featuring an all star-cast of unforgettable characters, Henry & Me is heartwarming movie experience for the entire family with a message of hope… when life throws a curve… swing away!", "text_for_embedding": "Henry & Me (2014). Genres: Family, Animation. Henry & Me tells the courageous story of Jack (AUSTIN WILLIAMS), a brave young boy who is dealt a life changing blow. Low on confidence and filled with self-doubt, hope seems lost until a mysterious stranger named Henry (RICHARD GERE) appears. With the touch of his pin, Henry sweeps Jack away to a magical world where illness no longer exists and New York Yankee legends play forever. The incredible journey brings Jack face to face with Babe Ruth (CHAZZ PALMINTERI), Thurman Munson (PAUL SIMON), Lefty Gomez (LUIS GUZMAN) and Mickey Mantle (DAVID MANTLE) – who all teach Jack to face his fears and never give up. The movie climaxes at Yankee stadium, where Jack must test his newfound courage to save the season and find his way home. Featuring an all star-cast of unforgettable characters, Henry & Me is heartwarming movie experience for the entire family with a message of hope… when life throws a curve… swing away!. Tags: baseball, surrealism, children, new york yankees"} +{"id": "340816", "title": "Christmas Eve", "year": 2015, "duration_min": 95, "rating": 6.1, "genres": "Romance, Comedy", "genres_pipe": "|Romance|Comedy|", "keywords": "photographer, surgeon, orchestra, doctor, car accident, power outage, stuck in elevator, elevator, christmas", "tags_pipe": "|photographer|surgeon|orchestra|doctor|car accident|power outage|stuck in elevator|elevator|christmas|", "overview": "Hilarity, romance, and transcendence prevail after a power outage traps six different groups of New Yorkers inside elevators on Christmas Eve.", "text_for_embedding": "Christmas Eve (2015). Genres: Romance, Comedy. Hilarity, romance, and transcendence prevail after a power outage traps six different groups of New Yorkers inside elevators on Christmas Eve.. Tags: photographer, surgeon, orchestra, doctor, car accident, power outage, stuck in elevator, elevator, christmas"} +{"id": "78814", "title": "We Have Your Husband", "year": 2011, "duration_min": 89, "rating": 5.0, "genres": "TV Movie, Crime, Drama, Thriller", "genres_pipe": "|TV Movie|Crime|Drama|Thriller|", "keywords": "", "tags_pipe": "", "overview": "American-born Jayne Valseca, her husband Eduardo, the son of a legendary Mexican newspaper publisher, and their two children live an idyllic life on their 1,000 acre ranch outside of a peaceful Mexico town. But in the summer of 2007, their peaceful life is turned into a real-life nightmare when Eduardo is ambushed and kidnapped by strangers. With kidnapping becoming a pervasive and lucrative business in Mexico, Jayne is at the mercy of the kidnappers when they demand millions for the husband's safe release. She's pushed to the limit to do everything she possibly can to raise the money necessary to bring Eduardo back alive. As Eduardo is starved and tortured, he looses hope of ever seeing his family again but despite the dire and bleak times, Jayne refuses to give up and decides to turn the tables on the kidnappers and makes demands of her own. The film is based on a true story from the book, We Have Your Husband: One Woman's Terrifying Story of a Kidnapping in Mexico.", "text_for_embedding": "We Have Your Husband (2011). Genres: TV Movie, Crime, Drama, Thriller. American-born Jayne Valseca, her husband Eduardo, the son of a legendary Mexican newspaper publisher, and their two children live an idyllic life on their 1,000 acre ranch outside of a peaceful Mexico town. But in the summer of 2007, their peaceful life is turned into a real-life nightmare when Eduardo is ambushed and kidnapped by strangers. With kidnapping becoming a pervasive and lucrative business in Mexico, Jayne is at the mercy of the kidnappers when they demand millions for the husband's safe release. She's pushed to the limit to do everything she possibly can to raise the money necessary to bring Eduardo back alive. As Eduardo is starved and tortured, he looses hope of ever seeing his family again but despite the dire and bleak times, Jayne refuses to give up and decides to turn the tables on the kidnappers and makes demands of her own. The film is based on a true story from the book, We Have Your Husband: One Woman's Terrifying Story of a Kidnapping in Mexico.. Tags: "} +{"id": "297596", "title": "Dying of the Light", "year": 2014, "duration_min": 94, "rating": 4.5, "genres": "Thriller, Drama", "genres_pipe": "|Thriller|Drama|", "keywords": "cia, retirement, espionage, terrorism", "tags_pipe": "|cia|retirement|espionage|terrorism|", "overview": "Evan Lake, a veteran CIA agent, has been ordered to retire. But when his protégé uncovers evidence that Lake's nemesis, the terrorist Banir, has resurfaced, Lake goes rogue, embarking on a perilous, intercontinental mission to eliminate his sworn enemy.", "text_for_embedding": "Dying of the Light (2014). Genres: Thriller, Drama. Evan Lake, a veteran CIA agent, has been ordered to retire. But when his protégé uncovers evidence that Lake's nemesis, the terrorist Banir, has resurfaced, Lake goes rogue, embarking on a perilous, intercontinental mission to eliminate his sworn enemy.. Tags: cia, retirement, espionage, terrorism"} +{"id": "299552", "title": "Born Of War", "year": 2013, "duration_min": 109, "rating": 4.1, "genres": "Action, Thriller, War", "genres_pipe": "|Action|Thriller|War|", "keywords": "gun, oil, secret service, woman director, mina", "tags_pipe": "|gun|oil|secret service|woman director|mina|", "overview": "Mina, a young college student, has her life ripped away after her family is killed. When she finds out their murder was part of a botched kidnapping to return her to her real father—a terrorist in the middle east.", "text_for_embedding": "Born Of War (2013). Genres: Action, Thriller, War. Mina, a young college student, has her life ripped away after her family is killed. When she finds out their murder was part of a botched kidnapping to return her to her real father—a terrorist in the middle east.. Tags: gun, oil, secret service, woman director, mina"} +{"id": "11935", "title": "Capricorn One", "year": 1977, "duration_min": 123, "rating": 6.4, "genres": "Drama, Action, Thriller, Science Fiction", "genres_pipe": "|Drama|Action|Thriller|Science Fiction|", "keywords": "helicopter, nasa, texas, spacecraft, beguilement, crop duster, conspiracy, escape, astronaut, desert, mission to mars, investigative reporter, launchpad", "tags_pipe": "|helicopter|nasa|texas|spacecraft|beguilement|crop duster|conspiracy|escape|astronaut|desert|mission to mars|investigative reporter|launchpad|", "overview": "In order to protect the reputation of the American space program, a team of scientists stages a phony Mars landing. Willingly participating in the deception are a trio of well-meaning astronauts, who become liabilities when their space capsule is reported lost on re-entry. Now, with the help of a crusading reporter,they must battle a sinister conspiracy that will stop at nothing to keep the truth", "text_for_embedding": "Capricorn One (1977). Genres: Drama, Action, Thriller, Science Fiction. In order to protect the reputation of the American space program, a team of scientists stages a phony Mars landing. Willingly participating in the deception are a trio of well-meaning astronauts, who become liabilities when their space capsule is reported lost on re-entry. Now, with the help of a crusading reporter,they must battle a sinister conspiracy that will stop at nothing to keep the truth. Tags: helicopter, nasa, texas, spacecraft, beguilement, crop duster, conspiracy, escape, astronaut, desert, mission to mars, investigative reporter, launchpad"} +{"id": "447027", "title": "Running Forever", "year": 2015, "duration_min": 88, "rating": 0.0, "genres": "Family", "genres_pipe": "|Family|", "keywords": "", "tags_pipe": "", "overview": "After being estranged since her mother's death in the 9/11 attacks, both daughter and father must work together to re-establish their relationship. When the difficulty nearly consumes them both, a bond with a beautiful horse that has also gone through its own tragic loss brings Taylor Sims, back to what is important - family, friendship and faith. With help from the community and from above, they repair the pieces of their lives and learn to stop running, forever.", "text_for_embedding": "Running Forever (2015). Genres: Family. After being estranged since her mother's death in the 9/11 attacks, both daughter and father must work together to re-establish their relationship. When the difficulty nearly consumes them both, a bond with a beautiful horse that has also gone through its own tragic loss brings Taylor Sims, back to what is important - family, friendship and faith. With help from the community and from above, they repair the pieces of their lives and learn to stop running, forever.. Tags: "} +{"id": "290825", "title": "Yoga Hosers", "year": 2016, "duration_min": 88, "rating": 4.7, "genres": "Comedy, Fantasy, Horror, Thriller", "genres_pipe": "|Comedy|Fantasy|Horror|Thriller|", "keywords": "canada, nazis, sequel, spin off, ancient evil", "tags_pipe": "|canada|nazis|sequel|spin off|ancient evil|", "overview": "Two teenage yoga enthusiasts team up with a legendary man-hunter to battle with an ancient evil presence that is threatening their major party plans.", "text_for_embedding": "Yoga Hosers (2016). Genres: Comedy, Fantasy, Horror, Thriller. Two teenage yoga enthusiasts team up with a legendary man-hunter to battle with an ancient evil presence that is threatening their major party plans.. Tags: canada, nazis, sequel, spin off, ancient evil"} +{"id": "361159", "title": "Navy Seals vs. Zombies", "year": 2015, "duration_min": 97, "rating": 3.5, "genres": "Horror, Action", "genres_pipe": "|Horror|Action|", "keywords": "louisiana, navy seal, zombie, violence, infected, walking dead, baton rouge", "tags_pipe": "|louisiana|navy seal|zombie|violence|infected|walking dead|baton rouge|", "overview": "A team of highly skilled Navy SEALS find themselves embarking on the battle of their lives when they come face-to-face with the undead. After a deadly outbreak occurs in New Orleans, the SEALS must fight for their lives, and the city, against an army of zombies.", "text_for_embedding": "Navy Seals vs. Zombies (2015). Genres: Horror, Action. A team of highly skilled Navy SEALS find themselves embarking on the battle of their lives when they come face-to-face with the undead. After a deadly outbreak occurs in New Orleans, the SEALS must fight for their lives, and the city, against an army of zombies.. Tags: louisiana, navy seal, zombie, violence, infected, walking dead, baton rouge"} +{"id": "12555", "title": "I Served the King of England", "year": 2006, "duration_min": 120, "rating": 7.0, "genres": "Comedy, Drama", "genres_pipe": "|Comedy|Drama|", "keywords": "expensive restaurant, luxury, adolf hitler, prague, sudetendeutsch, little boy, nazi germany", "tags_pipe": "|expensive restaurant|luxury|adolf hitler|prague|sudetendeutsch|little boy|nazi germany|", "overview": "Jan Dítě has been released from a Czech prison just before the very end of his 15-year sentence. Settling in a town near the border, he occupies his time with rebuilding a deserted house, and recalling his past. His main wish in life was to be a millionaire. Jan begins his career as a frankfurter vendor, and slowly learns the power of money and the influence it exerts over people.", "text_for_embedding": "I Served the King of England (2006). Genres: Comedy, Drama. Jan Dítě has been released from a Czech prison just before the very end of his 15-year sentence. Settling in a town near the border, he occupies his time with rebuilding a deserted house, and recalling his past. His main wish in life was to be a millionaire. Jan begins his career as a frankfurter vendor, and slowly learns the power of money and the influence it exerts over people.. Tags: expensive restaurant, luxury, adolf hitler, prague, sudetendeutsch, little boy, nazi germany"} +{"id": "31175", "title": "Soul Kitchen", "year": 2009, "duration_min": 99, "rating": 7.1, "genres": "Drama, Comedy", "genres_pipe": "|Drama|Comedy|", "keywords": "", "tags_pipe": "", "overview": "SOUL KITCHEN film centers on a likable but hopelessly disorganized restauranteur, Zinos, whose cafe is second home to a motley crew of lovable eccentrics. When his girlfriend Nadine up and moves to Shanghai, a love-sick Zinos decides to fly after her, leaving his restaurant in the hands of his unreliable ex-con brother Illias. Both decisions turn out disastrous: Illias gambles away the restaurant to a shady real estate agent, and Zinos finds Nadine with a new lover. If the brothers can stop arguing and get it together, the Soul Kitchen might still have one last chance at staying in business. The mayhem that follows is a hilariously entertaining story of self-realization, set to an irresistibly soulful soundtrack.", "text_for_embedding": "Soul Kitchen (2009). Genres: Drama, Comedy. SOUL KITCHEN film centers on a likable but hopelessly disorganized restauranteur, Zinos, whose cafe is second home to a motley crew of lovable eccentrics. When his girlfriend Nadine up and moves to Shanghai, a love-sick Zinos decides to fly after her, leaving his restaurant in the hands of his unreliable ex-con brother Illias. Both decisions turn out disastrous: Illias gambles away the restaurant to a shady real estate agent, and Zinos finds Nadine with a new lover. If the brothers can stop arguing and get it together, the Soul Kitchen might still have one last chance at staying in business. The mayhem that follows is a hilariously entertaining story of self-realization, set to an irresistibly soulful soundtrack.. Tags: "} +{"id": "12498", "title": "Sling Blade", "year": 1996, "duration_min": 135, "rating": 7.4, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "independent film, repair shop, southern, death threat, story, religious art, father figure", "tags_pipe": "|independent film|repair shop|southern|death threat|story|religious art|father figure|", "overview": "Karl Childers is a mentally disabled man who has been in the custody of the state mental hospital since the age of 12 for killing his mother and her lover. Although thoroughly institutionalized, Karl is deemed fit to be released into the outside world.", "text_for_embedding": "Sling Blade (1996). Genres: Drama. Karl Childers is a mentally disabled man who has been in the custody of the state mental hospital since the age of 12 for killing his mother and her lover. Although thoroughly institutionalized, Karl is deemed fit to be released into the outside world.. Tags: independent film, repair shop, southern, death threat, story, religious art, father figure"} +{"id": "77949", "title": "The Awakening", "year": 2011, "duration_min": 107, "rating": 6.3, "genres": "Horror, Thriller", "genres_pipe": "|Horror|Thriller|", "keywords": "suicide, england, classroom, investigation, supernatural, murder, children, haunting, teacher, author, fear, estate, con, discovery, ghost", "tags_pipe": "|suicide|england|classroom|investigation|supernatural|murder|children|haunting|teacher|author|fear|estate|con|discovery|ghost|", "overview": "1921 England is overwhelmed by the loss and grief of World War I. Hoax exposer Florence Cathcart (Hall) visits a boarding school to explain sightings of a child ghost.", "text_for_embedding": "The Awakening (2011). Genres: Horror, Thriller. 1921 England is overwhelmed by the loss and grief of World War I. Hoax exposer Florence Cathcart (Hall) visits a boarding school to explain sightings of a child ghost.. Tags: suicide, england, classroom, investigation, supernatural, murder, children, haunting, teacher, author, fear, estate, con, discovery, ghost"} +{"id": "1690", "title": "Hostel", "year": 2005, "duration_min": 94, "rating": 5.7, "genres": "Horror", "genres_pipe": "|Horror|", "keywords": "bathroom, sex, amsterdam, europe, brothel, slovakia, backpacker, horror, gore, blood, torture, business card, doberman, hostel, surgery", "tags_pipe": "|bathroom|sex|amsterdam|europe|brothel|slovakia|backpacker|horror|gore|blood|torture|business card|doberman|hostel|surgery|", "overview": "Three backpackers head to a Slovakian city that promises to meet their hedonistic expectations, with no idea of the hell that awaits them.", "text_for_embedding": "Hostel (2005). Genres: Horror. Three backpackers head to a Slovakian city that promises to meet their hedonistic expectations, with no idea of the hell that awaits them.. Tags: bathroom, sex, amsterdam, europe, brothel, slovakia, backpacker, horror, gore, blood, torture, business card, doberman, hostel, surgery"} +{"id": "8435", "title": "A Cock and Bull Story", "year": 2005, "duration_min": 94, "rating": 6.2, "genres": "Comedy, Drama", "genres_pipe": "|Comedy|Drama|", "keywords": "adaptation, film in a film", "tags_pipe": "|adaptation|film in a film|", "overview": "Steve Coogan, an arrogant actor with low self-esteem and a complicated love life, is playing the eponymous role in an adaptation of \"The Life and Opinions of Tristram Shandy, Gentleman\" being filmed at a stately home. He constantly spars with actor Rob Brydon, who is playing Uncle Toby and believes his role to be of equal importance to Coogan's.", "text_for_embedding": "A Cock and Bull Story (2005). Genres: Comedy, Drama. Steve Coogan, an arrogant actor with low self-esteem and a complicated love life, is playing the eponymous role in an adaptation of \"The Life and Opinions of Tristram Shandy, Gentleman\" being filmed at a stately home. He constantly spars with actor Rob Brydon, who is playing Uncle Toby and believes his role to be of equal importance to Coogan's.. Tags: adaptation, film in a film"} +{"id": "64720", "title": "Take Shelter", "year": 2011, "duration_min": 120, "rating": 7.1, "genres": "Thriller, Drama", "genres_pipe": "|Thriller|Drama|", "keywords": "shelter, end of the world, sanity, apocalypse", "tags_pipe": "|shelter|end of the world|sanity|apocalypse|", "overview": "Plagued by a series of apocalyptic visions, a young husband and father questions whether to shelter his family from a coming storm, or from himself.", "text_for_embedding": "Take Shelter (2011). Genres: Thriller, Drama. Plagued by a series of apocalyptic visions, a young husband and father questions whether to shelter his family from a coming storm, or from himself.. Tags: shelter, end of the world, sanity, apocalypse"} +{"id": "49365", "title": "Lady in White", "year": 1988, "duration_min": 112, "rating": 6.3, "genres": "Horror, Thriller", "genres_pipe": "|Horror|Thriller|", "keywords": "small town, boy, murder, maniac, ghost, the sixties", "tags_pipe": "|small town|boy|murder|maniac|ghost|the sixties|", "overview": "Locked in a school closet during Halloween 1962, young Frank witnesses the ghost of a young girl and the man who murdered her years ago. Shortly afterward he finds himself stalked by the killer and is soon drawn to an old house where a mysterious Lady In White lives. As he discovers the secret of the woman he soon finds that the killer may be someone close to him.", "text_for_embedding": "Lady in White (1988). Genres: Horror, Thriller. Locked in a school closet during Halloween 1962, young Frank witnesses the ghost of a young girl and the man who murdered her years ago. Shortly afterward he finds himself stalked by the killer and is soon drawn to an old house where a mysterious Lady In White lives. As he discovers the secret of the woman he soon finds that the killer may be someone close to him.. Tags: small town, boy, murder, maniac, ghost, the sixties"} +{"id": "11404", "title": "Driving Lessons", "year": 2006, "duration_min": 98, "rating": 6.3, "genres": "Drama, Comedy", "genres_pipe": "|Drama|Comedy|", "keywords": "auto, autoritian education, independent film, teacher", "tags_pipe": "|auto|autoritian education|independent film|teacher|", "overview": "A shy teenage boy trying to escape the influence of his domineering mother, has his world changed when he begins to work for a retired actress.", "text_for_embedding": "Driving Lessons (2006). Genres: Drama, Comedy. A shy teenage boy trying to escape the influence of his domineering mother, has his world changed when he begins to work for a retired actress.. Tags: auto, autoritian education, independent film, teacher"} +{"id": "300706", "title": "Let's Kill Ward's Wife", "year": 2014, "duration_min": 81, "rating": 5.5, "genres": "Comedy", "genres_pipe": "|Comedy|", "keywords": "wife murder, murder plot", "tags_pipe": "|wife murder|murder plot|", "overview": "Everyone hates Ward’s wife and wants her dead, Ward (Donald Faison) most of all. But when his friends’ murderous fantasies turn into an (accidental) reality, they have to deal with a whole new set of problems — like how to dispose of the body and still make their 3 p.m. tee time. Scott Foley's directorial debut, also starring Foley, Patrick Wilson, Amy Acker, and Nicolette Sheridan, is a blackly comic caper about helping a friend out of a bad relationship by any means necessary.", "text_for_embedding": "Let's Kill Ward's Wife (2014). Genres: Comedy. Everyone hates Ward’s wife and wants her dead, Ward (Donald Faison) most of all. But when his friends’ murderous fantasies turn into an (accidental) reality, they have to deal with a whole new set of problems — like how to dispose of the body and still make their 3 p.m. tee time. Scott Foley's directorial debut, also starring Foley, Patrick Wilson, Amy Acker, and Nicolette Sheridan, is a blackly comic caper about helping a friend out of a bad relationship by any means necessary.. Tags: wife murder, murder plot"} +{"id": "16337", "title": "The Texas Chainsaw Massacre 2", "year": 1986, "duration_min": 101, "rating": 5.9, "genres": "Horror", "genres_pipe": "|Horror|", "keywords": "hammer, gore, slasher, chainsaw, b horror", "tags_pipe": "|hammer|gore|slasher|chainsaw|b horror|", "overview": "A radio host is victimized by the cannibal family as a former Texas Marshall hunts them.", "text_for_embedding": "The Texas Chainsaw Massacre 2 (1986). Genres: Horror. A radio host is victimized by the cannibal family as a former Texas Marshall hunts them.. Tags: hammer, gore, slasher, chainsaw, b horror"} +{"id": "11577", "title": "Pat Garrett & Billy the Kid", "year": 1973, "duration_min": 106, "rating": 7.2, "genres": "Western", "genres_pipe": "|Western|", "keywords": "sheriff, aging, billy the kid, lawlessness, gun battle, gore, breast, old friends, flogging, man slaps a woman, pat garrett, manhunt", "tags_pipe": "|sheriff|aging|billy the kid|lawlessness|gun battle|gore|breast|old friends|flogging|man slaps a woman|pat garrett|manhunt|", "overview": "An aging Pat Garrett is hired as a lawman on behalf of a group of wealthy New Mexico cattle barons--his sole purpose being to bring down his old friend Billy the Kid.", "text_for_embedding": "Pat Garrett & Billy the Kid (1973). Genres: Western. An aging Pat Garrett is hired as a lawman on behalf of a group of wealthy New Mexico cattle barons--his sole purpose being to bring down his old friend Billy the Kid.. Tags: sheriff, aging, billy the kid, lawlessness, gun battle, gore, breast, old friends, flogging, man slaps a woman, pat garrett, manhunt"} +{"id": "77987", "title": "Only God Forgives", "year": 2013, "duration_min": 90, "rating": 5.6, "genres": "Drama, Thriller, Crime", "genres_pipe": "|Drama|Thriller|Crime|", "keywords": "bangkok, suicidal, arthouse, neo-noir, drug trafficker, very little dialogue, emasculation", "tags_pipe": "|bangkok|suicidal|arthouse|neo-noir|drug trafficker|very little dialogue|emasculation|", "overview": "Julian, who runs a Thai boxing club as a front organization for his family's drug smuggling operation, is forced by his mother Jenna to find and kill the individual responsible for his brother's recent death.", "text_for_embedding": "Only God Forgives (2013). Genres: Drama, Thriller, Crime. Julian, who runs a Thai boxing club as a front organization for his family's drug smuggling operation, is forced by his mother Jenna to find and kill the individual responsible for his brother's recent death.. Tags: bangkok, suicidal, arthouse, neo-noir, drug trafficker, very little dialogue, emasculation"} +{"id": "40185", "title": "Camping Sauvage", "year": 2005, "duration_min": 80, "rating": 4.8, "genres": "Drama, Romance", "genres_pipe": "|Drama|Romance|", "keywords": "", "tags_pipe": "", "overview": "Un camping au bord d'un lac pendant les vacances d'été. Camille, 17 ans, y traîne son ennui coincée entre ses parents et son petit ami. Elle rencontre Blaise, la quarantaine, tout juste embauché comme moniteur de voile. Camille et Blaise connaissent tous deux ce même mal de vivre qui les rapproche et les éloigne des autres. Mais leur complicité alimente la rumeur d'une liaison qui exaspère leur entourage et déchaîne les passions. Ils se lancent alors à corps perdus dans une dangereuse histoire d'amour...", "text_for_embedding": "Camping Sauvage (2005). Genres: Drama, Romance. Un camping au bord d'un lac pendant les vacances d'été. Camille, 17 ans, y traîne son ennui coincée entre ses parents et son petit ami. Elle rencontre Blaise, la quarantaine, tout juste embauché comme moniteur de voile. Camille et Blaise connaissent tous deux ce même mal de vivre qui les rapproche et les éloigne des autres. Mais leur complicité alimente la rumeur d'une liaison qui exaspère leur entourage et déchaîne les passions. Ils se lancent alors à corps perdus dans une dangereuse histoire d'amour.... Tags: "} +{"id": "68202", "title": "Without Men", "year": 2011, "duration_min": 83, "rating": 4.6, "genres": "Comedy, Romance", "genres_pipe": "|Comedy|Romance|", "keywords": "woman director", "tags_pipe": "|woman director|", "overview": "The women of a remote Latin American town are forced to pick up the pieces and remake their world when all the town's men are forcibly recruited by communist guerrillas.", "text_for_embedding": "Without Men (2011). Genres: Comedy, Romance. The women of a remote Latin American town are forced to pick up the pieces and remake their world when all the town's men are forcibly recruited by communist guerrillas.. Tags: woman director"} +{"id": "8981", "title": "Dear Frankie", "year": 2004, "duration_min": 105, "rating": 7.0, "genres": "Drama, Family", "genres_pipe": "|Drama|Family|", "keywords": "scotland, father son relationship, single parent, loss of father, violent father, letter, ship, father, little boy, independent film, deaf, woman director", "tags_pipe": "|scotland|father son relationship|single parent|loss of father|violent father|letter|ship|father|little boy|independent film|deaf|woman director|", "overview": "Nine-year-old Frankie and his single mum Lizzie have been on the move ever since Frankie can remember, most recently arriving in a seaside Scottish town. Wanting to protect her deaf son from the truth that they've run away from his father, Lizzie has invented a story that he is away at sea on the HMS Accra. Every few weeks, Lizzie writes Frankie a make-believe letter from his father, telling of his adventures in exotic lands. As Frankie tracks the ship's progress around the globe, he discovers that it is due to dock in his hometown. With the real HMS Accra arriving in only a fortnight, Lizzie must choose between telling Frankie the truth or finding the perfect stranger to play Frankie's father for just one day...", "text_for_embedding": "Dear Frankie (2004). Genres: Drama, Family. Nine-year-old Frankie and his single mum Lizzie have been on the move ever since Frankie can remember, most recently arriving in a seaside Scottish town. Wanting to protect her deaf son from the truth that they've run away from his father, Lizzie has invented a story that he is away at sea on the HMS Accra. Every few weeks, Lizzie writes Frankie a make-believe letter from his father, telling of his adventures in exotic lands. As Frankie tracks the ship's progress around the globe, he discovers that it is due to dock in his hometown. With the real HMS Accra arriving in only a fortnight, Lizzie must choose between telling Frankie the truth or finding the perfect stranger to play Frankie's father for just one day.... Tags: scotland, father son relationship, single parent, loss of father, violent father, letter, ship, father, little boy, independent film, deaf, woman director"} +{"id": "10914", "title": "All Hat", "year": 2007, "duration_min": 89, "rating": 1.0, "genres": "Action, Comedy, Drama, Western", "genres_pipe": "|Action|Comedy|Drama|Western|", "keywords": "indian territory, horse, ranch, stetson, urbanisierung, best friend", "tags_pipe": "|indian territory|horse|ranch|stetson|urbanisierung|best friend|", "overview": "An ex-con returns to his rural Ontario roots and outwits a corrupt and wealthy thoroughbred owner trying to take over a slew of local farms. Ray Dokes, a charming ex-ballplayer, returns from jail to discover the rural landscape of his childhood transformed by urban development. Determined to stay out of trouble, Ray heads to the farm of his old friend Pete Culpepper, a crusty Texas cowboy who trains losing racehorses and whose debts are growing faster than his corn.", "text_for_embedding": "All Hat (2007). Genres: Action, Comedy, Drama, Western. An ex-con returns to his rural Ontario roots and outwits a corrupt and wealthy thoroughbred owner trying to take over a slew of local farms. Ray Dokes, a charming ex-ballplayer, returns from jail to discover the rural landscape of his childhood transformed by urban development. Determined to stay out of trouble, Ray heads to the farm of his old friend Pete Culpepper, a crusty Texas cowboy who trains losing racehorses and whose debts are growing faster than his corn.. Tags: indian territory, horse, ranch, stetson, urbanisierung, best friend"} +{"id": "50848", "title": "The Names of Love", "year": 2010, "duration_min": 100, "rating": 7.3, "genres": "Drama, Comedy, Romance", "genres_pipe": "|Drama|Comedy|Romance|", "keywords": "female nudity, political, voting results", "tags_pipe": "|female nudity|political|voting results|", "overview": "Bahia Benmahmoud, a free-spirited young woman, has a particular way of seeing political engagement, as she doesn't hesitate to sleep with those who don't agree with her to convert them to her cause - which is a lot of people, as all right-leaning people are concerned. Generally, it works pretty well. Until the day she meets Arthur Martin, a discreet forty-something who doesn't like taking risks. She imagines that with a name like that, he's got to be slightly fascist. But names are deceitful and appearances deceiving..", "text_for_embedding": "The Names of Love (2010). Genres: Drama, Comedy, Romance. Bahia Benmahmoud, a free-spirited young woman, has a particular way of seeing political engagement, as she doesn't hesitate to sleep with those who don't agree with her to convert them to her cause - which is a lot of people, as all right-leaning people are concerned. Generally, it works pretty well. Until the day she meets Arthur Martin, a discreet forty-something who doesn't like taking risks. She imagines that with a name like that, he's got to be slightly fascist. But names are deceitful and appearances deceiving... Tags: female nudity, political, voting results"} +{"id": "166624", "title": "Treading Water", "year": 2013, "duration_min": 92, "rating": 5.6, "genres": "Drama, Comedy", "genres_pipe": "|Drama|Comedy|", "keywords": "fish, boy, parenting, first love, troubled childhood, child psychologist, woman director, synchronized swimming, self acceptance, parental advisor", "tags_pipe": "|fish|boy|parenting|first love|troubled childhood|child psychologist|woman director|synchronized swimming|self acceptance|parental advisor|", "overview": "At first glance, Mica seems a perfectly normal boy. But first glances can often be deceiving... For one, Mica's house is now a museum honouring Guillermo Garibai, the legendary Mexican crooner. Mica spends most of his time there, giving guided tours to aging Garibai fans. But stranger still, Mica smells. He smells like fish. Numerous doctors, his life-long therapist and even his own parents are at a loss. No one wants to be Mica's friend. Girls won't talk to him. His life appears pointless, uneventful, doomed. That is, until Laura walks into it.", "text_for_embedding": "Treading Water (2013). Genres: Drama, Comedy. At first glance, Mica seems a perfectly normal boy. But first glances can often be deceiving... For one, Mica's house is now a museum honouring Guillermo Garibai, the legendary Mexican crooner. Mica spends most of his time there, giving guided tours to aging Garibai fans. But stranger still, Mica smells. He smells like fish. Numerous doctors, his life-long therapist and even his own parents are at a loss. No one wants to be Mica's friend. Girls won't talk to him. His life appears pointless, uneventful, doomed. That is, until Laura walks into it.. Tags: fish, boy, parenting, first love, troubled childhood, child psychologist, woman director, synchronized swimming, self acceptance, parental advisor"} +{"id": "10822", "title": "Savage Grace", "year": 2007, "duration_min": 97, "rating": 5.7, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "mother, sex, adultery, nudity, scandal, son, love, murder, true, teenager, gay man, incest, socialite", "tags_pipe": "|mother|sex|adultery|nudity|scandal|son|love|murder|true|teenager|gay man|incest|socialite|", "overview": "This examination of a famous scandal from the 1970s explores the relationship between Barbara Baekeland and her only son, Antony. Barbara, a lonely social climber unhappily married to the wealthy but remote plastics heir Brooks Baekeland, dotes on Antony, who is homosexual. As Barbara tries to \"cure\" Antony of his sexuality -- sometimes by seducing him herself -- the groundwork is laid for a murderous tragedy.", "text_for_embedding": "Savage Grace (2007). Genres: Drama. This examination of a famous scandal from the 1970s explores the relationship between Barbara Baekeland and her only son, Antony. Barbara, a lonely social climber unhappily married to the wealthy but remote plastics heir Brooks Baekeland, dotes on Antony, who is homosexual. As Barbara tries to \"cure\" Antony of his sexuality -- sometimes by seducing him herself -- the groundwork is laid for a murderous tragedy.. Tags: mother, sex, adultery, nudity, scandal, son, love, murder, true, teenager, gay man, incest, socialite"} +{"id": "10844", "title": "Out of the Blue", "year": 2006, "duration_min": 103, "rating": 5.9, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "new zealand, gun rampage, police, independent film, neighbor, person running amok", "tags_pipe": "|new zealand|gun rampage|police|independent film|neighbor|person running amok|", "overview": "Ordinary people find extraordinary courage in the face of madness. On 13–14 November 1990 that madness came to Aramoana, a small New Zealand seaside town, in the form of a lone gunman with a high-powered semi-automatic rifle. As he stalked his victims the terrified and confused residents were trapped for 24 hours while a handful of under-resourced and under-armed local policemen risked their lives trying to find him and save the survivors. Based on true events.", "text_for_embedding": "Out of the Blue (2006). Genres: Drama. Ordinary people find extraordinary courage in the face of madness. On 13–14 November 1990 that madness came to Aramoana, a small New Zealand seaside town, in the form of a lone gunman with a high-powered semi-automatic rifle. As he stalked his victims the terrified and confused residents were trapped for 24 hours while a handful of under-resourced and under-armed local policemen risked their lives trying to find him and save the survivors. Based on true events.. Tags: new zealand, gun rampage, police, independent film, neighbor, person running amok"} +{"id": "9336", "title": "Police Academy", "year": 1984, "duration_min": 96, "rating": 6.5, "genres": "Comedy, Crime", "genres_pipe": "|Comedy|Crime|", "keywords": "trainer, recruit, shenanigan, police academy", "tags_pipe": "|trainer|recruit|shenanigan|police academy|", "overview": "New rules enforced by the Lady Mayoress mean that sex, weight, height and intelligence need no longer be a factor for joining the Police Force. This opens the floodgates for all and sundry to enter the Police Academy, much to the chagrin of the instructors. Not everyone is there through choice, though. Social misfit Mahoney has been forced to sign up as the only alternative to a jail sentence and it doesn't take long before he falls foul of the boorish Lieutenant Harris. But before long, Mahoney realises that he is enjoying being a police cadet and decides he wants to stay... while Harris decides he wants Mahoney out!", "text_for_embedding": "Police Academy (1984). Genres: Comedy, Crime. New rules enforced by the Lady Mayoress mean that sex, weight, height and intelligence need no longer be a factor for joining the Police Force. This opens the floodgates for all and sundry to enter the Police Academy, much to the chagrin of the instructors. Not everyone is there through choice, though. Social misfit Mahoney has been forced to sign up as the only alternative to a jail sentence and it doesn't take long before he falls foul of the boorish Lieutenant Harris. But before long, Mahoney realises that he is enjoying being a police cadet and decides he wants to stay... while Harris decides he wants Mahoney out!. Tags: trainer, recruit, shenanigan, police academy"} +{"id": "5689", "title": "The Blue Lagoon", "year": 1980, "duration_min": 104, "rating": 5.8, "genres": "Romance, Adventure, Drama", "genres_pipe": "|Romance|Adventure|Drama|", "keywords": "sexual identity, shipwreck, lovers, stranded, marooned, pacific island, teenager, deserted island, tropical island, lost at sea", "tags_pipe": "|sexual identity|shipwreck|lovers|stranded|marooned|pacific island|teenager|deserted island|tropical island|lost at sea|", "overview": "Two small children and a ship's cook survive a shipwreck and find safety on an idyllic tropical island. Soon, however, the cook dies and the young boy and girl are left on their own. Days become years and Emmeline (Brooke Shields) and Richard (Christopher Atkins) make a home for themselves surrounded by exotic creatures and nature's beauty. But will they ever see civilization again?", "text_for_embedding": "The Blue Lagoon (1980). Genres: Romance, Adventure, Drama. Two small children and a ship's cook survive a shipwreck and find safety on an idyllic tropical island. Soon, however, the cook dies and the young boy and girl are left on their own. Days become years and Emmeline (Brooke Shields) and Richard (Christopher Atkins) make a home for themselves surrounded by exotic creatures and nature's beauty. But will they ever see civilization again?. Tags: sexual identity, shipwreck, lovers, stranded, marooned, pacific island, teenager, deserted island, tropical island, lost at sea"} +{"id": "712", "title": "Four Weddings and a Funeral", "year": 1994, "duration_min": 117, "rating": 6.6, "genres": "Comedy, Drama, Romance", "genres_pipe": "|Comedy|Drama|Romance|", "keywords": "upper class, love at first sight, wedding vows, marriage proposal, yuppie, love of one's life, lone wolf, snob, witness, bride, bridegroom, bridesmaid, funeral, clumsy fellow, friendship", "tags_pipe": "|upper class|love at first sight|wedding vows|marriage proposal|yuppie|love of one's life|lone wolf|snob|witness|bride|bridegroom|bridesmaid|funeral|clumsy fellow|friendship|", "overview": "Four Weddings And A Funeral is a British comedy about a British Man named Charles and an American Woman named Carrie who go through numerous weddings before they determine if they are right for one another.", "text_for_embedding": "Four Weddings and a Funeral (1994). Genres: Comedy, Drama, Romance. Four Weddings And A Funeral is a British comedy about a British Man named Charles and an American Woman named Carrie who go through numerous weddings before they determine if they are right for one another.. Tags: upper class, love at first sight, wedding vows, marriage proposal, yuppie, love of one's life, lone wolf, snob, witness, bride, bridegroom, bridesmaid, funeral, clumsy fellow, friendship"} +{"id": "13342", "title": "Fast Times at Ridgemont High", "year": 1982, "duration_min": 90, "rating": 7.0, "genres": "Comedy", "genres_pipe": "|Comedy|", "keywords": "sex, based on novel, nudity, friendship, high school, shopping mall, bikini, bong, teacher, coming of age, marijuana, loss of virginity, drug humor, teen movie, rock 'n' roll", "tags_pipe": "|sex|based on novel|nudity|friendship|high school|shopping mall|bikini|bong|teacher|coming of age|marijuana|loss of virginity|drug humor|teen movie|rock 'n' roll|", "overview": "Follows a group of high school students growing up in southern California, based on the real-life adventures chronicled by Cameron Crowe. Stacy Hamilton and Mark Ratner are looking for a love interest, and are helped along by their older classmates, Linda Barrett and Mike Damone, respectively. The center of the film is held by Jeff Spicoli, a perpetually stoned surfer dude who faces off with the resolute Mr. Hand, who is convinced that everyone is on dope.", "text_for_embedding": "Fast Times at Ridgemont High (1982). Genres: Comedy. Follows a group of high school students growing up in southern California, based on the real-life adventures chronicled by Cameron Crowe. Stacy Hamilton and Mark Ratner are looking for a love interest, and are helped along by their older classmates, Linda Barrett and Mike Damone, respectively. The center of the film is held by Jeff Spicoli, a perpetually stoned surfer dude who faces off with the resolute Mr. Hand, who is convinced that everyone is on dope.. Tags: sex, based on novel, nudity, friendship, high school, shopping mall, bikini, bong, teacher, coming of age, marijuana, loss of virginity, drug humor, teen movie, rock 'n' roll"} +{"id": "10339", "title": "Moby Dick", "year": 1956, "duration_min": 116, "rating": 6.9, "genres": "Adventure, Drama", "genres_pipe": "|Adventure|Drama|", "keywords": "based on novel, captain, boat, obsession, shipwreck, stroke of fate, whale, walrus, revenge", "tags_pipe": "|based on novel|captain|boat|obsession|shipwreck|stroke of fate|whale|walrus|revenge|", "overview": "In 1841, young Ishmael signs up for service abroad the Pequod, a whaler sailing out of New Bedford. The ship is under the command of Captain Ahab, a strict disciplinarian who exhorts his men to find Moby Dick, the great white whale. Ahab lost his his leg to that creature and is desperate for revenge. As the crew soon learns, he will stop at nothing to gain satisfaction.", "text_for_embedding": "Moby Dick (1956). Genres: Adventure, Drama. In 1841, young Ishmael signs up for service abroad the Pequod, a whaler sailing out of New Bedford. The ship is under the command of Captain Ahab, a strict disciplinarian who exhorts his men to find Moby Dick, the great white whale. Ahab lost his his leg to that creature and is desperate for revenge. As the crew soon learns, he will stop at nothing to gain satisfaction.. Tags: based on novel, captain, boat, obsession, shipwreck, stroke of fate, whale, walrus, revenge"} +{"id": "1429", "title": "25th Hour", "year": 2002, "duration_min": 135, "rating": 7.2, "genres": "Crime, Drama", "genres_pipe": "|Crime|Drama|", "keywords": "prison, prisoner, dream, drug dealer, nightclub, american dream, male friendship, melancholy, girlfriend, friendship, aftercreditsstinger", "tags_pipe": "|prison|prisoner|dream|drug dealer|nightclub|american dream|male friendship|melancholy|girlfriend|friendship|aftercreditsstinger|", "overview": "The filmed adaptation from David Benioff's novel of the same name. Set in New York, a convicted drug dealer named Monty has one day left of freedom before he is sent to prison. Anger, blame, frustration, betrayal, guilt and loneliness are themes on this last day of friends, family, parties, saying goodbye, and setting things straight. A Spike Lee joint.", "text_for_embedding": "25th Hour (2002). Genres: Crime, Drama. The filmed adaptation from David Benioff's novel of the same name. Set in New York, a convicted drug dealer named Monty has one day left of freedom before he is sent to prison. Anger, blame, frustration, betrayal, guilt and loneliness are themes on this last day of friends, family, parties, saying goodbye, and setting things straight. A Spike Lee joint.. Tags: prison, prisoner, dream, drug dealer, nightclub, american dream, male friendship, melancholy, girlfriend, friendship, aftercreditsstinger"} +{"id": "9303", "title": "Bound", "year": 1996, "duration_min": 108, "rating": 6.9, "genres": "Crime, Drama, Romance, Thriller", "genres_pipe": "|Crime|Drama|Romance|Thriller|", "keywords": "prison, women's prison, suspense, mafia, lesbian, gangster, ex-con, woman director", "tags_pipe": "|prison|women's prison|suspense|mafia|lesbian|gangster|ex-con|woman director|", "overview": "Corky, a tough female ex con and her lover Violet concoct a scheme to steal millions of stashed mob money and pin the blame on Violet's crooked boyfriend Caeser.", "text_for_embedding": "Bound (1996). Genres: Crime, Drama, Romance, Thriller. Corky, a tough female ex con and her lover Violet concoct a scheme to steal millions of stashed mob money and pin the blame on Violet's crooked boyfriend Caeser.. Tags: prison, women's prison, suspense, mafia, lesbian, gangster, ex-con, woman director"} +{"id": "641", "title": "Requiem for a Dream", "year": 2000, "duration_min": 102, "rating": 7.9, "genres": "Crime, Drama", "genres_pipe": "|Crime|Drama|", "keywords": "drug addiction, junkie, heroin, speed, diet, unsociability, illegal prostitution", "tags_pipe": "|drug addiction|junkie|heroin|speed|diet|unsociability|illegal prostitution|", "overview": "The hopes and dreams of four ambitious people are shattered when their drug addictions begin spiraling out of control. A look into addiction and how it overcomes the mind and body.", "text_for_embedding": "Requiem for a Dream (2000). Genres: Crime, Drama. The hopes and dreams of four ambitious people are shattered when their drug addictions begin spiraling out of control. A look into addiction and how it overcomes the mind and body.. Tags: drug addiction, junkie, heroin, speed, diet, unsociability, illegal prostitution"} +{"id": "27686", "title": "State Fair", "year": 1945, "duration_min": 96, "rating": 6.2, "genres": "Music, Romance", "genres_pipe": "|Music|Romance|", "keywords": "state fair", "tags_pipe": "|state fair|", "overview": "During their annual visit to the Iowa State Fair, the Frake family enjoy many adventures. Proud patriarch Abel (Charles Winninger) has high hopes for his champion swine Blueboy; and his wife Melissa (Fay Bainter) enters the mincemeat and pickles contest...with hilarious results.", "text_for_embedding": "State Fair (1945). Genres: Music, Romance. During their annual visit to the Iowa State Fair, the Frake family enjoy many adventures. Proud patriarch Abel (Charles Winninger) has high hopes for his champion swine Blueboy; and his wife Melissa (Fay Bainter) enters the mincemeat and pickles contest...with hilarious results.. Tags: state fair"} +{"id": "65749", "title": "Tango", "year": 1998, "duration_min": 115, "rating": 6.8, "genres": "Drama, Foreign, Romance", "genres_pipe": "|Drama|Foreign|Romance|", "keywords": "dancer, tango, musical, love", "tags_pipe": "|dancer|tango|musical|love|", "overview": "A dangerous love affair inspires a director to create the most spectacular and bodly seductive dance film ever made. 1998 Oscar Nominee Best Foreign Language Film.", "text_for_embedding": "Tango (1998). Genres: Drama, Foreign, Romance. A dangerous love affair inspires a director to create the most spectacular and bodly seductive dance film ever made. 1998 Oscar Nominee Best Foreign Language Film.. Tags: dancer, tango, musical, love"} +{"id": "6106", "title": "Salvador", "year": 1986, "duration_min": 123, "rating": 7.0, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "civil war, dictator, journalist, guerrilla, loss of lover, revolution, war correspondent, civil rights movement , picture journalist, el salvador, dictatorship", "tags_pipe": "|civil war|dictator|journalist|guerrilla|loss of lover|revolution|war correspondent|civil rights movement |picture journalist|el salvador|dictatorship|", "overview": "A second rated journalist from the US tries his luck in El Salvador during the military dictatorship in the 1980s.", "text_for_embedding": "Salvador (1986). Genres: Drama. A second rated journalist from the US tries his luck in El Salvador during the military dictatorship in the 1980s.. Tags: civil war, dictator, journalist, guerrilla, loss of lover, revolution, war correspondent, civil rights movement , picture journalist, el salvador, dictatorship"} +{"id": "252680", "title": "Moms' Night Out", "year": 2014, "duration_min": 98, "rating": 5.5, "genres": "Comedy", "genres_pipe": "|Comedy|", "keywords": "wife husband relationship, stress, children, mother daughter relationship, parenthood, parenting, parent child relationship, duringcreditsstinger", "tags_pipe": "|wife husband relationship|stress|children|mother daughter relationship|parenthood|parenting|parent child relationship|duringcreditsstinger|", "overview": "Yearning for an evening without their kids, some friends plan a night out. But to do this, their husbands need to watch the kids. What can go wrong?", "text_for_embedding": "Moms' Night Out (2014). Genres: Comedy. Yearning for an evening without their kids, some friends plan a night out. But to do this, their husbands need to watch the kids. What can go wrong?. Tags: wife husband relationship, stress, children, mother daughter relationship, parenthood, parenting, parent child relationship, duringcreditsstinger"} +{"id": "141", "title": "Donnie Darko", "year": 2001, "duration_min": 113, "rating": 7.7, "genres": "Fantasy, Drama, Mystery", "genres_pipe": "|Fantasy|Drama|Mystery|", "keywords": "parents kids relationship, airplane, time travel, school presentation, school performance, suburbia, vision, morality, teenager", "tags_pipe": "|parents kids relationship|airplane|time travel|school presentation|school performance|suburbia|vision|morality|teenager|", "overview": "After narrowly escaping a bizarre accident, a troubled teenager is plagued by visions of a large bunny rabbit that manipulates him to commit a series of crimes.", "text_for_embedding": "Donnie Darko (2001). Genres: Fantasy, Drama, Mystery. After narrowly escaping a bizarre accident, a troubled teenager is plagued by visions of a large bunny rabbit that manipulates him to commit a series of crimes.. Tags: parents kids relationship, airplane, time travel, school presentation, school performance, suburbia, vision, morality, teenager"} +{"id": "66607", "title": "Saving Private Perez", "year": 2011, "duration_min": 105, "rating": 6.1, "genres": "Action, Comedy, Foreign", "genres_pipe": "|Action|Comedy|Foreign|", "keywords": "", "tags_pipe": "", "overview": "La vida ha llevado a Julián Pérez por caminos equivocados, pero el destino le presentará a este hombre la oportunidad de encontrar su redención cuando es enviado a la misión más peligrosa y noble de toda su vida, una misión ordenada por la única autoridad que todavía respeta, su madre, Doña Elvira. Julián debe viajar hasta el otro extremo del mundo, a un lugar llamado Irak, a traer de vuelta vivo, a su hermano menor el soldado de infantería Juan Pérez. Con la promesa hecha, Julián Pérez regresa a su natal Sinaloa donde reclutará a un comando de elite, destinado a cumplir una misión suicida: viajar a Irak y salvar al soldado Pérez.", "text_for_embedding": "Saving Private Perez (2011). Genres: Action, Comedy, Foreign. La vida ha llevado a Julián Pérez por caminos equivocados, pero el destino le presentará a este hombre la oportunidad de encontrar su redención cuando es enviado a la misión más peligrosa y noble de toda su vida, una misión ordenada por la única autoridad que todavía respeta, su madre, Doña Elvira. Julián debe viajar hasta el otro extremo del mundo, a un lugar llamado Irak, a traer de vuelta vivo, a su hermano menor el soldado de infantería Juan Pérez. Con la promesa hecha, Julián Pérez regresa a su natal Sinaloa donde reclutará a un comando de elite, destinado a cumplir una misión suicida: viajar a Irak y salvar al soldado Pérez.. Tags: "} +{"id": "17139", "title": "Character", "year": 1997, "duration_min": 122, "rating": 7.7, "genres": "Drama, Foreign, History", "genres_pipe": "|Drama|Foreign|History|", "keywords": "law and ethics", "tags_pipe": "|law and ethics|", "overview": "J.W. Katadreuffe is the son of Joba Katadreuffe and A.B. Drevenhaven. Though fully neglected by Joba, Dreverhaven ensures the succesfull career of his son. Mostly unseen, though he sues his son a few times. The son Katadreuffe succeeds, but at great costs.", "text_for_embedding": "Character (1997). Genres: Drama, Foreign, History. J.W. Katadreuffe is the son of Joba Katadreuffe and A.B. Drevenhaven. Though fully neglected by Joba, Dreverhaven ensures the succesfull career of his son. Mostly unseen, though he sues his son a few times. The son Katadreuffe succeeds, but at great costs.. Tags: law and ethics"} +{"id": "12079", "title": "Spun", "year": 2002, "duration_min": 101, "rating": 6.6, "genres": "Comedy, Crime, Drama", "genres_pipe": "|Comedy|Crime|Drama|", "keywords": "independent film, speed freak, junky cop, boy toy, porn magazine, dope selling, crank, handcuffed to a bed, cctv, veterinary clinic, needlepoint, needle, older woman younger woman relationship, telephone sex", "tags_pipe": "|independent film|speed freak|junky cop|boy toy|porn magazine|dope selling|crank|handcuffed to a bed|cctv|veterinary clinic|needlepoint|needle|older woman younger woman relationship|telephone sex|", "overview": "Over the course of three days Ross, a college dropout addicted to crystal-meth, encounters a variety of oddball folks - including a stripper named Nikki and her boyfriend, the local meth producer, The Cook - but all he really wants to do is hook up with his old girlfriend, Amy.", "text_for_embedding": "Spun (2002). Genres: Comedy, Crime, Drama. Over the course of three days Ross, a college dropout addicted to crystal-meth, encounters a variety of oddball folks - including a stripper named Nikki and her boyfriend, the local meth producer, The Cook - but all he really wants to do is hook up with his old girlfriend, Amy.. Tags: independent film, speed freak, junky cop, boy toy, porn magazine, dope selling, crank, handcuffed to a bed, cctv, veterinary clinic, needlepoint, needle, older woman younger woman relationship, telephone sex"} +{"id": "39800", "title": "Life During Wartime", "year": 2009, "duration_min": 97, "rating": 6.3, "genres": "Comedy, Drama", "genres_pipe": "|Comedy|Drama|", "keywords": "dark comedy, independent film", "tags_pipe": "|dark comedy|independent film|", "overview": "Friends, family, and lovers struggle to find love, forgiveness, and meaning in an almost war-torn world riddled with comedy and pathos. Follows Solondz's film Happiness (1998).", "text_for_embedding": "Life During Wartime (2009). Genres: Comedy, Drama. Friends, family, and lovers struggle to find love, forgiveness, and meaning in an almost war-torn world riddled with comedy and pathos. Follows Solondz's film Happiness (1998).. Tags: dark comedy, independent film"} +{"id": "4550", "title": "Sympathy for Lady Vengeance", "year": 2005, "duration_min": 115, "rating": 7.4, "genres": "Drama, Thriller", "genres_pipe": "|Drama|Thriller|", "keywords": "independent film", "tags_pipe": "|independent film|", "overview": "After a 13-year imprisonment for the kidnap and murder of a 6 year old boy, beautiful Lee Guem-ja starts seeking revenge on the man that was really responsible for the boy's death. With the help of fellow inmates and reunited with her daughter, she gets closer and closer to her goal. But will her actions lead to the relief she seeks?", "text_for_embedding": "Sympathy for Lady Vengeance (2005). Genres: Drama, Thriller. After a 13-year imprisonment for the kidnap and murder of a 6 year old boy, beautiful Lee Guem-ja starts seeking revenge on the man that was really responsible for the boy's death. With the help of fellow inmates and reunited with her daughter, she gets closer and closer to her goal. But will her actions lead to the relief she seeks?. Tags: independent film"} +{"id": "62116", "title": "Mozart's Sister", "year": 2010, "duration_min": 120, "rating": 6.2, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "royal court, overbearing father, harpsichord, 18th century", "tags_pipe": "|royal court|overbearing father|harpsichord|18th century|", "overview": "A re-imagined account of the early life of Maria Anna 'Nannerl' Mozart, five years older than Wolfgang and a musical prodigy in her own right.", "text_for_embedding": "Mozart's Sister (2010). Genres: Drama. A re-imagined account of the early life of Maria Anna 'Nannerl' Mozart, five years older than Wolfgang and a musical prodigy in her own right.. Tags: royal court, overbearing father, harpsichord, 18th century"} +{"id": "9991", "title": "Mean Machine", "year": 2001, "duration_min": 99, "rating": 6.0, "genres": "Comedy, Drama", "genres_pipe": "|Comedy|Drama|", "keywords": "prison, sport, amateur soccer, soccer coach", "tags_pipe": "|prison|sport|amateur soccer|soccer coach|", "overview": "Disgraced ex-England captain (Danny 'Mean Machine' Meehan) is thrown in jail for assaulting two police officers. He keeps his head down and has the opportunity to forget everything and change the lives of the prisoners. These prisoners have the chance to put one over the evil guards. The prisoners are lead by Danny and the whole of the prison, guards aside, are behind them.", "text_for_embedding": "Mean Machine (2001). Genres: Comedy, Drama. Disgraced ex-England captain (Danny 'Mean Machine' Meehan) is thrown in jail for assaulting two police officers. He keeps his head down and has the opportunity to forget everything and change the lives of the prisoners. These prisoners have the chance to put one over the evil guards. The prisoners are lead by Danny and the whole of the prison, guards aside, are behind them.. Tags: prison, sport, amateur soccer, soccer coach"} +{"id": "13807", "title": "Exiled", "year": 2006, "duration_min": 110, "rating": 7.0, "genres": "Action, Crime, Thriller", "genres_pipe": "|Action|Crime|Thriller|", "keywords": "", "tags_pipe": "", "overview": "A friendship is formed between an ex-gangster, and two groups of hitmen - those who want to protect him and those who were sent to kill him.", "text_for_embedding": "Exiled (2006). Genres: Action, Crime, Thriller. A friendship is formed between an ex-gangster, and two groups of hitmen - those who want to protect him and those who were sent to kill him.. Tags: "} +{"id": "68818", "title": "Blackthorn", "year": 2011, "duration_min": 98, "rating": 6.6, "genres": "Adventure, Action, Western", "genres_pipe": "|Adventure|Action|Western|", "keywords": "robbery, miner, treachery, sundance kid, native peoples, butch cassidy", "tags_pipe": "|robbery|miner|treachery|sundance kid|native peoples|butch cassidy|", "overview": "In Bolivia, Butch Cassidy (now calling himself James Blackthorne) pines for one last sight of home, an adventure that aligns him with a young robber and makes the duo a target for gangs and lawmen alike.", "text_for_embedding": "Blackthorn (2011). Genres: Adventure, Action, Western. In Bolivia, Butch Cassidy (now calling himself James Blackthorne) pines for one last sight of home, an adventure that aligns him with a young robber and makes the duo a target for gangs and lawmen alike.. Tags: robbery, miner, treachery, sundance kid, native peoples, butch cassidy"} +{"id": "12093", "title": "Lilya 4-ever", "year": 2002, "duration_min": 109, "rating": 7.7, "genres": "Crime, Drama", "genres_pipe": "|Crime|Drama|", "keywords": "suicide, sex, sweden, underground, nightclub, nudity, escape, poverty, prostitution, violence, disturbing", "tags_pipe": "|suicide|sex|sweden|underground|nightclub|nudity|escape|poverty|prostitution|violence|disturbing|", "overview": "Lilya lives in poverty and dreams of a better life. Her mother moves to the United States and abandons her to her aunt, who neglects her. Lilya hangs out with her friends, Natasha and Volodya, who is suicidal. Desperate for money, she starts working as a prostitute, and later meets Andrei. He offers her a good job in Sweden, but when Lilya arrives her life quickly enters a downward spiral.", "text_for_embedding": "Lilya 4-ever (2002). Genres: Crime, Drama. Lilya lives in poverty and dreams of a better life. Her mother moves to the United States and abandons her to her aunt, who neglects her. Lilya hangs out with her friends, Natasha and Volodya, who is suicidal. Desperate for money, she starts working as a prostitute, and later meets Andrei. He offers her a good job in Sweden, but when Lilya arrives her life quickly enters a downward spiral.. Tags: suicide, sex, sweden, underground, nightclub, nudity, escape, poverty, prostitution, violence, disturbing"} +{"id": "36419", "title": "After.Life", "year": 2010, "duration_min": 104, "rating": 5.4, "genres": "Drama, Horror, Mystery, Thriller", "genres_pipe": "|Drama|Horror|Mystery|Thriller|", "keywords": "wheelchair, nightmare, funeral, injection, crying, casket, shovel, lily, argument, crucifix, woman director", "tags_pipe": "|wheelchair|nightmare|funeral|injection|crying|casket|shovel|lily|argument|crucifix|woman director|", "overview": "A young woman caught between life and death... and a funeral director who appears to have the gift of transitioning the dead, but might just be intent on burying her alive.", "text_for_embedding": "After.Life (2010). Genres: Drama, Horror, Mystery, Thriller. A young woman caught between life and death... and a funeral director who appears to have the gift of transitioning the dead, but might just be intent on burying her alive.. Tags: wheelchair, nightmare, funeral, injection, crying, casket, shovel, lily, argument, crucifix, woman director"} +{"id": "281730", "title": "Fugly", "year": 2014, "duration_min": 134, "rating": 5.3, "genres": "Comedy, Drama, Thriller", "genres_pipe": "|Comedy|Drama|Thriller|", "keywords": "", "tags_pipe": "", "overview": "It is a story of 4 friends - Dev, Gaurav, Aditya & Devi. The cast is young & fresh. They are at the cusp of their lives - The college has just about finished, but career path is yet to be set. These are the last few days of true freedom that we have all gone through, and still cherish. These friends are conscientious, they will have fun but would never cross the boundaries - They all have dreams and expectations from life, but as they say - man proposes, god disposes. Their fun filled and care free life comes to an abrupt halt, when they are faced with an extremely corrupt and seemingly fearless Police Officer. This puts a series of events in motion which will test their friendship and characters - their life becomes 'Fugly'.", "text_for_embedding": "Fugly (2014). Genres: Comedy, Drama, Thriller. It is a story of 4 friends - Dev, Gaurav, Aditya & Devi. The cast is young & fresh. They are at the cusp of their lives - The college has just about finished, but career path is yet to be set. These are the last few days of true freedom that we have all gone through, and still cherish. These friends are conscientious, they will have fun but would never cross the boundaries - They all have dreams and expectations from life, but as they say - man proposes, god disposes. Their fun filled and care free life comes to an abrupt halt, when they are faced with an extremely corrupt and seemingly fearless Police Officer. This puts a series of events in motion which will test their friendship and characters - their life becomes 'Fugly'.. Tags: "} +{"id": "510", "title": "One Flew Over the Cuckoo's Nest", "year": 1975, "duration_min": 133, "rating": 8.2, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "individual, rebel, self-destruction, wheelchair, lunatic asylum, dying and death, rage and hate, freedom, insanity, basic rights and human rights, psychiatrist", "tags_pipe": "|individual|rebel|self-destruction|wheelchair|lunatic asylum|dying and death|rage and hate|freedom|insanity|basic rights and human rights|psychiatrist|", "overview": "While serving time for insanity at a state mental hospital, implacable rabble-rouser, Randle Patrick McMurphy inspires his fellow patients to rebel against the authoritarian rule of head nurse, Mildred Ratched.", "text_for_embedding": "One Flew Over the Cuckoo's Nest (1975). Genres: Drama. While serving time for insanity at a state mental hospital, implacable rabble-rouser, Randle Patrick McMurphy inspires his fellow patients to rebel against the authoritarian rule of head nurse, Mildred Ratched.. Tags: individual, rebel, self-destruction, wheelchair, lunatic asylum, dying and death, rage and hate, freedom, insanity, basic rights and human rights, psychiatrist"} +{"id": "362105", "title": "R.L. Stine's Monsterville: The Cabinet of Souls", "year": 2015, "duration_min": 85, "rating": 6.9, "genres": "Comedy, Horror", "genres_pipe": "|Comedy|Horror|", "keywords": "", "tags_pipe": "", "overview": "Teenage friends must resist the spell of an evil showman staging a house of horrors show in their small town.", "text_for_embedding": "R.L. Stine's Monsterville: The Cabinet of Souls (2015). Genres: Comedy, Horror. Teenage friends must resist the spell of an evil showman staging a house of horrors show in their small town.. Tags: "} +{"id": "10970", "title": "Silent Movie", "year": 1976, "duration_min": 86, "rating": 6.7, "genres": "Comedy", "genres_pipe": "|Comedy|", "keywords": "screenplay, stuntman, slapstick, mime, hollywood, silent film", "tags_pipe": "|screenplay|stuntman|slapstick|mime|hollywood|silent film|", "overview": "Aspiring filmmakers Mel Funn, Marty Eggs and Dom Bell go to a financially troubled studio with an idea for a silent movie. In an effort to make the movie more marketable, they attempt to recruit a number of big name stars to appear, while the studio's creditors attempt to thwart them. The film contains only one word of dialogue, spoken by an unlikely source.", "text_for_embedding": "Silent Movie (1976). Genres: Comedy. Aspiring filmmakers Mel Funn, Marty Eggs and Dom Bell go to a financially troubled studio with an idea for a silent movie. In an effort to make the movie more marketable, they attempt to recruit a number of big name stars to appear, while the studio's creditors attempt to thwart them. The film contains only one word of dialogue, spoken by an unlikely source.. Tags: screenplay, stuntman, slapstick, mime, hollywood, silent film"} +{"id": "375290", "title": "Airlift", "year": 2016, "duration_min": 126, "rating": 7.3, "genres": "Thriller, Action, Drama, History", "genres_pipe": "|Thriller|Action|Drama|History|", "keywords": "evacuation, war, based on true story, iraq war", "tags_pipe": "|evacuation|war|based on true story|iraq war|", "overview": "When Iraq invades Kuwait in August, 1990, a callous Indian businessman becomes the spokesperson for more than 170,000 stranded countrymen.", "text_for_embedding": "Airlift (2016). Genres: Thriller, Action, Drama, History. When Iraq invades Kuwait in August, 1990, a callous Indian businessman becomes the spokesperson for more than 170,000 stranded countrymen.. Tags: evacuation, war, based on true story, iraq war"} +{"id": "17663", "title": "Anne of Green Gables", "year": 1985, "duration_min": 199, "rating": 8.2, "genres": "Drama, Family", "genres_pipe": "|Drama|Family|", "keywords": "based on novel, brother sister relationship, canada, village, love, school, miniseries, best friend, orphan, historical, kids, redhead girl", "tags_pipe": "|based on novel|brother sister relationship|canada|village|love|school|miniseries|best friend|orphan|historical|kids|redhead girl|", "overview": "At the turn of the century on Prince Edward Island, Matthew Cuthbert and his sister Marilla decide to take on an orphan boy as help for their farm. But they get an unexpected jolt when they're mistakenly sent a girl instead: Anne Shirley. Anne's a dreamer with an unusual point of view, far removed from Marilla's pragmatic ways, and it's only on trial that Marilla agrees to keep Anne.", "text_for_embedding": "Anne of Green Gables (1985). Genres: Drama, Family. At the turn of the century on Prince Edward Island, Matthew Cuthbert and his sister Marilla decide to take on an orphan boy as help for their farm. But they get an unexpected jolt when they're mistakenly sent a girl instead: Anne Shirley. Anne's a dreamer with an unusual point of view, far removed from Marilla's pragmatic ways, and it's only on trial that Marilla agrees to keep Anne.. Tags: based on novel, brother sister relationship, canada, village, love, school, miniseries, best friend, orphan, historical, kids, redhead girl"} +{"id": "270938", "title": "Falcon Rising", "year": 2014, "duration_min": 103, "rating": 5.5, "genres": "Adventure, Action", "genres_pipe": "|Adventure|Action|", "keywords": "yakuza, marine, fighting", "tags_pipe": "|yakuza|marine|fighting|", "overview": "Chapman is an ex-marine in Brazil's slums, battling the yakuza outfit who attacked his sister and left her for dead.", "text_for_embedding": "Falcon Rising (2014). Genres: Adventure, Action. Chapman is an ex-marine in Brazil's slums, battling the yakuza outfit who attacked his sister and left her for dead.. Tags: yakuza, marine, fighting"} +{"id": "116613", "title": "The Sweeney", "year": 2012, "duration_min": 112, "rating": 5.7, "genres": "Action, Drama, Crime", "genres_pipe": "|Action|Drama|Crime|", "keywords": "british, based on tv series", "tags_pipe": "|british|based on tv series|", "overview": "Based on the '70s UK TV show, The Sweeney is an action-packed British police thriller from the director of Football Factory. Jack Regan (Ray Winstone), a hardened cop who doesn’t play by the rules, is confronted with a criminal from his past. With sidekick George Carter (Ben Drew aka Plan B) they are put on the case of a jewellery store heist that ends in a killing. But is that killing really an execution in disguise? With pressure from his boss and the fact that Regan is having an affair with that boss’s wife, it’s not going to be easy for him to stay out of trouble.", "text_for_embedding": "The Sweeney (2012). Genres: Action, Drama, Crime. Based on the '70s UK TV show, The Sweeney is an action-packed British police thriller from the director of Football Factory. Jack Regan (Ray Winstone), a hardened cop who doesn’t play by the rules, is confronted with a criminal from his past. With sidekick George Carter (Ben Drew aka Plan B) they are put on the case of a jewellery store heist that ends in a killing. But is that killing really an execution in disguise? With pressure from his boss and the fact that Regan is having an affair with that boss’s wife, it’s not going to be easy for him to stay out of trouble.. Tags: british, based on tv series"} +{"id": "11826", "title": "Sexy Beast", "year": 2000, "duration_min": 89, "rating": 7.0, "genres": "Crime, Drama, Thriller", "genres_pipe": "|Crime|Drama|Thriller|", "keywords": "spain, sex, nudity, psychopath, murder, heist, money, gangster, violence, criminal, retired, hunting, safecracker, brutal, leisure", "tags_pipe": "|spain|sex|nudity|psychopath|murder|heist|money|gangster|violence|criminal|retired|hunting|safecracker|brutal|leisure|", "overview": "Gary is a former gangster who has made a modest amount of money from his criminal career. Happy to put his life of crime behind him, he has retired with his wife Deedee to the sunny bliss of rural Spain, where he lives an idyllic life with his family and a few close friends. But Gary's contentment is ruptured by an unwelcome visitor from his past. Don.", "text_for_embedding": "Sexy Beast (2000). Genres: Crime, Drama, Thriller. Gary is a former gangster who has made a modest amount of money from his criminal career. Happy to put his life of crime behind him, he has retired with his wife Deedee to the sunny bliss of rural Spain, where he lives an idyllic life with his family and a few close friends. But Gary's contentment is ruptured by an unwelcome visitor from his past. Don.. Tags: spain, sex, nudity, psychopath, murder, heist, money, gangster, violence, criminal, retired, hunting, safecracker, brutal, leisure"} +{"id": "29920", "title": "Easy Money", "year": 2010, "duration_min": 124, "rating": 6.5, "genres": "Drama, Thriller, Crime", "genres_pipe": "|Drama|Thriller|Crime|", "keywords": "consignment", "tags_pipe": "|consignment|", "overview": "A three-tiered story centered around drugs and organized crime, and focused on a young man who becomes a runner for a coke dealer.", "text_for_embedding": "Easy Money (2010). Genres: Drama, Thriller, Crime. A three-tiered story centered around drugs and organized crime, and focused on a young man who becomes a runner for a coke dealer.. Tags: consignment"} +{"id": "1088", "title": "Whale Rider", "year": 2003, "duration_min": 101, "rating": 7.1, "genres": "Drama, Family", "genres_pipe": "|Drama|Family|", "keywords": "ocean, loss of mother, tradition, loss of brother, becoming an adult, role of women, empowerment, new zealand, maori tradition, chief, grandfather granddaughter relationship, modern society, whale, patriarch, stick fighting", "tags_pipe": "|ocean|loss of mother|tradition|loss of brother|becoming an adult|role of women|empowerment|new zealand|maori tradition|chief|grandfather granddaughter relationship|modern society|whale|patriarch|stick fighting|", "overview": "On the east coast of New Zealand, the Whangara people believe their presence there dates back a thousand years or more to a single ancestor, Paikea, who escaped death when his canoe capsized by riding to shore on the back of a whale. From then on, Whangara chiefs, always the first-born, always male, have been considered Paikea's direct descendants. Pai, an 11-year-old girl in a patriarchal New Zealand tribe, believes she is destined to be the new chief. But her grandfather Koro is bound by tradition to pick a male leader. Pai loves Koro more than anyone in the world, but she must fight him and a thousand years of tradition to fulfill her destiny.", "text_for_embedding": "Whale Rider (2003). Genres: Drama, Family. On the east coast of New Zealand, the Whangara people believe their presence there dates back a thousand years or more to a single ancestor, Paikea, who escaped death when his canoe capsized by riding to shore on the back of a whale. From then on, Whangara chiefs, always the first-born, always male, have been considered Paikea's direct descendants. Pai, an 11-year-old girl in a patriarchal New Zealand tribe, believes she is destined to be the new chief. But her grandfather Koro is bound by tradition to pick a male leader. Pai loves Koro more than anyone in the world, but she must fight him and a thousand years of tradition to fulfill her destiny.. Tags: ocean, loss of mother, tradition, loss of brother, becoming an adult, role of women, empowerment, new zealand, maori tradition, chief, grandfather granddaughter relationship, modern society, whale, patriarch, stick fighting"} +{"id": "26379", "title": "Paa", "year": 2009, "duration_min": 133, "rating": 6.6, "genres": "Drama, Family, Foreign", "genres_pipe": "|Drama|Family|Foreign|", "keywords": "", "tags_pipe": "", "overview": "He suffers from a progeria like syndrome. Mentally he is 13 but physically he looks 5 times older. In spite of his condition, Auro is a very happy boy. He lives with his mother Vidya, who is a gynaecologist. Amol is young, progressive politician. He is a man with a mission. Auro is Amol's son. Paa is a 'rare' story about a father-son, son-father relationship.", "text_for_embedding": "Paa (2009). Genres: Drama, Family, Foreign. He suffers from a progeria like syndrome. Mentally he is 13 but physically he looks 5 times older. In spite of his condition, Auro is a very happy boy. He lives with his mother Vidya, who is a gynaecologist. Amol is young, progressive politician. He is a man with a mission. Auro is Amol's son. Paa is a 'rare' story about a father-son, son-father relationship.. Tags: "} +{"id": "34069", "title": "Cargo", "year": 2009, "duration_min": 120, "rating": 5.9, "genres": "Thriller, Mystery, Science Fiction", "genres_pipe": "|Thriller|Mystery|Science Fiction|", "keywords": "space colony, space travel, simulated reality , spaceship, suspense, cargo ship, suspended animation, loneliness in space", "tags_pipe": "|space colony|space travel|simulated reality |spaceship|suspense|cargo ship|suspended animation|loneliness in space|", "overview": "The story of CARGO takes place on rusty space-freighter KASSANDRA on its way to Station 42. The young medic LAURA is the only one awake on board while the rest of the crew lies frozen in hibernation sleep. In 4 months will Laura's shift be over.", "text_for_embedding": "Cargo (2009). Genres: Thriller, Mystery, Science Fiction. The story of CARGO takes place on rusty space-freighter KASSANDRA on its way to Station 42. The young medic LAURA is the only one awake on board while the rest of the crew lies frozen in hibernation sleep. In 4 months will Laura's shift be over.. Tags: space colony, space travel, simulated reality , spaceship, suspense, cargo ship, suspended animation, loneliness in space"} +{"id": "10947", "title": "High School Musical", "year": 2006, "duration_min": 98, "rating": 6.1, "genres": "Comedy, Drama, Family, Music, TV Movie", "genres_pipe": "|Comedy|Drama|Family|Music|TV Movie|", "keywords": "becoming an adult, musical, music, high school, school performance, high school sports, jock, teenager, clique, theater, peer pressure, teenage romance", "tags_pipe": "|becoming an adult|musical|music|high school|school performance|high school sports|jock|teenager|clique|theater|peer pressure|teenage romance|", "overview": "Troy (Zac Efron), the popular captain of the basketball team, and Gabriella (Vanessa Anne Hudgens), the brainy and beautiful member of the academic club, break all the rules of East High society when they secretly audition for the leads in the school's musical. As they reach for the stars and follow their dreams, everyone learns about acceptance, teamwork, and being yourself. And it's all set to fun tunes and very cool dance moves!", "text_for_embedding": "High School Musical (2006). Genres: Comedy, Drama, Family, Music, TV Movie. Troy (Zac Efron), the popular captain of the basketball team, and Gabriella (Vanessa Anne Hudgens), the brainy and beautiful member of the academic club, break all the rules of East High society when they secretly audition for the leads in the school's musical. As they reach for the stars and follow their dreams, everyone learns about acceptance, teamwork, and being yourself. And it's all set to fun tunes and very cool dance moves!. Tags: becoming an adult, musical, music, high school, school performance, high school sports, jock, teenager, clique, theater, peer pressure, teenage romance"} +{"id": "47452", "title": "Love and Death on Long Island", "year": 1997, "duration_min": 93, "rating": 6.9, "genres": "Drama, Romance, Foreign", "genres_pipe": "|Drama|Romance|Foreign|", "keywords": "obsession, love, obsessive love, actor", "tags_pipe": "|obsession|love|obsessive love|actor|", "overview": "Giles De'Ath is a widower who doesn't like anything modern. He goes to movies and falls in love with film star, Ronnie Bostock. He then investigates everything about the movie and Ronnie. After that he travels to Long Island city where Ronnie lives and meets him, pretending that Ronnie is a great actor and that's why Giles admires him.", "text_for_embedding": "Love and Death on Long Island (1997). Genres: Drama, Romance, Foreign. Giles De'Ath is a widower who doesn't like anything modern. He goes to movies and falls in love with film star, Ronnie Bostock. He then investigates everything about the movie and Ronnie. After that he travels to Long Island city where Ronnie lives and meets him, pretending that Ronnie is a great actor and that's why Giles admires him.. Tags: obsession, love, obsessive love, actor"} +{"id": "3040", "title": "Night Watch", "year": 2004, "duration_min": 114, "rating": 6.3, "genres": "Fantasy, Action, Thriller", "genres_pipe": "|Fantasy|Action|Thriller|", "keywords": "witch, subway, fight, airplane, owl, todfeind, guard, blood, moscow", "tags_pipe": "|witch|subway|fight|airplane|owl|todfeind|guard|blood|moscow|", "overview": "Among normal humans live the \"Others\" possessing various supernatural powers. They are divided up into the forces of light and the forces of the dark, who signed a truce several centuries ago to end a devastating battle. Ever since, the forces of light govern the day while the night belongs to their dark opponents. In modern day Moscow the dark Others actually roam the night as vampires while a \"Night Watch\" of light forces, among them Anton, the movie's protagonist, try to control them and limit their outrage", "text_for_embedding": "Night Watch (2004). Genres: Fantasy, Action, Thriller. Among normal humans live the \"Others\" possessing various supernatural powers. They are divided up into the forces of light and the forces of the dark, who signed a truce several centuries ago to end a devastating battle. Ever since, the forces of light govern the day while the night belongs to their dark opponents. In modern day Moscow the dark Others actually roam the night as vampires while a \"Night Watch\" of light forces, among them Anton, the movie's protagonist, try to control them and limit their outrage. Tags: witch, subway, fight, airplane, owl, todfeind, guard, blood, moscow"} +{"id": "11386", "title": "The Crying Game", "year": 1992, "duration_min": 112, "rating": 6.9, "genres": "Romance, Crime, Drama, Thriller", "genres_pipe": "|Romance|Crime|Drama|Thriller|", "keywords": "transvestism, gay, hostage, love of one's life, northern ireland, homosexuality, gay interest, teenage crush, soldier, political unrest", "tags_pipe": "|transvestism|gay|hostage|love of one's life|northern ireland|homosexuality|gay interest|teenage crush|soldier|political unrest|", "overview": "Irish Republican Army member Fergus (Stephen Rea) forms an unexpected bond with Jody (Forest Whitaker), a kidnapped British soldier in his custody, despite the warnings of fellow IRA members Jude (Miranda Richardson) and Maguire (Adrian Dunbar). Jody makes Fergus promise he'll visit his girlfriend, Dil (Jaye Davidson), in London, and when Fergus flees to the city, he seeks her out. Hounded by his former IRA colleagues, he finds himself increasingly drawn to the enigmatic, and surprising, Dil.", "text_for_embedding": "The Crying Game (1992). Genres: Romance, Crime, Drama, Thriller. Irish Republican Army member Fergus (Stephen Rea) forms an unexpected bond with Jody (Forest Whitaker), a kidnapped British soldier in his custody, despite the warnings of fellow IRA members Jude (Miranda Richardson) and Maguire (Adrian Dunbar). Jody makes Fergus promise he'll visit his girlfriend, Dil (Jaye Davidson), in London, and when Fergus flees to the city, he seeks her out. Hounded by his former IRA colleagues, he finds himself increasingly drawn to the enigmatic, and surprising, Dil.. Tags: transvestism, gay, hostage, love of one's life, northern ireland, homosexuality, gay interest, teenage crush, soldier, political unrest"} +{"id": "10246", "title": "Porky's", "year": 1981, "duration_min": 94, "rating": 6.1, "genres": "Comedy", "genres_pipe": "|Comedy|", "keywords": "male nudity, female nudity, sex, florida, virgin, nudity, stripper, redneck, school, loss of virginity, hijinks, racism, teenager, lust, mischief", "tags_pipe": "|male nudity|female nudity|sex|florida|virgin|nudity|stripper|redneck|school|loss of virginity|hijinks|racism|teenager|lust|mischief|", "overview": "Set in 1954, a group of Florida high schoolers seek out to lose their virginity which leads them to seek revenge on a sleazy nightclub owner and his redneck sheriff brother for harassing them.", "text_for_embedding": "Porky's (1981). Genres: Comedy. Set in 1954, a group of Florida high schoolers seek out to lose their virginity which leads them to seek revenge on a sleazy nightclub owner and his redneck sheriff brother for harassing them.. Tags: male nudity, female nudity, sex, florida, virgin, nudity, stripper, redneck, school, loss of virginity, hijinks, racism, teenager, lust, mischief"} +{"id": "29426", "title": "Survival of the Dead", "year": 2010, "duration_min": 90, "rating": 4.6, "genres": "Horror, Science Fiction", "genres_pipe": "|Horror|Science Fiction|", "keywords": "zombie", "tags_pipe": "|zombie|", "overview": "On an island off the coast of North America, local residents simultaneously fight a zombie epidemic while hoping for a cure to return their un-dead relatives back to their human state.", "text_for_embedding": "Survival of the Dead (2010). Genres: Horror, Science Fiction. On an island off the coast of North America, local residents simultaneously fight a zombie epidemic while hoping for a cure to return their un-dead relatives back to their human state.. Tags: zombie"} +{"id": "10331", "title": "Night of the Living Dead", "year": 1968, "duration_min": 96, "rating": 7.5, "genres": "Horror", "genres_pipe": "|Horror|", "keywords": "brother sister relationship, cemetery, gun, gas station, loss of father, cellar, house, barricade, zombie, trapped, bitten", "tags_pipe": "|brother sister relationship|cemetery|gun|gas station|loss of father|cellar|house|barricade|zombie|trapped|bitten|", "overview": "A group of people try to survive an attack of bloodthirsty zombies while trapped in a rural Pennsylvania farmhouse. Although not the first zombie film, Night of the Living Dead is the progenitor of the contemporary \"zombie apocalypse\" horror film, and it greatly influenced the modern pop-culture zombie archetype.", "text_for_embedding": "Night of the Living Dead (1968). Genres: Horror. A group of people try to survive an attack of bloodthirsty zombies while trapped in a rural Pennsylvania farmhouse. Although not the first zombie film, Night of the Living Dead is the progenitor of the contemporary \"zombie apocalypse\" horror film, and it greatly influenced the modern pop-culture zombie archetype.. Tags: brother sister relationship, cemetery, gun, gas station, loss of father, cellar, house, barricade, zombie, trapped, bitten"} +{"id": "153", "title": "Lost in Translation", "year": 2003, "duration_min": 102, "rating": 7.3, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "upper class, hotel room, age difference, commercial, karaoke, homesickness, culture clash, jet lag, pop star, unsociability, aftercreditsstinger, woman director", "tags_pipe": "|upper class|hotel room|age difference|commercial|karaoke|homesickness|culture clash|jet lag|pop star|unsociability|aftercreditsstinger|woman director|", "overview": "Two lost souls visiting Tokyo -- the young, neglected wife of a photographer and a washed-up movie star shooting a TV commercial -- find an odd solace and pensive freedom to be real in each other's company, away from their lives in America.", "text_for_embedding": "Lost in Translation (2003). Genres: Drama. Two lost souls visiting Tokyo -- the young, neglected wife of a photographer and a washed-up movie star shooting a TV commercial -- find an odd solace and pensive freedom to be real in each other's company, away from their lives in America.. Tags: upper class, hotel room, age difference, commercial, karaoke, homesickness, culture clash, jet lag, pop star, unsociability, aftercreditsstinger, woman director"} +{"id": "703", "title": "Annie Hall", "year": 1977, "duration_min": 93, "rating": 7.8, "genres": "Comedy, Drama, Romance", "genres_pipe": "|Comedy|Drama|Romance|", "keywords": "narration, neurosis, comedian, job interview, love, singer, jewish, breaking the fourth wall, talking to the audience, volkswagen beetle", "tags_pipe": "|narration|neurosis|comedian|job interview|love|singer|jewish|breaking the fourth wall|talking to the audience|volkswagen beetle|", "overview": "In the city of New York, comedian Alvy Singer falls in love with the ditsy Annie Hall.", "text_for_embedding": "Annie Hall (1977). Genres: Comedy, Drama, Romance. In the city of New York, comedian Alvy Singer falls in love with the ditsy Annie Hall.. Tags: narration, neurosis, comedian, job interview, love, singer, jewish, breaking the fourth wall, talking to the audience, volkswagen beetle"} +{"id": "27191", "title": "The Greatest Show on Earth", "year": 1952, "duration_min": 152, "rating": 6.6, "genres": "Action, Drama, Romance", "genres_pipe": "|Action|Drama|Romance|", "keywords": "circus, travelling circus", "tags_pipe": "|circus|travelling circus|", "overview": "To ensure a full profitable season, circus manager Brad Braden engages The Great Sebastian, though this moves his girlfriend Holly from her hard-won center trapeze spot. Holly and Sebastian begin a dangerous one-upmanship duel in the ring, while he pursues her on the ground.", "text_for_embedding": "The Greatest Show on Earth (1952). Genres: Action, Drama, Romance. To ensure a full profitable season, circus manager Brad Braden engages The Great Sebastian, though this moves his girlfriend Holly from her hard-won center trapeze spot. Holly and Sebastian begin a dangerous one-upmanship duel in the ring, while he pursues her on the ground.. Tags: circus, travelling circus"} +{"id": "1365", "title": "Monster's Ball", "year": 2001, "duration_min": 111, "rating": 6.5, "genres": "Drama, Romance", "genres_pipe": "|Drama|Romance|", "keywords": "southern usa, waitress, parents kids relationship, overweight child, loss of child, new love, unsociability, ethnic stereotype, independent film, electric chair, xenophobia", "tags_pipe": "|southern usa|waitress|parents kids relationship|overweight child|loss of child|new love|unsociability|ethnic stereotype|independent film|electric chair|xenophobia|", "overview": "Set in the southern USA, a racist white man, Hank, falls in love with a black woman named Leticia. Ironically, Hank is a prison guard working on Death Row who executed Leticia's husband. Hank and Leticia's inter-racial affair leads to confusion and new ideas for the two unlikely lovers.", "text_for_embedding": "Monster's Ball (2001). Genres: Drama, Romance. Set in the southern USA, a racist white man, Hank, falls in love with a black woman named Leticia. Ironically, Hank is a prison guard working on Death Row who executed Leticia's husband. Hank and Leticia's inter-racial affair leads to confusion and new ideas for the two unlikely lovers.. Tags: southern usa, waitress, parents kids relationship, overweight child, loss of child, new love, unsociability, ethnic stereotype, independent film, electric chair, xenophobia"} +{"id": "287424", "title": "Maggie", "year": 2015, "duration_min": 95, "rating": 5.2, "genres": "Horror", "genres_pipe": "|Horror|", "keywords": "post-apocalyptic, dystopia, zombie", "tags_pipe": "|post-apocalyptic|dystopia|zombie|", "overview": "There's a deadly zombie epidemic threatening humanity, but Wade, a small-town farmer and family man, refuses to accept defeat even when his daughter Maggie becomes infected. As Maggie's condition worsens and the authorities seek to eradicate those with the virus, Wade is pushed to the limits in an effort to protect her. Joely Richardson co-stars in this post-apocalyptic thriller.", "text_for_embedding": "Maggie (2015). Genres: Horror. There's a deadly zombie epidemic threatening humanity, but Wade, a small-town farmer and family man, refuses to accept defeat even when his daughter Maggie becomes infected. As Maggie's condition worsens and the authorities seek to eradicate those with the virus, Wade is pushed to the limits in an effort to protect her. Joely Richardson co-stars in this post-apocalyptic thriller.. Tags: post-apocalyptic, dystopia, zombie"} +{"id": "451", "title": "Leaving Las Vegas", "year": 1995, "duration_min": 112, "rating": 7.1, "genres": "Drama, Romance", "genres_pipe": "|Drama|Romance|", "keywords": "individual, prostitute, alcohol, casino, love at first sight, lovesickness, film producer, screenwriter, hotel room, dying and death, rage and hate, unsociability, alcoholism, los angeles, alcohol abuse", "tags_pipe": "|individual|prostitute|alcohol|casino|love at first sight|lovesickness|film producer|screenwriter|hotel room|dying and death|rage and hate|unsociability|alcoholism|los angeles|alcohol abuse|", "overview": "Ben Sanderson, an alcoholic Hollywood screenwriter who lost everything because of his drinking, arrives in Las Vegas to drink himself to death. There, he meets and forms an uneasy friendship and non-interference pact with prostitute Sera.", "text_for_embedding": "Leaving Las Vegas (1995). Genres: Drama, Romance. Ben Sanderson, an alcoholic Hollywood screenwriter who lost everything because of his drinking, arrives in Las Vegas to drink himself to death. There, he meets and forms an uneasy friendship and non-interference pact with prostitute Sera.. Tags: individual, prostitute, alcohol, casino, love at first sight, lovesickness, film producer, screenwriter, hotel room, dying and death, rage and hate, unsociability, alcoholism, los angeles, alcohol abuse"} +{"id": "165864", "title": "Hansel and Gretel Get Baked", "year": 2013, "duration_min": 86, "rating": 4.8, "genres": "Horror, Comedy", "genres_pipe": "|Horror|Comedy|", "keywords": "witch, marijuana, succubus, power company, cannibalism", "tags_pipe": "|witch|marijuana|succubus|power company|cannibalism|", "overview": "An intense new marijuana strain named “Black Forest” is taking Los Angeles by storm, and Gretel’s stoner boyfriend can’t get enough. But when the old woman growing the popular drug (Lara Flynn Boyle) turns out to be an evil witch, cooking and eating her wasted patrons for their youth, Gretel and her brother Hansel must save him from a gruesome death — or face the last high of their lives.", "text_for_embedding": "Hansel and Gretel Get Baked (2013). Genres: Horror, Comedy. An intense new marijuana strain named “Black Forest” is taking Los Angeles by storm, and Gretel’s stoner boyfriend can’t get enough. But when the old woman growing the popular drug (Lara Flynn Boyle) turns out to be an evil witch, cooking and eating her wasted patrons for their youth, Gretel and her brother Hansel must save him from a gruesome death — or face the last high of their lives.. Tags: witch, marijuana, succubus, power company, cannibalism"} +{"id": "987", "title": "The Front Page", "year": 1974, "duration_min": 105, "rating": 6.9, "genres": "Romance, Drama, Comedy", "genres_pipe": "|Romance|Drama|Comedy|", "keywords": "chicago, journalist, newspaper, marriage proposal, stress, father-in-law, newspaper man", "tags_pipe": "|chicago|journalist|newspaper|marriage proposal|stress|father-in-law|newspaper man|", "overview": "A journalist suffering from burn-out wants to finally say goodbye to his office – but his boss doesn’t like the idea one bit.", "text_for_embedding": "The Front Page (1974). Genres: Romance, Drama, Comedy. A journalist suffering from burn-out wants to finally say goodbye to his office – but his boss doesn’t like the idea one bit.. Tags: chicago, journalist, newspaper, marriage proposal, stress, father-in-law, newspaper man"} +{"id": "241251", "title": "The Boy Next Door", "year": 2015, "duration_min": 91, "rating": 4.1, "genres": "Thriller", "genres_pipe": "|Thriller|", "keywords": "male nudity, female nudity, sex, adultery, infidelity, obsession, blackmail, villain, hidden camera, blind date, death of a friend, insanity, high school, stalker, sociopath", "tags_pipe": "|male nudity|female nudity|sex|adultery|infidelity|obsession|blackmail|villain|hidden camera|blind date|death of a friend|insanity|high school|stalker|sociopath|", "overview": "A recently cheated on married woman falls for a younger man who has moved in next door, but their torrid affair soon takes a dangerous turn.", "text_for_embedding": "The Boy Next Door (2015). Genres: Thriller. A recently cheated on married woman falls for a younger man who has moved in next door, but their torrid affair soon takes a dangerous turn.. Tags: male nudity, female nudity, sex, adultery, infidelity, obsession, blackmail, villain, hidden camera, blind date, death of a friend, insanity, high school, stalker, sociopath"} +{"id": "40494", "title": "Trapeze", "year": 1956, "duration_min": 105, "rating": 6.4, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "circus, trapeze artist", "tags_pipe": "|circus|trapeze artist|", "overview": "A pair of men try to perform the dangerous \"triple\" in their trapeze act. Problems arise when the duo is made into a trio following the addition of a sexy female performer.", "text_for_embedding": "Trapeze (1956). Genres: Drama. A pair of men try to perform the dangerous \"triple\" in their trapeze act. Problems arise when the duo is made into a trio following the addition of a sexy female performer.. Tags: circus, trapeze artist"} +{"id": "39781", "title": "The Kids Are All Right", "year": 2010, "duration_min": 106, "rating": 6.5, "genres": "Comedy, Drama", "genres_pipe": "|Comedy|Drama|", "keywords": "lesbian relationship, lesbian, dinner, motorcycle, argument, biological father, artificial insemination, control freak, vegetable garden, woman director, lgbt family", "tags_pipe": "|lesbian relationship|lesbian|dinner|motorcycle|argument|biological father|artificial insemination|control freak|vegetable garden|woman director|lgbt family|", "overview": "Two women, Nic and Jules, brought a son and daughter into the world through artificial insemination. When one of their children reaches age, both kids go behind their mothers' backs to meet with the donor. Life becomes so much more interesting when the father, two mothers and children start to become attached to each other.", "text_for_embedding": "The Kids Are All Right (2010). Genres: Comedy, Drama. Two women, Nic and Jules, brought a son and daughter into the world through artificial insemination. When one of their children reaches age, both kids go behind their mothers' backs to meet with the donor. Life becomes so much more interesting when the father, two mothers and children start to become attached to each other.. Tags: lesbian relationship, lesbian, dinner, motorcycle, argument, biological father, artificial insemination, control freak, vegetable garden, woman director, lgbt family"} +{"id": "8337", "title": "They Live", "year": 1988, "duration_min": 94, "rating": 7.1, "genres": "Action, Horror, Science Fiction, Thriller", "genres_pipe": "|Action|Horror|Science Fiction|Thriller|", "keywords": "dystopia, social commentary, alien invasion, sunglasses, brawl", "tags_pipe": "|dystopia|social commentary|alien invasion|sunglasses|brawl|", "overview": "Nada, a down-on-his-luck construction worker, discovers a pair of special sunglasses. Wearing them, he is able to see the world as it really is: people being bombarded by media and government with messages like \"Stay Asleep\", \"No Imagination\", \"Submit to Authority\". Even scarier is that he is able to see that some usually normal-looking people are in fact ugly aliens in charge of the massive campaign to keep humans subdued.", "text_for_embedding": "They Live (1988). Genres: Action, Horror, Science Fiction, Thriller. Nada, a down-on-his-luck construction worker, discovers a pair of special sunglasses. Wearing them, he is able to see the world as it really is: people being bombarded by media and government with messages like \"Stay Asleep\", \"No Imagination\", \"Submit to Authority\". Even scarier is that he is able to see that some usually normal-looking people are in fact ugly aliens in charge of the massive campaign to keep humans subdued.. Tags: dystopia, social commentary, alien invasion, sunglasses, brawl"} +{"id": "5925", "title": "The Great Escape", "year": 1963, "duration_min": 172, "rating": 7.8, "genres": "Adventure, Drama, History, Thriller, War", "genres_pipe": "|Adventure|Drama|History|Thriller|War|", "keywords": "based on novel, optimism, switzerland, baseball, famous score, prisoner, shower, world war ii, prisoners of war, claustrophobia, nazis, machinegun, attempt to escape, uniform, freedom", "tags_pipe": "|based on novel|optimism|switzerland|baseball|famous score|prisoner|shower|world war ii|prisoners of war|claustrophobia|nazis|machinegun|attempt to escape|uniform|freedom|", "overview": "The Nazis, exasperated at the number of escapes from their prison camps by a relatively small number of Allied prisoners, relocates them to a high-security 'escape-proof' camp to sit out the remainder of the war. Undaunted, the prisoners plan one of the most ambitious escape attempts of World War II. Based on a true story.", "text_for_embedding": "The Great Escape (1963). Genres: Adventure, Drama, History, Thriller, War. The Nazis, exasperated at the number of escapes from their prison camps by a relatively small number of Allied prisoners, relocates them to a high-security 'escape-proof' camp to sit out the remainder of the war. Undaunted, the prisoners plan one of the most ambitious escape attempts of World War II. Based on a true story.. Tags: based on novel, optimism, switzerland, baseball, famous score, prisoner, shower, world war ii, prisoners of war, claustrophobia, nazis, machinegun, attempt to escape, uniform, freedom"} +{"id": "8357", "title": "What the #$*! Do We (K)now!?", "year": 2004, "duration_min": 109, "rating": 5.8, "genres": "Documentary", "genres_pipe": "|Documentary|", "keywords": "alternate dimension, new age, parallel world, pseudoscience, theology, consciousness, quantum mysticism, fantasy docudrama, woman director", "tags_pipe": "|alternate dimension|new age|parallel world|pseudoscience|theology|consciousness|quantum mysticism|fantasy docudrama|woman director|", "overview": "Amanda (Marlee Maitlin) is a divorced woman who makes a living as a photographer. During the Fall of the year Amanda begins to see the world in new and different ways when she begins to question her role in life, her relationships with her career and men and what it all means. As the layers to her everyday experiences fall away insertions in the story with scientists, and philosophers and religious leaders impart information directly to an off-screen interviewer about academic issues, and Amanda begins to understand the basis to the quantum world beneath. During her epiphany as she considers the Great Questions raised by the host of inserted thinkers, Amanda slowly comprehends the various inspirations and begins to see the world in a new way.", "text_for_embedding": "What the #$*! Do We (K)now!? (2004). Genres: Documentary. Amanda (Marlee Maitlin) is a divorced woman who makes a living as a photographer. During the Fall of the year Amanda begins to see the world in new and different ways when she begins to question her role in life, her relationships with her career and men and what it all means. As the layers to her everyday experiences fall away insertions in the story with scientists, and philosophers and religious leaders impart information directly to an off-screen interviewer about academic issues, and Amanda begins to understand the basis to the quantum world beneath. During her epiphany as she considers the Great Questions raised by the host of inserted thinkers, Amanda slowly comprehends the various inspirations and begins to see the world in a new way.. Tags: alternate dimension, new age, parallel world, pseudoscience, theology, consciousness, quantum mysticism, fantasy docudrama, woman director"} +{"id": "146203", "title": "The Last Exorcism Part II", "year": 2013, "duration_min": 88, "rating": 4.4, "genres": "Horror, Thriller", "genres_pipe": "|Horror|Thriller|", "keywords": "found footage", "tags_pipe": "|found footage|", "overview": "As Nell Sweetzer tries to build a new life after the events of the first movie, the evil force that once possessed her returns with an even more horrific plan.", "text_for_embedding": "The Last Exorcism Part II (2013). Genres: Horror, Thriller. As Nell Sweetzer tries to build a new life after the events of the first movie, the evil force that once possessed her returns with an even more horrific plan.. Tags: found footage"} +{"id": "85350", "title": "Boyhood", "year": 2014, "duration_min": 164, "rating": 7.5, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "daily life, family's daily life, urban life, growing up, domestic abuse, coming of age, parenting, divorce, family, divorced parents, abusive husband", "tags_pipe": "|daily life|family's daily life|urban life|growing up|domestic abuse|coming of age|parenting|divorce|family|divorced parents|abusive husband|", "overview": "The film tells a story of a divorced couple trying to raise their young son. The story follows the boy for twelve years, from first grade at age 6 through 12th grade at age 17-18, and examines his relationship with his parents as he grows.", "text_for_embedding": "Boyhood (2014). Genres: Drama. The film tells a story of a divorced couple trying to raise their young son. The story follows the boy for twelve years, from first grade at age 6 through 12th grade at age 17-18, and examines his relationship with his parents as he grows.. Tags: daily life, family's daily life, urban life, growing up, domestic abuse, coming of age, parenting, divorce, family, divorced parents, abusive husband"} +{"id": "512", "title": "Scoop", "year": 2006, "duration_min": 96, "rating": 6.4, "genres": "Comedy, Mystery", "genres_pipe": "|Comedy|Mystery|", "keywords": "upper class, prostitute, journalist, drowning, newspaper, magic, tarot cards, magic show, lordship, suspicion of murder, headline, funeral, investigation, daughter, music instrument", "tags_pipe": "|upper class|prostitute|journalist|drowning|newspaper|magic|tarot cards|magic show|lordship|suspicion of murder|headline|funeral|investigation|daughter|music instrument|", "overview": "An American journalism student in London scoops a big story, and begins an affair with an aristocrat as the incident unfurls.", "text_for_embedding": "Scoop (2006). Genres: Comedy, Mystery. An American journalism student in London scoops a big story, and begins an affair with an aristocrat as the incident unfurls.. Tags: upper class, prostitute, journalist, drowning, newspaper, magic, tarot cards, magic show, lordship, suspicion of murder, headline, funeral, investigation, daughter, music instrument"} +{"id": "13408", "title": "The Wash", "year": 2001, "duration_min": 93, "rating": 5.3, "genres": "Action, Comedy", "genres_pipe": "|Action|Comedy|", "keywords": "sex, fight, music, illegal drug, black american stereotype, cashier, disgruntled worker, low rider, caller id, duringcreditsstinger", "tags_pipe": "|sex|fight|music|illegal drug|black american stereotype|cashier|disgruntled worker|low rider|caller id|duringcreditsstinger|", "overview": "With the rent due and his car booted, Sean (Dr. Dre) has to come up with some ends...and fast. When his best buddy and roommate Dee Loc (Snoop Dogg), suggests that Sean get a job busting suds down at the local car wash.", "text_for_embedding": "The Wash (2001). Genres: Action, Comedy. With the rent due and his car booted, Sean (Dr. Dre) has to come up with some ends...and fast. When his best buddy and roommate Dee Loc (Snoop Dogg), suggests that Sean get a job busting suds down at the local car wash.. Tags: sex, fight, music, illegal drug, black american stereotype, cashier, disgruntled worker, low rider, caller id, duringcreditsstinger"} +{"id": "47816", "title": "3 Strikes", "year": 2000, "duration_min": 82, "rating": 5.9, "genres": "Action, Comedy, Romance", "genres_pipe": "|Action|Comedy|Romance|", "keywords": "sport", "tags_pipe": "|sport|", "overview": "Brian Hooks plays a character who is just released from jail. And the state adopts a \"3 strikes\" rule for felons that involves serious penalties. Hooks has 2 strikes, and wants to change his life for the better. When a friend picks him up, they are pulled over, and his friend shoots at police officers, and Hooks escapes. Now Hooks, a wanted man, must clear his name of having nothing to do with the shooting.", "text_for_embedding": "3 Strikes (2000). Genres: Action, Comedy, Romance. Brian Hooks plays a character who is just released from jail. And the state adopts a \"3 strikes\" rule for felons that involves serious penalties. Hooks has 2 strikes, and wants to change his life for the better. When a friend picks him up, they are pulled over, and his friend shoots at police officers, and Hooks escapes. Now Hooks, a wanted man, must clear his name of having nothing to do with the shooting.. Tags: sport"} +{"id": "10744", "title": "The Cooler", "year": 2003, "duration_min": 101, "rating": 6.7, "genres": "Drama, Romance", "genres_pipe": "|Drama|Romance|", "keywords": "casino, jinx, bad luck", "tags_pipe": "|casino|jinx|bad luck|", "overview": "(William H. Macy) works at a Las Vegas casino, where he uses his innate ability to bring about misfortune in those around him to jinx gamblers into losing. His imposing boss, Shelly Kaplow (Alec Baldwin), is happy with the arrangement. But Bernie finds unexpected happiness when he begins dating attractive waitress Natalie Belisario (Maria Bello).", "text_for_embedding": "The Cooler (2003). Genres: Drama, Romance. (William H. Macy) works at a Las Vegas casino, where he uses his innate ability to bring about misfortune in those around him to jinx gamblers into losing. His imposing boss, Shelly Kaplow (Alec Baldwin), is happy with the arrangement. But Bernie finds unexpected happiness when he begins dating attractive waitress Natalie Belisario (Maria Bello).. Tags: casino, jinx, bad luck"} +{"id": "11536", "title": "The Misfits", "year": 1961, "duration_min": 124, "rating": 6.8, "genres": "Drama, Action, Romance", "genres_pipe": "|Drama|Action|Romance|", "keywords": "decision, reno, mustang, falling in love, divorce", "tags_pipe": "|decision|reno|mustang|falling in love|divorce|", "overview": "While filing for a divorce, beautiful ex-stripper Roslyn Taber ends up meeting aging cowboy-turned-gambler Gay Langland and former World War II aviator Guido Racanelli. The two men instantly become infatuated with Roslyn and, on a whim, the three decide to move into Guido's half-finished desert home together. When grizzled ex-rodeo rider Perce Howland arrives, the unlikely foursome strike up a business capturing wild horses.", "text_for_embedding": "The Misfits (1961). Genres: Drama, Action, Romance. While filing for a divorce, beautiful ex-stripper Roslyn Taber ends up meeting aging cowboy-turned-gambler Gay Langland and former World War II aviator Guido Racanelli. The two men instantly become infatuated with Roslyn and, on a whim, the three decide to move into Guido's half-finished desert home together. When grizzled ex-rodeo rider Perce Howland arrives, the unlikely foursome strike up a business capturing wild horses.. Tags: decision, reno, mustang, falling in love, divorce"} +{"id": "9782", "title": "The Night Listener", "year": 2006, "duration_min": 91, "rating": 5.5, "genres": "Drama, Thriller", "genres_pipe": "|Drama|Thriller|", "keywords": "radio station, radio presenter, radio transmission, independent film", "tags_pipe": "|radio station|radio presenter|radio transmission|independent film|", "overview": "In the midst of his crumbling relationship, a radio show host begins speaking to his biggest fan, a young boy, via the telephone. But when questions about the boy's identity come up, the host's life is thrown into chaos.", "text_for_embedding": "The Night Listener (2006). Genres: Drama, Thriller. In the midst of his crumbling relationship, a radio show host begins speaking to his biggest fan, a young boy, via the telephone. But when questions about the boy's identity come up, the host's life is thrown into chaos.. Tags: radio station, radio presenter, radio transmission, independent film"} +{"id": "18713", "title": "The Jerky Boys", "year": 1995, "duration_min": 82, "rating": 4.8, "genres": "Comedy, Crime", "genres_pipe": "|Comedy|Crime|", "keywords": "new york, telephone joke, gangster", "tags_pipe": "|new york|telephone joke|gangster|", "overview": "When two unemployed telephone pranksters decide to use their vocal \"talents\" to impersonate a Chicago mob boss and curry favor with organized crime in New York, the trouble begins. It isn't long before Johnny and Kamal (the \"Jerky Boys\" of crank call fame) are wanted by the local mafia, the police, and their neighbor.", "text_for_embedding": "The Jerky Boys (1995). Genres: Comedy, Crime. When two unemployed telephone pranksters decide to use their vocal \"talents\" to impersonate a Chicago mob boss and curry favor with organized crime in New York, the trouble begins. It isn't long before Johnny and Kamal (the \"Jerky Boys\" of crank call fame) are wanted by the local mafia, the police, and their neighbor.. Tags: new york, telephone joke, gangster"} +{"id": "6537", "title": "The Orphanage", "year": 2007, "duration_min": 105, "rating": 7.1, "genres": "Horror, Drama, Thriller", "genres_pipe": "|Horror|Drama|Thriller|", "keywords": "schizophrenia, suppressed past, wife", "tags_pipe": "|schizophrenia|suppressed past|wife|", "overview": "A woman brings her family back to her childhood home, which used to be an orphanage, intent on reopening it. Before long, her son starts to communicate with a new invisible friend.", "text_for_embedding": "The Orphanage (2007). Genres: Horror, Drama, Thriller. A woman brings her family back to her childhood home, which used to be an orphanage, intent on reopening it. Before long, her son starts to communicate with a new invisible friend.. Tags: schizophrenia, suppressed past, wife"} +{"id": "184345", "title": "A Haunted House 2", "year": 2014, "duration_min": 87, "rating": 5.4, "genres": "Comedy, Horror", "genres_pipe": "|Comedy|Horror|", "keywords": "haunted house", "tags_pipe": "|haunted house|", "overview": "Having exorcised the demons of his ex, Malcolm is starting fresh with his new girlfriend and her two children. After moving into their dream home, however, Malcolm is once again plagued by bizarre paranormal events.", "text_for_embedding": "A Haunted House 2 (2014). Genres: Comedy, Horror. Having exorcised the demons of his ex, Malcolm is starting fresh with his new girlfriend and her two children. After moving into their dream home, however, Malcolm is once again plagued by bizarre paranormal events.. Tags: haunted house"} +{"id": "1809", "title": "The Rules of Attraction", "year": 2002, "duration_min": 110, "rating": 6.3, "genres": "Comedy, Drama, Romance", "genres_pipe": "|Comedy|Drama|Romance|", "keywords": "love triangle, independent film, multiple storylines", "tags_pipe": "|love triangle|independent film|multiple storylines|", "overview": "The incredibly spoiled and overprivileged students of Camden College are a backdrop for an unusual love triangle between a drug dealer, a virgin and a bisexual classmate.", "text_for_embedding": "The Rules of Attraction (2002). Genres: Comedy, Drama, Romance. The incredibly spoiled and overprivileged students of Camden College are a backdrop for an unusual love triangle between a drug dealer, a virgin and a bisexual classmate.. Tags: love triangle, independent film, multiple storylines"} +{"id": "2370", "title": "Topaz", "year": 1969, "duration_min": 143, "rating": 6.1, "genres": "Action, Drama, Mystery, Thriller", "genres_pipe": "|Action|Drama|Mystery|Thriller|", "keywords": "new york, cia, cuba, cold war, suspense", "tags_pipe": "|new york|cia|cuba|cold war|suspense|", "overview": "A French intelligence agent becomes embroiled in the Cold War politics first with uncovering the events leading up to the 1962 Cuban Missle Crisis, and then back to France to break up an international Russian spy ring.", "text_for_embedding": "Topaz (1969). Genres: Action, Drama, Mystery, Thriller. A French intelligence agent becomes embroiled in the Cold War politics first with uncovering the events leading up to the 1962 Cuban Missle Crisis, and then back to France to break up an international Russian spy ring.. Tags: new york, cia, cuba, cold war, suspense"} +{"id": "9809", "title": "Let's Go to Prison", "year": 2006, "duration_min": 84, "rating": 5.5, "genres": "Comedy, Crime", "genres_pipe": "|Comedy|Crime|", "keywords": "loss of father, condom, vulgar, parole board, alcohol abuse", "tags_pipe": "|loss of father|condom|vulgar|parole board|alcohol abuse|", "overview": "When a career criminal's plan for revenge is thwarted by unlikely circumstances, he puts his intended victim's son in his place by putting him in prison...and then joining him.", "text_for_embedding": "Let's Go to Prison (2006). Genres: Comedy, Crime. When a career criminal's plan for revenge is thwarted by unlikely circumstances, he puts his intended victim's son in his place by putting him in prison...and then joining him.. Tags: loss of father, condom, vulgar, parole board, alcohol abuse"} +{"id": "5", "title": "Four Rooms", "year": 1995, "duration_min": 98, "rating": 6.5, "genres": "Crime, Comedy", "genres_pipe": "|Crime|Comedy|", "keywords": "hotel, new year's eve, witch, bet, hotel room, sperm, los angeles, hoodlum, woman director, episode film", "tags_pipe": "|hotel|new year's eve|witch|bet|hotel room|sperm|los angeles|hoodlum|woman director|episode film|", "overview": "It's Ted the Bellhop's first night on the job...and the hotel's very unusual guests are about to place him in some outrageous predicaments. It seems that this evening's room service is serving up one unbelievable happening after another.", "text_for_embedding": "Four Rooms (1995). Genres: Crime, Comedy. It's Ted the Bellhop's first night on the job...and the hotel's very unusual guests are about to place him in some outrageous predicaments. It seems that this evening's room service is serving up one unbelievable happening after another.. Tags: hotel, new year's eve, witch, bet, hotel room, sperm, los angeles, hoodlum, woman director, episode film"} +{"id": "11013", "title": "Secretary", "year": 2002, "duration_min": 104, "rating": 6.7, "genres": "Comedy, Drama, Romance", "genres_pipe": "|Comedy|Drama|Romance|", "keywords": "suicide, clerk, fetish, sadomasochism, lawyer, hospital, secretary, masturbation, typewriter, kinky, cutting, pantyhose, bdsm, workplace romance", "tags_pipe": "|suicide|clerk|fetish|sadomasochism|lawyer|hospital|secretary|masturbation|typewriter|kinky|cutting|pantyhose|bdsm|workplace romance|", "overview": "A young woman, recently released from a mental hospital, gets a job as a secretary to a demanding lawyer, where their employer-employee relationship turns into a sexual, sadomasochistic one.", "text_for_embedding": "Secretary (2002). Genres: Comedy, Drama, Romance. A young woman, recently released from a mental hospital, gets a job as a secretary to a demanding lawyer, where their employer-employee relationship turns into a sexual, sadomasochistic one.. Tags: suicide, clerk, fetish, sadomasochism, lawyer, hospital, secretary, masturbation, typewriter, kinky, cutting, pantyhose, bdsm, workplace romance"} +{"id": "19153", "title": "The Real Cancun", "year": 2003, "duration_min": 96, "rating": 3.3, "genres": "Documentary", "genres_pipe": "|Documentary|", "keywords": "independent film", "tags_pipe": "|independent film|", "overview": "Sixteen American college students drink, flirt, fight and canoodle during their Spring Break vacation in Cancun, Mexico.", "text_for_embedding": "The Real Cancun (2003). Genres: Documentary. Sixteen American college students drink, flirt, fight and canoodle during their Spring Break vacation in Cancun, Mexico.. Tags: independent film"} +{"id": "10132", "title": "Talk Radio", "year": 1988, "duration_min": 110, "rating": 6.7, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "anonymity, radio presenter, success, dangerous, radio transmission, independent film", "tags_pipe": "|anonymity|radio presenter|success|dangerous|radio transmission|independent film|", "overview": "A rude, contemptuous talk show host becomes overwhelmed by the hatred that surrounds his program just before it goes national.", "text_for_embedding": "Talk Radio (1988). Genres: Drama. A rude, contemptuous talk show host becomes overwhelmed by the hatred that surrounds his program just before it goes national.. Tags: anonymity, radio presenter, success, dangerous, radio transmission, independent film"} +{"id": "16448", "title": "Waiting for Guffman", "year": 1996, "duration_min": 84, "rating": 7.3, "genres": "Music, Comedy", "genres_pipe": "|Music|Comedy|", "keywords": "missouri, independent film, mechanic, in the closet, mockumentary, improvisation, whispering, travel agent, amateur theater, dairy queen, alien contact, fake documentary, city council, wagon train, chinese restaurant", "tags_pipe": "|missouri|independent film|mechanic|in the closet|mockumentary|improvisation|whispering|travel agent|amateur theater|dairy queen|alien contact|fake documentary|city council|wagon train|chinese restaurant|", "overview": "Corky St. Clair is a director, actor and dancer in Blaine, Missouri. When it comes time to celebrate Blaine's 150th anniversary, Corky resolves to bring down the house in Broadway style in this hilarious mockumentary from the people who brought you \"This is Spinal Tap!\"", "text_for_embedding": "Waiting for Guffman (1996). Genres: Music, Comedy. Corky St. Clair is a director, actor and dancer in Blaine, Missouri. When it comes time to celebrate Blaine's 150th anniversary, Corky resolves to bring down the house in Broadway style in this hilarious mockumentary from the people who brought you \"This is Spinal Tap!\". Tags: missouri, independent film, mechanic, in the closet, mockumentary, improvisation, whispering, travel agent, amateur theater, dairy queen, alien contact, fake documentary, city council, wagon train, chinese restaurant"} +{"id": "15122", "title": "Love Stinks", "year": 1999, "duration_min": 94, "rating": 5.4, "genres": "Comedy, Romance", "genres_pipe": "|Comedy|Romance|", "keywords": "behind the scenes, spa, planetarium, art imitates life", "tags_pipe": "|behind the scenes|spa|planetarium|art imitates life|", "overview": "A movie about a relationship...that's worse than yours. Seth (Stewart), a sitcom writer-producer, meets Chelsea (Wilson), an interior decorator, at his best friend's (Bellamy) wedding. He's immediately sexually attracted to her while she's instantly attracted to his single-ness. They both ditch their wedding dates and start their own date that same night. The two become a couple, appearing very happy until after a couple of years of postponing a marriage proposal. When Chelsea realizes that Seth wants to remain single and together, she becomes quite bitter. In the next hour of the movie, the two engage in behavior that makes the War of the Roses look like child's play.", "text_for_embedding": "Love Stinks (1999). Genres: Comedy, Romance. A movie about a relationship...that's worse than yours. Seth (Stewart), a sitcom writer-producer, meets Chelsea (Wilson), an interior decorator, at his best friend's (Bellamy) wedding. He's immediately sexually attracted to her while she's instantly attracted to his single-ness. They both ditch their wedding dates and start their own date that same night. The two become a couple, appearing very happy until after a couple of years of postponing a marriage proposal. When Chelsea realizes that Seth wants to remain single and together, she becomes quite bitter. In the next hour of the movie, the two engage in behavior that makes the War of the Roses look like child's play.. Tags: behind the scenes, spa, planetarium, art imitates life"} +{"id": "8141", "title": "You Kill Me", "year": 2007, "duration_min": 90, "rating": 6.2, "genres": "Comedy, Crime, Thriller, Romance", "genres_pipe": "|Comedy|Crime|Thriller|Romance|", "keywords": "new york, san francisco, alcoholism, serial killer, alcoholic", "tags_pipe": "|new york|san francisco|alcoholism|serial killer|alcoholic|", "overview": "While drying out on the West Coast, an alcoholic hit man befriends a tart-tongued woman who might just come in handy when it's time for him to return to Buffalo and settle some old scores.", "text_for_embedding": "You Kill Me (2007). Genres: Comedy, Crime, Thriller, Romance. While drying out on the West Coast, an alcoholic hit man befriends a tart-tongued woman who might just come in handy when it's time for him to return to Buffalo and settle some old scores.. Tags: new york, san francisco, alcoholism, serial killer, alcoholic"} +{"id": "1546", "title": "Thumbsucker", "year": 2005, "duration_min": 96, "rating": 6.1, "genres": "Comedy, Drama", "genres_pipe": "|Comedy|Drama|", "keywords": "becoming an adult, thumb, first time, hypnosis, thumb sucking, attention deficit hyperactivity disorder (adhd), elocution, high school, independent film, teenage crush, youth, family", "tags_pipe": "|becoming an adult|thumb|first time|hypnosis|thumb sucking|attention deficit hyperactivity disorder (adhd)|elocution|high school|independent film|teenage crush|youth|family|", "overview": "Justin, a teenager boy, throws himself and everyone around him into chaos when he attempts to break free from his addiction to his thumb.", "text_for_embedding": "Thumbsucker (2005). Genres: Comedy, Drama. Justin, a teenager boy, throws himself and everyone around him into chaos when he attempts to break free from his addiction to his thumb.. Tags: becoming an adult, thumb, first time, hypnosis, thumb sucking, attention deficit hyperactivity disorder (adhd), elocution, high school, independent film, teenage crush, youth, family"} +{"id": "48572", "title": "Red State", "year": 2011, "duration_min": 88, "rating": 5.9, "genres": "Horror, Action, Thriller", "genres_pipe": "|Horror|Action|Thriller|", "keywords": "christianity, homophobia, pastor, protest, christian, sign, gay interest, social commentary, religious fundamentalism, aftercreditsstinger, duringcreditsstinger", "tags_pipe": "|christianity|homophobia|pastor|protest|christian|sign|gay interest|social commentary|religious fundamentalism|aftercreditsstinger|duringcreditsstinger|", "overview": "Set in Middle America, a group of teens receive an online invitation for sex, though they soon encounter Christian fundamentalists with a much more sinister agenda.", "text_for_embedding": "Red State (2011). Genres: Horror, Action, Thriller. Set in Middle America, a group of teens receive an online invitation for sex, though they soon encounter Christian fundamentalists with a much more sinister agenda.. Tags: christianity, homophobia, pastor, protest, christian, sign, gay interest, social commentary, religious fundamentalism, aftercreditsstinger, duringcreditsstinger"} +{"id": "14517", "title": "Mirrormask", "year": 2005, "duration_min": 101, "rating": 6.6, "genres": "Fantasy", "genres_pipe": "|Fantasy|", "keywords": "fictional place, dream, fantasy", "tags_pipe": "|fictional place|dream|fantasy|", "overview": "In a fantasy world of opposing kingdoms, a 15-year old girl must find the fabled MirrorMask in order to save the kingdom and get home", "text_for_embedding": "Mirrormask (2005). Genres: Fantasy. In a fantasy world of opposing kingdoms, a 15-year old girl must find the fabled MirrorMask in order to save the kingdom and get home. Tags: fictional place, dream, fantasy"} +{"id": "89708", "title": "Samsara", "year": 2011, "duration_min": 102, "rating": 8.0, "genres": "Drama, Documentary", "genres_pipe": "|Drama|Documentary|", "keywords": "eating, around the world, fast motion scene, balance, skyline, sunset, modern life, moonrise", "tags_pipe": "|eating|around the world|fast motion scene|balance|skyline|sunset|modern life|moonrise|", "overview": "Samsara is a word that describes the ever turning wheel of life. It is a concept both intimate and vast - the perfect subject for filmmakers Ron Fricke and Mark Magidson, whose previous collaborations include Chronos and Baraka, and who, in the last 20 years, have travelled to over 58 countries together in the pursuit of unique imagery. Samsara takes the form of a nonverbal, guided meditation that will transform viewers in countries around the world as they are swept along a journey of the soul. Through powerful images pristinely photographed in 70mm and a dynamic music score, the film illuminates the links between humanity and the rest of the nature, showing how our life cycle mirrors the rhythm of the planet.", "text_for_embedding": "Samsara (2011). Genres: Drama, Documentary. Samsara is a word that describes the ever turning wheel of life. It is a concept both intimate and vast - the perfect subject for filmmakers Ron Fricke and Mark Magidson, whose previous collaborations include Chronos and Baraka, and who, in the last 20 years, have travelled to over 58 countries together in the pursuit of unique imagery. Samsara takes the form of a nonverbal, guided meditation that will transform viewers in countries around the world as they are swept along a journey of the soul. Through powerful images pristinely photographed in 70mm and a dynamic music score, the film illuminates the links between humanity and the rest of the nature, showing how our life cycle mirrors the rhythm of the planet.. Tags: eating, around the world, fast motion scene, balance, skyline, sunset, modern life, moonrise"} +{"id": "27551", "title": "The Barbarians", "year": 1987, "duration_min": 87, "rating": 5.1, "genres": "Fantasy, Adventure", "genres_pipe": "|Fantasy|Adventure|", "keywords": "dragon, barbarian", "tags_pipe": "|dragon|barbarian|", "overview": "Orphaned brothers Kutchek and Gore are adopted by a tribe led by Canary the owner of a powerful jewel. The evil Kadar wants both Canary and the jewel. Attacking the tribe he kidnaps Canary but the stone eludes him. The brothers are taken to be trained as gladiators and years later have grown to be VERY big. They escape and set off on a quest to find the jewel and rescue Canary.", "text_for_embedding": "The Barbarians (1987). Genres: Fantasy, Adventure. Orphaned brothers Kutchek and Gore are adopted by a tribe led by Canary the owner of a powerful jewel. The evil Kadar wants both Canary and the jewel. Attacking the tribe he kidnaps Canary but the stone eludes him. The brothers are taken to be trained as gladiators and years later have grown to be VERY big. They escape and set off on a quest to find the jewel and rescue Canary.. Tags: dragon, barbarian"} +{"id": "64678", "title": "The Art of Getting By", "year": 2011, "duration_min": 83, "rating": 6.5, "genres": "Drama, Romance", "genres_pipe": "|Drama|Romance|", "keywords": "philosophy, mentor, artist, painting, friendship, teen movie, teenager, sketching, rebellious youth", "tags_pipe": "|philosophy|mentor|artist|painting|friendship|teen movie|teenager|sketching|rebellious youth|", "overview": "George, a lonely and fatalistic teen who's made it all the way to his senior year without ever having done a real day of work, is befriended by Sally, a popular but complicated girl who recognizes in him a kindred spirit.", "text_for_embedding": "The Art of Getting By (2011). Genres: Drama, Romance. George, a lonely and fatalistic teen who's made it all the way to his senior year without ever having done a real day of work, is befriended by Sally, a popular but complicated girl who recognizes in him a kindred spirit.. Tags: philosophy, mentor, artist, painting, friendship, teen movie, teenager, sketching, rebellious youth"} +{"id": "309503", "title": "Zipper", "year": 2015, "duration_min": 103, "rating": 5.5, "genres": "Thriller, Drama", "genres_pipe": "|Thriller|Drama|", "keywords": "woman director", "tags_pipe": "|woman director|", "overview": "Sam Ellis is a man on the rise — a hot-shot federal prosecutor on the cusp of a bright political future. But what was meant to be a one-time experience with an escort turns into a growing addiction — a new demon threatening to destroy his life, family, and career.", "text_for_embedding": "Zipper (2015). Genres: Thriller, Drama. Sam Ellis is a man on the rise — a hot-shot federal prosecutor on the cusp of a bright political future. But what was meant to be a one-time experience with an escort turns into a growing addiction — a new demon threatening to destroy his life, family, and career.. Tags: woman director"} +{"id": "14293", "title": "Poolhall Junkies", "year": 2002, "duration_min": 99, "rating": 6.5, "genres": "Comedy, Drama, Thriller", "genres_pipe": "|Comedy|Drama|Thriller|", "keywords": "hustler, independent film, pool", "tags_pipe": "|hustler|independent film|pool|", "overview": "A retired pool hustler is forced to pick up the stick again when his brother starts a game he can't finish.", "text_for_embedding": "Poolhall Junkies (2002). Genres: Comedy, Drama, Thriller. A retired pool hustler is forced to pick up the stick again when his brother starts a game he can't finish.. Tags: hustler, independent film, pool"} +{"id": "15059", "title": "The Loss of Sexual Innocence", "year": 1999, "duration_min": 106, "rating": 5.2, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "", "tags_pipe": "", "overview": "The story of the sexual development of a filmmaker through three stages of his life.", "text_for_embedding": "The Loss of Sexual Innocence (1999). Genres: Drama. The story of the sexual development of a filmmaker through three stages of his life.. Tags: "} +{"id": "103328", "title": "Holy Motors", "year": 2012, "duration_min": 115, "rating": 6.9, "genres": "Drama, Fantasy", "genres_pipe": "|Drama|Fantasy|", "keywords": "limousine, multiple identities, wig, penis, talking car, sewer of paris, traveling through a sewer, multiple roles", "tags_pipe": "|limousine|multiple identities|wig|penis|talking car|sewer of paris|traveling through a sewer|multiple roles|", "overview": "We follow 24 hours in the life of a being moving from life to life like a cold and solitary assassin moving from hit to hit. In each of these interwoven lives, the being possesses an entirely distinct identity: sometimes a man, sometimes a woman, sometimes youthful, sometimes old. By turns murderer, beggar, company chairman, monstrous creature, worker, family man.", "text_for_embedding": "Holy Motors (2012). Genres: Drama, Fantasy. We follow 24 hours in the life of a being moving from life to life like a cold and solitary assassin moving from hit to hit. In each of these interwoven lives, the being possesses an entirely distinct identity: sometimes a man, sometimes a woman, sometimes youthful, sometimes old. By turns murderer, beggar, company chairman, monstrous creature, worker, family man.. Tags: limousine, multiple identities, wig, penis, talking car, sewer of paris, traveling through a sewer, multiple roles"} +{"id": "157847", "title": "Joe", "year": 2014, "duration_min": 118, "rating": 6.5, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "child abuse, prostitute, bar, brothel, snake, rain, pedophilia, bridge, beer, police, wine, fellatio, truck, woods, murder", "tags_pipe": "|child abuse|prostitute|bar|brothel|snake|rain|pedophilia|bridge|beer|police|wine|fellatio|truck|woods|murder|", "overview": "The rough-hewn boss of a lumber crew courts trouble when he steps in to protect the youngest member of his team from an abusive father.", "text_for_embedding": "Joe (2014). Genres: Drama. The rough-hewn boss of a lumber crew courts trouble when he steps in to protect the youngest member of his team from an abusive father.. Tags: child abuse, prostitute, bar, brothel, snake, rain, pedophilia, bridge, beer, police, wine, fellatio, truck, woods, murder"} +{"id": "25719", "title": "Shooting Fish", "year": 1997, "duration_min": 109, "rating": 7.0, "genres": "Crime, Comedy, Romance", "genres_pipe": "|Crime|Comedy|Romance|", "keywords": "london england, nightclub, chase, fraud, liar, love, thief, wealth, money, scam, hospital, secretary, business, wedding, parole", "tags_pipe": "|london england|nightclub|chase|fraud|liar|love|thief|wealth|money|scam|hospital|secretary|business|wedding|parole|", "overview": "Two con artists (Dan Futterman, Stuart Townsend) hire an unwitting medical-school student (Kate Beckinsale) as a secretary for their latest scam.", "text_for_embedding": "Shooting Fish (1997). Genres: Crime, Comedy, Romance. Two con artists (Dan Futterman, Stuart Townsend) hire an unwitting medical-school student (Kate Beckinsale) as a secretary for their latest scam.. Tags: london england, nightclub, chase, fraud, liar, love, thief, wealth, money, scam, hospital, secretary, business, wedding, parole"} +{"id": "48309", "title": "Prison", "year": 1988, "duration_min": 102, "rating": 6.7, "genres": "Crime, Drama, Horror, Thriller", "genres_pipe": "|Crime|Drama|Horror|Thriller|", "keywords": "prison, prisoner, revenge, haunting, electric chair", "tags_pipe": "|prison|prisoner|revenge|haunting|electric chair|", "overview": "After Charles Forsyth was sent to the electric chair for a crime he didn't commit, he forever haunts the prison where he was executed. Flash forward several years when the prison is reopened, under the control of its new warden Eaton Sharpe, a former security guard who framed Charlie. When prisoners are ordered to break down the wall to the execution room, they unknowingly release the angry spirit of Charles Forsyth, a powerful being distributing his murderous rage to all, leading up to the Warden himself.", "text_for_embedding": "Prison (1988). Genres: Crime, Drama, Horror, Thriller. After Charles Forsyth was sent to the electric chair for a crime he didn't commit, he forever haunts the prison where he was executed. Flash forward several years when the prison is reopened, under the control of its new warden Eaton Sharpe, a former security guard who framed Charlie. When prisoners are ordered to break down the wall to the execution room, they unknowingly release the angry spirit of Charles Forsyth, a powerful being distributing his murderous rage to all, leading up to the Warden himself.. Tags: prison, prisoner, revenge, haunting, electric chair"} +{"id": "27723", "title": "Psycho Beach Party", "year": 2000, "duration_min": 95, "rating": 6.0, "genres": "Comedy", "genres_pipe": "|Comedy|", "keywords": "gay, dancing, detective, confession, beach, surfer, satire, party, malibu, friends, revenge, murder, based on play, independent film, diner", "tags_pipe": "|gay|dancing|detective|confession|beach|surfer|satire|party|malibu|friends|revenge|murder|based on play|independent film|diner|", "overview": "Spoof of 1960's Beach Party/Gidget surfing movies mixed with slasher horror films. A not-so-innocent girl in 1960's Malibu becomes the first girl surfer at Malibu Beach, only she suffers from dissociative identity disorder and occasionally her alter ego, a sexually aggressive, foul-speaking girl, comes out. During her \"episodes\" several beach goers are found murdered.", "text_for_embedding": "Psycho Beach Party (2000). Genres: Comedy. Spoof of 1960's Beach Party/Gidget surfing movies mixed with slasher horror films. A not-so-innocent girl in 1960's Malibu becomes the first girl surfer at Malibu Beach, only she suffers from dissociative identity disorder and occasionally her alter ego, a sexually aggressive, foul-speaking girl, comes out. During her \"episodes\" several beach goers are found murdered.. Tags: gay, dancing, detective, confession, beach, surfer, satire, party, malibu, friends, revenge, murder, based on play, independent film, diner"} +{"id": "20468", "title": "The Big Tease", "year": 1999, "duration_min": 87, "rating": 5.8, "genres": "Comedy, Foreign", "genres_pipe": "|Comedy|Foreign|", "keywords": "hairdresser, hairstylist", "tags_pipe": "|hairdresser|hairstylist|", "overview": "Thinking he's competing in Los Angeles' hot Platinum Scissors contest, Scottish hairstylist Crawford (Craig Ferguson) leaves Glasgow with a film crew to capture the event. When he learns he's a mere audience member, Crawford must find a way to become the mane event. Abhorrent Norwegian Stig is his stiff-as-gel competition. Drew Carey and others make cameo appearances in this hysterical mockumentar", "text_for_embedding": "The Big Tease (1999). Genres: Comedy, Foreign. Thinking he's competing in Los Angeles' hot Platinum Scissors contest, Scottish hairstylist Crawford (Craig Ferguson) leaves Glasgow with a film crew to capture the event. When he learns he's a mere audience member, Crawford must find a way to become the mane event. Abhorrent Norwegian Stig is his stiff-as-gel competition. Drew Carey and others make cameo appearances in this hysterical mockumentar. Tags: hairdresser, hairstylist"} +{"id": "242575", "title": "Guten Tag, Ramón", "year": 2013, "duration_min": 119, "rating": 8.1, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "germany, mexican", "tags_pipe": "|germany|mexican|", "overview": "After five failed attempts to go to the United States, 18-year-old Ramón decides to look for a friend’s aunt in Germany, but never finds her. With no papers or money, and without knowing the language, he barely survives living on the street until he meets Ruth, an old retired nurse who doesn’t speak Spanish. Beyond language barriers and prejudices, they discover that solidarity and humanity make life bearable.", "text_for_embedding": "Guten Tag, Ramón (2013). Genres: Drama. After five failed attempts to go to the United States, 18-year-old Ramón decides to look for a friend’s aunt in Germany, but never finds her. With no papers or money, and without knowing the language, he barely survives living on the street until he meets Ruth, an old retired nurse who doesn’t speak Spanish. Beyond language barriers and prejudices, they discover that solidarity and humanity make life bearable.. Tags: germany, mexican"} +{"id": "44945", "title": "Trust", "year": 2010, "duration_min": 104, "rating": 6.6, "genres": "Crime, Drama, Thriller", "genres_pipe": "|Crime|Drama|Thriller|", "keywords": "rape, obsession, lie, job, independent film, teenage girl, school, internet, best friend, counselor, internet chat, duringcreditsstinger, online chat, catfishing, online hookup", "tags_pipe": "|rape|obsession|lie|job|independent film|teenage girl|school|internet|best friend|counselor|internet chat|duringcreditsstinger|online chat|catfishing|online hookup|", "overview": "A suburban family is torn apart when fourteen-year-old Annie meets her first boyfriend online. After months of communicating via online chat and phone, Annie discovers her friend is not who he originally claimed to be. Shocked into disbelief, her parents are shattered by their daughter's actions and struggle to support her as she comes to terms with what has happened to her once innocent life.", "text_for_embedding": "Trust (2010). Genres: Crime, Drama, Thriller. A suburban family is torn apart when fourteen-year-old Annie meets her first boyfriend online. After months of communicating via online chat and phone, Annie discovers her friend is not who he originally claimed to be. Shocked into disbelief, her parents are shattered by their daughter's actions and struggle to support her as she comes to terms with what has happened to her once innocent life.. Tags: rape, obsession, lie, job, independent film, teenage girl, school, internet, best friend, counselor, internet chat, duringcreditsstinger, online chat, catfishing, online hookup"} +{"id": "29122", "title": "An Everlasting Piece", "year": 2000, "duration_min": 103, "rating": 6.0, "genres": "Comedy, Crime", "genres_pipe": "|Comedy|Crime|", "keywords": "toupee, scalper", "tags_pipe": "|toupee|scalper|", "overview": "Colin (Barry McEvoy) is a Catholic and George (Brian O'Byrne) is a poetry-loving Protestant. In Belfast in the 1980s, they could have been enemies, but instead they became business partners. After persuading a mad wig salesman, known as the Scalper (Billy Connolly), to sell them his leads, the two embark on a series of house calls", "text_for_embedding": "An Everlasting Piece (2000). Genres: Comedy, Crime. Colin (Barry McEvoy) is a Catholic and George (Brian O'Byrne) is a poetry-loving Protestant. In Belfast in the 1980s, they could have been enemies, but instead they became business partners. After persuading a mad wig salesman, known as the Scalper (Billy Connolly), to sell them his leads, the two embark on a series of house calls. Tags: toupee, scalper"} +{"id": "125123", "title": "Among Giants", "year": 1998, "duration_min": 93, "rating": 4.5, "genres": "Comedy, Romance", "genres_pipe": "|Comedy|Romance|", "keywords": "yorkshire, love, friends", "tags_pipe": "|yorkshire|love|friends|", "overview": "A manager hires Ray, off the books, to paint all the power towers in a 15-mile stretch of high-tension wires outside Sheffield. Ray's crew of men are friends, especially Ray with Steve, a young Romeo. Into the mix comes Gerry, an Australian with a spirit of adventure and mountain climbing skills. She wants a job, and against the others' advice, who don't want a woman on the job, Ray hires her. Then she and Ray fall in love. He asks her to marry him, gives her a ring. Steve's jealous; Ray's ex-wife complains that he spends on Gerry, not his own kids, and she predicts that Gerry won't stay around. Plus, there's pressure to finish the job fast. Economics, romance, and wanderlust spark the end.", "text_for_embedding": "Among Giants (1998). Genres: Comedy, Romance. A manager hires Ray, off the books, to paint all the power towers in a 15-mile stretch of high-tension wires outside Sheffield. Ray's crew of men are friends, especially Ray with Steve, a young Romeo. Into the mix comes Gerry, an Australian with a spirit of adventure and mountain climbing skills. She wants a job, and against the others' advice, who don't want a woman on the job, Ray hires her. Then she and Ray fall in love. He asks her to marry him, gives her a ring. Steve's jealous; Ray's ex-wife complains that he spends on Gerry, not his own kids, and she predicts that Gerry won't stay around. Plus, there's pressure to finish the job fast. Economics, romance, and wanderlust spark the end.. Tags: yorkshire, love, friends"} +{"id": "111190", "title": "Adore", "year": 2013, "duration_min": 100, "rating": 6.1, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "lovers, woman director", "tags_pipe": "|lovers|woman director|", "overview": "Lil and Roz are two lifelong friends, having grown up together as neighbors in an idyllic beach town. As adults, their sons have developed a friendship as strong as that which binds their mothers. One summer, all four are confronted by simmering emotions that have been mounting between them, and each find unexpected happiness in relationships that cross the bounds of convention.", "text_for_embedding": "Adore (2013). Genres: Drama. Lil and Roz are two lifelong friends, having grown up together as neighbors in an idyllic beach town. As adults, their sons have developed a friendship as strong as that which binds their mothers. One summer, all four are confronted by simmering emotions that have been mounting between them, and each find unexpected happiness in relationships that cross the bounds of convention.. Tags: lovers, woman director"} +{"id": "133575", "title": "The Velocity of Gary", "year": 1999, "duration_min": 100, "rating": 4.2, "genres": "Drama, Romance", "genres_pipe": "|Drama|Romance|", "keywords": "", "tags_pipe": "", "overview": "Gary is in love with Valentino. So is Mary Carmen. Their life changes when Valentino is hit with a deadly disease and is slowly dying in their hands. They tear each other off to end up re-uniting upon their love for the same man.", "text_for_embedding": "The Velocity of Gary (1999). Genres: Drama, Romance. Gary is in love with Valentino. So is Mary Carmen. Their life changes when Valentino is hit with a deadly disease and is slowly dying in their hands. They tear each other off to end up re-uniting upon their love for the same man.. Tags: "} +{"id": "54580", "title": "Mondays in the Sun", "year": 2002, "duration_min": 113, "rating": 7.1, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "spain, bar, ship, drama, friends, shipyard, peseta", "tags_pipe": "|spain|bar|ship|drama|friends|shipyard|peseta|", "overview": "After the closure of their shipyard in Northern Spain, a few former workers: Santa, José, Lino, Amador, Sergei and Reina keep in touch. They meet mainly at a bar owned by their former colleague Rico. Santa is the most superficially confident and the unofficial leader of the group. A court case hangs over him relating to a shipyard lamp he smashed during protest against the closure. José is bitter that his wife, Ana, is employed when he is not. The gap between them is widening and he is fearful that she will leave him for a co-worker. Despite arthritic legs, Ana endures night shifts at a fish factory and thinks her looks are now lost. Not everyone seems to agree including her boss. Lino, an aging family man doggedly pursuing positions beyond his qualifications. The oldest member of the group, Amador, has degenerated into alcoholism after being abandoned by his wife; maintaining an increasingly transparent pretense that his wife will soon return from holiday.", "text_for_embedding": "Mondays in the Sun (2002). Genres: Drama. After the closure of their shipyard in Northern Spain, a few former workers: Santa, José, Lino, Amador, Sergei and Reina keep in touch. They meet mainly at a bar owned by their former colleague Rico. Santa is the most superficially confident and the unofficial leader of the group. A court case hangs over him relating to a shipyard lamp he smashed during protest against the closure. José is bitter that his wife, Ana, is employed when he is not. The gap between them is widening and he is fearful that she will leave him for a co-worker. Despite arthritic legs, Ana endures night shifts at a fish factory and thinks her looks are now lost. Not everyone seems to agree including her boss. Lino, an aging family man doggedly pursuing positions beyond his qualifications. The oldest member of the group, Amador, has degenerated into alcoholism after being abandoned by his wife; maintaining an increasingly transparent pretense that his wife will soon return from holiday.. Tags: spain, bar, ship, drama, friends, shipyard, peseta"} +{"id": "52015", "title": "Stake Land", "year": 2010, "duration_min": 98, "rating": 6.2, "genres": "Drama, Horror, Action, Thriller, Science Fiction", "genres_pipe": "|Drama|Horror|Action|Thriller|Science Fiction|", "keywords": "male nudity, canada, vampire", "tags_pipe": "|male nudity|canada|vampire|", "overview": "Martin was a normal teenage boy before the country collapsed in an empty pit of economic and political disaster. A vampire epidemic has swept across what is left of the nation's abandoned towns and cities, and it's up to Mister, a death dealing, rogue vampire hunter, to get Martin safely north to Canada, the continent's New Eden.", "text_for_embedding": "Stake Land (2010). Genres: Drama, Horror, Action, Thriller, Science Fiction. Martin was a normal teenage boy before the country collapsed in an empty pit of economic and political disaster. A vampire epidemic has swept across what is left of the nation's abandoned towns and cities, and it's up to Mister, a death dealing, rogue vampire hunter, to get Martin safely north to Canada, the continent's New Eden.. Tags: male nudity, canada, vampire"} +{"id": "34941", "title": "The Last Time I Committed Suicide", "year": 1997, "duration_min": 92, "rating": 6.7, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "independent film", "tags_pipe": "|independent film|", "overview": "Neal Cassady is living the beat life during the 1940s, working at The Tire Yard and and philandering around town. However, he has visions of a happy life with kids and a white picket fence. When his girlfried, Joan, tries to kill herself he gets scared and runs away. But when Joan reappears will he take the chance at that happiness, or will he turn his back on it?", "text_for_embedding": "The Last Time I Committed Suicide (1997). Genres: Drama. Neal Cassady is living the beat life during the 1940s, working at The Tire Yard and and philandering around town. However, he has visions of a happy life with kids and a white picket fence. When his girlfried, Joan, tries to kill herself he gets scared and runs away. But when Joan reappears will he take the chance at that happiness, or will he turn his back on it?. Tags: independent film"} +{"id": "227975", "title": "Futuro Beach", "year": 2014, "duration_min": 106, "rating": 6.4, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "germany, gay, portugal, drowning, nudity, travel, brothers", "tags_pipe": "|germany|gay|portugal|drowning|nudity|travel|brothers|", "overview": "Donato fails in his attempt to save a drowning man, and meets one of the man's friends. He decides to start his life over, but pieces of his past keep coming after him.", "text_for_embedding": "Futuro Beach (2014). Genres: Drama. Donato fails in his attempt to save a drowning man, and meets one of the man's friends. He decides to start his life over, but pieces of his past keep coming after him.. Tags: germany, gay, portugal, drowning, nudity, travel, brothers"} +{"id": "60422", "title": "Another Happy Day", "year": 2011, "duration_min": 119, "rating": 6.2, "genres": "Comedy, Drama", "genres_pipe": "|Comedy|Drama|", "keywords": "", "tags_pipe": "", "overview": "A wedding at her parents' Annapolis estate hurls high-strung Lynn into the center of touchy family dynamics.", "text_for_embedding": "Another Happy Day (2011). Genres: Comedy, Drama. A wedding at her parents' Annapolis estate hurls high-strung Lynn into the center of touchy family dynamics.. Tags: "} +{"id": "81390", "title": "A Lonely Place to Die", "year": 2011, "duration_min": 99, "rating": 6.2, "genres": "Adventure, Action, Thriller, Crime", "genres_pipe": "|Adventure|Action|Thriller|Crime|", "keywords": "terror, scotland, kidnapping, nudity, wilderness, mountaineer, hiking, climbing, torture", "tags_pipe": "|terror|scotland|kidnapping|nudity|wilderness|mountaineer|hiking|climbing|torture|", "overview": "A group of five mountaineers are hiking and climbing in the Scottish Highlands when they discover a young Serbian girl buried in a small chamber in the wilderness. They become caught up in a terrifying game of cat and mouse with the kidnappers as they try to get the girl to safety.", "text_for_embedding": "A Lonely Place to Die (2011). Genres: Adventure, Action, Thriller, Crime. A group of five mountaineers are hiking and climbing in the Scottish Highlands when they discover a young Serbian girl buried in a small chamber in the wilderness. They become caught up in a terrifying game of cat and mouse with the kidnappers as they try to get the girl to safety.. Tags: terror, scotland, kidnapping, nudity, wilderness, mountaineer, hiking, climbing, torture"} +{"id": "10981", "title": "Nothing", "year": 2003, "duration_min": 90, "rating": 5.8, "genres": "Comedy, Fantasy, Science Fiction", "genres_pipe": "|Comedy|Fantasy|Science Fiction|", "keywords": "loser, bullying, leere, independent film, best friend, cowardliness", "tags_pipe": "|loser|bullying|leere|independent film|best friend|cowardliness|", "overview": "The film tells the story of two good friends who live together, Andrew (Andrew Miller), an agoraphobic travel agent who works from his home, and Dave (David Hewlett), a loser who works in an office where he is treated with contempt. Just when it seems things can't get any worse for the two, the entire world outside of their house disappears and is replaced with an endless white void.", "text_for_embedding": "Nothing (2003). Genres: Comedy, Fantasy, Science Fiction. The film tells the story of two good friends who live together, Andrew (Andrew Miller), an agoraphobic travel agent who works from his home, and Dave (David Hewlett), a loser who works in an office where he is treated with contempt. Just when it seems things can't get any worse for the two, the entire world outside of their house disappears and is replaced with an endless white void.. Tags: loser, bullying, leere, independent film, best friend, cowardliness"} +{"id": "225235", "title": "The Geographer Drank His Globe Away", "year": 2013, "duration_min": 120, "rating": 7.3, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "alcohol, adultery, river, camping, province, russia, wife, canoe, daughter, friendship, alcoholism, school, teaching, schoolboy, geography", "tags_pipe": "|alcohol|adultery|river|camping|province|russia|wife|canoe|daughter|friendship|alcoholism|school|teaching|schoolboy|geography|", "overview": "Victor Sluzhkin signs on as a teacher of geography in a secondary school in his native Perm (in the Urals) and gets lost in a haze of hard vodka, desperate love for a nymphet-like student and the stress of educating teenagers. Geographer, as the students immediately dub Sluzhkin, attempts to escape from the grueling, dull, stultifying reality of Russia's provincial life in a rafting tour to the Urals. Accompanied by wild, adventure-seeking adolescents, faced with the numerous grim surprises of the nature, Geographer is poised to find himself and his own truth.", "text_for_embedding": "The Geographer Drank His Globe Away (2013). Genres: Drama. Victor Sluzhkin signs on as a teacher of geography in a secondary school in his native Perm (in the Urals) and gets lost in a haze of hard vodka, desperate love for a nymphet-like student and the stress of educating teenagers. Geographer, as the students immediately dub Sluzhkin, attempts to escape from the grueling, dull, stultifying reality of Russia's provincial life in a rafting tour to the Urals. Accompanied by wild, adventure-seeking adolescents, faced with the numerous grim surprises of the nature, Geographer is poised to find himself and his own truth.. Tags: alcohol, adultery, river, camping, province, russia, wife, canoe, daughter, friendship, alcoholism, school, teaching, schoolboy, geography"} +{"id": "14902", "title": "1776", "year": 1972, "duration_min": 142, "rating": 7.1, "genres": "Drama, Comedy, History, Music", "genres_pipe": "|Drama|Comedy|History|Music|", "keywords": "usa, congress, musical", "tags_pipe": "|usa|congress|musical|", "overview": "The film focuses on the representatives of the Thirteen original colonies who participated in the Second Continental Congress. 1776 depicts the three months of deliberation (and, oftentimes, acrimonious debate) that led up to the signing of one of the most important documents in the History of the United States, the Declaration of Independence.", "text_for_embedding": "1776 (1972). Genres: Drama, Comedy, History, Music. The film focuses on the representatives of the Thirteen original colonies who participated in the Second Continental Congress. 1776 depicts the three months of deliberation (and, oftentimes, acrimonious debate) that led up to the signing of one of the most important documents in the History of the United States, the Declaration of Independence.. Tags: usa, congress, musical"} +{"id": "121676", "title": "Inescapable", "year": 2012, "duration_min": 93, "rating": 5.2, "genres": "Thriller, Romance", "genres_pipe": "|Thriller|Romance|", "keywords": "woman director", "tags_pipe": "|woman director|", "overview": "Twenty-five years ago Adib (Alexander Siddig, Syriana, Cairo Time), a promising young officer in the Syrian military police, suddenly left Damascus under suspicious circumstances. Abandoning the love of his life Fatima (Marisa Tomei, The Wrestler, The Ides of March), he made his way to Canada and wiped the slate clean. With a beautiful wife, two grown daughters, and a great job in Toronto, Adib is confident he s built a successful life from scratch. But when his daughter Muna suddenly disappears in Damascus, his past threatens to violently catch up to him. Teaming up with a Canadian emissary (Joshua Jackson, Fringe), Adib must now confront the turmoil he thought he left behind so many years ago in order to find Muna.", "text_for_embedding": "Inescapable (2012). Genres: Thriller, Romance. Twenty-five years ago Adib (Alexander Siddig, Syriana, Cairo Time), a promising young officer in the Syrian military police, suddenly left Damascus under suspicious circumstances. Abandoning the love of his life Fatima (Marisa Tomei, The Wrestler, The Ides of March), he made his way to Canada and wiped the slate clean. With a beautiful wife, two grown daughters, and a great job in Toronto, Adib is confident he s built a successful life from scratch. But when his daughter Muna suddenly disappears in Damascus, his past threatens to violently catch up to him. Teaming up with a Canadian emissary (Joshua Jackson, Fringe), Adib must now confront the turmoil he thought he left behind so many years ago in order to find Muna.. Tags: woman director"} +{"id": "22301", "title": "Hell's Angels", "year": 1930, "duration_min": 127, "rating": 6.1, "genres": "Action, Drama, History", "genres_pipe": "|Action|Drama|History|", "keywords": "world war i, zeppelin, royal air force, royal flying corps, dogfight, airship", "tags_pipe": "|world war i|zeppelin|royal air force|royal flying corps|dogfight|airship|", "overview": "Two brothers attending Oxford enlist with the Royal Flying Corps when World War I breaks out. Roy and Monte Rutledge have very different personalities. Monte is a freewheeling womanizer, even with his brother's girlfriend Helen. He also proves to have a yellow streak when it comes to his Night Patrol duties. Roy is made of strong moral fiber and attempts to keep his brother in line. Both volunteer for an extremely risky two man bombing mission for different reasons. Monte wants to lose his cowardly reputation and Roy seeks to protect his brother. Roy loves Helen; Helen enjoys an affair with Monte; before they leave on their mission over Germany they find her in still another man's arms. Their assignment to knock out a strategic German munitions facility is a booming success, but with a squadron of fighters bearing down on them afterwards, escape seems unlikely.", "text_for_embedding": "Hell's Angels (1930). Genres: Action, Drama, History. Two brothers attending Oxford enlist with the Royal Flying Corps when World War I breaks out. Roy and Monte Rutledge have very different personalities. Monte is a freewheeling womanizer, even with his brother's girlfriend Helen. He also proves to have a yellow streak when it comes to his Night Patrol duties. Roy is made of strong moral fiber and attempts to keep his brother in line. Both volunteer for an extremely risky two man bombing mission for different reasons. Monte wants to lose his cowardly reputation and Roy seeks to protect his brother. Roy loves Helen; Helen enjoys an affair with Monte; before they leave on their mission over Germany they find her in still another man's arms. Their assignment to knock out a strategic German munitions facility is a booming success, but with a squadron of fighters bearing down on them afterwards, escape seems unlikely.. Tags: world war i, zeppelin, royal air force, royal flying corps, dogfight, airship"} +{"id": "20065", "title": "Purple Violets", "year": 2007, "duration_min": 103, "rating": 5.7, "genres": "Comedy, Drama, Romance", "genres_pipe": "|Comedy|Drama|Romance|", "keywords": "independent film", "tags_pipe": "|independent film|", "overview": "Patti Petalson is a promising writer, but her marriage and conventional job keep her from her dream. She longs to return to her writing, especially after running into her first love Brian Callahan, a successful crime novelist. Kate is Patti's best friend since college; she's a tough-talking schoolteacher who plays therapist to all Patti's problems, while she's got a few of her own.", "text_for_embedding": "Purple Violets (2007). Genres: Comedy, Drama, Romance. Patti Petalson is a promising writer, but her marriage and conventional job keep her from her dream. She longs to return to her writing, especially after running into her first love Brian Callahan, a successful crime novelist. Kate is Patti's best friend since college; she's a tough-talking schoolteacher who plays therapist to all Patti's problems, while she's got a few of her own.. Tags: independent film"} +{"id": "257087", "title": "The Veil", "year": 2016, "duration_min": 93, "rating": 4.5, "genres": "Horror", "genres_pipe": "|Horror|", "keywords": "cult", "tags_pipe": "|cult|", "overview": "The story springs from the real-world headlines of religious cults and mass suicides. With Veil, it begins 30 years ago, when members of a religious cult known as Heaven's Veil take their own lives. The truth behind what really happened remains buried deep in the memory of the sole survivor, a five-year-old girl, who returns to the compound with a documentary crew as an adult. They soon discover something that is far more terrifying than anything they could have imagined.", "text_for_embedding": "The Veil (2016). Genres: Horror. The story springs from the real-world headlines of religious cults and mass suicides. With Veil, it begins 30 years ago, when members of a religious cult known as Heaven's Veil take their own lives. The truth behind what really happened remains buried deep in the memory of the sole survivor, a five-year-old girl, who returns to the compound with a documentary crew as an adult. They soon discover something that is far more terrifying than anything they could have imagined.. Tags: cult"} +{"id": "46420", "title": "The Loved Ones", "year": 2009, "duration_min": 84, "rating": 6.6, "genres": "Horror", "genres_pipe": "|Horror|", "keywords": "killing, high school, female killer, revenge, prom, escape, teenager", "tags_pipe": "|killing|high school|female killer|revenge|prom|escape|teenager|", "overview": "Lola Stone asked Brent Mitchell to the prom, but Brent said no, and now he's screwed. What happens when Lola doesn't get what she wants? She enlists Daddy's help to throw a prom of her own, where she is queen and Brent is king -- whether he likes it or not. THE LOVED ONES is what happens when puppy love goes horribly, violently wrong. Brent should have said yes...", "text_for_embedding": "The Loved Ones (2009). Genres: Horror. Lola Stone asked Brent Mitchell to the prom, but Brent said no, and now he's screwed. What happens when Lola doesn't get what she wants? She enlists Daddy's help to throw a prom of her own, where she is queen and Brent is king -- whether he likes it or not. THE LOVED ONES is what happens when puppy love goes horribly, violently wrong. Brent should have said yes.... Tags: killing, high school, female killer, revenge, prom, escape, teenager"} +{"id": "114635", "title": "The Helpers", "year": 2012, "duration_min": 78, "rating": 4.1, "genres": "Horror", "genres_pipe": "|Horror|", "keywords": "", "tags_pipe": "", "overview": "Seven friends from Sacramento, California head out on a documented road trip to Las Vegas. Their trip takes a very unexpected turn for the worse when their back tires mysteriously blow out. A couple miles down the road, they find a little gas station Diner/Motel, run by the most friendly, polite and \"helpful\" people. It appears that their problems are solved, but boy are they wrong! When convinced by \"The Helpers\" to stay overnight, the friends all wake up in their rooms to a new kind of gruesome and bloody terror!", "text_for_embedding": "The Helpers (2012). Genres: Horror. Seven friends from Sacramento, California head out on a documented road trip to Las Vegas. Their trip takes a very unexpected turn for the worse when their back tires mysteriously blow out. A couple miles down the road, they find a little gas station Diner/Motel, run by the most friendly, polite and \"helpful\" people. It appears that their problems are solved, but boy are they wrong! When convinced by \"The Helpers\" to stay overnight, the friends all wake up in their rooms to a new kind of gruesome and bloody terror!. Tags: "} +{"id": "251979", "title": "The Perfect Wave", "year": 2014, "duration_min": 113, "rating": 4.4, "genres": "Romance, Adventure, Drama", "genres_pipe": "|Romance|Adventure|Drama|", "keywords": "biography, christian, romance", "tags_pipe": "|biography|christian|romance|", "overview": "“The Perfect Wave” is the true story of Ian McCormack who grew up surfing the waters of New Zealand. Wanting to dive deeper, Ian sets out on a journey with his best friend that will change his life as they chase the perfect wave.", "text_for_embedding": "The Perfect Wave (2014). Genres: Romance, Adventure, Drama. “The Perfect Wave” is the true story of Ian McCormack who grew up surfing the waters of New Zealand. Wanting to dive deeper, Ian sets out on a journey with his best friend that will change his life as they chase the perfect wave.. Tags: biography, christian, romance"} +{"id": "874", "title": "A Man for All Seasons", "year": 1966, "duration_min": 120, "rating": 7.5, "genres": "Drama, History", "genres_pipe": "|Drama|History|", "keywords": "england, pope, beheading, death penalty, thomas more, protestant church, thomas cromwell, oath, henry viii", "tags_pipe": "|england|pope|beheading|death penalty|thomas more|protestant church|thomas cromwell|oath|henry viii|", "overview": "A Man for All Seasons is the filmed version of the life of Thomas More. An English man comes to Sir Thomas More to ask if he can divorce his wife since King Henry VIII has made it illegal. Sir Thomas More stands up in opposition to the King even though he knows he’s risking his own life. An award winning film from 1966.", "text_for_embedding": "A Man for All Seasons (1966). Genres: Drama, History. A Man for All Seasons is the filmed version of the life of Thomas More. An English man comes to Sir Thomas More to ask if he can divorce his wife since King Henry VIII has made it illegal. Sir Thomas More stands up in opposition to the King even though he knows he’s risking his own life. An award winning film from 1966.. Tags: england, pope, beheading, death penalty, thomas more, protestant church, thomas cromwell, oath, henry viii"} +{"id": "10774", "title": "Network", "year": 1976, "duration_min": 121, "rating": 7.7, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "corruption, sex, adultery, television, profit, nudity, power, tv ratings, murder, corporate, reporter, co-worker, meeting, news, fired", "tags_pipe": "|corruption|sex|adultery|television|profit|nudity|power|tv ratings|murder|corporate|reporter|co-worker|meeting|news|fired|", "overview": "A TV network cynically exploits a deranged ex-TV anchor's ravings and revelations about the media for their own profit.", "text_for_embedding": "Network (1976). Genres: Drama. A TV network cynically exploits a deranged ex-TV anchor's ravings and revelations about the media for their own profit.. Tags: corruption, sex, adultery, television, profit, nudity, power, tv ratings, murder, corporate, reporter, co-worker, meeting, news, fired"} +{"id": "770", "title": "Gone with the Wind", "year": 1939, "duration_min": 238, "rating": 7.7, "genres": "Drama, Romance, War", "genres_pipe": "|Drama|Romance|War|", "keywords": "life and death, civil war, southern usa, loss of child, marriage proposal, atlanta, luxury, plantation, typhus, business woman, marriage crisis", "tags_pipe": "|life and death|civil war|southern usa|loss of child|marriage proposal|atlanta|luxury|plantation|typhus|business woman|marriage crisis|", "overview": "An American classic in which a manipulative woman and a roguish man carry on a turbulent love affair in the American south during the Civil War and Reconstruction.", "text_for_embedding": "Gone with the Wind (1939). Genres: Drama, Romance, War. An American classic in which a manipulative woman and a roguish man carry on a turbulent love affair in the American south during the Civil War and Reconstruction.. Tags: life and death, civil war, southern usa, loss of child, marriage proposal, atlanta, luxury, plantation, typhus, business woman, marriage crisis"} +{"id": "266102", "title": "Desert Dancer", "year": 2014, "duration_min": 98, "rating": 6.5, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "dance, ban from profession, biography, iran, oppression, tehran iran", "tags_pipe": "|dance|ban from profession|biography|iran|oppression|tehran iran|", "overview": "Inspirational true story of Iranian dancer Afshin Ghaffarian, who risked his life for his dream to become a dancer despite a nationwide dancing ban.", "text_for_embedding": "Desert Dancer (2014). Genres: Drama. Inspirational true story of Iranian dancer Afshin Ghaffarian, who risked his life for his dream to become a dancer despite a nationwide dancing ban.. Tags: dance, ban from profession, biography, iran, oppression, tehran iran"} +{"id": "29715", "title": "Major Dundee", "year": 1965, "duration_min": 123, "rating": 6.2, "genres": "War, Western", "genres_pipe": "|War|Western|", "keywords": "mexico, prisoners of war, apache, raid, confederate", "tags_pipe": "|mexico|prisoners of war|apache|raid|confederate|", "overview": "During the last winter of the Civil War, cavalry officer Amos Dundee leads a contentious troop of Army regulars, Confederate prisoners and scouts on an expedition into Mexico to destroy a band of Apaches who have been raiding U.S. bases in Texas.", "text_for_embedding": "Major Dundee (1965). Genres: War, Western. During the last winter of the Civil War, cavalry officer Amos Dundee leads a contentious troop of Army regulars, Confederate prisoners and scouts on an expedition into Mexico to destroy a band of Apaches who have been raiding U.S. bases in Texas.. Tags: mexico, prisoners of war, apache, raid, confederate"} +{"id": "25209", "title": "Annie Get Your Gun", "year": 1950, "duration_min": 107, "rating": 7.3, "genres": "Action, Comedy, Music, Romance, Western", "genres_pipe": "|Action|Comedy|Music|Romance|Western|", "keywords": "musical, annie oakley, sharpshooter", "tags_pipe": "|musical|annie oakley|sharpshooter|", "overview": "This film adaptation of Irving Berlin's classic musical stars Betty Hutton as gunslinger Annie Oakley, who romances fellow sharpshooter Frank Butler (Howard Keel) as they travel with Buffalo Bill's Wild West Show. Previously off target when it comes to love, Annie proves you can get a man with a gun in this battle-of-the-sexes extravaganza, which features timeless numbers like \"Anything You Can Do\" and \"There's No Business Like Show Business.\"", "text_for_embedding": "Annie Get Your Gun (1950). Genres: Action, Comedy, Music, Romance, Western. This film adaptation of Irving Berlin's classic musical stars Betty Hutton as gunslinger Annie Oakley, who romances fellow sharpshooter Frank Butler (Howard Keel) as they travel with Buffalo Bill's Wild West Show. Previously off target when it comes to love, Annie proves you can get a man with a gun in this battle-of-the-sexes extravaganza, which features timeless numbers like \"Anything You Can Do\" and \"There's No Business Like Show Business.\". Tags: musical, annie oakley, sharpshooter"} +{"id": "37495", "title": "Four Lions", "year": 2010, "duration_min": 101, "rating": 7.0, "genres": "Comedy, Crime, Drama", "genres_pipe": "|Comedy|Crime|Drama|", "keywords": "terrorism, british farce", "tags_pipe": "|terrorism|british farce|", "overview": "Four Lions tells the story of a group of British jihadists who push their abstract dreams of glory to the breaking point. As the wheels fly off, and their competing ideologies clash, what emerges is an emotionally engaging (and entirely plausible) farce. In a storm of razor-sharp verbal jousting and large-scale set pieces, Four Lions is a comic tour de force; it shows that-while terrorism is about ideology-it can also be about idiots.", "text_for_embedding": "Four Lions (2010). Genres: Comedy, Crime, Drama. Four Lions tells the story of a group of British jihadists who push their abstract dreams of glory to the breaking point. As the wheels fly off, and their competing ideologies clash, what emerges is an emotionally engaging (and entirely plausible) farce. In a storm of razor-sharp verbal jousting and large-scale set pieces, Four Lions is a comic tour de force; it shows that-while terrorism is about ideology-it can also be about idiots.. Tags: terrorism, british farce"} +{"id": "29262", "title": "The House of Sand", "year": 2005, "duration_min": 115, "rating": 6.7, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "brazil, desert, 1910s", "tags_pipe": "|brazil|desert|1910s|", "overview": "A woman is taken along with her mother in 1910 to a far-away desert by her husband, and after his passing, is forced to spend the next 59 years of her life hopelessly trying to escape it.", "text_for_embedding": "The House of Sand (2005). Genres: Drama. A woman is taken along with her mother in 1910 to a far-away desert by her husband, and after his passing, is forced to spend the next 59 years of her life hopelessly trying to escape it.. Tags: brazil, desert, 1910s"} +{"id": "34769", "title": "Defendor", "year": 2009, "duration_min": 101, "rating": 6.5, "genres": "Drama, Action, Comedy, Crime", "genres_pipe": "|Drama|Action|Comedy|Crime|", "keywords": "crime fighter, delusion, superhero", "tags_pipe": "|crime fighter|delusion|superhero|", "overview": "A crooked cop, a mob boss and the young girl they abuse are the denizens of a city's criminal underworld. It's a world that ordinary Arthur Poppington doesn't understand and doesn't belong in, but is committed to fighting when he changes into a vigilante super-hero of his own making, Defendor. With no power other than courage Defendor takes to the streets to protect the city's innocents.", "text_for_embedding": "Defendor (2009). Genres: Drama, Action, Comedy, Crime. A crooked cop, a mob boss and the young girl they abuse are the denizens of a city's criminal underworld. It's a world that ordinary Arthur Poppington doesn't understand and doesn't belong in, but is committed to fighting when he changes into a vigilante super-hero of his own making, Defendor. With no power other than courage Defendor takes to the streets to protect the city's innocents.. Tags: crime fighter, delusion, superhero"} +{"id": "35032", "title": "The Pirate", "year": 1948, "duration_min": 102, "rating": 6.6, "genres": "Music, Romance", "genres_pipe": "|Music|Romance|", "keywords": "musical, pirate", "tags_pipe": "|musical|pirate|", "overview": "A girl is engaged to the local richman, but meanwhile she has dreams about the legendary pirate Macoco. A traveling singer falls in love with her and to impress her he poses as the pirate.", "text_for_embedding": "The Pirate (1948). Genres: Music, Romance. A girl is engaged to the local richman, but meanwhile she has dreams about the legendary pirate Macoco. A traveling singer falls in love with her and to impress her he poses as the pirate.. Tags: musical, pirate"} +{"id": "5178", "title": "The Good Heart", "year": 2009, "duration_min": 95, "rating": 6.0, "genres": "Drama, Comedy, Romance", "genres_pipe": "|Drama|Comedy|Romance|", "keywords": "san francisco, homeless person, bar, suicide attempt, heart attack, friendship, hospital", "tags_pipe": "|san francisco|homeless person|bar|suicide attempt|heart attack|friendship|hospital|", "overview": "Brian Cox stars as Jacques, the curmudgeonly owner of a gritty New York dive bar that serves as home to a motley assortment of professional drinkers. Jacques is determinedly drinking and smoking himself to death when he meets Lucas (Dano), a homeless young man who has already given up on life. Determined to keep his legacy alive, Jacques deems Lucas is a fitting heir and takes him under his wing, schooling him in the male-centric laws of his alcoholic clubhouse: no new customers, no fraternizing with customers and, absolutely no women. Lucas is a quick study, but their friendship is put to the test when the distraught and beautiful April (Isild Le Besco) shows up at the bar seeking shelter, and Lucas insists they help her out.", "text_for_embedding": "The Good Heart (2009). Genres: Drama, Comedy, Romance. Brian Cox stars as Jacques, the curmudgeonly owner of a gritty New York dive bar that serves as home to a motley assortment of professional drinkers. Jacques is determinedly drinking and smoking himself to death when he meets Lucas (Dano), a homeless young man who has already given up on life. Determined to keep his legacy alive, Jacques deems Lucas is a fitting heir and takes him under his wing, schooling him in the male-centric laws of his alcoholic clubhouse: no new customers, no fraternizing with customers and, absolutely no women. Lucas is a quick study, but their friendship is put to the test when the distraught and beautiful April (Isild Le Besco) shows up at the bar seeking shelter, and Lucas insists they help her out.. Tags: san francisco, homeless person, bar, suicide attempt, heart attack, friendship, hospital"} +{"id": "8618", "title": "The History Boys", "year": 2006, "duration_min": 109, "rating": 6.6, "genres": "Comedy, Drama", "genres_pipe": "|Comedy|Drama|", "keywords": "gay, becoming an adult, education, exam, scholarship, oxford, cambridge, history, based on play, student, boys' school, teachers and students, 1980s", "tags_pipe": "|gay|becoming an adult|education|exam|scholarship|oxford|cambridge|history|based on play|student|boys' school|teachers and students|1980s|", "overview": "The story of an unruly class of bright, funny history students at a Yorkshire grammar school in pursuit of an undergraduate place at Oxford or Cambridge. Bounced between their maverick English master, a young and shrewd teacher hired to up their test scores, a grossly out-numbered history teacher, and a headmaster obsessed with results, the boys attempt to pass.", "text_for_embedding": "The History Boys (2006). Genres: Comedy, Drama. The story of an unruly class of bright, funny history students at a Yorkshire grammar school in pursuit of an undergraduate place at Oxford or Cambridge. Bounced between their maverick English master, a young and shrewd teacher hired to up their test scores, a grossly out-numbered history teacher, and a headmaster obsessed with results, the boys attempt to pass.. Tags: gay, becoming an adult, education, exam, scholarship, oxford, cambridge, history, based on play, student, boys' school, teachers and students, 1980s"} +{"id": "3116", "title": "Midnight Cowboy", "year": 1969, "duration_min": 113, "rating": 7.4, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "shower", "tags_pipe": "|shower|", "overview": "A naive male prostitute and his sickly friend struggle to survive on the streets of New York City.", "text_for_embedding": "Midnight Cowboy (1969). Genres: Drama. A naive male prostitute and his sickly friend struggle to survive on the streets of New York City.. Tags: shower"} +{"id": "9427", "title": "The Full Monty", "year": 1997, "duration_min": 91, "rating": 6.8, "genres": "Comedy", "genres_pipe": "|Comedy|", "keywords": "suicide attempt, striptease, steel worker, repossession, male stripper", "tags_pipe": "|suicide attempt|striptease|steel worker|repossession|male stripper|", "overview": "Sheffield, England. Gaz, a jobless steelworker in need of quick cash persuades his mates to bare it all in a one-night-only strip show.", "text_for_embedding": "The Full Monty (1997). Genres: Comedy. Sheffield, England. Gaz, a jobless steelworker in need of quick cash persuades his mates to bare it all in a one-night-only strip show.. Tags: suicide attempt, striptease, steel worker, repossession, male stripper"} +{"id": "813", "title": "Airplane!", "year": 1980, "duration_min": 88, "rating": 7.1, "genres": "Comedy", "genres_pipe": "|Comedy|", "keywords": "chicago, alcohol, cataclysm, guitar, medicine, taxi driver, passenger, saxophone, stewardess, pilot, airplane, fear of flying, air controller, landing, autopilot", "tags_pipe": "|chicago|alcohol|cataclysm|guitar|medicine|taxi driver|passenger|saxophone|stewardess|pilot|airplane|fear of flying|air controller|landing|autopilot|", "overview": "Alcoholic pilot, Ted Striker has developed a fear of flying due to wartime trauma, but nevertheless boards a passenger jet in an attempt to woo back his stewardess girlfriend. Food poisoning decimates the passengers and crew, leaving it up to Striker to land the plane with the help of a glue-sniffing air traffic controller and Striker's vengeful former Air Force captain, who must both talk him down.", "text_for_embedding": "Airplane! (1980). Genres: Comedy. Alcoholic pilot, Ted Striker has developed a fear of flying due to wartime trauma, but nevertheless boards a passenger jet in an attempt to woo back his stewardess girlfriend. Food poisoning decimates the passengers and crew, leaving it up to Striker to land the plane with the help of a glue-sniffing air traffic controller and Striker's vengeful former Air Force captain, who must both talk him down.. Tags: chicago, alcohol, cataclysm, guitar, medicine, taxi driver, passenger, saxophone, stewardess, pilot, airplane, fear of flying, air controller, landing, autopilot"} +{"id": "352978", "title": "Chain of Command", "year": 2015, "duration_min": 88, "rating": 5.3, "genres": "Thriller, Adventure, Action", "genres_pipe": "|Thriller|Adventure|Action|", "keywords": "brother brother relationship, corruption, revenge, government conspiracy", "tags_pipe": "|brother brother relationship|corruption|revenge|government conspiracy|", "overview": "After finding his brother murdered after returning from duty, Webster searches for the perpetrators, but discovers a conspiracy that cuts deep inside the U.S. government.", "text_for_embedding": "Chain of Command (2015). Genres: Thriller, Adventure, Action. After finding his brother murdered after returning from duty, Webster searches for the perpetrators, but discovers a conspiracy that cuts deep inside the U.S. government.. Tags: brother brother relationship, corruption, revenge, government conspiracy"} +{"id": "10634", "title": "Friday", "year": 1995, "duration_min": 91, "rating": 7.0, "genres": "Comedy", "genres_pipe": "|Comedy|", "keywords": "rap music, parents kids relationship, rapper, job", "tags_pipe": "|rap music|parents kids relationship|rapper|job|", "overview": "Craig and Smokey are two guys in Los Angeles hanging out on their porch on a Friday afternoon, smoking and drinking, looking for something to do.", "text_for_embedding": "Friday (1995). Genres: Comedy. Craig and Smokey are two guys in Los Angeles hanging out on their porch on a Friday afternoon, smoking and drinking, looking for something to do.. Tags: rap music, parents kids relationship, rapper, job"} +{"id": "9516", "title": "Menace II Society", "year": 1993, "duration_min": 97, "rating": 7.2, "genres": "Drama, Action, Crime", "genres_pipe": "|Drama|Action|Crime|", "keywords": "black people, drug dealer, ghetto, weapon, delinquency, los angeles", "tags_pipe": "|black people|drug dealer|ghetto|weapon|delinquency|los angeles|", "overview": "Menace II Society is a coming of age tale detailing the summer after its protagonist Caine (Tyrin Turner) graduates from high school. This is Caine's story, which details real life in today's tough inner city.", "text_for_embedding": "Menace II Society (1993). Genres: Drama, Action, Crime. Menace II Society is a coming of age tale detailing the summer after its protagonist Caine (Tyrin Turner) graduates from high school. This is Caine's story, which details real life in today's tough inner city.. Tags: black people, drug dealer, ghetto, weapon, delinquency, los angeles"} +{"id": "16288", "title": "Creepshow 2", "year": 1987, "duration_min": 92, "rating": 5.9, "genres": "Horror", "genres_pipe": "|Horror|", "keywords": "lake, anthology, revenge, murder, blob, gore, hitchhiker, zombie, hit and run, horror anthology", "tags_pipe": "|lake|anthology|revenge|murder|blob|gore|hitchhiker|zombie|hit and run|horror anthology|", "overview": "EC Comics-inspired weirdness returns with three tales. In the first, a wooden statue of a Native American comes to life...to exact vengeance on the murderer of his elderly owners. In the second, four teens are stranded on a raft on a lake with a blob that is hungry. And in the third, a hit and run woman is terrorized by the hitchhiker she accidentally killed...or did she really kill him?", "text_for_embedding": "Creepshow 2 (1987). Genres: Horror. EC Comics-inspired weirdness returns with three tales. In the first, a wooden statue of a Native American comes to life...to exact vengeance on the murderer of his elderly owners. In the second, four teens are stranded on a raft on a lake with a blob that is hungry. And in the third, a hit and run woman is terrorized by the hitchhiker she accidentally killed...or did she really kill him?. Tags: lake, anthology, revenge, murder, blob, gore, hitchhiker, zombie, hit and run, horror anthology"} +{"id": "23330", "title": "The Ballad of Cable Hogue", "year": 1970, "duration_min": 121, "rating": 6.9, "genres": "Action, Comedy, Western", "genres_pipe": "|Action|Comedy|Western|", "keywords": "prostitute, homeless person, stagecoach, reverend, way station", "tags_pipe": "|prostitute|homeless person|stagecoach|reverend|way station|", "overview": "Double-crossed and left without water in the desert, Cable Hogue is saved when he finds a spring. It is in just the right spot for a much needed rest stop on the local stagecoach line, and Hogue uses this to his advantage. He builds a house and makes money off the stagecoach passengers. Hildy, a prostitute from the nearest town, moves in with him. Hogue has everything going his way until the advent of the automobile ends the era of the stagecoach.", "text_for_embedding": "The Ballad of Cable Hogue (1970). Genres: Action, Comedy, Western. Double-crossed and left without water in the desert, Cable Hogue is saved when he finds a spring. It is in just the right spot for a much needed rest stop on the local stagecoach line, and Hogue uses this to his advantage. He builds a house and makes money off the stagecoach passengers. Hildy, a prostitute from the nearest town, moves in with him. Hogue has everything going his way until the advent of the automobile ends the era of the stagecoach.. Tags: prostitute, homeless person, stagecoach, reverend, way station"} +{"id": "18900", "title": "In Cold Blood", "year": 1967, "duration_min": 134, "rating": 7.4, "genres": "Crime, Drama", "genres_pipe": "|Crime|Drama|", "keywords": "murder, true crime, farmer", "tags_pipe": "|murder|true crime|farmer|", "overview": "A 1967 film based on Truman Capote's book of the same name. After a botched robbery results in the brutal murder of a rural family, two drifters elude police, in the end coming to terms with their own mortality and the repercussions of their vile atrocity.", "text_for_embedding": "In Cold Blood (1967). Genres: Crime, Drama. A 1967 film based on Truman Capote's book of the same name. After a botched robbery results in the brutal murder of a rural family, two drifters elude police, in the end coming to terms with their own mortality and the repercussions of their vile atrocity.. Tags: murder, true crime, farmer"} +{"id": "27029", "title": "The Nun's Story", "year": 1959, "duration_min": 149, "rating": 7.4, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "nurse, missionary, nun, belgium, sanitarium, female protagonist, hospital, tuberculosis, congo, convent, thinness, obedience", "tags_pipe": "|nurse|missionary|nun|belgium|sanitarium|female protagonist|hospital|tuberculosis|congo|convent|thinness|obedience|", "overview": "Gabrielle Van Der Mal gave up everything to become a nun. But her faith and her vows are forever being tested: first in the missionary Congo hospital where she assists the brilliant and handsome Dr. Fortunati and then at the mother house in France when World War II has broken out and the nuns are forbidden by the order to take sides.", "text_for_embedding": "The Nun's Story (1959). Genres: Drama. Gabrielle Van Der Mal gave up everything to become a nun. But her faith and her vows are forever being tested: first in the missionary Congo hospital where she assists the brilliant and handsome Dr. Fortunati and then at the mother house in France when World War II has broken out and the nuns are forbidden by the order to take sides.. Tags: nurse, missionary, nun, belgium, sanitarium, female protagonist, hospital, tuberculosis, congo, convent, thinness, obedience"} +{"id": "26268", "title": "Harper", "year": 1966, "duration_min": 121, "rating": 6.2, "genres": "Action, Drama, Thriller, Crime, Mystery", "genres_pipe": "|Action|Drama|Thriller|Crime|Mystery|", "keywords": "private eye, lew harper", "tags_pipe": "|private eye|lew harper|", "overview": "Harper is a cynical private eye in the best tradition of Bogart. He even has Bogie's Baby hiring him to find her missing husband, getting involved along the way with an assortment of unsavory characters and an illegal-alien smuggling ring.", "text_for_embedding": "Harper (1966). Genres: Action, Drama, Thriller, Crime, Mystery. Harper is a cynical private eye in the best tradition of Bogart. He even has Bogie's Baby hiring him to find her missing husband, getting involved along the way with an assortment of unsavory characters and an illegal-alien smuggling ring.. Tags: private eye, lew harper"} +{"id": "573", "title": "Frenzy", "year": 1972, "duration_min": 116, "rating": 7.1, "genres": "Crime, Drama, Mystery, Thriller", "genres_pipe": "|Crime|Drama|Mystery|Thriller|", "keywords": "london england, rape, police, suspense, serial killer", "tags_pipe": "|london england|rape|police|suspense|serial killer|", "overview": "A serial murderer is strangling women with a necktie. The London police have a suspect, but he is the wrong man.", "text_for_embedding": "Frenzy (1972). Genres: Crime, Drama, Mystery, Thriller. A serial murderer is strangling women with a necktie. The London police have a suspect, but he is the wrong man.. Tags: london england, rape, police, suspense, serial killer"} +{"id": "310131", "title": "The Witch", "year": 2016, "duration_min": 92, "rating": 6.3, "genres": "Mystery, Horror", "genres_pipe": "|Mystery|Horror|", "keywords": "witch, new england, 17th century", "tags_pipe": "|witch|new england|17th century|", "overview": "New England in the 1630s: William and Katherine lead a devout Christian life with five children, homesteading on the edge of an impassable wilderness. When their newborn son vanishes and crops fail, the family turns on one another. Beyond their worst fears, a supernatural evil lurks in the nearby wood.", "text_for_embedding": "The Witch (2016). Genres: Mystery, Horror. New England in the 1630s: William and Katherine lead a devout Christian life with five children, homesteading on the edge of an impassable wilderness. When their newborn son vanishes and crops fail, the family turns on one another. Beyond their worst fears, a supernatural evil lurks in the nearby wood.. Tags: witch, new england, 17th century"} +{"id": "40505", "title": "I Got the Hook Up", "year": 1998, "duration_min": 93, "rating": 5.4, "genres": "Action, Comedy", "genres_pipe": "|Action|Comedy|", "keywords": "", "tags_pipe": "", "overview": "Two broke buddies feel lucky when they come upon a truckload of cellular phones and begin selling them out of the back of their van. Trouble arises though, when the phones develop faults. The two friends then not only have to deal with unsatisfied customers but also the FBI.", "text_for_embedding": "I Got the Hook Up (1998). Genres: Action, Comedy. Two broke buddies feel lucky when they come upon a truckload of cellular phones and begin selling them out of the back of their van. Trouble arises though, when the phones develop faults. The two friends then not only have to deal with unsatisfied customers but also the FBI.. Tags: "} +{"id": "11363", "title": "She's the One", "year": 1996, "duration_min": 96, "rating": 5.7, "genres": "Comedy, Romance", "genres_pipe": "|Comedy|Romance|", "keywords": "brother brother relationship, taxi, ex-girlfriend, love of one's life, bride, broker, independent film, wedding", "tags_pipe": "|brother brother relationship|taxi|ex-girlfriend|love of one's life|bride|broker|independent film|wedding|", "overview": "Mickey, a free-spirited New York cabbie, and Francis, a materialistic Wall Street stockbroker, are extremely competitive and confused about women as a result of their father's influence. Though they disagree about everything, they have one thing in common: Mickey's ex-fiance Heather is Francis's secret love. Though both brothers have beautiful wives, Heather triggers their longtime sibling rivalry", "text_for_embedding": "She's the One (1996). Genres: Comedy, Romance. Mickey, a free-spirited New York cabbie, and Francis, a materialistic Wall Street stockbroker, are extremely competitive and confused about women as a result of their father's influence. Though they disagree about everything, they have one thing in common: Mickey's ex-fiance Heather is Francis's secret love. Though both brothers have beautiful wives, Heather triggers their longtime sibling rivalry. Tags: brother brother relationship, taxi, ex-girlfriend, love of one's life, bride, broker, independent film, wedding"} +{"id": "3033", "title": "Gods and Monsters", "year": 1998, "duration_min": 105, "rating": 6.8, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "gay, film director, dying and death, biography, homosexuality, author, lgbt elderly", "tags_pipe": "|gay|film director|dying and death|biography|homosexuality|author|lgbt elderly|", "overview": "It's 1957, and Whale's heyday as the director of \"Frankenstein,\" \"Bride of Frankenstein\" and \"The Invisible Man\" is long behind him. Retired and a semi-recluse, he lives his days accompanied only by images from his past. When his dour housekeeper, Hannah, hires a handsome young gardener, the flamboyant director and simple yard man develop an unlikely friendship, which will change them forever.", "text_for_embedding": "Gods and Monsters (1998). Genres: Drama. It's 1957, and Whale's heyday as the director of \"Frankenstein,\" \"Bride of Frankenstein\" and \"The Invisible Man\" is long behind him. Retired and a semi-recluse, he lives his days accompanied only by images from his past. When his dour housekeeper, Hannah, hires a handsome young gardener, the flamboyant director and simple yard man develop an unlikely friendship, which will change them forever.. Tags: gay, film director, dying and death, biography, homosexuality, author, lgbt elderly"} +{"id": "25376", "title": "The Secret in Their Eyes", "year": 2009, "duration_min": 129, "rating": 7.8, "genres": "Crime, Drama, Mystery, Romance", "genres_pipe": "|Crime|Drama|Mystery|Romance|", "keywords": "rape, secret, writing, homicide, kidnapping, passion, suspect, investigation, police, partner, murder, tension, argentina, justice, eyes", "tags_pipe": "|rape|secret|writing|homicide|kidnapping|passion|suspect|investigation|police|partner|murder|tension|argentina|justice|eyes|", "overview": "A retired legal counselor writes a novel hoping to find closure for one of his past unresolved homicide cases and for his unreciprocated love with his superior - both of which still haunt him decades later.", "text_for_embedding": "The Secret in Their Eyes (2009). Genres: Crime, Drama, Mystery, Romance. A retired legal counselor writes a novel hoping to find closure for one of his past unresolved homicide cases and for his unreciprocated love with his superior - both of which still haunt him decades later.. Tags: rape, secret, writing, homicide, kidnapping, passion, suspect, investigation, police, partner, murder, tension, argentina, justice, eyes"} +{"id": "22007", "title": "Train", "year": 2008, "duration_min": 94, "rating": 4.8, "genres": "Horror, Thriller", "genres_pipe": "|Horror|Thriller|", "keywords": "", "tags_pipe": "", "overview": "This new Train tells the tale of an American wrestling team who board a train that just so happens to be used as a supermarket for organ harvesters.", "text_for_embedding": "Train (2008). Genres: Horror, Thriller. This new Train tells the tale of an American wrestling team who board a train that just so happens to be used as a supermarket for organ harvesters.. Tags: "} +{"id": "765", "title": "Evil Dead II", "year": 1987, "duration_min": 84, "rating": 7.6, "genres": "Horror, Comedy, Fantasy", "genres_pipe": "|Horror|Comedy|Fantasy|", "keywords": "deer, blood splatter, tape recorder, chainsaw, spirit, violence, over the top, shot in the arm, book of the dead, evil dead, eyeball, necronomicon, tarmac, meat cleaver, shot through a wall", "tags_pipe": "|deer|blood splatter|tape recorder|chainsaw|spirit|violence|over the top|shot in the arm|book of the dead|evil dead|eyeball|necronomicon|tarmac|meat cleaver|shot through a wall|", "overview": "Ash Williams and his girlfriend Linda find a log cabin in the woods with a voice recording from an archeologist who had recorded himself reciting ancient chants from “The Book of the Dead.” As they play the recording an evil power is unleashed taking over Linda’s body.", "text_for_embedding": "Evil Dead II (1987). Genres: Horror, Comedy, Fantasy. Ash Williams and his girlfriend Linda find a log cabin in the woods with a voice recording from an archeologist who had recorded himself reciting ancient chants from “The Book of the Dead.” As they play the recording an evil power is unleashed taking over Linda’s body.. Tags: deer, blood splatter, tape recorder, chainsaw, spirit, violence, over the top, shot in the arm, book of the dead, evil dead, eyeball, necronomicon, tarmac, meat cleaver, shot through a wall"} +{"id": "10615", "title": "Pootie Tang", "year": 2001, "duration_min": 81, "rating": 5.4, "genres": "Action, Comedy", "genres_pipe": "|Action|Comedy|", "keywords": "ladykiller, musical, belt, police officer, drug lord", "tags_pipe": "|ladykiller|musical|belt|police officer|drug lord|", "overview": "Pootie Tang, the musician/actor/folk hero of the ghetto, is chronicled from his early childhood to his battles against the evil Corporate America, who try to steal his magic belt and make him sell out by endorsing addictive products to his people. Pootie must learn to find himself and defeat the evil corporation for all the young black children of America, supatime.", "text_for_embedding": "Pootie Tang (2001). Genres: Action, Comedy. Pootie Tang, the musician/actor/folk hero of the ghetto, is chronicled from his early childhood to his battles against the evil Corporate America, who try to steal his magic belt and make him sell out by endorsing addictive products to his people. Pootie must learn to find himself and defeat the evil corporation for all the young black children of America, supatime.. Tags: ladykiller, musical, belt, police officer, drug lord"} +{"id": "205321", "title": "Sharknado", "year": 2013, "duration_min": 86, "rating": 3.8, "genres": "TV Movie, Horror", "genres_pipe": "|TV Movie|Horror|", "keywords": "california, helicopter, beach, tornado, hurricane, attack, blood, chainsaw, storm, explosion, danger, shark, tv movie, flood", "tags_pipe": "|california|helicopter|beach|tornado|hurricane|attack|blood|chainsaw|storm|explosion|danger|shark|tv movie|flood|", "overview": "A freak hurricane hits Los Angeles, causing man-eating sharks to be scooped up in tornadoes and flooding the city with shark-infested seawater. Surfer and bar-owner Fin sets out with his friends Baz and Nova to rescue his estranged wife April and teenage daughter Claudia", "text_for_embedding": "Sharknado (2013). Genres: TV Movie, Horror. A freak hurricane hits Los Angeles, causing man-eating sharks to be scooped up in tornadoes and flooding the city with shark-infested seawater. Surfer and bar-owner Fin sets out with his friends Baz and Nova to rescue his estranged wife April and teenage daughter Claudia. Tags: california, helicopter, beach, tornado, hurricane, attack, blood, chainsaw, storm, explosion, danger, shark, tv movie, flood"} +{"id": "89540", "title": "The Other Conquest", "year": 1999, "duration_min": 105, "rating": 5.4, "genres": "Drama, Foreign", "genres_pipe": "|Drama|Foreign|", "keywords": "female nudity, pagan, aztec indian", "tags_pipe": "|female nudity|pagan|aztec indian|", "overview": "The film is a drama about the aftermath of the 1520s Spanish Conquest of Mexico told from the perspective of the indigenous Aztec people. It explores the social, religious, and psychological changes brought about by a historical process of colonization that both defined the American continent and is also highly reminiscent of today’s neocolonialism.", "text_for_embedding": "The Other Conquest (1999). Genres: Drama, Foreign. The film is a drama about the aftermath of the 1520s Spanish Conquest of Mexico told from the perspective of the indigenous Aztec people. It explores the social, religious, and psychological changes brought about by a historical process of colonization that both defined the American continent and is also highly reminiscent of today’s neocolonialism.. Tags: female nudity, pagan, aztec indian"} +{"id": "46146", "title": "Troll Hunter", "year": 2010, "duration_min": 103, "rating": 6.7, "genres": "Fantasy, Horror", "genres_pipe": "|Fantasy|Horror|", "keywords": "hunter, mountains, wilderness, adventure, forest, secret government organization, hunting trip, wildlife, conspiracy, troll, mockumentary, found footage, aftercreditsstinger", "tags_pipe": "|hunter|mountains|wilderness|adventure|forest|secret government organization|hunting trip|wildlife|conspiracy|troll|mockumentary|found footage|aftercreditsstinger|", "overview": "A group of students investigates a series of mysterious bear killings, but learns that there are much more dangerous things going on. They start to follow a mysterious hunter, learning that he is actually a troll hunter.", "text_for_embedding": "Troll Hunter (2010). Genres: Fantasy, Horror. A group of students investigates a series of mysterious bear killings, but learns that there are much more dangerous things going on. They start to follow a mysterious hunter, learning that he is actually a troll hunter.. Tags: hunter, mountains, wilderness, adventure, forest, secret government organization, hunting trip, wildlife, conspiracy, troll, mockumentary, found footage, aftercreditsstinger"} +{"id": "38007", "title": "Ira & Abby", "year": 2006, "duration_min": 104, "rating": 5.8, "genres": "Comedy, Romance", "genres_pipe": "|Comedy|Romance|", "keywords": "independent film", "tags_pipe": "|independent film|", "overview": "A neurotic, young psychology student, with low self-esteem, has a chance encounter with a free-spirited, extremely gregarious woman who works at the Paris Health Club in New York City, and who suggests that they immediately get married to see how it will work out. Both of the student's parents are analysts, and they provide the happy couple with a gift certificate for a year of marriage counseling as a wedding present.", "text_for_embedding": "Ira & Abby (2006). Genres: Comedy, Romance. A neurotic, young psychology student, with low self-esteem, has a chance encounter with a free-spirited, extremely gregarious woman who works at the Paris Health Club in New York City, and who suggests that they immediately get married to see how it will work out. Both of the student's parents are analysts, and they provide the happy couple with a gift certificate for a year of marriage counseling as a wedding present.. Tags: independent film"} +{"id": "14256", "title": "Winter Passing", "year": 2006, "duration_min": 98, "rating": 6.7, "genres": "Comedy, Drama", "genres_pipe": "|Comedy|Drama|", "keywords": "independent film, book editor", "tags_pipe": "|independent film|book editor|", "overview": "Actress Reese Holden has been offered a small fortune by a book editor if she can secure for publication the love letters that her father, a reclusive novelist, wrote to her mother, who has since passed away. Returning to Michigan, Reese finds that an ex-grad student and a would-be musician have moved in with her father, who cares more about his new friends than he does about his own health and well-being.", "text_for_embedding": "Winter Passing (2006). Genres: Comedy, Drama. Actress Reese Holden has been offered a small fortune by a book editor if she can secure for publication the love letters that her father, a reclusive novelist, wrote to her mother, who has since passed away. Returning to Michigan, Reese finds that an ex-grad student and a would-be musician have moved in with her father, who cares more about his new friends than he does about his own health and well-being.. Tags: independent film, book editor"} +{"id": "540", "title": "D.E.B.S.", "year": 2004, "duration_min": 91, "rating": 5.6, "genres": "Action", "genres_pipe": "|Action|", "keywords": "coming out, covert operation, lesbian, female protagonist, in the closet, based on short film, lgbt, metrosexual, subversion, female agent, schoolgirl uniform, punk rocker, lip synching, plaid, thesis", "tags_pipe": "|coming out|covert operation|lesbian|female protagonist|in the closet|based on short film|lgbt|metrosexual|subversion|female agent|schoolgirl uniform|punk rocker|lip synching|plaid|thesis|", "overview": "The star of a team of teenage crime fighters falls for the alluring villainess she must bring to justice.", "text_for_embedding": "D.E.B.S. (2004). Genres: Action. The star of a team of teenage crime fighters falls for the alluring villainess she must bring to justice.. Tags: coming out, covert operation, lesbian, female protagonist, in the closet, based on short film, lgbt, metrosexual, subversion, female agent, schoolgirl uniform, punk rocker, lip synching, plaid, thesis"} +{"id": "370464", "title": "The Masked Saint", "year": 2016, "duration_min": 111, "rating": 2.9, "genres": "Crime, Action", "genres_pipe": "|Crime|Action|", "keywords": "pastor, based on true story, wrestler", "tags_pipe": "|pastor|based on true story|wrestler|", "overview": "The journey of a professional wrestler who becomes a small town pastor and moonlights as a masked vigilante fighting injustice. While facing crises at home and at the church, the Pastor must evade the police and somehow reconcile his violent secret identity with his calling as a pastor.", "text_for_embedding": "The Masked Saint (2016). Genres: Crime, Action. The journey of a professional wrestler who becomes a small town pastor and moonlights as a masked vigilante fighting injustice. While facing crises at home and at the church, the Pastor must evade the police and somehow reconcile his violent secret identity with his calling as a pastor.. Tags: pastor, based on true story, wrestler"} +{"id": "20055", "title": "The Betrayed", "year": 2008, "duration_min": 98, "rating": 5.2, "genres": "Crime, Drama, Mystery, Thriller", "genres_pipe": "|Crime|Drama|Mystery|Thriller|", "keywords": "kidnapping, revelation, murder, theft, trust, criminal, warehouse, psycho, flashback", "tags_pipe": "|kidnapping|revelation|murder|theft|trust|criminal|warehouse|psycho|flashback|", "overview": "Kidnappers force a young mother (Melissa George) to recover money stolen by her shady husband (Christian Campbell).", "text_for_embedding": "The Betrayed (2008). Genres: Crime, Drama, Mystery, Thriller. Kidnappers force a young mother (Melissa George) to recover money stolen by her shady husband (Christian Campbell).. Tags: kidnapping, revelation, murder, theft, trust, criminal, warehouse, psycho, flashback"} +{"id": "224569", "title": "Taxman", "year": 1999, "duration_min": 104, "rating": 2.0, "genres": "Action, Crime, Comedy, Thriller", "genres_pipe": "|Action|Crime|Comedy|Thriller|", "keywords": "machinegun, tax inspector, wedding party", "tags_pipe": "|machinegun|tax inspector|wedding party|", "overview": "After a homocide that the police believe is over gasoline theft, a tax investigator discovers the Russian mafia is involved and that they are stealing millions in gasoline tax money. Only one rookie cop is willing to believe him and together they must get the evidence they need or die trying.", "text_for_embedding": "Taxman (1999). Genres: Action, Crime, Comedy, Thriller. After a homocide that the police believe is over gasoline theft, a tax investigator discovers the Russian mafia is involved and that they are stealing millions in gasoline tax money. Only one rookie cop is willing to believe him and together they must get the evidence they need or die trying.. Tags: machinegun, tax inspector, wedding party"} +{"id": "395766", "title": "The Secret", "year": 2016, "duration_min": 200, "rating": 0.0, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "miniseries", "tags_pipe": "|miniseries|", "overview": "The Secret is the story of a real-life double murder. James Nesbitt plays Colin Howell, a respectable dentist and pillar of the community, who became a killer in partnership with a Sunday school teacher, Hazel Buchanan, played by Genevieve O'Reilly.", "text_for_embedding": "The Secret (2016). Genres: Drama. The Secret is the story of a real-life double murder. James Nesbitt plays Colin Howell, a respectable dentist and pillar of the community, who became a killer in partnership with a Sunday school teacher, Hazel Buchanan, played by Genevieve O'Reilly.. Tags: miniseries"} +{"id": "39303", "title": "2:13", "year": 2009, "duration_min": 96, "rating": 4.6, "genres": "Horror, Thriller, Mystery", "genres_pipe": "|Horror|Thriller|Mystery|", "keywords": "thriller, forensic", "tags_pipe": "|thriller|forensic|", "overview": "A police profiler has just returned from psychiatric leave only to find that he is caught up in a serial killer's rampage. Fighting to keep buried the trauma of his childhood, he must confront the all too-familiar flesh masks that the killer leaves on the faces of his victims. He must face his own demons along with the killer to save his small eroding existence.", "text_for_embedding": "2:13 (2009). Genres: Horror, Thriller, Mystery. A police profiler has just returned from psychiatric leave only to find that he is caught up in a serial killer's rampage. Fighting to keep buried the trauma of his childhood, he must confront the all too-familiar flesh masks that the killer leaves on the faces of his victims. He must face his own demons along with the killer to save his small eroding existence.. Tags: thriller, forensic"} +{"id": "142061", "title": "Batman: The Dark Knight Returns, Part 2", "year": 2013, "duration_min": 78, "rating": 7.9, "genres": "Action, Animation", "genres_pipe": "|Action|Animation|", "keywords": "dc comics, future, joker, robin, based on graphic novel, dystopic future, super powers", "tags_pipe": "|dc comics|future|joker|robin|based on graphic novel|dystopic future|super powers|", "overview": "Batman has stopped the reign of terror that The Mutants had cast upon his city. Now an old foe wants a reunion and the government wants The Man of Steel to put a stop to Batman.", "text_for_embedding": "Batman: The Dark Knight Returns, Part 2 (2013). Genres: Action, Animation. Batman has stopped the reign of terror that The Mutants had cast upon his city. Now an old foe wants a reunion and the government wants The Man of Steel to put a stop to Batman.. Tags: dc comics, future, joker, robin, based on graphic novel, dystopic future, super powers"} +{"id": "370662", "title": "Time to Choose", "year": 2015, "duration_min": 100, "rating": 0.0, "genres": "Documentary", "genres_pipe": "|Documentary|", "keywords": "climate change, documentary", "tags_pipe": "|climate change|documentary|", "overview": "Academy Award® winning director Charles Ferguson's new film investigates global climate change villains and heroes, and reveals practical solutions to act on.", "text_for_embedding": "Time to Choose (2015). Genres: Documentary. Academy Award® winning director Charles Ferguson's new film investigates global climate change villains and heroes, and reveals practical solutions to act on.. Tags: climate change, documentary"} +{"id": "252360", "title": "In the Name of the King III", "year": 2013, "duration_min": 85, "rating": 3.3, "genres": "Action, Adventure, Drama, Fantasy", "genres_pipe": "|Action|Adventure|Drama|Fantasy|", "keywords": "based on video game", "tags_pipe": "|based on video game|", "overview": "Hazen Kaine, an American contract killer living in Sofia, Bulgaria, gets more than he bargains for when he enters into a contract with the mob. One last job before he gets out and starts a new life for himself. The targets: the three children of royal billionaire Andon Dupont. Seems simple enough, or so he thought. Hazen apprehends the children, and before he can blink an eye, a simple necklace worn by one of the children sends his life spiraling back to medieval times. Now completely out of his element, Hazen fights for his life as he tries to escape a medieval army and a fierce fire-breathing dragon.", "text_for_embedding": "In the Name of the King III (2013). Genres: Action, Adventure, Drama, Fantasy. Hazen Kaine, an American contract killer living in Sofia, Bulgaria, gets more than he bargains for when he enters into a contract with the mob. One last job before he gets out and starts a new life for himself. The targets: the three children of royal billionaire Andon Dupont. Seems simple enough, or so he thought. Hazen apprehends the children, and before he can blink an eye, a simple necklace worn by one of the children sends his life spiraling back to medieval times. Now completely out of his element, Hazen fights for his life as he tries to escape a medieval army and a fierce fire-breathing dragon.. Tags: based on video game"} +{"id": "256740", "title": "Wicked Blood", "year": 2014, "duration_min": 92, "rating": 5.3, "genres": "Action, Drama, Thriller", "genres_pipe": "|Action|Drama|Thriller|", "keywords": "", "tags_pipe": "", "overview": "Hannah and Amber Baker are trapped in a dark Southern underworld of violence, drugs and bikers. Both live in fear of their \"Uncle Frank\" Stinson, the ruthless leader of a crime organization.", "text_for_embedding": "Wicked Blood (2014). Genres: Action, Drama, Thriller. Hannah and Amber Baker are trapped in a dark Southern underworld of violence, drugs and bikers. Both live in fear of their \"Uncle Frank\" Stinson, the ruthless leader of a crime organization.. Tags: "} +{"id": "299145", "title": "Stranded", "year": 2015, "duration_min": 86, "rating": 5.0, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "revenge, murder, u.s. marine", "tags_pipe": "|revenge|murder|u.s. marine|", "overview": "After the brutal murder of his beloved brother, a small-town surfer seeks revenge against the gang of merciless thugs he holds responsible. However, when another tragedy brings him face to face with the consequences of his actions, he must seek forgiveness from the very people he despises most.", "text_for_embedding": "Stranded (2015). Genres: Drama. After the brutal murder of his beloved brother, a small-town surfer seeks revenge against the gang of merciless thugs he holds responsible. However, when another tragedy brings him face to face with the consequences of his actions, he must seek forgiveness from the very people he despises most.. Tags: revenge, murder, u.s. marine"} +{"id": "241766", "title": "Lords of London", "year": 2014, "duration_min": 90, "rating": 3.6, "genres": "Crime, Mystery, Thriller", "genres_pipe": "|Crime|Mystery|Thriller|", "keywords": "wife husband relationship, gangster, mysterious killer", "tags_pipe": "|wife husband relationship|gangster|mysterious killer|", "overview": "Tony is a notorious gangster with a big problem. He has woken up in an abandoned farmhouse, with blood on his shirt, and no memory of how he got there. He stumbles into a small town and discovers he’s in an Italian village that seems to be lost in time.", "text_for_embedding": "Lords of London (2014). Genres: Crime, Mystery, Thriller. Tony is a notorious gangster with a big problem. He has woken up in an abandoned farmhouse, with blood on his shirt, and no memory of how he got there. He stumbles into a small town and discovers he’s in an Italian village that seems to be lost in time.. Tags: wife husband relationship, gangster, mysterious killer"} +{"id": "12535", "title": "High Anxiety", "year": 1977, "duration_min": 94, "rating": 6.5, "genres": "Comedy, Music", "genres_pipe": "|Comedy|Music|", "keywords": "industrialist, vertigo, hitman, lighthouse, spoof, hitchcockian", "tags_pipe": "|industrialist|vertigo|hitman|lighthouse|spoof|hitchcockian|", "overview": "Dr. Richard Thorndyke arrives as new administrator of the Psychoneurotic Institute for the Very, VERY Nervous to discover some suspicious goings-on. When he's framed for murder, Dr. Thorndyke must confront his own psychiatric condition, \"high anxiety,\" in order to clear his name.", "text_for_embedding": "High Anxiety (1977). Genres: Comedy, Music. Dr. Richard Thorndyke arrives as new administrator of the Psychoneurotic Institute for the Very, VERY Nervous to discover some suspicious goings-on. When he's framed for murder, Dr. Thorndyke must confront his own psychiatric condition, \"high anxiety,\" in order to clear his name.. Tags: industrialist, vertigo, hitman, lighthouse, spoof, hitchcockian"} +{"id": "1667", "title": "March of the Penguins", "year": 2005, "duration_min": 80, "rating": 6.9, "genres": "Documentary, Family", "genres_pipe": "|Documentary|Family|", "keywords": "parents kids relationship, penguin, brood, autonomy, egg, survival, snow, antarctic", "tags_pipe": "|parents kids relationship|penguin|brood|autonomy|egg|survival|snow|antarctic|", "overview": "Every year, thousands of Antartica's emperor penguins make an astonishing journey to breed their young. They walk, marching day and night in single file 70 miles into the darkest, driest and coldest continent on Earth.", "text_for_embedding": "March of the Penguins (2005). Genres: Documentary, Family. Every year, thousands of Antartica's emperor penguins make an astonishing journey to breed their young. They walk, marching day and night in single file 70 miles into the darkest, driest and coldest continent on Earth.. Tags: parents kids relationship, penguin, brood, autonomy, egg, survival, snow, antarctic"} +{"id": "50839", "title": "Margin Call", "year": 2011, "duration_min": 107, "rating": 6.7, "genres": "Thriller, Drama", "genres_pipe": "|Thriller|Drama|", "keywords": "capitalism, brokerage, wall street, downsizing, financial crisis, stock market, stock market crash, 21st century, investment", "tags_pipe": "|capitalism|brokerage|wall street|downsizing|financial crisis|stock market|stock market crash|21st century|investment|", "overview": "A thriller that revolves around the key people at an investment bank over a 24-hour period during the early stages of the financial crisis.", "text_for_embedding": "Margin Call (2011). Genres: Thriller, Drama. A thriller that revolves around the key people at an investment bank over a 24-hour period during the early stages of the financial crisis.. Tags: capitalism, brokerage, wall street, downsizing, financial crisis, stock market, stock market crash, 21st century, investment"} +{"id": "86549", "title": "August", "year": 2011, "duration_min": 100, "rating": 6.2, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "drama, romance, gay relationship", "tags_pipe": "|drama|romance|gay relationship|", "overview": "August tells the story of two former lovers, Troy and Jonathan, who reunite after a long ago painful breakup. After spending several years in Spain, Troy returns to Los Angeles and decides to phone Jonathan and meet for coffee. A seemingly innocent rendezvous turns into an attempt to revive passions past. Only this time it's not that simple as Jonathan has a new beau, Raul, and is trying to make the right decision a second time around.", "text_for_embedding": "August (2011). Genres: Drama. August tells the story of two former lovers, Troy and Jonathan, who reunite after a long ago painful breakup. After spending several years in Spain, Troy returns to Los Angeles and decides to phone Jonathan and meet for coffee. A seemingly innocent rendezvous turns into an attempt to revive passions past. Only this time it's not that simple as Jonathan has a new beau, Raul, and is trying to make the right decision a second time around.. Tags: drama, romance, gay relationship"} +{"id": "13973", "title": "Choke", "year": 2008, "duration_min": 92, "rating": 6.0, "genres": "Comedy, Drama", "genres_pipe": "|Comedy|Drama|", "keywords": "strip club, alzheimer, sex addiction", "tags_pipe": "|strip club|alzheimer|sex addiction|", "overview": "A sex-addicted con-man pays for his mother's hospital bills by playing on the sympathies of those who rescue him from choking to death.", "text_for_embedding": "Choke (2008). Genres: Comedy, Drama. A sex-addicted con-man pays for his mother's hospital bills by playing on the sympathies of those who rescue him from choking to death.. Tags: strip club, alzheimer, sex addiction"} +{"id": "244786", "title": "Whiplash", "year": 2014, "duration_min": 105, "rating": 8.3, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "jazz, obsession, conservatory, music teacher, new york city, violence, montage, drummer, public humiliation, jazz band, young adult, music school", "tags_pipe": "|jazz|obsession|conservatory|music teacher|new york city|violence|montage|drummer|public humiliation|jazz band|young adult|music school|", "overview": "Under the direction of a ruthless instructor, a talented young drummer begins to pursue perfection at any cost, even his humanity.", "text_for_embedding": "Whiplash (2014). Genres: Drama. Under the direction of a ruthless instructor, a talented young drummer begins to pursue perfection at any cost, even his humanity.. Tags: jazz, obsession, conservatory, music teacher, new york city, violence, montage, drummer, public humiliation, jazz band, young adult, music school"} +{"id": "598", "title": "City of God", "year": 2002, "duration_min": 130, "rating": 8.1, "genres": "Drama, Crime", "genres_pipe": "|Drama|Crime|", "keywords": "male nudity, street gang, brazilian, photographer, 1970s, puberty, ghetto, gang war, coming of age, woman director, 1980s", "tags_pipe": "|male nudity|street gang|brazilian|photographer|1970s|puberty|ghetto|gang war|coming of age|woman director|1980s|", "overview": "Cidade de Deus is a shantytown that started during the 1960s and became one of Rio de Janeiro’s most dangerous places in the beginning of the 1980s. To tell the story of this place, the movie describes the life of various characters, all seen by the point of view of the narrator, Buscapé. Buscapé was raised in a very violent environment. Despite the feeling that all odds were against him, he finds out that life can be seen with other eyes: The eyes of an artist. By accident, he becomes a professional photographer, gaining his freedom.", "text_for_embedding": "City of God (2002). Genres: Drama, Crime. Cidade de Deus is a shantytown that started during the 1960s and became one of Rio de Janeiro’s most dangerous places in the beginning of the 1980s. To tell the story of this place, the movie describes the life of various characters, all seen by the point of view of the narrator, Buscapé. Buscapé was raised in a very violent environment. Despite the feeling that all odds were against him, he finds out that life can be seen with other eyes: The eyes of an artist. By accident, he becomes a professional photographer, gaining his freedom.. Tags: male nudity, street gang, brazilian, photographer, 1970s, puberty, ghetto, gang war, coming of age, woman director, 1980s"} +{"id": "11129", "title": "Human Traffic", "year": 1999, "duration_min": 99, "rating": 6.8, "genres": "Comedy, Drama", "genres_pipe": "|Comedy|Drama|", "keywords": "sex, salesclerk, fast food restaurant, boredom, relationship problems, party, relationship, drug, alcohol abuse, fashion, group of friends", "tags_pipe": "|sex|salesclerk|fast food restaurant|boredom|relationship problems|party|relationship|drug|alcohol abuse|fashion|group of friends|", "overview": "All that exists now is clubs, drugs, pubs and parties. I've got 48 hours off from the world, man I'm gonna blow steam out of my head like a screaming kettle. I'm gonna talk cods hit to strangers all night. I'm gonna lose the plot on the dance floor, the free radicals inside me are freaking man! Tonight I'm Jip Travolta, I'm Peter Popper, I'm going to Never Never Land with my chosen family, man. We're going to get more spaced out than Neil Armstrong ever did. Anything could happen tonight, you know? This could be the best night of my life! I've got 73 quid in my back burner. I'm gonna wax the lot, man. The milky bars are on me! Yeah!", "text_for_embedding": "Human Traffic (1999). Genres: Comedy, Drama. All that exists now is clubs, drugs, pubs and parties. I've got 48 hours off from the world, man I'm gonna blow steam out of my head like a screaming kettle. I'm gonna talk cods hit to strangers all night. I'm gonna lose the plot on the dance floor, the free radicals inside me are freaking man! Tonight I'm Jip Travolta, I'm Peter Popper, I'm going to Never Never Land with my chosen family, man. We're going to get more spaced out than Neil Armstrong ever did. Anything could happen tonight, you know? This could be the best night of my life! I've got 73 quid in my back burner. I'm gonna wax the lot, man. The milky bars are on me! Yeah!. Tags: sex, salesclerk, fast food restaurant, boredom, relationship problems, party, relationship, drug, alcohol abuse, fashion, group of friends"} +{"id": "75861", "title": "To Write Love on Her Arms", "year": 2015, "duration_min": 118, "rating": 6.8, "genres": "Drama, Music", "genres_pipe": "|Drama|Music|", "keywords": "depression, biography, drug", "tags_pipe": "|depression|biography|drug|", "overview": "The story follows 19-year-old Renee who has always loved fairy tales: the idea of a princess, a hero and a happily ever after. But Renee’s life is that of a darker tale: she’s a young woman battling addiction, depression and self-injury. In a creative blend of artistic fantasy balanced with harsh reality, the movie follows Renee on her courageous journey towards recovery.", "text_for_embedding": "To Write Love on Her Arms (2015). Genres: Drama, Music. The story follows 19-year-old Renee who has always loved fairy tales: the idea of a princess, a hero and a happily ever after. But Renee’s life is that of a darker tale: she’s a young woman battling addiction, depression and self-injury. In a creative blend of artistic fantasy balanced with harsh reality, the movie follows Renee on her courageous journey towards recovery.. Tags: depression, biography, drug"} +{"id": "13551", "title": "The Dead Girl", "year": 2006, "duration_min": 85, "rating": 6.4, "genres": "Mystery, Drama, Crime, Thriller", "genres_pipe": "|Mystery|Drama|Crime|Thriller|", "keywords": "prostitute, fire, newspaper, independent film, woman director", "tags_pipe": "|prostitute|fire|newspaper|independent film|woman director|", "overview": "The clues to a young woman's death come together as the lives of seemingly unrelated people begin to intersect.", "text_for_embedding": "The Dead Girl (2006). Genres: Mystery, Drama, Crime, Thriller. The clues to a young woman's death come together as the lives of seemingly unrelated people begin to intersect.. Tags: prostitute, fire, newspaper, independent film, woman director"} +{"id": "103663", "title": "The Hunt", "year": 2012, "duration_min": 115, "rating": 7.9, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "father son relationship, denmark, lie, pedophilia, kindergarten, father, deer, children, teacher, school, pedophile, divorce, hunting", "tags_pipe": "|father son relationship|denmark|lie|pedophilia|kindergarten|father|deer|children|teacher|school|pedophile|divorce|hunting|", "overview": "A teacher lives a lonely life, all the while struggling over his son’s custody. His life slowly gets better as he finds love and receives good news from his son, but his new luck is about to be brutally shattered by an innocent little lie.", "text_for_embedding": "The Hunt (2012). Genres: Drama. A teacher lives a lonely life, all the while struggling over his son’s custody. His life slowly gets better as he finds love and receives good news from his son, but his new luck is about to be brutally shattered by an innocent little lie.. Tags: father son relationship, denmark, lie, pedophilia, kindergarten, father, deer, children, teacher, school, pedophile, divorce, hunting"} +{"id": "850", "title": "A Christmas Story", "year": 1983, "duration_min": 94, "rating": 7.4, "genres": "Comedy, Family", "genres_pipe": "|Comedy|Family|", "keywords": "holiday, nostalgia, young boy, bb gun, essay, christmas tree dealer, mall santa, christmas, 1940s", "tags_pipe": "|holiday|nostalgia|young boy|bb gun|essay|christmas tree dealer|mall santa|christmas|1940s|", "overview": "The comic mishaps and adventures of a young boy named Ralph, trying to convince his parents, teachers, and Santa that a Red Ryder B.B. gun really is the perfect Christmas gift for the 1940s.", "text_for_embedding": "A Christmas Story (1983). Genres: Comedy, Family. The comic mishaps and adventures of a young boy named Ralph, trying to convince his parents, teachers, and Santa that a Red Ryder B.B. gun really is the perfect Christmas gift for the 1940s.. Tags: holiday, nostalgia, young boy, bb gun, essay, christmas tree dealer, mall santa, christmas, 1940s"} +{"id": "12586", "title": "Bella", "year": 2006, "duration_min": 91, "rating": 6.7, "genres": "Drama, Romance", "genres_pipe": "|Drama|Romance|", "keywords": "waitress, beach, independent film, soccer, girl, chance meeting, flashback", "tags_pipe": "|waitress|beach|independent film|soccer|girl|chance meeting|flashback|", "overview": "An international soccer star is on his way to sign a multimillion dollar contract when something happens that brings his career to an abrupt end. A beautiful waitress, struggling to make it in New York City, discovers something about herself that she's unprepared for. In one irreversible moment, their lives are turned upside down.", "text_for_embedding": "Bella (2006). Genres: Drama, Romance. An international soccer star is on his way to sign a multimillion dollar contract when something happens that brings his career to an abrupt end. A beautiful waitress, struggling to make it in New York City, discovers something about herself that she's unprepared for. In one irreversible moment, their lives are turned upside down.. Tags: waitress, beach, independent film, soccer, girl, chance meeting, flashback"} +{"id": "11564", "title": "Class of 1984", "year": 1982, "duration_min": 98, "rating": 6.2, "genres": "Action, Drama, Horror, Crime, Thriller", "genres_pipe": "|Action|Drama|Horror|Crime|Thriller|", "keywords": "usa, female nudity, detective, music teacher, nudity, punk, high school, vigilante, violence in schools, murder, independent film, teacher, gang, lesbian, gang rape", "tags_pipe": "|usa|female nudity|detective|music teacher|nudity|punk|high school|vigilante|violence in schools|murder|independent film|teacher|gang|lesbian|gang rape|", "overview": "Andy is a new teacher at a inner city high school that is like nothing he has ever seen before. There is metal detectors at the front door and everything is basically run by a tough kid named Peter Stegman. Soon, Andy and Stegman become enemies and Stegman will stop at nothing to protect his turf and drug dealing business.", "text_for_embedding": "Class of 1984 (1982). Genres: Action, Drama, Horror, Crime, Thriller. Andy is a new teacher at a inner city high school that is like nothing he has ever seen before. There is metal detectors at the front door and everything is basically run by a tough kid named Peter Stegman. Soon, Andy and Stegman become enemies and Stegman will stop at nothing to protect his turf and drug dealing business.. Tags: usa, female nudity, detective, music teacher, nudity, punk, high school, vigilante, violence in schools, murder, independent film, teacher, gang, lesbian, gang rape"} +{"id": "301748", "title": "The Opposite Sex", "year": 2014, "duration_min": 96, "rating": 4.1, "genres": "Comedy", "genres_pipe": "|Comedy|", "keywords": "bet, divorce, gender, battle of the sexes, life competition", "tags_pipe": "|bet|divorce|gender|battle of the sexes|life competition|", "overview": "A Bet's A Bet tells the story of Vince, New England's most successful divorce attorney. To Vince, life is one big competition, and losing is unacceptable. This also applies in his dating life with his love 'em and leave 'em approach. Then Vince meets Jane, who is beautiful, successful and also extremely driven. Together they enter into a series of entertaining wagers with each other where the winner gets to decide the fate of the loser. After all, \"A Bet's a Bet!\"", "text_for_embedding": "The Opposite Sex (2014). Genres: Comedy. A Bet's A Bet tells the story of Vince, New England's most successful divorce attorney. To Vince, life is one big competition, and losing is unacceptable. This also applies in his dating life with his love 'em and leave 'em approach. Then Vince meets Jane, who is beautiful, successful and also extremely driven. Together they enter into a series of entertaining wagers with each other where the winner gets to decide the fate of the loser. After all, \"A Bet's a Bet!\". Tags: bet, divorce, gender, battle of the sexes, life competition"} +{"id": "108346", "title": "Dreaming of Joseph Lees", "year": 1999, "duration_min": 92, "rating": 8.0, "genres": "Romance, Drama", "genres_pipe": "|Romance|Drama|", "keywords": "lust, love crime", "tags_pipe": "|lust|love crime|", "overview": "Set in rural England in the 1950s Eva (Samantha Morton) fantasises about her handsome, worldly cousin Joseph Lees (Rupert Graves), with whom she fell in love as a girl. However, stuck in a closed community she becomes the object of someone else's fantasy, Harry (Lee Ross). When Harry learns that Eva is planning to leave the village in order to live with and look after the injured Lees, he devises a gruesome scheme in order to force her to stay and look after him.", "text_for_embedding": "Dreaming of Joseph Lees (1999). Genres: Romance, Drama. Set in rural England in the 1950s Eva (Samantha Morton) fantasises about her handsome, worldly cousin Joseph Lees (Rupert Graves), with whom she fell in love as a girl. However, stuck in a closed community she becomes the object of someone else's fantasy, Harry (Lee Ross). When Harry learns that Eva is planning to leave the village in order to live with and look after the injured Lees, he devises a gruesome scheme in order to force her to stay and look after him.. Tags: lust, love crime"} +{"id": "8841", "title": "The Class", "year": 2008, "duration_min": 128, "rating": 6.8, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "paris, socially deprived family, literature, illegal immigration, immigrant, education, boredom, class society, violence in schools, republicanism, diversity, teacher, school, school life, teachers and students", "tags_pipe": "|paris|socially deprived family|literature|illegal immigration|immigrant|education|boredom|class society|violence in schools|republicanism|diversity|teacher|school|school life|teachers and students|", "overview": "Teacher and novelist François Bégaudeau plays a version of himself as he negotiates a year with his racially mixed students from a tough Parisian neighborhood.", "text_for_embedding": "The Class (2008). Genres: Drama. Teacher and novelist François Bégaudeau plays a version of himself as he negotiates a year with his racially mixed students from a tough Parisian neighborhood.. Tags: paris, socially deprived family, literature, illegal immigration, immigrant, education, boredom, class society, violence in schools, republicanism, diversity, teacher, school, school life, teachers and students"} +{"id": "805", "title": "Rosemary's Baby", "year": 1968, "duration_min": 136, "rating": 7.5, "genres": "Horror, Drama, Mystery", "genres_pipe": "|Horror|Drama|Mystery|", "keywords": "anti-christ, contemporary setting, laundry, occult, demonic possession, satanic cult, lucky charm, woman in jeopardy, eating disorder, catholic priest", "tags_pipe": "|anti-christ|contemporary setting|laundry|occult|demonic possession|satanic cult|lucky charm|woman in jeopardy|eating disorder|catholic priest|", "overview": "A young couple moves into an infamous New York apartment building to start a family. Things become frightening as Rosemary begins to suspect her unborn baby isn't safe around their strange neighbors.", "text_for_embedding": "Rosemary's Baby (1968). Genres: Horror, Drama, Mystery. A young couple moves into an infamous New York apartment building to start a family. Things become frightening as Rosemary begins to suspect her unborn baby isn't safe around their strange neighbors.. Tags: anti-christ, contemporary setting, laundry, occult, demonic possession, satanic cult, lucky charm, woman in jeopardy, eating disorder, catholic priest"} +{"id": "11697", "title": "The Man Who Shot Liberty Valance", "year": 1962, "duration_min": 123, "rating": 7.4, "genres": "Western", "genres_pipe": "|Western|", "keywords": "gunslinger, showdown, funeral, legend, to shoot dead, outlaw, lawyer, pistol, rancher, stagecoach, cowboy", "tags_pipe": "|gunslinger|showdown|funeral|legend|to shoot dead|outlaw|lawyer|pistol|rancher|stagecoach|cowboy|", "overview": "A senator, who became famous for killing a notorious outlaw, returns for the funeral of an old friend and tells the truth about his deed.", "text_for_embedding": "The Man Who Shot Liberty Valance (1962). Genres: Western. A senator, who became famous for killing a notorious outlaw, returns for the funeral of an old friend and tells the truth about his deed.. Tags: gunslinger, showdown, funeral, legend, to shoot dead, outlaw, lawyer, pistol, rancher, stagecoach, cowboy"} +{"id": "22051", "title": "Adam", "year": 2009, "duration_min": 99, "rating": 6.9, "genres": "Drama, Romance", "genres_pipe": "|Drama|Romance|", "keywords": "children's book, asperger's syndrome, electrical engineer, asperger's", "tags_pipe": "|children's book|asperger's syndrome|electrical engineer|asperger's|", "overview": "Adam, a lonely man with Asperger's Syndrome, develops a relationship with his upstairs neighbor, Beth.", "text_for_embedding": "Adam (2009). Genres: Drama, Romance. Adam, a lonely man with Asperger's Syndrome, develops a relationship with his upstairs neighbor, Beth.. Tags: children's book, asperger's syndrome, electrical engineer, asperger's"} +{"id": "436", "title": "Maria Full of Grace", "year": 2004, "duration_min": 101, "rating": 6.9, "genres": "Drama, Thriller, Crime", "genres_pipe": "|Drama|Thriller|Crime|", "keywords": "individual, new york, adolescence, colombia, drug traffic, cocaine, drug crime, illegal immigration, maquiladora, airplane, bravery, teacher, pregnancy, self esteem", "tags_pipe": "|individual|new york|adolescence|colombia|drug traffic|cocaine|drug crime|illegal immigration|maquiladora|airplane|bravery|teacher|pregnancy|self esteem|", "overview": "A pregnant Colombian teenager becomes a drug mule to make some desperately needed money for her family.", "text_for_embedding": "Maria Full of Grace (2004). Genres: Drama, Thriller, Crime. A pregnant Colombian teenager becomes a drug mule to make some desperately needed money for her family.. Tags: individual, new york, adolescence, colombia, drug traffic, cocaine, drug crime, illegal immigration, maquiladora, airplane, bravery, teacher, pregnancy, self esteem"} +{"id": "55347", "title": "Beginners", "year": 2010, "duration_min": 105, "rating": 6.8, "genres": "Drama, Romance, Comedy", "genres_pipe": "|Drama|Romance|Comedy|", "keywords": "gay, loss of mother, secret, coming out, loss of father, cancer, lgbt elderly", "tags_pipe": "|gay|loss of mother|secret|coming out|loss of father|cancer|lgbt elderly|", "overview": "A young man is rocked by two announcements from his elderly father: that he has terminal cancer, and that he has a young male lover.", "text_for_embedding": "Beginners (2010). Genres: Drama, Romance, Comedy. A young man is rocked by two announcements from his elderly father: that he has terminal cancer, and that he has a young male lover.. Tags: gay, loss of mother, secret, coming out, loss of father, cancer, lgbt elderly"} +{"id": "10070", "title": "Feast", "year": 2005, "duration_min": 95, "rating": 6.1, "genres": "Action, Comedy, Horror", "genres_pipe": "|Action|Comedy|Horror|", "keywords": "monster, pub, duringcreditsstinger", "tags_pipe": "|monster|pub|duringcreditsstinger|", "overview": "Patrons locked inside of a bar are forced to fight monsters.", "text_for_embedding": "Feast (2005). Genres: Action, Comedy, Horror. Patrons locked inside of a bar are forced to fight monsters.. Tags: monster, pub, duringcreditsstinger"} +{"id": "8469", "title": "Animal House", "year": 1978, "duration_min": 109, "rating": 7.0, "genres": "Comedy", "genres_pipe": "|Comedy|", "keywords": "sex, nudity, college, fraternity, gross out comedy, dean, fraternity house, probation, 1960s, college freshman, anarchic comedy", "tags_pipe": "|sex|nudity|college|fraternity|gross out comedy|dean|fraternity house|probation|1960s|college freshman|anarchic comedy|", "overview": "At a 1962 College, Dean Vernon Wormer is determined to expel the entire Delta Tau Chi Fraternity, but those troublemakers have other plans for him.", "text_for_embedding": "Animal House (1978). Genres: Comedy. At a 1962 College, Dean Vernon Wormer is determined to expel the entire Delta Tau Chi Fraternity, but those troublemakers have other plans for him.. Tags: sex, nudity, college, fraternity, gross out comedy, dean, fraternity house, probation, 1960s, college freshman, anarchic comedy"} +{"id": "658", "title": "Goldfinger", "year": 1964, "duration_min": 110, "rating": 7.2, "genres": "Adventure, Action, Thriller", "genres_pipe": "|Adventure|Action|Thriller|", "keywords": "secret organization, secret intelligence service, nuclear radiation, fort knox, aston martin, secret lab, kentucky, gas attack, airplane, british secret service, duringcreditsstinger", "tags_pipe": "|secret organization|secret intelligence service|nuclear radiation|fort knox|aston martin|secret lab|kentucky|gas attack|airplane|british secret service|duringcreditsstinger|", "overview": "Special agent 007 (Sean Connery) comes face to face with one of the most notorious villains of all time, and now he must outwit and outgun the powerful tycoon to prevent him from cashing in on a devious scheme to raid Fort Knox -- and obliterate the world's economy.", "text_for_embedding": "Goldfinger (1964). Genres: Adventure, Action, Thriller. Special agent 007 (Sean Connery) comes face to face with one of the most notorious villains of all time, and now he must outwit and outgun the powerful tycoon to prevent him from cashing in on a devious scheme to raid Fort Knox -- and obliterate the world's economy.. Tags: secret organization, secret intelligence service, nuclear radiation, fort knox, aston martin, secret lab, kentucky, gas attack, airplane, british secret service, duringcreditsstinger"} +{"id": "125490", "title": "Antiviral", "year": 2012, "duration_min": 110, "rating": 5.7, "genres": "Science Fiction, Horror", "genres_pipe": "|Science Fiction|Horror|", "keywords": "injection, celebrity, satire, near future, metamorphosis, tech noir, virus, body horror", "tags_pipe": "|injection|celebrity|satire|near future|metamorphosis|tech noir|virus|body horror|", "overview": "After becoming infected with the virus that killed superstar Hannah Geist, Syd March must unravel the mystery surrounding her death to save his own life .", "text_for_embedding": "Antiviral (2012). Genres: Science Fiction, Horror. After becoming infected with the virus that killed superstar Hannah Geist, Syd March must unravel the mystery surrounding her death to save his own life .. Tags: injection, celebrity, satire, near future, metamorphosis, tech noir, virus, body horror"} +{"id": "1585", "title": "It's a Wonderful Life", "year": 1946, "duration_min": 130, "rating": 8.0, "genres": "Drama, Family, Fantasy", "genres_pipe": "|Drama|Family|Fantasy|", "keywords": "holiday, angel, based on novel, bank, suicide attempt, small town, christmas tree, great depression, christmas eve, feel-good ending, guardian angel, christmas", "tags_pipe": "|holiday|angel|based on novel|bank|suicide attempt|small town|christmas tree|great depression|christmas eve|feel-good ending|guardian angel|christmas|", "overview": "George Bailey has spent his entire life giving of himself to the people of Bedford Falls. He has always longed to travel but never had the opportunity in order to prevent rich skinflint Mr. Potter from taking over the entire town. All that prevents him from doing so is George's modest building and loan company, which was founded by his generous father. But on Christmas Eve, George's Uncle Billy loses the business's $8,000 while intending to deposit it in the bank. Potter finds the misplaced money, hides it from Billy, and George's troubles begin.", "text_for_embedding": "It's a Wonderful Life (1946). Genres: Drama, Family, Fantasy. George Bailey has spent his entire life giving of himself to the people of Bedford Falls. He has always longed to travel but never had the opportunity in order to prevent rich skinflint Mr. Potter from taking over the entire town. All that prevents him from doing so is George's modest building and loan company, which was founded by his generous father. But on Christmas Eve, George's Uncle Billy loses the business's $8,000 while intending to deposit it in the bank. Potter finds the misplaced money, hides it from Billy, and George's troubles begin.. Tags: holiday, angel, based on novel, bank, suicide attempt, small town, christmas tree, great depression, christmas eve, feel-good ending, guardian angel, christmas"} +{"id": "627", "title": "Trainspotting", "year": 1996, "duration_min": 93, "rating": 7.8, "genres": "Drama, Crime", "genres_pipe": "|Drama|Crime|", "keywords": "london england, alcohol, sex, based on novel, drug addiction, drug dealer, nightclub, junkie, heroin, cold turkey, modern society, hallucination, friendship, surrealism, dark comedy", "tags_pipe": "|london england|alcohol|sex|based on novel|drug addiction|drug dealer|nightclub|junkie|heroin|cold turkey|modern society|hallucination|friendship|surrealism|dark comedy|", "overview": "Renton, deeply immersed in the Edinburgh drug scene, tries to clean up and get out, despite the allure of the drugs and influence of friends.", "text_for_embedding": "Trainspotting (1996). Genres: Drama, Crime. Renton, deeply immersed in the Edinburgh drug scene, tries to clean up and get out, despite the allure of the drugs and influence of friends.. Tags: london england, alcohol, sex, based on novel, drug addiction, drug dealer, nightclub, junkie, heroin, cold turkey, modern society, hallucination, friendship, surrealism, dark comedy"} +{"id": "23618", "title": "The Original Kings of Comedy", "year": 2000, "duration_min": 115, "rating": 6.3, "genres": "Comedy", "genres_pipe": "|Comedy|", "keywords": "", "tags_pipe": "", "overview": "The Original Kings of Comedy achieves the seemingly impossible task of capturing the rollicking and sly comedy routines of stand-up and sitcom vets Steve Harvey, D.L. Hughley, Cedric the Entertainer, and Bernie Mac and the magic of experiencing a live concert show. Director Spike Lee and his crew plant a multitude of cameras in a packed stadium and onstage (as well as backstage, as they follow the comedians) to catch the vivid immediacy of the show, which is as much about the audience as it is about the jokes.", "text_for_embedding": "The Original Kings of Comedy (2000). Genres: Comedy. The Original Kings of Comedy achieves the seemingly impossible task of capturing the rollicking and sly comedy routines of stand-up and sitcom vets Steve Harvey, D.L. Hughley, Cedric the Entertainer, and Bernie Mac and the magic of experiencing a live concert show. Director Spike Lee and his crew plant a multitude of cameras in a packed stadium and onstage (as well as backstage, as they follow the comedians) to catch the vivid immediacy of the show, which is as much about the audience as it is about the jokes.. Tags: "} +{"id": "41436", "title": "Paranormal Activity 2", "year": 2010, "duration_min": 91, "rating": 5.7, "genres": "Horror, Thriller", "genres_pipe": "|Horror|Thriller|", "keywords": "ouija board, haunting, demonic possession, found footage, duringcreditsstinger", "tags_pipe": "|ouija board|haunting|demonic possession|found footage|duringcreditsstinger|", "overview": "Just as Dan and Kristi welcome a newborn baby into their home, a demonic presence begins terrorizing them, tearing apart their perfect world and turning it into an inescapable nightmare. Security cameras capture the torment, making every minute horrifyingly real.", "text_for_embedding": "Paranormal Activity 2 (2010). Genres: Horror, Thriller. Just as Dan and Kristi welcome a newborn baby into their home, a demonic presence begins terrorizing them, tearing apart their perfect world and turning it into an inescapable nightmare. Security cameras capture the torment, making every minute horrifyingly real.. Tags: ouija board, haunting, demonic possession, found footage, duringcreditsstinger"} +{"id": "10162", "title": "Waking Ned", "year": 1998, "duration_min": 91, "rating": 7.4, "genres": "Comedy, Romance", "genres_pipe": "|Comedy|Romance|", "keywords": "false identity, beguilement, lottery, village, jackpot, independent film, ireland", "tags_pipe": "|false identity|beguilement|lottery|village|jackpot|independent film|ireland|", "overview": "When a lottery winner dies of shock, his fellow townsfolk attempt to claim the money.", "text_for_embedding": "Waking Ned (1998). Genres: Comedy, Romance. When a lottery winner dies of shock, his fellow townsfolk attempt to claim the money.. Tags: false identity, beguilement, lottery, village, jackpot, independent film, ireland"} +{"id": "1430", "title": "Bowling for Columbine", "year": 2002, "duration_min": 120, "rating": 7.3, "genres": "Documentary", "genres_pipe": "|Documentary|", "keywords": "usa, canada, gun, homicide, to shoot dead, checks and balances, columbine, oklahoma city bombing, gun violence, person running amok", "tags_pipe": "|usa|canada|gun|homicide|to shoot dead|checks and balances|columbine|oklahoma city bombing|gun violence|person running amok|", "overview": "Why do 11,000 people die in America each year at the hands of gun violence? Talking heads yelling from every TV camera blame everything from Satan to video games. But are we that much different from many other countries? What sets us apart? How have we become both the master and victim of such enormous amounts of violence? This is not a film about gun control. It is a film about the fearful heart and soul of the United States, and the 280 million Americans lucky enough to have the right to a constitutionally protected Uzi. From a look at the Columbine High School security camera tapes to the home of Oscar-winning NRA President Charlton Heston, from a young man who makes homemade napalm with The Anarchist's Cookbook to the murder of a six-year-old girl by another six-year-old, Bowling for Columbine is a journey through America, through our past, hoping to discover why our pursuit of happiness is so riddled with violence.", "text_for_embedding": "Bowling for Columbine (2002). Genres: Documentary. Why do 11,000 people die in America each year at the hands of gun violence? Talking heads yelling from every TV camera blame everything from Satan to video games. But are we that much different from many other countries? What sets us apart? How have we become both the master and victim of such enormous amounts of violence? This is not a film about gun control. It is a film about the fearful heart and soul of the United States, and the 280 million Americans lucky enough to have the right to a constitutionally protected Uzi. From a look at the Columbine High School security camera tapes to the home of Oscar-winning NRA President Charlton Heston, from a young man who makes homemade napalm with The Anarchist's Cookbook to the murder of a six-year-old girl by another six-year-old, Bowling for Columbine is a journey through America, through our past, hoping to discover why our pursuit of happiness is so riddled with violence.. Tags: usa, canada, gun, homicide, to shoot dead, checks and balances, columbine, oklahoma city bombing, gun violence, person running amok"} +{"id": "259943", "title": "Coming Home", "year": 2014, "duration_min": 111, "rating": 6.9, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "arranged marriage, labor camp", "tags_pipe": "|arranged marriage|labor camp|", "overview": "Lu and Feng are a devoted couple forced to separate when Lu is arrested and sent to a labor camp as a political prisoner during the Cultural Revolution. He finally returns home only to find that his beloved wife no longer remembers him.", "text_for_embedding": "Coming Home (2014). Genres: Drama. Lu and Feng are a devoted couple forced to separate when Lu is arrested and sent to a labor camp as a political prisoner during the Cultural Revolution. He finally returns home only to find that his beloved wife no longer remembers him.. Tags: arranged marriage, labor camp"} +{"id": "10014", "title": "A Nightmare on Elm Street Part 2: Freddy's Revenge", "year": 1985, "duration_min": 87, "rating": 5.7, "genres": "Horror", "genres_pipe": "|Horror|", "keywords": "gay, dancing, fire, diary, nightmare, haunted house, transformation, supernatural, high school, party, possession, premonition, spontaneous combustion, bdsm, school bus", "tags_pipe": "|gay|dancing|fire|diary|nightmare|haunted house|transformation|supernatural|high school|party|possession|premonition|spontaneous combustion|bdsm|school bus|", "overview": "A new family moves into the house on Elm Street, and before long, the kids are again having nightmares about deceased child murderer Freddy Krueger. This time, Freddy attempts to possess a teenage boy to cause havoc in the real world, and can only be overcome if the boy's sweetheart can master her fear.", "text_for_embedding": "A Nightmare on Elm Street Part 2: Freddy's Revenge (1985). Genres: Horror. A new family moves into the house on Elm Street, and before long, the kids are again having nightmares about deceased child murderer Freddy Krueger. This time, Freddy attempts to possess a teenage boy to cause havoc in the real world, and can only be overcome if the boy's sweetheart can master her fear.. Tags: gay, dancing, fire, diary, nightmare, haunted house, transformation, supernatural, high school, party, possession, premonition, spontaneous combustion, bdsm, school bus"} +{"id": "11257", "title": "A Room with a View", "year": 1985, "duration_min": 117, "rating": 6.9, "genres": "Drama, Romance", "genres_pipe": "|Drama|Romance|", "keywords": "kiss, bed and breakfast place, florence", "tags_pipe": "|kiss|bed and breakfast place|florence|", "overview": "When Lucy Honeychurch and chaperon Charlotte Bartlett find themselves in Florence with rooms without views, fellow guests Mr Emerson and son George step in to remedy the situation. Meeting the Emersons could change Lucy's life forever but, once back in England, how will her experiences in Tuscany affect her marriage plans?", "text_for_embedding": "A Room with a View (1985). Genres: Drama, Romance. When Lucy Honeychurch and chaperon Charlotte Bartlett find themselves in Florence with rooms without views, fellow guests Mr Emerson and son George step in to remedy the situation. Meeting the Emersons could change Lucy's life forever but, once back in England, how will her experiences in Tuscany affect her marriage plans?. Tags: kiss, bed and breakfast place, florence"} +{"id": "158015", "title": "The Purge", "year": 2013, "duration_min": 86, "rating": 6.0, "genres": "Science Fiction, Horror, Thriller", "genres_pipe": "|Science Fiction|Horror|Thriller|", "keywords": "dystopia, barricade, home invasion, constitutional convention, legalized murder, social allegory", "tags_pipe": "|dystopia|barricade|home invasion|constitutional convention|legalized murder|social allegory|", "overview": "Given the country's overcrowded prisons, the U.S. government begins to allow 12-hour periods of time in which all illegal activity is legal. During one of these free-for-alls, a family must protect themselves from a home invasion.", "text_for_embedding": "The Purge (2013). Genres: Science Fiction, Horror, Thriller. Given the country's overcrowded prisons, the U.S. government begins to allow 12-hour periods of time in which all illegal activity is legal. During one of these free-for-alls, a family must protect themselves from a home invasion.. Tags: dystopia, barricade, home invasion, constitutional convention, legalized murder, social allegory"} +{"id": "82507", "title": "Sinister", "year": 2012, "duration_min": 110, "rating": 6.7, "genres": "Horror, Thriller, Mystery", "genres_pipe": "|Horror|Thriller|Mystery|", "keywords": "drowning, pennsylvania, child murderer, car set on fire, murder, bag over head, massacre, power outage, hanged man, held captive, hanging, death, attic, no opening credits, super-8", "tags_pipe": "|drowning|pennsylvania|child murderer|car set on fire|murder|bag over head|massacre|power outage|hanged man|held captive|hanging|death|attic|no opening credits|super-8|", "overview": "Found footage helps a true-crime novelist realize how and why a family was murdered in his new home, though his discoveries put his entire family in the path of a supernatural entity.", "text_for_embedding": "Sinister (2012). Genres: Horror, Thriller, Mystery. Found footage helps a true-crime novelist realize how and why a family was murdered in his new home, though his discoveries put his entire family in the path of a supernatural entity.. Tags: drowning, pennsylvania, child murderer, car set on fire, murder, bag over head, massacre, power outage, hanged man, held captive, hanging, death, attic, no opening credits, super-8"} +{"id": "20337", "title": "Martin Lawrence Live: Runteldat", "year": 2002, "duration_min": 113, "rating": 5.0, "genres": "Comedy", "genres_pipe": "|Comedy|", "keywords": "daily life, scandal, growing up, divorce", "tags_pipe": "|daily life|scandal|growing up|divorce|", "overview": "The controversial bad-boy of comedy delivers a piercing look at his life, lifting the metaphorical smokescreen that he feels has clouded the public view, commenting on everything from the dangers of smoking to the trials of relationships, and unleashing a nonstop litany of raucous anecdotes, stinging social commentary and very personal reflections about life.", "text_for_embedding": "Martin Lawrence Live: Runteldat (2002). Genres: Comedy. The controversial bad-boy of comedy delivers a piercing look at his life, lifting the metaphorical smokescreen that he feels has clouded the public view, commenting on everything from the dangers of smoking to the trials of relationships, and unleashing a nonstop litany of raucous anecdotes, stinging social commentary and very personal reflections about life.. Tags: daily life, scandal, growing up, divorce"} +{"id": "261", "title": "Cat on a Hot Tin Roof", "year": 1958, "duration_min": 108, "rating": 7.6, "genres": "Drama, Romance", "genres_pipe": "|Drama|Romance|", "keywords": "individual, suicide, southern usa, adultery, mississippi, depression, jealousy, wife husband relationship, dying and death, alcoholic", "tags_pipe": "|individual|suicide|southern usa|adultery|mississippi|depression|jealousy|wife husband relationship|dying and death|alcoholic|", "overview": "Brick, an alcoholic ex-football player, drinks his days away and resists the affections of his wife, Maggie. His reunion with his father, Big Daddy, who is dying of cancer, jogs a host of memories and revelations for both father and son.", "text_for_embedding": "Cat on a Hot Tin Roof (1958). Genres: Drama, Romance. Brick, an alcoholic ex-football player, drinks his days away and resists the affections of his wife, Maggie. His reunion with his father, Big Daddy, who is dying of cancer, jogs a host of memories and revelations for both father and son.. Tags: individual, suicide, southern usa, adultery, mississippi, depression, jealousy, wife husband relationship, dying and death, alcoholic"} +{"id": "1685", "title": "Beneath the Planet of the Apes", "year": 1970, "duration_min": 95, "rating": 6.2, "genres": "Adventure, Science Fiction, Mystery", "genres_pipe": "|Adventure|Science Fiction|Mystery|", "keywords": "mutant, dystopia, survivor, astronaut, ape, science, worship", "tags_pipe": "|mutant|dystopia|survivor|astronaut|ape|science|worship|", "overview": "Astronaut Brent is sent to rescue Taylor but crash lands on the Planet of the Apes, just like Taylor did in the original film. Taylor has disappeared into the Forbidden Zone so Brent and Nova try to follow and find him. He discovers a cult of humans that fear the Apes' latest military movements and finds himself in the middle. Tension mounts to a climactic battle between ape and man deep in the bowels of the planet.", "text_for_embedding": "Beneath the Planet of the Apes (1970). Genres: Adventure, Science Fiction, Mystery. Astronaut Brent is sent to rescue Taylor but crash lands on the Planet of the Apes, just like Taylor did in the original film. Taylor has disappeared into the Forbidden Zone so Brent and Nova try to follow and find him. He discovers a cult of humans that fear the Apes' latest military movements and finds himself in the middle. Tension mounts to a climactic battle between ape and man deep in the bowels of the planet.. Tags: mutant, dystopia, survivor, astronaut, ape, science, worship"} +{"id": "20737", "title": "Air Bud", "year": 1997, "duration_min": 98, "rating": 5.3, "genres": "Comedy, Family, Drama", "genres_pipe": "|Comedy|Family|Drama|", "keywords": "clown, golden retriever, dog actor", "tags_pipe": "|clown|golden retriever|dog actor|", "overview": "A young boy and a talented stray dog with an amazing basketball playing ability become instant friends. Rebounding from his father's accidental death, 12-year-old Josh Framm moves with his family to the small town of Fernfield, Washington. The new kid in town, Josh has no friends and is too shy to try out for the school basketball team. Instead he prefers to practice alone on an abandoned court, he befriends a runaway golden retriever named Buddy. Josh is amazed when he realizes that Buddy loves basketball...that is playing basketball...and he is GOOD! Josh eventually makes the school team and Buddy is named the Team Mascot. Josh and Buddy become the stars of halftime. Buddy's half-time talent draws media attention. Unfortunately, when Buddy's mean former owner, Norm Snively, comes along with a scheme to cash in on the pup's celebrity, it looks like they are going to be separated.", "text_for_embedding": "Air Bud (1997). Genres: Comedy, Family, Drama. A young boy and a talented stray dog with an amazing basketball playing ability become instant friends. Rebounding from his father's accidental death, 12-year-old Josh Framm moves with his family to the small town of Fernfield, Washington. The new kid in town, Josh has no friends and is too shy to try out for the school basketball team. Instead he prefers to practice alone on an abandoned court, he befriends a runaway golden retriever named Buddy. Josh is amazed when he realizes that Buddy loves basketball...that is playing basketball...and he is GOOD! Josh eventually makes the school team and Buddy is named the Team Mascot. Josh and Buddy become the stars of halftime. Buddy's half-time talent draws media attention. Unfortunately, when Buddy's mean former owner, Norm Snively, comes along with a scheme to cash in on the pup's celebrity, it looks like they are going to be separated.. Tags: clown, golden retriever, dog actor"} +{"id": "10991", "title": "Pokémon: Spell of the Unknown", "year": 2000, "duration_min": 93, "rating": 5.9, "genres": "Adventure, Fantasy, Animation, Action, Family", "genres_pipe": "|Adventure|Fantasy|Animation|Action|Family|", "keywords": "mountains, mountain village, friendship, based on tv series, young boy, pokémon, best friend, fighting, based on video game, pikachu, anime", "tags_pipe": "|mountains|mountain village|friendship|based on tv series|young boy|pokémon|best friend|fighting|based on video game|pikachu|anime|", "overview": "When Molly Hale's sadness of her father's disappearance get to her, she unknowingly uses the Unown to create her own dream world along with Entei, who she believes to be her father. When Entei kidnaps Ash's mom, Ash along with Misty & Brock invade the mansion looking for his mom and trying to stop the mysteries of Molly's Dream World and Entei!", "text_for_embedding": "Pokémon: Spell of the Unknown (2000). Genres: Adventure, Fantasy, Animation, Action, Family. When Molly Hale's sadness of her father's disappearance get to her, she unknowingly uses the Unown to create her own dream world along with Entei, who she believes to be her father. When Entei kidnaps Ash's mom, Ash along with Misty & Brock invade the mansion looking for his mom and trying to stop the mysteries of Molly's Dream World and Entei!. Tags: mountains, mountain village, friendship, based on tv series, young boy, pokémon, best friend, fighting, based on video game, pikachu, anime"} +{"id": "10225", "title": "Friday the 13th Part VI: Jason Lives", "year": 1986, "duration_min": 86, "rating": 5.7, "genres": "Horror, Mystery, Thriller", "genres_pipe": "|Horror|Mystery|Thriller|", "keywords": "lightning, cemetery, mask, slasher, jason vorhees", "tags_pipe": "|lightning|cemetery|mask|slasher|jason vorhees|", "overview": "As a child, Tommy killed mass-murderer Jason. But now, years later, he is tormented by the fear that maybe Jason isn’t really dead. Determined to finish off the infamous killer once and for all, Tommy and a friend dig up Jason’s corpse in order to cremate him. Unfortunately, things go seriously awry, and Jason is instead resurrected, sparking a new chain of ruthlessly brutal murders. Now it’s up to Tommy to stop the dark, devious and demented deaths that he unwittingly brought about.", "text_for_embedding": "Friday the 13th Part VI: Jason Lives (1986). Genres: Horror, Mystery, Thriller. As a child, Tommy killed mass-murderer Jason. But now, years later, he is tormented by the fear that maybe Jason isn’t really dead. Determined to finish off the infamous killer once and for all, Tommy and a friend dig up Jason’s corpse in order to cremate him. Unfortunately, things go seriously awry, and Jason is instead resurrected, sparking a new chain of ruthlessly brutal murders. Now it’s up to Tommy to stop the dark, devious and demented deaths that he unwittingly brought about.. Tags: lightning, cemetery, mask, slasher, jason vorhees"} +{"id": "826", "title": "The Bridge on the River Kwai", "year": 1957, "duration_min": 161, "rating": 7.7, "genres": "Drama, History, War", "genres_pipe": "|Drama|History|War|", "keywords": "japan, resistance, japanese, river, prisoners of war, thailand, bridge, officer", "tags_pipe": "|japan|resistance|japanese|river|prisoners of war|thailand|bridge|officer|", "overview": "The classic story of English POWs in Burma forced to build a bridge to aid the war effort of their Japanese captors. British and American intelligence officers conspire to blow up the structure, but Col. Nicholson , the commander who supervised the bridge's construction, has acquired a sense of pride in his creation and tries to foil their plans.", "text_for_embedding": "The Bridge on the River Kwai (1957). Genres: Drama, History, War. The classic story of English POWs in Burma forced to build a bridge to aid the war effort of their Japanese captors. British and American intelligence officers conspire to blow up the structure, but Col. Nicholson , the commander who supervised the bridge's construction, has acquired a sense of pride in his creation and tries to foil their plans.. Tags: japan, resistance, japanese, river, prisoners of war, thailand, bridge, officer"} +{"id": "34086", "title": "Spaced Invaders", "year": 1990, "duration_min": 100, "rating": 4.7, "genres": "Comedy, Family, Science Fiction", "genres_pipe": "|Comedy|Family|Science Fiction|", "keywords": "alien, martian, misunderstanding, greedy developer", "tags_pipe": "|alien|martian|misunderstanding|greedy developer|", "overview": "A crew of Martians overhears a radio broadcast of Orson Welles' \"War of the Worlds\" coming from Earth, and, thinking the Martian fleet is attacking Earth, they land their broken-down ship in a backwater mid-American town. As luck would have it, they land on Halloween and get mistaken for trick-or-treaters. Comedy ensues as the Martians try to get taken seriously.", "text_for_embedding": "Spaced Invaders (1990). Genres: Comedy, Family, Science Fiction. A crew of Martians overhears a radio broadcast of Orson Welles' \"War of the Worlds\" coming from Earth, and, thinking the Martian fleet is attacking Earth, they land their broken-down ship in a backwater mid-American town. As luck would have it, they land on Halloween and get mistaken for trick-or-treaters. Comedy ensues as the Martians try to get taken seriously.. Tags: alien, martian, misunderstanding, greedy developer"} +{"id": "5854", "title": "Family Plot", "year": 1976, "duration_min": 121, "rating": 6.7, "genres": "Comedy, Crime, Thriller", "genres_pipe": "|Comedy|Crime|Thriller|", "keywords": "fortune teller, kidnapping, false identity, heir, spiritualist", "tags_pipe": "|fortune teller|kidnapping|false identity|heir|spiritualist|", "overview": "Lighthearted suspense film about a phony psychic/con artist and her taxi driver/private investigator boyfriend who encounter a pair of serial kidnappers while trailing a missing heir in California.", "text_for_embedding": "Family Plot (1976). Genres: Comedy, Crime, Thriller. Lighthearted suspense film about a phony psychic/con artist and her taxi driver/private investigator boyfriend who encounter a pair of serial kidnappers while trailing a missing heir in California.. Tags: fortune teller, kidnapping, false identity, heir, spiritualist"} +{"id": "284", "title": "The Apartment", "year": 1960, "duration_min": 125, "rating": 8.1, "genres": "Comedy, Drama, Romance", "genres_pipe": "|Comedy|Drama|Romance|", "keywords": "new york, new year's eve, lovesickness, age difference, suicide attempt, office, flat, spaghetti, christmas party, winter, clerk, tennis racket, romantic comedy, extramarital affair", "tags_pipe": "|new york|new year's eve|lovesickness|age difference|suicide attempt|office|flat|spaghetti|christmas party|winter|clerk|tennis racket|romantic comedy|extramarital affair|", "overview": "Bud Baxter is a minor clerk in a huge New York insurance company, until he discovers a quick way to climb the corporate ladder. He lends out his apartment to the executives as a place to take their mistresses. Although he often has to deal with the aftermath of their visits, one night he's left with a major problem to solve.", "text_for_embedding": "The Apartment (1960). Genres: Comedy, Drama, Romance. Bud Baxter is a minor clerk in a huge New York insurance company, until he discovers a quick way to climb the corporate ladder. He lends out his apartment to the executives as a place to take their mistresses. Although he often has to deal with the aftermath of their visits, one night he's left with a major problem to solve.. Tags: new york, new year's eve, lovesickness, age difference, suicide attempt, office, flat, spaghetti, christmas party, winter, clerk, tennis racket, romantic comedy, extramarital affair"} +{"id": "10285", "title": "Jason Goes to Hell: The Final Friday", "year": 1993, "duration_min": 87, "rating": 4.2, "genres": "Fantasy, Horror, Thriller", "genres_pipe": "|Fantasy|Horror|Thriller|", "keywords": "male nudity, female nudity, waitress, camping, nudity, psychopath, sequel, murder, independent film, serial killer, diner, slasher, series of murders, violence, hockey mask", "tags_pipe": "|male nudity|female nudity|waitress|camping|nudity|psychopath|sequel|murder|independent film|serial killer|diner|slasher|series of murders|violence|hockey mask|", "overview": "Jason Voorhees, the living, breathing essence of evil, is back for one fierce, final fling! Tracked down and blown to bits by a special FBI task force, everyone now assumes that he's finally dead. But everybody assumes wrong. Jason has been reborn with the bone-chilling ability to assume the identity of anyone he touches. The terrifying truth is that he could be anywhere, or anybody. In this shocking, blood-soaked finale to Jason's carnage-ridden reign of terror, the horrible secret of his unstoppable killing instinct is finally revealed.", "text_for_embedding": "Jason Goes to Hell: The Final Friday (1993). Genres: Fantasy, Horror, Thriller. Jason Voorhees, the living, breathing essence of evil, is back for one fierce, final fling! Tracked down and blown to bits by a special FBI task force, everyone now assumes that he's finally dead. But everybody assumes wrong. Jason has been reborn with the bone-chilling ability to assume the identity of anyone he touches. The terrifying truth is that he could be anywhere, or anybody. In this shocking, blood-soaked finale to Jason's carnage-ridden reign of terror, the horrible secret of his unstoppable killing instinct is finally revealed.. Tags: male nudity, female nudity, waitress, camping, nudity, psychopath, sequel, murder, independent film, serial killer, diner, slasher, series of murders, violence, hockey mask"} +{"id": "5780", "title": "Torn Curtain", "year": 1966, "duration_min": 128, "rating": 6.4, "genres": "Mystery, Thriller", "genres_pipe": "|Mystery|Thriller|", "keywords": "cold war, east germany", "tags_pipe": "|cold war|east germany|", "overview": "An American scientist publicly defects to East Germany as part of a cloak and dagger mission to find the solution for a formula resin and then figuring out a plan to escape back to the West.", "text_for_embedding": "Torn Curtain (1966). Genres: Mystery, Thriller. An American scientist publicly defects to East Germany as part of a cloak and dagger mission to find the solution for a formula resin and then figuring out a plan to escape back to the West.. Tags: cold war, east germany"} +{"id": "292", "title": "Dave Chappelle's Block Party", "year": 2005, "duration_min": 100, "rating": 6.4, "genres": "Comedy, Documentary, Music", "genres_pipe": "|Comedy|Documentary|Music|", "keywords": "black people, hip-hop, block party, megaphone, classroom, brass band, stage", "tags_pipe": "|black people|hip-hop|block party|megaphone|classroom|brass band|stage|", "overview": "The American comedian/actor delivers a story about the alternative Hip Hop scene. A small town Ohio man’s moves to Brooklyn, New York, to throw an unprecedented block party. Filmed with inspiration from the 1973 documentary Wattstax.", "text_for_embedding": "Dave Chappelle's Block Party (2005). Genres: Comedy, Documentary, Music. The American comedian/actor delivers a story about the alternative Hip Hop scene. A small town Ohio man’s moves to Brooklyn, New York, to throw an unprecedented block party. Filmed with inspiration from the 1973 documentary Wattstax.. Tags: black people, hip-hop, block party, megaphone, classroom, brass band, stage"} +{"id": "223485", "title": "Slow West", "year": 2015, "duration_min": 84, "rating": 6.6, "genres": "Romance, Thriller, Western", "genres_pipe": "|Romance|Thriller|Western|", "keywords": "fire, bounty hunter, shotgun, horseback riding, horse, cabin, frontier, outlaw, rifle, unrequited love, death of father, native american, shootout, search, pistol", "tags_pipe": "|fire|bounty hunter|shotgun|horseback riding|horse|cabin|frontier|outlaw|rifle|unrequited love|death of father|native american|shootout|search|pistol|", "overview": "In the Old West, a 17-year-old Scottish boy teams up with a mysterious gunman to find the woman with whom he is infatuated.", "text_for_embedding": "Slow West (2015). Genres: Romance, Thriller, Western. In the Old West, a 17-year-old Scottish boy teams up with a mysterious gunman to find the woman with whom he is infatuated.. Tags: fire, bounty hunter, shotgun, horseback riding, horse, cabin, frontier, outlaw, rifle, unrequited love, death of father, native american, shootout, search, pistol"} +{"id": "29463", "title": "Krush Groove", "year": 1985, "duration_min": 97, "rating": 7.0, "genres": "Drama, Music, Romance", "genres_pipe": "|Drama|Music|Romance|", "keywords": "", "tags_pipe": "", "overview": "Russell Walker is a young, successful manager of rap performers, handling acts for the Krush Groove label, including Run-DMC and The Fat Boys. When Run-D.M.C. has a hit record and Russell needs more money to press more copies, he borrows it from a street hustler and soon regrets his decision.", "text_for_embedding": "Krush Groove (1985). Genres: Drama, Music, Romance. Russell Walker is a young, successful manager of rap performers, handling acts for the Krush Groove label, including Run-DMC and The Fat Boys. When Run-D.M.C. has a hit record and Russell needs more money to press more copies, he borrows it from a street hustler and soon regrets his decision.. Tags: "} +{"id": "18065", "title": "Next Day Air", "year": 2009, "duration_min": 84, "rating": 5.3, "genres": "Action, Comedy, Crime", "genres_pipe": "|Action|Comedy|Crime|", "keywords": "duringcreditsstinger", "tags_pipe": "|duringcreditsstinger|", "overview": "Two inept criminals are mistakenly delivered a package of cocaine and think they've hit the jackpot, triggering a series of events that changes ten people's lives forever.", "text_for_embedding": "Next Day Air (2009). Genres: Action, Comedy, Crime. Two inept criminals are mistakenly delivered a package of cocaine and think they've hit the jackpot, triggering a series of events that changes ten people's lives forever.. Tags: duringcreditsstinger"} +{"id": "22013", "title": "Elmer Gantry", "year": 1960, "duration_min": 146, "rating": 7.3, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "evangelist, revivalism", "tags_pipe": "|evangelist|revivalism|", "overview": "An ex-football player becomes a popular evangelist in the 1920s Midwest.", "text_for_embedding": "Elmer Gantry (1960). Genres: Drama. An ex-football player becomes a popular evangelist in the 1920s Midwest.. Tags: evangelist, revivalism"} +{"id": "821", "title": "Judgment at Nuremberg", "year": 1961, "duration_min": 186, "rating": 7.6, "genres": "Drama, History", "genres_pipe": "|Drama|History|", "keywords": "judge, concentration camp, world war ii, nazis, court case, national socialism, national socialist party, nuremberg trials, right and justice, trial", "tags_pipe": "|judge|concentration camp|world war ii|nazis|court case|national socialism|national socialist party|nuremberg trials|right and justice|trial|", "overview": "In 1947, four German judges who served on the bench during the Nazi regime face a military tribunal to answer charges of crimes against humanity. Chief Justice Haywood hears evidence and testimony not only from lead defendant Ernst Janning and his defense attorney Hans Rolfe, but also from the widow of a Nazi general, an idealistic U.S. Army captain and reluctant witness Irene Wallner.", "text_for_embedding": "Judgment at Nuremberg (1961). Genres: Drama, History. In 1947, four German judges who served on the bench during the Nazi regime face a military tribunal to answer charges of crimes against humanity. Chief Justice Haywood hears evidence and testimony not only from lead defendant Ernst Janning and his defense attorney Hans Rolfe, but also from the widow of a Nazi general, an idealistic U.S. Army captain and reluctant witness Irene Wallner.. Tags: judge, concentration camp, world war ii, nazis, court case, national socialism, national socialist party, nuremberg trials, right and justice, trial"} +{"id": "53862", "title": "Trippin'", "year": 1999, "duration_min": 94, "rating": 4.5, "genres": "Comedy, Romance", "genres_pipe": "|Comedy|Romance|", "keywords": "high school, prom", "tags_pipe": "|high school|prom|", "overview": "Greg is near the end of his senior year in high school, wanting to go to the prom, eyeing Cinny (the school's beauty with brains) from afar, and regularly trippin', daydreaming about being a big success as a poet, a student, a lover. His mom wants him to apply to colleges, but Greg hasn't a clue. One of his teachers, Mr. Shapic, tries to inspire him, too. He finally figures out he can get close to Cinny if he asks her for help with college applications. But friendship isn't enough, he wants romance and a prom date. So, he tells a few lies and, for awhile, it seems to be working. Then, things fall apart and Greg has to figure out how to put the trippin aside and get real.", "text_for_embedding": "Trippin' (1999). Genres: Comedy, Romance. Greg is near the end of his senior year in high school, wanting to go to the prom, eyeing Cinny (the school's beauty with brains) from afar, and regularly trippin', daydreaming about being a big success as a poet, a student, a lover. His mom wants him to apply to colleges, but Greg hasn't a clue. One of his teachers, Mr. Shapic, tries to inspire him, too. He finally figures out he can get close to Cinny if he asks her for help with college applications. But friendship isn't enough, he wants romance and a prom date. So, he tells a few lies and, for awhile, it seems to be working. Then, things fall apart and Greg has to figure out how to put the trippin aside and get real.. Tags: high school, prom"} +{"id": "3089", "title": "Red River", "year": 1948, "duration_min": 133, "rating": 7.3, "genres": "Western", "genres_pipe": "|Western|", "keywords": "texas, dangerous, kansas, cattle drive, revenge, cattle, adopted child, cattle empire", "tags_pipe": "|texas|dangerous|kansas|cattle drive|revenge|cattle|adopted child|cattle empire|", "overview": "Dunson is driving his cattle to Red River when his adopted son, Matthew, turns against him.", "text_for_embedding": "Red River (1948). Genres: Western. Dunson is driving his cattle to Red River when his adopted son, Matthew, turns against him.. Tags: texas, dangerous, kansas, cattle drive, revenge, cattle, adopted child, cattle empire"} +{"id": "30139", "title": "Phat Girlz", "year": 2006, "duration_min": 99, "rating": 3.7, "genres": "Comedy, Romance", "genres_pipe": "|Comedy|Romance|", "keywords": "woman director", "tags_pipe": "|woman director|", "overview": "Two plus-sized ladies meet the men of their dreams in the most unexpected of ways.", "text_for_embedding": "Phat Girlz (2006). Genres: Comedy, Romance. Two plus-sized ladies meet the men of their dreams in the most unexpected of ways.. Tags: woman director"} +{"id": "132344", "title": "Before Midnight", "year": 2013, "duration_min": 108, "rating": 7.4, "genres": "Romance, Drama", "genres_pipe": "|Romance|Drama|", "keywords": "hotel, airport, hotel room, greece, dream, greek, friends, author, writer, summer vacation, twins", "tags_pipe": "|hotel|airport|hotel room|greece|dream|greek|friends|author|writer|summer vacation|twins|", "overview": "We meet Jesse and Celine nine years on in Greece. Almost two decades have passed since their first meeting on that train bound for Vienna.", "text_for_embedding": "Before Midnight (2013). Genres: Romance, Drama. We meet Jesse and Celine nine years on in Greece. Almost two decades have passed since their first meeting on that train bound for Vienna.. Tags: hotel, airport, hotel room, greece, dream, greek, friends, author, writer, summer vacation, twins"} +{"id": "15582", "title": "Teen Wolf Too", "year": 1987, "duration_min": 95, "rating": 3.8, "genres": "Comedy, Fantasy, Family", "genres_pipe": "|Comedy|Fantasy|Family|", "keywords": "werewolf, teenager", "tags_pipe": "|werewolf|teenager|", "overview": "Although awkward college student Todd Howard is particularly adept at science, he's paying for school with an athletic scholarship that he will lose should he not fare well in an upcoming boxing tournament. Luckily for Todd, he has inherited the same family curse that once turned his cousin into a werewolf. As he transforms into the hairy, fanged, howling monster, he finds both his physical agility and his popularity skyrocketing -- but at what cost?", "text_for_embedding": "Teen Wolf Too (1987). Genres: Comedy, Fantasy, Family. Although awkward college student Todd Howard is particularly adept at science, he's paying for school with an athletic scholarship that he will lose should he not fare well in an upcoming boxing tournament. Luckily for Todd, he has inherited the same family curse that once turned his cousin into a werewolf. As he transforms into the hairy, fanged, howling monster, he finds both his physical agility and his popularity skyrocketing -- but at what cost?. Tags: werewolf, teenager"} +{"id": "15158", "title": "Phantasm II", "year": 1988, "duration_min": 97, "rating": 6.3, "genres": "Action, Horror, Science Fiction, Thriller", "genres_pipe": "|Action|Horror|Science Fiction|Thriller|", "keywords": "portal, undertaker, evil, tall man, sentinals", "tags_pipe": "|portal|undertaker|evil|tall man|sentinals|", "overview": "Mike, after his release from a psychiatric hospital, teams up with his old pal Reggie to hunt down the Tall Man, who is at it again. A mysterious, beautiful girl has also become part of Mike's dreams, and they must find her before the Tall Man does.", "text_for_embedding": "Phantasm II (1988). Genres: Action, Horror, Science Fiction, Thriller. Mike, after his release from a psychiatric hospital, teams up with his old pal Reggie to hunt down the Tall Man, who is at it again. A mysterious, beautiful girl has also become part of Mike's dreams, and they must find her before the Tall Man does.. Tags: portal, undertaker, evil, tall man, sentinals"} +{"id": "44634", "title": "Woman Thou Art Loosed", "year": 2004, "duration_min": 94, "rating": 5.0, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "independent film", "tags_pipe": "|independent film|", "overview": "An adaptation of Bishop T.D. Jakes' self-help novel, chronciling a woman's struggle to come to terms with her legacy of abuse, addiction and poverty.", "text_for_embedding": "Woman Thou Art Loosed (2004). Genres: Drama. An adaptation of Bishop T.D. Jakes' self-help novel, chronciling a woman's struggle to come to terms with her legacy of abuse, addiction and poverty.. Tags: independent film"} +{"id": "30309", "title": "Real Women Have Curves", "year": 2002, "duration_min": 86, "rating": 5.8, "genres": "Comedy, Drama", "genres_pipe": "|Comedy|Drama|", "keywords": "independent film, woman director", "tags_pipe": "|independent film|woman director|", "overview": "There's more to Ana Garcia than meets the eye. Should she leave home, go to college and experience life? Or stay home, get married, and keep working in her sister’s struggling garment factory? It may seem like an east decision, but for 18 year-old Ana, every choice she makes this summer will change her life. At home, she is bound to a mother who wants her to become someone she's not. But at school, she's encouraged by a teacher who sees her potential and adored by a boyfriend who loves her for who she is. Right now, Ana may be making clothes for less shapely women. But she's about to discover that real women take chances, have flaws, embrace life, and above all, have curves!", "text_for_embedding": "Real Women Have Curves (2002). Genres: Comedy, Drama. There's more to Ana Garcia than meets the eye. Should she leave home, go to college and experience life? Or stay home, get married, and keep working in her sister’s struggling garment factory? It may seem like an east decision, but for 18 year-old Ana, every choice she makes this summer will change her life. At home, she is bound to a mother who wants her to become someone she's not. But at school, she's encouraged by a teacher who sees her potential and adored by a boyfriend who loves her for who she is. Right now, Ana may be making clothes for less shapely women. But she's about to discover that real women take chances, have flaws, embrace life, and above all, have curves!. Tags: independent film, woman director"} +{"id": "7509", "title": "Water", "year": 2005, "duration_min": 115, "rating": 6.8, "genres": "Drama, Foreign, Romance", "genres_pipe": "|Drama|Foreign|Romance|", "keywords": "site of pilgrimage, widow, varanasi, hinduism, child bride, mahatma gandhi, woman director", "tags_pipe": "|site of pilgrimage|widow|varanasi|hinduism|child bride|mahatma gandhi|woman director|", "overview": "The film examines the plight of a group of widows forced into poverty at a temple in the holy city of Varanasi. It focuses on a relationship between one of the widows, who wants to escape the social restrictions imposed on widows, and a man who is from the highest caste and a follower of Mahatma Gandhi.", "text_for_embedding": "Water (2005). Genres: Drama, Foreign, Romance. The film examines the plight of a group of widows forced into poverty at a temple in the holy city of Varanasi. It focuses on a relationship between one of the widows, who wants to escape the social restrictions imposed on widows, and a man who is from the highest caste and a follower of Mahatma Gandhi.. Tags: site of pilgrimage, widow, varanasi, hinduism, child bride, mahatma gandhi, woman director"} +{"id": "10557", "title": "East Is East", "year": 1999, "duration_min": 97, "rating": 6.5, "genres": "Comedy", "genres_pipe": "|Comedy|", "keywords": "islam, hippie, father son relationship, muslim, jealousy, tradition, culture clash, religious education, modern society, pakistani, daughter, faith, integration, cultural difference", "tags_pipe": "|islam|hippie|father son relationship|muslim|jealousy|tradition|culture clash|religious education|modern society|pakistani|daughter|faith|integration|cultural difference|", "overview": "In 1971 Salford fish-and-chip shop owner George Khan expects his family to follow his strict Pakistani Muslim ways. But his children, with an English mother and having been born and brought up in Britain, increasingly see themselves as British and start to reject their father's rules on dress, food, religion, and living in general.", "text_for_embedding": "East Is East (1999). Genres: Comedy. In 1971 Salford fish-and-chip shop owner George Khan expects his family to follow his strict Pakistani Muslim ways. But his children, with an English mother and having been born and brought up in Britain, increasingly see themselves as British and start to reject their father's rules on dress, food, religion, and living in general.. Tags: islam, hippie, father son relationship, muslim, jealousy, tradition, culture clash, religious education, modern society, pakistani, daughter, faith, integration, cultural difference"} +{"id": "23531", "title": "Whipped", "year": 2000, "duration_min": 82, "rating": 3.1, "genres": "Comedy, Romance", "genres_pipe": "|Comedy|Romance|", "keywords": "independent film, diner, dating, masturbation", "tags_pipe": "|independent film|diner|dating|masturbation|", "overview": "Three to one may sound like fairly good odds, but it depends on the game. When the \"one\" is one very irresistible woman and the \"three\" are three hopelessly smitten guys, the deck is pretty stacked. In the battle of the sexes, the first rule is to never underestimate the power of a woman.", "text_for_embedding": "Whipped (2000). Genres: Comedy, Romance. Three to one may sound like fairly good odds, but it depends on the game. When the \"one\" is one very irresistible woman and the \"three\" are three hopelessly smitten guys, the deck is pretty stacked. In the battle of the sexes, the first rule is to never underestimate the power of a woman.. Tags: independent film, diner, dating, masturbation"} +{"id": "28005", "title": "Kama Sutra - A Tale of Love", "year": 1996, "duration_min": 117, "rating": 5.7, "genres": "Drama, History, Romance", "genres_pipe": "|Drama|History|Romance|", "keywords": "poetry, eroticism, woman director", "tags_pipe": "|poetry|eroticism|woman director|", "overview": "Tara and Maya are two inseparable friends in India. Their tastes, habits, and hobbies are the same. Years later, the two have matured, but have maintained their friendship. Tara gets married to the local prince, Raj Singh, who soon succeeds the throne as the sole heir. After the marriage, Raj gets bored of Tara and starts seeking another female to satisfy his sexual needs. He notices Maya and is instantly attracted to her. He has her included as one of his courtesans, and is intimate with her. Watch what happens when Tara finds out and the extent she will go to keep her marriage intact.", "text_for_embedding": "Kama Sutra - A Tale of Love (1996). Genres: Drama, History, Romance. Tara and Maya are two inseparable friends in India. Their tastes, habits, and hobbies are the same. Years later, the two have matured, but have maintained their friendship. Tara gets married to the local prince, Raj Singh, who soon succeeds the throne as the sole heir. After the marriage, Raj gets bored of Tara and starts seeking another female to satisfy his sexual needs. He notices Maya and is instantly attracted to her. He has her included as one of his courtesans, and is intimate with her. Watch what happens when Tara finds out and the extent she will go to keep her marriage intact.. Tags: poetry, eroticism, woman director"} +{"id": "40247", "title": "Please Give", "year": 2010, "duration_min": 90, "rating": 6.0, "genres": "Comedy, Drama", "genres_pipe": "|Comedy|Drama|", "keywords": "suicide, new york, infidelity, cancer, independent film, neighbor, apartment, woman director", "tags_pipe": "|suicide|new york|infidelity|cancer|independent film|neighbor|apartment|woman director|", "overview": "In New York City, a husband and wife butt heads with the granddaughters of the elderly woman who lives in the apartment the couple owns.", "text_for_embedding": "Please Give (2010). Genres: Comedy, Drama. In New York City, a husband and wife butt heads with the granddaughters of the elderly woman who lives in the apartment the couple owns.. Tags: suicide, new york, infidelity, cancer, independent film, neighbor, apartment, woman director"} +{"id": "252", "title": "Willy Wonka & the Chocolate Factory", "year": 1971, "duration_min": 100, "rating": 7.4, "genres": "Family, Fantasy", "genres_pipe": "|Family|Fantasy|", "keywords": "chocolate, factory worker, based on novel, candy, tv addicted person, overweight child, grandfather grandson relationship, factory, musical, single, teacher", "tags_pipe": "|chocolate|factory worker|based on novel|candy|tv addicted person|overweight child|grandfather grandson relationship|factory|musical|single|teacher|", "overview": "Eccentric candy man Willy Wonka prompts a worldwide frenzy when he announces that golden tickets hidden inside five of his delicious candy bars will admit their lucky holders into his top-secret confectionary. But does Wonka have an agenda hidden amid a world of Oompa Loompas and chocolate rivers?", "text_for_embedding": "Willy Wonka & the Chocolate Factory (1971). Genres: Family, Fantasy. Eccentric candy man Willy Wonka prompts a worldwide frenzy when he announces that golden tickets hidden inside five of his delicious candy bars will admit their lucky holders into his top-secret confectionary. But does Wonka have an agenda hidden amid a world of Oompa Loompas and chocolate rivers?. Tags: chocolate, factory worker, based on novel, candy, tv addicted person, overweight child, grandfather grandson relationship, factory, musical, single, teacher"} +{"id": "24126", "title": "Warlock: The Armageddon", "year": 1993, "duration_min": 98, "rating": 5.2, "genres": "Fantasy, Horror, Science Fiction", "genres_pipe": "|Fantasy|Horror|Science Fiction|", "keywords": "armageddon, warlock", "tags_pipe": "|armageddon|warlock|", "overview": "Every six hundred years, a great evil has the opportunity to escape and unleash Armageddon. A group of five stones has the power to either free the evil, or banish it for another six hundred years. An order of Druids battles with a Warlock determined to unleash his father upon the world.", "text_for_embedding": "Warlock: The Armageddon (1993). Genres: Fantasy, Horror, Science Fiction. Every six hundred years, a great evil has the opportunity to escape and unleash Armageddon. A group of five stones has the power to either free the evil, or banish it for another six hundred years. An order of Druids battles with a Warlock determined to unleash his father upon the world.. Tags: armageddon, warlock"} +{"id": "13982", "title": "8 Heads in a Duffel Bag", "year": 1997, "duration_min": 95, "rating": 5.4, "genres": "Comedy, Crime", "genres_pipe": "|Comedy|Crime|", "keywords": "mexico, vacation, murder, head", "tags_pipe": "|mexico|vacation|murder|head|", "overview": "Mafia hitman Tommy Spinelli (Joe Pesci) is flying to San Diego with a bag that holds eight severed heads, which he's bringing to his superiors to prove that some troublesome rival mobsters are permanently out of the picture. When his bag gets accidentally switched at the airport, Tommy must track down his duffel bag and the 8 heads it contains.", "text_for_embedding": "8 Heads in a Duffel Bag (1997). Genres: Comedy, Crime. Mafia hitman Tommy Spinelli (Joe Pesci) is flying to San Diego with a bag that holds eight severed heads, which he's bringing to his superiors to prove that some troublesome rival mobsters are permanently out of the picture. When his bag gets accidentally switched at the airport, Tommy must track down his duffel bag and the 8 heads it contains.. Tags: mexico, vacation, murder, head"} +{"id": "16642", "title": "Days of Heaven", "year": 1978, "duration_min": 94, "rating": 7.6, "genres": "Drama, Romance", "genres_pipe": "|Drama|Romance|", "keywords": "love triangle, chicago, wife husband relationship, texas, field, farm, marriage, love, poverty, class differences, farmer, jealous husband, boyfriend girlfriend relationship, harvest", "tags_pipe": "|love triangle|chicago|wife husband relationship|texas|field|farm|marriage|love|poverty|class differences|farmer|jealous husband|boyfriend girlfriend relationship|harvest|", "overview": "In 1910, a Chicago steel worker accidentally kills his supervisor and flees to the Texas panhandle with his girlfriend and little sister to work harvesting wheat in the fields of a stoic farmer. A love triangle, a swarm of locusts, a hellish fire—Malick captures it all with dreamlike authenticity, creating at once a timeless American idyll and a gritty evocation of turn-of-the-century labor.", "text_for_embedding": "Days of Heaven (1978). Genres: Drama, Romance. In 1910, a Chicago steel worker accidentally kills his supervisor and flees to the Texas panhandle with his girlfriend and little sister to work harvesting wheat in the fields of a stoic farmer. A love triangle, a swarm of locusts, a hellish fire—Malick captures it all with dreamlike authenticity, creating at once a timeless American idyll and a gritty evocation of turn-of-the-century labor.. Tags: love triangle, chicago, wife husband relationship, texas, field, farm, marriage, love, poverty, class differences, farmer, jealous husband, boyfriend girlfriend relationship, harvest"} +{"id": "17734", "title": "Thirteen Conversations About One Thing", "year": 2001, "duration_min": 104, "rating": 6.4, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "independent film, woman director", "tags_pipe": "|independent film|woman director|", "overview": "The lives of a lawyer, an actuary, a housecleaner, a professor, and the people around them intersect as they ponder order and happiness in the face of life's cold unpredictability.", "text_for_embedding": "Thirteen Conversations About One Thing (2001). Genres: Drama. The lives of a lawyer, an actuary, a housecleaner, a professor, and the people around them intersect as they ponder order and happiness in the face of life's cold unpredictability.. Tags: independent film, woman director"} +{"id": "18892", "title": "Jawbreaker", "year": 1999, "duration_min": 87, "rating": 5.9, "genres": "Comedy", "genres_pipe": "|Comedy|", "keywords": "confession, jealousy, nightmare, ambition, groupie, high school, cafeteria, revenge, prom, dead body, dating, fashion, rock band, fantasy sequence, slow motion", "tags_pipe": "|confession|jealousy|nightmare|ambition|groupie|high school|cafeteria|revenge|prom|dead body|dating|fashion|rock band|fantasy sequence|slow motion|", "overview": "3 of Reagan High School's most popular girls pretend to kidnap their friend by shoving a jawbreaker into the victim's mouth to keep her from screaming. Their plan goes awry when the girl swallows the jawbreaker, choking to death. Now the leader of the pack will do anything to keep the accident a secret.", "text_for_embedding": "Jawbreaker (1999). Genres: Comedy. 3 of Reagan High School's most popular girls pretend to kidnap their friend by shoving a jawbreaker into the victim's mouth to keep her from screaming. Their plan goes awry when the girl swallows the jawbreaker, choking to death. Now the leader of the pack will do anything to keep the accident a secret.. Tags: confession, jealousy, nightmare, ambition, groupie, high school, cafeteria, revenge, prom, dead body, dating, fashion, rock band, fantasy sequence, slow motion"} +{"id": "549", "title": "Basquiat", "year": 1996, "duration_min": 108, "rating": 6.6, "genres": "Drama, History", "genres_pipe": "|Drama|History|", "keywords": "new york, sex, drug abuse, homeless person, new love, drug addiction, overdose, graffiti, street art, vernissage, exhibit, friendship, independent film, drug, celebration", "tags_pipe": "|new york|sex|drug abuse|homeless person|new love|drug addiction|overdose|graffiti|street art|vernissage|exhibit|friendship|independent film|drug|celebration|", "overview": "Director Julian Schnabel illustrates the portrait of his friend, the first Afro-American Pop Art artist Jean Michel Basquiat who unfortunately died at a young age and just as he was beginning to make a name for himself in the art world. Along side the biography of Basquiat are the artists and the art scene from the early 1980’s New York.", "text_for_embedding": "Basquiat (1996). Genres: Drama, History. Director Julian Schnabel illustrates the portrait of his friend, the first Afro-American Pop Art artist Jean Michel Basquiat who unfortunately died at a young age and just as he was beginning to make a name for himself in the art world. Along side the biography of Basquiat are the artists and the art scene from the early 1980’s New York.. Tags: new york, sex, drug abuse, homeless person, new love, drug addiction, overdose, graffiti, street art, vernissage, exhibit, friendship, independent film, drug, celebration"} +{"id": "121986", "title": "Frances Ha", "year": 2013, "duration_min": 86, "rating": 7.2, "genres": "Comedy, Drama", "genres_pipe": "|Comedy|Drama|", "keywords": "friendship, loneliness, black and white, responsibility, late coming of age", "tags_pipe": "|friendship|loneliness|black and white|responsibility|late coming of age|", "overview": "An aspiring dancer moves to New York City and becomes caught up in a whirlwind of flighty fair-weather friends, diminishing fortunes and career setbacks.", "text_for_embedding": "Frances Ha (2013). Genres: Comedy, Drama. An aspiring dancer moves to New York City and becomes caught up in a whirlwind of flighty fair-weather friends, diminishing fortunes and career setbacks.. Tags: friendship, loneliness, black and white, responsibility, late coming of age"} +{"id": "868", "title": "Tsotsi", "year": 2005, "duration_min": 94, "rating": 6.9, "genres": "Crime, Drama", "genres_pipe": "|Crime|Drama|", "keywords": "slum, baby, fight, nudity, leader, johannesburg, police, love, friends, murder, gang, teenager, violence, criminal, hijack", "tags_pipe": "|slum|baby|fight|nudity|leader|johannesburg|police|love|friends|murder|gang|teenager|violence|criminal|hijack|", "overview": "The South African multi-award winning film about a young South African boy from the ghetto named Tsotsi, meaning Gangster. Tsotsi, who left home as a child to get away from helpless parents, finds a baby in the back seat of a car that he has just stolen. He decides that it his responsibility to take care of the baby and in the process learns that maybe the gangster life isn’t the best way.", "text_for_embedding": "Tsotsi (2005). Genres: Crime, Drama. The South African multi-award winning film about a young South African boy from the ghetto named Tsotsi, meaning Gangster. Tsotsi, who left home as a child to get away from helpless parents, finds a baby in the back seat of a car that he has just stolen. He decides that it his responsibility to take care of the baby and in the process learns that maybe the gangster life isn’t the best way.. Tags: slum, baby, fight, nudity, leader, johannesburg, police, love, friends, murder, gang, teenager, violence, criminal, hijack"} +{"id": "10683", "title": "Happiness", "year": 1998, "duration_min": 139, "rating": 7.4, "genres": "Comedy, Drama", "genres_pipe": "|Comedy|Drama|", "keywords": "rape, sister sister relationship, lover (female), pedophilia, sister, partnership, stalker, secret love, independent film, relationship, extramarital affair, family conflict, unhappiness", "tags_pipe": "|rape|sister sister relationship|lover (female)|pedophilia|sister|partnership|stalker|secret love|independent film|relationship|extramarital affair|family conflict|unhappiness|", "overview": "The lives of many individuals connected by the desire for happiness, often from sources usually considered dark or evil.", "text_for_embedding": "Happiness (1998). Genres: Comedy, Drama. The lives of many individuals connected by the desire for happiness, often from sources usually considered dark or evil.. Tags: rape, sister sister relationship, lover (female), pedophilia, sister, partnership, stalker, secret love, independent film, relationship, extramarital affair, family conflict, unhappiness"} +{"id": "17995", "title": "DysFunktional Family", "year": 2003, "duration_min": 89, "rating": 6.1, "genres": "Comedy, Documentary", "genres_pipe": "|Comedy|Documentary|", "keywords": "", "tags_pipe": "", "overview": "Between sets from his hilarious live stand-up routine, in which he riffs on everything from Michael Jackson to terrorism, comedian Eddie Griffin tours his hometown of Kansas City and introduces viewers to his eccentric clan in this edgy mockumentary. Griffin's uproarious family members include oddballs such as Uncle Buckey, a former pimp, and Uncle Curtis, who possesses an extensive porn collection ... much of which he filmed himself!", "text_for_embedding": "DysFunktional Family (2003). Genres: Comedy, Documentary. Between sets from his hilarious live stand-up routine, in which he riffs on everything from Michael Jackson to terrorism, comedian Eddie Griffin tours his hometown of Kansas City and introduces viewers to his eccentric clan in this edgy mockumentary. Griffin's uproarious family members include oddballs such as Uncle Buckey, a former pimp, and Uncle Curtis, who possesses an extensive porn collection ... much of which he filmed himself!. Tags: "} +{"id": "246403", "title": "Tusk", "year": 2014, "duration_min": 102, "rating": 5.1, "genres": "Comedy, Horror", "genres_pipe": "|Comedy|Horror|", "keywords": "canada, obsession, walrus, deception, search, disfigurement, experimental surgery, abduction", "tags_pipe": "|canada|obsession|walrus|deception|search|disfigurement|experimental surgery|abduction|", "overview": "When his best friend and podcast co-host goes missing in the backwoods of Canada, a young guy joins forces with his friend's girlfriend to search for him.", "text_for_embedding": "Tusk (2014). Genres: Comedy, Horror. When his best friend and podcast co-host goes missing in the backwoods of Canada, a young guy joins forces with his friend's girlfriend to search for him.. Tags: canada, obsession, walrus, deception, search, disfigurement, experimental surgery, abduction"} +{"id": "670", "title": "Oldboy", "year": 2003, "duration_min": 120, "rating": 8.0, "genres": "Drama, Thriller, Mystery, Action", "genres_pipe": "|Drama|Thriller|Mystery|Action|", "keywords": "sushi restaurant, rage and hate, notebook, daughter, hostility, sin, revenge, loneliness, urination, anger, catholic, incest, south hypnosis", "tags_pipe": "|sushi restaurant|rage and hate|notebook|daughter|hostility|sin|revenge|loneliness|urination|anger|catholic|incest|south hypnosis|", "overview": "With no clue how he came to be imprisoned, drugged and tortured for 15 years, a desperate businessman seeks revenge on his captors.", "text_for_embedding": "Oldboy (2003). Genres: Drama, Thriller, Mystery, Action. With no clue how he came to be imprisoned, drugged and tortured for 15 years, a desperate businessman seeks revenge on his captors.. Tags: sushi restaurant, rage and hate, notebook, daughter, hostility, sin, revenge, loneliness, urination, anger, catholic, incest, south hypnosis"} +{"id": "35691", "title": "Letters to God", "year": 2010, "duration_min": 110, "rating": 6.5, "genres": "Action, Drama, Family, Thriller", "genres_pipe": "|Action|Drama|Family|Thriller|", "keywords": "letter, hope, postman, god, cancer, independent film, aftercreditsstinger", "tags_pipe": "|letter|hope|postman|god|cancer|independent film|aftercreditsstinger|", "overview": "A young boy fighting cancer writes letters to God, touching lives in his neighborhood and inspiring hope among everyone he comes in contact. An unsuspecting substitute postman, with a troubled life of his own, becomes entangled in the boy's journey and his family by reading the letters. They inspire him to seek a better life for himself and his own son he's lost through his alcohol addiction.", "text_for_embedding": "Letters to God (2010). Genres: Action, Drama, Family, Thriller. A young boy fighting cancer writes letters to God, touching lives in his neighborhood and inspiring hope among everyone he comes in contact. An unsuspecting substitute postman, with a troubled life of his own, becomes entangled in the boy's journey and his family by reading the letters. They inspire him to seek a better life for himself and his own son he's lost through his alcohol addiction.. Tags: letter, hope, postman, god, cancer, independent film, aftercreditsstinger"} +{"id": "49010", "title": "Hobo with a Shotgun", "year": 2011, "duration_min": 86, "rating": 5.7, "genres": "Action, Comedy, Thriller", "genres_pipe": "|Action|Comedy|Thriller|", "keywords": "female nudity, prostitute, shotgun, pimp, underwear, dystopia, vigilante, blood, massacre, brutality, violence, spitting blood, white suit, genocide, body mutilation", "tags_pipe": "|female nudity|prostitute|shotgun|pimp|underwear|dystopia|vigilante|blood|massacre|brutality|violence|spitting blood|white suit|genocide|body mutilation|", "overview": "A vigilante homeless man pulls into a new city and finds himself trapped in urban chaos, a city where crime rules and where the city's crime boss reigns. Seeing an urban landscape filled with armed robbers, corrupt cops, abused prostitutes and even a pedophile Santa, the Hobo goes about bringing justice to the city the best way he knows how - with a 20-gauge shotgun. Mayhem ensues when he tries to make things better for the future generation. Street justice will indeed prevail.", "text_for_embedding": "Hobo with a Shotgun (2011). Genres: Action, Comedy, Thriller. A vigilante homeless man pulls into a new city and finds himself trapped in urban chaos, a city where crime rules and where the city's crime boss reigns. Seeing an urban landscape filled with armed robbers, corrupt cops, abused prostitutes and even a pedophile Santa, the Hobo goes about bringing justice to the city the best way he knows how - with a 20-gauge shotgun. Mayhem ensues when he tries to make things better for the future generation. Street justice will indeed prevail.. Tags: female nudity, prostitute, shotgun, pimp, underwear, dystopia, vigilante, blood, massacre, brutality, violence, spitting blood, white suit, genocide, body mutilation"} +{"id": "317930", "title": "Compadres", "year": 2016, "duration_min": 101, "rating": 5.2, "genres": "Action, Comedy", "genres_pipe": "|Action|Comedy|", "keywords": "", "tags_pipe": "", "overview": "A disgruntled Mexican cop is forced to work with a teenage hacker to hunt down the criminals who killed his wife, and dismantle their operation.", "text_for_embedding": "Compadres (2016). Genres: Action, Comedy. A disgruntled Mexican cop is forced to work with a teenage hacker to hunt down the criminals who killed his wife, and dismantle their operation.. Tags: "} +{"id": "11229", "title": "Freeway", "year": 1996, "duration_min": 110, "rating": 6.5, "genres": "Comedy, Drama, Thriller", "genres_pipe": "|Comedy|Drama|Thriller|", "keywords": "prison, attempt to escape, step father, independent film, hitchhiker", "tags_pipe": "|prison|attempt to escape|step father|independent film|hitchhiker|", "overview": "Following the arrest of her mother, Ramona, young Vanessa Lutz decides to go in search of her estranged grandmother. On the way, she is given a ride by school counselor Bob Wolverton. During the journey, Lutz begins to realize that Bob is the notorious I-5 Killer and manages to escape by shooting him several times. Wounded but still very much alive, Bob pursues Lutz across the state in this modern retelling of Little Red Riding Hood.", "text_for_embedding": "Freeway (1996). Genres: Comedy, Drama, Thriller. Following the arrest of her mother, Ramona, young Vanessa Lutz decides to go in search of her estranged grandmother. On the way, she is given a ride by school counselor Bob Wolverton. During the journey, Lutz begins to realize that Bob is the notorious I-5 Killer and manages to escape by shooting him several times. Wounded but still very much alive, Bob pursues Lutz across the state in this modern retelling of Little Red Riding Hood.. Tags: prison, attempt to escape, step father, independent film, hitchhiker"} +{"id": "22488", "title": "Love's Abiding Joy", "year": 2006, "duration_min": 87, "rating": 5.8, "genres": "TV Movie, Action, Drama, Family", "genres_pipe": "|TV Movie|Action|Drama|Family|", "keywords": "", "tags_pipe": "", "overview": "The continued Westward journey of settlers Missie and Willie Lahaye. Their roots now firmly planted as they set up homestead in the far West, Missie begins to realize her passion for teaching as Willie cares for the couple's young daughter Kathy while expanding the family ranch with a little help from sons Jeff and Matthew. When the frontier railroad comes to town, the pleasure of a long-promised visit from Missie's father Clark is suddenly offset by the tragic death of young Kathy. As the untimely demise of their beloved daughter begins to drive an emotional wedge between Missie and Willie, the devastated father unexpectedly accepts an offer made by the powerful Samuel Doros to assume the role of town sheriff. Their faith shaken and their once close-knit bond suddenly torn asunder, Missie and Willie desperately attempt to bring their crumbling family back together as son Jeff faces a series of dangers while hopelessly falling for Doros' beautiful daughter Colette.", "text_for_embedding": "Love's Abiding Joy (2006). Genres: TV Movie, Action, Drama, Family. The continued Westward journey of settlers Missie and Willie Lahaye. Their roots now firmly planted as they set up homestead in the far West, Missie begins to realize her passion for teaching as Willie cares for the couple's young daughter Kathy while expanding the family ranch with a little help from sons Jeff and Matthew. When the frontier railroad comes to town, the pleasure of a long-promised visit from Missie's father Clark is suddenly offset by the tragic death of young Kathy. As the untimely demise of their beloved daughter begins to drive an emotional wedge between Missie and Willie, the devastated father unexpectedly accepts an offer made by the powerful Samuel Doros to assume the role of town sheriff. Their faith shaken and their once close-knit bond suddenly torn asunder, Missie and Willie desperately attempt to bring their crumbling family back together as son Jeff faces a series of dangers while hopelessly falling for Doros' beautiful daughter Colette.. Tags: "} +{"id": "24469", "title": "Fish Tank", "year": 2009, "duration_min": 123, "rating": 6.9, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "dancing, mother, alcohol, sex, adultery, fight, nudity, sister, friendship, party, independent film, school, essex, teenager, theft", "tags_pipe": "|dancing|mother|alcohol|sex|adultery|fight|nudity|sister|friendship|party|independent film|school|essex|teenager|theft|", "overview": "Everything changes for 15 year old Mia when her mum brings home a new boyfriend.", "text_for_embedding": "Fish Tank (2009). Genres: Drama. Everything changes for 15 year old Mia when her mum brings home a new boyfriend.. Tags: dancing, mother, alcohol, sex, adultery, fight, nudity, sister, friendship, party, independent film, school, essex, teenager, theft"} +{"id": "82533", "title": "Damsels in Distress", "year": 2012, "duration_min": 99, "rating": 5.6, "genres": "Comedy, Romance", "genres_pipe": "|Comedy|Romance|", "keywords": "college, female friendship, young adult", "tags_pipe": "|college|female friendship|young adult|", "overview": "A trio of beautiful girls set out to revolutionize life at a grungy American university: the dynamic leader Violet Wister, principled Rose and sexy Heather. They welcome transfer student Lily into their group which seeks to help severely depressed students with a program of good hygiene and musical dance numbers.", "text_for_embedding": "Damsels in Distress (2012). Genres: Comedy, Romance. A trio of beautiful girls set out to revolutionize life at a grungy American university: the dynamic leader Violet Wister, principled Rose and sexy Heather. They welcome transfer student Lily into their group which seeks to help severely depressed students with a program of good hygiene and musical dance numbers.. Tags: college, female friendship, young adult"} +{"id": "50942", "title": "Creature", "year": 1998, "duration_min": 176, "rating": 4.0, "genres": "Horror, Science Fiction, Thriller", "genres_pipe": "|Horror|Science Fiction|Thriller|", "keywords": "", "tags_pipe": "", "overview": "An amphibious shark-like monster terrorizes an abandoned secret military base and the people who live on the island it is located on. A marine biologist, as well as several other people, try to stop it before it is too late...", "text_for_embedding": "Creature (1998). Genres: Horror, Science Fiction, Thriller. An amphibious shark-like monster terrorizes an abandoned secret military base and the people who live on the island it is located on. A marine biologist, as well as several other people, try to stop it before it is too late.... Tags: "} +{"id": "84174", "title": "Bachelorette", "year": 2012, "duration_min": 87, "rating": 5.3, "genres": "Comedy, Romance", "genres_pipe": "|Comedy|Romance|", "keywords": "bridesmaid, strip club, female friendship, reunion, drug use, wedding, wedding dress, childhood friends, woman director, bachelorette party, bitch, fat woman", "tags_pipe": "|bridesmaid|strip club|female friendship|reunion|drug use|wedding|wedding dress|childhood friends|woman director|bachelorette party|bitch|fat woman|", "overview": "Three friends are asked to be bridesmaids at a wedding of a woman they used to ridicule back in high school.", "text_for_embedding": "Bachelorette (2012). Genres: Comedy, Romance. Three friends are asked to be bridesmaids at a wedding of a woman they used to ridicule back in high school.. Tags: bridesmaid, strip club, female friendship, reunion, drug use, wedding, wedding dress, childhood friends, woman director, bachelorette party, bitch, fat woman"} +{"id": "34099", "title": "Brave New Girl", "year": 2004, "duration_min": 120, "rating": 3.7, "genres": "Drama, Music, Family", "genres_pipe": "|Drama|Music|Family|", "keywords": "tv movie", "tags_pipe": "|tv movie|", "overview": "Holly has everything it takes to be a star; the voice, the dream and the dedication, but she lacks the means to break away from her humble Texas upbringing. Then she gets the chance to attend an art and music school on the East coast and her future suddenly looks bright. But the road to stardom is a bumpy one.", "text_for_embedding": "Brave New Girl (2004). Genres: Drama, Music, Family. Holly has everything it takes to be a star; the voice, the dream and the dedication, but she lacks the means to break away from her humble Texas upbringing. Then she gets the chance to attend an art and music school on the East coast and her future suddenly looks bright. But the road to stardom is a bumpy one.. Tags: tv movie"} +{"id": "79940", "title": "Tim and Eric's Billion Dollar Movie", "year": 2012, "duration_min": 94, "rating": 5.2, "genres": "Comedy", "genres_pipe": "|Comedy|", "keywords": "restaurant, wolf, shopping mall, filmmaker, billion dollars, fake commercial", "tags_pipe": "|restaurant|wolf|shopping mall|filmmaker|billion dollars|fake commercial|", "overview": "Two guys get a billion dollars to make a movie, only to watch their dream run off course.", "text_for_embedding": "Tim and Eric's Billion Dollar Movie (2012). Genres: Comedy. Two guys get a billion dollars to make a movie, only to watch their dream run off course.. Tags: restaurant, wolf, shopping mall, filmmaker, billion dollars, fake commercial"} +{"id": "342", "title": "Summer Storm", "year": 2004, "duration_min": 98, "rating": 6.7, "genres": "Comedy, Drama", "genres_pipe": "|Comedy|Drama|", "keywords": "holiday, gay, male nudity, competition, sexual identity, sex, lovesickness, heterosexual, coming out, row, lake, camping, tent, summer camp, friendship", "tags_pipe": "|holiday|gay|male nudity|competition|sexual identity|sex|lovesickness|heterosexual|coming out|row|lake|camping|tent|summer camp|friendship|", "overview": "Tobi and Achim, the pride of the local crew club, have been the best of friends for years and are convinced that nothing will ever stand in the way of their friendship. They look forward to the upcoming summer camp and the crew competition. Then the gay team from Berlin arrives and Tobi is totally confused. The evening before the races begin, the storm that breaks out is more than meteorlogical...", "text_for_embedding": "Summer Storm (2004). Genres: Comedy, Drama. Tobi and Achim, the pride of the local crew club, have been the best of friends for years and are convinced that nothing will ever stand in the way of their friendship. They look forward to the upcoming summer camp and the crew competition. Then the gay team from Berlin arrives and Tobi is totally confused. The evening before the races begin, the storm that breaks out is more than meteorlogical.... Tags: holiday, gay, male nudity, competition, sexual identity, sex, lovesickness, heterosexual, coming out, row, lake, camping, tent, summer camp, friendship"} +{"id": "38033", "title": "Chain Letter", "year": 2010, "duration_min": 96, "rating": 3.9, "genres": "Horror, Thriller", "genres_pipe": "|Horror|Thriller|", "keywords": "killing, friendship, teenager, maniac, mysterious letter, text message, threat", "tags_pipe": "|killing|friendship|teenager|maniac|mysterious letter|text message|threat|", "overview": "Six friends receive a mysterious chain letter via text messaging and in their email accounts from a maniac who's hunting down teenagers who fail to forward his online chain letter. Who knew they should take the threats in the chain letter seriously? Or that chain letters using the teens' favorite technologies to track them can kill? This maniacal game pits friend against friend as they race to beat rules that seem impossible to escape. Break the chain, lose a life. Do you pass it on? Does friendship mean anything?", "text_for_embedding": "Chain Letter (2010). Genres: Horror, Thriller. Six friends receive a mysterious chain letter via text messaging and in their email accounts from a maniac who's hunting down teenagers who fail to forward his online chain letter. Who knew they should take the threats in the chain letter seriously? Or that chain letters using the teens' favorite technologies to track them can kill? This maniacal game pits friend against friend as they race to beat rules that seem impossible to escape. Break the chain, lose a life. Do you pass it on? Does friendship mean anything?. Tags: killing, friendship, teenager, maniac, mysterious letter, text message, threat"} +{"id": "100975", "title": "Just Looking", "year": 1999, "duration_min": 97, "rating": 5.8, "genres": "Drama, Comedy", "genres_pipe": "|Drama|Comedy|", "keywords": "new york, nurse, sex, infidelity, nudity, romance, independent film, neighbor, teenager, voyeurism, curious", "tags_pipe": "|new york|nurse|sex|infidelity|nudity|romance|independent film|neighbor|teenager|voyeurism|curious|", "overview": "It's 1955. Lenny is a 14-year old boy who is totally fascinated by sex. He is too scared to \"do it,\" so he dedicates his summer to seeing two other people do it. Easier said than done. Caught in the act of spying, his mother and stepfather ship him off to spend the summer with his aunt and uncle in \"the country\" -- Queens. His plan looks like a bust and his summer seems destined for boredom, until he meets a whole new group of friends -- young teens who have a \"sex club.\"", "text_for_embedding": "Just Looking (1999). Genres: Drama, Comedy. It's 1955. Lenny is a 14-year old boy who is totally fascinated by sex. He is too scared to \"do it,\" so he dedicates his summer to seeing two other people do it. Easier said than done. Caught in the act of spying, his mother and stepfather ship him off to spend the summer with his aunt and uncle in \"the country\" -- Queens. His plan looks like a bust and his summer seems destined for boredom, until he meets a whole new group of friends -- young teens who have a \"sex club.\". Tags: new york, nurse, sex, infidelity, nudity, romance, independent film, neighbor, teenager, voyeurism, curious"} +{"id": "38541", "title": "The Divide", "year": 2011, "duration_min": 112, "rating": 5.7, "genres": "Science Fiction", "genres_pipe": "|Science Fiction|", "keywords": "basement, violence, septic tank, town in panic, welding, gunshot", "tags_pipe": "|basement|violence|septic tank|town in panic|welding|gunshot|", "overview": "Survivors of a nuclear attack are grouped together for days in the basement of their apartment building, where fear and dwindling supplies wear away at their dynamic.", "text_for_embedding": "The Divide (2011). Genres: Science Fiction. Survivors of a nuclear attack are grouped together for days in the basement of their apartment building, where fear and dwindling supplies wear away at their dynamic.. Tags: basement, violence, septic tank, town in panic, welding, gunshot"} +{"id": "39563", "title": "The Eclipse", "year": 2009, "duration_min": 88, "rating": 6.1, "genres": "Drama, Horror, Romance", "genres_pipe": "|Drama|Horror|Romance|", "keywords": "", "tags_pipe": "", "overview": "Michael Farr (Hinds) is a widower living in a misty Irish seaside town who is struggling to adjust to his new role as the sole caretaker of his two children. Still reeling from the death of his wife, he has been plagued by terrifying apparitions. When he volunteers at a local literary festival, he finds himself drawn to Lena Morelle (Hjejle), an empathetic author of supernatural fiction (Hjelje). While Lena tries to help Michael with the mystery of his nightmarish visions, she must contend with problems of her own—she’s being jealously pursued by a self-obsessed novelist (Quinn), her one-time lover. As the three adults’ lives converge, the turbulence of the phantom world will soon have nothing on that of the living.", "text_for_embedding": "The Eclipse (2009). Genres: Drama, Horror, Romance. Michael Farr (Hinds) is a widower living in a misty Irish seaside town who is struggling to adjust to his new role as the sole caretaker of his two children. Still reeling from the death of his wife, he has been plagued by terrifying apparitions. When he volunteers at a local literary festival, he finds himself drawn to Lena Morelle (Hjejle), an empathetic author of supernatural fiction (Hjelje). While Lena tries to help Michael with the mystery of his nightmarish visions, she must contend with problems of her own—she’s being jealously pursued by a self-obsessed novelist (Quinn), her one-time lover. As the three adults’ lives converge, the turbulence of the phantom world will soon have nothing on that of the living.. Tags: "} +{"id": "234212", "title": "Demonic", "year": 2015, "duration_min": 83, "rating": 4.9, "genres": "Thriller, Horror", "genres_pipe": "|Thriller|Horror|", "keywords": "detective, haunted house, investigation, anti-christ, possession, car crash, trance, video camera, demon, seance, infra red, missing", "tags_pipe": "|detective|haunted house|investigation|anti-christ|possession|car crash|trance|video camera|demon|seance|infra red|missing|", "overview": "A police officer and a psychologist investigate the deaths of five people who were killed while trying to summon ghosts.", "text_for_embedding": "Demonic (2015). Genres: Thriller, Horror. A police officer and a psychologist investigate the deaths of five people who were killed while trying to summon ghosts.. Tags: detective, haunted house, investigation, anti-christ, possession, car crash, trance, video camera, demon, seance, infra red, missing"} +{"id": "27404", "title": "My Big Fat Independent Movie", "year": 2005, "duration_min": 80, "rating": 3.0, "genres": "Comedy", "genres_pipe": "|Comedy|", "keywords": "independent film", "tags_pipe": "|independent film|", "overview": "This film is a spoof along the lines of \"Scary Movie\" and \"Not Another Teen Movie.\" It includes parodies of some of the indie film world's most renowned movies such as \"Memento,\" \"Pulp Fiction,\" \"Magnolia,\" \"My Big Fat Greek Wedding,\" \"Amelie,\" \"Run Lola Run,\" \"El Mariachi,\" \"The Good Girl,\" \"Pi,\" \"Swingers\" and many others.", "text_for_embedding": "My Big Fat Independent Movie (2005). Genres: Comedy. This film is a spoof along the lines of \"Scary Movie\" and \"Not Another Teen Movie.\" It includes parodies of some of the indie film world's most renowned movies such as \"Memento,\" \"Pulp Fiction,\" \"Magnolia,\" \"My Big Fat Greek Wedding,\" \"Amelie,\" \"Run Lola Run,\" \"El Mariachi,\" \"The Good Girl,\" \"Pi,\" \"Swingers\" and many others.. Tags: independent film"} +{"id": "170480", "title": "The Deported", "year": 2010, "duration_min": 90, "rating": 0.0, "genres": "Comedy, Family", "genres_pipe": "|Comedy|Family|", "keywords": "", "tags_pipe": "", "overview": "An Italian-American actor is deported to Mexico by some crooked INS Agents, and a pack of orphans helps him find his way back to America", "text_for_embedding": "The Deported (2010). Genres: Comedy, Family. An Italian-American actor is deported to Mexico by some crooked INS Agents, and a pack of orphans helps him find his way back to America. Tags: "} +{"id": "71866", "title": "Tanner Hall", "year": 2009, "duration_min": 96, "rating": 5.4, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "boarding school, woman director", "tags_pipe": "|boarding school|woman director|", "overview": "Tanner Hall is a vivid peek into the private world of an all-girls boarding school. In a cozy, but run down New England, the knot of adolescent complexity is unraveled through the coming of age stories of four teen-age girls.", "text_for_embedding": "Tanner Hall (2009). Genres: Drama. Tanner Hall is a vivid peek into the private world of an all-girls boarding school. In a cozy, but run down New England, the knot of adolescent complexity is unraveled through the coming of age stories of four teen-age girls.. Tags: boarding school, woman director"} +{"id": "192210", "title": "Open Road", "year": 2013, "duration_min": 85, "rating": 5.2, "genres": "Action, Drama, Thriller", "genres_pipe": "|Action|Drama|Thriller|", "keywords": "drug dealer, police, killer, illegal drugs, dealer", "tags_pipe": "|drug dealer|police|killer|illegal drugs|dealer|", "overview": "Angie, a young Brazilian artist, abandons her old life and embarks on a journey around the country. Running from her past, and searching for her foundation in life, Angie finds not only herself but love in its many forms.", "text_for_embedding": "Open Road (2013). Genres: Action, Drama, Thriller. Angie, a young Brazilian artist, abandons her old life and embarks on a journey around the country. Running from her past, and searching for her foundation in life, Angie finds not only herself but love in its many forms.. Tags: drug dealer, police, killer, illegal drugs, dealer"} +{"id": "180296", "title": "They Came Together", "year": 2014, "duration_min": 84, "rating": 5.3, "genres": "Comedy", "genres_pipe": "|Comedy|", "keywords": "", "tags_pipe": "", "overview": "A small business owner is about to lose her shop to a major corporate development.", "text_for_embedding": "They Came Together (2014). Genres: Comedy. A small business owner is about to lose her shop to a major corporate development.. Tags: "} +{"id": "157058", "title": "30 Nights of Paranormal Activity With the Devil Inside the Girl With the Dragon Tattoo", "year": 2013, "duration_min": 80, "rating": 2.9, "genres": "Comedy", "genres_pipe": "|Comedy|", "keywords": "parody, horror comedy", "tags_pipe": "|parody|horror comedy|", "overview": "After a stint in a psychiatric hospital, a young woman returns to the house where her father killed the entire cast of The Artist during his exorcism.", "text_for_embedding": "30 Nights of Paranormal Activity With the Devil Inside the Girl With the Dragon Tattoo (2013). Genres: Comedy. After a stint in a psychiatric hospital, a young woman returns to the house where her father killed the entire cast of The Artist during his exorcism.. Tags: parody, horror comedy"} +{"id": "70006", "title": "Never Back Down 2: The Beatdown", "year": 2011, "duration_min": 90, "rating": 5.8, "genres": "Drama, Action", "genres_pipe": "|Drama|Action|", "keywords": "male nudity, cage, kiss, fistfight, sport, cage fighting, kickboxer, martial arts tournament, beefcake, martial arts training", "tags_pipe": "|male nudity|cage|kiss|fistfight|sport|cage fighting|kickboxer|martial arts tournament|beefcake|martial arts training|", "overview": "Four fighters different backgrounds come together to train under an ex MMA rising star and then ultimately have to fight each other and the traitor in heir midst.", "text_for_embedding": "Never Back Down 2: The Beatdown (2011). Genres: Drama, Action. Four fighters different backgrounds come together to train under an ex MMA rising star and then ultimately have to fight each other and the traitor in heir midst.. Tags: male nudity, cage, kiss, fistfight, sport, cage fighting, kickboxer, martial arts tournament, beefcake, martial arts training"} +{"id": "26039", "title": "Point Blank", "year": 1967, "duration_min": 92, "rating": 7.1, "genres": "Action, Crime, Drama, Thriller", "genres_pipe": "|Action|Crime|Drama|Thriller|", "keywords": "alcatraz, revenge, organized crime", "tags_pipe": "|alcatraz|revenge|organized crime|", "overview": "After being double-crossed and left for dead, a mysterious man named Walker single-mindedly tries to retrieve the rather inconsequential sum of money that was stolen from him.", "text_for_embedding": "Point Blank (1967). Genres: Action, Crime, Drama, Thriller. After being double-crossed and left for dead, a mysterious man named Walker single-mindedly tries to retrieve the rather inconsequential sum of money that was stolen from him.. Tags: alcatraz, revenge, organized crime"} +{"id": "79587", "title": "Four Single Fathers", "year": 2009, "duration_min": 100, "rating": 0.0, "genres": "Drama, Comedy", "genres_pipe": "|Drama|Comedy|", "keywords": "", "tags_pipe": "", "overview": "A comedy/drama about four Italian single fathers trying to cope with American ex-wives, children, family, and new relationships, set in New York and Rome.", "text_for_embedding": "Four Single Fathers (2009). Genres: Drama, Comedy. A comedy/drama about four Italian single fathers trying to cope with American ex-wives, children, family, and new relationships, set in New York and Rome.. Tags: "} +{"id": "176077", "title": "Enter the Dangerous Mind", "year": 2013, "duration_min": 88, "rating": 4.8, "genres": "Thriller", "genres_pipe": "|Thriller|", "keywords": "composer, obsession", "tags_pipe": "|composer|obsession|", "overview": "A psychological thriller set in the world of underground dubstep, Snap is the story of Jim Whitman, a brilliant but painfully introverted musician who develops a crush on a young social worker.", "text_for_embedding": "Enter the Dangerous Mind (2013). Genres: Thriller. A psychological thriller set in the world of underground dubstep, Snap is the story of Jim Whitman, a brilliant but painfully introverted musician who develops a crush on a young social worker.. Tags: composer, obsession"} +{"id": "260947", "title": "Something Wicked", "year": 2014, "duration_min": 95, "rating": 4.6, "genres": "Mystery, Thriller", "genres_pipe": "|Mystery|Thriller|", "keywords": "obsession, oregon, independent film", "tags_pipe": "|obsession|oregon|independent film|", "overview": "A young couple embark upon their honeymoon against the chilling landscapes of the Pacific Northwest. But when tragedy strikes, gruesome secrets from their past collide with sinister forces of the present...", "text_for_embedding": "Something Wicked (2014). Genres: Mystery, Thriller. A young couple embark upon their honeymoon against the chilling landscapes of the Pacific Northwest. But when tragedy strikes, gruesome secrets from their past collide with sinister forces of the present.... Tags: obsession, oregon, independent film"} +{"id": "342502", "title": "AWOL-72", "year": 2015, "duration_min": 79, "rating": 2.8, "genres": "Thriller", "genres_pipe": "|Thriller|", "keywords": "russian, getaway, lapd, awol, special ops", "tags_pipe": "|russian|getaway|lapd|awol|special ops|", "overview": "An AWOL marine in possession of secret government information, is a wanted man, pursued by Russian special ops, the LAPD, and a dangerous assassin.", "text_for_embedding": "AWOL-72 (2015). Genres: Thriller. An AWOL marine in possession of secret government information, is a wanted man, pursued by Russian special ops, the LAPD, and a dangerous assassin.. Tags: russian, getaway, lapd, awol, special ops"} +{"id": "191229", "title": "Iguana", "year": 1988, "duration_min": 88, "rating": 6.0, "genres": "", "genres_pipe": "", "keywords": "", "tags_pipe": "", "overview": "A grotesquely disfigured harpooner called Iguana is severely mistreated by his fellow sailors on a whaling ship in the 19th century. One night he escapes and takes up residence on a remote island. He makes himself ruler of the island and declares war on mankind. Anyone unfortunate enough to wind up on the island with Iguana is subjected to his cruel tyranny.", "text_for_embedding": "Iguana (1988). Genres: . A grotesquely disfigured harpooner called Iguana is severely mistreated by his fellow sailors on a whaling ship in the 19th century. One night he escapes and takes up residence on a remote island. He makes himself ruler of the island and declares war on mankind. Anyone unfortunate enough to wind up on the island with Iguana is subjected to his cruel tyranny.. Tags: "} +{"id": "43213", "title": "Chicago Overcoat", "year": 2009, "duration_min": 95, "rating": 6.1, "genres": "Action, Crime, Thriller", "genres_pipe": "|Action|Crime|Thriller|", "keywords": "", "tags_pipe": "", "overview": "The fates of an aging hitman and a washed up detective become entwined when one last job leads to one last chance to settle an old score.", "text_for_embedding": "Chicago Overcoat (2009). Genres: Action, Crime, Thriller. The fates of an aging hitman and a washed up detective become entwined when one last job leads to one last chance to settle an old score.. Tags: "} +{"id": "44594", "title": "Barry Munday", "year": 2010, "duration_min": 95, "rating": 6.3, "genres": "Comedy, Drama, Romance", "genres_pipe": "|Comedy|Drama|Romance|", "keywords": "based on novel, letter, paternity, castration, doctor, pregnancy, lamborghini, testicles, air guitar, genital mutilation", "tags_pipe": "|based on novel|letter|paternity|castration|doctor|pregnancy|lamborghini|testicles|air guitar|genital mutilation|", "overview": "Barry Munday, a libido-driven wage slave who spends all his time either ogling, fantasizing about or trying to pick up women, wakes up in hospital after a freak attack only to find that his testicles have been removed.", "text_for_embedding": "Barry Munday (2010). Genres: Comedy, Drama, Romance. Barry Munday, a libido-driven wage slave who spends all his time either ogling, fantasizing about or trying to pick up women, wakes up in hospital after a freak attack only to find that his testicles have been removed.. Tags: based on novel, letter, paternity, castration, doctor, pregnancy, lamborghini, testicles, air guitar, genital mutilation"} +{"id": "666", "title": "Central Station", "year": 1998, "duration_min": 113, "rating": 7.6, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "brazilian, brazil, rio de janeiro, letter, wilderness, teacher, alcoholic, railroad, missing father, long lost relative, realism", "tags_pipe": "|brazilian|brazil|rio de janeiro|letter|wilderness|teacher|alcoholic|railroad|missing father|long lost relative|realism|", "overview": "An emotive journey of a former school teacher, who writes letters for illiterate people, and a young boy, whose mother has just died, as they search for the father he never knew.", "text_for_embedding": "Central Station (1998). Genres: Drama. An emotive journey of a former school teacher, who writes letters for illiterate people, and a young boy, whose mother has just died, as they search for the father he never knew.. Tags: brazilian, brazil, rio de janeiro, letter, wilderness, teacher, alcoholic, railroad, missing father, long lost relative, realism"} +{"id": "248", "title": "Pocketful of Miracles", "year": 1961, "duration_min": 136, "rating": 7.3, "genres": "Comedy, Drama", "genres_pipe": "|Comedy|Drama|", "keywords": "dude, prohibition, deception, new york city, apple, luck, dowager, high society, 1930s", "tags_pipe": "|dude|prohibition|deception|new york city|apple|luck|dowager|high society|1930s|", "overview": "Damon Runyon's fairytale, sweet and funny, is told by director Frank Capra. Boozy, brassy Apple Annie, a beggar with a basket of apples, is as much as part of downtown New York as old Broadway itself. Bootlegger Dave the Dude is a sucker for her apples --- he thinks they bring him luck. But Dave and girlfriend Queenie Martin need a lot more than luck when it turns out that Annie is in a jam and only they can help: Annie's daughter Louise, who has lived all her life in a Spanish convent, is coming to America with a Count and his son. The count's son wants to marry Louise, who thinks her mother is part of New York society. It's up to Dave and Queenie and their Runyonesque cronies to turn Annie into a lady and convince the Count and his son that they are hobnobbing with New York's elite.", "text_for_embedding": "Pocketful of Miracles (1961). Genres: Comedy, Drama. Damon Runyon's fairytale, sweet and funny, is told by director Frank Capra. Boozy, brassy Apple Annie, a beggar with a basket of apples, is as much as part of downtown New York as old Broadway itself. Bootlegger Dave the Dude is a sucker for her apples --- he thinks they bring him luck. But Dave and girlfriend Queenie Martin need a lot more than luck when it turns out that Annie is in a jam and only they can help: Annie's daughter Louise, who has lived all her life in a Spanish convent, is coming to America with a Count and his son. The count's son wants to marry Louise, who thinks her mother is part of New York society. It's up to Dave and Queenie and their Runyonesque cronies to turn Annie into a lady and convince the Count and his son that they are hobnobbing with New York's elite.. Tags: dude, prohibition, deception, new york city, apple, luck, dowager, high society, 1930s"} +{"id": "325173", "title": "Close Range", "year": 2015, "duration_min": 80, "rating": 4.9, "genres": "Crime, Action", "genres_pipe": "|Crime|Action|", "keywords": "", "tags_pipe": "", "overview": "A rogue soldier turned outlaw is thrust into a relentless fight with a corrupt sheriff, his obedient deputies, and a dangerous drug cartel in order to protect his sister and her young daughter.", "text_for_embedding": "Close Range (2015). Genres: Crime, Action. A rogue soldier turned outlaw is thrust into a relentless fight with a corrupt sheriff, his obedient deputies, and a dangerous drug cartel in order to protect his sister and her young daughter.. Tags: "} +{"id": "55831", "title": "Boynton Beach Club", "year": 2005, "duration_min": 105, "rating": 6.8, "genres": "Comedy, Drama, Romance", "genres_pipe": "|Comedy|Drama|Romance|", "keywords": "independent film", "tags_pipe": "|independent film|", "overview": "A handful of men and women of a certain age pick up the pieces of their lives and look for new love after the loss of their mates in this comedy drama from writer-director Susan Seidelman.", "text_for_embedding": "Boynton Beach Club (2005). Genres: Comedy, Drama, Romance. A handful of men and women of a certain age pick up the pieces of their lives and look for new love after the loss of their mates in this comedy drama from writer-director Susan Seidelman.. Tags: independent film"} +{"id": "351043", "title": "Amnesiac", "year": 2015, "duration_min": 90, "rating": 4.1, "genres": "Thriller, Mystery, Drama, Horror", "genres_pipe": "|Thriller|Mystery|Drama|Horror|", "keywords": "", "tags_pipe": "", "overview": "The story of a man who wakes up in bed suffering from memory loss after being in an accident, only to begin to suspect that his wife may not be his real wife and that a web of lies and deceit deepen inside the house where he soon finds himself a prisoner.", "text_for_embedding": "Amnesiac (2015). Genres: Thriller, Mystery, Drama, Horror. The story of a man who wakes up in bed suffering from memory loss after being in an accident, only to begin to suspect that his wife may not be his real wife and that a web of lies and deceit deepen inside the house where he soon finds himself a prisoner.. Tags: "} +{"id": "43942", "title": "Freakonomics", "year": 2010, "duration_min": 93, "rating": 6.6, "genres": "Documentary", "genres_pipe": "|Documentary|", "keywords": "female nudity, corruption, cheating, experiment, limousine, high school, independent film, student, economics, real estate, woman director", "tags_pipe": "|female nudity|corruption|cheating|experiment|limousine|high school|independent film|student|economics|real estate|woman director|", "overview": "Some of the world's most innovative documentary filmmakers will explore the hidden side of everything.", "text_for_embedding": "Freakonomics (2010). Genres: Documentary. Some of the world's most innovative documentary filmmakers will explore the hidden side of everything.. Tags: female nudity, corruption, cheating, experiment, limousine, high school, independent film, student, economics, real estate, woman director"} +{"id": "10226", "title": "High Tension", "year": 2003, "duration_min": 91, "rating": 6.6, "genres": "Horror, Thriller, Mystery", "genres_pipe": "|Horror|Thriller|Mystery|", "keywords": "mass murder, insanity, gore, survival, farmhouse, extreme violence, maniac, home invasion, bound and gagged, circular saw, new french extremism", "tags_pipe": "|mass murder|insanity|gore|survival|farmhouse|extreme violence|maniac|home invasion|bound and gagged|circular saw|new french extremism|", "overview": "Alexia travels with her friend Marie to spend a couple of days with her family in their farm in the country. They arrive late and they are welcomed by Alexia's father. Late in the night, a sadistic and sick killer breaks into the farmhouse, slaughters Alexia's family--including their dog--and kidnaps Alexia. Marie hides from the criminal and tries to help the hysterical and frightened Alexia, chase the maniac, and disclose his identity in the end.", "text_for_embedding": "High Tension (2003). Genres: Horror, Thriller, Mystery. Alexia travels with her friend Marie to spend a couple of days with her family in their farm in the country. They arrive late and they are welcomed by Alexia's father. Late in the night, a sadistic and sick killer breaks into the farmhouse, slaughters Alexia's family--including their dog--and kidnaps Alexia. Marie hides from the criminal and tries to help the hysterical and frightened Alexia, chase the maniac, and disclose his identity in the end.. Tags: mass murder, insanity, gore, survival, farmhouse, extreme violence, maniac, home invasion, bound and gagged, circular saw, new french extremism"} +{"id": "66942", "title": "Griff the Invisible", "year": 2011, "duration_min": 93, "rating": 6.1, "genres": "Romance, Comedy, Drama", "genres_pipe": "|Romance|Comedy|Drama|", "keywords": "love, superhero, independent film, comedy", "tags_pipe": "|love|superhero|independent film|comedy|", "overview": "Griff, office worker by day, superhero by night, has his world turned upside down when he meets Melody, a beautiful young scientist who shares his passion for the impossible.", "text_for_embedding": "Griff the Invisible (2011). Genres: Romance, Comedy, Drama. Griff, office worker by day, superhero by night, has his world turned upside down when he meets Melody, a beautiful young scientist who shares his passion for the impossible.. Tags: love, superhero, independent film, comedy"} +{"id": "356483", "title": "Unnatural", "year": 2015, "duration_min": 89, "rating": 4.3, "genres": "Thriller, Action, Horror", "genres_pipe": "|Thriller|Action|Horror|", "keywords": "climate change, polar bear", "tags_pipe": "|climate change|polar bear|", "overview": "Global climate change prompts a scientific corporation to genetically modify Alaskan polar bears with horrific and deadly results.", "text_for_embedding": "Unnatural (2015). Genres: Thriller, Action, Horror. Global climate change prompts a scientific corporation to genetically modify Alaskan polar bears with horrific and deadly results.. Tags: climate change, polar bear"} +{"id": "10476", "title": "Hustle & Flow", "year": 2005, "duration_min": 116, "rating": 6.9, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "rap music, hip-hop, baby, midlife crisis, drug dealer, career, musical, rapper, independent film", "tags_pipe": "|rap music|hip-hop|baby|midlife crisis|drug dealer|career|musical|rapper|independent film|", "overview": "With help from his friends, a Memphis pimp in a mid-life crisis attempts to become a successful hip-hop emcee.", "text_for_embedding": "Hustle & Flow (2005). Genres: Drama. With help from his friends, a Memphis pimp in a mid-life crisis attempts to become a successful hip-hop emcee.. Tags: rap music, hip-hop, baby, midlife crisis, drug dealer, career, musical, rapper, independent film"} +{"id": "239", "title": "Some Like It Hot", "year": 1959, "duration_min": 122, "rating": 8.0, "genres": "Comedy, Romance", "genres_pipe": "|Comedy|Romance|", "keywords": "chicago, witness, musician, mafia, cross dressing, band, spats, all girl band, st. valentine's day massacre, sugar, valentine's day, dressing", "tags_pipe": "|chicago|witness|musician|mafia|cross dressing|band|spats|all girl band|st. valentine's day massacre|sugar|valentine's day|dressing|", "overview": "Two musicians witness a mob hit and struggle to find a way out of the city before they are found by the gangsters. Their only opportunity is to join an all-girl band as they leave on a tour. To make their getaway they must first disguise themselves as women, then keep their identities secret and deal with the problems this brings - such as an attractive bandmate and a very determined suitor.", "text_for_embedding": "Some Like It Hot (1959). Genres: Comedy, Romance. Two musicians witness a mob hit and struggle to find a way out of the city before they are found by the gangsters. Their only opportunity is to join an all-girl band as they leave on a tour. To make their getaway they must first disguise themselves as women, then keep their identities secret and deal with the problems this brings - such as an attractive bandmate and a very determined suitor.. Tags: chicago, witness, musician, mafia, cross dressing, band, spats, all girl band, st. valentine's day massacre, sugar, valentine's day, dressing"} +{"id": "10281", "title": "Friday the 13th Part VII: The New Blood", "year": 1988, "duration_min": 88, "rating": 5.3, "genres": "Horror, Thriller", "genres_pipe": "|Horror|Thriller|", "keywords": "lake, mask, telekinesis, psychopath, slasher, teenager, psychiatrist, jason vorhees", "tags_pipe": "|lake|mask|telekinesis|psychopath|slasher|teenager|psychiatrist|jason vorhees|", "overview": "Tina possesses the gift of telekinesis, allowing her to move things and see the future, using the power of her mind. But when a devious doctor tries to exploit her ability, the gift becomes a hellish curse. Tina unwittingly unchains the merciless bloodthirsty Jason Voorhees from his watery grave, igniting a bloodbath that ends in the ultimate showdown in strength of mind versus pure evil matter.", "text_for_embedding": "Friday the 13th Part VII: The New Blood (1988). Genres: Horror, Thriller. Tina possesses the gift of telekinesis, allowing her to move things and see the future, using the power of her mind. But when a devious doctor tries to exploit her ability, the gift becomes a hellish curse. Tina unwittingly unchains the merciless bloodthirsty Jason Voorhees from his watery grave, igniting a bloodbath that ends in the ultimate showdown in strength of mind versus pure evil matter.. Tags: lake, mask, telekinesis, psychopath, slasher, teenager, psychiatrist, jason vorhees"} +{"id": "630", "title": "The Wizard of Oz", "year": 1939, "duration_min": 102, "rating": 7.4, "genres": "Adventure, Family, Fantasy", "genres_pipe": "|Adventure|Family|Fantasy|", "keywords": "witch, adolescence, based on novel, secret identity, clock, dream, lion, tornado, scarecrow, musical, crow, music, kansas, classic, imaginary land", "tags_pipe": "|witch|adolescence|based on novel|secret identity|clock|dream|lion|tornado|scarecrow|musical|crow|music|kansas|classic|imaginary land|", "overview": "Young Dorothy finds herself in a magical world where she makes friends with a lion, a scarecrow and a tin man as they make their way along the yellow brick road to talk with the Wizard and ask for the things they miss most in their lives. The Wicked Witch of the West is the only thing that could stop them.", "text_for_embedding": "The Wizard of Oz (1939). Genres: Adventure, Family, Fantasy. Young Dorothy finds herself in a magical world where she makes friends with a lion, a scarecrow and a tin man as they make their way along the yellow brick road to talk with the Wizard and ask for the things they miss most in their lives. The Wicked Witch of the West is the only thing that could stop them.. Tags: witch, adolescence, based on novel, secret identity, clock, dream, lion, tornado, scarecrow, musical, crow, music, kansas, classic, imaginary land"} +{"id": "3034", "title": "Young Frankenstein", "year": 1974, "duration_min": 106, "rating": 7.7, "genres": "Comedy, Science Fiction", "genres_pipe": "|Comedy|Science Fiction|", "keywords": "experiment, castle, assistant, bride, frankenstein, laboratory, mad scientist, mobster, spoof, horror spoof, scientist, frankenstein's monster", "tags_pipe": "|experiment|castle|assistant|bride|frankenstein|laboratory|mad scientist|mobster|spoof|horror spoof|scientist|frankenstein's monster|", "overview": "A young neurosurgeon inherits the castle of his grandfather, the famous Dr. Victor von Frankenstein. In the castle he finds a funny hunchback, a pretty lab assistant and the elderly housekeeper. Young Frankenstein believes that the work of his grandfather was delusional, but when he discovers the book where the mad doctor described his reanimation experiment, he suddenly changes his mind.", "text_for_embedding": "Young Frankenstein (1974). Genres: Comedy, Science Fiction. A young neurosurgeon inherits the castle of his grandfather, the famous Dr. Victor von Frankenstein. In the castle he finds a funny hunchback, a pretty lab assistant and the elderly housekeeper. Young Frankenstein believes that the work of his grandfather was delusional, but when he discovers the book where the mad doctor described his reanimation experiment, he suddenly changes his mind.. Tags: experiment, castle, assistant, bride, frankenstein, laboratory, mad scientist, mobster, spoof, horror spoof, scientist, frankenstein's monster"} +{"id": "13025", "title": "Diary of the Dead", "year": 2007, "duration_min": 95, "rating": 5.4, "genres": "Horror, Action, Science Fiction", "genres_pipe": "|Horror|Action|Science Fiction|", "keywords": "zombie, found footage", "tags_pipe": "|zombie|found footage|", "overview": "A group of young film students run into real-life zombies while filming a horror movie of their own.", "text_for_embedding": "Diary of the Dead (2007). Genres: Horror, Action, Science Fiction. A group of young film students run into real-life zombies while filming a horror movie of their own.. Tags: zombie, found footage"} +{"id": "21461", "title": "Lage Raho Munna Bhai", "year": 2006, "duration_min": 144, "rating": 7.6, "genres": "Comedy, Drama, Romance", "genres_pipe": "|Comedy|Drama|Romance|", "keywords": "historical figure, comedy, bollywood, india", "tags_pipe": "|historical figure|comedy|bollywood|india|", "overview": "A hilarious underworld gangster known as Munna Bhai falls comically in love with a radio host by the name of Jahnvi, who runs an elders' home, which is taken over by an unscrupulous builder, who gets the residents kicked out ironically with the help of Munna's sidekick, Circuit, while Munna is busy romancing Jahnvi elsewhere.", "text_for_embedding": "Lage Raho Munna Bhai (2006). Genres: Comedy, Drama, Romance. A hilarious underworld gangster known as Munna Bhai falls comically in love with a radio host by the name of Jahnvi, who runs an elders' home, which is taken over by an unscrupulous builder, who gets the residents kicked out ironically with the help of Munna's sidekick, Circuit, while Munna is busy romancing Jahnvi elsewhere.. Tags: historical figure, comedy, bollywood, india"} +{"id": "55306", "title": "Ulee's Gold", "year": 1997, "duration_min": 112, "rating": 6.5, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "father son relationship, florida, stolen money, dysfunctional family, independent film, stabbing, bank robbery, father-in-law daughter-in-law relationship, beekeeper, orlando florida", "tags_pipe": "|father son relationship|florida|stolen money|dysfunctional family|independent film|stabbing|bank robbery|father-in-law daughter-in-law relationship|beekeeper|orlando florida|", "overview": "An elderly beekeeper and Vietnam vet must rescue his daughter-in-law and protect his grandchildren from killers.", "text_for_embedding": "Ulee's Gold (1997). Genres: Drama. An elderly beekeeper and Vietnam vet must rescue his daughter-in-law and protect his grandchildren from killers.. Tags: father son relationship, florida, stolen money, dysfunctional family, independent film, stabbing, bank robbery, father-in-law daughter-in-law relationship, beekeeper, orlando florida"} +{"id": "17264", "title": "The Black Stallion", "year": 1979, "duration_min": 118, "rating": 7.0, "genres": "Adventure, Family", "genres_pipe": "|Adventure|Family|", "keywords": "poker, horse, barn, training, sport, rescue, survival, deserted island, stallion", "tags_pipe": "|poker|horse|barn|training|sport|rescue|survival|deserted island|stallion|", "overview": "While traveling with his father, young Alec becomes fascinated by a mysterious Arabian stallion that is brought on board and stabled in the ship he is sailing on. When it tragically sinks both he and the horse survive only to be stranded on a deserted island. He befriends it, so when finally rescued both return to his home where they soon meet Henry Dailey, a once successful trainer. Together they begin training the horse to race against the fastest ones in the world.", "text_for_embedding": "The Black Stallion (1979). Genres: Adventure, Family. While traveling with his father, young Alec becomes fascinated by a mysterious Arabian stallion that is brought on board and stabled in the ship he is sailing on. When it tragically sinks both he and the horse survive only to be stranded on a deserted island. He befriends it, so when finally rescued both return to his home where they soon meet Henry Dailey, a once successful trainer. Together they begin training the horse to race against the fastest ones in the world.. Tags: poker, horse, barn, training, sport, rescue, survival, deserted island, stallion"} +{"id": "16016", "title": "Journey to Saturn", "year": 2008, "duration_min": 90, "rating": 4.9, "genres": "Action, Adventure, Animation, Comedy, Science Fiction", "genres_pipe": "|Action|Adventure|Animation|Comedy|Science Fiction|", "keywords": "", "tags_pipe": "", "overview": "A Danish crew of misfits travel to Saturn in search for natural resources. However, the planet is colonized by a ruthless army of Aliens that turn their eye on Earth and invade Denmark. Thus, the crew change their mission to liberate Denmark.", "text_for_embedding": "Journey to Saturn (2008). Genres: Action, Adventure, Animation, Comedy, Science Fiction. A Danish crew of misfits travel to Saturn in search for natural resources. However, the planet is colonized by a ruthless army of Aliens that turn their eye on Earth and invade Denmark. Thus, the crew change their mission to liberate Denmark.. Tags: "} +{"id": "15875", "title": "Donovan's Reef", "year": 1963, "duration_min": 109, "rating": 6.0, "genres": "Adventure, Comedy, Romance", "genres_pipe": "|Adventure|Comedy|Romance|", "keywords": "birthday, half-brother, priest, mission clinic, polynesia, bar brawl, christmas, piano, half sister, navy veterans, tiki culture", "tags_pipe": "|birthday|half-brother|priest|mission clinic|polynesia|bar brawl|christmas|piano|half sister|navy veterans|tiki culture|", "overview": "'Guns' Donovan prefers carousing with his pals Doc Dedham and 'Boats' Gilhooley, until Dedham's high-society daughter Amelia shows up in their South Seas paradise.", "text_for_embedding": "Donovan's Reef (1963). Genres: Adventure, Comedy, Romance. 'Guns' Donovan prefers carousing with his pals Doc Dedham and 'Boats' Gilhooley, until Dedham's high-society daughter Amelia shows up in their South Seas paradise.. Tags: birthday, half-brother, priest, mission clinic, polynesia, bar brawl, christmas, piano, half sister, navy veterans, tiki culture"} +{"id": "5900", "title": "The Dress", "year": 1996, "duration_min": 103, "rating": 7.0, "genres": "Comedy, Drama", "genres_pipe": "|Comedy|Drama|", "keywords": "calamity", "tags_pipe": "|calamity|", "overview": "The story of a summer dress and those who have to do with it, especially the train conductor (played by van Warmerdam, the director). The dress functions as catalyst for the whimsical events, which turns out to be either tragic or hilarious.", "text_for_embedding": "The Dress (1996). Genres: Comedy, Drama. The story of a summer dress and those who have to do with it, especially the train conductor (played by van Warmerdam, the director). The dress functions as catalyst for the whimsical events, which turns out to be either tragic or hilarious.. Tags: calamity"} +{"id": "43306", "title": "A Guy Named Joe", "year": 1944, "duration_min": 120, "rating": 6.0, "genres": "Drama, Romance, War", "genres_pipe": "|Drama|Romance|War|", "keywords": "pilot, airplane, ghost", "tags_pipe": "|pilot|airplane|ghost|", "overview": "Pete Sandidge (Tracy), a daredevil bomber pilot, dies when he crashes his plane into a German aircraft carrier, leaving his devoted girlfriend, Dorinda (Irene Dunne), who is also a pilot, heartbroken. In heaven, Pete receives a new assignment: he is to become the guardian angel for Ted Randall (Van Johnson), a young Army flyer. Invisibly, Pete guides Ted through flight school and into combat, but the ectoplasmic mentor's tolerance is tested when Ted falls for Dorinda. Ultimately, however, Pete not only comes to terms with their relationship but also acts as Dorinda's copilot when she undertakes a dangerous bombing raid, so that Ted won't have to. Remade by Steven Speilberg in 1989 as ALWAYS", "text_for_embedding": "A Guy Named Joe (1944). Genres: Drama, Romance, War. Pete Sandidge (Tracy), a daredevil bomber pilot, dies when he crashes his plane into a German aircraft carrier, leaving his devoted girlfriend, Dorinda (Irene Dunne), who is also a pilot, heartbroken. In heaven, Pete receives a new assignment: he is to become the guardian angel for Ted Randall (Van Johnson), a young Army flyer. Invisibly, Pete guides Ted through flight school and into combat, but the ectoplasmic mentor's tolerance is tested when Ted falls for Dorinda. Ultimately, however, Pete not only comes to terms with their relationship but also acts as Dorinda's copilot when she undertakes a dangerous bombing raid, so that Ted won't have to. Remade by Steven Speilberg in 1989 as ALWAYS. Tags: pilot, airplane, ghost"} +{"id": "11072", "title": "Blazing Saddles", "year": 1974, "duration_min": 93, "rating": 7.2, "genres": "Western, Comedy", "genres_pipe": "|Western|Comedy|", "keywords": "gun, saloon, governor, marching band, comedy, western, spoof, interrupted hanging, railroad, cowboy, western town, western spoof, ceremony, frontier town, looking at the camera", "tags_pipe": "|gun|saloon|governor|marching band|comedy|western|spoof|interrupted hanging|railroad|cowboy|western town|western spoof|ceremony|frontier town|looking at the camera|", "overview": "A town – where everyone seems to be named Johnson – is in the way of the railroad and, in order to grab their land, Hedley Lemar, a politically connected nasty person, sends in his henchmen to make the town unlivable. After the sheriff is killed, the town demands a new sheriff from the Governor, so Hedley convinces him to send the town the first black sheriff in the west.", "text_for_embedding": "Blazing Saddles (1974). Genres: Western, Comedy. A town – where everyone seems to be named Johnson – is in the way of the railroad and, in order to grab their land, Hedley Lemar, a politically connected nasty person, sends in his henchmen to make the town unlivable. After the sheriff is killed, the town demands a new sheriff from the Governor, so Hedley convinces him to send the town the first black sheriff in the west.. Tags: gun, saloon, governor, marching band, comedy, western, spoof, interrupted hanging, railroad, cowboy, western town, western spoof, ceremony, frontier town, looking at the camera"} +{"id": "9730", "title": "Friday the 13th: The Final Chapter", "year": 1984, "duration_min": 91, "rating": 5.9, "genres": "Horror, Thriller", "genres_pipe": "|Horror|Thriller|", "keywords": "lake, resurrection, morgue, serial killer, jason vorhees, hitchhike", "tags_pipe": "|lake|resurrection|morgue|serial killer|jason vorhees|hitchhike|", "overview": "After the Crystal Lake Massacres, Jason is pronounced dead and taken to the hospital morgue, where he is mysteriously revived, allowing his diabolical killing spree to continue at the camp where the gruesome slaughtering began. But this time, in addition to terrified teenagers, he meets a young boy named Tommy who has a special talent for horror masks and make up, leading up to a horrifying, bloody battle! Has Jason finally met his match?", "text_for_embedding": "Friday the 13th: The Final Chapter (1984). Genres: Horror, Thriller. After the Crystal Lake Massacres, Jason is pronounced dead and taken to the hospital morgue, where he is mysteriously revived, allowing his diabolical killing spree to continue at the camp where the gruesome slaughtering began. But this time, in addition to terrified teenagers, he meets a young boy named Tommy who has a special talent for horror masks and make up, leading up to a horrifying, bloody battle! Has Jason finally met his match?. Tags: lake, resurrection, morgue, serial killer, jason vorhees, hitchhike"} +{"id": "209274", "title": "Ida", "year": 2013, "duration_min": 80, "rating": 7.1, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "nun, mine, jew, jewish, poland", "tags_pipe": "|nun|mine|jew|jewish|poland|", "overview": "Poland, 1962. Anna is a novice, an orphan brought up by nuns in a convent. Before she takes her vows, she is determined to see Wanda, her only living relative. Wanda tells Anna that Anna is Jewish. Both women embark on a journey not only to discover their tragic family story, but who they really are and where they belong, questioning their religions and beliefs.", "text_for_embedding": "Ida (2013). Genres: Drama. Poland, 1962. Anna is a novice, an orphan brought up by nuns in a convent. Before she takes her vows, she is determined to see Wanda, her only living relative. Wanda tells Anna that Anna is Jewish. Both women embark on a journey not only to discover their tragic family story, but who they really are and where they belong, questioning their religions and beliefs.. Tags: nun, mine, jew, jewish, poland"} +{"id": "26371", "title": "Maurice", "year": 1987, "duration_min": 134, "rating": 7.1, "genres": "Drama, Romance", "genres_pipe": "|Drama|Romance|", "keywords": "gay, coming out, british, gay relationship, coming of age, lgbt child, lgbt, best friends in love", "tags_pipe": "|gay|coming out|british|gay relationship|coming of age|lgbt child|lgbt|best friends in love|", "overview": "After his lover rejects him, a young man trapped by the oppressiveness of Edwardian society tries to come to terms with and accept his sexuality.", "text_for_embedding": "Maurice (1987). Genres: Drama, Romance. After his lover rejects him, a young man trapped by the oppressiveness of Edwardian society tries to come to terms with and accept his sexuality.. Tags: gay, coming out, british, gay relationship, coming of age, lgbt child, lgbt, best friends in love"} +{"id": "14137", "title": "Beer League", "year": 2006, "duration_min": 86, "rating": 5.3, "genres": "Comedy", "genres_pipe": "|Comedy|", "keywords": "baseball, sport", "tags_pipe": "|baseball|sport|", "overview": "An unemployed slacker (Lange) inspires his softball teammates to improve their game so they won't get kicked out of the local league.", "text_for_embedding": "Beer League (2006). Genres: Comedy. An unemployed slacker (Lange) inspires his softball teammates to improve their game so they won't get kicked out of the local league.. Tags: baseball, sport"} +{"id": "291", "title": "Riding Giants", "year": 2004, "duration_min": 105, "rating": 7.6, "genres": "Documentary", "genres_pipe": "|Documentary|", "keywords": "ocean, california, sea, beach, surfer, hawaii, wave, sun, surfboard, lifestyle, extremsport", "tags_pipe": "|ocean|california|sea|beach|surfer|hawaii|wave|sun|surfboard|lifestyle|extremsport|", "overview": "Riding Giants is story about big wave surfers who have become heroes and legends in their sport. Directed by the skateboard guru Stacy Peralta.", "text_for_embedding": "Riding Giants (2004). Genres: Documentary. Riding Giants is story about big wave surfers who have become heroes and legends in their sport. Directed by the skateboard guru Stacy Peralta.. Tags: ocean, california, sea, beach, surfer, hawaii, wave, sun, surfboard, lifestyle, extremsport"} +{"id": "14139", "title": "Timecrimes", "year": 2007, "duration_min": 92, "rating": 7.0, "genres": "Science Fiction, Thriller", "genres_pipe": "|Science Fiction|Thriller|", "keywords": "scissors, radio, nudity, time, woods, surrealism, travel, independent film, scientist, machine, nonlinear timeline, binoculars, injury, voyeur, loop", "tags_pipe": "|scissors|radio|nudity|time|woods|surrealism|travel|independent film|scientist|machine|nonlinear timeline|binoculars|injury|voyeur|loop|", "overview": "A man accidentally gets into a time machine and travels back in time nearly an hour. Finding himself will be the first of a series of disasters of unforeseeable consequences.", "text_for_embedding": "Timecrimes (2007). Genres: Science Fiction, Thriller. A man accidentally gets into a time machine and travels back in time nearly an hour. Finding himself will be the first of a series of disasters of unforeseeable consequences.. Tags: scissors, radio, nudity, time, woods, surrealism, travel, independent film, scientist, machine, nonlinear timeline, binoculars, injury, voyeur, loop"} +{"id": "33106", "title": "Silver Medalist", "year": 2009, "duration_min": 99, "rating": 7.4, "genres": "Action, Adventure, Comedy, Drama, Foreign", "genres_pipe": "|Action|Adventure|Comedy|Drama|Foreign|", "keywords": "", "tags_pipe": "", "overview": "An action-adventure story focused on the lives of express deliverymen, traffic cops and lonely beauties.", "text_for_embedding": "Silver Medalist (2009). Genres: Action, Adventure, Comedy, Drama, Foreign. An action-adventure story focused on the lives of express deliverymen, traffic cops and lonely beauties.. Tags: "} +{"id": "8875", "title": "Timber Falls", "year": 2007, "duration_min": 97, "rating": 5.2, "genres": "Horror, Thriller", "genres_pipe": "|Horror|Thriller|", "keywords": "fanatic, forest, west virginia, suspense", "tags_pipe": "|fanatic|forest|west virginia|suspense|", "overview": "A weekend of camping in the mountains becomes an excursion into hell for a young couple, who become pawns in a grotesque plot hatched by deranged locals.", "text_for_embedding": "Timber Falls (2007). Genres: Horror, Thriller. A weekend of camping in the mountains becomes an excursion into hell for a young couple, who become pawns in a grotesque plot hatched by deranged locals.. Tags: fanatic, forest, west virginia, suspense"} +{"id": "872", "title": "Singin' in the Rain", "year": 1952, "duration_min": 103, "rating": 7.8, "genres": "Comedy, Music, Romance", "genres_pipe": "|Comedy|Music|Romance|", "keywords": "fan, morning, musical, talkie, partner, movie in movie, broadway, audience, chorus girl, diction coach, pearl necklace, flapper", "tags_pipe": "|fan|morning|musical|talkie|partner|movie in movie|broadway|audience|chorus girl|diction coach|pearl necklace|flapper|", "overview": "In 1927 Hollywood, Don Lockwood and Lina Lamont are a famous on-screen romantic pair in silent movies, but Lina mistakes the on-screen romance for real love. When their latest film is transformed into a musical, Don has the perfect voice for the songs, but strident voice faces the studio to dub her voice. Aspiring actress, Kathy Selden is brought in and, while she is working on the movie, Don falls in love with her.", "text_for_embedding": "Singin' in the Rain (1952). Genres: Comedy, Music, Romance. In 1927 Hollywood, Don Lockwood and Lina Lamont are a famous on-screen romantic pair in silent movies, but Lina mistakes the on-screen romance for real love. When their latest film is transformed into a musical, Don has the perfect voice for the songs, but strident voice faces the studio to dub her voice. Aspiring actress, Kathy Selden is brought in and, while she is working on the movie, Don falls in love with her.. Tags: fan, morning, musical, talkie, partner, movie in movie, broadway, audience, chorus girl, diction coach, pearl necklace, flapper"} +{"id": "72914", "title": "Fat, Sick & Nearly Dead", "year": 2010, "duration_min": 97, "rating": 7.1, "genres": "Documentary", "genres_pipe": "|Documentary|", "keywords": "diet, fasting, vegetable juice, australian man", "tags_pipe": "|diet|fasting|vegetable juice|australian man|", "overview": "100 pounds overweight, loaded up on steroids and suffering from a debilitating autoimmune disease, Joe Cross is at the end of his rope and the end of his hope. In the mirror he saw a 310lb man whose gut was bigger than a beach ball and a path laid out before him that wouldn't end well— with one foot already in the grave, the other wasn't far behind. FAT, SICK & NEARLY DEAD is an inspiring film that chronicles Joe's personal mission to regain his health.", "text_for_embedding": "Fat, Sick & Nearly Dead (2010). Genres: Documentary. 100 pounds overweight, loaded up on steroids and suffering from a debilitating autoimmune disease, Joe Cross is at the end of his rope and the end of his hope. In the mirror he saw a 310lb man whose gut was bigger than a beach ball and a path laid out before him that wouldn't end well— with one foot already in the grave, the other wasn't far behind. FAT, SICK & NEARLY DEAD is an inspiring film that chronicles Joe's personal mission to regain his health.. Tags: diet, fasting, vegetable juice, australian man"} +{"id": "139038", "title": "A Haunted House", "year": 2013, "duration_min": 86, "rating": 5.4, "genres": "Comedy, Horror", "genres_pipe": "|Comedy|Horror|", "keywords": "horror spoof, found footage, duringcreditsstinger", "tags_pipe": "|horror spoof|found footage|duringcreditsstinger|", "overview": "A spoof of all the \"found-footage/documentary style\" films released in recent years.", "text_for_embedding": "A Haunted House (2013). Genres: Comedy, Horror. A spoof of all the \"found-footage/documentary style\" films released in recent years.. Tags: horror spoof, found footage, duringcreditsstinger"} +{"id": "126509", "title": "2016: Obama's America", "year": 2012, "duration_min": 87, "rating": 4.6, "genres": "Documentary", "genres_pipe": "|Documentary|", "keywords": "", "tags_pipe": "", "overview": "2016: Obama's America takes audiences on a gripping visual journey into the heart of the worlds most powerful office to reveal the struggle of whether one man's past will redefine America over the next four years. The film examines the question, \"If Obama wins a second term, where will we be in 2016?\" Across the globe and in America, people in 2008 hungered for a leader who would unite and lift us from economic turmoil and war. True to Americas ideals, they invested their hope in a new kind of president, Barack Obama. What they didn't know is that Obama is a man with a past, and in powerful ways that past defines him--who he is, how he thinks, and where he intends to take America and the world. Immersed in exotic locales across four continents, best selling author Dinesh DSouza races against time to find answers to Obama's past and reveal where America will be in 2016.", "text_for_embedding": "2016: Obama's America (2012). Genres: Documentary. 2016: Obama's America takes audiences on a gripping visual journey into the heart of the worlds most powerful office to reveal the struggle of whether one man's past will redefine America over the next four years. The film examines the question, \"If Obama wins a second term, where will we be in 2016?\" Across the globe and in America, people in 2008 hungered for a leader who would unite and lift us from economic turmoil and war. True to Americas ideals, they invested their hope in a new kind of president, Barack Obama. What they didn't know is that Obama is a man with a past, and in powerful ways that past defines him--who he is, how he thinks, and where he intends to take America and the world. Immersed in exotic locales across four continents, best selling author Dinesh DSouza races against time to find answers to Obama's past and reveal where America will be in 2016.. Tags: "} +{"id": "9591", "title": "That Thing You Do!", "year": 1996, "duration_min": 108, "rating": 6.8, "genres": "Comedy, Drama", "genres_pipe": "|Comedy|Drama|", "keywords": "pop star, musical, record label, music, music band", "tags_pipe": "|pop star|musical|record label|music|music band|", "overview": "A Pennsylvania band scores a hit in 1964 and rides the star-making machinery as long as it can, with lots of help from its manager.", "text_for_embedding": "That Thing You Do! (1996). Genres: Comedy, Drama. A Pennsylvania band scores a hit in 1964 and rides the star-making machinery as long as it can, with lots of help from its manager.. Tags: pop star, musical, record label, music, music band"} +{"id": "10676", "title": "Halloween III: Season of the Witch", "year": 1982, "duration_min": 98, "rating": 5.0, "genres": "Horror, Mystery, Science Fiction", "genres_pipe": "|Horror|Mystery|Science Fiction|", "keywords": "commercial, factory, gas station, curfew, mask, halloween, hospital, doctor, death, surveillance camera, stonehenge", "tags_pipe": "|commercial|factory|gas station|curfew|mask|halloween|hospital|doctor|death|surveillance camera|stonehenge|", "overview": "Dr. Daniel Challis and Ellie Grimbridge stumble onto a gruesome murder scheme when Ellie's novelty-salesman father, Harry, is killed while in possession of a strange mask made by the Silver Shamrock mask company. The company's owner, Conal Cochran, wants to return Halloween to its darker roots using his masks -- and his unspeakable scheme would unleash death and destruction across the country.", "text_for_embedding": "Halloween III: Season of the Witch (1982). Genres: Horror, Mystery, Science Fiction. Dr. Daniel Challis and Ellie Grimbridge stumble onto a gruesome murder scheme when Ellie's novelty-salesman father, Harry, is killed while in possession of a strange mask made by the Silver Shamrock mask company. The company's owner, Conal Cochran, wants to return Halloween to its darker roots using his masks -- and his unspeakable scheme would unleash death and destruction across the country.. Tags: commercial, factory, gas station, curfew, mask, halloween, hospital, doctor, death, surveillance camera, stonehenge"} +{"id": "1687", "title": "Escape from the Planet of the Apes", "year": 1971, "duration_min": 98, "rating": 6.3, "genres": "Action, Science Fiction", "genres_pipe": "|Action|Science Fiction|", "keywords": "spacecraft, pacifism, human being, cage, dystopia, politician, chimpanzee, tease, caving", "tags_pipe": "|spacecraft|pacifism|human being|cage|dystopia|politician|chimpanzee|tease|caving|", "overview": "The world is shocked by the appearance of two talking chimpanzees, who arrived mysteriously in a U.S. spacecraft. They become the toast of society; but one man believes them to be a threat to the human race.", "text_for_embedding": "Escape from the Planet of the Apes (1971). Genres: Action, Science Fiction. The world is shocked by the appearance of two talking chimpanzees, who arrived mysteriously in a U.S. spacecraft. They become the toast of society; but one man believes them to be a threat to the human race.. Tags: spacecraft, pacifism, human being, cage, dystopia, politician, chimpanzee, tease, caving"} +{"id": "24748", "title": "Hud", "year": 1963, "duration_min": 112, "rating": 7.5, "genres": "Action, Drama, Western", "genres_pipe": "|Action|Drama|Western|", "keywords": "alcoholism, ranchers, rancher, rebellious youth", "tags_pipe": "|alcoholism|ranchers|rancher|rebellious youth|", "overview": "Hud Bannon is a ruthless young man who tarnishes everything and everyone he touches. Hud represents the perfect embodiment of alienated youth, out for kicks with no regard for the consequences. There is bitter conflict between the callous Hud and his stern and highly principled father, Homer. Hud's nephew Lon admires Hud's cheating ways, though he soon becomes too aware of Hud's reckless amorality to bear him anymore. In the world of the takers and the taken, Hud is a winner. He's a cheat, but, he explains, \"I always say the law was meant to be interpreted in a lenient manner.\"", "text_for_embedding": "Hud (1963). Genres: Action, Drama, Western. Hud Bannon is a ruthless young man who tarnishes everything and everyone he touches. Hud represents the perfect embodiment of alienated youth, out for kicks with no regard for the consequences. There is bitter conflict between the callous Hud and his stern and highly principled father, Homer. Hud's nephew Lon admires Hud's cheating ways, though he soon becomes too aware of Hud's reckless amorality to bear him anymore. In the world of the takers and the taken, Hud is a winner. He's a cheat, but, he explains, \"I always say the law was meant to be interpreted in a lenient manner.\". Tags: alcoholism, ranchers, rancher, rebellious youth"} +{"id": "181330", "title": "Kevin Hart: Let Me Explain", "year": 2013, "duration_min": 74, "rating": 7.1, "genres": "Comedy, Documentary", "genres_pipe": "|Comedy|Documentary|", "keywords": "stand-up comedy, manhattan, new york city, madison square garden, duringcreditsstinger", "tags_pipe": "|stand-up comedy|manhattan, new york city|madison square garden|duringcreditsstinger|", "overview": "Captures the laughter, energy and mayhem from Hart's 2012 \"Let Me Explain\" concert tour, which spanned 10 countries and 80 cities, and generated over $32 million in ticket sales.", "text_for_embedding": "Kevin Hart: Let Me Explain (2013). Genres: Comedy, Documentary. Captures the laughter, energy and mayhem from Hart's 2012 \"Let Me Explain\" concert tour, which spanned 10 countries and 80 cities, and generated over $32 million in ticket sales.. Tags: stand-up comedy, manhattan, new york city, madison square garden, duringcreditsstinger"} +{"id": "468", "title": "My Own Private Idaho", "year": 1991, "duration_min": 104, "rating": 7.1, "genres": "Drama, Romance", "genres_pipe": "|Drama|Romance|", "keywords": "individual, gay, father son relationship, rome, robbery, treasure, portland, cocaine, generations confilct, idaho, hustler, german, seattle, narkolepsy, pink bathrobe", "tags_pipe": "|individual|gay|father son relationship|rome|robbery|treasure|portland|cocaine|generations confilct|idaho|hustler|german|seattle|narkolepsy|pink bathrobe|", "overview": "In this loose adaptation of Shakespeare's \"Henry IV,\" Mike Waters (River Phoenix) is a gay hustler afflicted with narcolepsy. Scott Favor (Keanu Reeves) is the rebellious son of a mayor. Together, the two travel from Portland, Oregon to Idaho and finally to the coast of Italy in a quest to find Mike's estranged mother. Along the way they turn tricks for money and drugs, eventually attracting the attention of a wealthy benefactor and sexual deviant.", "text_for_embedding": "My Own Private Idaho (1991). Genres: Drama, Romance. In this loose adaptation of Shakespeare's \"Henry IV,\" Mike Waters (River Phoenix) is a gay hustler afflicted with narcolepsy. Scott Favor (Keanu Reeves) is the rebellious son of a mayor. Together, the two travel from Portland, Oregon to Idaho and finally to the coast of Italy in a quest to find Mike's estranged mother. Along the way they turn tricks for money and drugs, eventually attracting the attention of a wealthy benefactor and sexual deviant.. Tags: individual, gay, father son relationship, rome, robbery, treasure, portland, cocaine, generations confilct, idaho, hustler, german, seattle, narkolepsy, pink bathrobe"} +{"id": "401", "title": "Garden State", "year": 2004, "duration_min": 102, "rating": 7.1, "genres": "Comedy, Drama, Romance", "genres_pipe": "|Comedy|Drama|Romance|", "keywords": "new jersey, paraplegic, loss of mother, expensive restaurant, pop culture, ecstasy, strangeness, epilepsy, lethargy, answering machine, difficult childhood, unsociability, single, marijuana, los angeles", "tags_pipe": "|new jersey|paraplegic|loss of mother|expensive restaurant|pop culture|ecstasy|strangeness|epilepsy|lethargy|answering machine|difficult childhood|unsociability|single|marijuana|los angeles|", "overview": "Andrew returns to his hometown for the funeral of his mother, a journey that reconnects him with past friends. The trip coincides with his decision to stop taking his powerful antidepressants. A chance meeting with Sam - a girl also suffering from various maladies - opens up the possibility of rekindling emotional attachments, confronting his psychologist father, and perhaps beginning a new life.", "text_for_embedding": "Garden State (2004). Genres: Comedy, Drama, Romance. Andrew returns to his hometown for the funeral of his mother, a journey that reconnects him with past friends. The trip coincides with his decision to stop taking his powerful antidepressants. A chance meeting with Sam - a girl also suffering from various maladies - opens up the possibility of rekindling emotional attachments, confronting his psychologist father, and perhaps beginning a new life.. Tags: new jersey, paraplegic, loss of mother, expensive restaurant, pop culture, ecstasy, strangeness, epilepsy, lethargy, answering machine, difficult childhood, unsociability, single, marijuana, los angeles"} +{"id": "76", "title": "Before Sunrise", "year": 1995, "duration_min": 105, "rating": 7.7, "genres": "Drama, Romance", "genres_pipe": "|Drama|Romance|", "keywords": "dialogue, sunrise, talking, soulmates, walking, austria, traveller, danube, bittersweet, romantic, vienna", "tags_pipe": "|dialogue|sunrise|talking|soulmates|walking|austria|traveller|danube|bittersweet|romantic|vienna|", "overview": "A dialogue marathon of a film, this fairytale love story of an American boy and French girl. During a day and a night together in Vienna their two hearts collide.", "text_for_embedding": "Before Sunrise (1995). Genres: Drama, Romance. A dialogue marathon of a film, this fairytale love story of an American boy and French girl. During a day and a night together in Vienna their two hearts collide.. Tags: dialogue, sunrise, talking, soulmates, walking, austria, traveller, danube, bittersweet, romantic, vienna"} +{"id": "50538", "title": "Evil Words", "year": 2003, "duration_min": 100, "rating": 6.9, "genres": "Horror, Mystery, Thriller", "genres_pipe": "|Horror|Mystery|Thriller|", "keywords": "suspense, psychopathic killer, hopital", "tags_pipe": "|suspense|psychopathic killer|hopital|", "overview": "One day, for no apparent reason, a cop kills 11 children. The same day, horror novelist Thomas Roy tries to commit suicide after cutting his fingers. At first glance, nothing seems to link the two events – until Dr. Paul Lacasse, a disillusioned psychiatrist, takes over the case. Prompted by his colleague Jeanne, a fan of Thomas Roy, Dr. Lacasse investigates the writer’s past. Hounded by a gossip columnist, Dr. Lacasse uncovers a series of troubling facts that bolster his convictions about the case. As he tries to reassemble the pieces of the puzzle in order to better treat the famous writer, Dr. Lacasse is dragged further and further into a series of events, with terrifying consequences.", "text_for_embedding": "Evil Words (2003). Genres: Horror, Mystery, Thriller. One day, for no apparent reason, a cop kills 11 children. The same day, horror novelist Thomas Roy tries to commit suicide after cutting his fingers. At first glance, nothing seems to link the two events – until Dr. Paul Lacasse, a disillusioned psychiatrist, takes over the case. Prompted by his colleague Jeanne, a fan of Thomas Roy, Dr. Lacasse investigates the writer’s past. Hounded by a gossip columnist, Dr. Lacasse uncovers a series of troubling facts that bolster his convictions about the case. As he tries to reassemble the pieces of the puzzle in order to better treat the famous writer, Dr. Lacasse is dragged further and further into a series of events, with terrifying consequences.. Tags: suspense, psychopathic killer, hopital"} +{"id": "25636", "title": "Jesus' Son", "year": 1999, "duration_min": 107, "rating": 6.7, "genres": "Comedy, Drama, Romance", "genres_pipe": "|Comedy|Drama|Romance|", "keywords": "drug abuse, magic mushroom, dark comedy, independent film, drug, psychedelics, heroin addict, woman director", "tags_pipe": "|drug abuse|magic mushroom|dark comedy|independent film|drug|psychedelics|heroin addict|woman director|", "overview": "A young man turns from drug addiction and petty crime to a life redeemed by a discovery of compassion", "text_for_embedding": "Jesus' Son (1999). Genres: Comedy, Drama, Romance. A young man turns from drug addiction and petty crime to a life redeemed by a discovery of compassion. Tags: drug abuse, magic mushroom, dark comedy, independent film, drug, psychedelics, heroin addict, woman director"} +{"id": "19316", "title": "Saving Face", "year": 2004, "duration_min": 91, "rating": 6.8, "genres": "Comedy, Romance", "genres_pipe": "|Comedy|Romance|", "keywords": "lesbian relationship, lgbt, woman director", "tags_pipe": "|lesbian relationship|lgbt|woman director|", "overview": "A Chinese-American lesbian and her traditionalist mother are reluctant to go public with secret loves that clash against cultural expectations.", "text_for_embedding": "Saving Face (2004). Genres: Comedy, Romance. A Chinese-American lesbian and her traditionalist mother are reluctant to go public with secret loves that clash against cultural expectations.. Tags: lesbian relationship, lgbt, woman director"} +{"id": "21074", "title": "Brick Lane", "year": 2007, "duration_min": 102, "rating": 5.2, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "arranged marriage, independent film, bangladesh, september 11 2001, woman director", "tags_pipe": "|arranged marriage|independent film|bangladesh|september 11 2001|woman director|", "overview": "The grind of daily life as a Brick Lane Bangladessi as seen through the eyes of Nazneen (Chatterjee), who at 17 enters an arranged marriage with Chanu (Kaushik). Years later, living in east London with her family, she meets a young man Karim (Simpson).", "text_for_embedding": "Brick Lane (2007). Genres: Drama. The grind of daily life as a Brick Lane Bangladessi as seen through the eyes of Nazneen (Chatterjee), who at 17 enters an arranged marriage with Chanu (Kaushik). Years later, living in east London with her family, she meets a young man Karim (Simpson).. Tags: arranged marriage, independent film, bangladesh, september 11 2001, woman director"} +{"id": "84329", "title": "Robot & Frank", "year": 2012, "duration_min": 85, "rating": 6.8, "genres": "Science Fiction, Comedy, Drama, Crime", "genres_pipe": "|Science Fiction|Comedy|Drama|Crime|", "keywords": "friendship, robot, senior citizen, cat thief", "tags_pipe": "|friendship|robot|senior citizen|cat thief|", "overview": "A delightful dramatic comedy, a buddy picture, and, for good measure, a heist film. Curmudgeonly old Frank lives by himself. His routine involves daily visits to his local library, where he has a twinkle in his eye for the librarian. His grown children are concerned about their father’s well-being and buy him a caretaker robot. Initially resistant to the idea, Frank soon appreciates the benefits of robotic support – like nutritious meals and a clean house – and eventually begins to treat his robot like a true companion. With his robot’s assistance, Frank’s passion for his old, unlawful profession is reignited, for better or worse.", "text_for_embedding": "Robot & Frank (2012). Genres: Science Fiction, Comedy, Drama, Crime. A delightful dramatic comedy, a buddy picture, and, for good measure, a heist film. Curmudgeonly old Frank lives by himself. His routine involves daily visits to his local library, where he has a twinkle in his eye for the librarian. His grown children are concerned about their father’s well-being and buy him a caretaker robot. Initially resistant to the idea, Frank soon appreciates the benefits of robotic support – like nutritious meals and a clean house – and eventually begins to treat his robot like a true companion. With his robot’s assistance, Frank’s passion for his old, unlawful profession is reignited, for better or worse.. Tags: friendship, robot, senior citizen, cat thief"} +{"id": "20", "title": "My Life Without Me", "year": 2003, "duration_min": 106, "rating": 7.2, "genres": "Drama, Romance", "genres_pipe": "|Drama|Romance|", "keywords": "farewell, responsability, dying and death, night shift, daughter, secret love, mother daughter relationship, woman director", "tags_pipe": "|farewell|responsability|dying and death|night shift|daughter|secret love|mother daughter relationship|woman director|", "overview": "A Pedro Almodovar production in which a fatally ill mother with only two months to live creates a list of things she wants to do before she dies with out telling her family of her illness.", "text_for_embedding": "My Life Without Me (2003). Genres: Drama, Romance. A Pedro Almodovar production in which a fatally ill mother with only two months to live creates a list of things she wants to do before she dies with out telling her family of her illness.. Tags: farewell, responsability, dying and death, night shift, daughter, secret love, mother daughter relationship, woman director"} +{"id": "157386", "title": "The Spectacular Now", "year": 2013, "duration_min": 95, "rating": 6.8, "genres": "Comedy, Drama, Romance", "genres_pipe": "|Comedy|Drama|Romance|", "keywords": "alcoholism, coming of age, teenager, high school student, based on young adult novel", "tags_pipe": "|alcoholism|coming of age|teenager|high school student|based on young adult novel|", "overview": "A hard-partying high school senior's philosophy on life changes when he meets the not-so-typical \"nice girl.\"", "text_for_embedding": "The Spectacular Now (2013). Genres: Comedy, Drama, Romance. A hard-partying high school senior's philosophy on life changes when he meets the not-so-typical \"nice girl.\". Tags: alcoholism, coming of age, teenager, high school student, based on young adult novel"} +{"id": "13007", "title": "Religulous", "year": 2008, "duration_min": 101, "rating": 7.2, "genres": "Comedy, Documentary", "genres_pipe": "|Comedy|Documentary|", "keywords": "muslim, museum, jew, evidence, rabbi, interview, christian, faith, atheist, chapel, religious, catholic, evolution, trucker, mormon", "tags_pipe": "|muslim|museum|jew|evidence|rabbi|interview|christian|faith|atheist|chapel|religious|catholic|evolution|trucker|mormon|", "overview": "Commentator-comic Bill Maher plays devil's advocate with religion as he talks to believers about their faith. Traveling around the world, Maher examines the tenets of Christianity, Judaism and Islam and raises questions about homosexuality, proof of Christ's existence, Jewish Sabbath laws, violent Muslim extremists.", "text_for_embedding": "Religulous (2008). Genres: Comedy, Documentary. Commentator-comic Bill Maher plays devil's advocate with religion as he talks to believers about their faith. Traveling around the world, Maher examines the tenets of Christianity, Judaism and Islam and raises questions about homosexuality, proof of Christ's existence, Jewish Sabbath laws, violent Muslim extremists.. Tags: muslim, museum, jew, evidence, rabbi, interview, christian, faith, atheist, chapel, religious, catholic, evolution, trucker, mormon"} +{"id": "13518", "title": "Fuel", "year": 2008, "duration_min": 90, "rating": 7.0, "genres": "Documentary, Drama", "genres_pipe": "|Documentary|Drama|", "keywords": "energy policy, consumption, automobile industry, independent film, nature", "tags_pipe": "|energy policy|consumption|automobile industry|independent film|nature|", "overview": "Record high oil prices, global warming, and an insatiable demand for energy: these issues define our generation. The film exposes shocking connections between the auto industry, the oil industry, and the government, while exploring alternative energies such as solar, wind, electricity, and non-food-based biofuels.", "text_for_embedding": "Fuel (2008). Genres: Documentary, Drama. Record high oil prices, global warming, and an insatiable demand for energy: these issues define our generation. The film exposes shocking connections between the auto industry, the oil industry, and the government, while exploring alternative energies such as solar, wind, electricity, and non-food-based biofuels.. Tags: energy policy, consumption, automobile industry, independent film, nature"} +{"id": "116584", "title": "Valley of the Heart's Delight", "year": 2006, "duration_min": 100, "rating": 7.0, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "", "tags_pipe": "", "overview": "When a fatal kidnapping ignites a firestorm of suspicion and rage in idyllic 1933 San Jose, California, a hard-nosed young reporter takes on the powers-that-be to prevent the lynching of two men he believes are innocent.", "text_for_embedding": "Valley of the Heart's Delight (2006). Genres: Drama. When a fatal kidnapping ignites a firestorm of suspicion and rage in idyllic 1933 San Jose, California, a hard-nosed young reporter takes on the powers-that-be to prevent the lynching of two men he believes are innocent.. Tags: "} +{"id": "46849", "title": "Eye of the Dolphin", "year": 2007, "duration_min": 100, "rating": 7.1, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "dolphin, island, research, tourist, town", "tags_pipe": "|dolphin|island|research|tourist|town|", "overview": "Alyssa is a troubled 14-year old, suspended from school a year after her mother has drowned. Her grandmother Lucy, at wit's end, decides to take Alyssa to her father, James, whom Alyssa thought was dead for years. He studies dolphin communication at Smith's Point, on the Grand Bahama Island. James has not known of Alyssa's existence and is clueless about parenthood. The women arrive at the same time that James may lose his research operation to a tourist attraction. Father, daughter, dolphins, and town are on a collision course. Alyssa and James get encouragement from James's girlfriend and her father. It's the dolphins who can teach, and Alyssa who discovers how to listen.", "text_for_embedding": "Eye of the Dolphin (2007). Genres: Drama. Alyssa is a troubled 14-year old, suspended from school a year after her mother has drowned. Her grandmother Lucy, at wit's end, decides to take Alyssa to her father, James, whom Alyssa thought was dead for years. He studies dolphin communication at Smith's Point, on the Grand Bahama Island. James has not known of Alyssa's existence and is clueless about parenthood. The women arrive at the same time that James may lose his research operation to a tourist attraction. Father, daughter, dolphins, and town are on a collision course. Alyssa and James get encouragement from James's girlfriend and her father. It's the dolphins who can teach, and Alyssa who discovers how to listen.. Tags: dolphin, island, research, tourist, town"} +{"id": "40428", "title": "8: The Mormon Proposition", "year": 2010, "duration_min": 80, "rating": 5.5, "genres": "Documentary", "genres_pipe": "|Documentary|", "keywords": "independent film", "tags_pipe": "|independent film|", "overview": "Filmmaker and ex-Church of Jesus Christ of Latter-day Saints member Reed Cowan examines that church's nationwide efforts to prevent the legalization of gay marriage - including California's Proposition 8, which was passed by voters in 2008. Confidential church documents, statements by high-ranking church officials and other sources detail 30 years of efforts to turn back gay rights, particularly by the Mormon-sponsored National Organization for Marriage.", "text_for_embedding": "8: The Mormon Proposition (2010). Genres: Documentary. Filmmaker and ex-Church of Jesus Christ of Latter-day Saints member Reed Cowan examines that church's nationwide efforts to prevent the legalization of gay marriage - including California's Proposition 8, which was passed by voters in 2008. Confidential church documents, statements by high-ranking church officials and other sources detail 30 years of efforts to turn back gay rights, particularly by the Mormon-sponsored National Organization for Marriage.. Tags: independent film"} +{"id": "17334", "title": "The Other End of the Line", "year": 2008, "duration_min": 106, "rating": 6.1, "genres": "Comedy, Romance", "genres_pipe": "|Comedy|Romance|", "keywords": "indian lead, call center, romantic comedy", "tags_pipe": "|indian lead|call center|romantic comedy|", "overview": "An employee at an Indian call-center travels to San Francisco to be with a guy she falls for over the phone", "text_for_embedding": "The Other End of the Line (2008). Genres: Comedy, Romance. An employee at an Indian call-center travels to San Francisco to be with a guy she falls for over the phone. Tags: indian lead, call center, romantic comedy"} +{"id": "1698", "title": "Anatomy", "year": 2000, "duration_min": 103, "rating": 6.1, "genres": "Horror, Thriller", "genres_pipe": "|Horror|Thriller|", "keywords": "butterfly, dissection, scalpel, medical school", "tags_pipe": "|butterfly|dissection|scalpel|medical school|", "overview": "Medical student Paula Henning wins a place at an exclusive Heidelberg medical school. When the body of a young man she met on the train turns up on her dissection table, she begins to investigate the mysterious circumstances surrounding his death, and uncovers a gruesome conspiracy perpetrated by an Antihippocratic secret society operating within the school.", "text_for_embedding": "Anatomy (2000). Genres: Horror, Thriller. Medical student Paula Henning wins a place at an exclusive Heidelberg medical school. When the body of a young man she met on the train turns up on her dissection table, she begins to investigate the mysterious circumstances surrounding his death, and uncovers a gruesome conspiracy perpetrated by an Antihippocratic secret society operating within the school.. Tags: butterfly, dissection, scalpel, medical school"} +{"id": "20764", "title": "Sleep Dealer", "year": 2008, "duration_min": 90, "rating": 6.0, "genres": "Drama, Science Fiction, Thriller", "genres_pipe": "|Drama|Science Fiction|Thriller|", "keywords": "virtual reality, dystopia, moral conflict, computer, loneliness, water shortage, teacher", "tags_pipe": "|virtual reality|dystopia|moral conflict|computer|loneliness|water shortage|teacher|", "overview": "Set in a near-future, militarized world marked by closed borders, virtual labor and a global digital network that joins minds and experiences, three strangers risk their lives to connect with each other and break the barriers of technology.", "text_for_embedding": "Sleep Dealer (2008). Genres: Drama, Science Fiction, Thriller. Set in a near-future, militarized world marked by closed borders, virtual labor and a global digital network that joins minds and experiences, three strangers risk their lives to connect with each other and break the barriers of technology.. Tags: virtual reality, dystopia, moral conflict, computer, loneliness, water shortage, teacher"} +{"id": "45132", "title": "Super", "year": 2010, "duration_min": 96, "rating": 6.6, "genres": "Comedy, Action, Drama", "genres_pipe": "|Comedy|Action|Drama|", "keywords": "bomb, gun, drug dealer, costume, comic book, party, superhero, dark comedy, gore, blood, comic book shop, comic book collector, dinner, violence, police officer", "tags_pipe": "|bomb|gun|drug dealer|costume|comic book|party|superhero|dark comedy|gore|blood|comic book shop|comic book collector|dinner|violence|police officer|", "overview": "After his wife falls under the influence of a drug dealer, an everyday guy transforms himself into Crimson Bolt, a superhero with the best intentions, though he lacks for heroic skills.", "text_for_embedding": "Super (2010). Genres: Comedy, Action, Drama. After his wife falls under the influence of a drug dealer, an everyday guy transforms himself into Crimson Bolt, a superhero with the best intentions, though he lacks for heroic skills.. Tags: bomb, gun, drug dealer, costume, comic book, party, superhero, dark comedy, gore, blood, comic book shop, comic book collector, dinner, violence, police officer"} +{"id": "76706", "title": "Christmas Mail", "year": 2010, "duration_min": 89, "rating": 5.0, "genres": "Comedy, Family", "genres_pipe": "|Comedy|Family|", "keywords": "", "tags_pipe": "", "overview": "In this holiday romantic comedy, a mysterious woman who works at the post office answering Santa's mail captures the heart of a disillusioned postal carrier", "text_for_embedding": "Christmas Mail (2010). Genres: Comedy, Family. In this holiday romantic comedy, a mysterious woman who works at the post office answering Santa's mail captures the heart of a disillusioned postal carrier. Tags: "} +{"id": "254472", "title": "Stung", "year": 2015, "duration_min": 87, "rating": 4.9, "genres": "Comedy, Horror", "genres_pipe": "|Comedy|Horror|", "keywords": "giant insect", "tags_pipe": "|giant insect|", "overview": "A fancy garden party turns into upper class prey when a colony of killer wasps mutates into seven foot tall predators.", "text_for_embedding": "Stung (2015). Genres: Comedy, Horror. A fancy garden party turns into upper class prey when a colony of killer wasps mutates into seven foot tall predators.. Tags: giant insect"} +{"id": "332285", "title": "Antibirth", "year": 2016, "duration_min": 94, "rating": 4.8, "genres": "Horror", "genres_pipe": "|Horror|", "keywords": "drug abuse, experiment, television, conspiracy, alien abduction, prostitution, pregnancy, new species of human, side effects, narcotic abuse", "tags_pipe": "|drug abuse|experiment|television|conspiracy|alien abduction|prostitution|pregnancy|new species of human|side effects|narcotic abuse|", "overview": "In a desolate community full of drug-addled Marines and rumors of kidnapping, a wild-eyed stoner named Lou wakes up after a crazy night of partying with symptoms of a strange illness and recurring visions. As she struggles to get a grip on reality, the stories of conspiracy spread.", "text_for_embedding": "Antibirth (2016). Genres: Horror. In a desolate community full of drug-addled Marines and rumors of kidnapping, a wild-eyed stoner named Lou wakes up after a crazy night of partying with symptoms of a strange illness and recurring visions. As she struggles to get a grip on reality, the stories of conspiracy spread.. Tags: drug abuse, experiment, television, conspiracy, alien abduction, prostitution, pregnancy, new species of human, side effects, narcotic abuse"} +{"id": "49471", "title": "Get on the Bus", "year": 1996, "duration_min": 120, "rating": 7.0, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "washington d.c., bus, march", "tags_pipe": "|washington d.c.|bus|march|", "overview": "Get On the Bus follows several Black men on a cross country bus trip to the Million Man March. On the bus are an eclectic set of characters including a laid off aircraft worker, a former Gang Banger, a Hollywood actor, a cop who is of mixed racial background, and a White bus driver, all make the trek discussing issues surrounding the march, manhood, religion, politics, and race.", "text_for_embedding": "Get on the Bus (1996). Genres: Drama. Get On the Bus follows several Black men on a cross country bus trip to the Million Man March. On the bus are an eclectic set of characters including a laid off aircraft worker, a former Gang Banger, a Hollywood actor, a cop who is of mixed racial background, and a White bus driver, all make the trek discussing issues surrounding the march, manhood, religion, politics, and race.. Tags: washington d.c., bus, march"} +{"id": "13569", "title": "Thr3e", "year": 2006, "duration_min": 101, "rating": 4.8, "genres": "Drama, Horror, Thriller", "genres_pipe": "|Drama|Horror|Thriller|", "keywords": "", "tags_pipe": "", "overview": "Innocent lives hang on the whim of an elusive psychopathic murderer whose strange riddles and impossible timelines force three people into a mission to end the game before one or all of them die.", "text_for_embedding": "Thr3e (2006). Genres: Drama, Horror, Thriller. Innocent lives hang on the whim of an elusive psychopathic murderer whose strange riddles and impossible timelines force three people into a mission to end the game before one or all of them die.. Tags: "} +{"id": "7512", "title": "Idiocracy", "year": 2006, "duration_min": 84, "rating": 6.3, "genres": "Adventure, Comedy, Science Fiction", "genres_pipe": "|Adventure|Comedy|Science Fiction|", "keywords": "prostitute, capitalism, usa president, arena, congress, future, human experimentation, dystopia, army, stupidity, hibernation, dark comedy, social satire, brainwashing, surveillance", "tags_pipe": "|prostitute|capitalism|usa president|arena|congress|future|human experimentation|dystopia|army|stupidity|hibernation|dark comedy|social satire|brainwashing|surveillance|", "overview": "To test its top-secret Human Hibernation Project, the Pentagon picks the most average Americans it can find - an Army private and a prostitute - and sends them to the year 2505 after a series of freak events. But when they arrive, they find a civilization so dumbed-down that they're the smartest people around.", "text_for_embedding": "Idiocracy (2006). Genres: Adventure, Comedy, Science Fiction. To test its top-secret Human Hibernation Project, the Pentagon picks the most average Americans it can find - an Army private and a prostitute - and sends them to the year 2505 after a series of freak events. But when they arrive, they find a civilization so dumbed-down that they're the smartest people around.. Tags: prostitute, capitalism, usa president, arena, congress, future, human experimentation, dystopia, army, stupidity, hibernation, dark comedy, social satire, brainwashing, surveillance"} +{"id": "356216", "title": "The Rise of the Krays", "year": 2015, "duration_min": 110, "rating": 4.5, "genres": "Crime", "genres_pipe": "|Crime|", "keywords": "", "tags_pipe": "", "overview": "Follows the early years of two unknown 18 year old amateur boxers who quickly fought their way to becoming the most feared and respected villains in all of London. Told through the eyes of a close friend that survived them, we see them rise to infamy through drugs, sex and murder.", "text_for_embedding": "The Rise of the Krays (2015). Genres: Crime. Follows the early years of two unknown 18 year old amateur boxers who quickly fought their way to becoming the most feared and respected villains in all of London. Told through the eyes of a close friend that survived them, we see them rise to infamy through drugs, sex and murder.. Tags: "} +{"id": "11798", "title": "This Is England", "year": 2006, "duration_min": 101, "rating": 7.4, "genres": "Drama, Crime", "genres_pipe": "|Drama|Crime|", "keywords": "holiday, skinhead, england, vandalism, independent film, gang, racism, summer, youth, violence, drug, unemployment, xenophobia, culture", "tags_pipe": "|holiday|skinhead|england|vandalism|independent film|gang|racism|summer|youth|violence|drug|unemployment|xenophobia|culture|", "overview": "A story about a troubled boy growing up in England, set in 1983. He comes across a few skinheads on his way home from school, after a fight. They become his new best friends even like family. Based on experiences of director Shane Meadows.", "text_for_embedding": "This Is England (2006). Genres: Drama, Crime. A story about a troubled boy growing up in England, set in 1983. He comes across a few skinheads on his way home from school, after a fight. They become his new best friends even like family. Based on experiences of director Shane Meadows.. Tags: holiday, skinhead, england, vandalism, independent film, gang, racism, summer, youth, violence, drug, unemployment, xenophobia, culture"} +{"id": "146631", "title": "U.F.O.", "year": 2012, "duration_min": 101, "rating": 3.1, "genres": "Action, Adventure, Science Fiction", "genres_pipe": "|Action|Adventure|Science Fiction|", "keywords": "impostor, alien invasion, military, partying", "tags_pipe": "|impostor|alien invasion|military|partying|", "overview": "A group of friends awake one morning to find all electricity and power shut off and an immense alien aircraft hovering in the air above their heads. Suddenly this regular group of friends is battling to survive as the entire human race is threatened by the alien army hovering ominously above. Aliens announce a hostile takeover of Earth by cutting off all power and communications, prompting a small band of survivors to fight for the human race in this sci-fi action-adventure featuring Jean-Claude Van Damme", "text_for_embedding": "U.F.O. (2012). Genres: Action, Adventure, Science Fiction. A group of friends awake one morning to find all electricity and power shut off and an immense alien aircraft hovering in the air above their heads. Suddenly this regular group of friends is battling to survive as the entire human race is threatened by the alien army hovering ominously above. Aliens announce a hostile takeover of Earth by cutting off all power and communications, prompting a small band of survivors to fight for the human race in this sci-fi action-adventure featuring Jean-Claude Van Damme. Tags: impostor, alien invasion, military, partying"} +{"id": "43546", "title": "Bathing Beauty", "year": 1944, "duration_min": 101, "rating": 7.0, "genres": "Comedy, Music", "genres_pipe": "|Comedy|Music|", "keywords": "musical, girls' boarding school, swimming pool, romantic comedy", "tags_pipe": "|musical|girls' boarding school|swimming pool|romantic comedy|", "overview": "A big splash in her first starring role: Esther Williams is a teacher at a women's college -- and wacky Red Skelton enrolls to be near her. An astonishing flames-and-fountains aquatic finale.", "text_for_embedding": "Bathing Beauty (1944). Genres: Comedy, Music. A big splash in her first starring role: Esther Williams is a teacher at a women's college -- and wacky Red Skelton enrolls to be near her. An astonishing flames-and-fountains aquatic finale.. Tags: musical, girls' boarding school, swimming pool, romantic comedy"} +{"id": "61038", "title": "Go for It!", "year": 2011, "duration_min": 105, "rating": 4.6, "genres": "Drama, Family", "genres_pipe": "|Drama|Family|", "keywords": "dancing, chicago, woman director", "tags_pipe": "|dancing|chicago|woman director|", "overview": "Carmen is a good student with a bad attitude who lives for dancing in the underground clubs of Chicago. She yearns to be 'somebody' but is afraid to believe in herself. Her immigrant Mexican, working-class parents want her to stay in school and get an education, so she attends junior college while working at a grocery store. Carmen's professor catches her performing one day in the neighborhood and challenges her to audition to a formal dance school in California. She gets into a fight with her chaotic family and runs away to her best friend Gina's place only to find out Gina's been getting beat up by her boyfriend. Meanwhile, Carmen's boyfriend, Jared wants her to commit and move in with him. Pulled apart in every direction, her dream of dancing fades. Can Carmen overcome her fears and take the biggest chance of her life, or will she succumb to her self-doubt?", "text_for_embedding": "Go for It! (2011). Genres: Drama, Family. Carmen is a good student with a bad attitude who lives for dancing in the underground clubs of Chicago. She yearns to be 'somebody' but is afraid to believe in herself. Her immigrant Mexican, working-class parents want her to stay in school and get an education, so she attends junior college while working at a grocery store. Carmen's professor catches her performing one day in the neighborhood and challenges her to audition to a formal dance school in California. She gets into a fight with her chaotic family and runs away to her best friend Gina's place only to find out Gina's been getting beat up by her boyfriend. Meanwhile, Carmen's boyfriend, Jared wants her to commit and move in with him. Pulled apart in every direction, her dream of dancing fades. Can Carmen overcome her fears and take the biggest chance of her life, or will she succumb to her self-doubt?. Tags: dancing, chicago, woman director"} +{"id": "78373", "title": "Dancer, Texas Pop. 81", "year": 1998, "duration_min": 97, "rating": 10.0, "genres": "Comedy, Drama, Family", "genres_pipe": "|Comedy|Drama|Family|", "keywords": "small town, texas", "tags_pipe": "|small town|texas|", "overview": "Four guys, best friends, have grown up together in DANCER, TEXAS POP. 81, a tiny town in West Texas. Years ago, they made a solemn vow to leave town together as soon as they graduate. Now, it's that weekend and the time has come to \"put up or shut up.\" The clock is ticking and as all 81 people in the town watch, comment, offer advice and place bets, these four very different boys with unique backgrounds struggle with the biggest decision of their lives... whether to stay or leave home.", "text_for_embedding": "Dancer, Texas Pop. 81 (1998). Genres: Comedy, Drama, Family. Four guys, best friends, have grown up together in DANCER, TEXAS POP. 81, a tiny town in West Texas. Years ago, they made a solemn vow to leave town together as soon as they graduate. Now, it's that weekend and the time has come to \"put up or shut up.\" The clock is ticking and as all 81 people in the town watch, comment, offer advice and place bets, these four very different boys with unique backgrounds struggle with the biggest decision of their lives... whether to stay or leave home.. Tags: small town, texas"} +{"id": "17820", "title": "Show Boat", "year": 1951, "duration_min": 107, "rating": 6.9, "genres": "Music, Romance", "genres_pipe": "|Music|Romance|", "keywords": "musical, grandmother granddaughter relationship, interracial relationship, reconciliation, riverboat, showboat, miscegenation, paddlewheel boat", "tags_pipe": "|musical|grandmother granddaughter relationship|interracial relationship|reconciliation|riverboat|showboat|miscegenation|paddlewheel boat|", "overview": "A dashing Mississippi river gambler wins the affections of the daughter of the owner of the Show Boat.", "text_for_embedding": "Show Boat (1951). Genres: Music, Romance. A dashing Mississippi river gambler wins the affections of the daughter of the owner of the Show Boat.. Tags: musical, grandmother granddaughter relationship, interracial relationship, reconciliation, riverboat, showboat, miscegenation, paddlewheel boat"} +{"id": "74457", "title": "Redemption Road", "year": 2011, "duration_min": 91, "rating": 4.7, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "", "tags_pipe": "", "overview": "A Tennessee-set drama focused on an individual's spiritual redemption.", "text_for_embedding": "Redemption Road (2011). Genres: Drama. A Tennessee-set drama focused on an individual's spiritual redemption.. Tags: "} +{"id": "283384", "title": "The Calling", "year": 2014, "duration_min": 108, "rating": 5.6, "genres": "Thriller", "genres_pipe": "|Thriller|", "keywords": "series of murders", "tags_pipe": "|series of murders|", "overview": "Detective Hazel Micallef hasn't had much to worry about in the sleepy town of Port Dundas until a string of gruesome murders in the surrounding countryside brings her face to face with a serial killer driven by a higher calling.", "text_for_embedding": "The Calling (2014). Genres: Thriller. Detective Hazel Micallef hasn't had much to worry about in the sleepy town of Port Dundas until a string of gruesome murders in the surrounding countryside brings her face to face with a serial killer driven by a higher calling.. Tags: series of murders"} +{"id": "19933", "title": "The Brave Little Toaster", "year": 1987, "duration_min": 90, "rating": 6.7, "genres": "Fantasy, Adventure, Animation, Comedy, Family, Music", "genres_pipe": "|Fantasy|Adventure|Animation|Comedy|Family|Music|", "keywords": "growing up, coming of age, lost, journey, personification, inanimate objects coming to life, toaster", "tags_pipe": "|growing up|coming of age|lost|journey|personification|inanimate objects coming to life|toaster|", "overview": "A group of dated appliances find themselves stranded in a summer home that their family had just sold decide to, a la The Incredible Journey, seek their young 8 year old \"master\". Children's film which on the surface is a frivolous fantasy, but with a dark subtext of abandonment, obsolescence, and loneliness.", "text_for_embedding": "The Brave Little Toaster (1987). Genres: Fantasy, Adventure, Animation, Comedy, Family, Music. A group of dated appliances find themselves stranded in a summer home that their family had just sold decide to, a la The Incredible Journey, seek their young 8 year old \"master\". Children's film which on the surface is a frivolous fantasy, but with a dark subtext of abandonment, obsolescence, and loneliness.. Tags: growing up, coming of age, lost, journey, personification, inanimate objects coming to life, toaster"} +{"id": "756", "title": "Fantasia", "year": 1940, "duration_min": 124, "rating": 7.2, "genres": "Animation, Family, Music", "genres_pipe": "|Animation|Family|Music|", "keywords": "orchestra, classical music, musical segments", "tags_pipe": "|orchestra|classical music|musical segments|", "overview": "Walt Disney's timeless masterpiece is an extravaganza of sight and sound! See the music come to life, hear the pictures burst into song and experience the excitement that is Fantasia over and over again.", "text_for_embedding": "Fantasia (1940). Genres: Animation, Family, Music. Walt Disney's timeless masterpiece is an extravaganza of sight and sound! See the music come to life, hear the pictures burst into song and experience the excitement that is Fantasia over and over again.. Tags: orchestra, classical music, musical segments"} +{"id": "433715", "title": "8 Days", "year": 2014, "duration_min": 90, "rating": 0.0, "genres": "Thriller, Drama", "genres_pipe": "|Thriller|Drama|", "keywords": "christian film, sex trafficking", "tags_pipe": "|christian film|sex trafficking|", "overview": "After sneaking to a party with her friends, 16-year-old Amber Stevens goes missing. Forced into the world of sex trafficking, her family and community fight to get her back. Inspired by actual events.", "text_for_embedding": "8 Days (2014). Genres: Thriller, Drama. After sneaking to a party with her friends, 16-year-old Amber Stevens goes missing. Forced into the world of sex trafficking, her family and community fight to get her back. Inspired by actual events.. Tags: christian film, sex trafficking"} +{"id": "9728", "title": "Friday the 13th Part III", "year": 1982, "duration_min": 95, "rating": 5.7, "genres": "Horror, Thriller", "genres_pipe": "|Horror|Thriller|", "keywords": "lake, summer camp, murder, serial killer, slasher, summer, jason voorhees, one by one, friday the thirteenth", "tags_pipe": "|lake|summer camp|murder|serial killer|slasher|summer|jason voorhees|one by one|friday the thirteenth|", "overview": "An idyllic summer turns into a nightmare of unspeakable terror for yet another group of naive counselors. Ignoring Camp Crystal Lake's bloody legacy, one by one they fall victim to the maniacal Jason who stalks them at every turn.", "text_for_embedding": "Friday the 13th Part III (1982). Genres: Horror, Thriller. An idyllic summer turns into a nightmare of unspeakable terror for yet another group of naive counselors. Ignoring Camp Crystal Lake's bloody legacy, one by one they fall victim to the maniacal Jason who stalks them at every turn.. Tags: lake, summer camp, murder, serial killer, slasher, summer, jason voorhees, one by one, friday the thirteenth"} +{"id": "9731", "title": "Friday the 13th: A New Beginning", "year": 1985, "duration_min": 92, "rating": 5.1, "genres": "Horror, Thriller", "genres_pipe": "|Horror|Thriller|", "keywords": "mask, psychology, serial killer, hospital, teenager, series of murders", "tags_pipe": "|mask|psychology|serial killer|hospital|teenager|series of murders|", "overview": "Homicidal maniac Jason returns from the grave to cause more bloody mayhem. Young Tommy may have escaped from Crystal Lake, but he’s still haunted by the gruesome events that happened there. When gory murders start happening at the secluded halfway house for troubled teens where he now lives, it seems like his nightmarish nemesis, Jason, is back for more sadistic slaughters. But as things spiral out of control and the body count rises, Tommy begins to wonder if he’s become the killer he fears most.", "text_for_embedding": "Friday the 13th: A New Beginning (1985). Genres: Horror, Thriller. Homicidal maniac Jason returns from the grave to cause more bloody mayhem. Young Tommy may have escaped from Crystal Lake, but he’s still haunted by the gruesome events that happened there. When gory murders start happening at the secluded halfway house for troubled teens where he now lives, it seems like his nightmarish nemesis, Jason, is back for more sadistic slaughters. But as things spiral out of control and the body count rises, Tommy begins to wonder if he’s become the killer he fears most.. Tags: mask, psychology, serial killer, hospital, teenager, series of murders"} +{"id": "9916", "title": "The Last Sin Eater", "year": 2007, "duration_min": 117, "rating": 6.2, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "christianity, appalachia, conversion, independent film", "tags_pipe": "|christianity|appalachia|conversion|independent film|", "overview": "In seeking her own redemption from the one man of whom she is most afraid, 10-year-old Cadi Forbes discovers a secret sin haunting her community of Welsh immigrants in 1850s Appalachia.", "text_for_embedding": "The Last Sin Eater (2007). Genres: Drama. In seeking her own redemption from the one man of whom she is most afraid, 10-year-old Cadi Forbes discovers a secret sin haunting her community of Welsh immigrants in 1850s Appalachia.. Tags: christianity, appalachia, conversion, independent film"} +{"id": "309425", "title": "Do You Believe?", "year": 2015, "duration_min": 115, "rating": 6.6, "genres": "Fantasy, Drama", "genres_pipe": "|Fantasy|Drama|", "keywords": "christian", "tags_pipe": "|christian|", "overview": "When a pastor is shaken by the visible faith of a street-corner preacher, he is reminded that true belief always requires action. His response ignites a journey that impacts everyone it touches in ways that only God could orchestrate.", "text_for_embedding": "Do You Believe? (2015). Genres: Fantasy, Drama. When a pastor is shaken by the visible faith of a street-corner preacher, he is reminded that true belief always requires action. His response ignites a journey that impacts everyone it touches in ways that only God could orchestrate.. Tags: christian"} +{"id": "14156", "title": "Impact Point", "year": 2008, "duration_min": 90, "rating": 5.7, "genres": "Thriller, Romance", "genres_pipe": "|Thriller|Romance|", "keywords": "", "tags_pipe": "", "overview": "Pro Beach Volleyball star, Kelly Reyes, faces challenges everyday, fierce competitors, the press, but nothing could prepare her for him.", "text_for_embedding": "Impact Point (2008). Genres: Thriller, Romance. Pro Beach Volleyball star, Kelly Reyes, faces challenges everyday, fierce competitors, the press, but nothing could prepare her for him.. Tags: "} +{"id": "43610", "title": "The Valley of Decision", "year": 1945, "duration_min": 119, "rating": 5.8, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "", "tags_pipe": "", "overview": "Mary Rafferty comes from a poor family of steel mill workers in 19th Century Pittsburgh. Her family objects when she goes to work as a maid for the wealthy Scott family which controls the mill. Mary catches the attention of handsome scion Paul Scott, but their romance is complicated by Paul's engagement to someone else and a bitter strike among the mill workers.", "text_for_embedding": "The Valley of Decision (1945). Genres: Drama. Mary Rafferty comes from a poor family of steel mill workers in 19th Century Pittsburgh. Her family objects when she goes to work as a maid for the wealthy Scott family which controls the mill. Mary catches the attention of handsome scion Paul Scott, but their romance is complicated by Paul's engagement to someone else and a bitter strike among the mill workers.. Tags: "} +{"id": "360339", "title": "Eden", "year": 2015, "duration_min": 97, "rating": 5.6, "genres": "Thriller, Drama", "genres_pipe": "|Thriller|Drama|", "keywords": "island, airplane, survival, soccer, crash, team", "tags_pipe": "|island|airplane|survival|soccer|crash|team|", "overview": "After their plane crashes off the coast of a deserted Pacific island, the surviving members of an American soccer team find themselves in the most dire of circumstances with limited resources, dwindling food supply and no rescue coming any time soon. Team spirit evaporates as disagreements cause the group to separate into factions - a violent one lead by an unbalanced ruler, and a compassionate one led by a selfless player.", "text_for_embedding": "Eden (2015). Genres: Thriller, Drama. After their plane crashes off the coast of a deserted Pacific island, the surviving members of an American soccer team find themselves in the most dire of circumstances with limited resources, dwindling food supply and no rescue coming any time soon. Team spirit evaporates as disagreements cause the group to separate into factions - a violent one lead by an unbalanced ruler, and a compassionate one led by a selfless player.. Tags: island, airplane, survival, soccer, crash, team"} +{"id": "31163", "title": "Chicken Tikka Masala", "year": 2005, "duration_min": 90, "rating": 3.5, "genres": "Comedy, Romance, Foreign", "genres_pipe": "|Comedy|Romance|Foreign|", "keywords": "coming out, arranged marriage, gay relationship", "tags_pipe": "|coming out|arranged marriage|gay relationship|", "overview": "Jimi (Chris Bisson), the Chopra family's only son, gets caught off guard when his high-handed parents (Saeed Jaffrey and Jamila Massey) announce an arranged marriage to Simran (Jinder Mahal), a lovely girl from a respectable family. Problem is, Jimi's gay, so to hide his homosexuality, he spins an ever-more elaborate web of deceit -- but how long can he conceal the truth?", "text_for_embedding": "Chicken Tikka Masala (2005). Genres: Comedy, Romance, Foreign. Jimi (Chris Bisson), the Chopra family's only son, gets caught off guard when his high-handed parents (Saeed Jaffrey and Jamila Massey) announce an arranged marriage to Simran (Jinder Mahal), a lovely girl from a respectable family. Problem is, Jimi's gay, so to hide his homosexuality, he spins an ever-more elaborate web of deceit -- but how long can he conceal the truth?. Tags: coming out, arranged marriage, gay relationship"} +{"id": "297621", "title": "There's Always Woodstock", "year": 2014, "duration_min": 90, "rating": 5.4, "genres": "Romance, Comedy, Music", "genres_pipe": "|Romance|Comedy|Music|", "keywords": "woman director", "tags_pipe": "|woman director|", "overview": "When Neurotic, struggling songwriter, Catherine Brown's life in New York City falls apart, she is forced to confront her past when she spends the summer at her childhood home in Woodstock.", "text_for_embedding": "There's Always Woodstock (2014). Genres: Romance, Comedy, Music. When Neurotic, struggling songwriter, Catherine Brown's life in New York City falls apart, she is forced to confront her past when she spends the summer at her childhood home in Woodstock.. Tags: woman director"} +{"id": "16205", "title": "Jack Brooks: Monster Slayer", "year": 2007, "duration_min": 85, "rating": 5.7, "genres": "Action, Comedy, Horror", "genres_pipe": "|Action|Comedy|Horror|", "keywords": "camping, vomit, demon, science", "tags_pipe": "|camping|vomit|demon|science|", "overview": "As a child Jack Brooks witnessed the brutal murder of his family. Now a young man he struggles with a pestering girlfriend, therapy sessions that resolve nothing, and night classes that barely hold his interest. After unleashing an ancient curse, Jack's Professor undergoes a transformation into something not-quite- human, and Jack is forced to confront some old demons... along with a few new ones.", "text_for_embedding": "Jack Brooks: Monster Slayer (2007). Genres: Action, Comedy, Horror. As a child Jack Brooks witnessed the brutal murder of his family. Now a young man he struggles with a pestering girlfriend, therapy sessions that resolve nothing, and night classes that barely hold his interest. After unleashing an ancient curse, Jack's Professor undergoes a transformation into something not-quite- human, and Jack is forced to confront some old demons... along with a few new ones.. Tags: camping, vomit, demon, science"} +{"id": "887", "title": "The Best Years of Our Lives", "year": 1946, "duration_min": 172, "rating": 7.6, "genres": "Drama, History, Romance", "genres_pipe": "|Drama|History|Romance|", "keywords": "usa, post traumatic stress disorder, war veteran, world war ii, rehabilitation, bodily disabled person", "tags_pipe": "|usa|post traumatic stress disorder|war veteran|world war ii|rehabilitation|bodily disabled person|", "overview": "It's the hope that sustains the spirit of every GI: the dream of the day when he will finally return home. For three WWII veterans, the day has arrived. But for each man, the dream is about to become a nightmare. Captain Fred Derry is returning to a loveless marriage; Sergeant Al Stephenson is a stranger to a family that's grown up without him; and young sailor Homer Parrish is tormented by the loss of his hands. Can these three men find the courage to rebuild their world? Or are the best years of their lives a thing of the past?", "text_for_embedding": "The Best Years of Our Lives (1946). Genres: Drama, History, Romance. It's the hope that sustains the spirit of every GI: the dream of the day when he will finally return home. For three WWII veterans, the day has arrived. But for each man, the dream is about to become a nightmare. Captain Fred Derry is returning to a loveless marriage; Sergeant Al Stephenson is a stranger to a family that's grown up without him; and young sailor Homer Parrish is tormented by the loss of his hands. Can these three men find the courage to rebuild their world? Or are the best years of their lives a thing of the past?. Tags: usa, post traumatic stress disorder, war veteran, world war ii, rehabilitation, bodily disabled person"} +{"id": "9517", "title": "Bully", "year": 2001, "duration_min": 113, "rating": 6.7, "genres": "Crime, Drama", "genres_pipe": "|Crime|Drama|", "keywords": "florida, striptease, homosexuality, independent film, best friend, falling in love, group of friends", "tags_pipe": "|florida|striptease|homosexuality|independent film|best friend|falling in love|group of friends|", "overview": "After finding himself at the constant abuse of his best friend Bobby, Marty has become fed up with his friend's twisted ways. His girlfriend, a victim of Bobby's often cruel ways, couldn't agree more and they strategize murdering Bobby.", "text_for_embedding": "Bully (2001). Genres: Crime, Drama. After finding himself at the constant abuse of his best friend Bobby, Marty has become fed up with his friend's twisted ways. His girlfriend, a victim of Bobby's often cruel ways, couldn't agree more and they strategize murdering Bobby.. Tags: florida, striptease, homosexuality, independent film, best friend, falling in love, group of friends"} +{"id": "6007", "title": "Elling", "year": 2001, "duration_min": 89, "rating": 7.0, "genres": "Comedy, Drama", "genres_pipe": "|Comedy|Drama|", "keywords": "mentally disabled", "tags_pipe": "|mentally disabled|", "overview": "When his mother, who has sheltered him his entire 40 years, dies, Elling, a sensitive, would-be poet, is sent to live in a state institution. There he meets Kjell Bjarne, a gentle giant and female-obsessed virgin in his 40s. After two years, the men are released and provided with a state-funded apartment and stipend with the hope they will be able to live on their own.", "text_for_embedding": "Elling (2001). Genres: Comedy, Drama. When his mother, who has sheltered him his entire 40 years, dies, Elling, a sensitive, would-be poet, is sent to live in a state institution. There he meets Kjell Bjarne, a gentle giant and female-obsessed virgin in his 40s. After two years, the men are released and provided with a state-funded apartment and stipend with the hope they will be able to live on their own.. Tags: mentally disabled"} +{"id": "364083", "title": "Mi America", "year": 2015, "duration_min": 126, "rating": 0.0, "genres": "Drama, Crime", "genres_pipe": "|Drama|Crime|", "keywords": "new york state, hate crime", "tags_pipe": "|new york state|hate crime|", "overview": "A hate-crime has been committed in a the small city of Braxton, N.Y. Five migrant laborers have been beaten, shot, then ditched. This will upset the delicate balance of an ethnically diverse populace.", "text_for_embedding": "Mi America (2015). Genres: Drama, Crime. A hate-crime has been committed in a the small city of Braxton, N.Y. Five migrant laborers have been beaten, shot, then ditched. This will upset the delicate balance of an ethnically diverse populace.. Tags: new york state, hate crime"} +{"id": "8329", "title": "[REC]", "year": 2007, "duration_min": 78, "rating": 7.1, "genres": "Horror, Mystery", "genres_pipe": "|Horror|Mystery|", "keywords": "terror, obsession, camcorder, firemen, religion and supernatural, reality tv, bite, cinematographer, attempt to escape, lodger, live-reportage, found footage", "tags_pipe": "|terror|obsession|camcorder|firemen|religion and supernatural|reality tv|bite|cinematographer|attempt to escape|lodger|live-reportage|found footage|", "overview": "A television reporter and cameraman follow emergency workers into a dark apartment building and are quickly locked inside with something terrifying.", "text_for_embedding": "[REC] (2007). Genres: Horror, Mystery. A television reporter and cameraman follow emergency workers into a dark apartment building and are quickly locked inside with something terrifying.. Tags: terror, obsession, camcorder, firemen, religion and supernatural, reality tv, bite, cinematographer, attempt to escape, lodger, live-reportage, found footage"} +{"id": "69640", "title": "Lies in Plain Sight", "year": 2010, "duration_min": 88, "rating": 4.5, "genres": "Drama, Mystery, Thriller", "genres_pipe": "|Drama|Mystery|Thriller|", "keywords": "suicide, family secrets, blind, woman director", "tags_pipe": "|suicide|family secrets|blind|woman director|", "overview": "“Lies in Plain Sight” tells the story of Eva and her blind cousin Sofia (Martha Higareda), who were inseparable as children, with Eva the loyal companion who helped Sofia through her tough adolescent years. When Eva suddenly commits suicide, Sofia rushes home to her father, Hector (Benito Martinez), and Eva’s parents, Marisol (Rosie Perez) and Rafael (Yul Vásquez), to find answers. But the more she delves into Eva’s life, questioning her past boyfriends Ethan (Chad Michael Murray) and Christian (Christoph Sanders), the more Sofia realizes that their childhood was actually filled with dark, disturbing secrets.", "text_for_embedding": "Lies in Plain Sight (2010). Genres: Drama, Mystery, Thriller. “Lies in Plain Sight” tells the story of Eva and her blind cousin Sofia (Martha Higareda), who were inseparable as children, with Eva the loyal companion who helped Sofia through her tough adolescent years. When Eva suddenly commits suicide, Sofia rushes home to her father, Hector (Benito Martinez), and Eva’s parents, Marisol (Rosie Perez) and Rafael (Yul Vásquez), to find answers. But the more she delves into Eva’s life, questioning her past boyfriends Ethan (Chad Michael Murray) and Christian (Christoph Sanders), the more Sofia realizes that their childhood was actually filled with dark, disturbing secrets.. Tags: suicide, family secrets, blind, woman director"} +{"id": "347548", "title": "Containment", "year": 2015, "duration_min": 77, "rating": 5.1, "genres": "Thriller, Horror, Science Fiction", "genres_pipe": "|Thriller|Horror|Science Fiction|", "keywords": "", "tags_pipe": "", "overview": "Neighbors in a block wake one morning to find they have been sealed inside their apartments. Can they work together to find out why? Or will they destroy each other in their fight to escape?", "text_for_embedding": "Containment (2015). Genres: Thriller, Horror, Science Fiction. Neighbors in a block wake one morning to find they have been sealed inside their apartments. Can they work together to find out why? Or will they destroy each other in their fight to escape?. Tags: "} +{"id": "322443", "title": "The Timber", "year": 2015, "duration_min": 81, "rating": 4.1, "genres": "Adventure, Drama, Western", "genres_pipe": "|Adventure|Drama|Western|", "keywords": "", "tags_pipe": "", "overview": "In the wild west, two brothers embark on a journey to collect a bounty in a desperate attempt to save their home: but what they find along the way is more than they bargained for.", "text_for_embedding": "The Timber (2015). Genres: Adventure, Drama, Western. In the wild west, two brothers embark on a journey to collect a bounty in a desperate attempt to save their home: but what they find along the way is more than they bargained for.. Tags: "} +{"id": "657", "title": "From Russia with Love", "year": 1963, "duration_min": 115, "rating": 6.9, "genres": "Action, Thriller, Adventure", "genres_pipe": "|Action|Thriller|Adventure|", "keywords": "venice, london england, terror, england, assassination, spy, assassin, istanbul, russia, secret mission, secret organization, secret intelligence service, kgb, orient express, zagreb", "tags_pipe": "|venice|london england|terror|england|assassination|spy|assassin|istanbul|russia|secret mission|secret organization|secret intelligence service|kgb|orient express|zagreb|", "overview": "Agent 007 is back in the second installment of the James Bond series, this time battling a secret crime organization known as SPECTRE. Russians Rosa Klebb and Kronsteen are out to snatch a decoding device known as the Lektor, using the ravishing Tatiana to lure Bond into helping them. Bond willingly travels to meet Tatiana in Istanbul, where he must rely on his wits to escape with his life in a series of deadly encounters with the enemy", "text_for_embedding": "From Russia with Love (1963). Genres: Action, Thriller, Adventure. Agent 007 is back in the second installment of the James Bond series, this time battling a secret crime organization known as SPECTRE. Russians Rosa Klebb and Kronsteen are out to snatch a decoding device known as the Lektor, using the ravishing Tatiana to lure Bond into helping them. Bond willingly travels to meet Tatiana in Istanbul, where he must rely on his wits to escape with his life in a series of deadly encounters with the enemy. Tags: venice, london england, terror, england, assassination, spy, assassin, istanbul, russia, secret mission, secret organization, secret intelligence service, kgb, orient express, zagreb"} +{"id": "28165", "title": "The Toxic Avenger Part II", "year": 1989, "duration_min": 96, "rating": 5.3, "genres": "Comedy, Horror, Action", "genres_pipe": "|Comedy|Horror|Action|", "keywords": "japan, new jersey, sequel, superhero, gore, spoof, cult film", "tags_pipe": "|japan|new jersey|sequel|superhero|gore|spoof|cult film|", "overview": "The Toxic Avenger is lured to Tokyo, Japan by the evil corporation Apocalypse Inc. So while the Toxic Avenger is fighting crime in Tokyo, Apocalypse Inc. spread evil in Tromaville.", "text_for_embedding": "The Toxic Avenger Part II (1989). Genres: Comedy, Horror, Action. The Toxic Avenger is lured to Tokyo, Japan by the evil corporation Apocalypse Inc. So while the Toxic Avenger is fighting crime in Tokyo, Apocalypse Inc. spread evil in Tromaville.. Tags: japan, new jersey, sequel, superhero, gore, spoof, cult film"} +{"id": "11561", "title": "Sleeper", "year": 1973, "duration_min": 89, "rating": 7.0, "genres": "Comedy, Romance, Science Fiction", "genres_pipe": "|Comedy|Romance|Science Fiction|", "keywords": "sex, revolution, future, dystopia, government, control, satire, independent film, robot, tyranny, cyrogenics, anarchic comedy", "tags_pipe": "|sex|revolution|future|dystopia|government|control|satire|independent film|robot|tyranny|cyrogenics|anarchic comedy|", "overview": "Miles Monroe, a clarinet-playing health food store proprietor, is revived out of cryostasis 200 years into a future world in order to help rebels fight an oppressive government regime.", "text_for_embedding": "Sleeper (1973). Genres: Comedy, Romance, Science Fiction. Miles Monroe, a clarinet-playing health food store proprietor, is revived out of cryostasis 200 years into a future world in order to help rebels fight an oppressive government regime.. Tags: sex, revolution, future, dystopia, government, control, satire, independent film, robot, tyranny, cyrogenics, anarchic comedy"} +{"id": "270303", "title": "It Follows", "year": 2015, "duration_min": 100, "rating": 6.6, "genres": "Horror, Thriller", "genres_pipe": "|Horror|Thriller|", "keywords": "chase, supernatural, friends, vision, school, young adult, followed", "tags_pipe": "|chase|supernatural|friends|vision|school|young adult|followed|", "overview": "For 19-year-old Jay, fall should be about school, boys and weekends out at the lake. But a seemingly innocent physical encounter turns sour and gives her the inescapable sense that someone, or something, is following her. Faced with this burden, Jay and her teenage friends must find a way to escape the horror that seems to be only a few steps behind.", "text_for_embedding": "It Follows (2015). Genres: Horror, Thriller. For 19-year-old Jay, fall should be about school, boys and weekends out at the lake. But a seemingly innocent physical encounter turns sour and gives her the inescapable sense that someone, or something, is following her. Faced with this burden, Jay and her teenage friends must find a way to escape the horror that seems to be only a few steps behind.. Tags: chase, supernatural, friends, vision, school, young adult, followed"} +{"id": "11624", "title": "Everything You Always Wanted to Know About Sex *But Were Afraid to Ask", "year": 1972, "duration_min": 88, "rating": 6.6, "genres": "Comedy", "genres_pipe": "|Comedy|", "keywords": "transsexuality, perversity, sperm, orgasm, sodomy, sexology, homosexuality, aphrodisiac, anarchic comedy", "tags_pipe": "|transsexuality|perversity|sperm|orgasm|sodomy|sexology|homosexuality|aphrodisiac|anarchic comedy|", "overview": "A collection of seven vignettes, which each address a question concerning human sexuality.", "text_for_embedding": "Everything You Always Wanted to Know About Sex *But Were Afraid to Ask (1972). Genres: Comedy. A collection of seven vignettes, which each address a question concerning human sexuality.. Tags: transsexuality, perversity, sperm, orgasm, sodomy, sexology, homosexuality, aphrodisiac, anarchic comedy"} +{"id": "595", "title": "To Kill a Mockingbird", "year": 1962, "duration_min": 129, "rating": 8.0, "genres": "Crime, Drama", "genres_pipe": "|Crime|Drama|", "keywords": "black people, based on novel, brother sister relationship, becoming an adult, isolation, arbitrary law, socially deprived family, tree house, wrong accusal, farm worker, intolerance, exclusion, court case, defence, right and justice", "tags_pipe": "|black people|based on novel|brother sister relationship|becoming an adult|isolation|arbitrary law|socially deprived family|tree house|wrong accusal|farm worker|intolerance|exclusion|court case|defence|right and justice|", "overview": "In a small Alabama town in the 1930s, scrupulously honest and highly respected lawyer, Atticus Finch puts his career on the line when he agrees to represent Tom Robinson, a black man accused of rape. The trial and the events surrounding it are seen through the eyes of Finch's six-year-old daughter, Scout. While Robinson's trial gives the movie its momentum, there are plenty of anecdotal occurrences before and after the court date: Scout's ever-strengthening bond with older brother, Jem, her friendship with precocious young Dill Harris, her father's no-nonsense reactions to such life-and-death crises as a rampaging mad dog, and especially Scout's reactions to, and relationship with, Boo Radley, the reclusive 'village idiot' who turns out to be her salvation when she is attacked by a venomous bigot.", "text_for_embedding": "To Kill a Mockingbird (1962). Genres: Crime, Drama. In a small Alabama town in the 1930s, scrupulously honest and highly respected lawyer, Atticus Finch puts his career on the line when he agrees to represent Tom Robinson, a black man accused of rape. The trial and the events surrounding it are seen through the eyes of Finch's six-year-old daughter, Scout. While Robinson's trial gives the movie its momentum, there are plenty of anecdotal occurrences before and after the court date: Scout's ever-strengthening bond with older brother, Jem, her friendship with precocious young Dill Harris, her father's no-nonsense reactions to such life-and-death crises as a rampaging mad dog, and especially Scout's reactions to, and relationship with, Boo Radley, the reclusive 'village idiot' who turns out to be her salvation when she is attacked by a venomous bigot.. Tags: black people, based on novel, brother sister relationship, becoming an adult, isolation, arbitrary law, socially deprived family, tree house, wrong accusal, farm worker, intolerance, exclusion, court case, defence, right and justice"} +{"id": "8810", "title": "Mad Max 2: The Road Warrior", "year": 1981, "duration_min": 95, "rating": 7.3, "genres": "Adventure, Action, Thriller, Science Fiction", "genres_pipe": "|Adventure|Action|Thriller|Science Fiction|", "keywords": "explosive, boomerang, pilot, chase, post-apocalyptic, dystopia, deal, survivor, feral child, australia, community, ex-cop, truck, sequel, independent film", "tags_pipe": "|explosive|boomerang|pilot|chase|post-apocalyptic|dystopia|deal|survivor|feral child|australia|community|ex-cop|truck|sequel|independent film|", "overview": "Max Rockatansky returns as the heroic loner who drives the dusty roads of a postapocalyptic Australian Outback in an unending search for gasoline. Arrayed against him and the other scraggly defendants of a fuel-depot encampment are the bizarre warriors commanded by the charismatic Lord Humungus, a violent leader whose scruples are as barren as the surrounding landscape.", "text_for_embedding": "Mad Max 2: The Road Warrior (1981). Genres: Adventure, Action, Thriller, Science Fiction. Max Rockatansky returns as the heroic loner who drives the dusty roads of a postapocalyptic Australian Outback in an unending search for gasoline. Arrayed against him and the other scraggly defendants of a fuel-depot encampment are the bizarre warriors commanded by the charismatic Lord Humungus, a violent leader whose scruples are as barren as the surrounding landscape.. Tags: explosive, boomerang, pilot, chase, post-apocalyptic, dystopia, deal, survivor, feral child, australia, community, ex-cop, truck, sequel, independent film"} +{"id": "12207", "title": "The Legend of Drunken Master", "year": 1994, "duration_min": 102, "rating": 7.2, "genres": "Action, Comedy", "genres_pipe": "|Action|Comedy|", "keywords": "father son relationship, martial arts, showdown, fistfight, friendship, duel", "tags_pipe": "|father son relationship|martial arts|showdown|fistfight|friendship|duel|", "overview": "Returning home with his father after a shopping expedition, Wong Fei-Hong is unwittingly caught up in the battle between foreigners who wish to export ancient Chinese artifacts and loyalists who don't want the pieces to leave the country. Fei-Hong must fight against the foreigners using his Drunken Boxing style, and overcome his father's antagonism as well.", "text_for_embedding": "The Legend of Drunken Master (1994). Genres: Action, Comedy. Returning home with his father after a shopping expedition, Wong Fei-Hong is unwittingly caught up in the battle between foreigners who wish to export ancient Chinese artifacts and loyalists who don't want the pieces to leave the country. Fei-Hong must fight against the foreigners using his Drunken Boxing style, and overcome his father's antagonism as well.. Tags: father son relationship, martial arts, showdown, fistfight, friendship, duel"} +{"id": "226", "title": "Boys Don't Cry", "year": 1999, "duration_min": 118, "rating": 7.2, "genres": "Crime, Drama", "genres_pipe": "|Crime|Drama|", "keywords": "rape, sex, identity, small town, love, friends, murder, romance, true, transgender, anger, woman director, nebraska, small town murder, transphobia", "tags_pipe": "|rape|sex|identity|small town|love|friends|murder|romance|true|transgender|anger|woman director|nebraska|small town murder|transphobia|", "overview": "Female born, Teena Brandon adopts his male identity of Brandon Teena and attempts to find himself and love in Nebraska.", "text_for_embedding": "Boys Don't Cry (1999). Genres: Crime, Drama. Female born, Teena Brandon adopts his male identity of Brandon Teena and attempts to find himself and love in Nebraska.. Tags: rape, sex, identity, small town, love, friends, murder, romance, true, transgender, anger, woman director, nebraska, small town murder, transphobia"} +{"id": "92182", "title": "Silent House", "year": 2011, "duration_min": 85, "rating": 5.2, "genres": "Horror, Mystery", "genres_pipe": "|Horror|Mystery|", "keywords": "supernatural, remake, suspense, beer bottle, real time, candelabra, reference to facebook, padlock, woman director", "tags_pipe": "|supernatural|remake|suspense|beer bottle|real time|candelabra|reference to facebook|padlock|woman director|", "overview": "Sarah returns with her father and uncle to fix up the family's longtime summerhouse after it was violated by squatters in the off-season. As they work in the dark, Sarah begins to hear sounds from within the walls of the boarded-up building. Although she barely remembers the place, Sarah senses the past may still haunt the home.", "text_for_embedding": "Silent House (2011). Genres: Horror, Mystery. Sarah returns with her father and uncle to fix up the family's longtime summerhouse after it was violated by squatters in the off-season. As they work in the dark, Sarah begins to hear sounds from within the walls of the boarded-up building. Although she barely remembers the place, Sarah senses the past may still haunt the home.. Tags: supernatural, remake, suspense, beer bottle, real time, candelabra, reference to facebook, padlock, woman director"} +{"id": "582", "title": "The Lives of Others", "year": 2006, "duration_min": 137, "rating": 7.9, "genres": "Drama, Thriller", "genres_pipe": "|Drama|Thriller|", "keywords": "germany, berlin, suicide, berlin wall, corruption, german democratic republic, stasi, blackmail, cold war, soviet union, nudity, propaganda, freedom of speech, house search, artists' life", "tags_pipe": "|germany|berlin|suicide|berlin wall|corruption|german democratic republic|stasi|blackmail|cold war|soviet union|nudity|propaganda|freedom of speech|house search|artists' life|", "overview": "A tragic love story set in East Berlin with the backdrop of an undercover Stasi controlled culture. Stasi captain Wieler is ordered to follow author Dreyman and plunges deeper and deeper into his life until he reaches the threshold of doubting the system.", "text_for_embedding": "The Lives of Others (2006). Genres: Drama, Thriller. A tragic love story set in East Berlin with the backdrop of an undercover Stasi controlled culture. Stasi captain Wieler is ordered to follow author Dreyman and plunges deeper and deeper into his life until he reaches the threshold of doubting the system.. Tags: germany, berlin, suicide, berlin wall, corruption, german democratic republic, stasi, blackmail, cold war, soviet union, nudity, propaganda, freedom of speech, house search, artists' life"} +{"id": "72213", "title": "Courageous", "year": 2011, "duration_min": 129, "rating": 6.8, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "father, faith", "tags_pipe": "|father|faith|", "overview": "As law enforcement officers, Adam Mitchell, Nathan Hayes, and their partners are confident and focused. They willingly stand up to the worst the streets have to offer. Yet at the end of the day, they face a challenge that none of them are truly prepared to tackle: fatherhood. They know that God desires to turn the hearts of fathers to their children, but their children are beginning to drift further and further away from them. When tragedy hits home, these men are left wrestling with their hopes, their fears, their faith, and their fathering. Can a new found urgency help these dads draw closer to God ... and to their children? COURAGEOUS is the fourth release of Sherwood Pictures, the movie making ministry of Sherwood Church in Albany, Georgia.", "text_for_embedding": "Courageous (2011). Genres: Drama. As law enforcement officers, Adam Mitchell, Nathan Hayes, and their partners are confident and focused. They willingly stand up to the worst the streets have to offer. Yet at the end of the day, they face a challenge that none of them are truly prepared to tackle: fatherhood. They know that God desires to turn the hearts of fathers to their children, but their children are beginning to drift further and further away from them. When tragedy hits home, these men are left wrestling with their hopes, their fears, their faith, and their fathering. Can a new found urgency help these dads draw closer to God ... and to their children? COURAGEOUS is the fourth release of Sherwood Pictures, the movie making ministry of Sherwood Church in Albany, Georgia.. Tags: father, faith"} +{"id": "990", "title": "The Hustler", "year": 1961, "duration_min": 134, "rating": 7.6, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "suicide, gambling, manager, alcohol, based on novel, bar, billard, hustler, sport, party, pool, money, game, drunk, player", "tags_pipe": "|suicide|gambling|manager|alcohol|based on novel|bar|billard|hustler|sport|party|pool|money|game|drunk|player|", "overview": "Fast Eddie Felson is a small-time pool hustler with a lot of talent but a self-destructive attitude. His bravado causes him to challenge the legendary Minnesota Fats to a high-stakes match.", "text_for_embedding": "The Hustler (1961). Genres: Drama. Fast Eddie Felson is a small-time pool hustler with a lot of talent but a self-destructive attitude. His bravado causes him to challenge the legendary Minnesota Fats to a high-stakes match.. Tags: suicide, gambling, manager, alcohol, based on novel, bar, billard, hustler, sport, party, pool, money, game, drunk, player"} +{"id": "55604", "title": "Boom Town", "year": 1940, "duration_min": 119, "rating": 6.5, "genres": "Adventure, Drama, Romance", "genres_pipe": "|Adventure|Drama|Romance|", "keywords": "partnership, oil, oil tycoon, wildcatter, oil field", "tags_pipe": "|partnership|oil|oil tycoon|wildcatter|oil field|", "overview": "McMasters and Sand come to oil towns to get rich. Betsey comes West intending to marry Sand but marries McMasters instead. Getting rich and losing it all teaches McMasters and Sand the value of personal ties.", "text_for_embedding": "Boom Town (1940). Genres: Adventure, Drama, Romance. McMasters and Sand come to oil towns to get rich. Betsey comes West intending to marry Sand but marries McMasters instead. Getting rich and losing it all teaches McMasters and Sand the value of personal ties.. Tags: partnership, oil, oil tycoon, wildcatter, oil field"} +{"id": "9662", "title": "The Triplets of Belleville", "year": 2003, "duration_min": 80, "rating": 7.3, "genres": "Adventure, Animation, Comedy, Drama", "genres_pipe": "|Adventure|Animation|Comedy|Drama|", "keywords": "france, kidnapping, boy, biker, tour de france, mafia, dog, triplet, band singer, silent film, old woman", "tags_pipe": "|france|kidnapping|boy|biker|tour de france|mafia|dog|triplet|band singer|silent film|old woman|", "overview": "When her grandson is kidnapped during the Tour de France, Madame Souza and her beloved pooch Bruno team up with the Belleville Sisters--an aged song-and-dance team from the days of Fred Astaire--to rescue him.", "text_for_embedding": "The Triplets of Belleville (2003). Genres: Adventure, Animation, Comedy, Drama. When her grandson is kidnapped during the Tour de France, Madame Souza and her beloved pooch Bruno team up with the Belleville Sisters--an aged song-and-dance team from the days of Fred Astaire--to rescue him.. Tags: france, kidnapping, boy, biker, tour de france, mafia, dog, triplet, band singer, silent film, old woman"} +{"id": "20862", "title": "Smoke Signals", "year": 1998, "duration_min": 89, "rating": 6.6, "genres": "Drama, Comedy", "genres_pipe": "|Drama|Comedy|", "keywords": "", "tags_pipe": "", "overview": "Young Indian man Thomas is a nerd in his reservation, wearing oversize glasses and telling everyone stories no-one wants to hear. His parents died in a fire in 1976, and Thomas was saved by Arnold. Arnold soon left his family, and Victor hasn't seen his father for 10 years. When Victor hears Arnold has died, Thomas offers him funding for the trip to get Arnold's remains", "text_for_embedding": "Smoke Signals (1998). Genres: Drama, Comedy. Young Indian man Thomas is a nerd in his reservation, wearing oversize glasses and telling everyone stories no-one wants to hear. His parents died in a fire in 1976, and Thomas was saved by Arnold. Arnold soon left his family, and Victor hasn't seen his father for 10 years. When Victor hears Arnold has died, Thomas offers him funding for the trip to get Arnold's remains. Tags: "} +{"id": "2771", "title": "American Splendor", "year": 2003, "duration_min": 101, "rating": 7.1, "genres": "Comedy, Drama", "genres_pipe": "|Comedy|Drama|", "keywords": "biography, independent film, v.a. hospital, junk sale, jellybean, greeting card, file clerk, garage sale, comic book art, neurotic, woman director", "tags_pipe": "|biography|independent film|v.a. hospital|junk sale|jellybean|greeting card|file clerk|garage sale|comic book art|neurotic|woman director|", "overview": "An original mix of fiction and reality illuminates the life of comic book hero everyman Harvey Pekar.", "text_for_embedding": "American Splendor (2003). Genres: Comedy, Drama. An original mix of fiction and reality illuminates the life of comic book hero everyman Harvey Pekar.. Tags: biography, independent film, v.a. hospital, junk sale, jellybean, greeting card, file clerk, garage sale, comic book art, neurotic, woman director"} +{"id": "80", "title": "Before Sunset", "year": 2004, "duration_min": 80, "rating": 7.6, "genres": "Drama, Romance", "genres_pipe": "|Drama|Romance|", "keywords": "paris, journalist, dialogue, talking, soulmates, walking, bookshop, love of one's life, author", "tags_pipe": "|paris|journalist|dialogue|talking|soulmates|walking|bookshop|love of one's life|author|", "overview": "Nine years ago two strangers met by chance and spent a night in Vienna that ended before sunrise. They are about to meet for the first time since. Now they have one afternoon to find out if they belong together.", "text_for_embedding": "Before Sunset (2004). Genres: Drama, Romance. Nine years ago two strangers met by chance and spent a night in Vienna that ended before sunrise. They are about to meet for the first time since. Now they have one afternoon to find out if they belong together.. Tags: paris, journalist, dialogue, talking, soulmates, walking, bookshop, love of one's life, author"} +{"id": "55", "title": "Amores perros", "year": 2000, "duration_min": 154, "rating": 7.6, "genres": "Drama, Thriller", "genres_pipe": "|Drama|Thriller|", "keywords": "homeless person, mexico city, daughter, secret love, dogfight, money, dog, nonlinear timeline, multiple storylines, new mexican cinema", "tags_pipe": "|homeless person|mexico city|daughter|secret love|dogfight|money|dog|nonlinear timeline|multiple storylines|new mexican cinema|", "overview": "Three different people in Mexico City are catapulted into dramatic and unforeseen circumstances in the wake of a terrible car crash: a young punk stumbles into the sinister underground world of dog fighting; an injured supermodel's designer pooch disappears into the apartment's floorboards; and an ex-radical turned hit man rescues a gunshot Rotweiler.", "text_for_embedding": "Amores perros (2000). Genres: Drama, Thriller. Three different people in Mexico City are catapulted into dramatic and unforeseen circumstances in the wake of a terrible car crash: a young punk stumbles into the sinister underground world of dog fighting; an injured supermodel's designer pooch disappears into the apartment's floorboards; and an ex-radical turned hit man rescues a gunshot Rotweiler.. Tags: homeless person, mexico city, daughter, secret love, dogfight, money, dog, nonlinear timeline, multiple storylines, new mexican cinema"} +{"id": "11023", "title": "Thirteen", "year": 2003, "duration_min": 100, "rating": 6.7, "genres": "Crime, Drama", "genres_pipe": "|Crime|Drama|", "keywords": "cheating, dysfunctional family, teen angst, underage drinking, domestic violence, makeover, drug overdose, teacher student relationship, street life, movie theater, razor blade, tattoo shop, peer pressure, shoe store, overachiever", "tags_pipe": "|cheating|dysfunctional family|teen angst|underage drinking|domestic violence|makeover|drug overdose|teacher student relationship|street life|movie theater|razor blade|tattoo shop|peer pressure|shoe store|overachiever|", "overview": "Tracy is a normal 13-year-old trying to make it in school. After befriending the most popular girl at school, Evie, Tracy's world is turned upside down when Evie introduces her to a world of sex, drugs and cash. But it isn't long before Tracy's new world and attitude finally takes a toll on her, her family, and old friends.", "text_for_embedding": "Thirteen (2003). Genres: Crime, Drama. Tracy is a normal 13-year-old trying to make it in school. After befriending the most popular girl at school, Evie, Tracy's world is turned upside down when Evie introduces her to a world of sex, drugs and cash. But it isn't long before Tracy's new world and attitude finally takes a toll on her, her family, and old friends.. Tags: cheating, dysfunctional family, teen angst, underage drinking, domestic violence, makeover, drug overdose, teacher student relationship, street life, movie theater, razor blade, tattoo shop, peer pressure, shoe store, overachiever"} +{"id": "33667", "title": "Gentleman's Agreement", "year": 1947, "duration_min": 118, "rating": 6.8, "genres": "Drama, Romance", "genres_pipe": "|Drama|Romance|", "keywords": "anti semitism, soldier", "tags_pipe": "|anti semitism|soldier|", "overview": "A magazine writer poses as a Jew to expose anti-Semitism.", "text_for_embedding": "Gentleman's Agreement (1947). Genres: Drama, Romance. A magazine writer poses as a Jew to expose anti-Semitism.. Tags: anti semitism, soldier"} +{"id": "39013", "title": "Winter's Bone", "year": 2010, "duration_min": 100, "rating": 6.8, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "father, court, bail, drug trade, girl, aftercreditsstinger, duringcreditsstinger, woman director", "tags_pipe": "|father|court|bail|drug trade|girl|aftercreditsstinger|duringcreditsstinger|woman director|", "overview": "17 year-old Ree Dolly sets out to track down her father, who put their house up for his bail bond and then disappeared. If she fails, Ree and her family will be turned out into the Ozark woods. Challenging her outlaw kin's code of silence and risking her life, Ree hacks through the lies, evasions and threats offered up by her relatives and begins to piece together the truth.", "text_for_embedding": "Winter's Bone (2010). Genres: Drama. 17 year-old Ree Dolly sets out to track down her father, who put their house up for his bail bond and then disappeared. If she fails, Ree and her family will be turned out into the Ozark woods. Challenging her outlaw kin's code of silence and risking her life, Ree hacks through the lies, evasions and threats offered up by her relatives and begins to piece together the truth.. Tags: father, court, bail, drug trade, girl, aftercreditsstinger, duringcreditsstinger, woman director"} +{"id": "11194", "title": "Touching the Void", "year": 2003, "duration_min": 106, "rating": 7.6, "genres": "Documentary, Action, Adventure", "genres_pipe": "|Documentary|Action|Adventure|", "keywords": "wound, mountaineer, peru, sport, glacier, climbing, rescue, snow, cordillera huayhuash", "tags_pipe": "|wound|mountaineer|peru|sport|glacier|climbing|rescue|snow|cordillera huayhuash|", "overview": "A documentary based on the book of the same name by Joe Simpson about Simpson's and Simon Yates' disastrous and near-fatal attempt to climb 6,344m Siula Grande in the Cordillera Huayhuash in the Peruvian Andes in 1985.", "text_for_embedding": "Touching the Void (2003). Genres: Documentary, Action, Adventure. A documentary based on the book of the same name by Joe Simpson about Simpson's and Simon Yates' disastrous and near-fatal attempt to climb 6,344m Siula Grande in the Cordillera Huayhuash in the Peruvian Andes in 1985.. Tags: wound, mountaineer, peru, sport, glacier, climbing, rescue, snow, cordillera huayhuash"} +{"id": "43839", "title": "Alexander's Ragtime Band", "year": 1938, "duration_min": 106, "rating": 4.8, "genres": "Drama, Music, Romance", "genres_pipe": "|Drama|Music|Romance|", "keywords": "dance, ragtime, concert tour", "tags_pipe": "|dance|ragtime|concert tour|", "overview": "Roger Grant, a classical violinist, disappoints his family and teacher when he organizes a jazz band, but he and the band become successful. Roger falls in love with his singer Stella, but his reluctance to lose her leads him to thwart her efforts to become a solo star. When the World War separates them in 1917, Stella marries Roger's best friend Charlie. Roger comes home after the war and an important concert at Carnegie Hall brings the corners of the romantic triangle together.", "text_for_embedding": "Alexander's Ragtime Band (1938). Genres: Drama, Music, Romance. Roger Grant, a classical violinist, disappoints his family and teacher when he organizes a jazz band, but he and the band become successful. Roger falls in love with his singer Stella, but his reluctance to lose her leads him to thwart her efforts to become a solo star. When the World War separates them in 1917, Stella marries Roger's best friend Charlie. Roger comes home after the war and an important concert at Carnegie Hall brings the corners of the romantic triangle together.. Tags: dance, ragtime, concert tour"} +{"id": "1382", "title": "Me and You and Everyone We Know", "year": 2005, "duration_min": 90, "rating": 7.0, "genres": "Comedy, Drama", "genres_pipe": "|Comedy|Drama|", "keywords": "brother brother relationship, playground, independent film, sex talk, art gallery, separation, self mutilation, shoe salesman, chat session, female artist, meeting on the internet, hope chest, woman director", "tags_pipe": "|brother brother relationship|playground|independent film|sex talk|art gallery|separation|self mutilation|shoe salesman|chat session|female artist|meeting on the internet|hope chest|woman director|", "overview": "The feature film debut by artist Miranda July about a various comic situations and plots that intertwine. One story line is about a father who is ending his marriage and the other story is of a video artist (possibly autobiographical of Miranda July, also played by her) who is desperately trying to get her work in a modern art museum. The film won Caméra d'Or at Cannes.", "text_for_embedding": "Me and You and Everyone We Know (2005). Genres: Comedy, Drama. The feature film debut by artist Miranda July about a various comic situations and plots that intertwine. One story line is about a father who is ending his marriage and the other story is of a video artist (possibly autobiographical of Miranda July, also played by her) who is desperately trying to get her work in a modern art museum. The film won Caméra d'Or at Cannes.. Tags: brother brother relationship, playground, independent film, sex talk, art gallery, separation, self mutilation, shoe salesman, chat session, female artist, meeting on the internet, hope chest, woman director"} +{"id": "44639", "title": "Inside Job", "year": 2010, "duration_min": 109, "rating": 7.7, "genres": "Documentary", "genres_pipe": "|Documentary|", "keywords": "corruption, capitalism, globalization, bank, banker, fraud, wall street, finances, global economy, banking, crisis, money, economics, financial crisis, stock market", "tags_pipe": "|corruption|capitalism|globalization|bank|banker|fraud|wall street|finances|global economy|banking|crisis|money|economics|financial crisis|stock market|", "overview": "A film that exposes the shocking truth behind the economic crisis of 2008. The global financial meltdown, at a cost of over $20 trillion, resulted in millions of people losing their homes and jobs. Through extensive research and interviews with major financial insiders, politicians and journalists, Inside Job traces the rise of a rogue industry and unveils the corrosive relationships which have corrupted politics, regulation and academia.", "text_for_embedding": "Inside Job (2010). Genres: Documentary. A film that exposes the shocking truth behind the economic crisis of 2008. The global financial meltdown, at a cost of over $20 trillion, resulted in millions of people losing their homes and jobs. Through extensive research and interviews with major financial insiders, politicians and journalists, Inside Job traces the rise of a rogue industry and unveils the corrosive relationships which have corrupted politics, regulation and academia.. Tags: corruption, capitalism, globalization, bank, banker, fraud, wall street, finances, global economy, banking, crisis, money, economics, financial crisis, stock market"} +{"id": "301351", "title": "We Are Your Friends", "year": 2015, "duration_min": 96, "rating": 6.3, "genres": "Drama, Music, Romance", "genres_pipe": "|Drama|Music|Romance|", "keywords": "dj", "tags_pipe": "|dj|", "overview": "Young Cole Carter dreams of hitting the big time as a Hollywood disc jockey, spending his days and nights hanging with buddies and working on the one track that will set the world on fire. Opportunity comes knocking when he meets James Reed, a charismatic DJ who takes the 23-year-old under his wing. Soon, his seemingly clear path to success gets complicated when he starts falling for his mentor's girlfriend, jeopardizing his new friendship and the future he seems destined to fulfill.", "text_for_embedding": "We Are Your Friends (2015). Genres: Drama, Music, Romance. Young Cole Carter dreams of hitting the big time as a Hollywood disc jockey, spending his days and nights hanging with buddies and working on the one track that will set the world on fire. Opportunity comes knocking when he meets James Reed, a charismatic DJ who takes the 23-year-old under his wing. Soon, his seemingly clear path to success gets complicated when he starts falling for his mentor's girlfriend, jeopardizing his new friendship and the future he seems destined to fulfill.. Tags: dj"} +{"id": "4816", "title": "Ghost Dog: The Way of the Samurai", "year": 1999, "duration_min": 116, "rating": 7.2, "genres": "Crime, Drama", "genres_pipe": "|Crime|Drama|", "keywords": "deportation, hitman, mission of murder, book, code, telescope, beating, mafia, park, pigeon, hagakure, ice cream, haitian, cd player, rouge", "tags_pipe": "|deportation|hitman|mission of murder|book|code|telescope|beating|mafia|park|pigeon|hagakure|ice cream|haitian|cd player|rouge|", "overview": "An African-American Mafia hit man who models himself after the samurai of old finds himself targeted for death by the mob.", "text_for_embedding": "Ghost Dog: The Way of the Samurai (1999). Genres: Crime, Drama. An African-American Mafia hit man who models himself after the samurai of old finds himself targeted for death by the mob.. Tags: deportation, hitman, mission of murder, book, code, telescope, beating, mafia, park, pigeon, hagakure, ice cream, haitian, cd player, rouge"} +{"id": "7873", "title": "Harsh Times", "year": 2005, "duration_min": 120, "rating": 6.3, "genres": "Crime, Drama, Thriller, Action", "genres_pipe": "|Crime|Drama|Thriller|Action|", "keywords": "watching a movie, playing pool, vinegar", "tags_pipe": "|watching a movie|playing pool|vinegar|", "overview": "Jim Davis is an ex-Army Ranger who finds himself slipping back into his old life of petty crime after a job offer from the LAPD evaporates. His best friend is pressured by his girlfriend Sylvia to find a job, but Jim is more interested in hanging out and making cash from small heists, while trying to get a law enforcement job so he can marry his Mexican girlfriend.", "text_for_embedding": "Harsh Times (2005). Genres: Crime, Drama, Thriller, Action. Jim Davis is an ex-Army Ranger who finds himself slipping back into his old life of petty crime after a job offer from the LAPD evaporates. His best friend is pressured by his girlfriend Sylvia to find a job, but Jim is more interested in hanging out and making cash from small heists, while trying to get a law enforcement job so he can marry his Mexican girlfriend.. Tags: watching a movie, playing pool, vinegar"} +{"id": "331190", "title": "Captive", "year": 2015, "duration_min": 97, "rating": 5.6, "genres": "Crime, Drama, Thriller", "genres_pipe": "|Crime|Drama|Thriller|", "keywords": "hostage, based on true story, murder, independent film, single mother, drug, drug addict, recovering drug addict, auto theft, based on true events", "tags_pipe": "|hostage|based on true story|murder|independent film|single mother|drug|drug addict|recovering drug addict|auto theft|based on true events|", "overview": "Based on a miraculous true story that drew the attention of the entire nation, is the dramatic, thrilling, and spiritual journey of Ashley Smith and Brian Nichols. After being taken hostage by Brian in her own apartment, Ashley turns to Rick Warren’s inspirational book, The Purpose Driven Life, for guidance. In reading from the book, Ashley not only finds purpose in her own life, but helps Brian find a more peaceful resolution to a harrowing situation.", "text_for_embedding": "Captive (2015). Genres: Crime, Drama, Thriller. Based on a miraculous true story that drew the attention of the entire nation, is the dramatic, thrilling, and spiritual journey of Ashley Smith and Brian Nichols. After being taken hostage by Brian in her own apartment, Ashley turns to Rick Warren’s inspirational book, The Purpose Driven Life, for guidance. In reading from the book, Ashley not only finds purpose in her own life, but helps Brian find a more peaceful resolution to a harrowing situation.. Tags: hostage, based on true story, murder, independent film, single mother, drug, drug addict, recovering drug addict, auto theft, based on true events"} +{"id": "15186", "title": "Full Frontal", "year": 2002, "duration_min": 96, "rating": 4.8, "genres": "Comedy, Drama, Romance", "genres_pipe": "|Comedy|Drama|Romance|", "keywords": "independent film", "tags_pipe": "|independent film|", "overview": "A contemporary comedy set in Los Angeles, Full Frontal traces the complicated relationship among seven friends as they deal with the fragile connections that bind them together. Full Frontal takes place during a twenty-four hour period - a day in the life of missed connections.", "text_for_embedding": "Full Frontal (2002). Genres: Comedy, Drama, Romance. A contemporary comedy set in Los Angeles, Full Frontal traces the complicated relationship among seven friends as they deal with the fragile connections that bind them together. Full Frontal takes place during a twenty-four hour period - a day in the life of missed connections.. Tags: independent film"} +{"id": "17994", "title": "Witchboard", "year": 1986, "duration_min": 98, "rating": 5.9, "genres": "Horror", "genres_pipe": "|Horror|", "keywords": "ax, possession, psychic power, ouija, ouija board, evil spirit", "tags_pipe": "|ax|possession|psychic power|ouija|ouija board|evil spirit|", "overview": "Playing around with a Ouija board, a trio of friends succeeds in contacting the spirit of a young boy. Trouble begins when the evil spirit, Malfeitor, takes over one of their bodies.", "text_for_embedding": "Witchboard (1986). Genres: Horror. Playing around with a Ouija board, a trio of friends succeeds in contacting the spirit of a young boy. Trouble begins when the evil spirit, Malfeitor, takes over one of their bodies.. Tags: ax, possession, psychic power, ouija, ouija board, evil spirit"} +{"id": "1378", "title": "Shortbus", "year": 2006, "duration_min": 101, "rating": 6.3, "genres": "Romance, Drama, Comedy", "genres_pipe": "|Romance|Drama|Comedy|", "keywords": "gay, new york, free love, swinger club, transsexuality, sex, heterosexual, suicide attempt, eroticism, group sex, orgasm, sex therapy, video, dominatrix, homosexuality", "tags_pipe": "|gay|new york|free love|swinger club|transsexuality|sex|heterosexual|suicide attempt|eroticism|group sex|orgasm|sex therapy|video|dominatrix|homosexuality|", "overview": "A group of New Yorkers caught up in their milieu converge at an underground salon infamous for its blend of art, music, politics, and carnality.. The characters converge in a weekly Brooklyn salon loosely inspired by various underground NYC gatherings that took place in the early 2000's.", "text_for_embedding": "Shortbus (2006). Genres: Romance, Drama, Comedy. A group of New Yorkers caught up in their milieu converge at an underground salon infamous for its blend of art, music, politics, and carnality.. The characters converge in a weekly Brooklyn salon loosely inspired by various underground NYC gatherings that took place in the early 2000's.. Tags: gay, new york, free love, swinger club, transsexuality, sex, heterosexual, suicide attempt, eroticism, group sex, orgasm, sex therapy, video, dominatrix, homosexuality"} +{"id": "8885", "title": "Waltz with Bashir", "year": 2008, "duration_min": 90, "rating": 7.8, "genres": "Drama, Animation, War", "genres_pipe": "|Drama|Animation|War|", "keywords": "israel, palestine, middle east, lebanon, nightmare, middle east conflict", "tags_pipe": "|israel|palestine|middle east|lebanon|nightmare|middle east conflict|", "overview": "Much awarded animated documentary, in which director and Israeli army veteran Ari Folman interviews friends and former soldiers about their memories of the 1982 Lebanon war and especially the Sabra and Shatila massacre in Beirut. The usage on animation enabled Folman to illustrate their personal memories and dreams.", "text_for_embedding": "Waltz with Bashir (2008). Genres: Drama, Animation, War. Much awarded animated documentary, in which director and Israeli army veteran Ari Folman interviews friends and former soldiers about their memories of the 1982 Lebanon war and especially the Sabra and Shatila massacre in Beirut. The usage on animation enabled Folman to illustrate their personal memories and dreams.. Tags: israel, palestine, middle east, lebanon, nightmare, middle east conflict"} +{"id": "48382", "title": "The Book of Mormon Movie, Volume 1: The Journey", "year": 2003, "duration_min": 120, "rating": 5.0, "genres": "", "genres_pipe": "", "keywords": "", "tags_pipe": "", "overview": "The story of Lehi and his wife Sariah and their four sons: Laman, Lemuel, Sam, and Nephi. Lehi leaves Jerusalem because he prophesied unto the people concerning the destruction of Jerusalem, and they sought his life. He journeys into the wilderness with his family. He sends Nephi and his brethren back to Jerusalem after the brass plates and the family of Ishmael. The sons and daughters of Lehi marry the sons and daughters of Ishmael. They take their families and continue into the wilderness. Ishmael dies in the wilderness. They come to the sea. Nephi's brethren rebel against him. He confounds them, and builds a ship. They cross the sea to the promised land in the Americas. Lehi dies in the promised land. Nephi's brethren rebel against him again. Nephi departs again into the wilderness.", "text_for_embedding": "The Book of Mormon Movie, Volume 1: The Journey (2003). Genres: . The story of Lehi and his wife Sariah and their four sons: Laman, Lemuel, Sam, and Nephi. Lehi leaves Jerusalem because he prophesied unto the people concerning the destruction of Jerusalem, and they sought his life. He journeys into the wilderness with his family. He sends Nephi and his brethren back to Jerusalem after the brass plates and the family of Ishmael. The sons and daughters of Lehi marry the sons and daughters of Ishmael. They take their families and continue into the wilderness. Ishmael dies in the wilderness. They come to the sea. Nephi's brethren rebel against him. He confounds them, and builds a ship. They cross the sea to the promised land in the Americas. Lehi dies in the promised land. Nephi's brethren rebel against him again. Nephi departs again into the wilderness.. Tags: "} +{"id": "12901", "title": "No End in Sight", "year": 2007, "duration_min": 102, "rating": 7.2, "genres": "Documentary", "genres_pipe": "|Documentary|", "keywords": "white house, occupying power, independent film, incompetence, irak, superpower, warfare", "tags_pipe": "|white house|occupying power|independent film|incompetence|irak|superpower|warfare|", "overview": "Chronological look at the fiasco in Iraq, especially decisions made in the spring of 2003 - and the backgrounds of those making decisions - immediately following the overthrow of Saddam: no occupation plan, an inadequate team to run the country, insufficient troops to keep order, and three edicts from the White House announced by Bremmer when he took over.", "text_for_embedding": "No End in Sight (2007). Genres: Documentary. Chronological look at the fiasco in Iraq, especially decisions made in the spring of 2003 - and the backgrounds of those making decisions - immediately following the overthrow of Saddam: no occupation plan, an inadequate team to run the country, insufficient troops to keep order, and three edicts from the White House announced by Bremmer when he took over.. Tags: white house, occupying power, independent film, incompetence, irak, superpower, warfare"} +{"id": "250124", "title": "The Diary of a Teenage Girl", "year": 2015, "duration_min": 98, "rating": 6.8, "genres": "Drama, Romance", "genres_pipe": "|Drama|Romance|", "keywords": "1970s, teenage girl, older man younger woman relationship, based on graphic novel, teenage sexuality, woman director", "tags_pipe": "|1970s|teenage girl|older man younger woman relationship|based on graphic novel|teenage sexuality|woman director|", "overview": "Minnie Goetze is a 15-year-old aspiring comic-book artist, coming of age in the haze of the 1970s in San Francisco. Insatiably curious about the world around her, Minnie is a pretty typical teenage girl. Oh, except that she’s sleeping with her mother’s boyfriend.", "text_for_embedding": "The Diary of a Teenage Girl (2015). Genres: Drama, Romance. Minnie Goetze is a 15-year-old aspiring comic-book artist, coming of age in the haze of the 1970s in San Francisco. Insatiably curious about the world around her, Minnie is a pretty typical teenage girl. Oh, except that she’s sleeping with her mother’s boyfriend.. Tags: 1970s, teenage girl, older man younger woman relationship, based on graphic novel, teenage sexuality, woman director"} +{"id": "14284", "title": "In the Shadow of the Moon", "year": 2007, "duration_min": 109, "rating": 7.6, "genres": "Documentary", "genres_pipe": "|Documentary|", "keywords": "nasa, space mission, rocket, moon landing, space, astronaut, apollo s", "tags_pipe": "|nasa|space mission|rocket|moon landing|space|astronaut|apollo s|", "overview": "Archival material from the original NASA film footage – much of it seen for the first time – plus interviews with the surviving astronauts, including Jim Lovell, Dave Scott, John Young, Gene Cernan, Mike Collins, Buzz Aldrin, Alan Bean, Edgar Mitchell, Charlie Duke and Harrison Schmitt.", "text_for_embedding": "In the Shadow of the Moon (2007). Genres: Documentary. Archival material from the original NASA film footage – much of it seen for the first time – plus interviews with the surviving astronauts, including Jim Lovell, Dave Scott, John Young, Gene Cernan, Mike Collins, Buzz Aldrin, Alan Bean, Edgar Mitchell, Charlie Duke and Harrison Schmitt.. Tags: nasa, space mission, rocket, moon landing, space, astronaut, apollo s"} +{"id": "57120", "title": "Meek's Cutoff", "year": 2010, "duration_min": 104, "rating": 6.5, "genres": "Drama, Western", "genres_pipe": "|Drama|Western|", "keywords": "gold, oregon, thirst, tree, settler, family relationships, native american, salt lake city, pioneer, woman director", "tags_pipe": "|gold|oregon|thirst|tree|settler|family relationships|native american|salt lake city|pioneer|woman director|", "overview": "Set in 1845, this drama follows a group of settlers as they embark on a punishing journey along the Oregon Trail. When their guide leads them astray, the expedition is forced to contend with the unforgiving conditions of the high plain desert.", "text_for_embedding": "Meek's Cutoff (2010). Genres: Drama, Western. Set in 1845, this drama follows a group of settlers as they embark on a punishing journey along the Oregon Trail. When their guide leads them astray, the expedition is forced to contend with the unforgiving conditions of the high plain desert.. Tags: gold, oregon, thirst, tree, settler, family relationships, native american, salt lake city, pioneer, woman director"} +{"id": "12228", "title": "Inside Deep Throat", "year": 2005, "duration_min": 92, "rating": 6.8, "genres": "History, Documentary", "genres_pipe": "|History|Documentary|", "keywords": "usa, 1970s, sexual revolution, unsimulated sex", "tags_pipe": "|usa|1970s|sexual revolution|unsimulated sex|", "overview": "In 1972, a seemingly typical shoestring budget pornographic film was made in a Florida hotel, \"Deep Throat,\" starring Linda Lovelace. This film would surpass the wildest expectation of everyone involved to become one of the most successful independent films of all time. It caught the public imagination which met the spirit of the times, even as the self appointed guardians of public morality struggled to suppress it, and created, for a brief moment, a possible future where sexuality in film had a bold artistic potential. This film covers the story of the making of this controversial film, its stunning success, its hysterical opposition along with its dark side of mob influence and allegations of the on set mistreatment of the film's star. In short, the combined events would redefine the popular appeal of pornography, even as more cynical developments would lead it down other paths.", "text_for_embedding": "Inside Deep Throat (2005). Genres: History, Documentary. In 1972, a seemingly typical shoestring budget pornographic film was made in a Florida hotel, \"Deep Throat,\" starring Linda Lovelace. This film would surpass the wildest expectation of everyone involved to become one of the most successful independent films of all time. It caught the public imagination which met the spirit of the times, even as the self appointed guardians of public morality struggled to suppress it, and created, for a brief moment, a possible future where sexuality in film had a bold artistic potential. This film covers the story of the making of this controversial film, its stunning success, its hysterical opposition along with its dark side of mob influence and allegations of the on set mistreatment of the film's star. In short, the combined events would redefine the popular appeal of pornography, even as more cynical developments would lead it down other paths.. Tags: usa, 1970s, sexual revolution, unsimulated sex"} +{"id": "22617", "title": "Dinner Rush", "year": 2000, "duration_min": 99, "rating": 7.1, "genres": "Drama, Action, Thriller", "genres_pipe": "|Drama|Action|Thriller|", "keywords": "", "tags_pipe": "", "overview": "Is it just another evening at the hugely popular Italian restaurant of proprietor and bookmaker Louis Cropa in New York? Anything but as tonight's guests include; a local police detective and his wife specially invited by the owner; on the balcony rival bookmaker gangsters from Queens who want to become partners in the restaurant; in the corner renowned food critic 'the food nymph' is her usual demanding self; and at the bar, seemingly unnoticed, is Ken. As the evening continues enter Duncan, inveterate gambler and sous-chef on-the-line in the frenetic kitchen downstairs, who acts as the catalyst that causes the evening to draw to its inevitable, explosive, deadly conclusion.", "text_for_embedding": "Dinner Rush (2000). Genres: Drama, Action, Thriller. Is it just another evening at the hugely popular Italian restaurant of proprietor and bookmaker Louis Cropa in New York? Anything but as tonight's guests include; a local police detective and his wife specially invited by the owner; on the balcony rival bookmaker gangsters from Queens who want to become partners in the restaurant; in the corner renowned food critic 'the food nymph' is her usual demanding self; and at the bar, seemingly unnoticed, is Ken. As the evening continues enter Duncan, inveterate gambler and sous-chef on-the-line in the frenetic kitchen downstairs, who acts as the catalyst that causes the evening to draw to its inevitable, explosive, deadly conclusion.. Tags: "} +{"id": "55561", "title": "Clockwatchers", "year": 1997, "duration_min": 96, "rating": 5.6, "genres": "Comedy, Drama", "genres_pipe": "|Comedy|Drama|", "keywords": "independent film, woman director", "tags_pipe": "|independent film|woman director|", "overview": "Iris can best be described as a wallflower. She begins her first day as a temp for the nondescript Global Credit Association by waiting in a chair for two hours...", "text_for_embedding": "Clockwatchers (1997). Genres: Comedy, Drama. Iris can best be described as a wallflower. She begins her first day as a temp for the nondescript Global Credit Association by waiting in a chair for two hours.... Tags: independent film, woman director"} +{"id": "42889", "title": "The Virginity Hit", "year": 2010, "duration_min": 120, "rating": 4.6, "genres": "Comedy", "genres_pipe": "|Comedy|", "keywords": "loss of virginity, teenage boy, teen comedy, teenage sexuality, found footage, sex comedy, virginity", "tags_pipe": "|loss of virginity|teenage boy|teen comedy|teenage sexuality|found footage|sex comedy|virginity|", "overview": "Four guys, one camera, and their experience chronicling the exhilarating and terrifying rite of passage: losing your virginity. As these guys help their buddy get laid, they'll have to survive friends with benefits, Internet hookups, even porn stars during an adventure that proves why you will always remember your first time.", "text_for_embedding": "The Virginity Hit (2010). Genres: Comedy. Four guys, one camera, and their experience chronicling the exhilarating and terrifying rite of passage: losing your virginity. As these guys help their buddy get laid, they'll have to survive friends with benefits, Internet hookups, even porn stars during an adventure that proves why you will always remember your first time.. Tags: loss of virginity, teenage boy, teen comedy, teenage sexuality, found footage, sex comedy, virginity"} +{"id": "10656", "title": "Subway", "year": 1985, "duration_min": 104, "rating": 6.3, "genres": "Action, Thriller", "genres_pipe": "|Action|Thriller|", "keywords": "paris, culture clash, subway, metropolis, blackmail, document, criminal, socialite, punk band", "tags_pipe": "|paris|culture clash|subway|metropolis|blackmail|document|criminal|socialite|punk band|", "overview": "Fred, a raffish safe blower, takes refuge in the Paris Metro after being chased by the henchmen of a shady businessman from whom he has just stolen some documents. While hiding out in the back rooms and conduits of the Metro, Fred encounters a subterranean society of eccentric characters and petty criminals. Despite being pursued by the henchmen, Fred finds the time to flirt with Héléna, blow a safe, rob a train, evade the hapless Metro police, and start a rock band", "text_for_embedding": "Subway (1985). Genres: Action, Thriller. Fred, a raffish safe blower, takes refuge in the Paris Metro after being chased by the henchmen of a shady businessman from whom he has just stolen some documents. While hiding out in the back rooms and conduits of the Metro, Fred encounters a subterranean society of eccentric characters and petty criminals. Despite being pursued by the henchmen, Fred finds the time to flirt with Héléna, blow a safe, rob a train, evade the hapless Metro police, and start a rock band. Tags: paris, culture clash, subway, metropolis, blackmail, document, criminal, socialite, punk band"} +{"id": "24363", "title": "House of D", "year": 2005, "duration_min": 97, "rating": 6.1, "genres": "Comedy, Drama", "genres_pipe": "|Comedy|Drama|", "keywords": "self-discovery, friendship", "tags_pipe": "|self-discovery|friendship|", "overview": "An American artist living a bohemian existence in Paris, Tom Warshaw (David Duchovny) is trying to make sense of his troubled adult life by reflecting upon his extraordinary childhood.", "text_for_embedding": "House of D (2005). Genres: Comedy, Drama. An American artist living a bohemian existence in Paris, Tom Warshaw (David Duchovny) is trying to make sense of his troubled adult life by reflecting upon his extraordinary childhood.. Tags: self-discovery, friendship"} +{"id": "13121", "title": "Teeth", "year": 2007, "duration_min": 94, "rating": 5.2, "genres": "Comedy, Horror", "genres_pipe": "|Comedy|Horror|", "keywords": "", "tags_pipe": "", "overview": "Dawn is an active member of her high-school chastity club but, when she meets Tobey, nature takes its course, and the pair answer the call. They suddenly learn she is a living example of the vagina dentata myth, when the encounter takes a grisly turn.", "text_for_embedding": "Teeth (2007). Genres: Comedy, Horror. Dawn is an active member of her high-school chastity club but, when she meets Tobey, nature takes its course, and the pair answer the call. They suddenly learn she is a living example of the vagina dentata myth, when the encounter takes a grisly turn.. Tags: "} +{"id": "24746", "title": "Six-String Samurai", "year": 1998, "duration_min": 91, "rating": 5.8, "genres": "Action, Adventure, Science Fiction", "genres_pipe": "|Action|Adventure|Science Fiction|", "keywords": "independent film", "tags_pipe": "|independent film|", "overview": "In a post-apocalyptic world where the Russians have taken over a nuked USA and Elvis is king of Lost Vegas, Buddy is a '50s rocker and wandering warrior rolled into one, too-cool package. Armed with his six-string in one hand and his sword in the other, Buddy is on his way to Vegas to succeed Elvis as King. Along the way, he saves an orphan who decides to tag along.", "text_for_embedding": "Six-String Samurai (1998). Genres: Action, Adventure, Science Fiction. In a post-apocalyptic world where the Russians have taken over a nuked USA and Elvis is king of Lost Vegas, Buddy is a '50s rocker and wandering warrior rolled into one, too-cool package. Armed with his six-string in one hand and his sword in the other, Buddy is on his way to Vegas to succeed Elvis as King. Along the way, he saves an orphan who decides to tag along.. Tags: independent film"} +{"id": "12109", "title": "It's All Gone Pete Tong", "year": 2004, "duration_min": 90, "rating": 7.1, "genres": "Drama, Comedy, Music", "genres_pipe": "|Drama|Comedy|Music|", "keywords": "disc jockey, loss of family, cocaine, comeback, recording studio, british, ibiza, based on true story, disabled", "tags_pipe": "|disc jockey|loss of family|cocaine|comeback|recording studio|british|ibiza|based on true story|disabled|", "overview": "Its All Gone Pete Tong is a comedy following the tragic life of legendary Frankie Wilde. The story takes us through Frankie's life from one of the best DJ's alive, through subsequent battle with a hearing disorder, culminating in his mysterious disappearance from the scene.", "text_for_embedding": "It's All Gone Pete Tong (2004). Genres: Drama, Comedy, Music. Its All Gone Pete Tong is a comedy following the tragic life of legendary Frankie Wilde. The story takes us through Frankie's life from one of the best DJ's alive, through subsequent battle with a hearing disorder, culminating in his mysterious disappearance from the scene.. Tags: disc jockey, loss of family, cocaine, comeback, recording studio, british, ibiza, based on true story, disabled"} +{"id": "27023", "title": "Saint John of Las Vegas", "year": 2009, "duration_min": 84, "rating": 5.9, "genres": "Comedy", "genres_pipe": "|Comedy|", "keywords": "independent film, aftercreditsstinger", "tags_pipe": "|independent film|aftercreditsstinger|", "overview": "An ex-gambler is lured back into the game by a veteran insurance-fraud investigator.", "text_for_embedding": "Saint John of Las Vegas (2009). Genres: Comedy. An ex-gambler is lured back into the game by a veteran insurance-fraud investigator.. Tags: independent film, aftercreditsstinger"} +{"id": "22913", "title": "24 7: Twenty Four Seven", "year": 1997, "duration_min": 96, "rating": 6.3, "genres": "Comedy, Drama, Romance", "genres_pipe": "|Comedy|Drama|Romance|", "keywords": "transporter, sport, friends, nottingham", "tags_pipe": "|transporter|sport|friends|nottingham|", "overview": "In a typical English working-class town, the juveniles have nothing more to do than hang around in gangs. One day, Alan Darcy, a highly motivated man with the same kind of youth experience, starts trying to get the young people off the street and into doing something they can believe in: Boxing. Darcy opens a boxing club, aiming to bring the rival gangs together.", "text_for_embedding": "24 7: Twenty Four Seven (1997). Genres: Comedy, Drama, Romance. In a typical English working-class town, the juveniles have nothing more to do than hang around in gangs. One day, Alan Darcy, a highly motivated man with the same kind of youth experience, starts trying to get the young people off the street and into doing something they can believe in: Boxing. Darcy opens a boxing club, aiming to bring the rival gangs together.. Tags: transporter, sport, friends, nottingham"} +{"id": "273899", "title": "Stonewall", "year": 2015, "duration_min": 129, "rating": 5.2, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "stonewall riot", "tags_pipe": "|stonewall riot|", "overview": "\"Stonewall\" is a drama about a young man in New York caught up during the 1969 Stonewall Riots, a pivotal event widely considered the starting point for the modern gay civil rights movement.", "text_for_embedding": "Stonewall (2015). Genres: Drama. \"Stonewall\" is a drama about a young man in New York caught up during the 1969 Stonewall Riots, a pivotal event widely considered the starting point for the modern gay civil rights movement.. Tags: stonewall riot"} +{"id": "20653", "title": "Roadside Romeo", "year": 2008, "duration_min": 93, "rating": 6.7, "genres": "Animation, Family, Foreign", "genres_pipe": "|Animation|Family|Foreign|", "keywords": "", "tags_pipe": "", "overview": "This is the story of Romeo. A dude who was living the life. He had the works - the mansion to live in, the chicks to party with and the cars to be driven around in. Until one day, the family he was the favourite pet of, decided to move and left him back, abandoned on the mean streets of Mumbai. Romeo is now faced with situations he has never been in before. He encounters four strays, who scare the daylights out of him. But soon, he smooth talks his way into their hearts and he makes friends. Then, Romeo finds love! He encounters the beautiful, ravishing Laila, the most beautiful girl he has ever seen - and he loses his heart to her at first sight. Finally, he encounters a villain! The dreaded Don of the area - Charlie Anna. The Don who everyone is scared of. So hop on to the adventure as Romeo, wins friendship, love and a new life - in spite of Charlie Anna and his gang!", "text_for_embedding": "Roadside Romeo (2008). Genres: Animation, Family, Foreign. This is the story of Romeo. A dude who was living the life. He had the works - the mansion to live in, the chicks to party with and the cars to be driven around in. Until one day, the family he was the favourite pet of, decided to move and left him back, abandoned on the mean streets of Mumbai. Romeo is now faced with situations he has never been in before. He encounters four strays, who scare the daylights out of him. But soon, he smooth talks his way into their hearts and he makes friends. Then, Romeo finds love! He encounters the beautiful, ravishing Laila, the most beautiful girl he has ever seen - and he loses his heart to her at first sight. Finally, he encounters a villain! The dreaded Don of the area - Charlie Anna. The Don who everyone is scared of. So hop on to the adventure as Romeo, wins friendship, love and a new life - in spite of Charlie Anna and his gang!. Tags: "} +{"id": "67373", "title": "This Thing of Ours", "year": 2005, "duration_min": 100, "rating": 5.0, "genres": "Drama, Action, Thriller", "genres_pipe": "|Drama|Action|Thriller|", "keywords": "heist mafia internet", "tags_pipe": "|heist mafia internet|", "overview": "Using the Internet and global satellites, a group of gangsters pull off the biggest bank heist in the Mafia's history.", "text_for_embedding": "This Thing of Ours (2005). Genres: Drama, Action, Thriller. Using the Internet and global satellites, a group of gangsters pull off the biggest bank heist in the Mafia's history.. Tags: heist mafia internet"} +{"id": "171759", "title": "The Lost Medallion: The Adventures of Billy Stone", "year": 2013, "duration_min": 97, "rating": 5.6, "genres": "Adventure, Family", "genres_pipe": "|Adventure|Family|", "keywords": "", "tags_pipe": "", "overview": "A man who stops into a foster home to drop off some donations soon tells the kids a story about two teenage friends who uncover a long-lost medallion that transports them back in time.", "text_for_embedding": "The Lost Medallion: The Adventures of Billy Stone (2013). Genres: Adventure, Family. A man who stops into a foster home to drop off some donations soon tells the kids a story about two teenage friends who uncover a long-lost medallion that transports them back in time.. Tags: "} +{"id": "206296", "title": "The Last Five Years", "year": 2014, "duration_min": 94, "rating": 5.5, "genres": "Comedy, Drama, Music, Romance", "genres_pipe": "|Comedy|Drama|Music|Romance|", "keywords": "wife, musical, marriage, divorce", "tags_pipe": "|wife|musical|marriage|divorce|", "overview": "In New York, a struggling actress and a successful writer sing about their failed marriage from two perspectives.", "text_for_embedding": "The Last Five Years (2014). Genres: Comedy, Drama, Music, Romance. In New York, a struggling actress and a successful writer sing about their failed marriage from two perspectives.. Tags: wife, musical, marriage, divorce"} +{"id": "35219", "title": "The Missing Person", "year": 2009, "duration_min": 95, "rating": 6.4, "genres": "Comedy, Drama, Mystery, Thriller", "genres_pipe": "|Comedy|Drama|Mystery|Thriller|", "keywords": "detective, independent film, train, alcoholic, missing person", "tags_pipe": "|detective|independent film|train|alcoholic|missing person|", "overview": "Private detective John Rosow is hired to tail a man on a train from Chicago to Los Angeles. Rosow gradually uncovers the man's identity as a missing person; one of the thousands presumed dead after the 9/11 terrorist attacks on the World Trade Center. Persuaded by a large reward, Rosow is charged with bringing the missing person back to his wife in New York City.", "text_for_embedding": "The Missing Person (2009). Genres: Comedy, Drama, Mystery, Thriller. Private detective John Rosow is hired to tail a man on a train from Chicago to Los Angeles. Rosow gradually uncovers the man's identity as a missing person; one of the thousands presumed dead after the 9/11 terrorist attacks on the World Trade Center. Persuaded by a large reward, Rosow is charged with bringing the missing person back to his wife in New York City.. Tags: detective, independent film, train, alcoholic, missing person"} +{"id": "28260", "title": "Return of the Living Dead 3", "year": 1993, "duration_min": 97, "rating": 5.9, "genres": "Comedy, Science Fiction, Romance, Horror", "genres_pipe": "|Comedy|Science Fiction|Romance|Horror|", "keywords": "gang, zombie", "tags_pipe": "|gang|zombie|", "overview": "Colonel Reynolds and his group of government scientists continue their work on re-animating the dead for military use. His son Curt uses a stolen security pass to sneak in with his thrill-seeking girlfriend Julie, with shocking, deadly results!", "text_for_embedding": "Return of the Living Dead 3 (1993). Genres: Comedy, Science Fiction, Romance, Horror. Colonel Reynolds and his group of government scientists continue their work on re-animating the dead for military use. His son Curt uses a stolen security pass to sneak in with his thrill-seeking girlfriend Julie, with shocking, deadly results!. Tags: gang, zombie"} +{"id": "7515", "title": "London", "year": 2005, "duration_min": 92, "rating": 6.1, "genres": "Drama, Action, Romance", "genres_pipe": "|Drama|Action|Romance|", "keywords": "new york, celebration", "tags_pipe": "|new york|celebration|", "overview": "London is a drug laden adventure that centers on a party in a New York loft where a young man is trying to win back his ex-girlfriend.", "text_for_embedding": "London (2005). Genres: Drama, Action, Romance. London is a drug laden adventure that centers on a party in a New York loft where a young man is trying to win back his ex-girlfriend.. Tags: new york, celebration"} +{"id": "13075", "title": "Sherrybaby", "year": 2006, "duration_min": 96, "rating": 6.3, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "independent film, mother daughter relationship, woman director", "tags_pipe": "|independent film|mother daughter relationship|woman director|", "overview": "After serving time in prison, former drug addict Sherry Swanson returns home to reclaim her young daughter from family members who have been raising the child. Sherry's family, especially her sister-in-law, doubt Sherry's ability to be a good mother, and Sherry finds her resolve to stay clean slowly weakening.", "text_for_embedding": "Sherrybaby (2006). Genres: Drama. After serving time in prison, former drug addict Sherry Swanson returns home to reclaim her young daughter from family members who have been raising the child. Sherry's family, especially her sister-in-law, doubt Sherry's ability to be a good mother, and Sherry finds her resolve to stay clean slowly weakening.. Tags: independent film, mother daughter relationship, woman director"} +{"id": "335866", "title": "Circle", "year": 2015, "duration_min": 87, "rating": 6.0, "genres": "Horror, Science Fiction", "genres_pipe": "|Horror|Science Fiction|", "keywords": "survival, execution, stranger, no memory", "tags_pipe": "|survival|execution|stranger|no memory|", "overview": "Could you trust a jury of your peers with your life? The contestants of a mysterious death game must make harrowing decisions as they strategize for survival in this psychological sci-fi thriller.", "text_for_embedding": "Circle (2015). Genres: Horror, Science Fiction. Could you trust a jury of your peers with your life? The contestants of a mysterious death game must make harrowing decisions as they strategize for survival in this psychological sci-fi thriller.. Tags: survival, execution, stranger, no memory"} +{"id": "13510", "title": "Eden Lake", "year": 2008, "duration_min": 91, "rating": 6.7, "genres": "Horror, Thriller", "genres_pipe": "|Horror|Thriller|", "keywords": "beach, wife husband relationship, lake, camping, rottweiler, sadism, forest, revenge, survival, fear, violence, couple, gang violence, teenage killer", "tags_pipe": "|beach|wife husband relationship|lake|camping|rottweiler|sadism|forest|revenge|survival|fear|violence|couple|gang violence|teenage killer|", "overview": "Eden Lake is a relentlessly tense and immaculately paced horror-thriller about modern youth gone wild. When a young couple goes to a remote wooded lake for a romantic getaway, their quiet weekend is shattered by an aggressive group of local kids. Rowdiness quickly turns to rage as the teens terrorize the couple in unimaginable ways, and a weekend outing becomes a bloody battle for survival.", "text_for_embedding": "Eden Lake (2008). Genres: Horror, Thriller. Eden Lake is a relentlessly tense and immaculately paced horror-thriller about modern youth gone wild. When a young couple goes to a remote wooded lake for a romantic getaway, their quiet weekend is shattered by an aggressive group of local kids. Rowdiness quickly turns to rage as the teens terrorize the couple in unimaginable ways, and a weekend outing becomes a bloody battle for survival.. Tags: beach, wife husband relationship, lake, camping, rottweiler, sadism, forest, revenge, survival, fear, violence, couple, gang violence, teenage killer"} +{"id": "215881", "title": "Plush", "year": 2013, "duration_min": 98, "rating": 5.4, "genres": "Thriller", "genres_pipe": "|Thriller|", "keywords": "woman director", "tags_pipe": "|woman director|", "overview": "A young singer/songwriter, despite being married, becomes involved with her new guitarist, who she soon discovers has a dark past and may be a danger to her and those close to her.", "text_for_embedding": "Plush (2013). Genres: Thriller. A young singer/songwriter, despite being married, becomes involved with her new guitarist, who she soon discovers has a dark past and may be a danger to her and those close to her.. Tags: woman director"} +{"id": "18238", "title": "Lesbian Vampire Killers", "year": 2009, "duration_min": 86, "rating": 5.3, "genres": "Horror, Comedy", "genres_pipe": "|Horror|Comedy|", "keywords": "female nudity, horror, dark comedy, female homosexuality, female vampire", "tags_pipe": "|female nudity|horror|dark comedy|female homosexuality|female vampire|", "overview": "With their women having been enslaved by a pack of lesbian vampires, the remaining menfolk of a rural town send two hapless young lads out onto the moors as a sacrifice.", "text_for_embedding": "Lesbian Vampire Killers (2009). Genres: Horror, Comedy. With their women having been enslaved by a pack of lesbian vampires, the remaining menfolk of a rural town send two hapless young lads out onto the moors as a sacrifice.. Tags: female nudity, horror, dark comedy, female homosexuality, female vampire"} +{"id": "22600", "title": "Gangster's Paradise: Jerusalema", "year": 2008, "duration_min": 120, "rating": 6.8, "genres": "Drama, Action, Crime, Foreign", "genres_pipe": "|Drama|Action|Crime|Foreign|", "keywords": "hearing, gang of thieves, organized crime", "tags_pipe": "|hearing|gang of thieves|organized crime|", "overview": "This South African movie tracks the rise of a once-petty criminal to the heights of the criminal underworld. After cutting his teeth on hijacking, before moving onto bigger game, an ambitious man hits a setback when most of his gang are shot.", "text_for_embedding": "Gangster's Paradise: Jerusalema (2008). Genres: Drama, Action, Crime, Foreign. This South African movie tracks the rise of a once-petty criminal to the heights of the criminal underworld. After cutting his teeth on hijacking, before moving onto bigger game, an ambitious man hits a setback when most of his gang are shot.. Tags: hearing, gang of thieves, organized crime"} +{"id": "12612", "title": "Freeze Frame", "year": 2004, "duration_min": 99, "rating": 6.9, "genres": "Thriller, Drama, Crime", "genres_pipe": "|Thriller|Drama|Crime|", "keywords": "loss of family, camcorder, alibi, suspect, murder", "tags_pipe": "|loss of family|camcorder|alibi|suspect|murder|", "overview": "Sean Veil is an ultra paranoid murder suspect who takes to filming himself round the clock to provide an alibi, just in case he's ever accused of another crime. Problems arise however when the police do come calling and the one tape that can prove his innocence has mysteriously disappeared.", "text_for_embedding": "Freeze Frame (2004). Genres: Thriller, Drama, Crime. Sean Veil is an ultra paranoid murder suspect who takes to filming himself round the clock to provide an alibi, just in case he's ever accused of another crime. Problems arise however when the police do come calling and the one tape that can prove his innocence has mysteriously disappeared.. Tags: loss of family, camcorder, alibi, suspect, murder"} +{"id": "50698", "title": "Grave Encounters", "year": 2011, "duration_min": 92, "rating": 6.1, "genres": "Thriller, Horror", "genres_pipe": "|Thriller|Horror|", "keywords": "camcorder, reality, insane asylum, paranormal, haunting, psychiatric hospital, ghost hunting, paranormal investigation, labyrinth, mental asylum, found footage", "tags_pipe": "|camcorder|reality|insane asylum|paranormal|haunting|psychiatric hospital|ghost hunting|paranormal investigation|labyrinth|mental asylum|found footage|", "overview": "A crew from a paranormal reality television show lock themselves in a haunted psychiatric hospital. They search for evidence of paranormal activity as they shoot what ends up becoming their final episode.", "text_for_embedding": "Grave Encounters (2011). Genres: Thriller, Horror. A crew from a paranormal reality television show lock themselves in a haunted psychiatric hospital. They search for evidence of paranormal activity as they shoot what ends up becoming their final episode.. Tags: camcorder, reality, insane asylum, paranormal, haunting, psychiatric hospital, ghost hunting, paranormal investigation, labyrinth, mental asylum, found footage"} +{"id": "115210", "title": "Stitches", "year": 2012, "duration_min": 86, "rating": 5.5, "genres": "Horror", "genres_pipe": "|Horror|", "keywords": "slapstick, teen angst, slaughter, dark comedy, supernatural being, killer clown, revenge killing", "tags_pipe": "|slapstick|teen angst|slaughter|dark comedy|supernatural being|killer clown|revenge killing|", "overview": "The clumsy and unfunny clown Richard \"Stitches\" Grindle entertains at the 10th birthday party of little Tom, but the boy and his friends play a prank with Stitches, tying his shoelaces. Stitches slips, falls and dies. Six years later, Tom gives a birthday party for his friends at home, but Stitches revives to haunt the teenagers and revenge his death.", "text_for_embedding": "Stitches (2012). Genres: Horror. The clumsy and unfunny clown Richard \"Stitches\" Grindle entertains at the 10th birthday party of little Tom, but the boy and his friends play a prank with Stitches, tying his shoelaces. Stitches slips, falls and dies. Six years later, Tom gives a birthday party for his friends at home, but Stitches revives to haunt the teenagers and revenge his death.. Tags: slapstick, teen angst, slaughter, dark comedy, supernatural being, killer clown, revenge killing"} +{"id": "34335", "title": "Nine Dead", "year": 2010, "duration_min": 98, "rating": 5.2, "genres": "Crime, Drama, Horror, Thriller", "genres_pipe": "|Crime|Drama|Horror|Thriller|", "keywords": "kidnapping, murder, suspense", "tags_pipe": "|kidnapping|murder|suspense|", "overview": "Communication is the key to the survival for nine strangers who have been kidnapped by a masked gunman and told that one of them will die every ten minutes until they discover how they are all connected. Who of the nine lives and who dies?", "text_for_embedding": "Nine Dead (2010). Genres: Crime, Drama, Horror, Thriller. Communication is the key to the survival for nine strangers who have been kidnapped by a masked gunman and told that one of them will die every ten minutes until they discover how they are all connected. Who of the nine lives and who dies?. Tags: kidnapping, murder, suspense"} +{"id": "11302", "title": "Bananas", "year": 1971, "duration_min": 82, "rating": 6.7, "genres": "Comedy", "genres_pipe": "|Comedy|", "keywords": "revolution, political activism, loser", "tags_pipe": "|revolution|political activism|loser|", "overview": "When a bumbling New Yorker is dumped by his activist girlfriend, he travels to a tiny Latin American nation and becomes involved in its latest rebellion.", "text_for_embedding": "Bananas (1971). Genres: Comedy. When a bumbling New Yorker is dumped by his activist girlfriend, he travels to a tiny Latin American nation and becomes involved in its latest rebellion.. Tags: revolution, political activism, loser"} +{"id": "119458", "title": "Supercapitalist", "year": 2012, "duration_min": 103, "rating": 3.5, "genres": "Thriller", "genres_pipe": "|Thriller|", "keywords": "", "tags_pipe": "", "overview": "A maverick New York hedge fund trader with uncanny analytic abilities moves to Hong Kong and orchestrates a mega-deal that swiftly escalates beyond his control.", "text_for_embedding": "Supercapitalist (2012). Genres: Thriller. A maverick New York hedge fund trader with uncanny analytic abilities moves to Hong Kong and orchestrates a mega-deal that swiftly escalates beyond his control.. Tags: "} +{"id": "20406", "title": "Rockaway", "year": 2007, "duration_min": 76, "rating": 5.8, "genres": "Action, Adventure, Drama", "genres_pipe": "|Action|Adventure|Drama|", "keywords": "", "tags_pipe": "", "overview": "Trane is a decorated war hero just shipped home to the States from Afghanistan after the brutal murder of his wife and child back in Rockaway, Queens. Upon his return, Trane encounters his old friend Dave, who describes the new forces of crime and prostitution that have moved into their neighborhood and caused the destruction of his family.", "text_for_embedding": "Rockaway (2007). Genres: Action, Adventure, Drama. Trane is a decorated war hero just shipped home to the States from Afghanistan after the brutal murder of his wife and child back in Rockaway, Queens. Upon his return, Trane encounters his old friend Dave, who describes the new forces of crime and prostitution that have moved into their neighborhood and caused the destruction of his family.. Tags: "} +{"id": "3766", "title": "The Lady from Shanghai", "year": 1947, "duration_min": 87, "rating": 7.2, "genres": "Crime, Drama, Mystery", "genres_pipe": "|Crime|Drama|Mystery|", "keywords": "new york, san francisco, aquarium, shanghai, yacht, romantic rivalry, insurance fraud, court, blonde, suspense, classic noir, film noir", "tags_pipe": "|new york|san francisco|aquarium|shanghai|yacht|romantic rivalry|insurance fraud|court|blonde|suspense|classic noir|film noir|", "overview": "A romantic drifter gets caught between a corrupt tycoon and his voluptuous wife.", "text_for_embedding": "The Lady from Shanghai (1947). Genres: Crime, Drama, Mystery. A romantic drifter gets caught between a corrupt tycoon and his voluptuous wife.. Tags: new york, san francisco, aquarium, shanghai, yacht, romantic rivalry, insurance fraud, court, blonde, suspense, classic noir, film noir"} +{"id": "18616", "title": "No Man's Land: The Rise of Reeker", "year": 2008, "duration_min": 88, "rating": 4.4, "genres": "Horror, Thriller", "genres_pipe": "|Horror|Thriller|", "keywords": "sheriff, robber, burned alive, gore, serial killer, grim reaper, desert, held at gunpoint, death, taser, hit by a car, exploding gasoline station, flashback", "tags_pipe": "|sheriff|robber|burned alive|gore|serial killer|grim reaper|desert|held at gunpoint|death|taser|hit by a car|exploding gasoline station|flashback|", "overview": "A sheriff and his son who are tracking down a group of bank robbers on their way to Mexico, only to discover that they are being stalked by a far more deadly enemy — The Reeker.", "text_for_embedding": "No Man's Land: The Rise of Reeker (2008). Genres: Horror, Thriller. A sheriff and his son who are tracking down a group of bank robbers on their way to Mexico, only to discover that they are being stalked by a far more deadly enemy — The Reeker.. Tags: sheriff, robber, burned alive, gore, serial killer, grim reaper, desert, held at gunpoint, death, taser, hit by a car, exploding gasoline station, flashback"} +{"id": "18808", "title": "Highway", "year": 2002, "duration_min": 97, "rating": 5.6, "genres": "Action, Adventure, Drama", "genres_pipe": "|Action|Adventure|Drama|", "keywords": "road movie", "tags_pipe": "|road movie|", "overview": "Jack is caught with the wife of his employer, a Vegas thug. The thug sends goons after Jack, who convinces his best friend, Pilot, to flee with him. Pilot insists that they head for Seattle, but doesn't tell Jack why. The goons learn from Pilot's drug source where the youths are headed, and they follow, hell bent on breaking Jack's feet. On the road, Jack and Pilot give a ride to Cassie, a distressed young woman. She and Jack hit it off. They pick up an aging stoner headed to Seattle for Kurt Cobain's memorial, and they help a circus sideshow family. Why is Pilot so set on Seattle, will the goons catch Jack, and is there any way the friends' competing needs can be resolved?", "text_for_embedding": "Highway (2002). Genres: Action, Adventure, Drama. Jack is caught with the wife of his employer, a Vegas thug. The thug sends goons after Jack, who convinces his best friend, Pilot, to flee with him. Pilot insists that they head for Seattle, but doesn't tell Jack why. The goons learn from Pilot's drug source where the youths are headed, and they follow, hell bent on breaking Jack's feet. On the road, Jack and Pilot give a ride to Cassie, a distressed young woman. She and Jack hit it off. They pick up an aging stoner headed to Seattle for Kurt Cobain's memorial, and they help a circus sideshow family. Why is Pilot so set on Seattle, will the goons catch Jack, and is there any way the friends' competing needs can be resolved?. Tags: road movie"} +{"id": "95755", "title": "Small Apartments", "year": 2012, "duration_min": 96, "rating": 5.7, "genres": "Comedy, Crime", "genres_pipe": "|Comedy|Crime|", "keywords": "", "tags_pipe": "", "overview": "When a clumsy deadbeat accidentally kills his landlord, he must do everything in his power to hide the body, only to find that the distractions of lust, the death of his beloved brother, and a crew of misfit characters force him on a journey where a fortune awaits him.", "text_for_embedding": "Small Apartments (2012). Genres: Comedy, Crime. When a clumsy deadbeat accidentally kills his landlord, he must do everything in his power to hide the body, only to find that the distractions of lust, the death of his beloved brother, and a crew of misfit characters force him on a journey where a fortune awaits him.. Tags: "} +{"id": "198062", "title": "Coffee Town", "year": 2013, "duration_min": 87, "rating": 6.7, "genres": "Comedy", "genres_pipe": "|Comedy|", "keywords": "coffee shop, slacker, thirty something, carefree", "tags_pipe": "|coffee shop|slacker|thirty something|carefree|", "overview": "Three thirty-something friends band together when their carefree existence is threatened.", "text_for_embedding": "Coffee Town (2013). Genres: Comedy. Three thirty-something friends band together when their carefree existence is threatened.. Tags: coffee shop, slacker, thirty something, carefree"} +{"id": "188652", "title": "The Ghastly Love of Johnny X", "year": 2013, "duration_min": 106, "rating": 6.6, "genres": "Comedy, Fantasy, Music", "genres_pipe": "|Comedy|Fantasy|Music|", "keywords": "", "tags_pipe": "", "overview": "A truly mad concoction, blending 1950s juvenile delinquents, sci-fi melodrama, song-and-dance, and a touch of horror, everything in just the right combination to create an engaging big screen spectacle! This curious and curiously entertaining story involves one Jonathan Xavier and his devoted misfit gang who, incidentally, have been exiled to Earth from the far reaches of outer space. Johnny's former girlfriend Bliss has left him and stolen his Resurrection Suit, a cosmic, mind-bending uniform that gives the owner power over others. Along the way, there will be several highly stylized musical numbers, lots of genuinely humorous dialogue, and a wacky plot-twist or two, all beautifully captured on the very last of Kodak's black-and-white Plus-X film stock.", "text_for_embedding": "The Ghastly Love of Johnny X (2013). Genres: Comedy, Fantasy, Music. A truly mad concoction, blending 1950s juvenile delinquents, sci-fi melodrama, song-and-dance, and a touch of horror, everything in just the right combination to create an engaging big screen spectacle! This curious and curiously entertaining story involves one Jonathan Xavier and his devoted misfit gang who, incidentally, have been exiled to Earth from the far reaches of outer space. Johnny's former girlfriend Bliss has left him and stolen his Resurrection Suit, a cosmic, mind-bending uniform that gives the owner power over others. Along the way, there will be several highly stylized musical numbers, lots of genuinely humorous dialogue, and a wacky plot-twist or two, all beautifully captured on the very last of Kodak's black-and-white Plus-X film stock.. Tags: "} +{"id": "174311", "title": "All Is Bright", "year": 2013, "duration_min": 107, "rating": 5.3, "genres": "Comedy, Drama", "genres_pipe": "|Comedy|Drama|", "keywords": "christmas tree, salesman, french canadian", "tags_pipe": "|christmas tree|salesman|french canadian|", "overview": "Two French Canadian ne’er-do-wells travel to New York City with a scheme to a get rich quick selling Christmas trees. Easygoing charmer Rene (Paul Rudd) clashes with misanthropic ex-con Dennis (Paul Giamatti), whose wife Rene just stole. Still, this odd couple must make an honest go of it in this fresh buddy comedy co-starring Sally Hawkins, by the director of the indie breakout hit Junebug.", "text_for_embedding": "All Is Bright (2013). Genres: Comedy, Drama. Two French Canadian ne’er-do-wells travel to New York City with a scheme to a get rich quick selling Christmas trees. Easygoing charmer Rene (Paul Rudd) clashes with misanthropic ex-con Dennis (Paul Giamatti), whose wife Rene just stole. Still, this odd couple must make an honest go of it in this fresh buddy comedy co-starring Sally Hawkins, by the director of the indie breakout hit Junebug.. Tags: christmas tree, salesman, french canadian"} +{"id": "12602", "title": "The Torture Chamber of Dr. Sadism", "year": 1967, "duration_min": 85, "rating": 6.3, "genres": "Mystery, Horror, History", "genres_pipe": "|Mystery|Horror|History|", "keywords": "snake, cut-off arm, pit, revitalization, descendant, count, surrealism", "tags_pipe": "|snake|cut-off arm|pit|revitalization|descendant|count|surrealism|", "overview": "In the Olden Tymes, Count Regula is drawn and quartered for killing twelve virgins in his dungeon torture chamber. Thirty-five years later, he comes back to seek revenge on the daughter of his intended thirteenth victim and the son of his prosecutor in order to attain immortal life.", "text_for_embedding": "The Torture Chamber of Dr. Sadism (1967). Genres: Mystery, Horror, History. In the Olden Tymes, Count Regula is drawn and quartered for killing twelve virgins in his dungeon torture chamber. Thirty-five years later, he comes back to seek revenge on the daughter of his intended thirteenth victim and the son of his prosecutor in order to attain immortal life.. Tags: snake, cut-off arm, pit, revitalization, descendant, count, surrealism"} +{"id": "153795", "title": "Straight A's", "year": 2013, "duration_min": 88, "rating": 5.2, "genres": "Comedy, Drama", "genres_pipe": "|Comedy|Drama|", "keywords": "brother brother relationship, drug addiction, sister-in-law", "tags_pipe": "|brother brother relationship|drug addiction|sister-in-law|", "overview": "Pressured by his deceased mother's ghost to return home to the family he abandoned, a former addict grabs a bag of pills and a sack of marijuana and hits the road to Shreveport.", "text_for_embedding": "Straight A's (2013). Genres: Comedy, Drama. Pressured by his deceased mother's ghost to return home to the family he abandoned, a former addict grabs a bag of pills and a sack of marijuana and hits the road to Shreveport.. Tags: brother brother relationship, drug addiction, sister-in-law"} +{"id": "17768", "title": "A Funny Thing Happened on the Way to the Forum", "year": 1966, "duration_min": 99, "rating": 6.1, "genres": "Comedy, Music", "genres_pipe": "|Comedy|Music|", "keywords": "virgin, ancient rome, freedom, sondheim, slave, based on stage musical, slave owner", "tags_pipe": "|virgin|ancient rome|freedom|sondheim|slave|based on stage musical|slave owner|", "overview": "A wily slave must unite a virgin courtesan and his young smitten master to earn his freedom.", "text_for_embedding": "A Funny Thing Happened on the Way to the Forum (1966). Genres: Comedy, Music. A wily slave must unite a virgin courtesan and his young smitten master to earn his freedom.. Tags: virgin, ancient rome, freedom, sondheim, slave, based on stage musical, slave owner"} +{"id": "13516", "title": "Slacker Uprising", "year": 2007, "duration_min": 102, "rating": 5.9, "genres": "Documentary", "genres_pipe": "|Documentary|", "keywords": "presidential elections", "tags_pipe": "|presidential elections|", "overview": "Slacker Uprising is a movie of Michael Moore's tour of colleges in swing states during the 2004 election, with a goal to encourage 18–29 year olds to vote, and the response it received. The film is a re-edited version of Captain Mike Across America, which played at the Toronto International Film Festival in 2007. It is one of the first feature length films made by a known director to be released as a free and legal download online. The free download is only available to those residing in the United States and Canada. The film was also made available free for online viewing and download on the Lycos Cinema platform as well as iTunes and blip.tv. It had a one-night-only run at the Michigan Theater, where Michael Moore spoke briefly. The film is available in DVD format. Slacker Uprising features live performances or appearances by Eddie Vedder, Roseanne Barr, Joan Baez, Tom Morello, R.E.M., Steve Earle, and Viggo Mortensen. The original score is by Anti-Flag.", "text_for_embedding": "Slacker Uprising (2007). Genres: Documentary. Slacker Uprising is a movie of Michael Moore's tour of colleges in swing states during the 2004 election, with a goal to encourage 18–29 year olds to vote, and the response it received. The film is a re-edited version of Captain Mike Across America, which played at the Toronto International Film Festival in 2007. It is one of the first feature length films made by a known director to be released as a free and legal download online. The free download is only available to those residing in the United States and Canada. The film was also made available free for online viewing and download on the Lycos Cinema platform as well as iTunes and blip.tv. It had a one-night-only run at the Michigan Theater, where Michael Moore spoke briefly. The film is available in DVD format. Slacker Uprising features live performances or appearances by Eddie Vedder, Roseanne Barr, Joan Baez, Tom Morello, R.E.M., Steve Earle, and Viggo Mortensen. The original score is by Anti-Flag.. Tags: presidential elections"} +{"id": "98549", "title": "The Legend of Hell's Gate: An American Conspiracy", "year": 2011, "duration_min": 108, "rating": 3.9, "genres": "Action, Adventure, History, Western", "genres_pipe": "|Action|Adventure|History|Western|", "keywords": "based on real events", "tags_pipe": "|based on real events|", "overview": "In 1870s Texas, a ruthless bounty hunter and an Irish desperado flee the law with a young criminal claiming to possess a treasure more valuable than gold. Crossing paths with some of the West’s most notorious figures, the three outlaws fight for their lives in the pursuit of fame and fortune. Fueled by an ensemble cast and inspired by actual events, THE LEGEND OF HELL’S GATE blends legend and history into a Western spectacle that recounts a treacherous existence in post Civil War Texas.", "text_for_embedding": "The Legend of Hell's Gate: An American Conspiracy (2011). Genres: Action, Adventure, History, Western. In 1870s Texas, a ruthless bounty hunter and an Irish desperado flee the law with a young criminal claiming to possess a treasure more valuable than gold. Crossing paths with some of the West’s most notorious figures, the three outlaws fight for their lives in the pursuit of fame and fortune. Fueled by an ensemble cast and inspired by actual events, THE LEGEND OF HELL’S GATE blends legend and history into a Western spectacle that recounts a treacherous existence in post Civil War Texas.. Tags: based on real events"} +{"id": "312793", "title": "The Walking Deceased", "year": 2015, "duration_min": 90, "rating": 4.2, "genres": "Science Fiction, Comedy", "genres_pipe": "|Science Fiction|Comedy|", "keywords": "spoof, zombie", "tags_pipe": "|spoof|zombie|", "overview": "THE WALKING DECEASED is the Scary Movie of the zombie genre, ripping on the biggest and best of zombie pop-culture, arguably the most crazed genre in the world. The story follows a group of survivors from all walks of the apocalypse – an idiotic Sheriff with definite coma-induced brain damage, his hardass son and a hobo with only a crossbow to stave off the walking dead, four squabbling friends forced to survive this zombieland together, and a lonely zombie who just needs love to fully regain his warm body – who leave their once-safe mall hideout in search of the rumored Safe Haven Ranch, a refuge untouched by the zombie virus that has ravaged humanity. But despite the comforting name, they discover that this sanctuary may not be as welcoming as advertised.", "text_for_embedding": "The Walking Deceased (2015). Genres: Science Fiction, Comedy. THE WALKING DECEASED is the Scary Movie of the zombie genre, ripping on the biggest and best of zombie pop-culture, arguably the most crazed genre in the world. The story follows a group of survivors from all walks of the apocalypse – an idiotic Sheriff with definite coma-induced brain damage, his hardass son and a hobo with only a crossbow to stave off the walking dead, four squabbling friends forced to survive this zombieland together, and a lonely zombie who just needs love to fully regain his warm body – who leave their once-safe mall hideout in search of the rumored Safe Haven Ranch, a refuge untouched by the zombie virus that has ravaged humanity. But despite the comforting name, they discover that this sanctuary may not be as welcoming as advertised.. Tags: spoof, zombie"} +{"id": "309919", "title": "The Curse of Downers Grove", "year": 2015, "duration_min": 89, "rating": 4.4, "genres": "Thriller, Mystery, Horror, Drama", "genres_pipe": "|Thriller|Mystery|Horror|Drama|", "keywords": "self-defense, car mechanic, graduation, high school, shooting, party, murder, curse, blood, teenager, attempted rape, aftercreditsstinger", "tags_pipe": "|self-defense|car mechanic|graduation|high school|shooting|party|murder|curse|blood|teenager|attempted rape|aftercreditsstinger|", "overview": "The town of Downers Grove looks like your average suburban neighborhood -- but Downers Grove has a disturbing secret.... For the past eight years, one senior from every high school graduating class has met a bizarre death right before graduation day. And this year, Chrissie Swanson has a terrible feeling that she is going to be the one to die. Can Chrissie survive the curse of Downers Grove or will she, like those seniors before her, fall prey to the town's deadly secret?", "text_for_embedding": "The Curse of Downers Grove (2015). Genres: Thriller, Mystery, Horror, Drama. The town of Downers Grove looks like your average suburban neighborhood -- but Downers Grove has a disturbing secret.... For the past eight years, one senior from every high school graduating class has met a bizarre death right before graduation day. And this year, Chrissie Swanson has a terrible feeling that she is going to be the one to die. Can Chrissie survive the curse of Downers Grove or will she, like those seniors before her, fall prey to the town's deadly secret?. Tags: self-defense, car mechanic, graduation, high school, shooting, party, murder, curse, blood, teenager, attempted rape, aftercreditsstinger"} +{"id": "299553", "title": "Shark Lake", "year": 2015, "duration_min": 92, "rating": 4.4, "genres": "Thriller", "genres_pipe": "|Thriller|", "keywords": "lake, shark attack", "tags_pipe": "|lake|shark attack|", "overview": "Meredith Hendricks happens to be the best cop in her quiet town on Lake Tahoe. When a black-market exotic species dealer named Clint is paroled from prison, something he let loose begins to make its presence known. Swimmers and land-lovers alike begin to become part of the food chain at an unbelievable rate. Meredith and her team discover that they're not just hunting one eating machine, but a whole family of them. Not everyone will make it out alive, but those who do will never forget this summer at Shark Lake.", "text_for_embedding": "Shark Lake (2015). Genres: Thriller. Meredith Hendricks happens to be the best cop in her quiet town on Lake Tahoe. When a black-market exotic species dealer named Clint is paroled from prison, something he let loose begins to make its presence known. Swimmers and land-lovers alike begin to become part of the food chain at an unbelievable rate. Meredith and her team discover that they're not just hunting one eating machine, but a whole family of them. Not everyone will make it out alive, but those who do will never forget this summer at Shark Lake.. Tags: lake, shark attack"} +{"id": "21309", "title": "River's Edge", "year": 1986, "duration_min": 99, "rating": 6.7, "genres": "Crime, Drama", "genres_pipe": "|Crime|Drama|", "keywords": "sex, police, friends, murder", "tags_pipe": "|sex|police|friends|murder|", "overview": "A group of high school friends discover that they are in the presence of a killer. One of them, Samson, has murdered his girlfriend Jamie. He brags to his friends about killing her, and when they discover he is telling the truth, their reactions vary.", "text_for_embedding": "River's Edge (1986). Genres: Crime, Drama. A group of high school friends discover that they are in the presence of a killer. One of them, Samson, has murdered his girlfriend Jamie. He brags to his friends about killing her, and when they discover he is telling the truth, their reactions vary.. Tags: sex, police, friends, murder"} +{"id": "32235", "title": "Northfork", "year": 2003, "duration_min": 103, "rating": 6.7, "genres": "Fantasy, Drama, Science Fiction", "genres_pipe": "|Fantasy|Drama|Science Fiction|", "keywords": "", "tags_pipe": "", "overview": "\"We are all angels. It is what we do with our wings that separates us.\" In the next two days, the town of Northfork will cease to exist. The year is 1955 and Northfork is literally about to be \"dammed,\" flooded to make way for a new hydroelectric project.", "text_for_embedding": "Northfork (2003). Genres: Fantasy, Drama, Science Fiction. \"We are all angels. It is what we do with our wings that separates us.\" In the next two days, the town of Northfork will cease to exist. The year is 1955 and Northfork is literally about to be \"dammed,\" flooded to make way for a new hydroelectric project.. Tags: "} +{"id": "329540", "title": "The Marine 4: Moving Target", "year": 2015, "duration_min": 90, "rating": 5.8, "genres": "Thriller, Action", "genres_pipe": "|Thriller|Action|", "keywords": "", "tags_pipe": "", "overview": "WWE Superstar Mike \"The Miz\" Mizanin returns as Jake Carter where he is assigned to protect a whistleblower who wishes to expose a corrupt military defence contractor. However, the military hires a heavily armed team of mercenaries to kill her and it's up to Carter to stop them at any cost.", "text_for_embedding": "The Marine 4: Moving Target (2015). Genres: Thriller, Action. WWE Superstar Mike \"The Miz\" Mizanin returns as Jake Carter where he is assigned to protect a whistleblower who wishes to expose a corrupt military defence contractor. However, the military hires a heavily armed team of mercenaries to kill her and it's up to Carter to stop them at any cost.. Tags: "} +{"id": "26388", "title": "Buried", "year": 2010, "duration_min": 94, "rating": 6.6, "genres": "Drama, Thriller, Mystery", "genres_pipe": "|Drama|Thriller|Mystery|", "keywords": "isolation, coffin, race against time, buried alive, survival, terrorism, danger, cell phone, desert, psychological, aftercreditsstinger, captivity, chases and races, mind and soul, confined", "tags_pipe": "|isolation|coffin|race against time|buried alive|survival|terrorism|danger|cell phone|desert|psychological|aftercreditsstinger|captivity|chases and races|mind and soul|confined|", "overview": "Paul is a U.S. truck driver working in Iraq. After an attack by a group of Iraqis he wakes to find he is buried alive inside a coffin. With only a lighter and a cell phone it's a race against time to escape this claustrophobic death trap.", "text_for_embedding": "Buried (2010). Genres: Drama, Thriller, Mystery. Paul is a U.S. truck driver working in Iraq. After an attack by a group of Iraqis he wakes to find he is buried alive inside a coffin. With only a lighter and a cell phone it's a race against time to escape this claustrophobic death trap.. Tags: isolation, coffin, race against time, buried alive, survival, terrorism, danger, cell phone, desert, psychological, aftercreditsstinger, captivity, chases and races, mind and soul, confined"} +{"id": "49020", "title": "Submarine", "year": 2011, "duration_min": 97, "rating": 7.4, "genres": "Drama, Comedy, Romance", "genres_pipe": "|Drama|Comedy|Romance|", "keywords": "beach, wales, friendship, bullying, teenage girl, loss of virginity", "tags_pipe": "|beach|wales|friendship|bullying|teenage girl|loss of virginity|", "overview": "15-year-old deep-thinking Welsh schoolboy, Oliver Tate (Craig Roberts) struggles to initiate and maintain a relationship with Jordana (Yasmin Paige), his devilish, dark-haired classmate at their Swansea high school. As his parents' marriage begins to fall apart, similar problems arise in his relationship with Jordana.", "text_for_embedding": "Submarine (2011). Genres: Drama, Comedy, Romance. 15-year-old deep-thinking Welsh schoolboy, Oliver Tate (Craig Roberts) struggles to initiate and maintain a relationship with Jordana (Yasmin Paige), his devilish, dark-haired classmate at their Swansea high school. As his parents' marriage begins to fall apart, similar problems arise in his relationship with Jordana.. Tags: beach, wales, friendship, bullying, teenage girl, loss of virginity"} +{"id": "159037", "title": "The Square", "year": 2013, "duration_min": 88, "rating": 7.8, "genres": "Documentary, Drama, History", "genres_pipe": "|Documentary|Drama|History|", "keywords": "woman director", "tags_pipe": "|woman director|", "overview": "The Square, a new film by Jehane Noujaim (Control Room; Rafea: Solar Mama), looks at the hard realities faced day-to-day by people working to build Egypt’s new democracy. Catapulting us into the action spread across 2011 and 2012, the film provides a kaleidoscopic, visceral experience of the struggle. Cairo’s Tahrir Square is the heart and soul of the film, which follows several young activists. Armed with values, determination, music, humor, an abundance of social media, and sheer obstinacy, they know that the thorny path to democracy only began with Hosni Mubarek’s fall. The life-and-death struggle between the people and the power of the state is still playing out.", "text_for_embedding": "The Square (2013). Genres: Documentary, Drama, History. The Square, a new film by Jehane Noujaim (Control Room; Rafea: Solar Mama), looks at the hard realities faced day-to-day by people working to build Egypt’s new democracy. Catapulting us into the action spread across 2011 and 2012, the film provides a kaleidoscopic, visceral experience of the struggle. Cairo’s Tahrir Square is the heart and soul of the film, which follows several young activists. Armed with values, determination, music, humor, an abundance of social media, and sheer obstinacy, they know that the thorny path to democracy only began with Hosni Mubarek’s fall. The life-and-death struggle between the people and the power of the state is still playing out.. Tags: woman director"} +{"id": "12838", "title": "One to Another", "year": 2006, "duration_min": 95, "rating": 5.8, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "france, musician, investigation, sadomasochism, independent film, relationship, incest, bisexual", "tags_pipe": "|france|musician|investigation|sadomasochism|independent film|relationship|incest|bisexual|", "overview": "A story about bunch of people who live in a town in provincial France. At the center of it all is Pierre, a conceited and vain bisexual musician in his late teens who acts as a magnet, to varying degrees, for a whole array of characters - from his sister Lucie, with whom he has a heated incestuous relationship, to a city councilor with whom he participates in gay orgies. When Pierre turns up dead, Lucie investigates the reasons for his demise and charts the network of sadomasochistic relationships that crisscross the town.", "text_for_embedding": "One to Another (2006). Genres: Drama. A story about bunch of people who live in a town in provincial France. At the center of it all is Pierre, a conceited and vain bisexual musician in his late teens who acts as a magnet, to varying degrees, for a whole array of characters - from his sister Lucie, with whom he has a heated incestuous relationship, to a city councilor with whom he participates in gay orgies. When Pierre turns up dead, Lucie investigates the reasons for his demise and charts the network of sadomasochistic relationships that crisscross the town.. Tags: france, musician, investigation, sadomasochism, independent film, relationship, incest, bisexual"} +{"id": "157293", "title": "ABCD (Any Body Can Dance)", "year": 2013, "duration_min": 160, "rating": 5.6, "genres": "Drama, Music", "genres_pipe": "|Drama|Music|", "keywords": "underdog, competition, dance, musical, drama", "tags_pipe": "|underdog|competition|dance|musical|drama|", "overview": "When a capable dancer is provoked by the evil design of his employer, naturally he will be out to prove his mettle.", "text_for_embedding": "ABCD (Any Body Can Dance) (2013). Genres: Drama, Music. When a capable dancer is provoked by the evil design of his employer, naturally he will be out to prove his mettle.. Tags: underdog, competition, dance, musical, drama"} +{"id": "14048", "title": "Man on Wire", "year": 2008, "duration_min": 94, "rating": 7.5, "genres": "Thriller, Documentary, Crime, History", "genres_pipe": "|Thriller|Documentary|Crime|History|", "keywords": "judge, juggler, passion, reality, street artist, jail, independent film, fame, hiding, tower", "tags_pipe": "|judge|juggler|passion|reality|street artist|jail|independent film|fame|hiding|tower|", "overview": "On August 7th 1974, French tightrope walker Philippe Petit stepped out on a high wire, illegally rigged between New York's World Trade Center twin towers, then the world's tallest buildings. After nearly an hour of performing on the wire, 1,350 feet above the sidewalks of Manhattan, he was arrested. This fun and spellbinding documentary chronicles Philippe Petit's \"highest\" achievement.", "text_for_embedding": "Man on Wire (2008). Genres: Thriller, Documentary, Crime, History. On August 7th 1974, French tightrope walker Philippe Petit stepped out on a high wire, illegally rigged between New York's World Trade Center twin towers, then the world's tallest buildings. After nearly an hour of performing on the wire, 1,350 feet above the sidewalks of Manhattan, he was arrested. This fun and spellbinding documentary chronicles Philippe Petit's \"highest\" achievement.. Tags: judge, juggler, passion, reality, street artist, jail, independent film, fame, hiding, tower"} +{"id": "356987", "title": "Abandoned", "year": 2015, "duration_min": 82, "rating": 5.8, "genres": "Drama, Thriller", "genres_pipe": "|Drama|Thriller|", "keywords": "supervivencia", "tags_pipe": "|supervivencia|", "overview": "When their yacht capsizes during a storm; four men face almost certain death.", "text_for_embedding": "Abandoned (2015). Genres: Drama, Thriller. When their yacht capsizes during a storm; four men face almost certain death.. Tags: supervivencia"} +{"id": "295886", "title": "Brotherly Love", "year": 2015, "duration_min": 89, "rating": 6.9, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "", "tags_pipe": "", "overview": "West Philadelphia basketball star Sergio Taylor deals with the pressures of fame while his brother and sister have their own issues with ambition.", "text_for_embedding": "Brotherly Love (2015). Genres: Drama. West Philadelphia basketball star Sergio Taylor deals with the pressures of fame while his brother and sister have their own issues with ambition.. Tags: "} +{"id": "38358", "title": "The Last Exorcism", "year": 2010, "duration_min": 87, "rating": 5.6, "genres": "Horror, Drama, Thriller", "genres_pipe": "|Horror|Drama|Thriller|", "keywords": "exorcism, fraud, evil spirit, human sacrifice, mockumentary, preacher, satanic ritual, found footage, satanic cult", "tags_pipe": "|exorcism|fraud|evil spirit|human sacrifice|mockumentary|preacher|satanic ritual|found footage|satanic cult|", "overview": "After years of performing “exorcisms” and taking believers’ money, Reverend Marcus travels to rural Louisiana with a film crew so he can dispel what he believes is the myth of demonic possession. The dynamic reverend is certain that this will be another routine “exorcism” on a disturbed religious fanatic but instead comes upon the blood-soaked farm of the Sweetzer family and a true evil he would have never thought imaginable.", "text_for_embedding": "The Last Exorcism (2010). Genres: Horror, Drama, Thriller. After years of performing “exorcisms” and taking believers’ money, Reverend Marcus travels to rural Louisiana with a film crew so he can dispel what he believes is the myth of demonic possession. The dynamic reverend is certain that this will be another routine “exorcism” on a disturbed religious fanatic but instead comes upon the blood-soaked farm of the Sweetzer family and a true evil he would have never thought imaginable.. Tags: exorcism, fraud, evil spirit, human sacrifice, mockumentary, preacher, satanic ritual, found footage, satanic cult"} +{"id": "33511", "title": "Nowhere Boy", "year": 2009, "duration_min": 98, "rating": 7.2, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "musician, musical, biography, teenager, dark past, hit by a car, new brighton england, woman director, 1950s, aspiring musician", "tags_pipe": "|musician|musical|biography|teenager|dark past|hit by a car|new brighton england|woman director|1950s|aspiring musician|", "overview": "The drama tells the story of Lennon's teenage years and the start of his journey to becoming a successful musician. The story also examines the impact on his early life and personality of the two dominant females in his childhood", "text_for_embedding": "Nowhere Boy (2009). Genres: Drama. The drama tells the story of Lennon's teenage years and the start of his journey to becoming a successful musician. The story also examines the impact on his early life and personality of the two dominant females in his childhood. Tags: musician, musical, biography, teenager, dark past, hit by a car, new brighton england, woman director, 1950s, aspiring musician"} +{"id": "702", "title": "A Streetcar Named Desire", "year": 1951, "duration_min": 125, "rating": 7.6, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "southern usa, rape, sister sister relationship, loss of sense of reality, brother-in-law, violent husband, new orleans, middle aged woman, brother-in-law sister-in-law relationship, light bulb, expectant father, off screen rape", "tags_pipe": "|southern usa|rape|sister sister relationship|loss of sense of reality|brother-in-law|violent husband|new orleans|middle aged woman|brother-in-law sister-in-law relationship|light bulb|expectant father|off screen rape|", "overview": "Disturbed Blanche DuBois moves in with her sister in New Orleans and is tormented by her brutish brother-in-law while her reality crumbles around her.", "text_for_embedding": "A Streetcar Named Desire (1951). Genres: Drama. Disturbed Blanche DuBois moves in with her sister in New Orleans and is tormented by her brutish brother-in-law while her reality crumbles around her.. Tags: southern usa, rape, sister sister relationship, loss of sense of reality, brother-in-law, violent husband, new orleans, middle aged woman, brother-in-law sister-in-law relationship, light bulb, expectant father, off screen rape"} +{"id": "935", "title": "Dr. Strangelove or: How I Learned to Stop Worrying and Love the Bomb", "year": 1964, "duration_min": 95, "rating": 8.0, "genres": "Drama, Comedy, War", "genres_pipe": "|Drama|Comedy|War|", "keywords": "usa president, general, cold war, strategic air command, nuclear missile, war room, bomber pilot, nuclear weapons, ex nazi, doomsday device, absurdism", "tags_pipe": "|usa president|general|cold war|strategic air command|nuclear missile|war room|bomber pilot|nuclear weapons|ex nazi|doomsday device|absurdism|", "overview": "Insane General Jack D. Ripper initiates a nuclear strike on the Soviet Union. As soon as the actions of General \"Buck\" Turgidson are discovered, a war room full of politicians, generals and a Russian diplomat all frantically try to stop the nuclear strike. Near the end is a scene that is probably the most uniquely unforgettable performance of Slim Pickens in his movie career. Peter Sellers plays multiple roles in this film.", "text_for_embedding": "Dr. Strangelove or: How I Learned to Stop Worrying and Love the Bomb (1964). Genres: Drama, Comedy, War. Insane General Jack D. Ripper initiates a nuclear strike on the Soviet Union. As soon as the actions of General \"Buck\" Turgidson are discovered, a war room full of politicians, generals and a Russian diplomat all frantically try to stop the nuclear strike. Near the end is a scene that is probably the most uniquely unforgettable performance of Slim Pickens in his movie career. Peter Sellers plays multiple roles in this film.. Tags: usa president, general, cold war, strategic air command, nuclear missile, war room, bomber pilot, nuclear weapons, ex nazi, doomsday device, absurdism"} +{"id": "542", "title": "The Crime of Padre Amaro", "year": 2002, "duration_min": 118, "rating": 6.2, "genres": "Drama, Romance", "genres_pipe": "|Drama|Romance|", "keywords": "heart attack, drug traffic, drug crime, mexican province, celibacy, priest, pregnancy, catholicism, new mexican cinema", "tags_pipe": "|heart attack|drug traffic|drug crime|mexican province|celibacy|priest|pregnancy|catholicism|new mexican cinema|", "overview": "The young Father Amaro is put to the test. He is sent to Mexico to help take care of aging Father Benito when he meets a 16-year-old girl that he begins and affair with. It turns out the girls mother had been having an affair with Father Benito. Father Amaro must soon choose between the holy or the sinful life.", "text_for_embedding": "The Crime of Padre Amaro (2002). Genres: Drama, Romance. The young Father Amaro is put to the test. He is sent to Mexico to help take care of aging Father Benito when he meets a 16-year-old girl that he begins and affair with. It turns out the girls mother had been having an affair with Father Benito. Father Amaro must soon choose between the holy or the sinful life.. Tags: heart attack, drug traffic, drug crime, mexican province, celibacy, priest, pregnancy, catholicism, new mexican cinema"} +{"id": "84175", "title": "Beasts of the Southern Wild", "year": 2012, "duration_min": 93, "rating": 6.8, "genres": "Drama, Fantasy", "genres_pipe": "|Drama|Fantasy|", "keywords": "refugee camp, hurricane, fantasy, flooding, global warming, drama, bayou, crab, storm, celebration, auroch, tough love, defrost, levee, prehistoric creature", "tags_pipe": "|refugee camp|hurricane|fantasy|flooding|global warming|drama|bayou|crab|storm|celebration|auroch|tough love|defrost|levee|prehistoric creature|", "overview": "Hushpuppy, an intrepid six-year-old girl, lives with her father, Wink in 'the Bathtub', a southern Delta community at the edge of the world. Wink’s tough love prepares her for the unraveling of the universe – for a time when he’s no longer there to protect her. When Wink contracts a mysterious illness, nature flies out of whack – temperatures rise, and the ice caps melt, unleashing an army of prehistoric creatures called aurochs. With the waters rising, the aurochs coming, and Wink’s health fading, Hushpuppy goes in search of her lost mother.", "text_for_embedding": "Beasts of the Southern Wild (2012). Genres: Drama, Fantasy. Hushpuppy, an intrepid six-year-old girl, lives with her father, Wink in 'the Bathtub', a southern Delta community at the edge of the world. Wink’s tough love prepares her for the unraveling of the universe – for a time when he’s no longer there to protect her. When Wink contracts a mysterious illness, nature flies out of whack – temperatures rise, and the ice caps melt, unleashing an army of prehistoric creatures called aurochs. With the waters rising, the aurochs coming, and Wink’s health fading, Hushpuppy goes in search of her lost mother.. Tags: refugee camp, hurricane, fantasy, flooding, global warming, drama, bayou, crab, storm, celebration, auroch, tough love, defrost, levee, prehistoric creature"} +{"id": "1705", "title": "Battle for the Planet of the Apes", "year": 1973, "duration_min": 93, "rating": 5.5, "genres": "Action, Science Fiction", "genres_pipe": "|Action|Science Fiction|", "keywords": "post-apocalyptic, dystopia, ape", "tags_pipe": "|post-apocalyptic|dystopia|ape|", "overview": "The fifth and final episode in the Planet of the Apes series. After the collapse of human civilization, a community of intelligent apes led by Caesar lives in harmony with a group of humans. Gorilla General Aldo tries to cause an ape civil war and a community of human mutants who live beneath a destroyed city try to conquer those whom they perceive as enemies. All leading to the finale.", "text_for_embedding": "Battle for the Planet of the Apes (1973). Genres: Action, Science Fiction. The fifth and final episode in the Planet of the Apes series. After the collapse of human civilization, a community of intelligent apes led by Caesar lives in harmony with a group of humans. Gorilla General Aldo tries to cause an ape civil war and a community of human mutants who live beneath a destroyed city try to conquer those whom they perceive as enemies. All leading to the finale.. Tags: post-apocalyptic, dystopia, ape"} +{"id": "62677", "title": "Songcatcher", "year": 2001, "duration_min": 109, "rating": 5.6, "genres": "Drama, Music", "genres_pipe": "|Drama|Music|", "keywords": "musical, independent film, woman director", "tags_pipe": "|musical|independent film|woman director|", "overview": "After being denied a promotion at the university where she teaches, Doctor Lily Penleric, a brilliant musicologist, impulsively visits her sister, who runs a struggling rural school in Appalachia. There she stumbles upon the discovery of her life - a treasure trove of ancient Scots-Irish ballads, songs that have been handed down from generation to generation, preserved intact by the seclusion of the mountains. With the goal of securing her promotion, Lily ventures into the most isolated areas of the mountains to collect the songs and finds herself increasingly enchanted.", "text_for_embedding": "Songcatcher (2001). Genres: Drama, Music. After being denied a promotion at the university where she teaches, Doctor Lily Penleric, a brilliant musicologist, impulsively visits her sister, who runs a struggling rural school in Appalachia. There she stumbles upon the discovery of her life - a treasure trove of ancient Scots-Irish ballads, songs that have been handed down from generation to generation, preserved intact by the seclusion of the mountains. With the goal of securing her promotion, Lily ventures into the most isolated areas of the mountains to collect the songs and finds herself increasingly enchanted.. Tags: musical, independent film, woman director"} +{"id": "50875", "title": "Higher Ground", "year": 2011, "duration_min": 109, "rating": 5.3, "genres": "Drama, Thriller", "genres_pipe": "|Drama|Thriller|", "keywords": "baby, wife husband relationship, christian, faith, independent film, evangelical christianity, woman director", "tags_pipe": "|baby|wife husband relationship|christian|faith|independent film|evangelical christianity|woman director|", "overview": "A chronicle of one woman's lifelong struggle with her faith.", "text_for_embedding": "Higher Ground (2011). Genres: Drama, Thriller. A chronicle of one woman's lifelong struggle with her faith.. Tags: baby, wife husband relationship, christian, faith, independent film, evangelical christianity, woman director"} +{"id": "260778", "title": "Vaalu", "year": 2015, "duration_min": 155, "rating": 6.7, "genres": "Comedy, Romance", "genres_pipe": "|Comedy|Romance|", "keywords": "teenage love", "tags_pipe": "|teenage love|", "overview": "Sharp (Simbu), a happy-go-lucky guy, loves Priya (Hansika), a college student, but later learns that she is enagaged to Anbu ( Aditya), a businessman-gangster. Priya wants them to remain friends and Sharp agrees, all the while scheming to make her fall in love with him.", "text_for_embedding": "Vaalu (2015). Genres: Comedy, Romance. Sharp (Simbu), a happy-go-lucky guy, loves Priya (Hansika), a college student, but later learns that she is enagaged to Anbu ( Aditya), a businessman-gangster. Priya wants them to remain friends and Sharp agrees, all the while scheming to make her fall in love with him.. Tags: teenage love"} +{"id": "58492", "title": "The Greatest Movie Ever Sold", "year": 2011, "duration_min": 87, "rating": 6.4, "genres": "Comedy, Documentary", "genres_pipe": "|Comedy|Documentary|", "keywords": "comedian, comedy, duringcreditsstinger", "tags_pipe": "|comedian|comedy|duringcreditsstinger|", "overview": "A documentary about branding, advertising and product placement that is financed and made possible by brands, advertising and product placement.", "text_for_embedding": "The Greatest Movie Ever Sold (2011). Genres: Comedy, Documentary. A documentary about branding, advertising and product placement that is financed and made possible by brands, advertising and product placement.. Tags: comedian, comedy, duringcreditsstinger"} +{"id": "44562", "title": "Ed and His Dead Mother", "year": 1993, "duration_min": 93, "rating": 5.5, "genres": "Comedy", "genres_pipe": "|Comedy|", "keywords": "chainsaw, macabre, uncle nephew relationship", "tags_pipe": "|chainsaw|macabre|uncle nephew relationship|", "overview": "A mourning son makes a deal to reanimate his one year dead mother, however things turn into an unexpected direction.", "text_for_embedding": "Ed and His Dead Mother (1993). Genres: Comedy. A mourning son makes a deal to reanimate his one year dead mother, however things turn into an unexpected direction.. Tags: chainsaw, macabre, uncle nephew relationship"} +{"id": "37232", "title": "Travellers and Magicians", "year": 2003, "duration_min": 108, "rating": 6.8, "genres": "Adventure, Drama, Foreign", "genres_pipe": "|Adventure|Drama|Foreign|", "keywords": "illusion, independent film, bhutan, story in story, weaver, storytelling", "tags_pipe": "|illusion|independent film|bhutan|story in story|weaver|storytelling|", "overview": "A young government official, named Dondup, who is smitten with America (he even has a denim gho) dreams of escaping there while stuck in a beautiful but isolated village. He hopes to connect in the U.S. with a visa out of the country. He misses the one bus out of town to Thimphu, however, and is forced to hitchhike and walk along the Lateral Road to the west, accompanied by an apple seller, a Buddhist monk with his ornate, dragon-headed dramyin, a drunk, a widowed rice paper maker, and his beautiful daughter, Sonam.", "text_for_embedding": "Travellers and Magicians (2003). Genres: Adventure, Drama, Foreign. A young government official, named Dondup, who is smitten with America (he even has a denim gho) dreams of escaping there while stuck in a beautiful but isolated village. He hopes to connect in the U.S. with a visa out of the country. He misses the one bus out of town to Thimphu, however, and is forced to hitchhike and walk along the Lateral Road to the west, accompanied by an apple seller, a Buddhist monk with his ornate, dragon-headed dramyin, a drunk, a widowed rice paper maker, and his beautiful daughter, Sonam.. Tags: illusion, independent film, bhutan, story in story, weaver, storytelling"} +{"id": "4929", "title": "Hang 'em High", "year": 1968, "duration_min": 114, "rating": 6.7, "genres": "Western", "genres_pipe": "|Western|", "keywords": "prison, judge, marshal, death penalty, oklahoma, widow, cattle drive, hanging, law man, lynching, search party", "tags_pipe": "|prison|judge|marshal|death penalty|oklahoma|widow|cattle drive|hanging|law man|lynching|search party|", "overview": "Marshall Jed Cooper survives a hanging, vowing revenge on the lynch mob that left him dangling. To carry out his oath for vengeance, he returns to his former job as a lawman. Before long, he's caught up with the nine men on his hit list and starts dispensing his own brand of Wild West justice.", "text_for_embedding": "Hang 'em High (1968). Genres: Western. Marshall Jed Cooper survives a hanging, vowing revenge on the lynch mob that left him dangling. To carry out his oath for vengeance, he returns to his former job as a lawman. Before long, he's caught up with the nine men on his hit list and starts dispensing his own brand of Wild West justice.. Tags: prison, judge, marshal, death penalty, oklahoma, widow, cattle drive, hanging, law man, lynching, search party"} +{"id": "36334", "title": "Deadline - U.S.A.", "year": 1952, "duration_min": 87, "rating": 6.9, "genres": "Crime, Drama", "genres_pipe": "|Crime|Drama|", "keywords": "", "tags_pipe": "", "overview": "With three days before his paper folds, a crusading editor tries to expose a vicious gangster.", "text_for_embedding": "Deadline - U.S.A. (1952). Genres: Crime, Drama. With three days before his paper folds, a crusading editor tries to expose a vicious gangster.. Tags: "} +{"id": "9783", "title": "Sublime", "year": 2007, "duration_min": 113, "rating": 5.3, "genres": "Horror, Thriller", "genres_pipe": "|Horror|Thriller|", "keywords": "nurse, psychology, suspense, blood, hospital", "tags_pipe": "|nurse|psychology|suspense|blood|hospital|", "overview": "Admitted to Mt. Abaddon Hospital for a routine procedure, George Grieves discovers that his condition is much more serious and complicated than originally expected; and as his own fears begin to manifest around him, he learns that Mt. Abaddon is not a place where people come to get better... it is a place where people come to die.", "text_for_embedding": "Sublime (2007). Genres: Horror, Thriller. Admitted to Mt. Abaddon Hospital for a routine procedure, George Grieves discovers that his condition is much more serious and complicated than originally expected; and as his own fears begin to manifest around him, he learns that Mt. Abaddon is not a place where people come to get better... it is a place where people come to die.. Tags: nurse, psychology, suspense, blood, hospital"} +{"id": "386826", "title": "A Beginner's Guide to Snuff", "year": 2016, "duration_min": 87, "rating": 0.0, "genres": "Thriller, Comedy, Horror", "genres_pipe": "|Thriller|Comedy|Horror|", "keywords": "snuff", "tags_pipe": "|snuff|", "overview": "Two brothers, desperate to break into the world of television and film, decide to enter a horror movie contest. And what could be more horrifying than the elusive snuff film?", "text_for_embedding": "A Beginner's Guide to Snuff (2016). Genres: Thriller, Comedy, Horror. Two brothers, desperate to break into the world of television and film, decide to enter a horror movie contest. And what could be more horrifying than the elusive snuff film?. Tags: snuff"} +{"id": "205126", "title": "Independence Daysaster", "year": 2013, "duration_min": 86, "rating": 4.2, "genres": "Action, Science Fiction", "genres_pipe": "|Action|Science Fiction|", "keywords": "ufo, extraterrestrial, spaceship, alien", "tags_pipe": "|ufo|extraterrestrial|spaceship|alien|", "overview": "When Earth is attacked by a hostile alien force, a small town firefighter and a rogue SETI scientist team up to activate the only technology capable of defeating the invaders.", "text_for_embedding": "Independence Daysaster (2013). Genres: Action, Science Fiction. When Earth is attacked by a hostile alien force, a small town firefighter and a rogue SETI scientist team up to activate the only technology capable of defeating the invaders.. Tags: ufo, extraterrestrial, spaceship, alien"} +{"id": "98557", "title": "Dysfunctional Friends", "year": 2012, "duration_min": 101, "rating": 5.0, "genres": "Comedy, Romance", "genres_pipe": "|Comedy|Romance|", "keywords": "", "tags_pipe": "", "overview": "A group of college friends are reunited after the death of their very successful friend. The will dictates that each person will receive a large sum of money if they can all successfully stay in his mansion for a week. If one person leaves, everyone forfeits the money.", "text_for_embedding": "Dysfunctional Friends (2012). Genres: Comedy, Romance. A group of college friends are reunited after the death of their very successful friend. The will dictates that each person will receive a large sum of money if they can all successfully stay in his mansion for a week. If one person leaves, everyone forfeits the money.. Tags: "} +{"id": "104", "title": "Run Lola Run", "year": 1998, "duration_min": 81, "rating": 7.2, "genres": "Action, Drama, Thriller", "genres_pipe": "|Action|Drama|Thriller|", "keywords": "berlin, casino, nun, red hair, running, homeless person, supermarket, ambulance, subway, daughter, money, fate", "tags_pipe": "|berlin|casino|nun|red hair|running|homeless person|supermarket|ambulance|subway|daughter|money|fate|", "overview": "Lola receives a phone call from her boyfriend Manni. He lost 100,000 DM in a subway train that belongs to a very bad guy. She has 20 minutes to raise this amount and meet Manni. Otherwise, he will rob a store to get the money. Three different alternatives may happen depending on some minor event along Lola's run.", "text_for_embedding": "Run Lola Run (1998). Genres: Action, Drama, Thriller. Lola receives a phone call from her boyfriend Manni. He lost 100,000 DM in a subway train that belongs to a very bad guy. She has 20 minutes to raise this amount and meet Manni. Otherwise, he will rob a store to get the money. Three different alternatives may happen depending on some minor event along Lola's run.. Tags: berlin, casino, nun, red hair, running, homeless person, supermarket, ambulance, subway, daughter, money, fate"} +{"id": "10894", "title": "May", "year": 2002, "duration_min": 93, "rating": 6.3, "genres": "Drama, Horror, Thriller, Romance", "genres_pipe": "|Drama|Horror|Thriller|Romance|", "keywords": "difficult childhood, psychoterror, murder, loneliness, artificial", "tags_pipe": "|difficult childhood|psychoterror|murder|loneliness|artificial|", "overview": "Psychological horror about a lonely young woman traumatized by a difficult childhood, and her increasingly desperate attempts to connect with the people around her.", "text_for_embedding": "May (2002). Genres: Drama, Horror, Thriller, Romance. Psychological horror about a lonely young woman traumatized by a difficult childhood, and her increasingly desperate attempts to connect with the people around her.. Tags: difficult childhood, psychoterror, murder, loneliness, artificial"} +{"id": "246449", "title": "Against the Wild", "year": 2013, "duration_min": 90, "rating": 4.9, "genres": "Adventure, Family", "genres_pipe": "|Adventure|Family|", "keywords": "cave, plane wreck, salmon, bears, northern canada, wolves, alaskan malamute, dove \"family-approved\"", "tags_pipe": "|cave|plane wreck|salmon|bears|northern canada|wolves|alaskan malamute|dove \"family-approved\"|", "overview": "The action-packed feature film tells the dramatic tale of two siblings and their Alaskan Malamute, who must make an emergency landing when their small plane has engine problems. They find themselves in a beautiful but potentially dangerous natural environment that they must overcome together.", "text_for_embedding": "Against the Wild (2013). Genres: Adventure, Family. The action-packed feature film tells the dramatic tale of two siblings and their Alaskan Malamute, who must make an emergency landing when their small plane has engine problems. They find themselves in a beautiful but potentially dangerous natural environment that they must overcome together.. Tags: cave, plane wreck, salmon, bears, northern canada, wolves, alaskan malamute, dove \"family-approved\""} +{"id": "32579", "title": "Under the Same Moon", "year": 2008, "duration_min": 106, "rating": 7.0, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "independent film, woman director", "tags_pipe": "|independent film|woman director|", "overview": "Tells the parallel stories of nine-year-old Carlitos and his mother, Rosario. In the hopes of providing a better life for her son, Rosario works illegally in the U.S. while her mother cares for Carlitos back in Mexico.", "text_for_embedding": "Under the Same Moon (2008). Genres: Drama. Tells the parallel stories of nine-year-old Carlitos and his mother, Rosario. In the hopes of providing a better life for her son, Rosario works illegally in the U.S. while her mother cares for Carlitos back in Mexico.. Tags: independent film, woman director"} +{"id": "1688", "title": "Conquest of the Planet of the Apes", "year": 1972, "duration_min": 88, "rating": 6.1, "genres": "Action, Science Fiction", "genres_pipe": "|Action|Science Fiction|", "keywords": "circus, pet, human being, dystopia, insurrection, army, ape", "tags_pipe": "|circus|pet|human being|dystopia|insurrection|army|ape|", "overview": "In a futuristic world that has embraced ape slavery, Caesar, the son of the late simians Cornelius and Zira, surfaces after almost twenty years of hiding out from the authorities, and prepares for a slave revolt against humanity.", "text_for_embedding": "Conquest of the Planet of the Apes (1972). Genres: Action, Science Fiction. In a futuristic world that has embraced ape slavery, Caesar, the son of the late simians Cornelius and Zira, surfaces after almost twenty years of hiding out from the authorities, and prepares for a slave revolt against humanity.. Tags: circus, pet, human being, dystopia, insurrection, army, ape"} +{"id": "1999", "title": "In the Bedroom", "year": 2001, "duration_min": 130, "rating": 6.4, "genres": "Drama, Thriller", "genres_pipe": "|Drama|Thriller|", "keywords": "age difference, fishing, arbitrary law, conductor, ex husband, single, independent film", "tags_pipe": "|age difference|fishing|arbitrary law|conductor|ex husband|single|independent film|", "overview": "Summertime on the coast of Maine, \"In the Bedroom\" centers on the inner dynamics of a family in transition. Matt Fowler is a doctor practicing in his native Maine and is married to New York born Ruth Fowler, a music teacher. He is involved in a love affair with a local single mother. As the beauty of Maine's brief and fleeting summer comes to an end, these characters find themselves in the midst of unimaginable tragedy.", "text_for_embedding": "In the Bedroom (2001). Genres: Drama, Thriller. Summertime on the coast of Maine, \"In the Bedroom\" centers on the inner dynamics of a family in transition. Matt Fowler is a doctor practicing in his native Maine and is married to New York born Ruth Fowler, a music teacher. He is involved in a love affair with a local single mother. As the beauty of Maine's brief and fleeting summer comes to an end, these characters find themselves in the midst of unimaginable tragedy.. Tags: age difference, fishing, arbitrary law, conductor, ex husband, single, independent film"} +{"id": "43947", "title": "I Spit on Your Grave", "year": 2010, "duration_min": 108, "rating": 6.3, "genres": "Thriller, Crime, Horror", "genres_pipe": "|Thriller|Crime|Horror|", "keywords": "rape, fondling, revenge, writer, strangulation, female writer, garden shears, rape and revenge", "tags_pipe": "|rape|fondling|revenge|writer|strangulation|female writer|garden shears|rape and revenge|", "overview": "A remake of the 1979 controversial cult classic, I Spit on Your Grave retells the horrific tale of writer Jennifer Hills who takes a retreat from the city to a charming cabin in the woods to start on her next book. But Jennifer's presence in the small town attracts the attention of a few morally deprived locals led by Johnny, the town's service station owner, his two co-workers, Andy and Stanley, who along with their socially and mentally challenged friend Matthew, set out one night to teach this city girl a lesson.", "text_for_embedding": "I Spit on Your Grave (2010). Genres: Thriller, Crime, Horror. A remake of the 1979 controversial cult classic, I Spit on Your Grave retells the horrific tale of writer Jennifer Hills who takes a retreat from the city to a charming cabin in the woods to start on her next book. But Jennifer's presence in the small town attracts the attention of a few morally deprived locals led by Johnny, the town's service station owner, his two co-workers, Andy and Stanley, who along with their socially and mentally challenged friend Matthew, set out one night to teach this city girl a lesson.. Tags: rape, fondling, revenge, writer, strangulation, female writer, garden shears, rape and revenge"} +{"id": "24066", "title": "Happy, Texas", "year": 1999, "duration_min": 98, "rating": 5.5, "genres": "Comedy, Crime", "genres_pipe": "|Comedy|Crime|", "keywords": "small town, texas, con man, fraud, independent film, mistaken identity, in the closet, fish out of water, escaped convict, stolen identity, small town sheriff, ruse, beauty pageant, confidence man, small town thieves", "tags_pipe": "|small town|texas|con man|fraud|independent film|mistaken identity|in the closet|fish out of water|escaped convict|stolen identity|small town sheriff|ruse|beauty pageant|confidence man|small town thieves|", "overview": "Two escaped convicts roll into the village of Happy, Texas, where they're mistaken for a gay couple who work as beauty pageant consultants. They go along with it to duck the police, but the local sheriff has a secret of his own.", "text_for_embedding": "Happy, Texas (1999). Genres: Comedy, Crime. Two escaped convicts roll into the village of Happy, Texas, where they're mistaken for a gay couple who work as beauty pageant consultants. They go along with it to duck the police, but the local sheriff has a secret of his own.. Tags: small town, texas, con man, fraud, independent film, mistaken identity, in the closet, fish out of water, escaped convict, stolen identity, small town sheriff, ruse, beauty pageant, confidence man, small town thieves"} +{"id": "9709", "title": "My Summer of Love", "year": 2004, "duration_min": 86, "rating": 6.0, "genres": "Drama, Thriller, Romance", "genres_pipe": "|Drama|Thriller|Romance|", "keywords": "england, brother sister relationship, becoming an adult, northern england, female friendship, moped, lesbian relationship, homosexuality, summer, tomboy, lgbt", "tags_pipe": "|england|brother sister relationship|becoming an adult|northern england|female friendship|moped|lesbian relationship|homosexuality|summer|tomboy|lgbt|", "overview": "In the Yorkshire countryside, working-class tomboy Mona meets the exotic, pampered Tasmin. Over the summer season, the two young women discover they have much to teach one another, and much to explore together.", "text_for_embedding": "My Summer of Love (2004). Genres: Drama, Thriller, Romance. In the Yorkshire countryside, working-class tomboy Mona meets the exotic, pampered Tasmin. Over the summer season, the two young women discover they have much to teach one another, and much to explore together.. Tags: england, brother sister relationship, becoming an adult, northern england, female friendship, moped, lesbian relationship, homosexuality, summer, tomboy, lgbt"} +{"id": "191714", "title": "The Lunchbox", "year": 2013, "duration_min": 104, "rating": 7.3, "genres": "Drama, Romance", "genres_pipe": "|Drama|Romance|", "keywords": "", "tags_pipe": "", "overview": "A mistaken delivery in Mumbai's famously efficient lunchbox delivery system (Mumbai's Dabbawallahs) connects a young housewife to a stranger in the dusk of his life. They build a fantasy world together through notes in the lunchbox. Gradually, this fantasy threatens to overwhelm their reality.", "text_for_embedding": "The Lunchbox (2013). Genres: Drama, Romance. A mistaken delivery in Mumbai's famously efficient lunchbox delivery system (Mumbai's Dabbawallahs) connects a young housewife to a stranger in the dusk of his life. They build a fantasy world together through notes in the lunchbox. Gradually, this fantasy threatens to overwhelm their reality.. Tags: "} +{"id": "25312", "title": "Yes", "year": 2005, "duration_min": 100, "rating": 5.9, "genres": "Drama, Romance", "genres_pipe": "|Drama|Romance|", "keywords": "woman director", "tags_pipe": "|woman director|", "overview": "She is a scientist. He is a Lebanese doctor. They meet at a banquet and fall into a carefree, passionate relationship. But difficulties abound because of his heritage and her loveless marriage. She flies to Havana to sort things out on the beach and in the cabarets. She sends him a ticket, but harbors no illusions that He will join her in this Caribbean melting pot.", "text_for_embedding": "Yes (2005). Genres: Drama, Romance. She is a scientist. He is a Lebanese doctor. They meet at a banquet and fall into a carefree, passionate relationship. But difficulties abound because of his heritage and her loveless marriage. She flies to Havana to sort things out on the beach and in the cabarets. She sends him a ticket, but harbors no illusions that He will join her in this Caribbean melting pot.. Tags: woman director"} +{"id": "34106", "title": "You Can't Take It With You", "year": 1938, "duration_min": 126, "rating": 7.2, "genres": "Comedy, Romance", "genres_pipe": "|Comedy|Romance|", "keywords": "monopoly, tycoon, house, love, friends, eccentric, secretary, free spirit, rich snob, stenographer", "tags_pipe": "|monopoly|tycoon|house|love|friends|eccentric|secretary|free spirit|rich snob|stenographer|", "overview": "Alice, the only relatively normal member of the eccentric Sycamore family, falls in love with Tony Kirby. His wealthy banker father, Anthony P. Kirby, and his snobbish mother, strongly disapprove of the match. When the Kirbys are invited to dinner to become better acquainted with their future in-laws, things do not turn out the way Alice had hoped.", "text_for_embedding": "You Can't Take It With You (1938). Genres: Comedy, Romance. Alice, the only relatively normal member of the eccentric Sycamore family, falls in love with Tony Kirby. His wealthy banker father, Anthony P. Kirby, and his snobbish mother, strongly disapprove of the match. When the Kirbys are invited to dinner to become better acquainted with their future in-laws, things do not turn out the way Alice had hoped.. Tags: monopoly, tycoon, house, love, friends, eccentric, secretary, free spirit, rich snob, stenographer"} +{"id": "11426", "title": "From Here to Eternity", "year": 1953, "duration_min": 118, "rating": 7.2, "genres": "War, Drama, Romance", "genres_pipe": "|War|Drama|Romance|", "keywords": "hawaii, harassment, pearl harbor, bombing, military life, army base", "tags_pipe": "|hawaii|harassment|pearl harbor|bombing|military life|army base|", "overview": "In 1941 Hawaii, a private is cruelly punished for not boxing on his unit's team, while his captain's wife and second in command are falling in love.", "text_for_embedding": "From Here to Eternity (1953). Genres: War, Drama, Romance. In 1941 Hawaii, a private is cruelly punished for not boxing on his unit's team, while his captain's wife and second in command are falling in love.. Tags: hawaii, harassment, pearl harbor, bombing, military life, army base"} +{"id": "13909", "title": "She Wore a Yellow Ribbon", "year": 1949, "duration_min": 103, "rating": 7.1, "genres": "Western", "genres_pipe": "|Western|", "keywords": "captain, fort, retirement, attack, cavalry", "tags_pipe": "|captain|fort|retirement|attack|cavalry|", "overview": "After Custer and the 7th Cavalry are wiped out by Indians, everyone expects the worst. Capt. Nathan Brittles is ordered out on patrol but he's also required to take along Abby Allshard, wife of the Fort's commanding officer, and her niece, the pretty Olivia Dandridge, who are being evacuated for their own safety. Brittles is only a few days away from retirement and Olivia has caught the eye of two of the young officers in the Company, Lt. Flint Cohill and 2nd Lt. Ross Pennell. She's taken to wearing a yellow ribbon in her hair, a sign that she has a beau in the Cavalry, but refuses to say for whom she is wearing it.", "text_for_embedding": "She Wore a Yellow Ribbon (1949). Genres: Western. After Custer and the 7th Cavalry are wiped out by Indians, everyone expects the worst. Capt. Nathan Brittles is ordered out on patrol but he's also required to take along Abby Allshard, wife of the Fort's commanding officer, and her niece, the pretty Olivia Dandridge, who are being evacuated for their own safety. Brittles is only a few days away from retirement and Olivia has caught the eye of two of the young officers in the Company, Lt. Flint Cohill and 2nd Lt. Ross Pennell. She's taken to wearing a yellow ribbon in her hair, a sign that she has a beau in the Cavalry, but refuses to say for whom she is wearing it.. Tags: captain, fort, retirement, attack, cavalry"} +{"id": "206284", "title": "Grace Unplugged", "year": 2013, "duration_min": 102, "rating": 6.0, "genres": "Drama, Music", "genres_pipe": "|Drama|Music|", "keywords": "christian", "tags_pipe": "|christian|", "overview": "A talented young singer and aspiring songwriter’s Christian faith and family ties are tested when she defies her worship-pastor father and pursues pop-music stardom in GRACE UNPLUGGED, a moving and inspiring new film that explores the true meaning of success.", "text_for_embedding": "Grace Unplugged (2013). Genres: Drama, Music. A talented young singer and aspiring songwriter’s Christian faith and family ties are tested when she defies her worship-pastor father and pursues pop-music stardom in GRACE UNPLUGGED, a moving and inspiring new film that explores the true meaning of success.. Tags: christian"} +{"id": "27455", "title": "Foolish", "year": 1999, "duration_min": 84, "rating": 6.3, "genres": "Comedy, Drama", "genres_pipe": "|Comedy|Drama|", "keywords": "independent film, sexual humor, drug humor", "tags_pipe": "|independent film|sexual humor|drug humor|", "overview": "'Foolish' Waise is a talented comedian with a hard-edge trying to make it in the comedy clubs in LA while his brother is a hard-nosed gangster trying to make it on the streets. With all the competition they face in their chosen \"professions,\" their biggest battle is with each other over the love of a pretty girl.", "text_for_embedding": "Foolish (1999). Genres: Comedy, Drama. 'Foolish' Waise is a talented comedian with a hard-edge trying to make it in the comedy clubs in LA while his brother is a hard-nosed gangster trying to make it on the streets. With all the competition they face in their chosen \"professions,\" their biggest battle is with each other over the love of a pretty girl.. Tags: independent film, sexual humor, drug humor"} +{"id": "7973", "title": "Caramel", "year": 2007, "duration_min": 96, "rating": 6.8, "genres": "Drama, Comedy, Romance", "genres_pipe": "|Drama|Comedy|Romance|", "keywords": "women, hairdresser, sister sister relationship, new love, unexpected happiness, virgin, beauty, dressmaker, cosmetics and hygiene, strafzettel, wedding, police officer, existence, woman director", "tags_pipe": "|women|hairdresser|sister sister relationship|new love|unexpected happiness|virgin|beauty|dressmaker|cosmetics and hygiene|strafzettel|wedding|police officer|existence|woman director|", "overview": "In a beauty salon in Beirut the lives of five women cross paths. The beauty salon is a colorful and sensual microcosm where they share and entrust their hopes, fears and expectations.", "text_for_embedding": "Caramel (2007). Genres: Drama, Comedy, Romance. In a beauty salon in Beirut the lives of five women cross paths. The beauty salon is a colorful and sensual microcosm where they share and entrust their hopes, fears and expectations.. Tags: women, hairdresser, sister sister relationship, new love, unexpected happiness, virgin, beauty, dressmaker, cosmetics and hygiene, strafzettel, wedding, police officer, existence, woman director"} +{"id": "283686", "title": "Out of the Dark", "year": 2014, "duration_min": 92, "rating": 4.6, "genres": "Thriller, Horror", "genres_pipe": "|Thriller|Horror|", "keywords": "", "tags_pipe": "", "overview": "A couple and their daughter moves to Colombia to take over a family manufacturing plant, only to realize their new home is haunted.", "text_for_embedding": "Out of the Dark (2014). Genres: Thriller, Horror. A couple and their daughter moves to Colombia to take over a family manufacturing plant, only to realize their new home is haunted.. Tags: "} +{"id": "15976", "title": "The Bubble", "year": 2006, "duration_min": 114, "rating": 7.6, "genres": "Drama, Romance", "genres_pipe": "|Drama|Romance|", "keywords": "gay", "tags_pipe": "|gay|", "overview": "The movie follows a group of young friends in the city of Tel Aviv and is as much a love song to the city as it is an exploration of the claim that people in Tel Aviv are isolated from the rest of the country and the turmoil it's going through. The movie looks at young people's lives in Tel Aviv through the POVs of gays and straights, Jews and Arabs, men and women.", "text_for_embedding": "The Bubble (2006). Genres: Drama, Romance. The movie follows a group of young friends in the city of Tel Aviv and is as much a love song to the city as it is an exploration of the claim that people in Tel Aviv are isolated from the rest of the country and the turmoil it's going through. The movie looks at young people's lives in Tel Aviv through the POVs of gays and straights, Jews and Arabs, men and women.. Tags: gay"} +{"id": "592", "title": "The Conversation", "year": 1974, "duration_min": 113, "rating": 7.5, "genres": "Crime, Drama, Mystery", "genres_pipe": "|Crime|Drama|Mystery|", "keywords": "san francisco, paranoia, audio tape, wiretap, shadowing", "tags_pipe": "|san francisco|paranoia|audio tape|wiretap|shadowing|", "overview": "Surveillance expert Harry Caul (Gene Hackman) is hired by a mysterious client's brusque aide (Harrison Ford) to tail a young couple, Mark (Frederic Forrest) and Ann (Cindy Williams). Tracking the pair through San Francisco's Union Square, Caul and his associate Stan (John Cazale) manage to record a cryptic conversation between them. Tormented by memories of a previous case that ended badly, Caul becomes obsessed with the resulting tape, trying to determine if the couple are in danger.", "text_for_embedding": "The Conversation (1974). Genres: Crime, Drama, Mystery. Surveillance expert Harry Caul (Gene Hackman) is hired by a mysterious client's brusque aide (Harrison Ford) to tail a young couple, Mark (Frederic Forrest) and Ann (Cindy Williams). Tracking the pair through San Francisco's Union Square, Caul and his associate Stan (John Cazale) manage to record a cryptic conversation between them. Tormented by memories of a previous case that ended badly, Caul becomes obsessed with the resulting tape, trying to determine if the couple are in danger.. Tags: san francisco, paranoia, audio tape, wiretap, shadowing"} +{"id": "1651", "title": "Mississippi Mermaid", "year": 1969, "duration_min": 123, "rating": 6.7, "genres": "Crime, Drama, Romance", "genres_pipe": "|Crime|Drama|Romance|", "keywords": "exotic island, secret, love of one's life, plantation, marriage, mail order bride, french noir", "tags_pipe": "|exotic island|secret|love of one's life|plantation|marriage|mail order bride|french noir|", "overview": "Adapted from a story by William Irish, it's a noirish tale of a man who orders a mail-order bride but receives instead a con woman.", "text_for_embedding": "Mississippi Mermaid (1969). Genres: Crime, Drama, Romance. Adapted from a story by William Irish, it's a noirish tale of a man who orders a mail-order bride but receives instead a con woman.. Tags: exotic island, secret, love of one's life, plantation, marriage, mail order bride, french noir"} +{"id": "25428", "title": "I Love Your Work", "year": 2003, "duration_min": 111, "rating": 6.5, "genres": "Drama, Mystery", "genres_pipe": "|Drama|Mystery|", "keywords": "", "tags_pipe": "", "overview": "A fictional movie star, Gray Evans, goes through the disintegration of his marriage, his gradual mental breakdown, and his increasing obsession with a young film student who reminds Gray of his own life before becoming famous. A dark psychological drama, I Love Your Work explores the pressures of fame and the difference between getting what you want and wanting what you get.", "text_for_embedding": "I Love Your Work (2003). Genres: Drama, Mystery. A fictional movie star, Gray Evans, goes through the disintegration of his marriage, his gradual mental breakdown, and his increasing obsession with a young film student who reminds Gray of his own life before becoming famous. A dark psychological drama, I Love Your Work explores the pressures of fame and the difference between getting what you want and wanting what you get.. Tags: "} +{"id": "298584", "title": "Cabin Fever", "year": 2016, "duration_min": 99, "rating": 4.4, "genres": "Horror", "genres_pipe": "|Horror|", "keywords": "vacation, remake, woods, burned alive, murder, gore, marijuana, blood, teenager, cabin in the woods, disease, dog, flesh eating, virus", "tags_pipe": "|vacation|remake|woods|burned alive|murder|gore|marijuana|blood|teenager|cabin in the woods|disease|dog|flesh eating|virus|", "overview": "In this grisly remake of the 2002 horror hit, five college chums rent an isolated woodland cabin for a party. But their fun quickly ends when the group is exposed to a hideous flesh-eating virus, and survival becomes the name of the game.", "text_for_embedding": "Cabin Fever (2016). Genres: Horror. In this grisly remake of the 2002 horror hit, five college chums rent an isolated woodland cabin for a party. But their fun quickly ends when the group is exposed to a hideous flesh-eating virus, and survival becomes the name of the game.. Tags: vacation, remake, woods, burned alive, murder, gore, marijuana, blood, teenager, cabin in the woods, disease, dog, flesh eating, virus"} +{"id": "10758", "title": "Waitress", "year": 2007, "duration_min": 108, "rating": 6.7, "genres": "Comedy", "genres_pipe": "|Comedy|", "keywords": "waitress, unwillingly pregnant, woman director", "tags_pipe": "|waitress|unwillingly pregnant|woman director|", "overview": "Jenna is a pregnant, unhappily married waitress in the deep south. She meets a newcomer to her town and falls into an unlikely relationship as a last attempt at happiness.", "text_for_embedding": "Waitress (2007). Genres: Comedy. Jenna is a pregnant, unhappily married waitress in the deep south. She meets a newcomer to her town and falls into an unlikely relationship as a last attempt at happiness.. Tags: waitress, unwillingly pregnant, woman director"} +{"id": "11690", "title": "Bloodsport", "year": 1988, "duration_min": 92, "rating": 6.6, "genres": "Action", "genres_pipe": "|Action|", "keywords": "martial arts, biography, sport, sensei, mixed martial arts, hong kong", "tags_pipe": "|martial arts|biography|sport|sensei|mixed martial arts|hong kong|", "overview": "Frank Dux has entered the \"kumite\", an illegal underground martial-arts competition where serious injury and even death are not unknown. Chong Li, a particularly ruthless and vicious fighter is the favorite, but then again Dux has not fought him yet.", "text_for_embedding": "Bloodsport (1988). Genres: Action. Frank Dux has entered the \"kumite\", an illegal underground martial-arts competition where serious injury and even death are not unknown. Chong Li, a particularly ruthless and vicious fighter is the favorite, but then again Dux has not fought him yet.. Tags: martial arts, biography, sport, sensei, mixed martial arts, hong kong"} +{"id": "3083", "title": "Mr. Smith Goes to Washington", "year": 1939, "duration_min": 129, "rating": 7.9, "genres": "Comedy, Drama", "genres_pipe": "|Comedy|Drama|", "keywords": "corruption, washington d.c., senate, senator, governor, politician, camp, conservative, usa politics, political drama", "tags_pipe": "|corruption|washington d.c.|senate|senator|governor|politician|camp|conservative|usa politics|political drama|", "overview": "Naive and idealistic Jefferson Smith, leader of the Boy Rangers, is appointed on a lark by the spineless governor of his state. He is reunited with the state's senior senator--presidential hopeful and childhood hero, Senator Joseph Paine. In Washington, however, Smith discovers many of the shortcomings of the political process as his earnest goal of a national boys' camp leads to a conflict with the state political boss, Jim Taylor. Taylor first tries to corrupt Smith and then later attempts to destroy Smith through a scandal.", "text_for_embedding": "Mr. Smith Goes to Washington (1939). Genres: Comedy, Drama. Naive and idealistic Jefferson Smith, leader of the Boy Rangers, is appointed on a lark by the spineless governor of his state. He is reunited with the state's senior senator--presidential hopeful and childhood hero, Senator Joseph Paine. In Washington, however, Smith discovers many of the shortcomings of the political process as his earnest goal of a national boys' camp leads to a conflict with the state political boss, Jim Taylor. Taylor first tries to corrupt Smith and then later attempts to destroy Smith through a scandal.. Tags: corruption, washington d.c., senate, senator, governor, politician, camp, conservative, usa politics, political drama"} +{"id": "9344", "title": "Kids", "year": 1995, "duration_min": 91, "rating": 6.8, "genres": "Drama, Crime", "genres_pipe": "|Drama|Crime|", "keywords": "puberty, first time", "tags_pipe": "|puberty|first time|", "overview": "A controversial portrayal of teens in New York City which exposes a deeply disturbing world of sex and substance abuse. The film focuses on a sexually reckless, freckle-faced boy named Telly, whose goal is to have sex with as many different girls as he can. When Jenny, a girl who has had sex only once, tests positive for HIV, she knows she contracted the disease from Telly. When Jenny discovers that Telly's idea of \"safe sex\" is to only have sex with virgins, and is continuing to pass the disease onto other unsuspecting girls, Jenny makes it her business to try to stop him.", "text_for_embedding": "Kids (1995). Genres: Drama, Crime. A controversial portrayal of teens in New York City which exposes a deeply disturbing world of sex and substance abuse. The film focuses on a sexually reckless, freckle-faced boy named Telly, whose goal is to have sex with as many different girls as he can. When Jenny, a girl who has had sex only once, tests positive for HIV, she knows she contracted the disease from Telly. When Jenny discovers that Telly's idea of \"safe sex\" is to only have sex with virgins, and is continuing to pass the disease onto other unsuspecting girls, Jenny makes it her business to try to stop him.. Tags: puberty, first time"} +{"id": "10707", "title": "The Squid and the Whale", "year": 2005, "duration_min": 81, "rating": 6.9, "genres": "Comedy, Drama", "genres_pipe": "|Comedy|Drama|", "keywords": "childhood memory, uniform, independent film, private, tryst", "tags_pipe": "|childhood memory|uniform|independent film|private|tryst|", "overview": "Based on the true childhood experiences of Noah Baumbach and his brother, The Squid and the Whale tells the touching story of two young boys dealing with their parents divorce in Brooklyn in the 1980's.", "text_for_embedding": "The Squid and the Whale (2005). Genres: Comedy, Drama. Based on the true childhood experiences of Noah Baumbach and his brother, The Squid and the Whale tells the touching story of two young boys dealing with their parents divorce in Brooklyn in the 1980's.. Tags: childhood memory, uniform, independent film, private, tryst"} +{"id": "15647", "title": "Kissing Jessica Stein", "year": 2001, "duration_min": 97, "rating": 5.9, "genres": "Comedy", "genres_pipe": "|Comedy|", "keywords": "jew, based on play, independent film, gay relationship, lesbian, bisexual, bisexual woman", "tags_pipe": "|jew|based on play|independent film|gay relationship|lesbian|bisexual|bisexual woman|", "overview": "Jessica, a Jewish copy editor living and working in New York City, is plagued by failed blind dates with men, and decides to answer a newspaper's personal advertisement. The advertisement has been placed by 'lesbian-curious' Helen Cooper, a thirtysomething art gallerist.", "text_for_embedding": "Kissing Jessica Stein (2001). Genres: Comedy. Jessica, a Jewish copy editor living and working in New York City, is plagued by failed blind dates with men, and decides to answer a newspaper's personal advertisement. The advertisement has been placed by 'lesbian-curious' Helen Cooper, a thirtysomething art gallerist.. Tags: jew, based on play, independent film, gay relationship, lesbian, bisexual, bisexual woman"} +{"id": "308529", "title": "Kickboxer: Vengeance", "year": 2016, "duration_min": 90, "rating": 4.5, "genres": "Action, Drama", "genres_pipe": "|Action|Drama|", "keywords": "martial arts, kickboxing, martial arts tournament, reboot, thai boxing", "tags_pipe": "|martial arts|kickboxing|martial arts tournament|reboot|thai boxing|", "overview": "Eric and Kurt Sloane are the descendants of a well-known Venice, California-based family of martial artists. Kurt, the younger of the two, has always been in his brother Eric’s shadow, and despite his talent has been told he lacks the instinct needed to become a champion. But when Kurt witnesses the merciless murder of his brother at the hands of Muay Thai champion Tong Po, he vows revenge. He trains with his brother’s mentor for a fight to the death with Tong Po. At first it seems impossible to turn Kurt into the living weapon he must become to beat Tong Po, but through a series of tests and dangerous encounters, Kurt proves he has a deeper strength that will carry him through to his final showdown with Tong Po.", "text_for_embedding": "Kickboxer: Vengeance (2016). Genres: Action, Drama. Eric and Kurt Sloane are the descendants of a well-known Venice, California-based family of martial artists. Kurt, the younger of the two, has always been in his brother Eric’s shadow, and despite his talent has been told he lacks the instinct needed to become a champion. But when Kurt witnesses the merciless murder of his brother at the hands of Muay Thai champion Tong Po, he vows revenge. He trains with his brother’s mentor for a fight to the death with Tong Po. At first it seems impossible to turn Kurt into the living weapon he must become to beat Tong Po, but through a series of tests and dangerous encounters, Kurt proves he has a deeper strength that will carry him through to his final showdown with Tong Po.. Tags: martial arts, kickboxing, martial arts tournament, reboot, thai boxing"} +{"id": "4174", "title": "Spellbound", "year": 1945, "duration_min": 111, "rating": 7.3, "genres": "Drama, Mystery, Thriller", "genres_pipe": "|Drama|Mystery|Thriller|", "keywords": "amnesia, insane asylum, suspense", "tags_pipe": "|amnesia|insane asylum|suspense|", "overview": "When Dr. Anthony Edwardes arrives at a Vermont mental hospital to replace the outgoing hospital director, Dr. Constance Peterson, a psychoanalyst, discovers Edwardes is actually an impostor. The man confesses that the real Dr. Edwardes is dead and fears he may have killed him, but cannot recall anything. Dr. Peterson, however is convinced his impostor is innocent of the man's murder, and joins him on a quest to unravel his amnesia through psychoanalysis.", "text_for_embedding": "Spellbound (1945). Genres: Drama, Mystery, Thriller. When Dr. Anthony Edwardes arrives at a Vermont mental hospital to replace the outgoing hospital director, Dr. Constance Peterson, a psychoanalyst, discovers Edwardes is actually an impostor. The man confesses that the real Dr. Edwardes is dead and fears he may have killed him, but cannot recall anything. Dr. Peterson, however is convinced his impostor is innocent of the man's murder, and joins him on a quest to unravel his amnesia through psychoanalysis.. Tags: amnesia, insane asylum, suspense"} +{"id": "20156", "title": "Exotica", "year": 1994, "duration_min": 103, "rating": 6.5, "genres": "Drama, Mystery", "genres_pipe": "|Drama|Mystery|", "keywords": "secret, nightclub, pet shop, independent film, unhappiness", "tags_pipe": "|secret|nightclub|pet shop|independent film|unhappiness|", "overview": "In the upscale Toronto strip club Exotica, dancer Christina is visited nightly by the obsessive Francis, a depressed tax auditor. Her ex-boyfriend, the club's MC, Eric, still jealously pines for her even as he introduces her onstage, but Eric is having his own relationship problems with the club's owner, Zoe. Meanwhile Thomas, a mysterious pet-shop owner, is about to become unexpectedly involved in their lives. Gradually, connections between the traumatic pasts of these characters are revealed.", "text_for_embedding": "Exotica (1994). Genres: Drama, Mystery. In the upscale Toronto strip club Exotica, dancer Christina is visited nightly by the obsessive Francis, a depressed tax auditor. Her ex-boyfriend, the club's MC, Eric, still jealously pines for her even as he introduces her onstage, but Eric is having his own relationship problems with the club's owner, Zoe. Meanwhile Thomas, a mysterious pet-shop owner, is about to become unexpectedly involved in their lives. Gradually, connections between the traumatic pasts of these characters are revealed.. Tags: secret, nightclub, pet shop, independent film, unhappiness"} +{"id": "9464", "title": "Buffalo '66", "year": 1998, "duration_min": 110, "rating": 7.1, "genres": "Romance, Comedy, Crime, Drama", "genres_pipe": "|Romance|Comedy|Crime|Drama|", "keywords": "prison, gambling, compulsive gambling", "tags_pipe": "|prison|gambling|compulsive gambling|", "overview": "Billy is released after five years in prison. In the next moment, he kidnaps teenage student Layla and visits his parents with her, pretending she is his girlfriend and they will soon marry.", "text_for_embedding": "Buffalo '66 (1998). Genres: Romance, Comedy, Crime, Drama. Billy is released after five years in prison. In the next moment, he kidnaps teenage student Layla and visits his parents with her, pretending she is his girlfriend and they will soon marry.. Tags: prison, gambling, compulsive gambling"} +{"id": "49018", "title": "Insidious", "year": 2010, "duration_min": 103, "rating": 6.8, "genres": "Horror, Thriller", "genres_pipe": "|Horror|Thriller|", "keywords": "medium, evil spirit, house warming, aftercreditsstinger", "tags_pipe": "|medium|evil spirit|house warming|aftercreditsstinger|", "overview": "A family discovers that dark spirits have invaded their home after their son inexplicably falls into an endless sleep. When they reach out to a professional for help, they learn things are a lot more personal than they thought.", "text_for_embedding": "Insidious (2010). Genres: Horror, Thriller. A family discovers that dark spirits have invaded their home after their son inexplicably falls into an endless sleep. When they reach out to a professional for help, they learn things are a lot more personal than they thought.. Tags: medium, evil spirit, house warming, aftercreditsstinger"} +{"id": "13820", "title": "Repo Man", "year": 1984, "duration_min": 92, "rating": 6.7, "genres": "Comedy, Crime, Science Fiction, Thriller", "genres_pipe": "|Comedy|Crime|Science Fiction|Thriller|", "keywords": "california, cocaine, future, punk, theory, music, police, cult, rocker, ufo, surrealism, alien, independent film, conspiracy, torture", "tags_pipe": "|california|cocaine|future|punk|theory|music|police|cult|rocker|ufo|surrealism|alien|independent film|conspiracy|torture|", "overview": "A down and out young punk gets a job working with a seasoned repo man, but what awaits him in his new career is a series of outlandish adventures revolving around aliens, the CIA, and a most wanted '64 Chevy.", "text_for_embedding": "Repo Man (1984). Genres: Comedy, Crime, Science Fiction, Thriller. A down and out young punk gets a job working with a seasoned repo man, but what awaits him in his new career is a series of outlandish adventures revolving around aliens, the CIA, and a most wanted '64 Chevy.. Tags: california, cocaine, future, punk, theory, music, police, cult, rocker, ufo, surrealism, alien, independent film, conspiracy, torture"} +{"id": "18079", "title": "Nine Queens", "year": 2000, "duration_min": 114, "rating": 7.4, "genres": "Crime, Drama, Thriller", "genres_pipe": "|Crime|Drama|Thriller|", "keywords": "hotel, con man, stamp, police, partner, money, scam, grifter, convenience store, swindle, rare stamps", "tags_pipe": "|hotel|con man|stamp|police|partner|money|scam|grifter|convenience store|swindle|rare stamps|", "overview": "An Argentinian crime drama revolving around a sheet of rare stamps (the Nine Queens).", "text_for_embedding": "Nine Queens (2000). Genres: Crime, Drama, Thriller. An Argentinian crime drama revolving around a sheet of rare stamps (the Nine Queens).. Tags: hotel, con man, stamp, police, partner, money, scam, grifter, convenience store, swindle, rare stamps"} +{"id": "127918", "title": "The Gatekeepers", "year": 2012, "duration_min": 101, "rating": 6.5, "genres": "Documentary", "genres_pipe": "|Documentary|", "keywords": "israel, army, intelligence agency, shin bet", "tags_pipe": "|israel|army|intelligence agency|shin bet|", "overview": "In an unprecedented and candid series of interviews, six former heads of the Shin Bet — Israel's intelligence and security agency — speak about their role in Israel's decades-long counterterrorism campaign, discussing their controversial methods and whether the ends ultimately justify the means. (TIFF)", "text_for_embedding": "The Gatekeepers (2012). Genres: Documentary. In an unprecedented and candid series of interviews, six former heads of the Shin Bet — Israel's intelligence and security agency — speak about their role in Israel's decades-long counterterrorism campaign, discussing their controversial methods and whether the ends ultimately justify the means. (TIFF). Tags: israel, army, intelligence agency, shin bet"} +{"id": "17113", "title": "The Ballad of Jack and Rose", "year": 2005, "duration_min": 111, "rating": 6.5, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "female nudity, runaway, commune, egg, independent film, arson, incest, illness, environmentalism, diabetic, face slap, peeping tom, scythe, woman director", "tags_pipe": "|female nudity|runaway|commune|egg|independent film|arson|incest|illness|environmentalism|diabetic|face slap|peeping tom|scythe|woman director|", "overview": "Jack Slavin is an environmentalist with a heart condition who lives with his daughter, Rose, on an isolated island. While Jack fights against developers who wish to build in the area, he also craves more contact with other people. When he invites his girlfriend, Kathleen, and her sons, Rodney and Thaddius, to move in, Rose is upset. The complicated family dynamics makes things difficult for everyone in the house.", "text_for_embedding": "The Ballad of Jack and Rose (2005). Genres: Drama. Jack Slavin is an environmentalist with a heart condition who lives with his daughter, Rose, on an isolated island. While Jack fights against developers who wish to build in the area, he also craves more contact with other people. When he invites his girlfriend, Kathleen, and her sons, Rodney and Thaddius, to move in, Rose is upset. The complicated family dynamics makes things difficult for everyone in the house.. Tags: female nudity, runaway, commune, egg, independent film, arson, incest, illness, environmentalism, diabetic, face slap, peeping tom, scythe, woman director"} +{"id": "129139", "title": "The To Do List", "year": 2013, "duration_min": 104, "rating": 5.5, "genres": "Comedy, Romance", "genres_pipe": "|Comedy|Romance|", "keywords": "sex, sexuality, irony, sarcasm, naivety, black humor, swimming pool, teenage girl, sexual humor, summer, love interest, summer vacation, father daughter relationship, attraction, high school student", "tags_pipe": "|sex|sexuality|irony|sarcasm|naivety|black humor|swimming pool|teenage girl|sexual humor|summer|love interest|summer vacation|father daughter relationship|attraction|high school student|", "overview": "Feeling pressured to become more sexually experienced before she goes to college, Brandy Klark makes a list of things to accomplish before hitting campus in the fall.", "text_for_embedding": "The To Do List (2013). Genres: Comedy, Romance. Feeling pressured to become more sexually experienced before she goes to college, Brandy Klark makes a list of things to accomplish before hitting campus in the fall.. Tags: sex, sexuality, irony, sarcasm, naivety, black humor, swimming pool, teenage girl, sexual humor, summer, love interest, summer vacation, father daughter relationship, attraction, high school student"} +{"id": "507", "title": "Killing Zoe", "year": 1993, "duration_min": 96, "rating": 6.1, "genres": "Action, Crime, Drama, Thriller", "genres_pipe": "|Action|Crime|Drama|Thriller|", "keywords": "paris, prostitute, robbery, drug abuse, aids, bank, jazz, hostage, night life, kidnapping, vault, junkie, bank robber, heroin, friendship", "tags_pipe": "|paris|prostitute|robbery|drug abuse|aids|bank|jazz|hostage|night life|kidnapping|vault|junkie|bank robber|heroin|friendship|", "overview": "Zed (Eric Stoltz) is an American vault-cracker who travels to Paris to meet up with his old friend Eric (Jean-Hugues Anglade). Eric and his gang have planned to raid the only bank in the city which is open on Bastille day. After offering his services, Zed soon finds himself trapped in a situation beyond his control when heroin abuse, poor planning and a call-girl named Zoe all conspire to turn the robbery into a very bloody siege.", "text_for_embedding": "Killing Zoe (1993). Genres: Action, Crime, Drama, Thriller. Zed (Eric Stoltz) is an American vault-cracker who travels to Paris to meet up with his old friend Eric (Jean-Hugues Anglade). Eric and his gang have planned to raid the only bank in the city which is open on Bastille day. After offering his services, Zed soon finds himself trapped in a situation beyond his control when heroin abuse, poor planning and a call-girl named Zoe all conspire to turn the robbery into a very bloody siege.. Tags: paris, prostitute, robbery, drug abuse, aids, bank, jazz, hostage, night life, kidnapping, vault, junkie, bank robber, heroin, friendship"} +{"id": "4012", "title": "The Believer", "year": 2001, "duration_min": 98, "rating": 6.8, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "bomb, jewry, world war ii, jewish life, jew, synagogue, anti semitism, independent film, bomb planting", "tags_pipe": "|bomb|jewry|world war ii|jewish life|jew|synagogue|anti semitism|independent film|bomb planting|", "overview": "The movie tells the story of a young Jewish man who becomes fiercely anti-Semitic.", "text_for_embedding": "The Believer (2001). Genres: Drama. The movie tells the story of a young Jewish man who becomes fiercely anti-Semitic.. Tags: bomb, jewry, world war ii, jewish life, jew, synagogue, anti semitism, independent film, bomb planting"} +{"id": "14054", "title": "Snow Angels", "year": 2008, "duration_min": 106, "rating": 6.5, "genres": "Drama, Romance", "genres_pipe": "|Drama|Romance|", "keywords": "suicide, depression, small town, family relationships, young love", "tags_pipe": "|suicide|depression|small town|family relationships|young love|", "overview": "Waitress Annie has separated from her suicidal alcoholic husband, Glenn. Glenn has become an evangelical Christian, but his erratic attempts at getting back into Annie's life have alarmed her. High school student Arthur works at Annie's restaurant, growing closer to a new kid in town, Lila, after class. When Glenn and Annie's daughter go missing, the whole town searches for her, as he increasingly spirals out of control.", "text_for_embedding": "Snow Angels (2008). Genres: Drama, Romance. Waitress Annie has separated from her suicidal alcoholic husband, Glenn. Glenn has become an evangelical Christian, but his erratic attempts at getting back into Annie's life have alarmed her. High school student Arthur works at Annie's restaurant, growing closer to a new kid in town, Lila, after class. When Glenn and Annie's daughter go missing, the whole town searches for her, as he increasingly spirals out of control.. Tags: suicide, depression, small town, family relationships, young love"} +{"id": "323271", "title": "Unsullied", "year": 2015, "duration_min": 93, "rating": 3.0, "genres": "Thriller, Action, Horror", "genres_pipe": "|Thriller|Action|Horror|", "keywords": "", "tags_pipe": "", "overview": "When car trouble strands track star Reagan Farrow in the Florida boondocks, she accepts an offer of help from a pair of charming strangers only to find herself trapped in a brutal backwoods nightmare. Held captive in an isolated cabin, Reagan manages to escape and take refuge in the forest. Relentlessly pursued by the savage sociopaths who kidnapped her, Reagan will need all of her inner strength and resourcefulness in order to survive in this gripping thriller.", "text_for_embedding": "Unsullied (2015). Genres: Thriller, Action, Horror. When car trouble strands track star Reagan Farrow in the Florida boondocks, she accepts an offer of help from a pair of charming strangers only to find herself trapped in a brutal backwoods nightmare. Held captive in an isolated cabin, Reagan manages to escape and take refuge in the forest. Relentlessly pursued by the savage sociopaths who kidnapped her, Reagan will need all of her inner strength and resourcefulness in order to survive in this gripping thriller.. Tags: "} +{"id": "10972", "title": "Session 9", "year": 2001, "duration_min": 100, "rating": 6.2, "genres": "Horror, Mystery", "genres_pipe": "|Horror|Mystery|", "keywords": "schizophrenia, lunatic asylum, psychology, relation, coin, tape recorder, pot smoking, cell phone, walkie talkie, security guard, asbestos, multiple personality, tunnel, lobotomy, hazmat suit", "tags_pipe": "|schizophrenia|lunatic asylum|psychology|relation|coin|tape recorder|pot smoking|cell phone|walkie talkie|security guard|asbestos|multiple personality|tunnel|lobotomy|hazmat suit|", "overview": "Tensions rise within an asbestos cleaning crew as they work in an abandoned mental hospital with a horrific past that seems to be coming back.", "text_for_embedding": "Session 9 (2001). Genres: Horror, Mystery. Tensions rise within an asbestos cleaning crew as they work in an abandoned mental hospital with a horrific past that seems to be coming back.. Tags: schizophrenia, lunatic asylum, psychology, relation, coin, tape recorder, pot smoking, cell phone, walkie talkie, security guard, asbestos, multiple personality, tunnel, lobotomy, hazmat suit"} +{"id": "13066", "title": "I Want Someone to Eat Cheese With", "year": 2006, "duration_min": 80, "rating": 5.7, "genres": "Comedy, Romance", "genres_pipe": "|Comedy|Romance|", "keywords": "independent film", "tags_pipe": "|independent film|", "overview": "Life has its downs for James, living with his mom in Chicago at 39, an aging performer at Second City, eating and weighing too much. A woman he's been dating drops him, as does his agent, her brother. James turns down roles in local TV, roles that make him sad. Someone's remaking his favorite movie, \"Marty,\" a role he'd love, but he doesn't even get an audition.", "text_for_embedding": "I Want Someone to Eat Cheese With (2006). Genres: Comedy, Romance. Life has its downs for James, living with his mom in Chicago at 39, an aging performer at Second City, eating and weighing too much. A woman he's been dating drops him, as does his agent, her brother. James turns down roles in local TV, roles that make him sad. Someone's remaking his favorite movie, \"Marty,\" a role he'd love, but he doesn't even get an audition.. Tags: independent film"} +{"id": "66025", "title": "Mooz-lum", "year": 2011, "duration_min": 95, "rating": 4.5, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "independent film", "tags_pipe": "|independent film|", "overview": "Thanks to a strict Muslim upbringing that largely shielded him from the outside world, Tariq's first year of college proves transformative. That is, until the 9/11 terrorist attacks invite growing suspicion and distrust from his angry classmates.", "text_for_embedding": "Mooz-lum (2011). Genres: Drama. Thanks to a strict Muslim upbringing that largely shielded him from the outside world, Tariq's first year of college proves transformative. That is, until the 9/11 terrorist attacks invite growing suspicion and distrust from his angry classmates.. Tags: independent film"} +{"id": "11908", "title": "Hatchet", "year": 2006, "duration_min": 83, "rating": 5.7, "genres": "Comedy, Horror", "genres_pipe": "|Comedy|Horror|", "keywords": "new orleans, alligator, male friendship, ax, swampf, serial killer", "tags_pipe": "|new orleans|alligator|male friendship|ax|swampf|serial killer|", "overview": "When a group of tourists on a New Orleans haunted swamp tour find themselves stranded in the wilderness, their evening of fun and spooks turns into a horrific nightmare.", "text_for_embedding": "Hatchet (2006). Genres: Comedy, Horror. When a group of tourists on a New Orleans haunted swamp tour find themselves stranded in the wilderness, their evening of fun and spooks turns into a horrific nightmare.. Tags: new orleans, alligator, male friendship, ax, swampf, serial killer"} +{"id": "3082", "title": "Modern Times", "year": 1936, "duration_min": 87, "rating": 8.1, "genres": "Drama, Comedy", "genres_pipe": "|Drama|Comedy|", "keywords": "factory, ambulance, invention, tramp, great depression, industrial revolution, slapstick, machine, pardon, guilty", "tags_pipe": "|factory|ambulance|invention|tramp|great depression|industrial revolution|slapstick|machine|pardon|guilty|", "overview": "The Tramp struggles to live in modern industrial society with the help of a young homeless woman.", "text_for_embedding": "Modern Times (1936). Genres: Drama, Comedy. The Tramp struggles to live in modern industrial society with the help of a young homeless woman.. Tags: factory, ambulance, invention, tramp, great depression, industrial revolution, slapstick, machine, pardon, guilty"} +{"id": "39541", "title": "Stolen Summer", "year": 2002, "duration_min": 91, "rating": 6.4, "genres": "Drama, Family, Comedy", "genres_pipe": "|Drama|Family|Comedy|", "keywords": "", "tags_pipe": "", "overview": "Pete, an eight-year-old Catholic boy growing up in the suburbs of Chicago in the mid-1970s, attends Catholic school, where as classes let out for the summer, he's admonished by a nun to follow the path of the Lord, and not that of the Devil. Perhaps taking this message a bit too seriously, Pete decides it's his goal for the summer to help someone get into heaven; having been told that Catholicism is the only sure path to the kingdom of the Lord, Pete decides to convert a Jew to Catholicism in order to improve their standing in the afterlife. Hoping to find a likely candidate, Pete begins visiting a nearby synagogue, where he gets to know Rabbi Jacobson, who responds to Pete's barrage of questions with good humor. Pete also makes friends with the Rabbi's son, Danny, who is about the same age; when he learns that Danny is seriously ill, he decides Danny would be an excellent choice for conversion.", "text_for_embedding": "Stolen Summer (2002). Genres: Drama, Family, Comedy. Pete, an eight-year-old Catholic boy growing up in the suburbs of Chicago in the mid-1970s, attends Catholic school, where as classes let out for the summer, he's admonished by a nun to follow the path of the Lord, and not that of the Devil. Perhaps taking this message a bit too seriously, Pete decides it's his goal for the summer to help someone get into heaven; having been told that Catholicism is the only sure path to the kingdom of the Lord, Pete decides to convert a Jew to Catholicism in order to improve their standing in the afterlife. Hoping to find a likely candidate, Pete begins visiting a nearby synagogue, where he gets to know Rabbi Jacobson, who responds to Pete's barrage of questions with good humor. Pete also makes friends with the Rabbi's son, Danny, who is about the same age; when he learns that Danny is seriously ill, he decides Danny would be an excellent choice for conversion.. Tags: "} +{"id": "1961", "title": "My Name Is Bruce", "year": 2007, "duration_min": 86, "rating": 5.9, "genres": "Comedy, Horror", "genres_pipe": "|Comedy|Horror|", "keywords": "parody, parallel world", "tags_pipe": "|parody|parallel world|", "overview": "B Movie Legend Bruce Campbell is mistaken for his character Ash from the Evil Dead trilogy and forced to fight a real monster in a small town in Oregon.", "text_for_embedding": "My Name Is Bruce (2007). Genres: Comedy, Horror. B Movie Legend Bruce Campbell is mistaken for his character Ash from the Evil Dead trilogy and forced to fight a real monster in a small town in Oregon.. Tags: parody, parallel world"} +{"id": "291362", "title": "Road Hard", "year": 2015, "duration_min": 97, "rating": 6.6, "genres": "Comedy", "genres_pipe": "|Comedy|", "keywords": "road trip, stand-up comedy, romantic comedy, travel", "tags_pipe": "|road trip|stand-up comedy|romantic comedy|travel|", "overview": "After his movie and television career has run dry, Bruce Madsen (Adam Carolla) is forced to go back on the road playing one dingy comedy club after another, spending endless nights in budget hotel rooms and always flying coach. Amidst trying to revitalize his career, rekindle his love life and put his daughter through college, Bruce knows one thing for sure - he must get off the road. ROAD HARD is the story of that journey.", "text_for_embedding": "Road Hard (2015). Genres: Comedy. After his movie and television career has run dry, Bruce Madsen (Adam Carolla) is forced to go back on the road playing one dingy comedy club after another, spending endless nights in budget hotel rooms and always flying coach. Amidst trying to revitalize his career, rekindle his love life and put his daughter through college, Bruce knows one thing for sure - he must get off the road. ROAD HARD is the story of that journey.. Tags: road trip, stand-up comedy, romantic comedy, travel"} +{"id": "30082", "title": "Forty Shades of Blue", "year": 2005, "duration_min": 108, "rating": 6.0, "genres": "Drama, Romance", "genres_pipe": "|Drama|Romance|", "keywords": "independent film", "tags_pipe": "|independent film|", "overview": "A Russian woman living in Memphis with a much older rock-n-roll legend experiences a personal awakening when her husband's estranged son comes to visit.", "text_for_embedding": "Forty Shades of Blue (2005). Genres: Drama, Romance. A Russian woman living in Memphis with a much older rock-n-roll legend experiences a personal awakening when her husband's estranged son comes to visit.. Tags: independent film"} +{"id": "72913", "title": "Amigo", "year": 2010, "duration_min": 128, "rating": 6.0, "genres": "Drama, History, War", "genres_pipe": "|Drama|History|War|", "keywords": "ambush, rebel, rain, village, arrest, friendship, gun battle, soldier, american", "tags_pipe": "|ambush|rebel|rain|village|arrest|friendship|gun battle|soldier|american|", "overview": "Rafael, a village mayor caught in the murderous crossfire of the Philippine-American War. When U.S. troops occupy his village, Rafael comes under pressure from a tough-as-nails officer to help the Americans in their hunt for Filipino guerilla fighters. But Rafael's brother is the head of the local guerillas, and considers anyone who cooperates with the Americans to be a traitor. Rafael quickly finds himself forced to make the impossible, potentially deadly decisions faced by ordinary civilians in an occupied country.", "text_for_embedding": "Amigo (2010). Genres: Drama, History, War. Rafael, a village mayor caught in the murderous crossfire of the Philippine-American War. When U.S. troops occupy his village, Rafael comes under pressure from a tough-as-nails officer to help the Americans in their hunt for Filipino guerilla fighters. But Rafael's brother is the head of the local guerillas, and considers anyone who cooperates with the Americans to be a traitor. Rafael quickly finds himself forced to make the impossible, potentially deadly decisions faced by ordinary civilians in an occupied country.. Tags: ambush, rebel, rain, village, arrest, friendship, gun battle, soldier, american"} +{"id": "23963", "title": "Pontypool", "year": 2009, "duration_min": 93, "rating": 6.6, "genres": "Horror, Mystery, Science Fiction", "genres_pipe": "|Horror|Mystery|Science Fiction|", "keywords": "disc jockey, radio station, winter, survival, zombie, fear, ontario canada, radio broadcast, talk radio, zombie apocalypse, trapped in building", "tags_pipe": "|disc jockey|radio station|winter|survival|zombie|fear|ontario canada|radio broadcast|talk radio|zombie apocalypse|trapped in building|", "overview": "When disc jockey Grant Mazzy reports to his basement radio station in the Canadian town of Pontypool, he thinks it's just another day at work. But when he hears reports of a virus that turns people into zombies, Mazzy barricades himself in the radio booth and tries to figure out a way to warn his listeners about the virus and its unlikely mode of transmission.", "text_for_embedding": "Pontypool (2009). Genres: Horror, Mystery, Science Fiction. When disc jockey Grant Mazzy reports to his basement radio station in the Canadian town of Pontypool, he thinks it's just another day at work. But when he hears reports of a virus that turns people into zombies, Mazzy barricades himself in the radio booth and tries to figure out a way to warn his listeners about the virus and its unlikely mode of transmission.. Tags: disc jockey, radio station, winter, survival, zombie, fear, ontario canada, radio broadcast, talk radio, zombie apocalypse, trapped in building"} +{"id": "29406", "title": "Trucker", "year": 2008, "duration_min": 90, "rating": 6.8, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "california, sex, bar, motel, highway, reunion, cancer, independent film, violence, anger, divorcee, drunk, trucker, americana, traffic", "tags_pipe": "|california|sex|bar|motel|highway|reunion|cancer|independent film|violence|anger|divorcee|drunk|trucker|americana|traffic|", "overview": "Loner Diane Ford (Michelle Monaghan) is a truck driver with an 11-year-old son, Peter (Jimmy Bennett), whom she never sees, and that's fine with her. But, when Peter's father, Len (Benjamin Bratt), falls ill, he asks Diane to take care of their son for a while. Eventually, Diane reluctantly agrees, but she quickly realizes that caring for a child interferes with her independent lifestyle -- and Peter isn't all that thrilled with the arrangement, either.", "text_for_embedding": "Trucker (2008). Genres: Drama. Loner Diane Ford (Michelle Monaghan) is a truck driver with an 11-year-old son, Peter (Jimmy Bennett), whom she never sees, and that's fine with her. But, when Peter's father, Len (Benjamin Bratt), falls ill, he asks Diane to take care of their son for a while. Eventually, Diane reluctantly agrees, but she quickly realizes that caring for a child interferes with her independent lifestyle -- and Peter isn't all that thrilled with the arrangement, either.. Tags: california, sex, bar, motel, highway, reunion, cancer, independent film, violence, anger, divorcee, drunk, trucker, americana, traffic"} +{"id": "361505", "title": "Me You and Five Bucks", "year": 2015, "duration_min": 90, "rating": 10.0, "genres": "Romance, Comedy, Drama", "genres_pipe": "|Romance|Comedy|Drama|", "keywords": "", "tags_pipe": "", "overview": "A womanizing yet lovable loser, Charlie, a waiter in his early 30's who dreams of selling his book entitled \"7 STEPS OF HEALING THE MALE BROKEN HEART\" finds himself still working in restaurants to survive in the Big Apple. Low on cash, he's left with no other choice but to look for a roommate to share his tiny studio. Surprisingly, the first person to answer the ad is his ex and only love of his life Pam, who broke his heart and disappeared without reason and the inspiration behind his book. The Pam he remembered was a youthful spirit with lots of money who is now broke and disheveled. A new story begins and it is up to Charlie to find out why she ran out on him and what's happened to her over the past three years. With a potential new love in his life, he must gather the strength to help Pam get back on her feet without rekindling old feelings.", "text_for_embedding": "Me You and Five Bucks (2015). Genres: Romance, Comedy, Drama. A womanizing yet lovable loser, Charlie, a waiter in his early 30's who dreams of selling his book entitled \"7 STEPS OF HEALING THE MALE BROKEN HEART\" finds himself still working in restaurants to survive in the Big Apple. Low on cash, he's left with no other choice but to look for a roommate to share his tiny studio. Surprisingly, the first person to answer the ad is his ex and only love of his life Pam, who broke his heart and disappeared without reason and the inspiration behind his book. The Pam he remembered was a youthful spirit with lots of money who is now broke and disheveled. A new story begins and it is up to Charlie to find out why she ran out on him and what's happened to her over the past three years. With a potential new love in his life, he must gather the strength to help Pam get back on her feet without rekindling old feelings.. Tags: "} +{"id": "104755", "title": "The Lords of Salem", "year": 2012, "duration_min": 101, "rating": 5.1, "genres": "Horror, Thriller", "genres_pipe": "|Horror|Thriller|", "keywords": "witch, coven, salem massachusetts, satanic", "tags_pipe": "|witch|coven|salem massachusetts|satanic|", "overview": "The City of Salem, Massachusetts is visited by a coven of ancient witches.", "text_for_embedding": "The Lords of Salem (2012). Genres: Horror, Thriller. The City of Salem, Massachusetts is visited by a coven of ancient witches.. Tags: witch, coven, salem massachusetts, satanic"} +{"id": "253306", "title": "Housebound", "year": 2014, "duration_min": 109, "rating": 6.5, "genres": "Horror, Comedy, Thriller", "genres_pipe": "|Horror|Comedy|Thriller|", "keywords": "haunted house, father-in-law, superstition, house arrest, basement, mystery, plot twist, exploding head, security guard, garden shears, dentures, home detention", "tags_pipe": "|haunted house|father-in-law|superstition|house arrest|basement|mystery|plot twist|exploding head|security guard|garden shears|dentures|home detention|", "overview": "When Kylie Bucknell is sentenced to home detention, she's forced to come to terms with her unsociable behaviour, her blabbering mother and a hostile spirit who seems less than happy about the new living arrangement.", "text_for_embedding": "Housebound (2014). Genres: Horror, Comedy, Thriller. When Kylie Bucknell is sentenced to home detention, she's forced to come to terms with her unsociable behaviour, her blabbering mother and a hostile spirit who seems less than happy about the new living arrangement.. Tags: haunted house, father-in-law, superstition, house arrest, basement, mystery, plot twist, exploding head, security guard, garden shears, dentures, home detention"} +{"id": "29595", "title": "Wal-Mart: The High Cost of Low Price", "year": 2005, "duration_min": 98, "rating": 6.9, "genres": "Documentary", "genres_pipe": "|Documentary|", "keywords": "usa, capitalism, department store, protest, community, middle class, big business, retail trade, consumerism, business, economics, corporation, walmart", "tags_pipe": "|usa|capitalism|department store|protest|community|middle class|big business|retail trade|consumerism|business|economics|corporation|walmart|", "overview": "This documentary takes the viewer on a deeply personal journey into the everyday lives of families struggling to fight Goliath. From a family business owner in the Midwest to a preacher in California, from workers in Florida to a poet in Mexico, dozens of film crews on three continents bring the intensely personal stories of an assault on families and American values.", "text_for_embedding": "Wal-Mart: The High Cost of Low Price (2005). Genres: Documentary. This documentary takes the viewer on a deeply personal journey into the everyday lives of families struggling to fight Goliath. From a family business owner in the Midwest to a preacher in California, from workers in Florida to a poet in Mexico, dozens of film crews on three continents bring the intensely personal stories of an assault on families and American values.. Tags: usa, capitalism, department store, protest, community, middle class, big business, retail trade, consumerism, business, economics, corporation, walmart"} +{"id": "46729", "title": "Fetching Cody", "year": 2005, "duration_min": 87, "rating": 6.8, "genres": "Comedy, Drama, Fantasy, Romance, Science Fiction", "genres_pipe": "|Comedy|Drama|Fantasy|Romance|Science Fiction|", "keywords": "independent film", "tags_pipe": "|independent film|", "overview": "Art, a drug-addicted dealer and hustler, arrives at his girlfriend Cody's apartment to find that she has overdosed on heroin. He tries to fix things by traveling back in time in an attempt to prevent her death.", "text_for_embedding": "Fetching Cody (2005). Genres: Comedy, Drama, Fantasy, Romance, Science Fiction. Art, a drug-addicted dealer and hustler, arrives at his girlfriend Cody's apartment to find that she has overdosed on heroin. He tries to fix things by traveling back in time in an attempt to prevent her death.. Tags: independent film"} +{"id": "294600", "title": "Last I Heard", "year": 2013, "duration_min": 98, "rating": 6.0, "genres": "Drama, Comedy", "genres_pipe": "|Drama|Comedy|", "keywords": "", "tags_pipe": "", "overview": "Released from federal prison after 20 years due to his ailing health, a formerly powerful New York mobster moves back home and attempts to reconnect with former life in this poignant Sopranos-esque character study.", "text_for_embedding": "Last I Heard (2013). Genres: Drama, Comedy. Released from federal prison after 20 years due to his ailing health, a formerly powerful New York mobster moves back home and attempts to reconnect with former life in this poignant Sopranos-esque character study.. Tags: "} +{"id": "137347", "title": "Closer to the Moon", "year": 2013, "duration_min": 112, "rating": 6.4, "genres": "Comedy, Drama", "genres_pipe": "|Comedy|Drama|", "keywords": "bank robbery", "tags_pipe": "|bank robbery|", "overview": "A Romanian police officer teams up with a small crew of bank robbers to pull off a heist by convincing everyone at the scene of the crime that they are only filming a movie.", "text_for_embedding": "Closer to the Moon (2013). Genres: Comedy, Drama. A Romanian police officer teams up with a small crew of bank robbers to pull off a heist by convincing everyone at the scene of the crime that they are only filming a movie.. Tags: bank robbery"} +{"id": "290370", "title": "Mutant World", "year": 2014, "duration_min": 85, "rating": 2.6, "genres": "Science Fiction", "genres_pipe": "|Science Fiction|", "keywords": "winter, mutant, post-apocalyptic, dystopia, meteor, politics of scarcity", "tags_pipe": "|winter|mutant|post-apocalyptic|dystopia|meteor|politics of scarcity|", "overview": "A decade after a disastrous meteor impact wipes out most of society, a group of survivalists emerge to find themselves on a twisted version of the old Earth, with a nascent society besieged by vicious marauders, ferocious mutants, and the dreadful symptoms of a post-apocalyptic environment.", "text_for_embedding": "Mutant World (2014). Genres: Science Fiction. A decade after a disastrous meteor impact wipes out most of society, a group of survivalists emerge to find themselves on a twisted version of the old Earth, with a nascent society besieged by vicious marauders, ferocious mutants, and the dreadful symptoms of a post-apocalyptic environment.. Tags: winter, mutant, post-apocalyptic, dystopia, meteor, politics of scarcity"} +{"id": "426469", "title": "Growing Up Smith", "year": 2017, "duration_min": 102, "rating": 7.4, "genres": "Comedy, Family, Drama", "genres_pipe": "|Comedy|Family|Drama|", "keywords": "", "tags_pipe": "", "overview": "In 1979, an Indian family moves to America with hopes of living the American Dream. While their 10-year-old boy Smith falls head-over-heels for the girl next door, his desire to become a \"good old boy\" propels him further away from his family's ideals than ever before.", "text_for_embedding": "Growing Up Smith (2017). Genres: Comedy, Family, Drama. In 1979, an Indian family moves to America with hopes of living the American Dream. While their 10-year-old boy Smith falls head-over-heels for the girl next door, his desire to become a \"good old boy\" propels him further away from his family's ideals than ever before.. Tags: "} +{"id": "356841", "title": "Checkmate", "year": 2015, "duration_min": 102, "rating": 4.2, "genres": "Thriller, Action, Crime", "genres_pipe": "|Thriller|Action|Crime|", "keywords": "", "tags_pipe": "", "overview": "Six people are thrown together during an elaborate bank heist where any move can alter the outcome. Is it coincidence, or are they merely pawns in a much bigger game.", "text_for_embedding": "Checkmate (2015). Genres: Thriller, Action, Crime. Six people are thrown together during an elaborate bank heist where any move can alter the outcome. Is it coincidence, or are they merely pawns in a much bigger game.. Tags: "} +{"id": "301325", "title": "#Horror", "year": 2015, "duration_min": 90, "rating": 3.3, "genres": "Drama, Mystery, Horror, Thriller", "genres_pipe": "|Drama|Mystery|Horror|Thriller|", "keywords": "", "tags_pipe": "", "overview": "Inspired by actual events, a group of 12 year old girls face a night of horror when the compulsive addiction of an online social media game turns a moment of cyber bullying into a night of insanity.", "text_for_embedding": "#Horror (2015). Genres: Drama, Mystery, Horror, Thriller. Inspired by actual events, a group of 12 year old girls face a night of horror when the compulsive addiction of an online social media game turns a moment of cyber bullying into a night of insanity.. Tags: "} +{"id": "347755", "title": "Wind Walkers", "year": 2016, "duration_min": 93, "rating": 7.5, "genres": "Action, Horror, Thriller", "genres_pipe": "|Action|Horror|Thriller|", "keywords": "", "tags_pipe": "", "overview": "A group of friends and family descend into the Everglades swamplands for their annual hunting trip only to discover that they are the ones being hunted. A malevolent entity is tracking them and they begin to realise one of their party may be possessed by something brought home from a tour of duty in the Middle East – a demon of war so horrible and deadly they are unaware of its devilish presence. Or are they facing something even more unspeakable, a legendary Native American curse about to unleash its dreadful legacy of thirsting for colonial revenge by claiming more souls?", "text_for_embedding": "Wind Walkers (2016). Genres: Action, Horror, Thriller. A group of friends and family descend into the Everglades swamplands for their annual hunting trip only to discover that they are the ones being hunted. A malevolent entity is tracking them and they begin to realise one of their party may be possessed by something brought home from a tour of duty in the Middle East – a demon of war so horrible and deadly they are unaware of its devilish presence. Or are they facing something even more unspeakable, a legendary Native American curse about to unleash its dreadful legacy of thirsting for colonial revenge by claiming more souls?. Tags: "} +{"id": "408", "title": "Snow White and the Seven Dwarfs", "year": 1937, "duration_min": 83, "rating": 6.9, "genres": "Fantasy, Animation, Family", "genres_pipe": "|Fantasy|Animation|Family|", "keywords": "poison, witch, becoming an adult, sadness, queen, attempted murder, dying and death, appearance, princess, candlelight vigil, snow white", "tags_pipe": "|poison|witch|becoming an adult|sadness|queen|attempted murder|dying and death|appearance|princess|candlelight vigil|snow white|", "overview": "A beautiful girl, Snow White, takes refuge in the forest in the house of seven dwarfs to hide from her stepmother, the wicked Queen. The Queen is jealous because she wants to be known as \"the fairest in the land,\" and Snow White's beauty surpasses her own.", "text_for_embedding": "Snow White and the Seven Dwarfs (1937). Genres: Fantasy, Animation, Family. A beautiful girl, Snow White, takes refuge in the forest in the house of seven dwarfs to hide from her stepmother, the wicked Queen. The Queen is jealous because she wants to be known as \"the fairest in the land,\" and Snow White's beauty surpasses her own.. Tags: poison, witch, becoming an adult, sadness, queen, attempted murder, dying and death, appearance, princess, candlelight vigil, snow white"} +{"id": "44413", "title": "The Holy Girl", "year": 2004, "duration_min": 106, "rating": 6.8, "genres": "Drama, Foreign", "genres_pipe": "|Drama|Foreign|", "keywords": "hotel, teenage girl, doctor, woman director, spanish movie", "tags_pipe": "|hotel|teenage girl|doctor|woman director|spanish movie|", "overview": "Amalia is an adolescent girl who is caught in the throes of her emerging sexuality and her deeply held passion for her Catholic faith. These two drives mingle when the visiting Dr. Jano takes advantage of a crowd to get inappropriately close to the girl. Repulsed by him but inspired by an inner burning, Amalia decides it is her God-given mission to save the doctor from his behavior, and she begins to stalk Dr. Jano, becoming a most unusual voyeur.", "text_for_embedding": "The Holy Girl (2004). Genres: Drama, Foreign. Amalia is an adolescent girl who is caught in the throes of her emerging sexuality and her deeply held passion for her Catholic faith. These two drives mingle when the visiting Dr. Jano takes advantage of a crowd to get inappropriately close to the girl. Repulsed by him but inspired by an inner burning, Amalia decides it is her God-given mission to save the doctor from his behavior, and she begins to stalk Dr. Jano, becoming a most unusual voyeur.. Tags: hotel, teenage girl, doctor, woman director, spanish movie"} +{"id": "39209", "title": "Shalako", "year": 1968, "duration_min": 113, "rating": 5.4, "genres": "Western", "genres_pipe": "|Western|", "keywords": "native american, gunfighter, hunting party", "tags_pipe": "|native american|gunfighter|hunting party|", "overview": "Sean Connery is Shalako, a guide in the old West who has to rescue an aristocratic British hunting party from Indians and bandits.", "text_for_embedding": "Shalako (1968). Genres: Western. Sean Connery is Shalako, a guide in the old West who has to rescue an aristocratic British hunting party from Indians and bandits.. Tags: native american, gunfighter, hunting party"} +{"id": "48463", "title": "Incident at Loch Ness", "year": 2004, "duration_min": 94, "rating": 5.9, "genres": "Adventure, Comedy, Horror", "genres_pipe": "|Adventure|Comedy|Horror|", "keywords": "", "tags_pipe": "", "overview": "The German film director Werner Herzog sets out to the Scottish Highlands to make a documentary, \"Enigma of Loch Ness\", exploding the myth of the Loch Ness Monster. Meanwhile, another documentary film crew is making a film about Werner Herzog, and we see the production of \"Enigma\" from their point of view. Shooting on a rented boat, tensions begin to rise as director Herzog and his producer, Zak Penn, find themselves at cross-purposes on the black surface of Loch Ness. Things get very edgy when the film crew starts seeing shapes in the murky water.", "text_for_embedding": "Incident at Loch Ness (2004). Genres: Adventure, Comedy, Horror. The German film director Werner Herzog sets out to the Scottish Highlands to make a documentary, \"Enigma of Loch Ness\", exploding the myth of the Loch Ness Monster. Meanwhile, another documentary film crew is making a film about Werner Herzog, and we see the production of \"Enigma\" from their point of view. Shooting on a rented boat, tensions begin to rise as director Herzog and his producer, Zak Penn, find themselves at cross-purposes on the black surface of Loch Ness. Things get very edgy when the film crew starts seeing shapes in the murky water.. Tags: "} +{"id": "394047", "title": "The Dog Lover", "year": 2016, "duration_min": 101, "rating": 5.3, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "undercover, dog, animal welfare, animal rights organization, puppy mill, animal rescues, college intern", "tags_pipe": "|undercover|dog|animal welfare|animal rights organization|puppy mill|animal rescues|college intern|", "overview": "Sara Gold is a young girl on a quest to save man's best friend. When she goes undercover to take down a dog breeder suspected of wrongdoing, she quickly finds out she might be on the wrong side of right. Sara must make a decision: to continue and follow the orders of her organization, United Animal Protection Agency, or trust her instincts and the boy she's fallen in love with.", "text_for_embedding": "The Dog Lover (2016). Genres: Drama. Sara Gold is a young girl on a quest to save man's best friend. When she goes undercover to take down a dog breeder suspected of wrongdoing, she quickly finds out she might be on the wrong side of right. Sara must make a decision: to continue and follow the orders of her organization, United Animal Protection Agency, or trust her instincts and the boy she's fallen in love with.. Tags: undercover, dog, animal welfare, animal rights organization, puppy mill, animal rescues, college intern"} +{"id": "312791", "title": "GirlHouse", "year": 2014, "duration_min": 100, "rating": 5.2, "genres": "Horror, Thriller", "genres_pipe": "|Horror|Thriller|", "keywords": "female nudity, sex, shower, sauna, nudity, security camera, house, webcam, website, murder, lesbian, masked killer, slasher, undressing, violence", "tags_pipe": "|female nudity|sex|shower|sauna|nudity|security camera|house|webcam|website|murder|lesbian|masked killer|slasher|undressing|violence|", "overview": "In an attempt to make some extra cash while away at College, Kylie moves into a house that streams content to an X-rated website. After a deranged fan hacks in to determine the house's location, she finds herself in a terrifying fight for her life.", "text_for_embedding": "GirlHouse (2014). Genres: Horror, Thriller. In an attempt to make some extra cash while away at College, Kylie moves into a house that streams content to an X-rated website. After a deranged fan hacks in to determine the house's location, she finds herself in a terrifying fight for her life.. Tags: female nudity, sex, shower, sauna, nudity, security camera, house, webcam, website, murder, lesbian, masked killer, slasher, undressing, violence"} +{"id": "266034", "title": "The Blue Room", "year": 2014, "duration_min": 75, "rating": 6.2, "genres": "Drama, Crime, Thriller", "genres_pipe": "|Drama|Crime|Thriller|", "keywords": "murder, suspense, love affair, police interrogation, murder trial", "tags_pipe": "|murder|suspense|love affair|police interrogation|murder trial|", "overview": "A man and a woman, secretly in love, alone in a room. They desire each other, want each other, and even bite each other. In the afterglow, they share a few sweet nothings. At least the man seemed to believe they were nothing. Now under investigation by the police and the courts, what is he accused of?", "text_for_embedding": "The Blue Room (2014). Genres: Drama, Crime, Thriller. A man and a woman, secretly in love, alone in a room. They desire each other, want each other, and even bite each other. In the afterglow, they share a few sweet nothings. At least the man seemed to believe they were nothing. Now under investigation by the police and the courts, what is he accused of?. Tags: murder, suspense, love affair, police interrogation, murder trial"} +{"id": "280381", "title": "House at the End of the Drive", "year": 2014, "duration_min": 91, "rating": 0.0, "genres": "Thriller, Horror", "genres_pipe": "|Thriller|Horror|", "keywords": "ghost story", "tags_pipe": "|ghost story|", "overview": "When David King purchases a house in the hills far above the angst of Los Angeles, he gets much more than he bargained for when strange and unexplainable occurrences in and around the house begin to take control of his daily life", "text_for_embedding": "House at the End of the Drive (2014). Genres: Thriller, Horror. When David King purchases a house in the hills far above the angst of Los Angeles, he gets much more than he bargained for when strange and unexplainable occurrences in and around the house begin to take control of his daily life. Tags: ghost story"} +{"id": "2661", "title": "Batman", "year": 1966, "duration_min": 105, "rating": 6.1, "genres": "Family, Adventure, Comedy, Science Fiction, Crime", "genres_pipe": "|Family|Adventure|Comedy|Science Fiction|Crime|", "keywords": "submarine, dc comics, missile, shark attack, rescue, shark, shark repelent, black cat, super powers", "tags_pipe": "|submarine|dc comics|missile|shark attack|rescue|shark|shark repelent|black cat|super powers|", "overview": "The Dynamic Duo faces four super-villains who plan to hold the world for ransom with the help of a secret invention that instantly dehydrates people.", "text_for_embedding": "Batman (1966). Genres: Family, Adventure, Comedy, Science Fiction, Crime. The Dynamic Duo faces four super-villains who plan to hold the world for ransom with the help of a secret invention that instantly dehydrates people.. Tags: submarine, dc comics, missile, shark attack, rescue, shark, shark repelent, black cat, super powers"} +{"id": "100", "title": "Lock, Stock and Two Smoking Barrels", "year": 1998, "duration_min": 105, "rating": 7.5, "genres": "Comedy, Crime", "genres_pipe": "|Comedy|Crime|", "keywords": "ambush, alcohol, shotgun, tea, joint, machismo, cocktail, rifle, marijuana, cockney accent, pot smoking, hatchet, antique, cardsharp, anger", "tags_pipe": "|ambush|alcohol|shotgun|tea|joint|machismo|cocktail|rifle|marijuana|cockney accent|pot smoking|hatchet|antique|cardsharp|anger|", "overview": "A card sharp and his unwillingly-enlisted friends need to make a lot of cash quick after losing a sketchy poker match. To do this they decide to pull a heist on a small-time gang who happen to be operating out of the flat next door.", "text_for_embedding": "Lock, Stock and Two Smoking Barrels (1998). Genres: Comedy, Crime. A card sharp and his unwillingly-enlisted friends need to make a lot of cash quick after losing a sketchy poker match. To do this they decide to pull a heist on a small-time gang who happen to be operating out of the flat next door.. Tags: ambush, alcohol, shotgun, tea, joint, machismo, cocktail, rifle, marijuana, cockney accent, pot smoking, hatchet, antique, cardsharp, anger"} +{"id": "218500", "title": "The Ballad of Gregorio Cortez", "year": 1983, "duration_min": 104, "rating": 0.0, "genres": "Western", "genres_pipe": "|Western|", "keywords": "", "tags_pipe": "", "overview": "The entire cause of the problem evolves from the use of a deputy to translate. His command of Spanish is inadequate and he mistranslates what a witness tells the sheriff as to whether the real perpetrator of the crime is riding a mare (yegua) or a male horse (caballo). This error results in destroying a family and the death of an innocent man.", "text_for_embedding": "The Ballad of Gregorio Cortez (1983). Genres: Western. The entire cause of the problem evolves from the use of a deputy to translate. His command of Spanish is inadequate and he mistranslates what a witness tells the sheriff as to whether the real perpetrator of the crime is riding a mare (yegua) or a male horse (caballo). This error results in destroying a family and the death of an innocent man.. Tags: "} +{"id": "309", "title": "The Celebration", "year": 1998, "duration_min": 105, "rating": 7.7, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "suicide, father son relationship, child abuse, sexual abuse, depression, parents kids relationship, secret, birthday, twin sister, hotelier, country house, daughter, dogme 95, family reunion, lecture", "tags_pipe": "|suicide|father son relationship|child abuse|sexual abuse|depression|parents kids relationship|secret|birthday|twin sister|hotelier|country house|daughter|dogme 95|family reunion|lecture|", "overview": "A grandiose party to celebrate a sixtieth birthday unleashes a family drama with all the lies that conceal horrendous secrets. The eldest son, Christian, stages a showdown with the popular pater familias; his provocative, moving after-dinner speech dislodges all the masks, which finally fall completely as the father-son conflict intensifies and the bewildered guests look on.", "text_for_embedding": "The Celebration (1998). Genres: Drama. A grandiose party to celebrate a sixtieth birthday unleashes a family drama with all the lies that conceal horrendous secrets. The eldest son, Christian, stages a showdown with the popular pater familias; his provocative, moving after-dinner speech dislodges all the masks, which finally fall completely as the father-son conflict intensifies and the bewildered guests look on.. Tags: suicide, father son relationship, child abuse, sexual abuse, depression, parents kids relationship, secret, birthday, twin sister, hotelier, country house, daughter, dogme 95, family reunion, lecture"} +{"id": "27845", "title": "Trees Lounge", "year": 1996, "duration_min": 95, "rating": 6.7, "genres": "Comedy, Drama", "genres_pipe": "|Comedy|Drama|", "keywords": "bar, alcoholism, independent film, drinking", "tags_pipe": "|bar|alcoholism|independent film|drinking|", "overview": "Tommy has lost his job, his love and his life. He lives in a small apartment above the Trees Lounge, a bar which he frequents along with a few other regulars without lives. He gets a job driving an ice cream truck and ends up getting involved with the seventeen-year-old niece of his ex-girlfriend. This gets him into serious trouble with her father.", "text_for_embedding": "Trees Lounge (1996). Genres: Comedy, Drama. Tommy has lost his job, his love and his life. He lives in a small apartment above the Trees Lounge, a bar which he frequents along with a few other regulars without lives. He gets a job driving an ice cream truck and ends up getting involved with the seventeen-year-old niece of his ex-girlfriend. This gets him into serious trouble with her father.. Tags: bar, alcoholism, independent film, drinking"} +{"id": "25784", "title": "Journey from the Fall", "year": 2006, "duration_min": 135, "rating": 5.0, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "vietnam, independent film", "tags_pipe": "|vietnam|independent film|", "overview": "Thirteen years after the end of the Vietnam War, a family who was tragically affected by the war are forced to emigrate to America.", "text_for_embedding": "Journey from the Fall (2006). Genres: Drama. Thirteen years after the end of the Vietnam War, a family who was tragically affected by the war are forced to emigrate to America.. Tags: vietnam, independent film"} +{"id": "52790", "title": "The Basket", "year": 2000, "duration_min": 105, "rating": 6.5, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "", "tags_pipe": "", "overview": "Peter Coyote (E.T., Erin Brokovich) and Karen Allen (The Perfect Storm) star in this touching family drama about the unifying power of basketball in a community torn apart by war. Both a riveting sports film and a tale of triumph over adversity, The Basket is \"a hoop dream movie with a whole lot of heart\" (Dallas Morning News)! In 1918, when the wheat-farming townspeople of Waterville, Washington, welcome home their first wounded son from WWI, they'restruck by the harsh reality of war. And just as bigotry and hatred toward two German orphans dividethe close-knit community, a new schoolteacher, Martin (Coyote), rolls into town with some strange ideas and an even stranger leather ball. Through the brand-new game called basketball, Martin strivesto bring harmony to the town...before it tears itself apart!", "text_for_embedding": "The Basket (2000). Genres: Drama. Peter Coyote (E.T., Erin Brokovich) and Karen Allen (The Perfect Storm) star in this touching family drama about the unifying power of basketball in a community torn apart by war. Both a riveting sports film and a tale of triumph over adversity, The Basket is \"a hoop dream movie with a whole lot of heart\" (Dallas Morning News)! In 1918, when the wheat-farming townspeople of Waterville, Washington, welcome home their first wounded son from WWI, they'restruck by the harsh reality of war. And just as bigotry and hatred toward two German orphans dividethe close-knit community, a new schoolteacher, Martin (Coyote), rolls into town with some strange ideas and an even stranger leather ball. Through the brand-new game called basketball, Martin strivesto bring harmony to the town...before it tears itself apart!. Tags: "} +{"id": "100275", "title": "Eddie: The Sleepwalking Cannibal", "year": 2012, "duration_min": 79, "rating": 6.1, "genres": "Horror, Comedy", "genres_pipe": "|Horror|Comedy|", "keywords": "cannibal, sleepwalking, art teacher", "tags_pipe": "|cannibal|sleepwalking|art teacher|", "overview": "A once-famous painter rediscovers inspiration when he befriends a sleepwalking cannibal.", "text_for_embedding": "Eddie: The Sleepwalking Cannibal (2012). Genres: Horror, Comedy. A once-famous painter rediscovers inspiration when he befriends a sleepwalking cannibal.. Tags: cannibal, sleepwalking, art teacher"} +{"id": "295914", "title": "Queen of the Mountains", "year": 2014, "duration_min": 135, "rating": 0.0, "genres": "Drama, Action", "genres_pipe": "|Drama|Action|", "keywords": "biography", "tags_pipe": "|biography|", "overview": "At a time when most females in Asia possess little or no power over their lives, headstrong Kurmanjan Datka defies her family's authority -- and ultimately becomes the ruler of her native Kyrgyzstan region.", "text_for_embedding": "Queen of the Mountains (2014). Genres: Drama, Action. At a time when most females in Asia possess little or no power over their lives, headstrong Kurmanjan Datka defies her family's authority -- and ultimately becomes the ruler of her native Kyrgyzstan region.. Tags: biography"} +{"id": "42033", "title": "Def-Con 4", "year": 1985, "duration_min": 88, "rating": 2.8, "genres": "Science Fiction", "genres_pipe": "|Science Fiction|", "keywords": "post-apocalyptic, dystopia, canuxploitation", "tags_pipe": "|post-apocalyptic|dystopia|canuxploitation|", "overview": "Two men and a woman circle the globe in a satellite armed with a nuclear device. The third world war breaks out, and a few months later the satellite crashes. They survive the crash but one man gets killed by survivors and the other man gets caught. The woman stays by the remains of the the satellite but is soon caught by evil punks who have taken power.", "text_for_embedding": "Def-Con 4 (1985). Genres: Science Fiction. Two men and a woman circle the globe in a satellite armed with a nuclear device. The third world war breaks out, and a few months later the satellite crashes. They survive the crash but one man gets killed by survivors and the other man gets caught. The woman stays by the remains of the the satellite but is soon caught by evil punks who have taken power.. Tags: post-apocalyptic, dystopia, canuxploitation"} +{"id": "19187", "title": "The Hebrew Hammer", "year": 2003, "duration_min": 85, "rating": 5.9, "genres": "Action, Comedy", "genres_pipe": "|Action|Comedy|", "keywords": "independent film", "tags_pipe": "|independent film|", "overview": "A Jewish blaxploitation hero saves Hanukkah from the clutches of Santa Claus's evil son.", "text_for_embedding": "The Hebrew Hammer (2003). Genres: Action, Comedy. A Jewish blaxploitation hero saves Hanukkah from the clutches of Santa Claus's evil son.. Tags: independent film"} +{"id": "46415", "title": "Neal 'n' Nikki", "year": 2005, "duration_min": 122, "rating": 2.3, "genres": "Comedy, Romance", "genres_pipe": "|Comedy|Romance|", "keywords": "musical", "tags_pipe": "|musical|", "overview": "The film, as its name implies, centres on Gurneal \"Neal\" Ahluwalia and Nikkita \"Nikki\" Bakshi (Uday Chopra and Tanisha), two Canadians of Indian descent, born and raised in British Columbia. Before getting married Neal wants to spend one month on vacation in total freedom by meeting women, going to clubs...", "text_for_embedding": "Neal 'n' Nikki (2005). Genres: Comedy, Romance. The film, as its name implies, centres on Gurneal \"Neal\" Ahluwalia and Nikkita \"Nikki\" Bakshi (Uday Chopra and Tanisha), two Canadians of Indian descent, born and raised in British Columbia. Before getting married Neal wants to spend one month on vacation in total freedom by meeting women, going to clubs.... Tags: musical"} +{"id": "38570", "title": "The 41–Year–Old Virgin Who Knocked Up Sarah Marshall and Felt Superbad About It", "year": 2010, "duration_min": 82, "rating": 3.2, "genres": "Comedy", "genres_pipe": "|Comedy|", "keywords": "duringcreditsstinger", "tags_pipe": "|duringcreditsstinger|", "overview": "Follows Andy, who needs to hook up with a hottie, pronto, because he hasn't had sex in... well, forever - and his luck isn't the only thing that's hard. His equally horny teenage roommates also need it superbad, and with the help of their nerdy pal, McAnalovin' and his fake I.D., they may tap more than just a keg.", "text_for_embedding": "The 41–Year–Old Virgin Who Knocked Up Sarah Marshall and Felt Superbad About It (2010). Genres: Comedy. Follows Andy, who needs to hook up with a hottie, pronto, because he hasn't had sex in... well, forever - and his luck isn't the only thing that's hard. His equally horny teenage roommates also need it superbad, and with the help of their nerdy pal, McAnalovin' and his fake I.D., they may tap more than just a keg.. Tags: duringcreditsstinger"} +{"id": "27588", "title": "Forget Me Not", "year": 2009, "duration_min": 103, "rating": 5.0, "genres": "Drama, Horror, Romance", "genres_pipe": "|Drama|Horror|Romance|", "keywords": "independent film", "tags_pipe": "|independent film|", "overview": "It's graduation weekend, and Sandy Channing, the popular class president of her small-town high school, should be enjoying the time of her life. But when her friends start disappearing, Sandy discovers they have unwittingly awakened the vengeful spirit of a girl they wronged long ago. Fighting for her sanity, Sandy must unlock a dark secret from her own past before it's too late.", "text_for_embedding": "Forget Me Not (2009). Genres: Drama, Horror, Romance. It's graduation weekend, and Sandy Channing, the popular class president of her small-town high school, should be enjoying the time of her life. But when her friends start disappearing, Sandy discovers they have unwittingly awakened the vengeful spirit of a girl they wronged long ago. Fighting for her sanity, Sandy must unlock a dark secret from her own past before it's too late.. Tags: independent film"} +{"id": "223", "title": "Rebecca", "year": 1940, "duration_min": 130, "rating": 7.7, "genres": "Drama, Mystery", "genres_pipe": "|Drama|Mystery|", "keywords": "monte carlo, based on novel, age difference, secret, obsession, bride, cornwall, love, suspense, rural setting, devotion, housekeeper, death, estate, costume party", "tags_pipe": "|monte carlo|based on novel|age difference|secret|obsession|bride|cornwall|love|suspense|rural setting|devotion|housekeeper|death|estate|costume party|", "overview": "A self-conscious bride is tormented by the memory of her husband's dead first wife.", "text_for_embedding": "Rebecca (1940). Genres: Drama, Mystery. A self-conscious bride is tormented by the memory of her husband's dead first wife.. Tags: monte carlo, based on novel, age difference, secret, obsession, bride, cornwall, love, suspense, rural setting, devotion, housekeeper, death, estate, costume party"} +{"id": "9725", "title": "Friday the 13th Part 2", "year": 1981, "duration_min": 87, "rating": 6.0, "genres": "Horror, Thriller", "genres_pipe": "|Horror|Thriller|", "keywords": "camping, summer camp, gore, slasher, b horror, brisbane queensland", "tags_pipe": "|camping|summer camp|gore|slasher|b horror|brisbane queensland|", "overview": "Five years after the horrible bloodbath at Camp Crystal Lake, it seems Jason Voorhees and his demented mother are in the past. Paul opens up a new camp close to the infamous site, ignoring warnings to stay away, and a sexually-charged group of counselors follow -- including child psychologist major Ginny. But Jason has been hiding out all this time, and now he's ready for revenge.", "text_for_embedding": "Friday the 13th Part 2 (1981). Genres: Horror, Thriller. Five years after the horrible bloodbath at Camp Crystal Lake, it seems Jason Voorhees and his demented mother are in the past. Paul opens up a new camp close to the infamous site, ignoring warnings to stay away, and a sexually-charged group of counselors follow -- including child psychologist major Ginny. But Jason has been hiding out all this time, and now he's ready for revenge.. Tags: camping, summer camp, gore, slasher, b horror, brisbane queensland"} +{"id": "28580", "title": "The Lost Weekend", "year": 1945, "duration_min": 101, "rating": 7.4, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "desperation, weekend, delirium, addiction, alcoholism, writer, alcoholic, bats, suicidal thoughts, low self esteem, film noir, paranoid", "tags_pipe": "|desperation|weekend|delirium|addiction|alcoholism|writer|alcoholic|bats|suicidal thoughts|low self esteem|film noir|paranoid|", "overview": "Don Birnam, a long-time alcoholic, has been sober for ten days and appears to be over the worst... but his craving has just become more insidious. Evading a country weekend planned by his brother and girlfriend, he begins a four-day bender that just might be his last - one way or another.", "text_for_embedding": "The Lost Weekend (1945). Genres: Drama. Don Birnam, a long-time alcoholic, has been sober for ten days and appears to be over the worst... but his craving has just become more insidious. Evading a country weekend planned by his brother and girlfriend, he begins a four-day bender that just might be his last - one way or another.. Tags: desperation, weekend, delirium, addiction, alcoholism, writer, alcoholic, bats, suicidal thoughts, low self esteem, film noir, paranoid"} +{"id": "23730", "title": "C.H.U.D.", "year": 1984, "duration_min": 88, "rating": 5.3, "genres": "Horror, Science Fiction", "genres_pipe": "|Horror|Science Fiction|", "keywords": "monster, mutant, shower, police, blood splatter, toxic, independent film, gore, decapitation, blood, zombie, new york city, cannibal, police detective, flamethrower", "tags_pipe": "|monster|mutant|shower|police|blood splatter|toxic|independent film|gore|decapitation|blood|zombie|new york city|cannibal|police detective|flamethrower|", "overview": "A rash of bizarre murders in New York City seems to point to a group of grotesquely deformed vagrants living in the sewers. A courageous policeman, a photo journalist and his girlfriend, and a nutty bum, who seems to know a lot about the creatures, band together to try and determine what the creatures are and how to stop them.", "text_for_embedding": "C.H.U.D. (1984). Genres: Horror, Science Fiction. A rash of bizarre murders in New York City seems to point to a group of grotesquely deformed vagrants living in the sewers. A courageous policeman, a photo journalist and his girlfriend, and a nutty bum, who seems to know a lot about the creatures, band together to try and determine what the creatures are and how to stop them.. Tags: monster, mutant, shower, police, blood splatter, toxic, independent film, gore, decapitation, blood, zombie, new york city, cannibal, police detective, flamethrower"} +{"id": "84197", "title": "Filly Brown", "year": 2013, "duration_min": 100, "rating": 5.9, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "", "tags_pipe": "", "overview": "“Majo” Tonorio, a.k.a. Filly Brown, is a raw, young Los Angeles hip-hop artist who spits from the heart. When a sleazy record producer offers her a crack at rap stardom, Majo faces some daunting choices. With an incarcerated mother, a record contract could be the ticket out for her struggling family. But taking the deal means selling out her talent and the true friends who helped her to the cusp of success.", "text_for_embedding": "Filly Brown (2013). Genres: Drama. “Majo” Tonorio, a.k.a. Filly Brown, is a raw, young Los Angeles hip-hop artist who spits from the heart. When a sleazy record producer offers her a crack at rap stardom, Majo faces some daunting choices. With an incarcerated mother, a record contract could be the ticket out for her struggling family. But taking the deal means selling out her talent and the true friends who helped her to the cusp of success.. Tags: "} +{"id": "46256", "title": "The Lion of Judah", "year": 2011, "duration_min": 87, "rating": 5.8, "genres": "Adventure, Animation, Comedy, Family", "genres_pipe": "|Adventure|Animation|Comedy|Family|", "keywords": "palm sunday, jerusalem judah, bethlehem judah", "tags_pipe": "|palm sunday|jerusalem judah|bethlehem judah|", "overview": "Upon learning that Judah has been trapped in the clutches of the townspeople and faces the possibility of being the sacrifice at the annual Festival, the stable mates leave their cozy barn and embark on an adventure to find and free their friend.", "text_for_embedding": "The Lion of Judah (2011). Genres: Adventure, Animation, Comedy, Family. Upon learning that Judah has been trapped in the clutches of the townspeople and faces the possibility of being the sacrifice at the annual Festival, the stable mates leave their cozy barn and embark on an adventure to find and free their friend.. Tags: palm sunday, jerusalem judah, bethlehem judah"} +{"id": "19997", "title": "Niagara", "year": 1953, "duration_min": 92, "rating": 6.7, "genres": "Crime, Drama, Thriller", "genres_pipe": "|Crime|Drama|Thriller|", "keywords": "clock tower, infidelity, self-defense, waterfall, delirium, murder, morgue, tour guide, fear, pursuit, hitchcockian, screaming, unconsciousness, film noir, adultress", "tags_pipe": "|clock tower|infidelity|self-defense|waterfall|delirium|murder|morgue|tour guide|fear|pursuit|hitchcockian|screaming|unconsciousness|film noir|adultress|", "overview": "Rose Loomis and her older, gloomier husband, George, are vacationing at a cabin in Niagara Falls, N.Y. The couple befriend Polly and Ray Cutler, who are honeymooning in the area. Polly begins to suspect that something is amiss between Rose and George, and her suspicions grow when she sees Rose in the arms of another man. While Ray initially thinks Polly is overreacting, things between George and Rose soon take a shockingly dark turn.", "text_for_embedding": "Niagara (1953). Genres: Crime, Drama, Thriller. Rose Loomis and her older, gloomier husband, George, are vacationing at a cabin in Niagara Falls, N.Y. The couple befriend Polly and Ray Cutler, who are honeymooning in the area. Polly begins to suspect that something is amiss between Rose and George, and her suspicions grow when she sees Rose in the arms of another man. While Ray initially thinks Polly is overreacting, things between George and Rose soon take a shockingly dark turn.. Tags: clock tower, infidelity, self-defense, waterfall, delirium, murder, morgue, tour guide, fear, pursuit, hitchcockian, screaming, unconsciousness, film noir, adultress"} +{"id": "43266", "title": "How Green Was My Valley", "year": 1941, "duration_min": 118, "rating": 6.8, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "wales, rural setting, coal mining", "tags_pipe": "|wales|rural setting|coal mining|", "overview": "At the turn of the century in a Welsh mining village, the Morgans (he stern, she gentle) raise coal-mining sons and hope their youngest will find a better life. Lots of atmosphere, very sentimental view of pre-union miners' lives. The film is based on the 1939 Richard Llewellyn novel of the same name.", "text_for_embedding": "How Green Was My Valley (1941). Genres: Drama. At the turn of the century in a Welsh mining village, the Morgans (he stern, she gentle) raise coal-mining sons and hope their youngest will find a better life. Lots of atmosphere, very sentimental view of pre-union miners' lives. The film is based on the 1939 Richard Llewellyn novel of the same name.. Tags: wales, rural setting, coal mining"} +{"id": "278316", "title": "Da Sweet Blood of Jesus", "year": 2014, "duration_min": 123, "rating": 4.1, "genres": "Thriller, Comedy, Romance", "genres_pipe": "|Thriller|Comedy|Romance|", "keywords": "", "tags_pipe": "", "overview": "A movie about human beings who are addicted to blood.", "text_for_embedding": "Da Sweet Blood of Jesus (2014). Genres: Thriller, Comedy, Romance. A movie about human beings who are addicted to blood.. Tags: "} +{"id": "1412", "title": "Sex, Lies, and Videotape", "year": 1989, "duration_min": 100, "rating": 6.7, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "sexual obsession, sex, sexuality, camcorder, spanner, orgasm, videoband, longing, safe sex, interview, voyeurism", "tags_pipe": "|sexual obsession|sex|sexuality|camcorder|spanner|orgasm|videoband|longing|safe sex|interview|voyeurism|", "overview": "A sexually repressed woman's husband is having an affair with her sister. The arrival of a visitor with a rather unusual fetish changes everything.", "text_for_embedding": "Sex, Lies, and Videotape (1989). Genres: Drama. A sexually repressed woman's husband is having an affair with her sister. The arrival of a visitor with a rather unusual fetish changes everything.. Tags: sexual obsession, sex, sexuality, camcorder, spanner, orgasm, videoband, longing, safe sex, interview, voyeurism"} +{"id": "176", "title": "Saw", "year": 2004, "duration_min": 103, "rating": 7.2, "genres": "Horror, Mystery, Crime", "genres_pipe": "|Horror|Mystery|Crime|", "keywords": "shotgun, based on short film, sadist, pistol, chained, bludgeoning, game of death", "tags_pipe": "|shotgun|based on short film|sadist|pistol|chained|bludgeoning|game of death|", "overview": "Obsessed with teaching his victims the value of life, a deranged, sadistic serial killer abducts the morally wayward. Once captured, they must face impossible choices in a horrific game of survival. The victims must fight to win their lives back, or die trying...", "text_for_embedding": "Saw (2004). Genres: Horror, Mystery, Crime. Obsessed with teaching his victims the value of life, a deranged, sadistic serial killer abducts the morally wayward. Once captured, they must face impossible choices in a horrific game of survival. The victims must fight to win their lives back, or die trying.... Tags: shotgun, based on short film, sadist, pistol, chained, bludgeoning, game of death"} +{"id": "39939", "title": "Super Troopers", "year": 2001, "duration_min": 100, "rating": 6.6, "genres": "Comedy, Crime, Mystery", "genres_pipe": "|Comedy|Crime|Mystery|", "keywords": "alcohol, radio, police chief, highway, cops, broken lizard, marijuana, drug humor, police corruption, aftercreditsstinger, duringcreditsstinger, shenanigans", "tags_pipe": "|alcohol|radio|police chief|highway|cops|broken lizard|marijuana|drug humor|police corruption|aftercreditsstinger|duringcreditsstinger|shenanigans|", "overview": "Five bored, occasionally high and always ineffective Vermont state troopers must prove their worth to the governor or lose their jobs. After stumbling on a drug ring, they plan to make a bust, but a rival police force is out to steal the glory.", "text_for_embedding": "Super Troopers (2001). Genres: Comedy, Crime, Mystery. Five bored, occasionally high and always ineffective Vermont state troopers must prove their worth to the governor or lose their jobs. After stumbling on a drug ring, they plan to make a bust, but a rival police force is out to steal the glory.. Tags: alcohol, radio, police chief, highway, cops, broken lizard, marijuana, drug humor, police corruption, aftercreditsstinger, duringcreditsstinger, shenanigans"} +{"id": "357834", "title": "The Algerian", "year": 2015, "duration_min": 99, "rating": 0.0, "genres": "", "genres_pipe": "", "keywords": "", "tags_pipe": "", "overview": "The Algerian is an international political thriller about the colliding worlds of the Middle East and America. It follows Ali (Ben Youcef) across the world from Algeria to New York, Las Vegas and Los Angeles as it reveals he is a sleeper cell part of an international plot.", "text_for_embedding": "The Algerian (2015). Genres: . The Algerian is an international political thriller about the colliding worlds of the Middle East and America. It follows Ali (Ben Youcef) across the world from Algeria to New York, Las Vegas and Los Angeles as it reveals he is a sleeper cell part of an international plot.. Tags: "} +{"id": "215924", "title": "The Amazing Catfish", "year": 2013, "duration_min": 87, "rating": 5.7, "genres": "Comedy, Drama", "genres_pipe": "|Comedy|Drama|", "keywords": "woman director", "tags_pipe": "|woman director|", "overview": "Young Claudia works in a supermarket where she promotes various types of products. One night, she ends up in the emergency room with severe appendicitis and meets Martha, a patient, laying in the bed next to hers.", "text_for_embedding": "The Amazing Catfish (2013). Genres: Comedy, Drama. Young Claudia works in a supermarket where she promotes various types of products. One night, she ends up in the emergency room with severe appendicitis and meets Martha, a patient, laying in the bed next to hers.. Tags: woman director"} +{"id": "480", "title": "Monsoon Wedding", "year": 2001, "duration_min": 114, "rating": 6.8, "genres": "Comedy, Drama, Romance", "genres_pipe": "|Comedy|Drama|Romance|", "keywords": "child abuse, adultery, arranged marriage, bollywood, wedding, woman director, wedding arranger, class system", "tags_pipe": "|child abuse|adultery|arranged marriage|bollywood|wedding|woman director|wedding arranger|class system|", "overview": "From an exciting Indian wedding comes a relationship from two different times not only showing the modern but also the traditional. Different characters and stories interact with each other in director Mira Nair film where she used an Indian-American production to illustrate these themes modern day Indians are very familiar with.", "text_for_embedding": "Monsoon Wedding (2001). Genres: Comedy, Drama, Romance. From an exciting Indian wedding comes a relationship from two different times not only showing the modern but also the traditional. Different characters and stories interact with each other in director Mira Nair film where she used an Indian-American production to illustrate these themes modern day Indians are very familiar with.. Tags: child abuse, adultery, arranged marriage, bollywood, wedding, woman director, wedding arranger, class system"} +{"id": "14295", "title": "You Can Count on Me", "year": 2000, "duration_min": 111, "rating": 6.8, "genres": "Drama, Romance", "genres_pipe": "|Drama|Romance|", "keywords": "independent film", "tags_pipe": "|independent film|", "overview": "A single mother's life is thrown into turmoil after her struggling, rarely-seen younger brother returns to town.", "text_for_embedding": "You Can Count on Me (2000). Genres: Drama, Romance. A single mother's life is thrown into turmoil after her struggling, rarely-seen younger brother returns to town.. Tags: independent film"} +{"id": "11219", "title": "The Trouble with Harry", "year": 1955, "duration_min": 99, "rating": 6.9, "genres": "Comedy, Mystery, Thriller", "genres_pipe": "|Comedy|Mystery|Thriller|", "keywords": "small town, chase, wife, leave, murder, suspense, female corpse", "tags_pipe": "|small town|chase|wife|leave|murder|suspense|female corpse|", "overview": "Trouble erupts in a small, quiet New England town when a man's body is found in the woods. The problem is that almost everyone in town thinks that they had something to do with his death.", "text_for_embedding": "The Trouble with Harry (1955). Genres: Comedy, Mystery, Thriller. Trouble erupts in a small, quiet New England town when a man's body is found in the woods. The problem is that almost everyone in town thinks that they had something to do with his death.. Tags: small town, chase, wife, leave, murder, suspense, female corpse"} +{"id": "20770", "title": "But I'm a Cheerleader", "year": 1999, "duration_min": 85, "rating": 6.5, "genres": "Comedy", "genres_pipe": "|Comedy|", "keywords": "coming out, cheerleader, homosexuality, independent film, lesbian, lesbian interest, woman director", "tags_pipe": "|coming out|cheerleader|homosexuality|independent film|lesbian|lesbian interest|woman director|", "overview": "Megan is an all-American girl. A cheerleader. She has a boyfriend. But Megan doesn't like kissing her boyfriend very much. And she's pretty touchy with her cheerleader friends. Her conservative parents worry that she must be a lesbian and send her off to \"sexual redirection\" school, where she must learn how to be straight.", "text_for_embedding": "But I'm a Cheerleader (1999). Genres: Comedy. Megan is an all-American girl. A cheerleader. She has a boyfriend. But Megan doesn't like kissing her boyfriend very much. And she's pretty touchy with her cheerleader friends. Her conservative parents worry that she must be a lesbian and send her off to \"sexual redirection\" school, where she must learn how to be straight.. Tags: coming out, cheerleader, homosexuality, independent film, lesbian, lesbian interest, woman director"} +{"id": "176124", "title": "Home Run", "year": 2013, "duration_min": 114, "rating": 6.3, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "baseball", "tags_pipe": "|baseball|", "overview": "A pro ball player with a substance abuse problem is forced into rehab in his hometown, finding new hope when he gets honest about his checkered past, and takes on coaching duties for a misfit Little League team", "text_for_embedding": "Home Run (2013). Genres: Drama. A pro ball player with a substance abuse problem is forced into rehab in his hometown, finding new hope when he gets honest about his checkered past, and takes on coaching duties for a misfit Little League team. Tags: baseball"} +{"id": "500", "title": "Reservoir Dogs", "year": 1992, "duration_min": 99, "rating": 8.0, "genres": "Crime, Thriller", "genres_pipe": "|Crime|Thriller|", "keywords": "traitor, jewelry, psychopath, thief, heist, betrayal, mystery, escape, gang, plan gone wrong, warehouse, ensemble cast, all male cast, told in flashback, heist gone wrong", "tags_pipe": "|traitor|jewelry|psychopath|thief|heist|betrayal|mystery|escape|gang|plan gone wrong|warehouse|ensemble cast|all male cast|told in flashback|heist gone wrong|", "overview": "A botched robbery indicates a police informant, and the pressure mounts in the aftermath at a warehouse. Crime begets violence as the survivors -- veteran Mr. White, newcomer Mr. Orange, psychopathic parolee Mr. Blonde, bickering weasel Mr. Pink and Nice Guy Eddie -- unravel.", "text_for_embedding": "Reservoir Dogs (1992). Genres: Crime, Thriller. A botched robbery indicates a police informant, and the pressure mounts in the aftermath at a warehouse. Crime begets violence as the survivors -- veteran Mr. White, newcomer Mr. Orange, psychopathic parolee Mr. Blonde, bickering weasel Mr. Pink and Nice Guy Eddie -- unravel.. Tags: traitor, jewelry, psychopath, thief, heist, betrayal, mystery, escape, gang, plan gone wrong, warehouse, ensemble cast, all male cast, told in flashback, heist gone wrong"} +{"id": "60400", "title": "The Blue Bird", "year": 1940, "duration_min": 88, "rating": 6.4, "genres": "Drama, Family, Fantasy", "genres_pipe": "|Drama|Family|Fantasy|", "keywords": "bird", "tags_pipe": "|bird|", "overview": "Set in mid-Europe sometime in the late 18th century where Mytyl (Shirley Temple), the bratty daughter of a woodcutter (Russell Hicks), finds a unique bird in the Royal Forest and selfishly refuses to give it to her sick friend. That night, she is visited in a dream by a fairy named Berylune (Jessie Ralph ) who sends her and her brother Tyltyl (Johnny Russell) to search for the Blue Bird of Happiness. To accompany them, the fairy magically transforms their dog Tylo (Eddie Collins), cat Tylette (Gale Sondergaard), and lantern (\"Light\") into human form. The children have a number of adventures. The dream journey makes Mytyl awake as a kinder and gentler girl who has learned to appreciate all the comforts and joys of her home and family.", "text_for_embedding": "The Blue Bird (1940). Genres: Drama, Family, Fantasy. Set in mid-Europe sometime in the late 18th century where Mytyl (Shirley Temple), the bratty daughter of a woodcutter (Russell Hicks), finds a unique bird in the Royal Forest and selfishly refuses to give it to her sick friend. That night, she is visited in a dream by a fairy named Berylune (Jessie Ralph ) who sends her and her brother Tyltyl (Johnny Russell) to search for the Blue Bird of Happiness. To accompany them, the fairy magically transforms their dog Tylo (Eddie Collins), cat Tylette (Gale Sondergaard), and lantern (\"Light\") into human form. The children have a number of adventures. The dream journey makes Mytyl awake as a kinder and gentler girl who has learned to appreciate all the comforts and joys of her home and family.. Tags: bird"} +{"id": "429", "title": "The Good, the Bad and the Ugly", "year": 1966, "duration_min": 161, "rating": 8.1, "genres": "Western", "genres_pipe": "|Western|", "keywords": "bounty hunter, refugee, gold, anti hero, gallows, hitman, army, outlaw, shootout, moral ambiguity, spaghetti western", "tags_pipe": "|bounty hunter|refugee|gold|anti hero|gallows|hitman|army|outlaw|shootout|moral ambiguity|spaghetti western|", "overview": "While the Civil War rages between the Union and the Confederacy, three men – a quiet loner, a ruthless hit man and a Mexican bandit – comb the American Southwest in search of a strongbox containing $200,000 in stolen gold.", "text_for_embedding": "The Good, the Bad and the Ugly (1966). Genres: Western. While the Civil War rages between the Union and the Confederacy, three men – a quiet loner, a ruthless hit man and a Mexican bandit – comb the American Southwest in search of a strongbox containing $200,000 in stolen gold.. Tags: bounty hunter, refugee, gold, anti hero, gallows, hitman, army, outlaw, shootout, moral ambiguity, spaghetti western"} +{"id": "310569", "title": "The Second Mother", "year": 2015, "duration_min": 110, "rating": 7.8, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "brazilian, brazil, pool, mother daughter relationship, architecture, class differences, housekeeper, woman director", "tags_pipe": "|brazilian|brazil|pool|mother daughter relationship|architecture|class differences|housekeeper|woman director|", "overview": "After leaving her daughter Jessica in a small town in Pernambuco to be raised by relatives, Val spends the next 13 years working as a nanny to Fabinho in São Paulo. She has financial stability but has to live with the guilt of having not raised Jessica herself. As Fabinho’s university entrance exams approach, Jessica reappears in her life and seems to want to give her mother a second chance. However Jessica has not been raised to be a servant and her very existence will turn Val’s routine on its head. With precision and humour, Anna Muylaert turns her eye on the subtle and powerful forces that keep rigid class structures in place and how the youth may just be the ones to shake it all up.", "text_for_embedding": "The Second Mother (2015). Genres: Drama. After leaving her daughter Jessica in a small town in Pernambuco to be raised by relatives, Val spends the next 13 years working as a nanny to Fabinho in São Paulo. She has financial stability but has to live with the guilt of having not raised Jessica herself. As Fabinho’s university entrance exams approach, Jessica reappears in her life and seems to want to give her mother a second chance. However Jessica has not been raised to be a servant and her very existence will turn Val’s routine on its head. With precision and humour, Anna Muylaert turns her eye on the subtle and powerful forces that keep rigid class structures in place and how the youth may just be the ones to shake it all up.. Tags: brazilian, brazil, pool, mother daughter relationship, architecture, class differences, housekeeper, woman director"} +{"id": "98369", "title": "Blue Like Jazz", "year": 2012, "duration_min": 106, "rating": 5.8, "genres": "Drama, Comedy", "genres_pipe": "|Drama|Comedy|", "keywords": "book store", "tags_pipe": "|book store|", "overview": "A young man must find his own way as his Southern Baptist roots don't seem to be acceptable at his new liberal arts college.", "text_for_embedding": "Blue Like Jazz (2012). Genres: Drama, Comedy. A young man must find his own way as his Southern Baptist roots don't seem to be acceptable at his new liberal arts college.. Tags: book store"} +{"id": "114065", "title": "Down & Out With The Dolls", "year": 2003, "duration_min": 88, "rating": 0.0, "genres": "Comedy, Music", "genres_pipe": "|Comedy|Music|", "keywords": "", "tags_pipe": "", "overview": "The raunchy, spunky tale of the rise and fall of an all-girl rock band from Portland, Oregon.", "text_for_embedding": "Down & Out With The Dolls (2003). Genres: Comedy, Music. The raunchy, spunky tale of the rise and fall of an all-girl rock band from Portland, Oregon.. Tags: "} +{"id": "89750", "title": "Pink Ribbons, Inc.", "year": 2011, "duration_min": 97, "rating": 6.8, "genres": "Documentary", "genres_pipe": "|Documentary|", "keywords": "marketing, breast cancer, corporatism, woman director", "tags_pipe": "|marketing|breast cancer|corporatism|woman director|", "overview": "Breast cancer has become the poster child of corporate cause-related marketing campaigns. Countless women and men walk, bike, climb and shop for the cure. Each year, millions of dollars are raised in the name of breast cancer, but where does this money go and what does it actually achieve? Pink Ribbons, Inc. is a feature documentary that shows how the devastating reality of breast cancer, which marketing experts have labeled a \"dream cause,\" becomes obfuscated by a shiny, pink story of success.", "text_for_embedding": "Pink Ribbons, Inc. (2011). Genres: Documentary. Breast cancer has become the poster child of corporate cause-related marketing campaigns. Countless women and men walk, bike, climb and shop for the cure. Each year, millions of dollars are raised in the name of breast cancer, but where does this money go and what does it actually achieve? Pink Ribbons, Inc. is a feature documentary that shows how the devastating reality of breast cancer, which marketing experts have labeled a \"dream cause,\" becomes obfuscated by a shiny, pink story of success.. Tags: marketing, breast cancer, corporatism, woman director"} +{"id": "49951", "title": "Certifiably Jonathan", "year": 2007, "duration_min": 85, "rating": 0.0, "genres": "Comedy", "genres_pipe": "|Comedy|", "keywords": "", "tags_pipe": "", "overview": "A famous comedian and artist wants to display his work at an art museum. Just when he thinks he's lost his touch, a series of famous comedians drop by to help him rekindle his artistic and comedic spark.", "text_for_embedding": "Certifiably Jonathan (2007). Genres: Comedy. A famous comedian and artist wants to display his work at an art museum. Just when he thinks he's lost his touch, a series of famous comedians drop by to help him rekindle his artistic and comedic spark.. Tags: "} +{"id": "86331", "title": "Desire", "year": 2011, "duration_min": 103, "rating": 4.1, "genres": "Drama, Romance", "genres_pipe": "|Drama|Romance|", "keywords": "france, female nudity, sex, sexuality, love, sexual fantasy, romance, unfaithfulness, unsimulated sex, prostitution, female homosexuality, couple, desire, lesbian sex, explicit sex", "tags_pipe": "|france|female nudity|sex|sexuality|love|sexual fantasy|romance|unfaithfulness|unsimulated sex|prostitution|female homosexuality|couple|desire|lesbian sex|explicit sex|", "overview": "In a social context deteriorated by a countrywide economic crisis, the life of several people will be turned upside down after they meet Cecile, a character who symbolizes desire.", "text_for_embedding": "Desire (2011). Genres: Drama, Romance. In a social context deteriorated by a countrywide economic crisis, the life of several people will be turned upside down after they meet Cecile, a character who symbolizes desire.. Tags: france, female nudity, sex, sexuality, love, sexual fantasy, romance, unfaithfulness, unsimulated sex, prostitution, female homosexuality, couple, desire, lesbian sex, explicit sex"} +{"id": "355629", "title": "The Blade of Don Juan", "year": 2013, "duration_min": 98, "rating": 0.0, "genres": "Drama, Comedy", "genres_pipe": "|Drama|Comedy|", "keywords": "peru", "tags_pipe": "|peru|", "overview": "The fate of an arm-wrestling match leads two rival brothers on an adventure through the streets of Lima, Peru. Armed with the spoils of victory, the boys must navigate many obstacles that stand in the way of their goal: a house party on the other side of the tracks and the hope of lost virginity.", "text_for_embedding": "The Blade of Don Juan (2013). Genres: Drama, Comedy. The fate of an arm-wrestling match leads two rival brothers on an adventure through the streets of Lima, Peru. Armed with the spoils of victory, the boys must navigate many obstacles that stand in the way of their goal: a house party on the other side of the tracks and the hope of lost virginity.. Tags: peru"} +{"id": "16433", "title": "Grand Theft Parsons", "year": 2003, "duration_min": 88, "rating": 6.0, "genres": "Crime, Comedy, Drama, Adventure", "genres_pipe": "|Crime|Comedy|Drama|Adventure|", "keywords": "1970s, rock star, chase, musician, independent film", "tags_pipe": "|1970s|rock star|chase|musician|independent film|", "overview": "There are times when it's right and proper to simply bury the dead. This is not one of those times... Gram Parsons was one of the most influential musicians of his time; a bitter, brilliant, genius who knew Elvis, tripped with the Stones and fatally overdosed on morphine and tequila in 1973. And from his dying came a story. A story from deep within folklore; a story of friendship, honour and adventure; a story so extraordinary that if it didn't really happen, no one would believe it. Two men, a hearse, a dead rock star, five gallons of petrol, and a promise. And the most extraordinary chase of modern times.", "text_for_embedding": "Grand Theft Parsons (2003). Genres: Crime, Comedy, Drama, Adventure. There are times when it's right and proper to simply bury the dead. This is not one of those times... Gram Parsons was one of the most influential musicians of his time; a bitter, brilliant, genius who knew Elvis, tripped with the Stones and fatally overdosed on morphine and tequila in 1973. And from his dying came a story. A story from deep within folklore; a story of friendship, honour and adventure; a story so extraordinary that if it didn't really happen, no one would believe it. Two men, a hearse, a dead rock star, five gallons of petrol, and a promise. And the most extraordinary chase of modern times.. Tags: 1970s, rock star, chase, musician, independent film"} +{"id": "15544", "title": "Extreme Movie", "year": 2008, "duration_min": 88, "rating": 3.9, "genres": "Comedy", "genres_pipe": "|Comedy|", "keywords": "", "tags_pipe": "", "overview": "A sketch comedy movie about the joys and embarrassments of teen sex. But mostly the embarrassments.", "text_for_embedding": "Extreme Movie (2008). Genres: Comedy. A sketch comedy movie about the joys and embarrassments of teen sex. But mostly the embarrassments.. Tags: "} +{"id": "43884", "title": "The Charge of the Light Brigade", "year": 1936, "duration_min": 115, "rating": 6.8, "genres": "Action, Adventure, Drama, War", "genres_pipe": "|Action|Adventure|Drama|War|", "keywords": "ambush, british army, fort, invasion, attack, heroism, massacre, india, cavalry, tragic death, epic battle, crimea, fiancée, brothers, brothers love same woman", "tags_pipe": "|ambush|british army|fort|invasion|attack|heroism|massacre|india|cavalry|tragic death|epic battle|crimea|fiancée|brothers|brothers love same woman|", "overview": "Major Vickers is an Officer in the 27th Lancers in India in 1856. Whilst the regiment is out on manoeuvres, the barracks are attacked by Surat Khan and his soldiers who massacre British women and children. This leaves an inextinguishable memory and Vickers promises to avenge the dead.", "text_for_embedding": "The Charge of the Light Brigade (1936). Genres: Action, Adventure, Drama, War. Major Vickers is an Officer in the 27th Lancers in India in 1856. Whilst the regiment is out on manoeuvres, the barracks are attacked by Surat Khan and his soldiers who massacre British women and children. This leaves an inextinguishable memory and Vickers promises to avenge the dead.. Tags: ambush, british army, fort, invasion, attack, heroism, massacre, india, cavalry, tragic death, epic battle, crimea, fiancée, brothers, brothers love same woman"} +{"id": "137955", "title": "Crowsnest", "year": 2012, "duration_min": 84, "rating": 4.8, "genres": "", "genres_pipe": "", "keywords": "", "tags_pipe": "", "overview": "In late summer of 2011, five young friends on a road trip went missing after being attacked by nomadic cannibals in a huge RV. Video was recorded by the victims & recovered by police as evidence in their still-unsolved murders.", "text_for_embedding": "Crowsnest (2012). Genres: . In late summer of 2011, five young friends on a road trip went missing after being attacked by nomadic cannibals in a huge RV. Video was recorded by the victims & recovered by police as evidence in their still-unsolved murders.. Tags: "} +{"id": "13064", "title": "Airborne", "year": 1993, "duration_min": 91, "rating": 6.1, "genres": "Action, Adventure, Comedy", "genres_pipe": "|Action|Adventure|Comedy|", "keywords": "sport, rollerblade", "tags_pipe": "|sport|rollerblade|", "overview": "Mitchell Goosen is sixteen/seventeen year old kid from California who loves to surf and roller blade. Yet, his parents, who are two zoologists were given a grant to work in Australia. The only problem was: Mitchell couldn't go with them. So, he gets sent to stay with his aunt, uncle, and cousin in Cincinnati, Ohio. When he arrives, he meets his cousin who is also his new roommate for the next six months: Wiley. Mitchell then goes to school and gets on the bad side the high school hockey players. Mitchell and Wiley end up enduring weeks of torture from the guys. Then, the big guys and Mitchell and Wiley have to learn to get along to try to beat the Central High School rivals in a competition down Devil's Backbone", "text_for_embedding": "Airborne (1993). Genres: Action, Adventure, Comedy. Mitchell Goosen is sixteen/seventeen year old kid from California who loves to surf and roller blade. Yet, his parents, who are two zoologists were given a grant to work in Australia. The only problem was: Mitchell couldn't go with them. So, he gets sent to stay with his aunt, uncle, and cousin in Cincinnati, Ohio. When he arrives, he meets his cousin who is also his new roommate for the next six months: Wiley. Mitchell then goes to school and gets on the bad side the high school hockey players. Mitchell and Wiley end up enduring weeks of torture from the guys. Then, the big guys and Mitchell and Wiley have to learn to get along to try to beat the Central High School rivals in a competition down Devil's Backbone. Tags: sport, rollerblade"} +{"id": "59917", "title": "Cotton Comes to Harlem", "year": 1970, "duration_min": 97, "rating": 6.7, "genres": "Action, Adventure", "genres_pipe": "|Action|Adventure|", "keywords": "blaxploitation", "tags_pipe": "|blaxploitation|", "overview": "The Charismatic black nationalist leader Rev Deke O'Malley is trying to sell the people of Harlem a dream. Invest $100 in his company and live in Africa. But cops Gravedigger and Coffin know all about Deke and his fraudulent schemes that take advantage of the poor and the ignorant and can't wait for a chance to expose him.", "text_for_embedding": "Cotton Comes to Harlem (1970). Genres: Action, Adventure. The Charismatic black nationalist leader Rev Deke O'Malley is trying to sell the people of Harlem a dream. Invest $100 in his company and live in Africa. But cops Gravedigger and Coffin know all about Deke and his fraudulent schemes that take advantage of the poor and the ignorant and can't wait for a chance to expose him.. Tags: blaxploitation"} +{"id": "157422", "title": "The Wicked Within", "year": 2015, "duration_min": 91, "rating": 4.2, "genres": "Horror", "genres_pipe": "|Horror|", "keywords": "", "tags_pipe": "", "overview": "After a year passes since the sudden death of a child, a family gathering takes place whilst unexplainable events occur. Tension over peculiar circumstances cracks the veneer of cordiality and dark secrets emerge.", "text_for_embedding": "The Wicked Within (2015). Genres: Horror. After a year passes since the sudden death of a child, a family gathering takes place whilst unexplainable events occur. Tension over peculiar circumstances cracks the veneer of cordiality and dark secrets emerge.. Tags: "} +{"id": "7553", "title": "Waiting...", "year": 2005, "duration_min": 94, "rating": 6.2, "genres": "Comedy", "genres_pipe": "|Comedy|", "keywords": "decision, waiter, hostess, trainee, gross out, employer employee relationship, speaking german, glass pipe, screaming", "tags_pipe": "|decision|waiter|hostess|trainee|gross out|employer employee relationship|speaking german|glass pipe|screaming|", "overview": "Employees at a Bennigan's-like restaurant (called, creatively enough, Shenanigan's), kill time before their real lives get started. But while they wait, they'll have to deal with picky customers who want their steak cooked to order and enthusiastic managers who want to build the perfect wait staff. Luckily, these employees have effective revenge tactics.", "text_for_embedding": "Waiting... (2005). Genres: Comedy. Employees at a Bennigan's-like restaurant (called, creatively enough, Shenanigan's), kill time before their real lives get started. But while they wait, they'll have to deal with picky customers who want their steak cooked to order and enthusiastic managers who want to build the perfect wait staff. Luckily, these employees have effective revenge tactics.. Tags: decision, waiter, hostess, trainee, gross out, employer employee relationship, speaking german, glass pipe, screaming"} +{"id": "12877", "title": "Dead Man's Shoes", "year": 2004, "duration_min": 90, "rating": 7.2, "genres": "Drama, Thriller, Crime", "genres_pipe": "|Drama|Thriller|Crime|", "keywords": "rage and hate, brother, revenge, punishment, home movie footage", "tags_pipe": "|rage and hate|brother|revenge|punishment|home movie footage|", "overview": "A soldier returns home to his small town and exacts a deadly revenge on the thugs who tormented his dimwitted brother while he was away.", "text_for_embedding": "Dead Man's Shoes (2004). Genres: Drama, Thriller, Crime. A soldier returns home to his small town and exacts a deadly revenge on the thugs who tormented his dimwitted brother while he was away.. Tags: rage and hate, brother, revenge, punishment, home movie footage"} +{"id": "39895", "title": "From a Whisper to a Scream", "year": 1987, "duration_min": 99, "rating": 6.8, "genres": "Comedy, Horror", "genres_pipe": "|Comedy|Horror|", "keywords": "civil war, narration, voodoo, necrophilia, anthology, librarian, freak show", "tags_pipe": "|civil war|narration|voodoo|necrophilia|anthology|librarian|freak show|", "overview": "The uncle of an executed murderess relates four stories of his hometown, Oldfield, to a reporter. In the first, an elderly man pursues a romance with a younger woman, even to the grave and beyond. In the second, a wounded man on the run from creditors is rescued by a backwoods hermit who holds the secret to eternal life. In the third, a glass-eating carny pays the ultimate price for looking for love on the outside. And in the fourth, a group of Civil War soldiers are held captive by a household of orphans with strange intentions for them.", "text_for_embedding": "From a Whisper to a Scream (1987). Genres: Comedy, Horror. The uncle of an executed murderess relates four stories of his hometown, Oldfield, to a reporter. In the first, an elderly man pursues a romance with a younger woman, even to the grave and beyond. In the second, a wounded man on the run from creditors is rescued by a backwoods hermit who holds the secret to eternal life. In the third, a glass-eating carny pays the ultimate price for looking for love on the outside. And in the fourth, a group of Civil War soldiers are held captive by a household of orphans with strange intentions for them.. Tags: civil war, narration, voodoo, necrophilia, anthology, librarian, freak show"} +{"id": "55616", "title": "Dracula: Pages from a Virgin's Diary", "year": 2002, "duration_min": 75, "rating": 6.9, "genres": "Horror", "genres_pipe": "|Horror|", "keywords": "dracula, independent film", "tags_pipe": "|dracula|independent film|", "overview": "A ballet rendition of Bram Stoker's gothic novel DRACULA, presented in a style reminiscent of the silent expressionistic cinema of the early 20th Century. This work employs the subtle and sometimes bold use of color to emphasize its themes, but mainly is presented in black-and-white, or tinted in monochrome. No spoken dialogue can be heard, and the story of a sinister but intriguing immigrant who preys upon young English women unfolds through dance, pantomime and subtitles.", "text_for_embedding": "Dracula: Pages from a Virgin's Diary (2002). Genres: Horror. A ballet rendition of Bram Stoker's gothic novel DRACULA, presented in a style reminiscent of the silent expressionistic cinema of the early 20th Century. This work employs the subtle and sometimes bold use of color to emphasize its themes, but mainly is presented in black-and-white, or tinted in monochrome. No spoken dialogue can be heard, and the story of a sinister but intriguing immigrant who preys upon young English women unfolds through dance, pantomime and subtitles.. Tags: dracula, independent film"} +{"id": "29697", "title": "Faith Like Potatoes", "year": 2006, "duration_min": 97, "rating": 6.0, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "christian film, food", "tags_pipe": "|christian film|food|", "overview": "Frank Rautenbach leads a strong cast as Angus Buchan, a Zambian farmer of Scottish heritage, who leaves his farm in the midst of political unrest and racially charged land reclaims and travels south with his family to start a better life in KwaZulu Natal,South Africa.", "text_for_embedding": "Faith Like Potatoes (2006). Genres: Drama. Frank Rautenbach leads a strong cast as Angus Buchan, a Zambian farmer of Scottish heritage, who leaves his farm in the midst of political unrest and racially charged land reclaims and travels south with his family to start a better life in KwaZulu Natal,South Africa.. Tags: christian film, food"} +{"id": "50037", "title": "Beyond the Black Rainbow", "year": 2010, "duration_min": 110, "rating": 5.7, "genres": "Fantasy, Science Fiction, Horror", "genres_pipe": "|Fantasy|Science Fiction|Horror|", "keywords": "commune, suspense, mad doctor, captive, drugged, aftercreditsstinger", "tags_pipe": "|commune|suspense|mad doctor|captive|drugged|aftercreditsstinger|", "overview": "Deep within the mysterious Arboria Institute, a disturbed and beautiful girl is held captive by a doctor in search of inner peace. Her mind controlled by a sinister technology. Silently, she waits for her next session with deranged therapist Dr. Barry Nyle. If she hopes to escape, she must journey through the darkest reaches of The Institute, but Nyle wonʼt easily part with his most gifted and dangerous creation.", "text_for_embedding": "Beyond the Black Rainbow (2010). Genres: Fantasy, Science Fiction, Horror. Deep within the mysterious Arboria Institute, a disturbed and beautiful girl is held captive by a doctor in search of inner peace. Her mind controlled by a sinister technology. Silently, she waits for her next session with deranged therapist Dr. Barry Nyle. If she hopes to escape, she must journey through the darkest reaches of The Institute, but Nyle wonʼt easily part with his most gifted and dangerous creation.. Tags: commune, suspense, mad doctor, captive, drugged, aftercreditsstinger"} +{"id": "94329", "title": "The Raid", "year": 2011, "duration_min": 101, "rating": 7.3, "genres": "Action, Thriller, Crime", "genres_pipe": "|Action|Thriller|Crime|", "keywords": "crime boss, tenement, high rise, monitor, tower block, jakarta indonesia, swat, swat team", "tags_pipe": "|crime boss|tenement|high rise|monitor|tower block|jakarta indonesia|swat|swat team|", "overview": "Deep in the heart of Jakarta's slums lies an impenetrable safe house for the world's most dangerous killers and gangsters. Until now, the run-down apartment block has been considered untouchable to even the bravest of police. Cloaked under the cover of pre-dawn darkness and silence, an elite swat team is tasked with raiding the safe house in order to take down the notorious drug lord that runs it. But when a chance encounter with a spotter blows their cover and news of their assault reaches the drug lord, the building's lights are cut and all the exits blocked. Stranded on the sixth floor with no way out, the unit must fight their way through the city's worst to survive their mission. Starring Indonesian martial arts sensation Iko Uwais.", "text_for_embedding": "The Raid (2011). Genres: Action, Thriller, Crime. Deep in the heart of Jakarta's slums lies an impenetrable safe house for the world's most dangerous killers and gangsters. Until now, the run-down apartment block has been considered untouchable to even the bravest of police. Cloaked under the cover of pre-dawn darkness and silence, an elite swat team is tasked with raiding the safe house in order to take down the notorious drug lord that runs it. But when a chance encounter with a spotter blows their cover and news of their assault reaches the drug lord, the building's lights are cut and all the exits blocked. Stranded on the sixth floor with no way out, the unit must fight their way through the city's worst to survive their mission. Starring Indonesian martial arts sensation Iko Uwais.. Tags: crime boss, tenement, high rise, monitor, tower block, jakarta indonesia, swat, swat team"} +{"id": "53502", "title": "The Dead Undead", "year": 2010, "duration_min": 90, "rating": 3.1, "genres": "Horror, Science Fiction, Action", "genres_pipe": "|Horror|Science Fiction|Action|", "keywords": "vampire, zombie, vanity project, mad cow disease", "tags_pipe": "|vampire|zombie|vanity project|mad cow disease|", "overview": "Good Vampires battle Zombie Vampires while trying to hide their own identity and prevent the infection from spreading.", "text_for_embedding": "The Dead Undead (2010). Genres: Horror, Science Fiction, Action. Good Vampires battle Zombie Vampires while trying to hide their own identity and prevent the infection from spreading.. Tags: vampire, zombie, vanity project, mad cow disease"} +{"id": "289", "title": "Casablanca", "year": 1942, "duration_min": 102, "rating": 7.9, "genres": "Drama, Romance", "genres_pipe": "|Drama|Romance|", "keywords": "love triangle, corruption, spy, resistance, casablanca, emigration, visa, patriotism, nationalism, concentration camp, nazis, war, melodrama, film noir", "tags_pipe": "|love triangle|corruption|spy|resistance|casablanca|emigration|visa|patriotism|nationalism|concentration camp|nazis|war|melodrama|film noir|", "overview": "In Casablanca, Morocco in December 1941, a cynical American expatriate meets a former lover, with unforeseen complications.", "text_for_embedding": "Casablanca (1942). Genres: Drama, Romance. In Casablanca, Morocco in December 1941, a cynical American expatriate meets a former lover, with unforeseen complications.. Tags: love triangle, corruption, spy, resistance, casablanca, emigration, visa, patriotism, nationalism, concentration camp, nazis, war, melodrama, film noir"} +{"id": "27374", "title": "Lake Mungo", "year": 2008, "duration_min": 84, "rating": 6.1, "genres": "Horror, Thriller", "genres_pipe": "|Horror|Thriller|", "keywords": "supernatural, drama", "tags_pipe": "|supernatural|drama|", "overview": "16 year old Alice Palmer drowns in a local dam. When her body is recovered and, her grieving family buries her. The family experiences a series of strange, inexplicable events centered in and around their home. Unsettled, the Palmers seek the help of psychic and parapsychologist, Ray Kemeny. Ray discovers that Alice led a secret, double life. At Lake Mungo, Alice's secret past emerges.", "text_for_embedding": "Lake Mungo (2008). Genres: Horror, Thriller. 16 year old Alice Palmer drowns in a local dam. When her body is recovered and, her grieving family buries her. The family experiences a series of strange, inexplicable events centered in and around their home. Unsettled, the Palmers seek the help of psychic and parapsychologist, Ray Kemeny. Ray discovers that Alice led a secret, double life. At Lake Mungo, Alice's secret past emerges.. Tags: supernatural, drama"} +{"id": "26815", "title": "Rocket Singh: Salesman of the Year", "year": 2009, "duration_min": 156, "rating": 7.0, "genres": "Drama, Comedy, Romance", "genres_pipe": "|Drama|Comedy|Romance|", "keywords": "ambition, bollywood, business, india, struggling career", "tags_pipe": "|ambition|bollywood|business|india|struggling career|", "overview": "Rocket Singh - Salesman of the Year is the sometimes thoughtless, sometimes thoughtful story of a fresh graduate trying to find a balance between the maddening demands of the 'professional' way, and the way of his heart - and stumbling upon a crazy way which turned his world upside down, and his career right side up. Welcome to the world of sales boss!", "text_for_embedding": "Rocket Singh: Salesman of the Year (2009). Genres: Drama, Comedy, Romance. Rocket Singh - Salesman of the Year is the sometimes thoughtless, sometimes thoughtful story of a fresh graduate trying to find a balance between the maddening demands of the 'professional' way, and the way of his heart - and stumbling upon a crazy way which turned his world upside down, and his career right side up. Welcome to the world of sales boss!. Tags: ambition, bollywood, business, india, struggling career"} +{"id": "811", "title": "Silent Running", "year": 1972, "duration_min": 89, "rating": 6.3, "genres": "Adventure, Drama, Science Fiction", "genres_pipe": "|Adventure|Drama|Science Fiction|", "keywords": "space marine, sunlight, plants, space travel, saturn, biotope, greenhouse, dystopia, space, food, robot, space station", "tags_pipe": "|space marine|sunlight|plants|space travel|saturn|biotope|greenhouse|dystopia|space|food|robot|space station|", "overview": "In a future Earth barren of all flora and fauna, the planet's ecosystems exist only in large pods attached to spacecraft. When word comes in that the pods are to be jettisoned into space and destroyed so that the spacecraft can be reused for commercial purposes, most of the crew of the Valley Forge rejoice at the prospect of going home. Not so for botanist Freeman Lowell who loves the forest and its creatures, so decides to take matters into his own hands to protect what he loves.", "text_for_embedding": "Silent Running (1972). Genres: Adventure, Drama, Science Fiction. In a future Earth barren of all flora and fauna, the planet's ecosystems exist only in large pods attached to spacecraft. When word comes in that the pods are to be jettisoned into space and destroyed so that the spacecraft can be reused for commercial purposes, most of the crew of the Valley Forge rejoice at the prospect of going home. Not so for botanist Freeman Lowell who loves the forest and its creatures, so decides to take matters into his own hands to protect what he loves.. Tags: space marine, sunlight, plants, space travel, saturn, biotope, greenhouse, dystopia, space, food, robot, space station"} +{"id": "1366", "title": "Rocky", "year": 1976, "duration_min": 119, "rating": 7.5, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "underdog, philadelphia, transporter, italo-american, fight, love of one's life, publicity, boxer, independence, boxing match, training, lovers, surprise, world champion, amateur", "tags_pipe": "|underdog|philadelphia|transporter|italo-american|fight|love of one's life|publicity|boxer|independence|boxing match|training|lovers|surprise|world champion|amateur|", "overview": "When world heavyweight boxing champion, Apollo Creed wants to give an unknown fighter a shot at the title as a publicity stunt, his handlers choose palooka Rocky Balboa, an uneducated collector for a Philadelphia loan shark. Rocky teams up with trainer Mickey Goldmill to make the most of this once in a lifetime break.", "text_for_embedding": "Rocky (1976). Genres: Drama. When world heavyweight boxing champion, Apollo Creed wants to give an unknown fighter a shot at the title as a publicity stunt, his handlers choose palooka Rocky Balboa, an uneducated collector for a Philadelphia loan shark. Rocky teams up with trainer Mickey Goldmill to make the most of this once in a lifetime break.. Tags: underdog, philadelphia, transporter, italo-american, fight, love of one's life, publicity, boxer, independence, boxing match, training, lovers, surprise, world champion, amateur"} +{"id": "244776", "title": "The Sleepwalker", "year": 2014, "duration_min": 92, "rating": 4.1, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "woman director, young couple, secluded, family estate", "tags_pipe": "|woman director|young couple|secluded|family estate|", "overview": "A young couple, Kaia and Andrew, are renovating Kaia's secluded family estate. Their lives are violently interrupted when unexpected guests arrive. The Sleepwalker chronicles the unraveling of the lives of four disparate characters as it transcends genre conventions and narrative contrivance to reveal something much more disturbing.", "text_for_embedding": "The Sleepwalker (2014). Genres: Drama. A young couple, Kaia and Andrew, are renovating Kaia's secluded family estate. Their lives are violently interrupted when unexpected guests arrive. The Sleepwalker chronicles the unraveling of the lives of four disparate characters as it transcends genre conventions and narrative contrivance to reveal something much more disturbing.. Tags: woman director, young couple, secluded, family estate"} +{"id": "5769", "title": "Tom Jones", "year": 1963, "duration_min": 128, "rating": 6.1, "genres": "Adventure, Comedy, History, Romance", "genres_pipe": "|Adventure|Comedy|History|Romance|", "keywords": "from rags to riches, tutor, squire", "tags_pipe": "|from rags to riches|tutor|squire|", "overview": "Tom loves Sophie and Sophie loves Tom. But Tom and Sophie are of differering classes. Can they find a way through the mayhem to be true to love?", "text_for_embedding": "Tom Jones (1963). Genres: Adventure, Comedy, History, Romance. Tom loves Sophie and Sophie loves Tom. But Tom and Sophie are of differering classes. Can they find a way through the mayhem to be true to love?. Tags: from rags to riches, tutor, squire"} +{"id": "277685", "title": "Unfriended", "year": 2015, "duration_min": 82, "rating": 5.5, "genres": "Horror, Thriller", "genres_pipe": "|Horror|Thriller|", "keywords": "computer, bullying, revenge, internet, teenager, violence, internet chat, humiliation, death, extramarital affair, vengeful ghost, computer screen, ghost, one night, found footage", "tags_pipe": "|computer|bullying|revenge|internet|teenager|violence|internet chat|humiliation|death|extramarital affair|vengeful ghost|computer screen|ghost|one night|found footage|", "overview": "While video chatting one night, six high school friends receive a Skype message from a classmate who killed herself exactly one year ago. A first they think it's a prank, but when the girl starts revealing the friends' darkest secrets, they realize they are dealing with something out of this world, something that wants them dead. Told entirely from a young girl's computer desktop, Unfriended redefines 'found footage' for a new generation of teens.", "text_for_embedding": "Unfriended (2015). Genres: Horror, Thriller. While video chatting one night, six high school friends receive a Skype message from a classmate who killed herself exactly one year ago. A first they think it's a prank, but when the girl starts revealing the friends' darkest secrets, they realize they are dealing with something out of this world, something that wants them dead. Told entirely from a young girl's computer desktop, Unfriended redefines 'found footage' for a new generation of teens.. Tags: computer, bullying, revenge, internet, teenager, violence, internet chat, humiliation, death, extramarital affair, vengeful ghost, computer screen, ghost, one night, found footage"} +{"id": "103", "title": "Taxi Driver", "year": 1976, "duration_min": 114, "rating": 8.0, "genres": "Crime, Drama", "genres_pipe": "|Crime|Drama|", "keywords": "vietnam veteran, taxi, obsession, drug dealer, night shift, vigilante, alienation, misanthrope, shot to death, illegal prostitution, loner", "tags_pipe": "|vietnam veteran|taxi|obsession|drug dealer|night shift|vigilante|alienation|misanthrope|shot to death|illegal prostitution|loner|", "overview": "A mentally unstable Vietnam War veteran works as a night-time taxi driver in New York City where the perceived decadence and sleaze feeds his urge for violent action, attempting to save a preadolescent prostitute in the process.", "text_for_embedding": "Taxi Driver (1976). Genres: Crime, Drama. A mentally unstable Vietnam War veteran works as a night-time taxi driver in New York City where the perceived decadence and sleaze feeds his urge for violent action, attempting to save a preadolescent prostitute in the process.. Tags: vietnam veteran, taxi, obsession, drug dealer, night shift, vigilante, alienation, misanthrope, shot to death, illegal prostitution, loner"} +{"id": "11298", "title": "The Howling", "year": 1981, "duration_min": 91, "rating": 6.4, "genres": "Drama, Horror", "genres_pipe": "|Drama|Horror|", "keywords": "insane asylum, werewolf, newswoman", "tags_pipe": "|insane asylum|werewolf|newswoman|", "overview": "After a bizarre and near fatal encounter with a serial killer, a newswoman is sent to a rehabilitation center whose inhabitants may not be what they seem.", "text_for_embedding": "The Howling (1981). Genres: Drama, Horror. After a bizarre and near fatal encounter with a serial killer, a newswoman is sent to a rehabilitation center whose inhabitants may not be what they seem.. Tags: insane asylum, werewolf, newswoman"} +{"id": "646", "title": "Dr. No", "year": 1962, "duration_min": 110, "rating": 6.9, "genres": "Adventure, Action, Thriller", "genres_pipe": "|Adventure|Action|Thriller|", "keywords": "london england, england, assassination, spy, casino, exotic island, card game, space marine, intelligence, jamaica, secret base, secret mission, baccarat, secret organization, secret intelligence service", "tags_pipe": "|london england|england|assassination|spy|casino|exotic island|card game|space marine|intelligence|jamaica|secret base|secret mission|baccarat|secret organization|secret intelligence service|", "overview": "In the film that launched the James Bond saga, Agent 007 battles mysterious Dr. No, a scientific genius bent on destroying the U.S. space program. As the countdown to disaster begins, Bond must go to Jamaica, where he encounters beautiful Honey Ryder, to confront a megalomaniacal villain in his massive island headquarters.", "text_for_embedding": "Dr. No (1962). Genres: Adventure, Action, Thriller. In the film that launched the James Bond saga, Agent 007 battles mysterious Dr. No, a scientific genius bent on destroying the U.S. space program. As the countdown to disaster begins, Bond must go to Jamaica, where he encounters beautiful Honey Ryder, to confront a megalomaniacal villain in his massive island headquarters.. Tags: london england, england, assassination, spy, casino, exotic island, card game, space marine, intelligence, jamaica, secret base, secret mission, baccarat, secret organization, secret intelligence service"} +{"id": "93856", "title": "Chernobyl Diaries", "year": 2012, "duration_min": 88, "rating": 4.9, "genres": "Horror, Thriller", "genres_pipe": "|Horror|Thriller|", "keywords": "radiation, ukraine, nuclear radiation, tourist, nuclear power plant, stranded, deserted town, pripyat", "tags_pipe": "|radiation|ukraine|nuclear radiation|tourist|nuclear power plant|stranded|deserted town|pripyat|", "overview": "A group of six tourists looking to go off the beaten path, hire an 'extreme tour guide'. Ignoring warnings, he takes them into the city of Pripyat, the former home to the workers of the Chernobyl nuclear reactor, but a deserted town since the disaster more than 25 years earlier. After a brief exploration of the abandoned city, the group members find themselves stranded, only to discover that they are not alone.", "text_for_embedding": "Chernobyl Diaries (2012). Genres: Horror, Thriller. A group of six tourists looking to go off the beaten path, hire an 'extreme tour guide'. Ignoring warnings, he takes them into the city of Pripyat, the former home to the workers of the Chernobyl nuclear reactor, but a deserted town since the disaster more than 25 years earlier. After a brief exploration of the abandoned city, the group members find themselves stranded, only to discover that they are not alone.. Tags: radiation, ukraine, nuclear radiation, tourist, nuclear power plant, stranded, deserted town, pripyat"} +{"id": "9003", "title": "Hellraiser", "year": 1987, "duration_min": 94, "rating": 6.9, "genres": "Horror", "genres_pipe": "|Horror|", "keywords": "underworld, seduction, supernatural, pinhead, revenge, undead, demon, puzzle box, attic, cenobites, body horror", "tags_pipe": "|underworld|seduction|supernatural|pinhead|revenge|undead|demon|puzzle box|attic|cenobites|body horror|", "overview": "Larry and his wife, Julia move into an old house and discover a hideous creature - the man's half-brother, who is also the woman's former lover - hiding upstairs. Having lost his earthly body to a trio of S&M demons, the Cenobites, Frank, is brought back into existence by a drop of blood on the floor. He soon forces his former mistress to bring him his necessary human sacrifices to complete his body... but the Cenobites won't be happy about this.", "text_for_embedding": "Hellraiser (1987). Genres: Horror. Larry and his wife, Julia move into an old house and discover a hideous creature - the man's half-brother, who is also the woman's former lover - hiding upstairs. Having lost his earthly body to a trio of S&M demons, the Cenobites, Frank, is brought back into existence by a drop of blood on the floor. He soon forces his former mistress to bring him his necessary human sacrifices to complete his body... but the Cenobites won't be happy about this.. Tags: underworld, seduction, supernatural, pinhead, revenge, undead, demon, puzzle box, attic, cenobites, body horror"} +{"id": "347126", "title": "God's Not Dead 2", "year": 2016, "duration_min": 121, "rating": 5.7, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "christian", "tags_pipe": "|christian|", "overview": "When a high school teacher is asked a question in class about Jesus, her reasoned response lands her in deep trouble and could expel God from the public square once and for all.", "text_for_embedding": "God's Not Dead 2 (2016). Genres: Drama. When a high school teacher is asked a question in class about Jesus, her reasoned response lands her in deep trouble and could expel God from the public square once and for all.. Tags: christian"} +{"id": "10092", "title": "Cry_Wolf", "year": 2005, "duration_min": 90, "rating": 5.6, "genres": "Horror, Thriller", "genres_pipe": "|Horror|Thriller|", "keywords": "murder, serial killer, student, rumor", "tags_pipe": "|murder|serial killer|student|rumor|", "overview": "Eight unsuspecting high school seniors at a posh boarding school, who delight themselves on playing games of lies, come face-to-face with terror and learn that nobody believes a liar - even when they're telling the truth.", "text_for_embedding": "Cry_Wolf (2005). Genres: Horror, Thriller. Eight unsuspecting high school seniors at a posh boarding school, who delight themselves on playing games of lies, come face-to-face with terror and learn that nobody believes a liar - even when they're telling the truth.. Tags: murder, serial killer, student, rumor"} +{"id": "10643", "title": "Godzilla 2000", "year": 1999, "duration_min": 107, "rating": 5.9, "genres": "Adventure, Horror, Action, Science Fiction", "genres_pipe": "|Adventure|Horror|Action|Science Fiction|", "keywords": "japan, monster, flying saucer, godzilla, city, kaiju", "tags_pipe": "|japan|monster|flying saucer|godzilla|city|kaiju|", "overview": "Godzilla saves Tokyo from a flying saucer that transforms into the beast Orga.", "text_for_embedding": "Godzilla 2000 (1999). Genres: Adventure, Horror, Action, Science Fiction. Godzilla saves Tokyo from a flying saucer that transforms into the beast Orga.. Tags: japan, monster, flying saucer, godzilla, city, kaiju"} +{"id": "46705", "title": "Blue Valentine", "year": 2010, "duration_min": 112, "rating": 6.9, "genres": "Drama, Romance", "genres_pipe": "|Drama|Romance|", "keywords": "dancing, nurse, depression, classroom, bridge, marriage, truck, love, dysfunctional family, children", "tags_pipe": "|dancing|nurse|depression|classroom|bridge|marriage|truck|love|dysfunctional family|children|", "overview": "Dean and Cindy live a quiet life in a modest neighborhood. They appear to have the world at their feet at the outset of the relationship. However, his lack of ambition and her retreat into self-absorption cause potentially irreversible cracks in their marriage.", "text_for_embedding": "Blue Valentine (2010). Genres: Drama, Romance. Dean and Cindy live a quiet life in a modest neighborhood. They appear to have the world at their feet at the outset of the relationship. However, his lack of ambition and her retreat into self-absorption cause potentially irreversible cracks in their marriage.. Tags: dancing, nurse, depression, classroom, bridge, marriage, truck, love, dysfunctional family, children"} +{"id": "546", "title": "Transamerica", "year": 2005, "duration_min": 103, "rating": 6.9, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "individual, gay, new york, usa, missionary, father son relationship, sexual identity, transsexuality, runaway, sexual abuse, waitress, parents kids relationship, drug addiction, cocaine, women's sexual identity", "tags_pipe": "|individual|gay|new york|usa|missionary|father son relationship|sexual identity|transsexuality|runaway|sexual abuse|waitress|parents kids relationship|drug addiction|cocaine|women's sexual identity|", "overview": "Bree is about to get a sex change operation that will finally allow her to actually be what she’s already been in her mind for a long time: a transitioned woman. Yet before this happens she suddenly runs into her son who ends up coming for the trip across the United States.", "text_for_embedding": "Transamerica (2005). Genres: Drama. Bree is about to get a sex change operation that will finally allow her to actually be what she’s already been in her mind for a long time: a transitioned woman. Yet before this happens she suddenly runs into her son who ends up coming for the trip across the United States.. Tags: individual, gay, new york, usa, missionary, father son relationship, sexual identity, transsexuality, runaway, sexual abuse, waitress, parents kids relationship, drug addiction, cocaine, women's sexual identity"} +{"id": "76487", "title": "The Devil Inside", "year": 2012, "duration_min": 83, "rating": 4.6, "genres": "Thriller, Horror", "genres_pipe": "|Thriller|Horror|", "keywords": "rome, exorcism, death, demonic possession, found footage", "tags_pipe": "|rome|exorcism|death|demonic possession|found footage|", "overview": "In Italy, a woman becomes involved in a series of unauthorized exorcisms during her mission to discover what happened to her mother, who allegedly murdered three people during her own exorcism.", "text_for_embedding": "The Devil Inside (2012). Genres: Thriller, Horror. In Italy, a woman becomes involved in a series of unauthorized exorcisms during her mission to discover what happened to her mother, who allegedly murdered three people during her own exorcism.. Tags: rome, exorcism, death, demonic possession, found footage"} +{"id": "5722", "title": "Beyond the Valley of the Dolls", "year": 1970, "duration_min": 109, "rating": 6.6, "genres": "Comedy, Drama, Thriller", "genres_pipe": "|Comedy|Drama|Thriller|", "keywords": "pop, pop star, musical", "tags_pipe": "|pop|pop star|musical|", "overview": "A hip and happenin' all girl rock group head to LA to claim lead-singer Kelly's inheritance and make it (and make it) in LA. Soon the girls fall into a morass of drugs and deceit as their recording success soars. It takes several tragedies to make them stop and think... but is it too late?", "text_for_embedding": "Beyond the Valley of the Dolls (1970). Genres: Comedy, Drama, Thriller. A hip and happenin' all girl rock group head to LA to claim lead-singer Kelly's inheritance and make it (and make it) in LA. Soon the girls fall into a morass of drugs and deceit as their recording success soars. It takes several tragedies to make them stop and think... but is it too late?. Tags: pop, pop star, musical"} +{"id": "39833", "title": "Love Me Tender", "year": 1956, "duration_min": 89, "rating": 5.5, "genres": "Drama, Action, Western, Music, Romance", "genres_pipe": "|Drama|Action|Western|Music|Romance|", "keywords": "civil war", "tags_pipe": "|civil war|", "overview": "Elvis Prestley's first film is a Civil War drama.", "text_for_embedding": "Love Me Tender (1956). Genres: Drama, Action, Western, Music, Romance. Elvis Prestley's first film is a Civil War drama.. Tags: civil war"} +{"id": "1781", "title": "An Inconvenient Truth", "year": 2006, "duration_min": 100, "rating": 6.7, "genres": "Documentary", "genres_pipe": "|Documentary|", "keywords": "climate change, greenhouse effect, climate, earth, global warming, politics, truth, crisis, nature, environment, science, audience", "tags_pipe": "|climate change|greenhouse effect|climate|earth|global warming|politics|truth|crisis|nature|environment|science|audience|", "overview": "A documentary on Al Gore's campaign to make the issue of global warming a recognized problem worldwide.", "text_for_embedding": "An Inconvenient Truth (2006). Genres: Documentary. A documentary on Al Gore's campaign to make the issue of global warming a recognized problem worldwide.. Tags: climate change, greenhouse effect, climate, earth, global warming, politics, truth, crisis, nature, environment, science, audience"} +{"id": "18712", "title": "Sands of Iwo Jima", "year": 1949, "duration_min": 100, "rating": 6.2, "genres": "Action, Drama, History, War", "genres_pipe": "|Action|Drama|History|War|", "keywords": "sergeant, iwo jima", "tags_pipe": "|sergeant|iwo jima|", "overview": "The relationship between Sergeant Stryker and a group of rebellious recruits is made difficult by the Sergeant's tough training tactics. At Tarawa, the leathernecks have a chance to see Stryker in action, and begin to appreciate him.", "text_for_embedding": "Sands of Iwo Jima (1949). Genres: Action, Drama, History, War. The relationship between Sergeant Stryker and a group of rebellious recruits is made difficult by the Sergeant's tough training tactics. At Tarawa, the leathernecks have a chance to see Stryker in action, and begin to appreciate him.. Tags: sergeant, iwo jima"} +{"id": "7944", "title": "Shine a Light", "year": 2008, "duration_min": 122, "rating": 7.2, "genres": "Documentary, Music", "genres_pipe": "|Documentary|Music|", "keywords": "new york, film director, legend, song, public, rolling stones, rock, guest, music video, music, concert, theatre milieu, performance", "tags_pipe": "|new york|film director|legend|song|public|rolling stones|rock|guest|music video|music|concert|theatre milieu|performance|", "overview": "Martin Scorsese and the Rolling Stones unite in \"Shine A Light,\" a look at The Rolling Stones.\" Scorsese filmed the Stones over a two-day period at the intimate Beacon Theater in New York City in fall 2006. Cinematographers capture the raw energy of the legendary band.", "text_for_embedding": "Shine a Light (2008). Genres: Documentary, Music. Martin Scorsese and the Rolling Stones unite in \"Shine A Light,\" a look at The Rolling Stones.\" Scorsese filmed the Stones over a two-day period at the intimate Beacon Theater in New York City in fall 2006. Cinematographers capture the raw energy of the legendary band.. Tags: new york, film director, legend, song, public, rolling stones, rock, guest, music video, music, concert, theatre milieu, performance"} +{"id": "171424", "title": "The Green Inferno", "year": 2014, "duration_min": 100, "rating": 5.0, "genres": "Action, Adventure, Horror, Thriller", "genres_pipe": "|Action|Adventure|Horror|Thriller|", "keywords": "chile, gore, jungle, extreme violence, cannibal, south america", "tags_pipe": "|chile|gore|jungle|extreme violence|cannibal|south america|", "overview": "A group of student activists travel from New York City to the Amazon to save the rainforest. However, once they arrive in this vast green landscape, they soon discover that they are not alone… and that no good deed goes unpunished.", "text_for_embedding": "The Green Inferno (2014). Genres: Action, Adventure, Horror, Thriller. A group of student activists travel from New York City to the Amazon to save the rainforest. However, once they arrive in this vast green landscape, they soon discover that they are not alone… and that no good deed goes unpunished.. Tags: chile, gore, jungle, extreme violence, cannibal, south america"} +{"id": "361475", "title": "Departure", "year": 2016, "duration_min": 109, "rating": 7.5, "genres": "Drama, Romance, Family", "genres_pipe": "|Drama|Romance|Family|", "keywords": "gay", "tags_pipe": "|gay|", "overview": "An English mother and her teenage son spend a week preparing the sale of their remote holiday house in the South of France. Fifteen-year-old Elliot struggles with his dawning sexuality and an increasing alienation from his mother, Beatrice. She in turn is confronted by the realisation that her marriage to his father, Philip, has grown loveless and the life she knows is coming to an end. When an enigmatic local teenager, Clément, quietly enters their lives, both mother and son are compelled to confront their desires and, finally, each other.", "text_for_embedding": "Departure (2016). Genres: Drama, Romance, Family. An English mother and her teenage son spend a week preparing the sale of their remote holiday house in the South of France. Fifteen-year-old Elliot struggles with his dawning sexuality and an increasing alienation from his mother, Beatrice. She in turn is confronted by the realisation that her marriage to his father, Philip, has grown loveless and the life she knows is coming to an end. When an enigmatic local teenager, Clément, quietly enters their lives, both mother and son are compelled to confront their desires and, finally, each other.. Tags: gay"} +{"id": "113947", "title": "The Sessions", "year": 2012, "duration_min": 98, "rating": 6.6, "genres": "Drama, Romance, Comedy", "genres_pipe": "|Drama|Romance|Comedy|", "keywords": "cat, virgin, narration, wheelchair, graduation, sexual arousal, judaism, power outage, intimate, catholic church, sexual awakening, male virgin, woman crying, sponge bath, catholic priest", "tags_pipe": "|cat|virgin|narration|wheelchair|graduation|sexual arousal|judaism|power outage|intimate|catholic church|sexual awakening|male virgin|woman crying|sponge bath|catholic priest|", "overview": "Though a childhood bout with polio left him dependent on an iron lung, Mark O'Brien (John Hawkes) maintains a career as a journalist and poet. A writing assignment dealing with sex and the disabled piques Mark's curiosity, and he decides to investigate the possibility of experiencing sex himself. When his overtures toward a caregiver scare her away, he books an appointment with sex surrogate Cheryl Green (Helen Hunt) to lose his virginity.", "text_for_embedding": "The Sessions (2012). Genres: Drama, Romance, Comedy. Though a childhood bout with polio left him dependent on an iron lung, Mark O'Brien (John Hawkes) maintains a career as a journalist and poet. A writing assignment dealing with sex and the disabled piques Mark's curiosity, and he decides to investigate the possibility of experiencing sex himself. When his overtures toward a caregiver scare her away, he books an appointment with sex surrogate Cheryl Green (Helen Hunt) to lose his virginity.. Tags: cat, virgin, narration, wheelchair, graduation, sexual arousal, judaism, power outage, intimate, catholic church, sexual awakening, male virgin, woman crying, sponge bath, catholic priest"} +{"id": "18570", "title": "Food, Inc.", "year": 2008, "duration_min": 94, "rating": 7.4, "genres": "Documentary", "genres_pipe": "|Documentary|", "keywords": "food industry, monsanto, organic food, sustainable, griculture, corn", "tags_pipe": "|food industry|monsanto|organic food|sustainable|griculture|corn|", "overview": "Documentary filmmaker Robert Kenner examines how mammoth corporations have taken over all aspects of the food chain in the United States, from the farms where our food is grown to the chain restaurants and supermarkets where it's sold. Narrated by author and activist Eric Schlosser, the film features interviews with average Americans about their dietary habits, commentary from food experts like Michael Pollan and unsettling footage shot inside large-scale animal processing plants.", "text_for_embedding": "Food, Inc. (2008). Genres: Documentary. Documentary filmmaker Robert Kenner examines how mammoth corporations have taken over all aspects of the food chain in the United States, from the farms where our food is grown to the chain restaurants and supermarkets where it's sold. Narrated by author and activist Eric Schlosser, the film features interviews with average Americans about their dietary habits, commentary from food experts like Michael Pollan and unsettling footage shot inside large-scale animal processing plants.. Tags: food industry, monsanto, organic food, sustainable, griculture, corn"} +{"id": "83860", "title": "October Baby", "year": 2011, "duration_min": 107, "rating": 6.8, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "adoption, college", "tags_pipe": "|adoption|college|", "overview": "OCTOBER BABY is the coming of age story of a beautiful and naive college freshman who discovers that her entire life is a lie and sets out on a road trip with a host of misfits to discover herself and the answers she craves.", "text_for_embedding": "October Baby (2011). Genres: Drama. OCTOBER BABY is the coming of age story of a beautiful and naive college freshman who discovers that her entire life is a lie and sets out on a road trip with a host of misfits to discover herself and the answers she craves.. Tags: adoption, college"} +{"id": "41469", "title": "Next Stop Wonderland", "year": 1998, "duration_min": 96, "rating": 6.0, "genres": "Comedy, Drama, Romance", "genres_pipe": "|Comedy|Drama|Romance|", "keywords": "independent film", "tags_pipe": "|independent film|", "overview": "A lighthearted story about a man and a woman who seem destined to be together... and the hilarious chain of accidents that seem determined to keep them apart!", "text_for_embedding": "Next Stop Wonderland (1998). Genres: Comedy, Drama, Romance. A lighthearted story about a man and a woman who seem destined to be together... and the hilarious chain of accidents that seem determined to keep them apart!. Tags: independent film"} +{"id": "244772", "title": "The Skeleton Twins", "year": 2014, "duration_min": 90, "rating": 6.7, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "new york, adultery, confession, brother sister relationship, infidelity, bisexuality, rejection, cowardice, reunion, death of father, mother daughter relationship, lesbian, in the closet, teacher student relationship, mother son relationship", "tags_pipe": "|new york|adultery|confession|brother sister relationship|infidelity|bisexuality|rejection|cowardice|reunion|death of father|mother daughter relationship|lesbian|in the closet|teacher student relationship|mother son relationship|", "overview": "Estranged twins Maggie and Milo coincidentally cheat death on the same day, prompting them to reunite and confront the reasons their lives went so wrong. As the twins' reunion reinvigorates them, they realize the key to fixing their lives may just lie in repairing their relationship.", "text_for_embedding": "The Skeleton Twins (2014). Genres: Drama. Estranged twins Maggie and Milo coincidentally cheat death on the same day, prompting them to reunite and confront the reasons their lives went so wrong. As the twins' reunion reinvigorates them, they realize the key to fixing their lives may just lie in repairing their relationship.. Tags: new york, adultery, confession, brother sister relationship, infidelity, bisexuality, rejection, cowardice, reunion, death of father, mother daughter relationship, lesbian, in the closet, teacher student relationship, mother son relationship"} +{"id": "50837", "title": "Martha Marcy May Marlene", "year": 2011, "duration_min": 101, "rating": 6.7, "genres": "Drama, Thriller", "genres_pipe": "|Drama|Thriller|", "keywords": "sexual abuse, cult, boundary violations, mumblegore", "tags_pipe": "|sexual abuse|cult|boundary violations|mumblegore|", "overview": "After several years of living with a cult, Martha finally escapes and calls her estranged sister, Lucy, for help. Martha finds herself at the quiet Connecticut home Lucy shares with her new husband, Ted, but the memories of what she experienced in the cult make peace hard to find. As flashbacks continue to torment her, Martha fails to shake a terrible sense of dread, especially in regard to the cult's manipulative leader.", "text_for_embedding": "Martha Marcy May Marlene (2011). Genres: Drama, Thriller. After several years of living with a cult, Martha finally escapes and calls her estranged sister, Lucy, for help. Martha finds herself at the quiet Connecticut home Lucy shares with her new husband, Ted, but the memories of what she experienced in the cult make peace hard to find. As flashbacks continue to torment her, Martha fails to shake a terrible sense of dread, especially in regard to the cult's manipulative leader.. Tags: sexual abuse, cult, boundary violations, mumblegore"} +{"id": "248774", "title": "Obvious Child", "year": 2014, "duration_min": 83, "rating": 6.7, "genres": "Comedy, Romance", "genres_pipe": "|Comedy|Romance|", "keywords": "independent film, woman director", "tags_pipe": "|independent film|woman director|", "overview": "An immature, newly unemployed comic must navigate the murky waters of adulthood after her fling with a graduate student results in an unplanned pregnancy.", "text_for_embedding": "Obvious Child (2014). Genres: Comedy, Romance. An immature, newly unemployed comic must navigate the murky waters of adulthood after her fling with a graduate student results in an unplanned pregnancy.. Tags: independent film, woman director"} +{"id": "10183", "title": "Frozen River", "year": 2008, "duration_min": 97, "rating": 6.7, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "human trafficking, woman director", "tags_pipe": "|human trafficking|woman director|", "overview": "Ray Eddy, an upstate New York trailer mom, is lured into the world of illegal immigrant smuggling. Broke after her husband takes off with the down payment for their new doublewide, Ray reluctantly teams up with Lila, a smuggler, and the two begin making runs across the frozen St. Lawrence River carrying illegal Chinese and Pakistani immigrants in the trunk of Ray's Dodge Spirit.", "text_for_embedding": "Frozen River (2008). Genres: Drama. Ray Eddy, an upstate New York trailer mom, is lured into the world of illegal immigrant smuggling. Broke after her husband takes off with the down payment for their new doublewide, Ray reluctantly teams up with Lila, a smuggler, and the two begin making runs across the frozen St. Lawrence River carrying illegal Chinese and Pakistani immigrants in the trunk of Ray's Dodge Spirit.. Tags: human trafficking, woman director"} +{"id": "159014", "title": "20 Feet from Stardom", "year": 2013, "duration_min": 89, "rating": 7.4, "genres": "Documentary, Music", "genres_pipe": "|Documentary|Music|", "keywords": "", "tags_pipe": "", "overview": "Backup singers live in a world that lies just beyond the spotlight. Their voices bring harmony to the biggest bands in popular music, but we've had no idea who these singers are or what lives they lead, until now.", "text_for_embedding": "20 Feet from Stardom (2013). Genres: Documentary, Music. Backup singers live in a world that lies just beyond the spotlight. Their voices bring harmony to the biggest bands in popular music, but we've had no idea who these singers are or what lives they lead, until now.. Tags: "} +{"id": "32456", "title": "Two Girls and a Guy", "year": 1997, "duration_min": 84, "rating": 5.4, "genres": "Drama, Romance", "genres_pipe": "|Drama|Romance|", "keywords": "love, revenge, loft, analingus, actor", "tags_pipe": "|love|revenge|loft|analingus|actor|", "overview": "Two women confront their boyfriend, a two-timing actor who professed eternal love to each.", "text_for_embedding": "Two Girls and a Guy (1997). Genres: Drama, Romance. Two women confront their boyfriend, a two-timing actor who professed eternal love to each.. Tags: love, revenge, loft, analingus, actor"} +{"id": "49963", "title": "Walking and Talking", "year": 1996, "duration_min": 86, "rating": 6.6, "genres": "Comedy, Drama, Romance", "genres_pipe": "|Comedy|Drama|Romance|", "keywords": "independent film, woman director", "tags_pipe": "|independent film|woman director|", "overview": "Things have been tough lately for Amelia. Her best friend moved out of the apartment, her cat got cancer, and now her best friend, Laura, is getting married. She copes with things, from the help of Andrew, Frank, Laura, and a brief romance with Bill \"The Ugly Guy\".", "text_for_embedding": "Walking and Talking (1996). Genres: Comedy, Drama, Romance. Things have been tough lately for Amelia. Her best friend moved out of the apartment, her cat got cancer, and now her best friend, Laura, is getting married. She copes with things, from the help of Andrew, Frank, Laura, and a brief romance with Bill \"The Ugly Guy\".. Tags: independent film, woman director"} +{"id": "13508", "title": "Who Killed the Electric Car?", "year": 2006, "duration_min": 92, "rating": 7.2, "genres": "Documentary", "genres_pipe": "|Documentary|", "keywords": "energy supply, automobile industry, independent film", "tags_pipe": "|energy supply|automobile industry|independent film|", "overview": "In 1996, electric cars began to appear on roads all over California. They were quiet and fast, produced no exhaust, and ran without gasoline... Ten years later, these cars were destroyed.", "text_for_embedding": "Who Killed the Electric Car? (2006). Genres: Documentary. In 1996, electric cars began to appear on roads all over California. They were quiet and fast, produced no exhaust, and ran without gasoline... Ten years later, these cars were destroyed.. Tags: energy supply, automobile industry, independent film"} +{"id": "22597", "title": "The Broken Hearts Club: A Romantic Comedy", "year": 2000, "duration_min": 94, "rating": 6.3, "genres": "Comedy, Drama, Romance", "genres_pipe": "|Comedy|Drama|Romance|", "keywords": "gay, roommate, male friendship, in vitro fertilisation, romantic comedy, lesbian relationship, gay relationship, gay interest", "tags_pipe": "|gay|roommate|male friendship|in vitro fertilisation|romantic comedy|lesbian relationship|gay relationship|gay interest|", "overview": "A group of friends search for fun, love and ultimately themselves in West Hollywood. This movie is an entertaining, and sometimes cynical look into the lives of six gay men trying to come to terms with what being gay and single (or gay and partnered) means to them.", "text_for_embedding": "The Broken Hearts Club: A Romantic Comedy (2000). Genres: Comedy, Drama, Romance. A group of friends search for fun, love and ultimately themselves in West Hollywood. This movie is an entertaining, and sometimes cynical look into the lives of six gay men trying to come to terms with what being gay and single (or gay and partnered) means to them.. Tags: gay, roommate, male friendship, in vitro fertilisation, romantic comedy, lesbian relationship, gay relationship, gay interest"} +{"id": "9707", "title": "Bubba Ho-tep", "year": 2002, "duration_min": 92, "rating": 6.7, "genres": "Comedy, Horror, Thriller, Mystery, Fantasy", "genres_pipe": "|Comedy|Horror|Thriller|Mystery|Fantasy|", "keywords": "john f. kennedy, elvis presley", "tags_pipe": "|john f. kennedy|elvis presley|", "overview": "Bubba Ho-tep tells the \"true\" story of what really did become of Elvis Presley. We find Elvis as an elderly resident in an East Texas rest home, who switched identities with an Elvis impersonator years before his \"death,\" then missed his chance to switch back. He must team up with JFK and fight an ancient Egyptian mummy for the souls of their fellow residents.", "text_for_embedding": "Bubba Ho-tep (2002). Genres: Comedy, Horror, Thriller, Mystery, Fantasy. Bubba Ho-tep tells the \"true\" story of what really did become of Elvis Presley. We find Elvis as an elderly resident in an East Texas rest home, who switched identities with an Elvis impersonator years before his \"death,\" then missed his chance to switch back. He must team up with JFK and fight an ancient Egyptian mummy for the souls of their fellow residents.. Tags: john f. kennedy, elvis presley"} +{"id": "37532", "title": "Slam", "year": 1998, "duration_min": 100, "rating": 6.7, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "independent film", "tags_pipe": "|independent film|", "overview": "Slam tells the story of Ray Joshua, an original, gifted young MC trapped in a war-zone housing project known as Dodge City. Unable to find a job, Ray copes with the despair and poverty of his neighborhood by using his wits and verbal talent. Written by Offline Publicist Young Ray Joshua lives in the Washington, DC, district known as Dodge City, which is dominated by gang wars. One day he is arrested when his drug dealer is gunned down while talking to him. He is put to prison where two rival gangs, Thug Life and the Union, want to recruit him as a member.", "text_for_embedding": "Slam (1998). Genres: Drama. Slam tells the story of Ray Joshua, an original, gifted young MC trapped in a war-zone housing project known as Dodge City. Unable to find a job, Ray copes with the despair and poverty of his neighborhood by using his wits and verbal talent. Written by Offline Publicist Young Ray Joshua lives in the Washington, DC, district known as Dodge City, which is dominated by gang wars. One day he is arrested when his drug dealer is gunned down while talking to him. He is put to prison where two rival gangs, Thug Life and the Union, want to recruit him as a member.. Tags: independent film"} +{"id": "26791", "title": "Brigham City", "year": 2001, "duration_min": 119, "rating": 7.3, "genres": "Crime, Drama, Mystery, Thriller", "genres_pipe": "|Crime|Drama|Mystery|Thriller|", "keywords": "", "tags_pipe": "", "overview": "Wes Clayton is a lawman and a bishop in a Mormon community called Brigham. The town is shaken when a woman from California is found murdered. Clayton and his young deputy work with an FBI agent sent to investigate. As a civil and spiritual leader in the frightened town, Clayton must uncover the town's deepest secrets, find the murderer and keep Brigham from ripping itself apart.", "text_for_embedding": "Brigham City (2001). Genres: Crime, Drama, Mystery, Thriller. Wes Clayton is a lawman and a bishop in a Mormon community called Brigham. The town is shaken when a woman from California is found murdered. Clayton and his young deputy work with an FBI agent sent to investigate. As a civil and spiritual leader in the frightened town, Clayton must uncover the town's deepest secrets, find the murderer and keep Brigham from ripping itself apart.. Tags: "} +{"id": "56666", "title": "Fiza", "year": 2000, "duration_min": 170, "rating": 6.1, "genres": "Drama, Foreign, Romance", "genres_pipe": "|Drama|Foreign|Romance|", "keywords": "suicide, loss of brother, laughing, jihad, love, racial tension", "tags_pipe": "|suicide|loss of brother|laughing|jihad|love|racial tension|", "overview": "In 1993 Fiza's brother disappears during the riots in Mumbai. In 1999 Fiza is tired of waiting and goes looking for him.", "text_for_embedding": "Fiza (2000). Genres: Drama, Foreign, Romance. In 1993 Fiza's brother disappears during the riots in Mumbai. In 1999 Fiza is tired of waiting and goes looking for him.. Tags: suicide, loss of brother, laughing, jihad, love, racial tension"} +{"id": "8675", "title": "Orgazmo", "year": 1997, "duration_min": 94, "rating": 6.2, "genres": "Comedy", "genres_pipe": "|Comedy|", "keywords": "pornography, sex, secret, fight, star, superhero, independent film, wedding, crime, mormon, woman director, sidekick, henchmen", "tags_pipe": "|pornography|sex|secret|fight|star|superhero|independent film|wedding|crime|mormon|woman director|sidekick|henchmen|", "overview": "Joe Young is a devout Mormon living in L.A. trying to raise enough money to go back to Utah and marry his girlfriend, Lisa. Joe is spreading the word about the church of Latter Day Saints one day when he's confronted by two burly bodyguards. A scuffle breaks out, and Joe's martial arts skills impress Maxxx Orbison, who directs pornographic movies.", "text_for_embedding": "Orgazmo (1997). Genres: Comedy. Joe Young is a devout Mormon living in L.A. trying to raise enough money to go back to Utah and marry his girlfriend, Lisa. Joe is spreading the word about the church of Latter Day Saints one day when he's confronted by two burly bodyguards. A scuffle breaks out, and Joe's martial arts skills impress Maxxx Orbison, who directs pornographic movies.. Tags: pornography, sex, secret, fight, star, superhero, independent film, wedding, crime, mormon, woman director, sidekick, henchmen"} +{"id": "13132", "title": "All the Real Girls", "year": 2003, "duration_min": 108, "rating": 5.9, "genres": "Drama, Romance", "genres_pipe": "|Drama|Romance|", "keywords": "southern usa, small town, virgin, independent film, best friend", "tags_pipe": "|southern usa|small town|virgin|independent film|best friend|", "overview": "In a small North Carolina town, Paul, a womanizer, meets Noel, a confused intellectual returning home for the first time in years since she left for boarding school. The film depicts the typical romance of a good girl and a bad boy, in an interesting way.", "text_for_embedding": "All the Real Girls (2003). Genres: Drama, Romance. In a small North Carolina town, Paul, a womanizer, meets Noel, a confused intellectual returning home for the first time in years since she left for boarding school. The film depicts the typical romance of a good girl and a bad boy, in an interesting way.. Tags: southern usa, small town, virgin, independent film, best friend"} +{"id": "47686", "title": "Dream with the Fishes", "year": 1997, "duration_min": 97, "rating": 7.7, "genres": "Comedy", "genres_pipe": "|Comedy|", "keywords": "independent film", "tags_pipe": "|independent film|", "overview": "Terry is a suicidal voyeur who treats a dying addict to a final binge, but Terry will only do this if he promises to kill him.", "text_for_embedding": "Dream with the Fishes (1997). Genres: Comedy. Terry is a suicidal voyeur who treats a dying addict to a final binge, but Terry will only do this if he promises to kill him.. Tags: independent film"} +{"id": "46989", "title": "Blue Car", "year": 2002, "duration_min": 92, "rating": 6.7, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "independent film, woman director", "tags_pipe": "|independent film|woman director|", "overview": "Gifted 18-year-old Meg has been abandoned by her father and neglected by her hardworking mother. Left to care for her emotionally disturbed younger sister, her world begins to unravel. She finds an outlet in writing poetry and support from her English teacher, Mr. Auster. But what started out as a mentoring relationship begins to get a bit more complex.", "text_for_embedding": "Blue Car (2002). Genres: Drama. Gifted 18-year-old Meg has been abandoned by her father and neglected by her hardworking mother. Left to care for her emotionally disturbed younger sister, her world begins to unravel. She finds an outlet in writing poetry and support from her English teacher, Mr. Auster. But what started out as a mentoring relationship begins to get a bit more complex.. Tags: independent film, woman director"} +{"id": "192132", "title": "Palo Alto", "year": 2014, "duration_min": 100, "rating": 6.4, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "high school, soccer, teenager, older man younger woman relationship, teenage sexuality, woman director", "tags_pipe": "|high school|soccer|teenager|older man younger woman relationship|teenage sexuality|woman director|", "overview": "Palo Alto weaves together three stories of teenage lust, boredom, and self-destruction: shy, sensitive April, torn between an illicit flirtation with her soccer coach and an unrequited crush on sweet stoner Teddy; Emily, who offers sexual favors to any boy to cross her path; and the increasingly dangerous exploits of Teddy and his best friend Fred, whose behavior may or may not be sociopathic.", "text_for_embedding": "Palo Alto (2014). Genres: Drama. Palo Alto weaves together three stories of teenage lust, boredom, and self-destruction: shy, sensitive April, torn between an illicit flirtation with her soccer coach and an unrequited crush on sweet stoner Teddy; Emily, who offers sexual favors to any boy to cross her path; and the increasingly dangerous exploits of Teddy and his best friend Fred, whose behavior may or may not be sociopathic.. Tags: high school, soccer, teenager, older man younger woman relationship, teenage sexuality, woman director"} +{"id": "24424", "title": "Ajami", "year": 2009, "duration_min": 120, "rating": 6.8, "genres": "Crime, Drama", "genres_pipe": "|Crime|Drama|", "keywords": "", "tags_pipe": "", "overview": "Ajami is an area of Tel Aviv in Israel where Arabs, Palestinians, Jews and Christians live together in a tense atmosphere. Omar, an Israeli Arab, struggles to save his family from a gang of extortionists. He also courts a beautiful Christian girl: Hadir. Malek, an illegal Palestinian worker, tries to collect enough money to pay for his mother's operation. Dando, an Israeli cop, does his utmost to find his missing brother who may have been killed by Palestinians.", "text_for_embedding": "Ajami (2009). Genres: Crime, Drama. Ajami is an area of Tel Aviv in Israel where Arabs, Palestinians, Jews and Christians live together in a tense atmosphere. Omar, an Israeli Arab, struggles to save his family from a gang of extortionists. He also courts a beautiful Christian girl: Hadir. Malek, an illegal Palestinian worker, tries to collect enough money to pay for his mother's operation. Dando, an Israeli cop, does his utmost to find his missing brother who may have been killed by Palestinians.. Tags: "} +{"id": "13198", "title": "Wristcutters: A Love Story", "year": 2006, "duration_min": 88, "rating": 6.7, "genres": "Comedy, Drama, Fantasy, Romance", "genres_pipe": "|Comedy|Drama|Fantasy|Romance|", "keywords": "independent film, break-up, ex-boyfriend ex-girlfriend relationship, rolling a cigarette, autocide, record player, hypodermic needle, missing pet, head in oven, grocery store, arm in cast, gun in mouth, toast, listening to music", "tags_pipe": "|independent film|break-up|ex-boyfriend ex-girlfriend relationship|rolling a cigarette|autocide|record player|hypodermic needle|missing pet|head in oven|grocery store|arm in cast|gun in mouth|toast|listening to music|", "overview": "Zia, distraught over breaking up with his girlfriend, decides to end it all. Unfortunately, he discovers that there is no real ending, only a run-down afterlife that is strikingly similar to his old one, just a bit worse. Discovering that his ex-girlfriend has also \"offed\" herself, he sets out on a road trip, with his Russian rocker friend, to find her. Their journey takes them through an absurd purgatory where they discover that being dead doesn't mean you have to stop livin'!", "text_for_embedding": "Wristcutters: A Love Story (2006). Genres: Comedy, Drama, Fantasy, Romance. Zia, distraught over breaking up with his girlfriend, decides to end it all. Unfortunately, he discovers that there is no real ending, only a run-down afterlife that is strikingly similar to his old one, just a bit worse. Discovering that his ex-girlfriend has also \"offed\" herself, he sets out on a road trip, with his Russian rocker friend, to find her. Their journey takes them through an absurd purgatory where they discover that being dead doesn't mean you have to stop livin'!. Tags: independent film, break-up, ex-boyfriend ex-girlfriend relationship, rolling a cigarette, autocide, record player, hypodermic needle, missing pet, head in oven, grocery store, arm in cast, gun in mouth, toast, listening to music"} +{"id": "244267", "title": "I Origins", "year": 2014, "duration_min": 106, "rating": 7.5, "genres": "Science Fiction, Drama", "genres_pipe": "|Science Fiction|Drama|", "keywords": "independent film, eyes, molecular biologist", "tags_pipe": "|independent film|eyes|molecular biologist|", "overview": "I Origins follows a molecular biologist studying the evolution of the human eye. He finds his work permeating his life after a brief encounter with an exotic young woman who slips away from him. As his research continues years later with his lab partner, they make a stunning scientific discovery that has far reaching implications and complicates both his scientific and and spiritual beliefs. Traveling half way around the world, he risks everything he has ever known to validate his theory.", "text_for_embedding": "I Origins (2014). Genres: Science Fiction, Drama. I Origins follows a molecular biologist studying the evolution of the human eye. He finds his work permeating his life after a brief encounter with an exotic young woman who slips away from him. As his research continues years later with his lab partner, they make a stunning scientific discovery that has far reaching implications and complicates both his scientific and and spiritual beliefs. Traveling half way around the world, he risks everything he has ever known to validate his theory.. Tags: independent film, eyes, molecular biologist"} +{"id": "21413", "title": "The Battle of Shaker Heights", "year": 2003, "duration_min": 79, "rating": 5.6, "genres": "Comedy, Drama, Romance", "genres_pipe": "|Comedy|Drama|Romance|", "keywords": "fantasy, enemy, sister, high school, battlefield, bully, teenager, strategy, addict", "tags_pipe": "|fantasy|enemy|sister|high school|battlefield|bully|teenager|strategy|addict|", "overview": "A quirky teen with a penchant for war reenactments, Kelly Ernswiler obsesses over military tactics with his buddy Bart. The school bully is one of Kelly's regular headaches, and he also has to deal with a frustrating situation at home, where his father is a recovering drug addict. Kelly's life gets even more complicated when he falls for Tabby, Bart's pretty and soon-to-be-wed older sister.", "text_for_embedding": "The Battle of Shaker Heights (2003). Genres: Comedy, Drama, Romance. A quirky teen with a penchant for war reenactments, Kelly Ernswiler obsesses over military tactics with his buddy Bart. The school bully is one of Kelly's regular headaches, and he also has to deal with a frustrating situation at home, where his father is a recovering drug addict. Kelly's life gets even more complicated when he falls for Tabby, Bart's pretty and soon-to-be-wed older sister.. Tags: fantasy, enemy, sister, high school, battlefield, bully, teenager, strategy, addict"} +{"id": "123678", "title": "The Act of Killing", "year": 2012, "duration_min": 115, "rating": 7.5, "genres": "Documentary", "genres_pipe": "|Documentary|", "keywords": "corruption, war, indonesia", "tags_pipe": "|corruption|war|indonesia|", "overview": "In a place where killers are celebrated as heroes, these filmmakers challenge unrepentant death-squad leaders to dramatize their role in genocide. The result is a surreal, cinematic journey, not only into the memories and imaginations of mass murderers, but also into a frighteningly banal regime of corruption and impunity.", "text_for_embedding": "The Act of Killing (2012). Genres: Documentary. In a place where killers are celebrated as heroes, these filmmakers challenge unrepentant death-squad leaders to dramatize their role in genocide. The result is a surreal, cinematic journey, not only into the memories and imaginations of mass murderers, but also into a frighteningly banal regime of corruption and impunity.. Tags: corruption, war, indonesia"} +{"id": "13362", "title": "Taxi to the Dark Side", "year": 2007, "duration_min": 106, "rating": 6.6, "genres": "Documentary", "genres_pipe": "|Documentary|", "keywords": "taxi, afghanistan, guantanamo bay, torture chamber", "tags_pipe": "|taxi|afghanistan|guantanamo bay|torture chamber|", "overview": "An in-depth look at the torture practices of the United States in Afghanistan, Iraq and Guantanamo Bay, focusing on an innocent taxi driver in Afghanistan who was tortured and killed in 2002", "text_for_embedding": "Taxi to the Dark Side (2007). Genres: Documentary. An in-depth look at the torture practices of the United States in Afghanistan, Iraq and Guantanamo Bay, focusing on an innocent taxi driver in Afghanistan who was tortured and killed in 2002. Tags: taxi, afghanistan, guantanamo bay, torture chamber"} +{"id": "39183", "title": "Once in a Lifetime: The Extraordinary Story of the New York Cosmos", "year": 2006, "duration_min": 97, "rating": 4.7, "genres": "Documentary", "genres_pipe": "|Documentary|", "keywords": "new york, beckenbauer, pele", "tags_pipe": "|new york|beckenbauer|pele|", "overview": "In the 1970s the North American Soccer League marked the first attempt to introduce soccer to American sports fans. While most teams had only limited success at best, one managed to break through to genuine mainstream popularity - the New York Cosmos. The brainchild of Steve Ross (Major executive at Warner Communications) and the Ertegun brothers (Founders of Atlantic Records), the Cosmos got off to a rocky start in 1971, but things changed in 1975 when the world's most celebrated soccer star, the Brazilian champion Pele, signed with the Cosmos for a five-million-dollar payday. With the arrival of Pele, the Cosmos became a hit and the players became the toast of the town, earning their own private table at Studio 54. A number of other international soccer stars were soon lured to the Cosmos, including Franz Beckenbauer, Rodney Marsh, and Carlos Alberto, but with the turn of the decade, the team began losing favor with fans and folded in 1985.", "text_for_embedding": "Once in a Lifetime: The Extraordinary Story of the New York Cosmos (2006). Genres: Documentary. In the 1970s the North American Soccer League marked the first attempt to introduce soccer to American sports fans. While most teams had only limited success at best, one managed to break through to genuine mainstream popularity - the New York Cosmos. The brainchild of Steve Ross (Major executive at Warner Communications) and the Ertegun brothers (Founders of Atlantic Records), the Cosmos got off to a rocky start in 1971, but things changed in 1975 when the world's most celebrated soccer star, the Brazilian champion Pele, signed with the Cosmos for a five-million-dollar payday. With the arrival of Pele, the Cosmos became a hit and the players became the toast of the town, earning their own private table at Studio 54. A number of other international soccer stars were soon lured to the Cosmos, including Franz Beckenbauer, Rodney Marsh, and Carlos Alberto, but with the turn of the decade, the team began losing favor with fans and folded in 1985.. Tags: new york, beckenbauer, pele"} +{"id": "62402", "title": "Guiana 1838", "year": 2004, "duration_min": 120, "rating": 2.8, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "guyana, 19th century", "tags_pipe": "|guyana|19th century|", "overview": "The abolition of slavery in the British Caribbean in 1834 prompts Gillanders, Arbuthnot & Company in Calcutta, a part of the East India Company, to recruit Coolies from India to fill the resulting labor void. The company hires Sinha, a fierce small-timer to sell dreams of El Dorado to the unsuspecting, impoverished Coolies who are signed to five-year contracts as indentured servants. Upon the Coolies' arrival in British Guiana in 1838, the British planters promptly enslave them to ensure that the growth of sugar in the British West Indies will continue uninterrupted. John Scoble of the British and Foreign Anti Slavery Society arrives on the colony a year later to discover a new form of slavery; this time on the backs of Indians.", "text_for_embedding": "Guiana 1838 (2004). Genres: Drama. The abolition of slavery in the British Caribbean in 1834 prompts Gillanders, Arbuthnot & Company in Calcutta, a part of the East India Company, to recruit Coolies from India to fill the resulting labor void. The company hires Sinha, a fierce small-timer to sell dreams of El Dorado to the unsuspecting, impoverished Coolies who are signed to five-year contracts as indentured servants. Upon the Coolies' arrival in British Guiana in 1838, the British planters promptly enslave them to ensure that the growth of sugar in the British West Indies will continue uninterrupted. John Scoble of the British and Foreign Anti Slavery Society arrives on the colony a year later to discover a new form of slavery; this time on the backs of Indians.. Tags: guyana, 19th century"} +{"id": "206412", "title": "Lisa Picard Is Famous", "year": 2000, "duration_min": 90, "rating": 4.0, "genres": "", "genres_pipe": "", "keywords": "", "tags_pipe": "", "overview": "A documentarian decides to follow the career of New York actress Lisa Picard, believing she is on the brink of fame. Instead, he bears witness to Lisa's continued, humorous, struggles as an actress, as well as the conflict that arises when Lisa's best friend Tate hits it big with an off-Broadway one-man show.", "text_for_embedding": "Lisa Picard Is Famous (2000). Genres: . A documentarian decides to follow the career of New York actress Lisa Picard, believing she is on the brink of fame. Instead, he bears witness to Lisa's continued, humorous, struggles as an actress, as well as the conflict that arises when Lisa's best friend Tate hits it big with an off-Broadway one-man show.. Tags: "} +{"id": "201132", "title": "Antarctica: A Year on Ice", "year": 2013, "duration_min": 92, "rating": 7.2, "genres": "Drama, Adventure, Documentary", "genres_pipe": "|Drama|Adventure|Documentary|", "keywords": "biography, antarctica", "tags_pipe": "|biography|antarctica|", "overview": "Filling the giant screen with stunning time-lapse vistas of Antarctica, and detailing year-round life at McMurdo and Scott Base, Anthony Powell’s documentary is a potent hymn to the icy continent and the heavens above.", "text_for_embedding": "Antarctica: A Year on Ice (2013). Genres: Drama, Adventure, Documentary. Filling the giant screen with stunning time-lapse vistas of Antarctica, and detailing year-round life at McMurdo and Scott Base, Anthony Powell’s documentary is a potent hymn to the icy continent and the heavens above.. Tags: biography, antarctica"} +{"id": "251471", "title": "A LEGO Brickumentary", "year": 2015, "duration_min": 93, "rating": 6.4, "genres": "Documentary", "genres_pipe": "|Documentary|", "keywords": "pop culture, fan culture, documentary, toys", "tags_pipe": "|pop culture|fan culture|documentary|toys|", "overview": "A look at the global culture and appeal of the LEGO building-block toys.", "text_for_embedding": "A LEGO Brickumentary (2015). Genres: Documentary. A look at the global culture and appeal of the LEGO building-block toys.. Tags: pop culture, fan culture, documentary, toys"} +{"id": "112456", "title": "Hardflip", "year": 2012, "duration_min": 114, "rating": 4.7, "genres": "Drama, Action", "genres_pipe": "|Drama|Action|", "keywords": "skateboarding, forgiveness, sport, family relationships, aftercreditsstinger", "tags_pipe": "|skateboarding|forgiveness|sport|family relationships|aftercreditsstinger|", "overview": "Hardflip follows the story of Caleb (Randy Wayne) a young skater whose ill mother (Rosanna Arquette) and absent father (John Schneider) leave him reaching for the only hope he has...becoming a sponsored skater. After his mother falls ill, Caleb finds a stack of old love letters. He sets out to find the father he never knew and inadvertently begins a journey he never could have expected. This story explores what happens when we let go of our anger and pain and forgive those who have hurt us most.", "text_for_embedding": "Hardflip (2012). Genres: Drama, Action. Hardflip follows the story of Caleb (Randy Wayne) a young skater whose ill mother (Rosanna Arquette) and absent father (John Schneider) leave him reaching for the only hope he has...becoming a sponsored skater. After his mother falls ill, Caleb finds a stack of old love letters. He sets out to find the father he never knew and inadvertently begins a journey he never could have expected. This story explores what happens when we let go of our anger and pain and forgive those who have hurt us most.. Tags: skateboarding, forgiveness, sport, family relationships, aftercreditsstinger"} +{"id": "20296", "title": "Chocolate: Deep Dark Secrets", "year": 2005, "duration_min": 200, "rating": 3.4, "genres": "Thriller", "genres_pipe": "|Thriller|", "keywords": "", "tags_pipe": "", "overview": "Christmas Eve, London. While the snow-clad city gets ready to celebrate the festival of peace and joy, a series of bizarre incidents shatter the Christmas calm. A couple of luckless Indians find themselves hauled by the London police and made scapegoats. Or are they?Chocolate unfolds a web of sinister plots, slowly unearthing true and mystifying personalities of seven individuals. Seven high-strung, distinctive people who've chosen to remain in the foreign land hoping to make or break their lives.", "text_for_embedding": "Chocolate: Deep Dark Secrets (2005). Genres: Thriller. Christmas Eve, London. While the snow-clad city gets ready to celebrate the festival of peace and joy, a series of bizarre incidents shatter the Christmas calm. A couple of luckless Indians find themselves hauled by the London police and made scapegoats. Or are they?Chocolate unfolds a web of sinister plots, slowly unearthing true and mystifying personalities of seven individuals. Seven high-strung, distinctive people who've chosen to remain in the foreign land hoping to make or break their lives.. Tags: "} +{"id": "25983", "title": "The House of the Devil", "year": 2009, "duration_min": 95, "rating": 6.0, "genres": "Mystery, Horror", "genres_pipe": "|Mystery|Horror|", "keywords": "ritual, cult, independent film, human sacrifice, eclipse, satanic ritual, mumblegore", "tags_pipe": "|ritual|cult|independent film|human sacrifice|eclipse|satanic ritual|mumblegore|", "overview": "In the 1980s, college student Samantha Hughes takes a strange babysitting job that coincides with a full lunar eclipse. She slowly realizes her clients harbor a terrifying secret.", "text_for_embedding": "The House of the Devil (2009). Genres: Mystery, Horror. In the 1980s, college student Samantha Hughes takes a strange babysitting job that coincides with a full lunar eclipse. She slowly realizes her clients harbor a terrifying secret.. Tags: ritual, cult, independent film, human sacrifice, eclipse, satanic ritual, mumblegore"} +{"id": "66195", "title": "The Perfect Host", "year": 2010, "duration_min": 93, "rating": 6.2, "genres": "Comedy, Thriller, Crime", "genres_pipe": "|Comedy|Thriller|Crime|", "keywords": "swimming pool, tea kettle, conga line, spit in the face, convenience store robbery", "tags_pipe": "|swimming pool|tea kettle|conga line|spit in the face|convenience store robbery|", "overview": "A criminal on the run cons his way into the wrong dinner party where the host is anything but ordinary.", "text_for_embedding": "The Perfect Host (2010). Genres: Comedy, Thriller, Crime. A criminal on the run cons his way into the wrong dinner party where the host is anything but ordinary.. Tags: swimming pool, tea kettle, conga line, spit in the face, convenience store robbery"} +{"id": "16155", "title": "Safe Men", "year": 1998, "duration_min": 88, "rating": 6.3, "genres": "Comedy, Crime", "genres_pipe": "|Comedy|Crime|", "keywords": "robbery, organized crime, gangster, safecracker, rosh hashanah", "tags_pipe": "|robbery|organized crime|gangster|safecracker|rosh hashanah|", "overview": "Two untalented singers are mistaken for a pair of major league safe crackers in Providence, Rhode Island. The two are pressed into service by the local hoodlums and quickly find themselves in conflict with their professional colleagues. Romantic interest is added by the daughter of the underworld leader who won't date the men she knows are gangsters.", "text_for_embedding": "Safe Men (1998). Genres: Comedy, Crime. Two untalented singers are mistaken for a pair of major league safe crackers in Providence, Rhode Island. The two are pressed into service by the local hoodlums and quickly find themselves in conflict with their professional colleagues. Romantic interest is added by the daughter of the underworld leader who won't date the men she knows are gangsters.. Tags: robbery, organized crime, gangster, safecracker, rosh hashanah"} +{"id": "46727", "title": "Speedway Junky", "year": 1999, "duration_min": 104, "rating": 5.2, "genres": "Romance, Drama, Crime", "genres_pipe": "|Romance|Drama|Crime|", "keywords": "racing car, growing up, scam, male prostitute", "tags_pipe": "|racing car|growing up|scam|male prostitute|", "overview": "A naive drifter runs away from his army father in hopes of making it on the car racing circuit. In Las Vegas, he meets a young scam artist, who develops a crush on him. He is then introduced to a whole gang led by a young hustler. The racer-to-be then gets a lesson in the wild side, getting involved in one situation after another. Patsy Kensit makes a cameo as another hustler and Daryl Hannah appears as the scam artist's surrogate mom.", "text_for_embedding": "Speedway Junky (1999). Genres: Romance, Drama, Crime. A naive drifter runs away from his army father in hopes of making it on the car racing circuit. In Las Vegas, he meets a young scam artist, who develops a crush on him. He is then introduced to a whole gang led by a young hustler. The racer-to-be then gets a lesson in the wild side, getting involved in one situation after another. Patsy Kensit makes a cameo as another hustler and Daryl Hannah appears as the scam artist's surrogate mom.. Tags: racing car, growing up, scam, male prostitute"} +{"id": "55180", "title": "The Last Big Thing", "year": 1998, "duration_min": 98, "rating": 6.0, "genres": "Comedy, Drama", "genres_pipe": "|Comedy|Drama|", "keywords": "magazine, independent film, counter-culture, model, arrogance", "tags_pipe": "|magazine|independent film|counter-culture|model|arrogance|", "overview": "From a bland tract house on the outskirts of Los Angeles, Simon Geist (with occasional help from his platonic girlfriend Darla) wages war against all of modern American popular culture. Geist starts up a magazine called \"The Next Big Thing\", which he uses to confront and insult upcoming actors, comics, models and rock bands. As Geist's mysterious Underground Agenda escalates, will he become the \"last big thing\", or be co-opted by the very forces he is railing against? Written by Van Film Fest", "text_for_embedding": "The Last Big Thing (1998). Genres: Comedy, Drama. From a bland tract house on the outskirts of Los Angeles, Simon Geist (with occasional help from his platonic girlfriend Darla) wages war against all of modern American popular culture. Geist starts up a magazine called \"The Next Big Thing\", which he uses to confront and insult upcoming actors, comics, models and rock bands. As Geist's mysterious Underground Agenda escalates, will he become the \"last big thing\", or be co-opted by the very forces he is railing against? Written by Van Film Fest. Tags: magazine, independent film, counter-culture, model, arrogance"} +{"id": "29015", "title": "The Specials", "year": 2000, "duration_min": 82, "rating": 5.5, "genres": "Action, Comedy", "genres_pipe": "|Action|Comedy|", "keywords": "superhero", "tags_pipe": "|superhero|", "overview": "America's 7th Best Superhero Team, the Specials, are a group of geeks and oddballs. We get to see one day in their lives as fan and new member Nightbird joins the group, just in time for the group to get a new line of action figures. But the members' extreme personalities and personal issues threaten to rip the group apart.", "text_for_embedding": "The Specials (2000). Genres: Action, Comedy. America's 7th Best Superhero Team, the Specials, are a group of geeks and oddballs. We get to see one day in their lives as fan and new member Nightbird joins the group, just in time for the group to get a new line of action figures. But the members' extreme personalities and personal issues threaten to rip the group apart.. Tags: superhero"} +{"id": "91122", "title": "16 to Life", "year": 2009, "duration_min": 118, "rating": 4.4, "genres": "Comedy, Romance", "genres_pipe": "|Comedy|Romance|", "keywords": "affection, woman director", "tags_pipe": "|affection|woman director|", "overview": "Romantic comedy. A small town teenager's angst about sexual inexperience drives a comic quest for love and understanding on a birthday to end all birthdays.", "text_for_embedding": "16 to Life (2009). Genres: Comedy, Romance. Romantic comedy. A small town teenager's angst about sexual inexperience drives a comic quest for love and understanding on a birthday to end all birthdays.. Tags: affection, woman director"} +{"id": "18206", "title": "Alone With Her", "year": 2006, "duration_min": 78, "rating": 6.2, "genres": "Crime, Drama, Romance, Thriller", "genres_pipe": "|Crime|Drama|Romance|Thriller|", "keywords": "obsession, hidden camera, stalker, independent film, invasion of privacy, voyeurism", "tags_pipe": "|obsession|hidden camera|stalker|independent film|invasion of privacy|voyeurism|", "overview": "The harrowing story of a disturbed young man's attempts to win the affections of an unsuspecting young woman. When Doug first sees Amy, he instantly falls for her and begins to watch her every move, going so far as to set up spy cameras in her apartment. However, as his fascination grows into obsession he's no longer satisfied with just watching.", "text_for_embedding": "Alone With Her (2006). Genres: Crime, Drama, Romance, Thriller. The harrowing story of a disturbed young man's attempts to win the affections of an unsuspecting young woman. When Doug first sees Amy, he instantly falls for her and begins to watch her every move, going so far as to set up spy cameras in her apartment. However, as his fascination grows into obsession he's no longer satisfied with just watching.. Tags: obsession, hidden camera, stalker, independent film, invasion of privacy, voyeurism"} +{"id": "320146", "title": "Creative Control", "year": 2016, "duration_min": 97, "rating": 5.4, "genres": "Drama, Science Fiction", "genres_pipe": "|Drama|Science Fiction|", "keywords": "virtual reality, black and white", "tags_pipe": "|virtual reality|black and white|", "overview": "Smooth advertising executive David is in a relationship with yoga teacher Juliette. Then his eye is caught by Sophie, the girlfriend of his best friend Wim, a fashion photographer. Things get completely out of hand during a campaign for augmented reality-glasses, for which David designs an avatar of the coveted Sophie.", "text_for_embedding": "Creative Control (2016). Genres: Drama, Science Fiction. Smooth advertising executive David is in a relationship with yoga teacher Juliette. Then his eye is caught by Sophie, the girlfriend of his best friend Wim, a fashion photographer. Things get completely out of hand during a campaign for augmented reality-glasses, for which David designs an avatar of the coveted Sophie.. Tags: virtual reality, black and white"} +{"id": "13856", "title": "Special", "year": 2006, "duration_min": 81, "rating": 6.6, "genres": "Drama, Fantasy, Science Fiction", "genres_pipe": "|Drama|Fantasy|Science Fiction|", "keywords": "hallucination, superhero, independent film", "tags_pipe": "|hallucination|superhero|independent film|", "overview": "A lonely metermaid has a psychotic reaction to his medication and becomes convinced he's a superhero. A very select group of people in life are truly gifted. Special is a movie about everyone else.", "text_for_embedding": "Special (2006). Genres: Drama, Fantasy, Science Fiction. A lonely metermaid has a psychotic reaction to his medication and becomes convinced he's a superhero. A very select group of people in life are truly gifted. Special is a movie about everyone else.. Tags: hallucination, superhero, independent film"} +{"id": "219716", "title": "Sparkler", "year": 1999, "duration_min": 96, "rating": 0.0, "genres": "", "genres_pipe": "", "keywords": "", "tags_pipe": "", "overview": "Melba is a Californian trailer-park girl who is told to look for three kings by a phone psychic, and when she meets three guys - Trent, Brad and Joel traveling to Las Vegas, she decides they are those kings and joins them on a trip. In Vegas she meets her old high school pal Dottie.", "text_for_embedding": "Sparkler (1999). Genres: . Melba is a Californian trailer-park girl who is told to look for three kings by a phone psychic, and when she meets three guys - Trent, Brad and Joel traveling to Las Vegas, she decides they are those kings and joins them on a trip. In Vegas she meets her old high school pal Dottie.. Tags: "} +{"id": "56491", "title": "In Her Line of Fire", "year": 2006, "duration_min": 88, "rating": 3.3, "genres": "Drama, Action, Thriller", "genres_pipe": "|Drama|Action|Thriller|", "keywords": "rebel, usa president, hostage, airplane", "tags_pipe": "|rebel|usa president|hostage|airplane|", "overview": "When the Vice President's plane goes down near a remote Pacific island, he is kidnapped by rebel forces and held for ransom. It is up to his female Secret Service agent and a press secretary to infiltrate the camp and save him.", "text_for_embedding": "In Her Line of Fire (2006). Genres: Drama, Action, Thriller. When the Vice President's plane goes down near a remote Pacific island, he is kidnapped by rebel forces and held for ransom. It is up to his female Secret Service agent and a press secretary to infiltrate the camp and save him.. Tags: rebel, usa president, hostage, airplane"} +{"id": "99826", "title": "The Jimmy Show", "year": 2002, "duration_min": 96, "rating": 8.0, "genres": "Comedy, Drama", "genres_pipe": "|Comedy|Drama|", "keywords": "stand-up comedy", "tags_pipe": "|stand-up comedy|", "overview": "A failed New Jersey inventor embarks on a career as a standup comic, turns to drink, and labors to keep his family together.", "text_for_embedding": "The Jimmy Show (2002). Genres: Comedy, Drama. A failed New Jersey inventor embarks on a career as a standup comic, turns to drink, and labors to keep his family together.. Tags: stand-up comedy"} +{"id": "186935", "title": "Heli", "year": 2013, "duration_min": 105, "rating": 6.2, "genres": "Crime, Drama", "genres_pipe": "|Crime|Drama|", "keywords": "drug cartel, extreme violence", "tags_pipe": "|drug cartel|extreme violence|", "overview": "Heli must try and protect his young family when his 12-year-old sister inadvertently involves them in the brutal drug world. He must battle against the drug cartel that have been angered as well as the corrupt police force.", "text_for_embedding": "Heli (2013). Genres: Crime, Drama. Heli must try and protect his young family when his 12-year-old sister inadvertently involves them in the brutal drug world. He must battle against the drug cartel that have been angered as well as the corrupt police force.. Tags: drug cartel, extreme violence"} +{"id": "19344", "title": "Loving Annabelle", "year": 2006, "duration_min": 76, "rating": 6.4, "genres": "Drama, Romance", "genres_pipe": "|Drama|Romance|", "keywords": "bisexuality, australia, twin brother, friends, melbourne, teacher, lesbian, lgbt, woman director", "tags_pipe": "|bisexuality|australia|twin brother|friends|melbourne|teacher|lesbian|lgbt|woman director|", "overview": "Annabelle is the wise-beyond-her-years newcomer to an exclusive Catholic girls school. Having been expelled from her first two schools she's bound to stir some trouble. Sparks fly though when sexual chemistry appears between her and the Head of her dorm and English teacher, Simone Bradley. Annabelle pursues her relentlessly and until the end the older woman manages to avoid the law.", "text_for_embedding": "Loving Annabelle (2006). Genres: Drama, Romance. Annabelle is the wise-beyond-her-years newcomer to an exclusive Catholic girls school. Having been expelled from her first two schools she's bound to stir some trouble. Sparks fly though when sexual chemistry appears between her and the Head of her dorm and English teacher, Simone Bradley. Annabelle pursues her relentlessly and until the end the older woman manages to avoid the law.. Tags: bisexuality, australia, twin brother, friends, melbourne, teacher, lesbian, lgbt, woman director"} +{"id": "242083", "title": "Hits", "year": 2014, "duration_min": 96, "rating": 4.9, "genres": "Drama, Comedy", "genres_pipe": "|Drama|Comedy|", "keywords": "talent, delusion, fame, teenager, viral video", "tags_pipe": "|talent|delusion|fame|teenager|viral video|", "overview": "A talentless teen will do anything to get on TV's \"The Voice.\" Meanwhile, her father, a municipal worker, creates an uproar when a video of his rants at City Hall goes viral.", "text_for_embedding": "Hits (2014). Genres: Drama, Comedy. A talentless teen will do anything to get on TV's \"The Voice.\" Meanwhile, her father, a municipal worker, creates an uproar when a video of his rants at City Hall goes viral.. Tags: talent, delusion, fame, teenager, viral video"} +{"id": "18869", "title": "Jimmy and Judy", "year": 2006, "duration_min": 99, "rating": 5.4, "genres": "Action, Crime, Drama, Thriller", "genres_pipe": "|Action|Crime|Drama|Thriller|", "keywords": "police, revenge, independent film, video camera, on the run", "tags_pipe": "|police|revenge|independent film|video camera|on the run|", "overview": "Two misunderstood suburban kids challenge society and run from the police while documenting all of their deeds with a digital camera.", "text_for_embedding": "Jimmy and Judy (2006). Genres: Action, Crime, Drama, Thriller. Two misunderstood suburban kids challenge society and run from the police while documenting all of their deeds with a digital camera.. Tags: police, revenge, independent film, video camera, on the run"} +{"id": "26673", "title": "Frat Party", "year": 2009, "duration_min": 84, "rating": 3.5, "genres": "Comedy, Romance", "genres_pipe": "|Comedy|Romance|", "keywords": "sport", "tags_pipe": "|sport|", "overview": "Duffy the big man on campus who is marrying Adriana, a debutante heiress to a global wine fortune, right after they both graduate from the same prestigious University. Unfortunately , the final Frat Party of his college career is the night before his wedding and there are many obstacles in his way, including a soon to be Father -In-Law who is less than happy with his daughter's choice.", "text_for_embedding": "Frat Party (2009). Genres: Comedy, Romance. Duffy the big man on campus who is marrying Adriana, a debutante heiress to a global wine fortune, right after they both graduate from the same prestigious University. Unfortunately , the final Frat Party of his college career is the night before his wedding and there are many obstacles in his way, including a soon to be Father -In-Law who is less than happy with his daughter's choice.. Tags: sport"} +{"id": "41830", "title": "The Party's Over", "year": 1965, "duration_min": 94, "rating": 6.1, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "london england, beatnik", "tags_pipe": "|london england|beatnik|", "overview": "An American businessman visits London and is horrified to discover his nubile teenage daughter has become involved with a gang of thuggish \"beatniks\". Her involvement leads to wild parties, sex, death and necrophilia.", "text_for_embedding": "The Party's Over (1965). Genres: Drama. An American businessman visits London and is horrified to discover his nubile teenage daughter has become involved with a gang of thuggish \"beatniks\". Her involvement leads to wild parties, sex, death and necrophilia.. Tags: london england, beatnik"} +{"id": "37694", "title": "Proud", "year": 2004, "duration_min": 87, "rating": 5.5, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "woman director", "tags_pipe": "|woman director|", "overview": "The true story of the only African-American crew to take a Navy warship into combat in World War II.", "text_for_embedding": "Proud (2004). Genres: Drama. The true story of the only African-American crew to take a Navy warship into combat in World War II.. Tags: woman director"} +{"id": "63287", "title": "The Poker House", "year": 2008, "duration_min": 93, "rating": 6.1, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "rape, drug abuse, independent film", "tags_pipe": "|rape|drug abuse|independent film|", "overview": "Actress Lori Petty makes her directorial debut with this poignant, beautifully crafted film about a teenage girl trying to survive the dismal circumstances of her life with dignity, humor, and basketball.", "text_for_embedding": "The Poker House (2008). Genres: Drama. Actress Lori Petty makes her directorial debut with this poignant, beautifully crafted film about a teenage girl trying to survive the dismal circumstances of her life with dignity, humor, and basketball.. Tags: rape, drug abuse, independent film"} +{"id": "335874", "title": "Childless", "year": 2015, "duration_min": 90, "rating": 4.5, "genres": "", "genres_pipe": "", "keywords": "", "tags_pipe": "", "overview": "Katherine is a typical teenager. Today's her funeral. The four adults in her life have a lot on their mind - and it's not all about Katherine either. With a frankness that's strikingly disarming as well as frequently self-serving, the grown-ups struggle with being... well... grown-up.", "text_for_embedding": "Childless (2015). Genres: . Katherine is a typical teenager. Today's her funeral. The four adults in her life have a lot on their mind - and it's not all about Katherine either. With a frankness that's strikingly disarming as well as frequently self-serving, the grown-ups struggle with being... well... grown-up.. Tags: "} +{"id": "34592", "title": "ZMD: Zombies of Mass Destruction", "year": 2009, "duration_min": 92, "rating": 4.7, "genres": "Horror", "genres_pipe": "|Horror|", "keywords": "racist, religion", "tags_pipe": "|racist|religion|", "overview": "An idyllic island town is under attack by that most invasive of pests: zombies! Port Gamble is being overrun with braineaters, and the people seem powerless to stave them off. But wait, a rag tag band of rebels is trying to turn the tide and push the invading hordes of undead back.", "text_for_embedding": "ZMD: Zombies of Mass Destruction (2009). Genres: Horror. An idyllic island town is under attack by that most invasive of pests: zombies! Port Gamble is being overrun with braineaters, and the people seem powerless to stave them off. But wait, a rag tag band of rebels is trying to turn the tide and push the invading hordes of undead back.. Tags: racist, religion"} +{"id": "92635", "title": "Snow White: A Deadly Summer", "year": 2012, "duration_min": 85, "rating": 4.8, "genres": "Horror, Thriller", "genres_pipe": "|Horror|Thriller|", "keywords": "", "tags_pipe": "", "overview": "A troubled teenage girl finds herself in a web of lies and deceit when her stepmother attempts to murder her by sending her to a discipline camp.", "text_for_embedding": "Snow White: A Deadly Summer (2012). Genres: Horror, Thriller. A troubled teenage girl finds herself in a web of lies and deceit when her stepmother attempts to murder her by sending her to a discipline camp.. Tags: "} +{"id": "258755", "title": "Hidden Away", "year": 2014, "duration_min": 96, "rating": 7.6, "genres": "Romance, Drama", "genres_pipe": "|Romance|Drama|", "keywords": "", "tags_pipe": "", "overview": "At the age of 14 the world around you changes at a dizzying speed. But what if actually it's you that changing? What if these changes take you away from what up until now, has been your world? Ibrahim and Rafa are going to suffer these changes for themselves, experiencing first love in a way they never could have imagined. And having to keep it Hidden away.", "text_for_embedding": "Hidden Away (2014). Genres: Romance, Drama. At the age of 14 the world around you changes at a dizzying speed. But what if actually it's you that changing? What if these changes take you away from what up until now, has been your world? Ibrahim and Rafa are going to suffer these changes for themselves, experiencing first love in a way they never could have imagined. And having to keep it Hidden away.. Tags: "} +{"id": "96534", "title": "My Last Day Without You", "year": 2011, "duration_min": 90, "rating": 5.7, "genres": "Comedy, Drama, Romance", "genres_pipe": "|Comedy|Drama|Romance|", "keywords": "", "tags_pipe": "", "overview": "On a one-day business trip to New York, a young German business executive falls in love with a singer-songwriter who exposes him to her Brooklyn world and emotions he's never experienced before.", "text_for_embedding": "My Last Day Without You (2011). Genres: Comedy, Drama, Romance. On a one-day business trip to New York, a young German business executive falls in love with a singer-songwriter who exposes him to her Brooklyn world and emotions he's never experienced before.. Tags: "} +{"id": "21283", "title": "Steppin: The Movie", "year": 2009, "duration_min": 85, "rating": 5.0, "genres": "Comedy, Romance", "genres_pipe": "|Comedy|Romance|", "keywords": "", "tags_pipe": "", "overview": "Every college campus has its rivalries and UTS is no different. At this university, the Geeks run the campus and the greatest Steppers are king of the hill. When a local radio station announces the beginning of the step competition season, the campus fraternities and sororities fight to recruit the best talent that will help them win the big-money prize.", "text_for_embedding": "Steppin: The Movie (2009). Genres: Comedy, Romance. Every college campus has its rivalries and UTS is no different. At this university, the Geeks run the campus and the greatest Steppers are king of the hill. When a local radio station announces the beginning of the step competition season, the campus fraternities and sororities fight to recruit the best talent that will help them win the big-money prize.. Tags: "} +{"id": "272724", "title": "Doc Holliday's Revenge", "year": 2014, "duration_min": 84, "rating": 3.2, "genres": "Western", "genres_pipe": "|Western|", "keywords": "", "tags_pipe": "", "overview": "In 1882, Joseph and Elizabeth Cooley head West to reunite with family she never knew. But when she, Joseph, and her older brother, Millard, are stranded in a logging camp just outside Tucson a wounded Indian stumbles into their camp and they must defend him against Doc Holliday, his would-be killer. Elizabeth considers Doc a stone-cold killer -- but may find, during the course of their tense stand-off, that this courtly, ailing man has a surprisingly well-honed sense of justice, frontier-style...", "text_for_embedding": "Doc Holliday's Revenge (2014). Genres: Western. In 1882, Joseph and Elizabeth Cooley head West to reunite with family she never knew. But when she, Joseph, and her older brother, Millard, are stranded in a logging camp just outside Tucson a wounded Indian stumbles into their camp and they must defend him against Doc Holliday, his would-be killer. Elizabeth considers Doc a stone-cold killer -- but may find, during the course of their tense stand-off, that this courtly, ailing man has a surprisingly well-honed sense of justice, frontier-style.... Tags: "} +{"id": "84178", "title": "Black Rock", "year": 2012, "duration_min": 83, "rating": 4.9, "genres": "Thriller, Horror", "genres_pipe": "|Thriller|Horror|", "keywords": "friends, remote island, woman director", "tags_pipe": "|friends|remote island|woman director|", "overview": "Three childhood friends set aside their personal issues and reunite for a girls’ weekend on a remote island off the coast of Maine. One wrong move turns their weekend getaway into a deadly fight for survival.", "text_for_embedding": "Black Rock (2012). Genres: Thriller, Horror. Three childhood friends set aside their personal issues and reunite for a girls’ weekend on a remote island off the coast of Maine. One wrong move turns their weekend getaway into a deadly fight for survival.. Tags: friends, remote island, woman director"} +{"id": "101179", "title": "Truth or Dare", "year": 2012, "duration_min": 95, "rating": 5.7, "genres": "Horror, Thriller, Mystery", "genres_pipe": "|Horror|Thriller|Mystery|", "keywords": "", "tags_pipe": "", "overview": "A group of college friends celebrate the end of term with a party to end all parties. During a drink and drug-fuelled evening, an innocent game of ‘Truth or Dare’ has a very sore loser, sparking a terrifying sequence of events and a whole new twist on the game of truth or dare – where the truth can kill you.", "text_for_embedding": "Truth or Dare (2012). Genres: Horror, Thriller, Mystery. A group of college friends celebrate the end of term with a party to end all parties. During a drink and drug-fuelled evening, an innocent game of ‘Truth or Dare’ has a very sore loser, sparking a terrifying sequence of events and a whole new twist on the game of truth or dare – where the truth can kill you.. Tags: "} +{"id": "52462", "title": "The Pet", "year": 2006, "duration_min": 94, "rating": 5.3, "genres": "Drama, Thriller", "genres_pipe": "|Drama|Thriller|", "keywords": "independent film", "tags_pipe": "|independent film|", "overview": "A young woman in dire financial straights accepts an offer to be a wealthy aristocrat's human \"pet\" for six months. Then ruthless modern \"pet-nappers\" kidnap the woman to sell her on the GSM (Global Slave Market).", "text_for_embedding": "The Pet (2006). Genres: Drama, Thriller. A young woman in dire financial straights accepts an offer to be a wealthy aristocrat's human \"pet\" for six months. Then ruthless modern \"pet-nappers\" kidnap the woman to sell her on the GSM (Global Slave Market).. Tags: independent film"} +{"id": "269057", "title": "Bang Bang Baby", "year": 2014, "duration_min": 90, "rating": 6.6, "genres": "Science Fiction, Drama, Music", "genres_pipe": "|Science Fiction|Drama|Music|", "keywords": "small town, rock star, musical, idol, teenager, 1960s, chemical leak, mutations", "tags_pipe": "|small town|rock star|musical|idol|teenager|1960s|chemical leak|mutations|", "overview": "A small town teenager in the 1960s believes her dreams of becoming a famous singer will come true when her rock star idol gets stranded in town. But a leak in a nearby chemical plant that is believed to be causing mass mutations threatens to turn her dream into a nightmare.", "text_for_embedding": "Bang Bang Baby (2014). Genres: Science Fiction, Drama, Music. A small town teenager in the 1960s believes her dreams of becoming a famous singer will come true when her rock star idol gets stranded in town. But a leak in a nearby chemical plant that is believed to be causing mass mutations threatens to turn her dream into a nightmare.. Tags: small town, rock star, musical, idol, teenager, 1960s, chemical leak, mutations"} +{"id": "287524", "title": "Fear Clinic", "year": 2014, "duration_min": 95, "rating": 4.0, "genres": "Horror", "genres_pipe": "|Horror|", "keywords": "phobia, doctor, fear", "tags_pipe": "|phobia|doctor|fear|", "overview": "A doctor works to cure patients suffering from crippling phobias by placing them inside his invention which induces and controls hallucinations.", "text_for_embedding": "Fear Clinic (2014). Genres: Horror. A doctor works to cure patients suffering from crippling phobias by placing them inside his invention which induces and controls hallucinations.. Tags: phobia, doctor, fear"} +{"id": "206213", "title": "Zombie Hunter", "year": 2013, "duration_min": 93, "rating": 3.5, "genres": "Comedy, Action, Science Fiction, Thriller", "genres_pipe": "|Comedy|Action|Science Fiction|Thriller|", "keywords": "mutant, post-apocalyptic, zombie", "tags_pipe": "|mutant|post-apocalyptic|zombie|", "overview": "Zombie Hunter is set in a post-apocalyptic Zombie wasteland caused by the mysterious street drug \"Natas\". We follow one man who has nothing left other than a beat up Camaro and a trunk full of guns and booze. He runs down Flesh Eaters, hunting for sport and redemption, while also running from his past. After crashing into a small group of survivors, who are running low on resources, he decides to lend a hand. But a surprise attack by the Flesh Eaters forces them on the run and puts the Hunter's skills to the test.", "text_for_embedding": "Zombie Hunter (2013). Genres: Comedy, Action, Science Fiction, Thriller. Zombie Hunter is set in a post-apocalyptic Zombie wasteland caused by the mysterious street drug \"Natas\". We follow one man who has nothing left other than a beat up Camaro and a trunk full of guns and booze. He runs down Flesh Eaters, hunting for sport and redemption, while also running from his past. After crashing into a small group of survivors, who are running low on resources, he decides to lend a hand. But a surprise attack by the Flesh Eaters forces them on the run and puts the Hunter's skills to the test.. Tags: mutant, post-apocalyptic, zombie"} +{"id": "248402", "title": "A Fine Step", "year": 2014, "duration_min": 90, "rating": 4.1, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "", "tags_pipe": "", "overview": "A Fine Step is an uplifting family drama centering on Cal Masterson (Luke Perry, Beverly Hills 90210) an award winning horseman whose relationship with his beloved horse Fandango allows him to achieve multiple championship wins. However tragedy strikes when Cal and Fandango are involved in a serious accident, ending Cal's horse riding days forever. Cal's devastation is slowly overcome when his new neighbour, 14 year old Claire Mason (Anna Claire Sneed, Glee) takes an interest in Fandango and convinces him that Fandango's competing days might not be over.", "text_for_embedding": "A Fine Step (2014). Genres: Drama. A Fine Step is an uplifting family drama centering on Cal Masterson (Luke Perry, Beverly Hills 90210) an award winning horseman whose relationship with his beloved horse Fandango allows him to achieve multiple championship wins. However tragedy strikes when Cal and Fandango are involved in a serious accident, ending Cal's horse riding days forever. Cal's devastation is slowly overcome when his new neighbour, 14 year old Claire Mason (Anna Claire Sneed, Glee) takes an interest in Fandango and convinces him that Fandango's competing days might not be over.. Tags: "} +{"id": "29146", "title": "Charly", "year": 1968, "duration_min": 103, "rating": 6.6, "genres": "Drama, Romance, Science Fiction", "genres_pipe": "|Drama|Romance|Science Fiction|", "keywords": "experiment, mouse, intelligence test, genius", "tags_pipe": "|experiment|mouse|intelligence test|genius|", "overview": "An experiment on a simpleton turns him into a genius. When he discovers what has been done to him he struggles with whether or not what was done to his was right.", "text_for_embedding": "Charly (1968). Genres: Drama, Romance, Science Fiction. An experiment on a simpleton turns him into a genius. When he discovers what has been done to him he struggles with whether or not what was done to his was right.. Tags: experiment, mouse, intelligence test, genius"} +{"id": "207769", "title": "Banshee Chapter", "year": 2013, "duration_min": 87, "rating": 5.7, "genres": "Horror, Thriller", "genres_pipe": "|Horror|Thriller|", "keywords": "lsd, government, conspiracy, tension, video camera, drug use, writer, desert, radio broadcast, mind bender, number stations, lovecraftian, mk ultra, experimental drug", "tags_pipe": "|lsd|government|conspiracy|tension|video camera|drug use|writer|desert|radio broadcast|mind bender|number stations|lovecraftian|mk ultra|experimental drug|", "overview": "On the trail of a missing friend who had been experimenting with mind-altering drugs, a young journalist - aided by a rogue counter-culture writer, The Silence of The Lambs -- finds herself drawn into the dangerous world of top-secret government chemical research and the mystery of a disturbing radio signal of unknown origin. A fast-paced thriller blending fact and fiction, Banshee Chapter is based on real documents, actual test subject testimony, and uncovered secrets about covert programs run by the CIA.", "text_for_embedding": "Banshee Chapter (2013). Genres: Horror, Thriller. On the trail of a missing friend who had been experimenting with mind-altering drugs, a young journalist - aided by a rogue counter-culture writer, The Silence of The Lambs -- finds herself drawn into the dangerous world of top-secret government chemical research and the mystery of a disturbing radio signal of unknown origin. A fast-paced thriller blending fact and fiction, Banshee Chapter is based on real documents, actual test subject testimony, and uncovered secrets about covert programs run by the CIA.. Tags: lsd, government, conspiracy, tension, video camera, drug use, writer, desert, radio broadcast, mind bender, number stations, lovecraftian, mk ultra, experimental drug"} +{"id": "271185", "title": "Ask Me Anything", "year": 2014, "duration_min": 100, "rating": 5.5, "genres": "Drama, Mystery, Thriller", "genres_pipe": "|Drama|Mystery|Thriller|", "keywords": "college, blog, dark secrets", "tags_pipe": "|college|blog|dark secrets|", "overview": "Beautiful, wild, funny, and lost, Katie Kampenfelt takes a year off before college to find herself, all the while chronicling her adventures in an anonymous blog into which she pours her innermost secrets. Eventually, Katie's fearless narrative begins to crack, and dark pieces of her past emerge.", "text_for_embedding": "Ask Me Anything (2014). Genres: Drama, Mystery, Thriller. Beautiful, wild, funny, and lost, Katie Kampenfelt takes a year off before college to find herself, all the while chronicling her adventures in an anonymous blog into which she pours her innermost secrets. Eventually, Katie's fearless narrative begins to crack, and dark pieces of her past emerge.. Tags: college, blog, dark secrets"} +{"id": "29731", "title": "And Then Came Love", "year": 2007, "duration_min": 90, "rating": 5.0, "genres": "Comedy, Romance", "genres_pipe": "|Comedy|Romance|", "keywords": "", "tags_pipe": "", "overview": "Successful New York journalist and single mom Julie Davidson's (Vanessa Williams) six-year old son Jake (Jeremy Gumbs) is acting up, so she finds his sperm-donor father Paul Cooper (Kevin Daniels), who's a struggling actor and law-school drop-out.", "text_for_embedding": "And Then Came Love (2007). Genres: Comedy, Romance. Successful New York journalist and single mom Julie Davidson's (Vanessa Williams) six-year old son Jake (Jeremy Gumbs) is acting up, so she finds his sperm-donor father Paul Cooper (Kevin Daniels), who's a struggling actor and law-school drop-out.. Tags: "} +{"id": "654", "title": "On the Waterfront", "year": 1954, "duration_min": 108, "rating": 8.0, "genres": "Crime, Drama", "genres_pipe": "|Crime|Drama|", "keywords": "murder, suspense, union, dock, longshoreman, pigeon", "tags_pipe": "|murder|suspense|union|dock|longshoreman|pigeon|", "overview": "Terry Malloy dreams about being a prize fighter, while tending his pigeons and running errands at the docks for Johnny Friendly, the corrupt boss of the dockers union. Terry witnesses a murder by two of Johnny's thugs, and later meets the dead man's sister and feels responsible for his death. She introduces him to Father Barry, who tries to force him to provide information for the courts that will smash the dock racketeers.", "text_for_embedding": "On the Waterfront (1954). Genres: Crime, Drama. Terry Malloy dreams about being a prize fighter, while tending his pigeons and running errands at the docks for Johnny Friendly, the corrupt boss of the dockers union. Terry witnesses a murder by two of Johnny's thugs, and later meets the dead man's sister and feels responsible for his death. She introduces him to Father Barry, who tries to force him to provide information for the courts that will smash the dock racketeers.. Tags: murder, suspense, union, dock, longshoreman, pigeon"} +{"id": "91070", "title": "L!fe Happens", "year": 2011, "duration_min": 100, "rating": 5.3, "genres": "Comedy", "genres_pipe": "|Comedy|", "keywords": "baby, roommate, friendship, single, los angeles, dating, pregnancy, woman director", "tags_pipe": "|baby|roommate|friendship|single|los angeles|dating|pregnancy|woman director|", "overview": "A comedy centered on two best friends, Kim and Deena, who fight to maintain normalcy in their lives after Kim gets pregnant and has a baby.", "text_for_embedding": "L!fe Happens (2011). Genres: Comedy. A comedy centered on two best friends, Kim and Deena, who fight to maintain normalcy in their lives after Kim gets pregnant and has a baby.. Tags: baby, roommate, friendship, single, los angeles, dating, pregnancy, woman director"} +{"id": "2009", "title": "4 Months, 3 Weeks and 2 Days", "year": 2007, "duration_min": 113, "rating": 7.3, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "rape, hotel room, totalitarian regime, cohabitant, female friendship, dormitory, best friend, contraception, romanian new wave", "tags_pipe": "|rape|hotel room|totalitarian regime|cohabitant|female friendship|dormitory|best friend|contraception|romanian new wave|", "overview": "Gabita is pregnant, abortion is strictly forbidden in Romania during the communist regime. Despite this it is common practice and Gabita wants an abortion. The movie follows her and her friend Otilia during the day she has made the appointment with Mr. Bebe to have the abortion.", "text_for_embedding": "4 Months, 3 Weeks and 2 Days (2007). Genres: Drama. Gabita is pregnant, abortion is strictly forbidden in Romania during the communist regime. Despite this it is common practice and Gabita wants an abortion. The movie follows her and her friend Otilia during the day she has made the appointment with Mr. Bebe to have the abortion.. Tags: rape, hotel room, totalitarian regime, cohabitant, female friendship, dormitory, best friend, contraception, romanian new wave"} +{"id": "2652", "title": "Hard Candy", "year": 2005, "duration_min": 103, "rating": 6.8, "genres": "Drama, Thriller", "genres_pipe": "|Drama|Thriller|", "keywords": "suicide, rape, age difference, photographer, ice, shower, menace, lie, pedophilia, manipulation, bedroom, sadism, electric shock, coffee shop, castration", "tags_pipe": "|suicide|rape|age difference|photographer|ice|shower|menace|lie|pedophilia|manipulation|bedroom|sadism|electric shock|coffee shop|castration|", "overview": "A mature 14-year old girl meets a charming 32-year old photographer on the Internet. Suspecting that he is a pedophile, she goes to his home in an attempt to expose him.", "text_for_embedding": "Hard Candy (2005). Genres: Drama, Thriller. A mature 14-year old girl meets a charming 32-year old photographer on the Internet. Suspecting that he is a pedophile, she goes to his home in an attempt to expose him.. Tags: suicide, rape, age difference, photographer, ice, shower, menace, lie, pedophilia, manipulation, bedroom, sadism, electric shock, coffee shop, castration"} +{"id": "9813", "title": "The Quiet", "year": 2005, "duration_min": 96, "rating": 6.1, "genres": "Drama, Thriller", "genres_pipe": "|Drama|Thriller|", "keywords": "depression, christmas party, deaf-mute, daughter, high school sports, blood splatter, independent film, mother daughter relationship, incest, woman director", "tags_pipe": "|depression|christmas party|deaf-mute|daughter|high school sports|blood splatter|independent film|mother daughter relationship|incest|woman director|", "overview": "After her widowed father dies, deaf teenager Dot moves in with her godparents, Olivia and Paul Deer. The Deers' daughter, Nina, is openly hostile to Dot, but that does not prevent her from telling her secrets to her silent stepsister, including the fact that she wants to kill her lecherous father.", "text_for_embedding": "The Quiet (2005). Genres: Drama, Thriller. After her widowed father dies, deaf teenager Dot moves in with her godparents, Olivia and Paul Deer. The Deers' daughter, Nina, is openly hostile to Dot, but that does not prevent her from telling her secrets to her silent stepsister, including the fact that she wants to kill her lecherous father.. Tags: depression, christmas party, deaf-mute, daughter, high school sports, blood splatter, independent film, mother daughter relationship, incest, woman director"} +{"id": "60421", "title": "Circumstance", "year": 2011, "duration_min": 107, "rating": 7.4, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "sexual identity, lesbian relationship, homosexuality, woman director", "tags_pipe": "|sexual identity|lesbian relationship|homosexuality|woman director|", "overview": "A wealthy Iranian family struggles to contain a teenager's growing sexual rebellion and her brother's dangerous obsession", "text_for_embedding": "Circumstance (2011). Genres: Drama. A wealthy Iranian family struggles to contain a teenager's growing sexual rebellion and her brother's dangerous obsession. Tags: sexual identity, lesbian relationship, homosexuality, woman director"} +{"id": "157354", "title": "Fruitvale Station", "year": 2013, "duration_min": 85, "rating": 7.3, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "police brutality, based on true story, racism, docudrama, day in a life", "tags_pipe": "|police brutality|based on true story|racism|docudrama|day in a life|", "overview": "The true story of Oscar, a 22-year-old Bay Area resident, who crosses paths with friends, enemies, family, and strangers on the last day of 2008.", "text_for_embedding": "Fruitvale Station (2013). Genres: Drama. The true story of Oscar, a 22-year-old Bay Area resident, who crosses paths with friends, enemies, family, and strangers on the last day of 2008.. Tags: police brutality, based on true story, racism, docudrama, day in a life"} +{"id": "127867", "title": "The Brass Teapot", "year": 2012, "duration_min": 100, "rating": 5.8, "genres": "Comedy, Fantasy, Thriller", "genres_pipe": "|Comedy|Fantasy|Thriller|", "keywords": "fantasy, based on comic book, money, magical object, woman director", "tags_pipe": "|fantasy|based on comic book|money|magical object|woman director|", "overview": "When a couple discovers that a brass teapot makes them money whenever they hurt themselves, they must come to terms with how far they are willing to go.", "text_for_embedding": "The Brass Teapot (2012). Genres: Comedy, Fantasy, Thriller. When a couple discovers that a brass teapot makes them money whenever they hurt themselves, they must come to terms with how far they are willing to go.. Tags: fantasy, based on comic book, money, magical object, woman director"} +{"id": "3170", "title": "Bambi", "year": 1942, "duration_min": 70, "rating": 6.8, "genres": "Animation, Drama, Family", "genres_pipe": "|Animation|Drama|Family|", "keywords": "forest, coming of age, best friend, loss of loved one", "tags_pipe": "|forest|coming of age|best friend|loss of loved one|", "overview": "Bambi's tale unfolds from season to season as the young prince of the forest learns about life, love, and friends.", "text_for_embedding": "Bambi (1942). Genres: Animation, Drama, Family. Bambi's tale unfolds from season to season as the young prince of the forest learns about life, love, and friends.. Tags: forest, coming of age, best friend, loss of loved one"} +{"id": "14014", "title": "The Hammer", "year": 2007, "duration_min": 88, "rating": 6.5, "genres": "Comedy", "genres_pipe": "|Comedy|", "keywords": "transporter, sport, independent film", "tags_pipe": "|transporter|sport|independent film|", "overview": "Approaching forty, Ferro is unsatisfied with his life as a construction worker and part-time boxing instructor in Los Angeles, CA. After a successful bout with a young pro boxer, Ferro decides to don the gloves one last time. The movie recounts his unlikely quest for Olympic gold.", "text_for_embedding": "The Hammer (2007). Genres: Comedy. Approaching forty, Ferro is unsatisfied with his life as a construction worker and part-time boxing instructor in Los Angeles, CA. After a successful bout with a young pro boxer, Ferro decides to don the gloves one last time. The movie recounts his unlikely quest for Olympic gold.. Tags: transporter, sport, independent film"} +{"id": "15708", "title": "Latter Days", "year": 2003, "duration_min": 107, "rating": 6.7, "genres": "Drama, Comedy, Romance", "genres_pipe": "|Drama|Comedy|Romance|", "keywords": "gay, coming out, religion, mormon", "tags_pipe": "|gay|coming out|religion|mormon|", "overview": "Aaron Davis (Steve Sandvoss) and Christian Markelli (Wes Ramsey) are the two most opposite people in the world. Aaron is a young Elder (or a Mormon missionary) who wants to do his family proud and is quite passionate about his religion and film. Christian is a shallow WeHo waiter/party boy who only looks forward to bedding a new guy every night.", "text_for_embedding": "Latter Days (2003). Genres: Drama, Comedy, Romance. Aaron Davis (Steve Sandvoss) and Christian Markelli (Wes Ramsey) are the two most opposite people in the world. Aaron is a young Elder (or a Mormon missionary) who wants to do his family proud and is quite passionate about his religion and film. Christian is a shallow WeHo waiter/party boy who only looks forward to bedding a new guy every night.. Tags: gay, coming out, religion, mormon"} +{"id": "146882", "title": "Elza", "year": 2011, "duration_min": 78, "rating": 0.0, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "france, caribbean islands, caribbean, woman director", "tags_pipe": "|france|caribbean islands|caribbean|woman director|", "overview": "A young Parisian woman of Caribbean descent returns to her native island of Guadeloupe looking for the father she has never known.", "text_for_embedding": "Elza (2011). Genres: Drama. A young Parisian woman of Caribbean descent returns to her native island of Guadeloupe looking for the father she has never known.. Tags: france, caribbean islands, caribbean, woman director"} +{"id": "215918", "title": "1982", "year": 2013, "duration_min": 90, "rating": 5.0, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "drug addiction, father daughter relationship, semi autobiographical", "tags_pipe": "|drug addiction|father daughter relationship|semi autobiographical|", "overview": "1982, a film inspired by true events at the onset of the crack epidemic in Philadelphia, tells the story of a father and his efforts to protect his gifted daughter from the insidious epidemic which has literally come home via her drug-addicted mother. As his wife becomes more distant and unreliable, he struggles to raise his daughter on his own, while still striving to help his wife become clean. In the process, he learns some hard truths about his marriage and his life, which will ultimately test him as a parent, a husband, and a man", "text_for_embedding": "1982 (2013). Genres: Drama. 1982, a film inspired by true events at the onset of the crack epidemic in Philadelphia, tells the story of a father and his efforts to protect his gifted daughter from the insidious epidemic which has literally come home via her drug-addicted mother. As his wife becomes more distant and unreliable, he struggles to raise his daughter on his own, while still striving to help his wife become clean. In the process, he learns some hard truths about his marriage and his life, which will ultimately test him as a parent, a husband, and a man. Tags: drug addiction, father daughter relationship, semi autobiographical"} +{"id": "84200", "title": "For a Good Time, Call...", "year": 2012, "duration_min": 85, "rating": 5.8, "genres": "Comedy", "genres_pipe": "|Comedy|", "keywords": "crude humor, best friend, phone sex, innuendo, dirty joke", "tags_pipe": "|crude humor|best friend|phone sex|innuendo|dirty joke|", "overview": "College \"frenemies\" Lauren and Katie move in together after losing a relationship and rent control, respectively. Sharing Katie's late grandmother's apartment in New York City, the girls bicker with each other until one fateful night, when Katie's noisy bedroom activities make Lauren barge in and discover a dirty little secret. This revelation brings them closer together, and Lauren (the brains) and Katie (the talent) concoct a wildly successful business venture. As profits swell, the girls reevaluate their hopes and dreams and realize that just because someone pees in your hair in college doesn't mean she won't be your best friend 10 years later.", "text_for_embedding": "For a Good Time, Call... (2012). Genres: Comedy. College \"frenemies\" Lauren and Katie move in together after losing a relationship and rent control, respectively. Sharing Katie's late grandmother's apartment in New York City, the girls bicker with each other until one fateful night, when Katie's noisy bedroom activities make Lauren barge in and discover a dirty little secret. This revelation brings them closer together, and Lauren (the brains) and Katie (the talent) concoct a wildly successful business venture. As profits swell, the girls reevaluate their hopes and dreams and realize that just because someone pees in your hair in college doesn't mean she won't be your best friend 10 years later.. Tags: crude humor, best friend, phone sex, innuendo, dirty joke"} +{"id": "84184", "title": "Celeste & Jesse Forever", "year": 2012, "duration_min": 91, "rating": 6.4, "genres": "Comedy, Drama, Romance", "genres_pipe": "|Comedy|Drama|Romance|", "keywords": "relationship problems, male female relationship, divorce, best friends in love", "tags_pipe": "|relationship problems|male female relationship|divorce|best friends in love|", "overview": "Celeste and Jesse met in high school and got married young. They laugh at the same jokes and finish each other’s sentences. They are forever linked in their friends’ minds as the perfect couple – she, a high-powered businesswoman and budding novelist; he, a free spirit who keeps things from getting boring. Their only problem is that they have decided to get divorced. Can their perfect relationship withstand this minor setback?", "text_for_embedding": "Celeste & Jesse Forever (2012). Genres: Comedy, Drama, Romance. Celeste and Jesse met in high school and got married young. They laugh at the same jokes and finish each other’s sentences. They are forever linked in their friends’ minds as the perfect couple – she, a high-powered businesswoman and budding novelist; he, a free spirit who keeps things from getting boring. Their only problem is that they have decided to get divorced. Can their perfect relationship withstand this minor setback?. Tags: relationship problems, male female relationship, divorce, best friends in love"} +{"id": "45767", "title": "Time Changer", "year": 2002, "duration_min": 95, "rating": 5.2, "genres": "Comedy, Drama, Family, Science Fiction", "genres_pipe": "|Comedy|Drama|Family|Science Fiction|", "keywords": "time travel, time machine, christian film", "tags_pipe": "|time travel|time machine|christian film|", "overview": "The year is 1890 and Bible professor Russell Carlisle has written a new manuscript entitled \"The Changing Times\". His colleague, Dr. Norris Anderson, believes that what Carlisle has written could greatly affect the future of coming generations and, using his secret time machine, Anderson sends Carlisle over 100 years into the future, offering him a glimpse of where his beliefs will lead.", "text_for_embedding": "Time Changer (2002). Genres: Comedy, Drama, Family, Science Fiction. The year is 1890 and Bible professor Russell Carlisle has written a new manuscript entitled \"The Changing Times\". His colleague, Dr. Norris Anderson, believes that what Carlisle has written could greatly affect the future of coming generations and, using his secret time machine, Anderson sends Carlisle over 100 years into the future, offering him a glimpse of where his beliefs will lead.. Tags: time travel, time machine, christian film"} +{"id": "14823", "title": "London to Brighton", "year": 2006, "duration_min": 85, "rating": 6.5, "genres": "Crime, Drama, Thriller", "genres_pipe": "|Crime|Drama|Thriller|", "keywords": "suspense", "tags_pipe": "|suspense|", "overview": "It's 3:07am and two girls burst into a run down London toilet. Joanne is crying her eyes out and her clothing is ripped. Kelly's face is bruised and starting to swell. Duncan Allen lies in his bathroom bleeding to death. Duncan's son, Stuart, has found his father and wants answers. Derek, Kelly's pimp, needs to find Kelly or it will be him who pays.", "text_for_embedding": "London to Brighton (2006). Genres: Crime, Drama, Thriller. It's 3:07am and two girls burst into a run down London toilet. Joanne is crying her eyes out and her clothing is ripped. Kelly's face is bruised and starting to swell. Duncan Allen lies in his bathroom bleeding to death. Duncan's son, Stuart, has found his father and wants answers. Derek, Kelly's pimp, needs to find Kelly or it will be him who pays.. Tags: suspense"} +{"id": "367551", "title": "American Hero", "year": 2015, "duration_min": 86, "rating": 5.0, "genres": "Action, Comedy, Science Fiction", "genres_pipe": "|Action|Comedy|Science Fiction|", "keywords": "", "tags_pipe": "", "overview": "Melvin, a reluctant hero who is far from super, has been suppressing his telekinetic powers for years with booze, drugs, and women. In the process, he has failed at practically everything, most of all as a parent to his son. After a brush with death, Melvin decides to use his powers for good and clean up the streets of New Orleans with the help of his best friend/definitely-not-a-sidekick, Lucille. For a man who can do the impossible, it might be a fight even he can’t win.", "text_for_embedding": "American Hero (2015). Genres: Action, Comedy, Science Fiction. Melvin, a reluctant hero who is far from super, has been suppressing his telekinetic powers for years with booze, drugs, and women. In the process, he has failed at practically everything, most of all as a parent to his son. After a brush with death, Melvin decides to use his powers for good and clean up the streets of New Orleans with the help of his best friend/definitely-not-a-sidekick, Lucille. For a man who can do the impossible, it might be a fight even he can’t win.. Tags: "} +{"id": "343409", "title": "Windsor Drive", "year": 2015, "duration_min": 90, "rating": 2.0, "genres": "Thriller, Mystery", "genres_pipe": "|Thriller|Mystery|", "keywords": "woman director", "tags_pipe": "|woman director|", "overview": "River Miller, a mentally unstable actor haunted by the past, moves to Hollywood to start his life over, only to find his inner demons are inescapable.", "text_for_embedding": "Windsor Drive (2015). Genres: Thriller, Mystery. River Miller, a mentally unstable actor haunted by the past, moves to Hollywood to start his life over, only to find his inner demons are inescapable.. Tags: woman director"} +{"id": "60243", "title": "A Separation", "year": 2011, "duration_min": 123, "rating": 7.7, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "emigration, class, money, maid, divorce, iran, caregiver, alzheimer's disease, marital separation, iranian", "tags_pipe": "|emigration|class|money|maid|divorce|iran|caregiver|alzheimer's disease|marital separation|iranian|", "overview": "A married couple are faced with a difficult decision - to improve the life of their child by moving to another country or to stay in Iran and look after a deteriorating parent who has Alzheimer's disease.", "text_for_embedding": "A Separation (2011). Genres: Drama. A married couple are faced with a difficult decision - to improve the life of their child by moving to another country or to stay in Iran and look after a deteriorating parent who has Alzheimer's disease.. Tags: emigration, class, money, maid, divorce, iran, caregiver, alzheimer's disease, marital separation, iranian"} +{"id": "57294", "title": "Crying with Laughter", "year": 2009, "duration_min": 93, "rating": 7.0, "genres": "Comedy, Drama, Thriller", "genres_pipe": "|Comedy|Drama|Thriller|", "keywords": "kidnapping, stand-up comedy, dark comedy, night club, landlord, alcoholic, stand-up comedian, dark humor, swearing", "tags_pipe": "|kidnapping|stand-up comedy|dark comedy|night club|landlord|alcoholic|stand-up comedian|dark humor|swearing|", "overview": "Powerfully redemptive and darkly comedic revenge thriller set in the vicious world of stand-up comedy, starring Stephen McCole and Malcolm Shields.", "text_for_embedding": "Crying with Laughter (2009). Genres: Comedy, Drama, Thriller. Powerfully redemptive and darkly comedic revenge thriller set in the vicious world of stand-up comedy, starring Stephen McCole and Malcolm Shields.. Tags: kidnapping, stand-up comedy, dark comedy, night club, landlord, alcoholic, stand-up comedian, dark humor, swearing"} +{"id": "11446", "title": "Welcome to the Dollhouse", "year": 1995, "duration_min": 88, "rating": 6.9, "genres": "Comedy, Drama", "genres_pipe": "|Comedy|Drama|", "keywords": "parents kids relationship, sister sister relationship, mockery, ugliness, independent film, little girl, school life", "tags_pipe": "|parents kids relationship|sister sister relationship|mockery|ugliness|independent film|little girl|school life|", "overview": "An unattractive 7th grader struggles to cope with suburban life as the middle child with un-attentive parents and bullies at school.", "text_for_embedding": "Welcome to the Dollhouse (1995). Genres: Comedy, Drama. An unattractive 7th grader struggles to cope with suburban life as the middle child with un-attentive parents and bullies at school.. Tags: parents kids relationship, sister sister relationship, mockery, ugliness, independent film, little girl, school life"} +{"id": "47889", "title": "Ruby in Paradise", "year": 1993, "duration_min": 114, "rating": 5.6, "genres": "Drama, Romance", "genres_pipe": "|Drama|Romance|", "keywords": "independent film", "tags_pipe": "|independent film|", "overview": "Reeling from her mother's recent death, Ruby Lee Gissing relocates to Florida to start anew. After finding a job at a souvenir store, Ruby becomes friends with the shop's owner, Mildred Chambers, and slowly acclimates to her new surroundings. Before long, she's juggling the affections of Mildred's Lothario son, Ricky, and the good-natured Mike. As she wavers between Ricky and Mike, Ruby also tries to come to terms with her past.", "text_for_embedding": "Ruby in Paradise (1993). Genres: Drama, Romance. Reeling from her mother's recent death, Ruby Lee Gissing relocates to Florida to start anew. After finding a job at a souvenir store, Ruby becomes friends with the shop's owner, Mildred Chambers, and slowly acclimates to her new surroundings. Before long, she's juggling the affections of Mildred's Lothario son, Ricky, and the good-natured Mike. As she wavers between Ricky and Mike, Ruby also tries to come to terms with her past.. Tags: independent film"} +{"id": "25461", "title": "Raising Victor Vargas", "year": 2002, "duration_min": 88, "rating": 7.8, "genres": "Drama, Romance", "genres_pipe": "|Drama|Romance|", "keywords": "independent film", "tags_pipe": "|independent film|", "overview": "The film follows Victor, a Lower East Side teenager, as he deals with his eccentric family, including his strict grandmother, his bratty sister, and a younger brother who completely idolizes him. Along the way he tries to win the affections of Judy, who is very careful and calculating when it comes to how she deals with men.", "text_for_embedding": "Raising Victor Vargas (2002). Genres: Drama, Romance. The film follows Victor, a Lower East Side teenager, as he deals with his eccentric family, including his strict grandmother, his bratty sister, and a younger brother who completely idolizes him. Along the way he tries to win the affections of Judy, who is very careful and calculating when it comes to how she deals with men.. Tags: independent film"} +{"id": "905", "title": "Pandora's Box", "year": 1929, "duration_min": 109, "rating": 7.6, "genres": "Drama, Thriller, Romance", "genres_pipe": "|Drama|Thriller|Romance|", "keywords": "london england, casino, irony, forbidden love, loss of husband, reward, silent film", "tags_pipe": "|london england|casino|irony|forbidden love|loss of husband|reward|silent film|", "overview": "The rise and inevitable fall of an amoral but naive young woman whose insouciant eroticism inspires lust and violence in those around her.", "text_for_embedding": "Pandora's Box (1929). Genres: Drama, Thriller, Romance. The rise and inevitable fall of an amoral but naive young woman whose insouciant eroticism inspires lust and violence in those around her.. Tags: london england, casino, irony, forbidden love, loss of husband, reward, silent film"} +{"id": "78705", "title": "Live-In Maid", "year": 2004, "duration_min": 83, "rating": 7.8, "genres": "Drama, Foreign", "genres_pipe": "|Drama|Foreign|", "keywords": "", "tags_pipe": "", "overview": "Buenos Aires is in a deep recession. As the money runs out, the relationship between an employer and her live-in maid changes dramatically.", "text_for_embedding": "Live-In Maid (2004). Genres: Drama, Foreign. Buenos Aires is in a deep recession. As the money runs out, the relationship between an employer and her live-in maid changes dramatically.. Tags: "} +{"id": "25212", "title": "Deterrence", "year": 2000, "duration_min": 101, "rating": 6.1, "genres": "Action, Drama, Mystery, Thriller", "genres_pipe": "|Action|Drama|Mystery|Thriller|", "keywords": "diner, judgment call", "tags_pipe": "|diner|judgment call|", "overview": "The President of the United States must deal with an international military crisis while confined to a Colorado diner during a freak snowstorm.", "text_for_embedding": "Deterrence (2000). Genres: Action, Drama, Mystery, Thriller. The President of the United States must deal with an international military crisis while confined to a Colorado diner during a freak snowstorm.. Tags: diner, judgment call"} +{"id": "26899", "title": "The Mudge Boy", "year": 2003, "duration_min": 94, "rating": 7.3, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "chicken, bullying, rape of a male, misfit, homosexuality, independent film, coming of age, gay sex", "tags_pipe": "|chicken|bullying|rape of a male|misfit|homosexuality|independent film|coming of age|gay sex|", "overview": "Duncan Mudge, mid-teens, lives apart from his rural world populated by his distant father and rough local kids. His main companionship is a chicken left after his mother's death until the neighbor's son befriends him.", "text_for_embedding": "The Mudge Boy (2003). Genres: Drama. Duncan Mudge, mid-teens, lives apart from his rural world populated by his distant father and rough local kids. His main companionship is a chicken left after his mother's death until the neighbor's son befriends him.. Tags: chicken, bullying, rape of a male, misfit, homosexuality, independent film, coming of age, gay sex"} +{"id": "146269", "title": "The Young Unknowns", "year": 2000, "duration_min": 87, "rating": 0.0, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "woman director", "tags_pipe": "|woman director|", "overview": "Charlie, his sexy girlfriend, and his moronic best friend drink, drug, and self-destruct over the course of one day at Charlie's father home in Los Angeles.", "text_for_embedding": "The Young Unknowns (2000). Genres: Drama. Charlie, his sexy girlfriend, and his moronic best friend drink, drug, and self-destruct over the course of one day at Charlie's father home in Los Angeles.. Tags: woman director"} +{"id": "292483", "title": "Not Cool", "year": 2014, "duration_min": 90, "rating": 3.7, "genres": "Comedy", "genres_pipe": "|Comedy|", "keywords": "sex, thanksgiving, friendship, high school, love, coming of age, wild party", "tags_pipe": "|sex|thanksgiving|friendship|high school|love|coming of age|wild party|", "overview": "NOT COOL follows former prom king and college freshman Scott (Shane Dawson) who has just returned home for Thanksgiving break only to be dumped by his eccentric, long-term girlfriend. With his world turned upside down, Scott strikes an unlikely friendship with former classmate Tori (Cherami Leigh), an ugly duckling who blossomed in her first semester of college. Together, the two embark on an outrageous adventure through their hometown. But when Scott and Tori find their friendship turning into something deeper, they realize that a few months away may have changed them more than they realized.", "text_for_embedding": "Not Cool (2014). Genres: Comedy. NOT COOL follows former prom king and college freshman Scott (Shane Dawson) who has just returned home for Thanksgiving break only to be dumped by his eccentric, long-term girlfriend. With his world turned upside down, Scott strikes an unlikely friendship with former classmate Tori (Cherami Leigh), an ugly duckling who blossomed in her first semester of college. Together, the two embark on an outrageous adventure through their hometown. But when Scott and Tori find their friendship turning into something deeper, they realize that a few months away may have changed them more than they realized.. Tags: sex, thanksgiving, friendship, high school, love, coming of age, wild party"} +{"id": "14451", "title": "Dead Snow", "year": 2009, "duration_min": 91, "rating": 6.1, "genres": "Horror, Comedy", "genres_pipe": "|Horror|Comedy|", "keywords": "norway, undead, zombie, wintry", "tags_pipe": "|norway|undead|zombie|wintry|", "overview": "Eight medical students on a ski trip to Norway discover that Hitler's horrors live on when they come face to face with a battalion of zombie Nazi soldiers intent on devouring anyone unfortunate enough to wander into the remote mountains where they were once sent to die.", "text_for_embedding": "Dead Snow (2009). Genres: Horror, Comedy. Eight medical students on a ski trip to Norway discover that Hitler's horrors live on when they come face to face with a battalion of zombie Nazi soldiers intent on devouring anyone unfortunate enough to wander into the remote mountains where they were once sent to die.. Tags: norway, undead, zombie, wintry"} +{"id": "10105", "title": "Saints and Soldiers", "year": 2003, "duration_min": 90, "rating": 6.6, "genres": "Action, Adventure, Drama, History, War", "genres_pipe": "|Action|Adventure|Drama|History|War|", "keywords": "winter, belgium, world war ii, nazis, bravery, ardennen, slaughter, nazi germany, soldier", "tags_pipe": "|winter|belgium|world war ii|nazis|bravery|ardennen|slaughter|nazi germany|soldier|", "overview": "Five American soldiers fighting in Europe during World War II struggle to return to Allied territory after being separated from U.S. forces during the historic Malmedy Massacre.", "text_for_embedding": "Saints and Soldiers (2003). Genres: Action, Adventure, Drama, History, War. Five American soldiers fighting in Europe during World War II struggle to return to Allied territory after being separated from U.S. forces during the historic Malmedy Massacre.. Tags: winter, belgium, world war ii, nazis, bravery, ardennen, slaughter, nazi germany, soldier"} +{"id": "211557", "title": "Vessel", "year": 2012, "duration_min": 14, "rating": 5.9, "genres": "Horror, Science Fiction", "genres_pipe": "|Horror|Science Fiction|", "keywords": "", "tags_pipe": "", "overview": "Vessel is the story of the passengers of Flight 298, a red-eye on its way from Boston to San Francisco. Midway through the flight the passengers encounter an otherworldly force and are subsequently thrown into a fight for their lives. The story focuses on Danny (an everyday traveler), Emma (a flight attendant), Chloe (an unattended underage passenger) and Jim and Murray (the two pilots). Written by Anonymous", "text_for_embedding": "Vessel (2012). Genres: Horror, Science Fiction. Vessel is the story of the passengers of Flight 298, a red-eye on its way from Boston to San Francisco. Midway through the flight the passengers encounter an otherworldly force and are subsequently thrown into a fight for their lives. The story focuses on Danny (an everyday traveler), Emma (a flight attendant), Chloe (an unattended underage passenger) and Jim and Murray (the two pilots). Written by Anonymous. Tags: "} +{"id": "838", "title": "American Graffiti", "year": 1973, "duration_min": 110, "rating": 6.9, "genres": "Comedy, Drama", "genres_pipe": "|Comedy|Drama|", "keywords": "farewell, rock and roll, robbery, love at first sight, car race, radio station, car breakdown, vandalism, radio, radio presenter, airplane, car, child", "tags_pipe": "|farewell|rock and roll|robbery|love at first sight|car race|radio station|car breakdown|vandalism|radio|radio presenter|airplane|car|child|", "overview": "A couple of high school graduates spend one final night cruising the strip with their buddies before they go off to college.", "text_for_embedding": "American Graffiti (1973). Genres: Comedy, Drama. A couple of high school graduates spend one final night cruising the strip with their buddies before they go off to college.. Tags: farewell, rock and roll, robbery, love at first sight, car race, radio station, car breakdown, vandalism, radio, radio presenter, airplane, car, child"} +{"id": "40862", "title": "Iraq for Sale: The War Profiteers", "year": 2006, "duration_min": 75, "rating": 8.0, "genres": "Documentary", "genres_pipe": "|Documentary|", "keywords": "", "tags_pipe": "", "overview": "Documentary portraying the actions of U.S. corporate contractors in the U.S.-Iraq war. Interviews with employees and former employees of such companies as Halliburton, CACI, and KBR suggest that government cronyism is behind apparent \"sweetheart\" deals that give such contractors enormous freedom to profit from supplying support and material to American troops while providing little oversight. Survivors of employees who were killed discuss the claim that the companies cared more for profit than for the welfare of their own workers, and soldiers indicate that the quality of services provided is sub-standard and severely in contradiction to the comparatively huge profits being generated. Also depicted are the unsuccessful attempts by the filmmakers to get company spokesmen to respond to the charges made by the interviewees.", "text_for_embedding": "Iraq for Sale: The War Profiteers (2006). Genres: Documentary. Documentary portraying the actions of U.S. corporate contractors in the U.S.-Iraq war. Interviews with employees and former employees of such companies as Halliburton, CACI, and KBR suggest that government cronyism is behind apparent \"sweetheart\" deals that give such contractors enormous freedom to profit from supplying support and material to American troops while providing little oversight. Survivors of employees who were killed discuss the claim that the companies cared more for profit than for the welfare of their own workers, and soldiers indicate that the quality of services provided is sub-standard and severely in contradiction to the comparatively huge profits being generated. Also depicted are the unsuccessful attempts by the filmmakers to get company spokesmen to respond to the charges made by the interviewees.. Tags: "} +{"id": "13158", "title": "Aqua Teen Hunger Force Colon Movie Film for Theaters", "year": 2007, "duration_min": 86, "rating": 6.5, "genres": "Animation, Comedy", "genres_pipe": "|Animation|Comedy|", "keywords": "africa, blood splatter, surrealism, blood, robot, adult animation", "tags_pipe": "|africa|blood splatter|surrealism|blood|robot|adult animation|", "overview": "An action epic that explores the origins of the Aqua Teen Hunger Force (better known as Master Shake, Frylock, and Meatwad,) who somehow become pitted in a battle over an immortal piece of exercise equipment.", "text_for_embedding": "Aqua Teen Hunger Force Colon Movie Film for Theaters (2007). Genres: Animation, Comedy. An action epic that explores the origins of the Aqua Teen Hunger Force (better known as Master Shake, Frylock, and Meatwad,) who somehow become pitted in a battle over an immortal piece of exercise equipment.. Tags: africa, blood splatter, surrealism, blood, robot, adult animation"} +{"id": "84332", "title": "Safety Not Guaranteed", "year": 2012, "duration_min": 85, "rating": 6.8, "genres": "Comedy, Romance, Science Fiction, Drama", "genres_pipe": "|Comedy|Romance|Science Fiction|Drama|", "keywords": "time travel", "tags_pipe": "|time travel|", "overview": "Three magazine employees head out on an assignment to interview a guy who placed a classified ad seeking a companion for time travel.", "text_for_embedding": "Safety Not Guaranteed (2012). Genres: Comedy, Romance, Science Fiction, Drama. Three magazine employees head out on an assignment to interview a guy who placed a classified ad seeking a companion for time travel.. Tags: time travel"} +{"id": "74510", "title": "Kevin Hart: Laugh at My Pain", "year": 2011, "duration_min": 89, "rating": 7.7, "genres": "Comedy, Documentary", "genres_pipe": "|Comedy|Documentary|", "keywords": "stand-up comedy", "tags_pipe": "|stand-up comedy|", "overview": "Experience the show that quickly became a national phenomenon. Get an up-close and personal look at Kevin Hart back in Philly where he began his journey to become one of the funniest comedians of all time. You will laugh 'til it hurts!", "text_for_embedding": "Kevin Hart: Laugh at My Pain (2011). Genres: Comedy, Documentary. Experience the show that quickly became a national phenomenon. Get an up-close and personal look at Kevin Hart back in Philly where he began his journey to become one of the funniest comedians of all time. You will laugh 'til it hurts!. Tags: stand-up comedy"} +{"id": "74725", "title": "Kill List", "year": 2011, "duration_min": 95, "rating": 6.0, "genres": "Horror, Thriller, Crime", "genres_pipe": "|Horror|Thriller|Crime|", "keywords": "hotel, wife husband relationship, hitman, infection, forest, cult, priest, murderer, brutality, bonfire, ceremony, ex soldier, ritual sacrifice, contract killer, video tape", "tags_pipe": "|hotel|wife husband relationship|hitman|infection|forest|cult|priest|murderer|brutality|bonfire|ceremony|ex soldier|ritual sacrifice|contract killer|video tape|", "overview": "Nearly a year after a botched job, a hitman takes a new assignment with the promise of a big payoff for three killings. What starts off as an easy task soon unravels, sending the killer into the heart of darkness.", "text_for_embedding": "Kill List (2011). Genres: Horror, Thriller, Crime. Nearly a year after a botched job, a hitman takes a new assignment with the promise of a big payoff for three killings. What starts off as an easy task soon unravels, sending the killer into the heart of darkness.. Tags: hotel, wife husband relationship, hitman, infection, forest, cult, priest, murderer, brutality, bonfire, ceremony, ex soldier, ritual sacrifice, contract killer, video tape"} +{"id": "58428", "title": "The Innkeepers", "year": 2011, "duration_min": 102, "rating": 5.4, "genres": "Horror, Thriller", "genres_pipe": "|Horror|Thriller|", "keywords": "anti terror, terror, beer, supernatural, towel, inn, phone, whispering, casa encantada, mumblegore", "tags_pipe": "|anti terror|terror|beer|supernatural|towel|inn|phone|whispering|casa encantada|mumblegore|", "overview": "During the final days at the Yankee Pedlar Inn, two employees determined to reveal the hotel's haunted past begin to experience disturbing events as old guests check in for a stay.", "text_for_embedding": "The Innkeepers (2011). Genres: Horror, Thriller. During the final days at the Yankee Pedlar Inn, two employees determined to reveal the hotel's haunted past begin to experience disturbing events as old guests check in for a stay.. Tags: anti terror, terror, beer, supernatural, towel, inn, phone, whispering, casa encantada, mumblegore"} +{"id": "8416", "title": "The Conformist", "year": 1970, "duration_min": 107, "rating": 7.6, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "paris, italy, assassin, fascism, benito mussolini", "tags_pipe": "|paris|italy|assassin|fascism|benito mussolini|", "overview": "A weak-willed Italian man becomes a fascist flunky who goes abroad to arrange the assassination of his old teacher, now a political dissident.", "text_for_embedding": "The Conformist (1970). Genres: Drama. A weak-willed Italian man becomes a fascist flunky who goes abroad to arrange the assassination of his old teacher, now a political dissident.. Tags: paris, italy, assassin, fascism, benito mussolini"} +{"id": "36584", "title": "Interview with the Assassin", "year": 2002, "duration_min": 88, "rating": 5.6, "genres": "Drama, Thriller", "genres_pipe": "|Drama|Thriller|", "keywords": "assassination, paranoia, suspense, conspiracy", "tags_pipe": "|assassination|paranoia|suspense|conspiracy|", "overview": "Out of work TV cameraman Ron Kobelski is approached by his formerly reclusive neighbor Walter Ohlinger. Ohlinger claims that he was the mysterious \"second gunman\" that shot and killed President Kennedy. Ohlinger has kept quiet all these years, but has decided to tell his story now that he has been diagnosed with terminal cancer. Kobelski is skeptical of his neighbor's story, after his investigations provide ambiguous answers. His attitude changes, however, after he receives threatening messages on his answering machine, and spots shadowy figures in his backyard. Is Ohlinger telling the truth? Or is there a bigger conspiracy at work?", "text_for_embedding": "Interview with the Assassin (2002). Genres: Drama, Thriller. Out of work TV cameraman Ron Kobelski is approached by his formerly reclusive neighbor Walter Ohlinger. Ohlinger claims that he was the mysterious \"second gunman\" that shot and killed President Kennedy. Ohlinger has kept quiet all these years, but has decided to tell his story now that he has been diagnosed with terminal cancer. Kobelski is skeptical of his neighbor's story, after his investigations provide ambiguous answers. His attitude changes, however, after he receives threatening messages on his answering machine, and spots shadowy figures in his backyard. Is Ohlinger telling the truth? Or is there a bigger conspiracy at work?. Tags: assassination, paranoia, suspense, conspiracy"} +{"id": "13429", "title": "Donkey Punch", "year": 2008, "duration_min": 99, "rating": 4.5, "genres": "Horror, Drama, Thriller, Crime", "genres_pipe": "|Horror|Drama|Thriller|Crime|", "keywords": "", "tags_pipe": "", "overview": "Three hot girls, four guys, and one mega-swanky yacht collide for a serious night of drugs and sexual deviancy. One debaucherous act goes too far though, turning this teen joy ride into a weekend of bloody bedlam.", "text_for_embedding": "Donkey Punch (2008). Genres: Horror, Drama, Thriller, Crime. Three hot girls, four guys, and one mega-swanky yacht collide for a serious night of drugs and sexual deviancy. One debaucherous act goes too far though, turning this teen joy ride into a weekend of bloody bedlam.. Tags: "} +{"id": "9022", "title": "All the Boys Love Mandy Lane", "year": 2008, "duration_min": 90, "rating": 5.7, "genres": "Horror, Mystery, Thriller", "genres_pipe": "|Horror|Mystery|Thriller|", "keywords": "suicide attempt, gun, texas, mass murder, farm worker, planned murder, beauty, dying and death, fraud, plan, surprise, farm, victim of murder, conspiracy of murder, high school", "tags_pipe": "|suicide attempt|gun|texas|mass murder|farm worker|planned murder|beauty|dying and death|fraud|plan|surprise|farm|victim of murder|conspiracy of murder|high school|", "overview": "Beautiful Mandy Lane isn't a party girl but, when classmate Chloe invites the Texas high school student to a bash in the countryside, she reluctantly accepts. After hitching a ride with a vaguely scary older man, the teens arrive at their destination. Partying ensues, and Mandy's close pal, Emmet, keeps a watchful eye on the young males making a play for Mandy. Then two of the students are murdered.", "text_for_embedding": "All the Boys Love Mandy Lane (2008). Genres: Horror, Mystery, Thriller. Beautiful Mandy Lane isn't a party girl but, when classmate Chloe invites the Texas high school student to a bash in the countryside, she reluctantly accepts. After hitching a ride with a vaguely scary older man, the teens arrive at their destination. Partying ensues, and Mandy's close pal, Emmet, keeps a watchful eye on the young males making a play for Mandy. Then two of the students are murdered.. Tags: suicide attempt, gun, texas, mass murder, farm worker, planned murder, beauty, dying and death, fraud, plan, surprise, farm, victim of murder, conspiracy of murder, high school"} +{"id": "22530", "title": "Bled", "year": 2008, "duration_min": 95, "rating": 3.8, "genres": "Horror", "genres_pipe": "|Horror|", "keywords": "vampire, daywalker", "tags_pipe": "|vampire|daywalker|", "overview": "Sai, a young artist living in a downtown warehouse delves into an ancient world of blood and lust. An enigmatic foreigner seduces her to try a long forgotten drug making her the prey of a dimensional vampire who needs her new found hunger for blood to cross over from his world to hers.", "text_for_embedding": "Bled (2008). Genres: Horror. Sai, a young artist living in a downtown warehouse delves into an ancient world of blood and lust. An enigmatic foreigner seduces her to try a long forgotten drug making her the prey of a dimensional vampire who needs her new found hunger for blood to cross over from his world to hers.. Tags: vampire, daywalker"} +{"id": "288", "title": "High Noon", "year": 1952, "duration_min": 85, "rating": 7.6, "genres": "Western", "genres_pipe": "|Western|", "keywords": "gunslinger, showdown, fistfight, morality, u.s. marshal, battle, justice, one against many, quick draw, brawl, street shootout", "tags_pipe": "|gunslinger|showdown|fistfight|morality|u.s. marshal|battle|justice|one against many|quick draw|brawl|street shootout|", "overview": "High Noon is about a recently freed leader of a gang of bandits in the desert who is looking to get revenge on the Sheriff who put him in jail. A legendary western film from the Austrian director Fred Zinnemann.", "text_for_embedding": "High Noon (1952). Genres: Western. High Noon is about a recently freed leader of a gang of bandits in the desert who is looking to get revenge on the Sheriff who put him in jail. A legendary western film from the Austrian director Fred Zinnemann.. Tags: gunslinger, showdown, fistfight, morality, u.s. marshal, battle, justice, one against many, quick draw, brawl, street shootout"} +{"id": "14275", "title": "Hoop Dreams", "year": 1994, "duration_min": 171, "rating": 7.7, "genres": "Documentary", "genres_pipe": "|Documentary|", "keywords": "chicago, sports team, ghetto, narration, college, sport, basketball, high school sports, independent film, inner city, high school student", "tags_pipe": "|chicago|sports team|ghetto|narration|college|sport|basketball|high school sports|independent film|inner city|high school student|", "overview": "This documentary follows two inner-city Chicago residents, Arthur Agee and William Gates, as they follow their dreams of becoming basketball superstars. Beginning at the start of their high school years, and ending almost 5 years later, as they start college, we watch the boys mature into men, still retaining their \"Hoop Dreams\".", "text_for_embedding": "Hoop Dreams (1994). Genres: Documentary. This documentary follows two inner-city Chicago residents, Arthur Agee and William Gates, as they follow their dreams of becoming basketball superstars. Beginning at the start of their high school years, and ending almost 5 years later, as they start college, we watch the boys mature into men, still retaining their \"Hoop Dreams\".. Tags: chicago, sports team, ghetto, narration, college, sport, basketball, high school sports, independent film, inner city, high school student"} +{"id": "2287", "title": "Rize", "year": 2005, "duration_min": 86, "rating": 5.9, "genres": "Documentary", "genres_pipe": "|Documentary|", "keywords": "street gang, hip-hop, dance, fight, breakdance, ghetto, musical, clowning, gang, los angeles", "tags_pipe": "|street gang|hip-hop|dance|fight|breakdance|ghetto|musical|clowning|gang|los angeles|", "overview": "A documentary film that highlights two street derived dance styles, Clowing and Krumping, that came out of the low income neighborhoods of L.A.. Director David LaChapelle interviews each dance crew about how their unique dances evolved. A new and positive activity away from the drugs, guns, and gangs that ruled their neighborhood. A raw film about a growing sub-culture movements in America.", "text_for_embedding": "Rize (2005). Genres: Documentary. A documentary film that highlights two street derived dance styles, Clowing and Krumping, that came out of the low income neighborhoods of L.A.. Director David LaChapelle interviews each dance crew about how their unique dances evolved. A new and positive activity away from the drugs, guns, and gangs that ruled their neighborhood. A raw film about a growing sub-culture movements in America.. Tags: street gang, hip-hop, dance, fight, breakdance, ghetto, musical, clowning, gang, los angeles"} +{"id": "18734", "title": "L.I.E.", "year": 2001, "duration_min": 97, "rating": 6.7, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "independent film", "tags_pipe": "|independent film|", "overview": "In this biting and disturbing coming-of-age tale from writer-director Michael Cuesta, life is bittersweet along the L.I.E., also known as the Long Island Expressway, as suburban teen Howie Blitzer learns all too clearly. In the space of a week, he loses nearly everything and everyone he knows and is left to navigate his adolescence virtually unsupervised.", "text_for_embedding": "L.I.E. (2001). Genres: Drama. In this biting and disturbing coming-of-age tale from writer-director Michael Cuesta, life is bittersweet along the L.I.E., also known as the Long Island Expressway, as suburban teen Howie Blitzer learns all too clearly. In the space of a week, he loses nearly everything and everyone he knows and is left to navigate his adolescence virtually unsupervised.. Tags: independent film"} +{"id": "206197", "title": "The Sisterhood of Night", "year": 2015, "duration_min": 104, "rating": 6.5, "genres": "Mystery, Drama, Thriller", "genres_pipe": "|Mystery|Drama|Thriller|", "keywords": "witch, woman director", "tags_pipe": "|witch|woman director|", "overview": "When a teenage girl says she's the victim of a secret network called The Sisterhood of Night, a quiet suburban town becomes the backdrop for a modern-day Salem witch trial.", "text_for_embedding": "The Sisterhood of Night (2015). Genres: Mystery, Drama, Thriller. When a teenage girl says she's the victim of a secret network called The Sisterhood of Night, a quiet suburban town becomes the backdrop for a modern-day Salem witch trial.. Tags: witch, woman director"} +{"id": "26837", "title": "B-Girl", "year": 2009, "duration_min": 84, "rating": 5.5, "genres": "Crime, Drama, Music", "genres_pipe": "|Crime|Drama|Music|", "keywords": "dancing, hip-hop, b-girl, street dance, b-boying, b-girling, dance crew, woman director", "tags_pipe": "|dancing|hip-hop|b-girl|street dance|b-boying|b-girling|dance crew|woman director|", "overview": "A young female breakdancer, Angel, moves to Los Angeles after an attack by an ex-boyfriend nearly ends her dance career forever. B-Girl follows Angel through recovery and acceptance of a new life as she busts a move into the male-centric world of underground hip hop.", "text_for_embedding": "B-Girl (2009). Genres: Crime, Drama, Music. A young female breakdancer, Angel, moves to Los Angeles after an attack by an ex-boyfriend nearly ends her dance career forever. B-Girl follows Angel through recovery and acceptance of a new life as she busts a move into the male-centric world of underground hip hop.. Tags: dancing, hip-hop, b-girl, street dance, b-boying, b-girling, dance crew, woman director"} +{"id": "7859", "title": "Half Nelson", "year": 2006, "duration_min": 107, "rating": 6.5, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "date, ex-girlfriend, bicycle, crack, independent film", "tags_pipe": "|date|ex-girlfriend|bicycle|crack|independent film|", "overview": "Despite his dedication to the junior-high students who fill his classroom, idealistic teacher Dan Dunne leads a secret life of addiction that the majority of his students will never know. But things change when a troubled student Drey makes a startling discovery of his secret life, causing a tenuous bond between the two that could either end disastrously or provide a catalyst of hope.", "text_for_embedding": "Half Nelson (2006). Genres: Drama. Despite his dedication to the junior-high students who fill his classroom, idealistic teacher Dan Dunne leads a secret life of addiction that the majority of his students will never know. But things change when a troubled student Drey makes a startling discovery of his secret life, causing a tenuous bond between the two that could either end disastrously or provide a catalyst of hope.. Tags: date, ex-girlfriend, bicycle, crack, independent film"} +{"id": "302579", "title": "Naturally Native", "year": 1999, "duration_min": 107, "rating": 0.0, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "native american, racism, family, woman director", "tags_pipe": "|native american|racism|family|woman director|", "overview": "Naturally Native follows the lives, loves, pain, joy and relationships of three sisters as they attempt to start their own business. Of American Indian ancestry, but adopted by white foster parents as young children, each sister has her own identity issues and each has chosen a very different career path. Now dedicated to starting a Native cosmetic business, they attempt to overcome obstacles both in the business world and in the home. A touching love story of family and culture, Naturally Native also interweaves a subtle, but strong wake-up call regarding the treatment of Native people in corporate America. Naturally Native also provides some insight into tribal infrastructure and gaming issues.", "text_for_embedding": "Naturally Native (1999). Genres: Drama. Naturally Native follows the lives, loves, pain, joy and relationships of three sisters as they attempt to start their own business. Of American Indian ancestry, but adopted by white foster parents as young children, each sister has her own identity issues and each has chosen a very different career path. Now dedicated to starting a Native cosmetic business, they attempt to overcome obstacles both in the business world and in the home. A touching love story of family and culture, Naturally Native also interweaves a subtle, but strong wake-up call regarding the treatment of Native people in corporate America. Naturally Native also provides some insight into tribal infrastructure and gaming issues.. Tags: native american, racism, family, woman director"} +{"id": "51955", "title": "Hav Plenty", "year": 1997, "duration_min": 92, "rating": 0.0, "genres": "Action, Comedy, Romance, Science Fiction, Thriller", "genres_pipe": "|Action|Comedy|Romance|Science Fiction|Thriller|", "keywords": "", "tags_pipe": "", "overview": "Lee Plenty is an almost broke would-be novelist and Havilland Savage is rich and very beautiful woman and his friend. When she invites him to her home for New Year's Eve, they start to build up a romance.", "text_for_embedding": "Hav Plenty (1997). Genres: Action, Comedy, Romance, Science Fiction, Thriller. Lee Plenty is an almost broke would-be novelist and Havilland Savage is rich and very beautiful woman and his friend. When she invites him to her home for New Year's Eve, they start to build up a romance.. Tags: "} +{"id": "376004", "title": "Adulterers", "year": 2016, "duration_min": 80, "rating": 5.2, "genres": "Thriller, Crime, Drama", "genres_pipe": "|Thriller|Crime|Drama|", "keywords": "", "tags_pipe": "", "overview": "A man who returns home to find his wife cheating on him on their anniversary. He holds her and her naked and humiliated lover captive at gunpoint while he decides whether or not he's going to kill them. The story, inspired by true events, takes place over one day and is set in New Orleans during a stifling heat wave.", "text_for_embedding": "Adulterers (2016). Genres: Thriller, Crime, Drama. A man who returns home to find his wife cheating on him on their anniversary. He holds her and her naked and humiliated lover captive at gunpoint while he decides whether or not he's going to kill them. The story, inspired by true events, takes place over one day and is set in New Orleans during a stifling heat wave.. Tags: "} +{"id": "158752", "title": "Escape from Tomorrow", "year": 2013, "duration_min": 90, "rating": 4.8, "genres": "Horror, Fantasy", "genres_pipe": "|Horror|Fantasy|", "keywords": "", "tags_pipe": "", "overview": "In a world of fake castles and anthropomorphic rodents, an epic battle begins when an unemployed father's sanity is challenged by a chance encounter with two underage girls on holiday.", "text_for_embedding": "Escape from Tomorrow (2013). Genres: Horror, Fantasy. In a world of fake castles and anthropomorphic rodents, an epic battle begins when an unemployed father's sanity is challenged by a chance encounter with two underage girls on holiday.. Tags: "} +{"id": "40658", "title": "Starsuckers", "year": 2009, "duration_min": 103, "rating": 6.2, "genres": "Documentary, Foreign", "genres_pipe": "|Documentary|Foreign|", "keywords": "", "tags_pipe": "", "overview": "Starsuckers is the most controversial documentary of the year, and was released in British cinemas in November 2009 to critical acclaim. It's a darkly humourous and shocking exposé of the celebrity obsessed media, that uncovers the real reasons behind our addiction to fame and blows the lid on the corporations and individuals who profit from it.", "text_for_embedding": "Starsuckers (2009). Genres: Documentary, Foreign. Starsuckers is the most controversial documentary of the year, and was released in British cinemas in November 2009 to critical acclaim. It's a darkly humourous and shocking exposé of the celebrity obsessed media, that uncovers the real reasons behind our addiction to fame and blows the lid on the corporations and individuals who profit from it.. Tags: "} +{"id": "296943", "title": "The Hadza: Last of the First", "year": 2014, "duration_min": 70, "rating": 0.0, "genres": "Documentary", "genres_pipe": "|Documentary|", "keywords": "", "tags_pipe": "", "overview": "A look at human origins in the very place of our origins, Africa's Rift Valley", "text_for_embedding": "The Hadza: Last of the First (2014). Genres: Documentary. A look at human origins in the very place of our origins, Africa's Rift Valley. Tags: "} +{"id": "118612", "title": "After", "year": 2012, "duration_min": 90, "rating": 5.6, "genres": "Mystery, Thriller", "genres_pipe": "|Mystery|Thriller|", "keywords": "coma, crash, accepting death", "tags_pipe": "|coma|crash|accepting death|", "overview": "When two bus crash survivors awake to discover that they are the only people left in their small town, they must form an unlikely alliance in a race to unravel the truth behind their isolation. As strange events begin to unfold, they start to question whether the town they know so well is really what it seems.", "text_for_embedding": "After (2012). Genres: Mystery, Thriller. When two bus crash survivors awake to discover that they are the only people left in their small town, they must form an unlikely alliance in a race to unravel the truth behind their isolation. As strange events begin to unfold, they start to question whether the town they know so well is really what it seems.. Tags: coma, crash, accepting death"} +{"id": "138976", "title": "Treachery", "year": 2013, "duration_min": 68, "rating": 4.8, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "", "tags_pipe": "", "overview": "Treachery centers on a man (Biehn) who is reunited with his estranged son at a remote wedding party. When a storm strands the party, ugly truths are revealed.", "text_for_embedding": "Treachery (2013). Genres: Drama. Treachery centers on a man (Biehn) who is reunited with his estranged son at a remote wedding party. When a storm strands the party, ugly truths are revealed.. Tags: "} +{"id": "323967", "title": "Walter", "year": 2015, "duration_min": 87, "rating": 5.3, "genres": "Drama, Comedy", "genres_pipe": "|Drama|Comedy|", "keywords": "god, woman director", "tags_pipe": "|god|woman director|", "overview": "A ticket-taker at the local cinema believes he is the son of God. He has agreed to decide the eternal fate of everyone he comes in to contact with.", "text_for_embedding": "Walter (2015). Genres: Drama, Comedy. A ticket-taker at the local cinema believes he is the son of God. He has agreed to decide the eternal fate of everyone he comes in to contact with.. Tags: god, woman director"} +{"id": "3080", "title": "Top Hat", "year": 1935, "duration_min": 101, "rating": 7.4, "genres": "Comedy, Music, Romance", "genres_pipe": "|Comedy|Music|Romance|", "keywords": "venice, dance, musical, tap dancing, stage show, fashion designer, mistaken identity, fashion, valet, rapier", "tags_pipe": "|venice|dance|musical|tap dancing|stage show|fashion designer|mistaken identity|fashion|valet|rapier|", "overview": "Showman Jerry Travers is working for producer Horace Hardwick in London. Jerry demonstrates his new dance steps late one night in Horace's hotel, much to the annoyance of sleeping Dale Tremont below. She goes upstairs to complain and the two are immediately attracted to each other. Complications arise when Dale mistakes Jerry for Horace.", "text_for_embedding": "Top Hat (1935). Genres: Comedy, Music, Romance. Showman Jerry Travers is working for producer Horace Hardwick in London. Jerry demonstrates his new dance steps late one night in Horace's hotel, much to the annoyance of sleeping Dale Tremont below. She goes upstairs to complain and the two are immediately attracted to each other. Complications arise when Dale mistakes Jerry for Horace.. Tags: venice, dance, musical, tap dancing, stage show, fashion designer, mistaken identity, fashion, valet, rapier"} +{"id": "2667", "title": "The Blair Witch Project", "year": 1999, "duration_min": 81, "rating": 6.3, "genres": "Horror, Mystery", "genres_pipe": "|Horror|Mystery|", "keywords": "witch, voodoo, legend, sorcery, maryland, forest, footage, horror, true, student, lost, found footage, film", "tags_pipe": "|witch|voodoo|legend|sorcery|maryland|forest|footage|horror|true|student|lost|found footage|film|", "overview": "In October of 1994 three student filmmakers disappeared in the woods near Burkittsville, Maryland, while shooting a documentary. A year later their footage was found.", "text_for_embedding": "The Blair Witch Project (1999). Genres: Horror, Mystery. In October of 1994 three student filmmakers disappeared in the woods near Burkittsville, Maryland, while shooting a documentary. A year later their footage was found.. Tags: witch, voodoo, legend, sorcery, maryland, forest, footage, horror, true, student, lost, found footage, film"} +{"id": "9459", "title": "Woodstock", "year": 1970, "duration_min": 225, "rating": 7.1, "genres": "History, Documentary, Music", "genres_pipe": "|History|Documentary|Music|", "keywords": "hippie, free love, musical, music, woodstock, music festival, rock music, summer", "tags_pipe": "|hippie|free love|musical|music|woodstock|music festival|rock music|summer|", "overview": "An intimate look at the Woodstock Music & Art Festival held in Bethel, NY in 1969, from preparation through cleanup, with historic access to insiders, blistering concert footage, and portraits of the concertgoers; negative and positive aspects are shown, from drug use by performers to naked fans sliding in the mud, from the collapse of the fences by the unexpected hordes to the surreal arrival of National Guard helicopters with food and medical assistance for the impromptu city of 500,000.", "text_for_embedding": "Woodstock (1970). Genres: History, Documentary, Music. An intimate look at the Woodstock Music & Art Festival held in Bethel, NY in 1969, from preparation through cleanup, with historic access to insiders, blistering concert footage, and portraits of the concertgoers; negative and positive aspects are shown, from drug use by performers to naked fans sliding in the mud, from the collapse of the fences by the unexpected hordes to the surreal arrival of National Guard helicopters with food and medical assistance for the impromptu city of 500,000.. Tags: hippie, free love, musical, music, woodstock, music festival, rock music, summer"} +{"id": "11598", "title": "The Kentucky Fried Movie", "year": 1977, "duration_min": 83, "rating": 6.4, "genres": "Comedy", "genres_pipe": "|Comedy|", "keywords": "journalism, commercial, television, tv show, manipulation of the media, tv ratings, satire, television producer", "tags_pipe": "|journalism|commercial|television|tv show|manipulation of the media|tv ratings|satire|television producer|", "overview": "A series of loosely connected skits that spoof news programs, commercials, porno films, kung-fu films, disaster films, blaxploitation films, spy films, mafia films, and the fear that somebody is watching you on the other side of the TV.", "text_for_embedding": "The Kentucky Fried Movie (1977). Genres: Comedy. A series of loosely connected skits that spoof news programs, commercials, porno films, kung-fu films, disaster films, blaxploitation films, spy films, mafia films, and the fear that somebody is watching you on the other side of the TV.. Tags: journalism, commercial, television, tv show, manipulation of the media, tv ratings, satire, television producer"} +{"id": "26916", "title": "Mercy Streets", "year": 2000, "duration_min": 106, "rating": 5.5, "genres": "Action, Adventure, Drama", "genres_pipe": "|Action|Adventure|Drama|", "keywords": "suspense", "tags_pipe": "|suspense|", "overview": "Estranged twin brothers - one a con man, the other an Episcopal deacon - accidentally switch places... and find God in the process.", "text_for_embedding": "Mercy Streets (2000). Genres: Action, Adventure, Drama. Estranged twin brothers - one a con man, the other an Episcopal deacon - accidentally switch places... and find God in the process.. Tags: suspense"} +{"id": "181940", "title": "Carousel of Revenge", "year": 2007, "duration_min": 103, "rating": 0.0, "genres": "Thriller, Mystery", "genres_pipe": "|Thriller|Mystery|", "keywords": "", "tags_pipe": "", "overview": "When strangers Frank Delano and his Uncle Bobby purchase the local amusement park of a \"peaceful\" resort town they stir up guilt and suspicion among the locals over a murder and suicide the town would rather forget.", "text_for_embedding": "Carousel of Revenge (2007). Genres: Thriller, Mystery. When strangers Frank Delano and his Uncle Bobby purchase the local amusement park of a \"peaceful\" resort town they stir up guilt and suspicion among the locals over a murder and suicide the town would rather forget.. Tags: "} +{"id": "125263", "title": "Broken Vessels", "year": 1998, "duration_min": 90, "rating": 6.0, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "", "tags_pipe": "", "overview": "A young Pennsylvania man moves to Los Angeles to begin work for an ambulance service. There he is teamed with a supremely confident vet who seemingly has gone through a large number of partners. Initially the novice is awed by the more experienced man's capabilities to deal with the high pressure situations they encounter. However, gradually he discovers that all is not as it seems. While the vet is ice on the surface, he actually gets through the ordeals by heavy drug use and avoids commitments. Soon the younger man finds himself pulled into the same world and has to decide what direction he wants to take.", "text_for_embedding": "Broken Vessels (1998). Genres: Drama. A young Pennsylvania man moves to Los Angeles to begin work for an ambulance service. There he is teamed with a supremely confident vet who seemingly has gone through a large number of partners. Initially the novice is awed by the more experienced man's capabilities to deal with the high pressure situations they encounter. However, gradually he discovers that all is not as it seems. While the vet is ice on the surface, he actually gets through the ordeals by heavy drug use and avoids commitments. Soon the younger man finds himself pulled into the same world and has to decide what direction he wants to take.. Tags: "} +{"id": "324322", "title": "They Will Have to Kill Us First", "year": 2015, "duration_min": 105, "rating": 5.0, "genres": "Music, Documentary", "genres_pipe": "|Music|Documentary|", "keywords": "woman director", "tags_pipe": "|woman director|", "overview": "In 2012, jihadists took control of northern Mali. They imposed one of the strictest interpretations of sharia law in history. On August 12th they banned music - radio stations destroyed, instruments burned and musicians facing torture, even death. Overnight, Mali’s most revered members of society – the musicians – were forced into hiding or exile. This film follows Mali’s musicians as they fight to keep music alive in their country. We witness fierce battles between the army and the jihadists, capture life over borders at refugee camps where money and hope are scarce, follow perilous journeys home to war ravaged cities, and for one band, Songhoy Blues, their path to international stardom.", "text_for_embedding": "They Will Have to Kill Us First (2015). Genres: Music, Documentary. In 2012, jihadists took control of northern Mali. They imposed one of the strictest interpretations of sharia law in history. On August 12th they banned music - radio stations destroyed, instruments burned and musicians facing torture, even death. Overnight, Mali’s most revered members of society – the musicians – were forced into hiding or exile. This film follows Mali’s musicians as they fight to keep music alive in their country. We witness fierce battles between the army and the jihadists, capture life over borders at refugee camps where money and hope are scarce, follow perilous journeys home to war ravaged cities, and for one band, Songhoy Blues, their path to international stardom.. Tags: woman director"} +{"id": "375950", "title": "The Country Doctor", "year": 2016, "duration_min": 102, "rating": 6.0, "genres": "Drama, Comedy", "genres_pipe": "|Drama|Comedy|", "keywords": "hospital, doctor", "tags_pipe": "|hospital|doctor|", "overview": "All the people in this countryside area, can count on Jean-Pierre, the doctor who auscultates them, heals and reassures them day and night, 7 days a week. Now Jean-Pierre is sick, so he sees Natalie, a young doctor, coming from the hospital to assist him. But will she adapt to this new life and be able to replace the man that believed to be irreplaceable?", "text_for_embedding": "The Country Doctor (2016). Genres: Drama, Comedy. All the people in this countryside area, can count on Jean-Pierre, the doctor who auscultates them, heals and reassures them day and night, 7 days a week. Now Jean-Pierre is sick, so he sees Natalie, a young doctor, coming from the hospital to assist him. But will she adapt to this new life and be able to replace the man that believed to be irreplaceable?. Tags: hospital, doctor"} +{"id": "278348", "title": "The Maid's Room", "year": 2014, "duration_min": 98, "rating": 4.8, "genres": "Thriller", "genres_pipe": "|Thriller|", "keywords": "", "tags_pipe": "", "overview": "Drina, a young immigrant working as a live-in maid for a wealthy Long Island family, finds herself entangled in the family's web of dark secrets once she begins to suspect her employer's son has committed a terrible crime.", "text_for_embedding": "The Maid's Room (2014). Genres: Thriller. Drina, a young immigrant working as a live-in maid for a wealthy Long Island family, finds herself entangled in the family's web of dark secrets once she begins to suspect her employer's son has committed a terrible crime.. Tags: "} +{"id": "704", "title": "A Hard Day's Night", "year": 1964, "duration_min": 88, "rating": 7.3, "genres": "Comedy, Music", "genres_pipe": "|Comedy|Music|", "keywords": "adolescence, culture clash, press conference, behind the scenes, police chase, mockumentary, older man younger woman relationship, shaving, the beatles song, railway station, performer, psychotronic, generation gap, television director", "tags_pipe": "|adolescence|culture clash|press conference|behind the scenes|police chase|mockumentary|older man younger woman relationship|shaving|the beatles song|railway station|performer|psychotronic|generation gap|television director|", "overview": "Capturing John Lennon, Paul McCartney, George Harrison and Ringo Starr in their electrifying element, 'A Hard Day's Night' is a wildly irreverent journey through this pastiche of a day in the life of The Beatles during 1964. The band have to use all their guile and wit to avoid the pursuing fans and press to reach their scheduled television performance, in spite of Paul's troublemaking grandfather and Ringo's arrest.", "text_for_embedding": "A Hard Day's Night (1964). Genres: Comedy, Music. Capturing John Lennon, Paul McCartney, George Harrison and Ringo Starr in their electrifying element, 'A Hard Day's Night' is a wildly irreverent journey through this pastiche of a day in the life of The Beatles during 1964. The band have to use all their guile and wit to avoid the pursuing fans and press to reach their scheduled television performance, in spite of Paul's troublemaking grandfather and Ringo's arrest.. Tags: adolescence, culture clash, press conference, behind the scenes, police chase, mockumentary, older man younger woman relationship, shaving, the beatles song, railway station, performer, psychotronic, generation gap, television director"} +{"id": "70875", "title": "The Harvest (La Cosecha)", "year": 2011, "duration_min": 80, "rating": 0.0, "genres": "Documentary", "genres_pipe": "|Documentary|", "keywords": "migration, immigration, agriculture, food, human rights, pesticide, environment, children's rights, migrant farmworker, labor, latino, child labor", "tags_pipe": "|migration|immigration|agriculture|food|human rights|pesticide|environment|children's rights|migrant farmworker|labor|latino|child labor|", "overview": "The story of the children who work 12-14 hour days in the fields without the protection of child labor laws. These children are not toiling in the fields in some far away land. They are working in America.", "text_for_embedding": "The Harvest (La Cosecha) (2011). Genres: Documentary. The story of the children who work 12-14 hour days in the fields without the protection of child labor laws. These children are not toiling in the fields in some far away land. They are working in America.. Tags: migration, immigration, agriculture, food, human rights, pesticide, environment, children's rights, migrant farmworker, labor, latino, child labor"} +{"id": "75986", "title": "Love Letters", "year": 1983, "duration_min": 98, "rating": 4.6, "genres": "Drama, Thriller", "genres_pipe": "|Drama|Thriller|", "keywords": "obsession, radio, nudity, letter, love, romance, lingerie, extramarital affair, woman director", "tags_pipe": "|obsession|radio|nudity|letter|love|romance|lingerie|extramarital affair|woman director|", "overview": "A story of love and obsession. A young radio personality who, after her mother dies, discovers she had been having a love affair for 15 years. Now she finds herself recreating her mother's romance by getting involved with a married man.", "text_for_embedding": "Love Letters (1983). Genres: Drama, Thriller. A story of love and obsession. A young radio personality who, after her mother dies, discovers she had been having a love affair for 15 years. Now she finds herself recreating her mother's romance by getting involved with a married man.. Tags: obsession, radio, nudity, letter, love, romance, lingerie, extramarital affair, woman director"} +{"id": "385636", "title": "Juliet and Alfa Romeo", "year": 2015, "duration_min": 83, "rating": 6.0, "genres": "Comedy, Drama", "genres_pipe": "|Comedy|Drama|", "keywords": "pornography, sex, love, teenager, death", "tags_pipe": "|pornography|sex|love|teenager|death|", "overview": "Tilen (18), an attractive high school student, swears to be faithful forever in the hope that his girlfriend will let him sleep with her. Suddenly, a sequence of tragic events turns his world upside down. He starts to believe he is under a spell which could put his life in jeopardy, which prevents him from having a relationship with Sara (18), his one true love. He finally succeeds to get his life back on the right track with the help of his best friend Zeljko, a mysterious fortune-teller, and the power of love.", "text_for_embedding": "Juliet and Alfa Romeo (2015). Genres: Comedy, Drama. Tilen (18), an attractive high school student, swears to be faithful forever in the hope that his girlfriend will let him sleep with her. Suddenly, a sequence of tragic events turns his world upside down. He starts to believe he is under a spell which could put his life in jeopardy, which prevents him from having a relationship with Sara (18), his one true love. He finally succeeds to get his life back on the right track with the help of his best friend Zeljko, a mysterious fortune-teller, and the power of love.. Tags: pornography, sex, love, teenager, death"} +{"id": "14438", "title": "Fireproof", "year": 2008, "duration_min": 122, "rating": 7.0, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "father son relationship, fire, firemen, christian, advice, marriage, faith, christian film, dysfunctional marriage, religious conversion, hospital", "tags_pipe": "|father son relationship|fire|firemen|christian|advice|marriage|faith|christian film|dysfunctional marriage|religious conversion|hospital|", "overview": "In Albany, the marriage of Caleb end Catherine Holt is in crisis and they decide to divorce. However, Caleb's father, John, proposes that his son delays their separation process for forty days and follow a procedure called \"The Love Dare\" to make them love each other again.", "text_for_embedding": "Fireproof (2008). Genres: Drama. In Albany, the marriage of Caleb end Catherine Holt is in crisis and they decide to divorce. However, Caleb's father, John, proposes that his son delays their separation process for forty days and follow a procedure called \"The Love Dare\" to make them love each other again.. Tags: father son relationship, fire, firemen, christian, advice, marriage, faith, christian film, dysfunctional marriage, religious conversion, hospital"} +{"id": "211086", "title": "Faith Connections", "year": 2013, "duration_min": 115, "rating": 4.2, "genres": "Documentary, Drama", "genres_pipe": "|Documentary|Drama|", "keywords": "himalaya, hindu, pilgrimage, faith, hinduism, little boy, spirituality, new age, religion, orphan, india, religious, child abandonment, ganja, kumbh mela", "tags_pipe": "|himalaya|hindu|pilgrimage|faith|hinduism|little boy|spirituality|new age|religion|orphan|india|religious|child abandonment|ganja|kumbh mela|", "overview": "A filmmaker's insight into the biggest gathering on earth -the Kumbh Mela.", "text_for_embedding": "Faith Connections (2013). Genres: Documentary, Drama. A filmmaker's insight into the biggest gathering on earth -the Kumbh Mela.. Tags: himalaya, hindu, pilgrimage, faith, hinduism, little boy, spirituality, new age, religion, orphan, india, religious, child abandonment, ganja, kumbh mela"} +{"id": "23069", "title": "Benji", "year": 1974, "duration_min": 86, "rating": 6.1, "genres": "Adventure, Family, Romance", "genres_pipe": "|Adventure|Family|Romance|", "keywords": "hostage, affection, rescue, dog, animal actor, benji", "tags_pipe": "|hostage|affection|rescue|dog|animal actor|benji|", "overview": "A stray dog saves two kidnapped children.", "text_for_embedding": "Benji (1974). Genres: Adventure, Family, Romance. A stray dog saves two kidnapped children.. Tags: hostage, affection, rescue, dog, animal actor, benji"} +{"id": "83", "title": "Open Water", "year": 2004, "duration_min": 79, "rating": 5.4, "genres": "Drama, Thriller", "genres_pipe": "|Drama|Thriller|", "keywords": "diving, cataclysm, nightmare, panic, red sea, primal fear, scuba diving, shark, scuba", "tags_pipe": "|diving|cataclysm|nightmare|panic|red sea|primal fear|scuba diving|shark|scuba|", "overview": "Two divers are left out at sea without a boat. There’s nothing but water for miles, unless they look at what’s underneath them...", "text_for_embedding": "Open Water (2004). Genres: Drama, Thriller. Two divers are left out at sea without a boat. There’s nothing but water for miles, unless they look at what’s underneath them.... Tags: diving, cataclysm, nightmare, panic, red sea, primal fear, scuba diving, shark, scuba"} +{"id": "89857", "title": "High Road", "year": 2012, "duration_min": 87, "rating": 5.8, "genres": "Comedy", "genres_pipe": "|Comedy|", "keywords": "", "tags_pipe": "", "overview": "Directed by Matt Walsh, a co-founding member of world-renowned comedy troupe Upright Citizens Brigade, High Road showcases a totally improvised script about Glenn “Fitz” Fitzgerald (James Pumphrey), a young man whose loyalties are split among his band, his girlfriend Monica(Abby Elliottt) and selling drugs. After his band breaks up, Fitz finds himself dealing drugs out of his garage and bonding with 16-year-old neighborhood kid Jimmy (Dylan O’Brien). As his former band mates (Zach Woods, Matt L. Jones, Lizzy Caplan) begin finding success and one of his drug deals goes awry, Fitz hits the road with Jimmy. Amid car chases, guns, broken bones, sassy cabbies and a suspicious doctor (Horatio Sanz), Fitz has to navigate their way to safe harbor--and he doesn’t even know about the surprise Monica has in store for him back home!", "text_for_embedding": "High Road (2012). Genres: Comedy. Directed by Matt Walsh, a co-founding member of world-renowned comedy troupe Upright Citizens Brigade, High Road showcases a totally improvised script about Glenn “Fitz” Fitzgerald (James Pumphrey), a young man whose loyalties are split among his band, his girlfriend Monica(Abby Elliottt) and selling drugs. After his band breaks up, Fitz finds himself dealing drugs out of his garage and bonding with 16-year-old neighborhood kid Jimmy (Dylan O’Brien). As his former band mates (Zach Woods, Matt L. Jones, Lizzy Caplan) begin finding success and one of his drug deals goes awry, Fitz hits the road with Jimmy. Amid car chases, guns, broken bones, sassy cabbies and a suspicious doctor (Horatio Sanz), Fitz has to navigate their way to safe harbor--and he doesn’t even know about the surprise Monica has in store for him back home!. Tags: "} +{"id": "30315", "title": "Kingdom of the Spiders", "year": 1977, "duration_min": 97, "rating": 5.7, "genres": "Horror, Science Fiction", "genres_pipe": "|Horror|Science Fiction|", "keywords": "hotel, small town, siege, independent film, corpse, tarantula, death, animal attack, spiders", "tags_pipe": "|hotel|small town|siege|independent film|corpse|tarantula|death|animal attack|spiders|", "overview": "Investigating the mysterious deaths of a number of farm animals, vet Rack Hansen discovers that his town lies in the path of hoards of migrating tarantulas. Before he can take action, the streets are overrun by killer spiders, trapping a small group of towns folk in a remote hotel.", "text_for_embedding": "Kingdom of the Spiders (1977). Genres: Horror, Science Fiction. Investigating the mysterious deaths of a number of farm animals, vet Rack Hansen discovers that his town lies in the path of hoards of migrating tarantulas. Before he can take action, the streets are overrun by killer spiders, trapping a small group of towns folk in a remote hotel.. Tags: hotel, small town, siege, independent film, corpse, tarantula, death, animal attack, spiders"} +{"id": "14358", "title": "Mad Hot Ballroom", "year": 2005, "duration_min": 105, "rating": 7.2, "genres": "Documentary, Family", "genres_pipe": "|Documentary|Family|", "keywords": "competition, documentary, dance contest, ballroom dancing, kids, woman director", "tags_pipe": "|competition|documentary|dance contest|ballroom dancing|kids|woman director|", "overview": "Eleven-year-old New York City public school kids journey into the world of ballroom dancing and reveal pieces of themselves and their world along the way. Told from their candid, sometimes hilarious perspectives, these kids are transformed, from reluctant participants to determined competitors, from typical urban kids to \"ladies and gentlemen,\" on their way to try to compete in the final citywide.", "text_for_embedding": "Mad Hot Ballroom (2005). Genres: Documentary, Family. Eleven-year-old New York City public school kids journey into the world of ballroom dancing and reveal pieces of themselves and their world along the way. Told from their candid, sometimes hilarious perspectives, these kids are transformed, from reluctant participants to determined competitors, from typical urban kids to \"ladies and gentlemen,\" on their way to try to compete in the final citywide.. Tags: competition, documentary, dance contest, ballroom dancing, kids, woman director"} +{"id": "2056", "title": "The Station Agent", "year": 2003, "duration_min": 88, "rating": 7.4, "genres": "Drama, Comedy", "genres_pipe": "|Drama|Comedy|", "keywords": "train station, new jersey, small person, friendship, newfoundland", "tags_pipe": "|train station|new jersey|small person|friendship|newfoundland|", "overview": "When his only friend dies, a man born with dwarfism moves to rural New Jersey to live a life of solitude, only to meet a chatty hot dog vendor and a woman dealing with her own personal loss.", "text_for_embedding": "The Station Agent (2003). Genres: Drama, Comedy. When his only friend dies, a man born with dwarfism moves to rural New Jersey to live a life of solitude, only to meet a chatty hot dog vendor and a woman dealing with her own personal loss.. Tags: train station, new jersey, small person, friendship, newfoundland"} +{"id": "41144", "title": "To Save A Life", "year": 2009, "duration_min": 120, "rating": 6.2, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "christian, independent film", "tags_pipe": "|christian|independent film|", "overview": "Jake Taylor has everything. He has a beautiful girl, he's the champion in basketball and beer pong, and everyone loves him. Then, an old childhood friend, whom Jake used to be friends with, commits suicide. Jake begins to think. He wonders what he could've done to save his friend's life. A youth minister tells him that Jake needs God. So Jake becomes a Christian. However, things begin to spin out of control. His dad is cheating on his mom, his girlfriend is pregnant, and his former friends ridicule and mock him. During all this, Jake is going to realize just what it means to be a Christian and how, to save a life.", "text_for_embedding": "To Save A Life (2009). Genres: Drama. Jake Taylor has everything. He has a beautiful girl, he's the champion in basketball and beer pong, and everyone loves him. Then, an old childhood friend, whom Jake used to be friends with, commits suicide. Jake begins to think. He wonders what he could've done to save his friend's life. A youth minister tells him that Jake needs God. So Jake becomes a Christian. However, things begin to spin out of control. His dad is cheating on his mom, his girlfriend is pregnant, and his former friends ridicule and mock him. During all this, Jake is going to realize just what it means to be a Christian and how, to save a life.. Tags: christian, independent film"} +{"id": "35199", "title": "Wordplay", "year": 2006, "duration_min": 94, "rating": 7.3, "genres": "Documentary", "genres_pipe": "|Documentary|", "keywords": "competition, documentary, contest, crossword puzzle", "tags_pipe": "|competition|documentary|contest|crossword puzzle|", "overview": "From the masters who create the mind-bending diversions to the tense competition at the American Crossword Puzzle Tournament, Patrick Creadon's documentary reveals a fascinating look at a decidedly addictive pastime. Creadon captures New York Times editor Will Shortz at work, talks to celebrity solvers -- including Bill Clinton and Ken Burns -- and presents an intimate look at the national tournament and its competitors.", "text_for_embedding": "Wordplay (2006). Genres: Documentary. From the masters who create the mind-bending diversions to the tense competition at the American Crossword Puzzle Tournament, Patrick Creadon's documentary reveals a fascinating look at a decidedly addictive pastime. Creadon captures New York Times editor Will Shortz at work, talks to celebrity solvers -- including Bill Clinton and Ken Burns -- and presents an intimate look at the national tournament and its competitors.. Tags: competition, documentary, contest, crossword puzzle"} +{"id": "14271", "title": "Beyond the Mat", "year": 1999, "duration_min": 102, "rating": 7.8, "genres": "Documentary", "genres_pipe": "|Documentary|", "keywords": "wrestling, sport, controversial, ecw, wwe", "tags_pipe": "|wrestling|sport|controversial|ecw|wwe|", "overview": "Beyond the Mat is a 1999 professional wrestling documentary, directed by Barry W. Blaustein. The movie focuses on the lives of professional wrestlers outside of the ring, especially Mick Foley, Terry Funk, and Jake Roberts. The film heavily focuses on the World Wrestling Federation (WWF), often criticizing it and its chairman Vince McMahon. It also follows Extreme Championship Wrestling, it's rise in popularity, and many other independent wrestlers and organizations.", "text_for_embedding": "Beyond the Mat (1999). Genres: Documentary. Beyond the Mat is a 1999 professional wrestling documentary, directed by Barry W. Blaustein. The movie focuses on the lives of professional wrestlers outside of the ring, especially Mick Foley, Terry Funk, and Jake Roberts. The film heavily focuses on the World Wrestling Federation (WWF), often criticizing it and its chairman Vince McMahon. It also follows Extreme Championship Wrestling, it's rise in popularity, and many other independent wrestlers and organizations.. Tags: wrestling, sport, controversial, ecw, wwe"} +{"id": "16653", "title": "The Singles Ward", "year": 2002, "duration_min": 102, "rating": 7.5, "genres": "Comedy, Drama, Family, Romance", "genres_pipe": "|Comedy|Drama|Family|Romance|", "keywords": "", "tags_pipe": "", "overview": "When Jonathan Jordan gets divorced he's thrust back into the world of being a single Mormon - a world who's ultimate goal is eternal marriage. Struggling to fit in, Jonathan decides to stop going to church only to be pursued by the members of the local singles ward who want to reactivate him. Nothing works until Jonathan falls for Cammie Giles, the ward activities director. Suddenly, going to church becomes much more appealing, But is he going for the right reasons?", "text_for_embedding": "The Singles Ward (2002). Genres: Comedy, Drama, Family, Romance. When Jonathan Jordan gets divorced he's thrust back into the world of being a single Mormon - a world who's ultimate goal is eternal marriage. Struggling to fit in, Jonathan decides to stop going to church only to be pursued by the members of the local singles ward who want to reactivate him. Nothing works until Jonathan falls for Cammie Giles, the ward activities director. Suddenly, going to church becomes much more appealing, But is he going for the right reasons?. Tags: "} +{"id": "14757", "title": "Osama", "year": 2003, "duration_min": 83, "rating": 6.3, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "independent film", "tags_pipe": "|independent film|", "overview": "Teenage girl Osama cuts her hair and dresses like a boy to get a job and support her widowed mother and grandmother. When Osama is called by the Taliban to join school and military training she embarks on a terrifying and confusing journey as she tries to keep the Taliban from finding out her true identity.", "text_for_embedding": "Osama (2003). Genres: Drama. Teenage girl Osama cuts her hair and dresses like a boy to get a job and support her widowed mother and grandmother. When Osama is called by the Taliban to join school and military training she embarks on a terrifying and confusing journey as she tries to keep the Taliban from finding out her true identity.. Tags: independent film"} +{"id": "84401", "title": "Sholem Aleichem: Laughing In The Darkness", "year": 2012, "duration_min": 93, "rating": 7.0, "genres": "Documentary", "genres_pipe": "|Documentary|", "keywords": "", "tags_pipe": "", "overview": "A riveting portrait of the great writer whose stories became the basis of the Broadway musical Fiddler on the Roof. Sholem Aleichem: Laughing in the Darkness tells the tale of the rebellious genius who created an entirely new literature. Plumbing the depths of a Jewish world locked in crisis and on the cusp of profound change, he captured that world with brilliant humor. Sholem Aleichem was not just a witness to the creation of a new modern Jewish identity, but one of the very men who forged it.", "text_for_embedding": "Sholem Aleichem: Laughing In The Darkness (2012). Genres: Documentary. A riveting portrait of the great writer whose stories became the basis of the Broadway musical Fiddler on the Roof. Sholem Aleichem: Laughing in the Darkness tells the tale of the rebellious genius who created an entirely new literature. Plumbing the depths of a Jewish world locked in crisis and on the cusp of profound change, he captured that world with brilliant humor. Sholem Aleichem was not just a witness to the creation of a new modern Jewish identity, but one of the very men who forged it.. Tags: "} +{"id": "23655", "title": "Groove", "year": 2000, "duration_min": 86, "rating": 5.6, "genres": "Drama, Music, Romance", "genres_pipe": "|Drama|Music|Romance|", "keywords": "independent film", "tags_pipe": "|independent film|", "overview": "An inside look into one night in the San Francisco underground rave scene.", "text_for_embedding": "Groove (2000). Genres: Drama, Music, Romance. An inside look into one night in the San Francisco underground rave scene.. Tags: independent film"} +{"id": "36825", "title": "The R.M.", "year": 2003, "duration_min": 101, "rating": 4.8, "genres": "Comedy, Crime, Family", "genres_pipe": "|Comedy|Crime|Family|", "keywords": "", "tags_pipe": "", "overview": "Jared Phelps (Kirby Heyborne) has completed two years of full-time missionary service for The Church of Jesus Christ of Latter-day Saints. His mission president has promised him that he will be blessed for his service, and he thinks he has it all worked out. His girlfriend has waited for him. His boss promised that he could have his old job back, and he has already sent his application to BYU. Everything that can go wrong does go wrong. His girlfriend dumps him. His loses his job, and he isn't accepted to BYU. Then, it gets even worse, and he has to decide if choosing the right is worth all the trouble.", "text_for_embedding": "The R.M. (2003). Genres: Comedy, Crime, Family. Jared Phelps (Kirby Heyborne) has completed two years of full-time missionary service for The Church of Jesus Christ of Latter-day Saints. His mission president has promised him that he will be blessed for his service, and he thinks he has it all worked out. His girlfriend has waited for him. His boss promised that he could have his old job back, and he has already sent his application to BYU. Everything that can go wrong does go wrong. His girlfriend dumps him. His loses his job, and he isn't accepted to BYU. Then, it gets even worse, and he has to decide if choosing the right is worth all the trouble.. Tags: "} +{"id": "33430", "title": "Twin Falls Idaho", "year": 1999, "duration_min": 111, "rating": 7.0, "genres": "Drama, Romance", "genres_pipe": "|Drama|Romance|", "keywords": "independent film", "tags_pipe": "|independent film|", "overview": "Francis and Blake Falls are Siamese twins who live in a neat little room in a rundown hotel. While sharing some organs, Blake is always fit and Francis is very sickly. Into their world comes a young lady, who turns their world upside down. She gets involved with Blake, and convinces the two to attend a Halloween party, where they can pass themselves off as wearing a costume. Eventually Francis becomes really ill, and they have to be separated. They then face the physical and mental strains that come from their proposed separation.", "text_for_embedding": "Twin Falls Idaho (1999). Genres: Drama, Romance. Francis and Blake Falls are Siamese twins who live in a neat little room in a rundown hotel. While sharing some organs, Blake is always fit and Francis is very sickly. Into their world comes a young lady, who turns their world upside down. She gets involved with Blake, and convinces the two to attend a Halloween party, where they can pass themselves off as wearing a costume. Eventually Francis becomes really ill, and they have to be separated. They then face the physical and mental strains that come from their proposed separation.. Tags: independent film"} +{"id": "12281", "title": "Mean Creek", "year": 2004, "duration_min": 90, "rating": 6.9, "genres": "Crime, Drama", "genres_pipe": "|Crime|Drama|", "keywords": "suicide, alcohol, secret, birthday, lake, oregon, brother, party, love, friends, prank, bully, drug, gay man, naked", "tags_pipe": "|suicide|alcohol|secret|birthday|lake|oregon|brother|party|love|friends|prank|bully|drug|gay man|naked|", "overview": "Teenagers living in small-town Oregon take a boat trip for a birthday celebration. When they get an idea to play a mean trick on the town bully, it suddenly goes too far. Soon they're forced to deal with the unexpected consequences of their actions.", "text_for_embedding": "Mean Creek (2004). Genres: Crime, Drama. Teenagers living in small-town Oregon take a boat trip for a birthday celebration. When they get an idea to play a mean trick on the town bully, it suddenly goes too far. Soon they're forced to deal with the unexpected consequences of their actions.. Tags: suicide, alcohol, secret, birthday, lake, oregon, brother, party, love, friends, prank, bully, drug, gay man, naked"} +{"id": "125052", "title": "Hurricane Streets", "year": 1997, "duration_min": 86, "rating": 4.8, "genres": "Romance, Crime, Drama", "genres_pipe": "|Romance|Crime|Drama|", "keywords": "prison, new mexico, smuggling, gang, theft", "tags_pipe": "|prison|new mexico|smuggling|gang|theft|", "overview": "Marcus is a kid on Manhattan's mean streets. He's turning 15, his father is dead, his mother is in prison for smuggling undocumented aliens. His grandmother is raising him. He has four close buddies who have a basement clubhouse; they shoplift and sell the wares to kids. One is moving toward selling drugs. Marcus wants to take a breather from the city and visit family in New Mexico. He also meets Melena, 14, a sweet kid who dreams of going to Alaska; her father is not just protective but angry and uncommunicative. The gang pressures Marcus to move up to burglary and car theft. He just wants to breathe open air. Can anything go right?", "text_for_embedding": "Hurricane Streets (1997). Genres: Romance, Crime, Drama. Marcus is a kid on Manhattan's mean streets. He's turning 15, his father is dead, his mother is in prison for smuggling undocumented aliens. His grandmother is raising him. He has four close buddies who have a basement clubhouse; they shoplift and sell the wares to kids. One is moving toward selling drugs. Marcus wants to take a breather from the city and visit family in New Mexico. He also meets Melena, 14, a sweet kid who dreams of going to Alaska; her father is not just protective but angry and uncommunicative. The gang pressures Marcus to move up to burglary and car theft. He just wants to breathe open air. Can anything go right?. Tags: prison, new mexico, smuggling, gang, theft"} +{"id": "96238", "title": "Never Again", "year": 2002, "duration_min": 98, "rating": 4.0, "genres": "Comedy, Romance", "genres_pipe": "|Comedy|Romance|", "keywords": "romantic comedy", "tags_pipe": "|romantic comedy|", "overview": "Two people who have pledged never to fall in love again then discover each other in a gay bar.", "text_for_embedding": "Never Again (2002). Genres: Comedy, Romance. Two people who have pledged never to fall in love again then discover each other in a gay bar.. Tags: romantic comedy"} +{"id": "30246", "title": "Civil Brand", "year": 2003, "duration_min": 95, "rating": 5.3, "genres": "Crime, Drama, Thriller", "genres_pipe": "|Crime|Drama|Thriller|", "keywords": "woman director", "tags_pipe": "|woman director|", "overview": "Forced to work under slave-like conditions in a \"prison for profit\" program, the inmates of a mostly-African-American female prison, Whitehead Correctional, try to take over the institution. At the core of the story is Frances, who finds herself in prison after being falsely convicted of murder, and who is told that her baby has been murdered, sparking her to lead her fellow inmates in the protest", "text_for_embedding": "Civil Brand (2003). Genres: Crime, Drama, Thriller. Forced to work under slave-like conditions in a \"prison for profit\" program, the inmates of a mostly-African-American female prison, Whitehead Correctional, try to take over the institution. At the core of the story is Frances, who finds herself in prison after being falsely convicted of murder, and who is told that her baby has been murdered, sparking her to lead her fellow inmates in the protest. Tags: woman director"} +{"id": "7301", "title": "Lonesome Jim", "year": 2005, "duration_min": 91, "rating": 6.4, "genres": "Comedy, Drama, Romance", "genres_pipe": "|Comedy|Drama|Romance|", "keywords": "sexuality, parents kids relationship, indiana, anti hero, melancholy, brother, uncle", "tags_pipe": "|sexuality|parents kids relationship|indiana|anti hero|melancholy|brother|uncle|", "overview": "Failing to make it on his own, 27-year-old Jim moves back in with his parents and deals with crippling family obligations.", "text_for_embedding": "Lonesome Jim (2005). Genres: Comedy, Drama, Romance. Failing to make it on his own, 27-year-old Jim moves back in with his parents and deals with crippling family obligations.. Tags: sexuality, parents kids relationship, indiana, anti hero, melancholy, brother, uncle"} +{"id": "172533", "title": "Drinking Buddies", "year": 2013, "duration_min": 90, "rating": 6.0, "genres": "Romance, Drama", "genres_pipe": "|Romance|Drama|", "keywords": "male female relationship, co-worker, relationship, mumblecore", "tags_pipe": "|male female relationship|co-worker|relationship|mumblecore|", "overview": "Weekend trips, office parties, late night conversations, drinking on the job, marriage pressure, biological clocks, holding eye contact a second too long… you know what makes the line between “friends” and “more than friends” really blurry? Beer.", "text_for_embedding": "Drinking Buddies (2013). Genres: Romance, Drama. Weekend trips, office parties, late night conversations, drinking on the job, marriage pressure, biological clocks, holding eye contact a second too long… you know what makes the line between “friends” and “more than friends” really blurry? Beer.. Tags: male female relationship, co-worker, relationship, mumblecore"} +{"id": "180383", "title": "Deceptive Practice: The Mysteries and Mentors of Ricky Jay", "year": 2012, "duration_min": 88, "rating": 7.1, "genres": "Documentary", "genres_pipe": "|Documentary|", "keywords": "magic, woman director", "tags_pipe": "|magic|woman director|", "overview": "The life and career of renowned magician and sleight of hand artist Ricky Jay.", "text_for_embedding": "Deceptive Practice: The Mysteries and Mentors of Ricky Jay (2012). Genres: Documentary. The life and career of renowned magician and sleight of hand artist Ricky Jay.. Tags: magic, woman director"} +{"id": "346", "title": "Seven Samurai", "year": 1954, "duration_min": 207, "rating": 8.2, "genres": "Action, Drama", "genres_pipe": "|Action|Drama|", "keywords": "japan, samurai, peasant, looting, rice, fencing, village, moral ambiguity, battle, practice, 16th century", "tags_pipe": "|japan|samurai|peasant|looting|rice|fencing|village|moral ambiguity|battle|practice|16th century|", "overview": "A samurai answers a village's request for protection after he falls on hard times. The town needs protection from bandits, so the samurai gathers six others to help him teach the people how to defend themselves, and the villagers provide the soldiers with food. A giant battle occurs when 40 bandits attack the village.", "text_for_embedding": "Seven Samurai (1954). Genres: Action, Drama. A samurai answers a village's request for protection after he falls on hard times. The town needs protection from bandits, so the samurai gathers six others to help him teach the people how to defend themselves, and the villagers provide the soldiers with food. A giant battle occurs when 40 bandits attack the village.. Tags: japan, samurai, peasant, looting, rice, fencing, village, moral ambiguity, battle, practice, 16th century"} +{"id": "84318", "title": "The Other Dream Team", "year": 2012, "duration_min": 89, "rating": 6.9, "genres": "Documentary", "genres_pipe": "|Documentary|", "keywords": "olympic games, sport, basketball, basketball team", "tags_pipe": "|olympic games|sport|basketball|basketball team|", "overview": "The incredible story of the 1992 Lithuanian basketball team, whose athletes struggled under Soviet rule, became symbols of Lithuania's independence movement, and – with help from the Grateful Dead – triumphed at the Barcelona Olympics.", "text_for_embedding": "The Other Dream Team (2012). Genres: Documentary. The incredible story of the 1992 Lithuanian basketball team, whose athletes struggled under Soviet rule, became symbols of Lithuania's independence movement, and – with help from the Grateful Dead – triumphed at the Barcelona Olympics.. Tags: olympic games, sport, basketball, basketball team"} +{"id": "45145", "title": "Johnny Suede", "year": 1991, "duration_min": 97, "rating": 4.7, "genres": "Comedy, Romance", "genres_pipe": "|Comedy|Romance|", "keywords": "sex, nightclub, nudity, musician, song, rock, idol, music, rent, liar, independent film", "tags_pipe": "|sex|nightclub|nudity|musician|song|rock|idol|music|rent|liar|independent film|", "overview": "A struggling young musician and devoted fan of Ricky Nelson wants to be just like his idol and become a rock star.", "text_for_embedding": "Johnny Suede (1991). Genres: Comedy, Romance. A struggling young musician and devoted fan of Ricky Nelson wants to be just like his idol and become a rock star.. Tags: sex, nightclub, nudity, musician, song, rock, idol, music, rent, liar, independent film"} +{"id": "13983", "title": "Finishing The Game", "year": 2007, "duration_min": 84, "rating": 4.9, "genres": "Comedy", "genres_pipe": "|Comedy|", "keywords": "satire, independent film, spoof", "tags_pipe": "|satire|independent film|spoof|", "overview": "In 1973, martial arts great Bruce Lee died, his final film, Game of Death, left unfinished. With the public hungry for more Lee, movie execs decide to find a replacement. This outrageous satire looks at the entire process, from the oddball candidates to the greed and racial motivations that drive the final decision. There's big business in the movies, and Finishing the Game skewers it with an eye for '70s detail.", "text_for_embedding": "Finishing The Game (2007). Genres: Comedy. In 1973, martial arts great Bruce Lee died, his final film, Game of Death, left unfinished. With the public hungry for more Lee, movie execs decide to find a replacement. This outrageous satire looks at the entire process, from the oddball candidates to the greed and racial motivations that drive the final decision. There's big business in the movies, and Finishing the Game skewers it with an eye for '70s detail.. Tags: satire, independent film, spoof"} +{"id": "45649", "title": "Rubber", "year": 2010, "duration_min": 85, "rating": 5.7, "genres": "Comedy, Drama, Fantasy, Horror, Mystery", "genres_pipe": "|Comedy|Drama|Fantasy|Horror|Mystery|", "keywords": "exploding building, duringcreditsstinger", "tags_pipe": "|exploding building|duringcreditsstinger|", "overview": "In the California desert, the adventures of a telepathic killer-tire, mysteriously attracted by a very pretty girl, as witnessed by incredulous onlookers.", "text_for_embedding": "Rubber (2010). Genres: Comedy, Drama, Fantasy, Horror, Mystery. In the California desert, the adventures of a telepathic killer-tire, mysteriously attracted by a very pretty girl, as witnessed by incredulous onlookers.. Tags: exploding building, duringcreditsstinger"} +{"id": "19844", "title": "Kiss the Bride", "year": 2007, "duration_min": 100, "rating": 4.2, "genres": "Drama, Comedy, Romance", "genres_pipe": "|Drama|Comedy|Romance|", "keywords": "gay interest", "tags_pipe": "|gay interest|", "overview": "In high school, Matt and Ryan were best friends. More than friends, actually. But in the ensuing ten years, they've lost contact. So when Matt receives an invitation to Ryan's wedding he's surprised - especially that Ryan is marrying a woman!", "text_for_embedding": "Kiss the Bride (2007). Genres: Drama, Comedy, Romance. In high school, Matt and Ryan were best friends. More than friends, actually. But in the ensuing ten years, they've lost contact. So when Matt receives an invitation to Ryan's wedding he's surprised - especially that Ryan is marrying a woman!. Tags: gay interest"} +{"id": "21801", "title": "The Slaughter Rule", "year": 2002, "duration_min": 112, "rating": 6.2, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "", "tags_pipe": "", "overview": "A young man finds solace with a young woman, his mother, and a high-school football coach who recruits him to quarterback a six-man team.", "text_for_embedding": "The Slaughter Rule (2002). Genres: Drama. A young man finds solace with a young woman, his mother, and a high-school football coach who recruits him to quarterback a six-man team.. Tags: "} +{"id": "43933", "title": "Monsters", "year": 2010, "duration_min": 94, "rating": 6.2, "genres": "Drama, Thriller, Science Fiction", "genres_pipe": "|Drama|Thriller|Science Fiction|", "keywords": "monster, pyramid, radio, dystopia, infection, forest, low-budget, alien, alien invasion, central america, vigil, cattle, dead fish", "tags_pipe": "|monster|pyramid|radio|dystopia|infection|forest|low-budget|alien|alien invasion|central america|vigil|cattle|dead fish|", "overview": "Six years ago NASA discovered the possibility of alien life within our solar system. A probe was launched to collect samples, but crashed upon re-entry over Central America. Soon after, new life forms began to appear and half of Mexico was quarantined as an infected zone. Today, the American and Mexican military still struggle to contain \"the creatures,\" while a journalist agrees to escort a shaken tourist through the infected zone in Mexico to the safety of the U.S. border.", "text_for_embedding": "Monsters (2010). Genres: Drama, Thriller, Science Fiction. Six years ago NASA discovered the possibility of alien life within our solar system. A probe was launched to collect samples, but crashed upon re-entry over Central America. Soon after, new life forms began to appear and half of Mexico was quarantined as an infected zone. Today, the American and Mexican military still struggle to contain \"the creatures,\" while a journalist agrees to escort a shaken tourist through the infected zone in Mexico to the safety of the U.S. border.. Tags: monster, pyramid, radio, dystopia, infection, forest, low-budget, alien, alien invasion, central america, vigil, cattle, dead fish"} +{"id": "73511", "title": "The Californians", "year": 2005, "duration_min": 91, "rating": 4.0, "genres": "Drama, Comedy", "genres_pipe": "|Drama|Comedy|", "keywords": "", "tags_pipe": "", "overview": "When real estate mogul Gavin Ransom (Noah Wyle) announces his plan to cover California's northern coast with scores of mini-mansions, his environmentalist sister, Olive (Ileana Douglas), launches a protest to stop him. But there's trouble ahead when Gavin begins falling for the pretty folk singer (Kate Mara) who's helping Olive's cause. This clever West Coast satire from writer-director Jonathan Parker is a twist on Henry James's The Bostonians.", "text_for_embedding": "The Californians (2005). Genres: Drama, Comedy. When real estate mogul Gavin Ransom (Noah Wyle) announces his plan to cover California's northern coast with scores of mini-mansions, his environmentalist sister, Olive (Ileana Douglas), launches a protest to stop him. But there's trouble ahead when Gavin begins falling for the pretty folk singer (Kate Mara) who's helping Olive's cause. This clever West Coast satire from writer-director Jonathan Parker is a twist on Henry James's The Bostonians.. Tags: "} +{"id": "43653", "title": "The Living Wake", "year": 2007, "duration_min": 91, "rating": 5.0, "genres": "Comedy", "genres_pipe": "|Comedy|", "keywords": "independent film", "tags_pipe": "|independent film|", "overview": "“The Living Wake” is a dark comedy set in a timeless storybook universe. Self-proclaimed artist and genius, K. Roth Binew, has one day to live. He has enlisted his best and only friend, Mills Joquin, to take him around on a bicycle powered rickshaw. In a final attempt to probe life’s deepest mysteries, Binew endures one ridiculous trial after the next. He concludes his day with a final performance, his living wake. On a makeshift stage in an open field, Binew’s friends and enemies gather to witness his madness one final time.", "text_for_embedding": "The Living Wake (2007). Genres: Comedy. “The Living Wake” is a dark comedy set in a timeless storybook universe. Self-proclaimed artist and genius, K. Roth Binew, has one day to live. He has enlisted his best and only friend, Mills Joquin, to take him around on a bicycle powered rickshaw. In a final attempt to probe life’s deepest mysteries, Binew endures one ridiculous trial after the next. He concludes his day with a final performance, his living wake. On a makeshift stage in an open field, Binew’s friends and enemies gather to witness his madness one final time.. Tags: independent film"} +{"id": "139715", "title": "Detention of the Dead", "year": 2012, "duration_min": 87, "rating": 4.5, "genres": "Comedy, Horror", "genres_pipe": "|Comedy|Horror|", "keywords": "high school, independent film, zombie, extreme violence", "tags_pipe": "|high school|independent film|zombie|extreme violence|", "overview": "A group of oddball high school students find themselves trapped in detention with their classmates having turned into a horde of Zombies.", "text_for_embedding": "Detention of the Dead (2012). Genres: Comedy, Horror. A group of oddball high school students find themselves trapped in detention with their classmates having turned into a horde of Zombies.. Tags: high school, independent film, zombie, extreme violence"} +{"id": "45380", "title": "Crazy Stone", "year": 2006, "duration_min": 98, "rating": 6.9, "genres": "Action, Comedy", "genres_pipe": "|Action|Comedy|", "keywords": "", "tags_pipe": "", "overview": "Three thieves try to steal a valuable jade that is tightly guarded by a security chief. But the security guards are not the only obstacle these thieves are facing. An extremely unlucky internationally known master thief is also trying to get a hand on this piece of precious jade. What would be the final destination of this piece of crazy stone?", "text_for_embedding": "Crazy Stone (2006). Genres: Action, Comedy. Three thieves try to steal a valuable jade that is tightly guarded by a security chief. But the security guards are not the only obstacle these thieves are facing. An extremely unlucky internationally known master thief is also trying to get a hand on this piece of precious jade. What would be the final destination of this piece of crazy stone?. Tags: "} +{"id": "30867", "title": "Scott Walker: 30 Century Man", "year": 2006, "duration_min": 95, "rating": 7.0, "genres": "Documentary, Music", "genres_pipe": "|Documentary|Music|", "keywords": "music", "tags_pipe": "|music|", "overview": "A documentary on the influential musician Scott Walker.", "text_for_embedding": "Scott Walker: 30 Century Man (2006). Genres: Documentary, Music. A documentary on the influential musician Scott Walker.. Tags: music"} +{"id": "81220", "title": "Everything Put Together", "year": 2001, "duration_min": 87, "rating": 5.0, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "independent film", "tags_pipe": "|independent film|", "overview": "Everything Put Together is a 2000 film directed by Marc Forster starring Radha Mitchell and Megan Mullally.", "text_for_embedding": "Everything Put Together (2001). Genres: Drama. Everything Put Together is a 2000 film directed by Marc Forster starring Radha Mitchell and Megan Mullally.. Tags: independent film"} +{"id": "253626", "title": "Good Kill", "year": 2015, "duration_min": 104, "rating": 5.9, "genres": "Action, Drama, Thriller", "genres_pipe": "|Action|Drama|Thriller|", "keywords": "pilot, suspicion, drone, u.s. military, air force base, combat drone", "tags_pipe": "|pilot|suspicion|drone|u.s. military|air force base|combat drone|", "overview": "In the shadowy world of drone warfare, combat unfolds like a video game–only with real lives at stake. After six tours of duty, Air Force pilot Tom Egan (Ethan Hawke) now fights the Taliban from an air-conditioned bunker in the Nevada desert. But as he yearns to get back in the cockpit of a real plane and becomes increasingly troubled by the collateral damage he causes each time he pushes a button, Egan’s nerves—and his relationship with his wife (Mad Men's January Jones)—begin to unravel.", "text_for_embedding": "Good Kill (2015). Genres: Action, Drama, Thriller. In the shadowy world of drone warfare, combat unfolds like a video game–only with real lives at stake. After six tours of duty, Air Force pilot Tom Egan (Ethan Hawke) now fights the Taliban from an air-conditioned bunker in the Nevada desert. But as he yearns to get back in the cockpit of a real plane and becomes increasingly troubled by the collateral damage he causes each time he pushes a button, Egan’s nerves—and his relationship with his wife (Mad Men's January Jones)—begin to unravel.. Tags: pilot, suspicion, drone, u.s. military, air force base, combat drone"} +{"id": "294550", "title": "The Outrageous Sophie Tucker", "year": 2014, "duration_min": 96, "rating": 0.0, "genres": "", "genres_pipe": "", "keywords": "", "tags_pipe": "", "overview": "The rags to riches story of Sophie Tucker, an iconic superstar who ruled the worlds of vaudeville, Broadway, radio, television, and Hollywood throughout the 20th century. Before Beyoncé, Lady Gaga, Madonna, Bette Midler, Marilyn Monroe, and Mae West, Sophie Tucker was the first woman to infatuate her audiences with a bold, bawdy and brassy style unlike any other. Using all of \"The Last of the Red Hot Mamas\" 400-plus recently rediscovered personal scrapbooks, authors Susan and Lloyd Ecker take you on their seven-year journey retracing Tucker's sixty-year career in show business.`", "text_for_embedding": "The Outrageous Sophie Tucker (2014). Genres: . The rags to riches story of Sophie Tucker, an iconic superstar who ruled the worlds of vaudeville, Broadway, radio, television, and Hollywood throughout the 20th century. Before Beyoncé, Lady Gaga, Madonna, Bette Midler, Marilyn Monroe, and Mae West, Sophie Tucker was the first woman to infatuate her audiences with a bold, bawdy and brassy style unlike any other. Using all of \"The Last of the Red Hot Mamas\" 400-plus recently rediscovered personal scrapbooks, authors Susan and Lloyd Ecker take you on their seven-year journey retracing Tucker's sixty-year career in show business.`. Tags: "} +{"id": "90369", "title": "Now Is Good", "year": 2012, "duration_min": 103, "rating": 7.3, "genres": "Drama, Romance", "genres_pipe": "|Drama|Romance|", "keywords": "cancer, teenager, teen drama, bucket list, based on young adult novel", "tags_pipe": "|cancer|teenager|teen drama|bucket list|based on young adult novel|", "overview": "A girl dying of leukemia compiles a list of things she'd like to do before passing away. Topping the list is her desire to lose her virginity.", "text_for_embedding": "Now Is Good (2012). Genres: Drama, Romance. A girl dying of leukemia compiles a list of things she'd like to do before passing away. Topping the list is her desire to lose her virginity.. Tags: cancer, teenager, teen drama, bucket list, based on young adult novel"} +{"id": "117942", "title": "Girls Gone Dead", "year": 2012, "duration_min": 104, "rating": 3.5, "genres": "Horror, Comedy", "genres_pipe": "|Horror|Comedy|", "keywords": "", "tags_pipe": "", "overview": "A group of six ex-high school cheerleaders are stalked by a killer with a medieval war hammer and battle axe during their first Spring Break from college.", "text_for_embedding": "Girls Gone Dead (2012). Genres: Horror, Comedy. A group of six ex-high school cheerleaders are stalked by a killer with a medieval war hammer and battle axe during their first Spring Break from college.. Tags: "} +{"id": "322194", "title": "Subconscious", "year": 2015, "duration_min": 110, "rating": 3.4, "genres": "Action, Thriller, Mystery", "genres_pipe": "|Action|Thriller|Mystery|", "keywords": "submarine, woman director", "tags_pipe": "|submarine|woman director|", "overview": "An investigation into a retired WWII sub plunges a research team into a supernatural journey across the dark abyss of time - with history hanging in the balance.", "text_for_embedding": "Subconscious (2015). Genres: Action, Thriller, Mystery. An investigation into a retired WWII sub plunges a research team into a supernatural journey across the dark abyss of time - with history hanging in the balance.. Tags: submarine, woman director"} +{"id": "98568", "title": "Enter Nowhere", "year": 2011, "duration_min": 90, "rating": 6.5, "genres": "Mystery, Science Fiction, Thriller", "genres_pipe": "|Mystery|Science Fiction|Thriller|", "keywords": "cabin, time travel, woods, cabin in the woods, lost, german soldier, time paradox", "tags_pipe": "|cabin|time travel|woods|cabin in the woods|lost|german soldier|time paradox|", "overview": "Three strangers arrive one by one to a mysterious cabin in the middle of nowhere after enduring separate life-altering predicaments. Searching for a way out of the woods, frustrated, hungry and battling to stay warm they discover their mysterious connection and realize what they have to do in order to get out of the woods alive.", "text_for_embedding": "Enter Nowhere (2011). Genres: Mystery, Science Fiction, Thriller. Three strangers arrive one by one to a mysterious cabin in the middle of nowhere after enduring separate life-altering predicaments. Searching for a way out of the woods, frustrated, hungry and battling to stay warm they discover their mysterious connection and realize what they have to do in order to get out of the woods alive.. Tags: cabin, time travel, woods, cabin in the woods, lost, german soldier, time paradox"} +{"id": "119657", "title": "El Rey de Najayo", "year": 2012, "duration_min": 101, "rating": 0.0, "genres": "Crime, Drama", "genres_pipe": "|Crime|Drama|", "keywords": "", "tags_pipe": "", "overview": "The dramatic story of Julian, a Dominican drug lord who despite his confinement in prison, was still able to maintain Dominican society in a state of suspense, for over 13 years. At the early age of 12, he witnessed the death of his father at the hands of local military authorities, during a well-meant attempt to hand-over a package of drugs he had incidentally found at sea while fishing. As a result of this experience, Julian develops a thirst for revenge that leads him to kill all those involved in his father's death. In the process he becomes a major drug lord and a very powerful headman within Dominican society.", "text_for_embedding": "El Rey de Najayo (2012). Genres: Crime, Drama. The dramatic story of Julian, a Dominican drug lord who despite his confinement in prison, was still able to maintain Dominican society in a state of suspense, for over 13 years. At the early age of 12, he witnessed the death of his father at the hands of local military authorities, during a well-meant attempt to hand-over a package of drugs he had incidentally found at sea while fishing. As a result of this experience, Julian develops a thirst for revenge that leads him to kill all those involved in his father's death. In the process he becomes a major drug lord and a very powerful headman within Dominican society.. Tags: "} +{"id": "380733", "title": "Fight to the Finish", "year": 2016, "duration_min": 94, "rating": 5.2, "genres": "Romance, Action", "genres_pipe": "|Romance|Action|", "keywords": "sport, fighting", "tags_pipe": "|sport|fighting|", "overview": "A young amateur fighter makes an enemy with a hardened thug when he gets in-between his next-door neighbor and her abusive ex- boyfriend. As his personal life becomes threatened, he realizes he must finish the fight that he started, but this time they'll settle it in the ring for the championship.", "text_for_embedding": "Fight to the Finish (2016). Genres: Romance, Action. A young amateur fighter makes an enemy with a hardened thug when he gets in-between his next-door neighbor and her abusive ex- boyfriend. As his personal life becomes threatened, he realizes he must finish the fight that he started, but this time they'll settle it in the ring for the championship.. Tags: sport, fighting"} +{"id": "362765", "title": "The Sound and the Shadow", "year": 2014, "duration_min": 90, "rating": 0.0, "genres": "Thriller, Comedy, Mystery", "genres_pipe": "|Thriller|Comedy|Mystery|", "keywords": "", "tags_pipe": "", "overview": "An allergy-ridden, eavesdropping sound engineer and his boisterous new roommate are thrust into a missing girl case when he discovers clues to her disappearance in his neighborhood recordings.", "text_for_embedding": "The Sound and the Shadow (2014). Genres: Thriller, Comedy, Mystery. An allergy-ridden, eavesdropping sound engineer and his boisterous new roommate are thrust into a missing girl case when he discovers clues to her disappearance in his neighborhood recordings.. Tags: "} +{"id": "379532", "title": "Rodeo Girl", "year": 2016, "duration_min": 108, "rating": 5.5, "genres": "Family", "genres_pipe": "|Family|", "keywords": "", "tags_pipe": "", "overview": "Shipped off to her American dad's ranch for the summer, a teen and her horse Lucky Lad compete for a spot at the National Youth Rodeo.", "text_for_embedding": "Rodeo Girl (2016). Genres: Family. Shipped off to her American dad's ranch for the summer, a teen and her horse Lucky Lad compete for a spot at the National Youth Rodeo.. Tags: "} +{"id": "253261", "title": "Born to Fly: Elizabeth Streb vs. Gravity", "year": 2014, "duration_min": 82, "rating": 5.0, "genres": "Documentary", "genres_pipe": "|Documentary|", "keywords": "woman director", "tags_pipe": "|woman director|", "overview": "Born to Fly pushes the boundaries between action and art, daring us to join choreographer Elizabeth Streb and her dancers in pursuit of human flight.", "text_for_embedding": "Born to Fly: Elizabeth Streb vs. Gravity (2014). Genres: Documentary. Born to Fly pushes the boundaries between action and art, daring us to join choreographer Elizabeth Streb and her dancers in pursuit of human flight.. Tags: woman director"} +{"id": "297100", "title": "The Little Ponderosa Zoo", "year": 2014, "duration_min": 84, "rating": 2.0, "genres": "", "genres_pipe": "", "keywords": "", "tags_pipe": "", "overview": "The Little Ponderosa Zoo is preparing for their annual fundraiser festival that keeps the zoo afloat. The Freeman family, Jack, Judy, and their young daughter, Charlie opened the zoo years earlier after sharing their own home with the many animals they had rescued through the years With the help of Mr. Baker, their dependable zookeeper, the zoo has always been a huge hit with the small town. But, one day, the local bank owner discovers some dusty old documents in the basement of his bank that show that the zoo is sitting on a gold mine and, with the help of the town Mayor, and the Mayor s bumbling nephew, they immediately devise a devious plan to get the gold for themselves. The greedy trio see the annual festival as the perfect opportunity to put their dangerous plan into action and close the zoo forever and get their hands on the gold!", "text_for_embedding": "The Little Ponderosa Zoo (2014). Genres: . The Little Ponderosa Zoo is preparing for their annual fundraiser festival that keeps the zoo afloat. The Freeman family, Jack, Judy, and their young daughter, Charlie opened the zoo years earlier after sharing their own home with the many animals they had rescued through the years With the help of Mr. Baker, their dependable zookeeper, the zoo has always been a huge hit with the small town. But, one day, the local bank owner discovers some dusty old documents in the basement of his bank that show that the zoo is sitting on a gold mine and, with the help of the town Mayor, and the Mayor s bumbling nephew, they immediately devise a devious plan to get the gold for themselves. The greedy trio see the annual festival as the perfect opportunity to put their dangerous plan into action and close the zoo forever and get their hands on the gold!. Tags: "} +{"id": "15239", "title": "The Toxic Avenger", "year": 1984, "duration_min": 82, "rating": 6.3, "genres": "Science Fiction, Action, Comedy, Horror", "genres_pipe": "|Science Fiction|Action|Comedy|Horror|", "keywords": "corruption, mayor, anti hero, sadism, toxic, movie reference, person on fire, t shirt, workout, health club, rabid anger, disfigured face, superhero spoof, strong man, car run over", "tags_pipe": "|corruption|mayor|anti hero|sadism|toxic|movie reference|person on fire|t shirt|workout|health club|rabid anger|disfigured face|superhero spoof|strong man|car run over|", "overview": "Tromaville has a monstrous new hero. The Toxic Avenger is born when mop boy Melvin Junko falls into a vat of toxic waste. Now evildoers will have a lot to lose.", "text_for_embedding": "The Toxic Avenger (1984). Genres: Science Fiction, Action, Comedy, Horror. Tromaville has a monstrous new hero. The Toxic Avenger is born when mop boy Melvin Junko falls into a vat of toxic waste. Now evildoers will have a lot to lose.. Tags: corruption, mayor, anti hero, sadism, toxic, movie reference, person on fire, t shirt, workout, health club, rabid anger, disfigured face, superhero spoof, strong man, car run over"} +{"id": "4107", "title": "Bloody Sunday", "year": 2002, "duration_min": 107, "rating": 7.2, "genres": "Action, Adventure, Drama, History", "genres_pipe": "|Action|Adventure|Drama|History|", "keywords": "northern ireland, independent film, civil rights", "tags_pipe": "|northern ireland|independent film|civil rights|", "overview": "The dramatised story of the Irish civil rights protest march on January 30 1972 which ended in a massacre by British troops.", "text_for_embedding": "Bloody Sunday (2002). Genres: Action, Adventure, Drama, History. The dramatised story of the Irish civil rights protest march on January 30 1972 which ended in a massacre by British troops.. Tags: northern ireland, independent film, civil rights"} +{"id": "15624", "title": "Conversations with Other Women", "year": 2006, "duration_min": 84, "rating": 6.2, "genres": "Drama, Romance", "genres_pipe": "|Drama|Romance|", "keywords": "dialogue, talking, bridesmaid, wedding reception, wedding, dialogue driven", "tags_pipe": "|dialogue|talking|bridesmaid|wedding reception|wedding|dialogue driven|", "overview": "Reunited at a wedding after many years, former lovers again feel the pull of a mutual attraction neither is willing to admit. Escaping the reception for the privacy of a hotel room, the unnamed pair explore the choices of the past that led them to the present.", "text_for_embedding": "Conversations with Other Women (2006). Genres: Drama, Romance. Reunited at a wedding after many years, former lovers again feel the pull of a mutual attraction neither is willing to admit. Escaping the reception for the privacy of a hotel room, the unnamed pair explore the choices of the past that led them to the present.. Tags: dialogue, talking, bridesmaid, wedding reception, wedding, dialogue driven"} +{"id": "17287", "title": "Poultrygeist: Night of the Chicken Dead", "year": 2006, "duration_min": 103, "rating": 5.9, "genres": "Horror, Comedy", "genres_pipe": "|Horror|Comedy|", "keywords": "musical, zombie", "tags_pipe": "|musical|zombie|", "overview": "Humans... the other white meat... Unless you're black, then it's dark meat... Or if you are Asian, then it's yellow meat... Or if you are Native American, it's red meat...", "text_for_embedding": "Poultrygeist: Night of the Chicken Dead (2006). Genres: Horror, Comedy. Humans... the other white meat... Unless you're black, then it's dark meat... Or if you are Asian, then it's yellow meat... Or if you are Native American, it's red meat.... Tags: musical, zombie"} +{"id": "3062", "title": "42nd Street", "year": 1933, "duration_min": 89, "rating": 6.1, "genres": "Music, Comedy, Romance", "genres_pipe": "|Music|Comedy|Romance|", "keywords": "philadelphia, musical, stage show, director, broken ankle, chorus line, pet dog, broadway, fainting, chorus girl, opening night, crutch, theatrical backer, eviction, show producer", "tags_pipe": "|philadelphia|musical|stage show|director|broken ankle|chorus line|pet dog|broadway|fainting|chorus girl|opening night|crutch|theatrical backer|eviction|show producer|", "overview": "A producer puts on what may be his last Broadway show, and at the last moment a chorus girl has to replace the star.", "text_for_embedding": "42nd Street (1933). Genres: Music, Comedy, Romance. A producer puts on what may be his last Broadway show, and at the last moment a chorus girl has to replace the star.. Tags: philadelphia, musical, stage show, director, broken ankle, chorus line, pet dog, broadway, fainting, chorus girl, opening night, crutch, theatrical backer, eviction, show producer"} +{"id": "15389", "title": "Metropolitan", "year": 1990, "duration_min": 98, "rating": 7.0, "genres": "Comedy, Drama", "genres_pipe": "|Comedy|Drama|", "keywords": "upper class, new york, independent film, debutante, young adult", "tags_pipe": "|upper class|new york|independent film|debutante|young adult|", "overview": "A sparkling comedic chronicle of a middle-class young man’s romantic misadventures among New York City’s debutante society. Stillman’s deft, literate dialogue and hilariously highbrow observations earned this debut film an Academy Award nomination for Best Original Screenplay. Alongside the wit and sophistication, though, lies a tender tale of adolescent anxiety.", "text_for_embedding": "Metropolitan (1990). Genres: Comedy, Drama. A sparkling comedic chronicle of a middle-class young man’s romantic misadventures among New York City’s debutante society. Stillman’s deft, literate dialogue and hilariously highbrow observations earned this debut film an Academy Award nomination for Best Original Screenplay. Alongside the wit and sophistication, though, lies a tender tale of adolescent anxiety.. Tags: upper class, new york, independent film, debutante, young adult"} +{"id": "464", "title": "As It Is in Heaven", "year": 2004, "duration_min": 132, "rating": 6.9, "genres": "Romance, Drama, Comedy, Music", "genres_pipe": "|Romance|Drama|Comedy|Music|", "keywords": "individual, underdog, mentally disabled, loss of mother, sweden, pastor, suppressed past, heart attack, loss of father, conductor, choir, violent husband, church choir, choirmaster, dying and death", "tags_pipe": "|individual|underdog|mentally disabled|loss of mother|sweden|pastor|suppressed past|heart attack|loss of father|conductor|choir|violent husband|church choir|choirmaster|dying and death|", "overview": "A musical romantic tragedy about a famous composer who moves back to his small hometown after having had heart troubles. His search for a simple everyday life leads him into teaching the local church choir which is not easily accepted by the town yet the choir builds a great love for their teacher.", "text_for_embedding": "As It Is in Heaven (2004). Genres: Romance, Drama, Comedy, Music. A musical romantic tragedy about a famous composer who moves back to his small hometown after having had heart troubles. His search for a simple everyday life leads him into teaching the local church choir which is not easily accepted by the town yet the choir builds a great love for their teacher.. Tags: individual, underdog, mentally disabled, loss of mother, sweden, pastor, suppressed past, heart attack, loss of father, conductor, choir, violent husband, church choir, choirmaster, dying and death"} +{"id": "308467", "title": "Roadside", "year": 2013, "duration_min": 90, "rating": 4.2, "genres": "Horror, Drama", "genres_pipe": "|Horror|Drama|", "keywords": "", "tags_pipe": "", "overview": "Dan Summers and his pregnant wife, Mindy, fight for their lives when they are held hostage in their car by an unseen gunman on the side of a desolate mountain road.", "text_for_embedding": "Roadside (2013). Genres: Horror, Drama. Dan Summers and his pregnant wife, Mindy, fight for their lives when they are held hostage in their car by an unseen gunman on the side of a desolate mountain road.. Tags: "} +{"id": "8193", "title": "Napoleon Dynamite", "year": 2004, "duration_min": 95, "rating": 6.7, "genres": "Comedy", "genres_pipe": "|Comedy|", "keywords": "underdog, brother brother relationship, idaho, high school, chat, independent film, teenager, school dance, social outcast, aftercreditsstinger", "tags_pipe": "|underdog|brother brother relationship|idaho|high school|chat|independent film|teenager|school dance|social outcast|aftercreditsstinger|", "overview": "A listless and alienated teenager decides to help his new friend win the class presidency in their small western high school, while he must deal with his bizarre family life back home.", "text_for_embedding": "Napoleon Dynamite (2004). Genres: Comedy. A listless and alienated teenager decides to help his new friend win the class presidency in their small western high school, while he must deal with his bizarre family life back home.. Tags: underdog, brother brother relationship, idaho, high school, chat, independent film, teenager, school dance, social outcast, aftercreditsstinger"} +{"id": "188166", "title": "Blue Ruin", "year": 2014, "duration_min": 90, "rating": 6.9, "genres": "Crime, Thriller", "genres_pipe": "|Crime|Thriller|", "keywords": "revenge, drifter, virginia, character study, neo-noir, visual storytelling, mumblegore", "tags_pipe": "|revenge|drifter|virginia|character study|neo-noir|visual storytelling|mumblegore|", "overview": "The quiet life of a beach bum is upended by dreadful news. He sets off for his childhood home to carry out an act of vengeance but proves an inept assassin and finds himself in a brutal fight to protect his estranged family.", "text_for_embedding": "Blue Ruin (2014). Genres: Crime, Thriller. The quiet life of a beach bum is upended by dreadful news. He sets off for his childhood home to carry out an act of vengeance but proves an inept assassin and finds himself in a brutal fight to protect his estranged family.. Tags: revenge, drifter, virginia, character study, neo-noir, visual storytelling, mumblegore"} +{"id": "23827", "title": "Paranormal Activity", "year": 2007, "duration_min": 86, "rating": 5.9, "genres": "Horror, Mystery", "genres_pipe": "|Horror|Mystery|", "keywords": "haunting, psychic, entity, demonic possession, found footage", "tags_pipe": "|haunting|psychic|entity|demonic possession|found footage|", "overview": "After a young, middle class couple moves into a suburban 'starter' tract house, they become increasingly disturbed by a presence that may or may not be somehow demonic but is certainly most active in the middle of the night. Especially when they sleep. Or try to.", "text_for_embedding": "Paranormal Activity (2007). Genres: Horror, Mystery. After a young, middle class couple moves into a suburban 'starter' tract house, they become increasingly disturbed by a presence that may or may not be somehow demonic but is certainly most active in the middle of the night. Especially when they sleep. Or try to.. Tags: haunting, psychic, entity, demonic possession, found footage"} +{"id": "1282", "title": "Dogtown and Z-Boys", "year": 2001, "duration_min": 91, "rating": 7.2, "genres": "Documentary", "genres_pipe": "|Documentary|", "keywords": "skateboarding, independent film", "tags_pipe": "|skateboarding|independent film|", "overview": "Dogtown and Z-Boys follows the evolution of skateboarding from the 60's and into the late 70's as skateboarding's california beach boy image is transformed into a low-riding surf oriented style.", "text_for_embedding": "Dogtown and Z-Boys (2001). Genres: Documentary. Dogtown and Z-Boys follows the evolution of skateboarding from the 60's and into the late 70's as skateboarding's california beach boy image is transformed into a low-riding surf oriented style.. Tags: skateboarding, independent film"} +{"id": "762", "title": "Monty Python and the Holy Grail", "year": 1975, "duration_min": 91, "rating": 7.8, "genres": "Adventure, Comedy, Fantasy", "genres_pipe": "|Adventure|Comedy|Fantasy|", "keywords": "holy grail, monk, scotland yard, swordplay, camelot, round table, chapter, aggression by animal, knight, king arthur, wedding reception, midnight movie, monty python, knights of the round table, anarchic comedy", "tags_pipe": "|holy grail|monk|scotland yard|swordplay|camelot|round table|chapter|aggression by animal|knight|king arthur|wedding reception|midnight movie|monty python|knights of the round table|anarchic comedy|", "overview": "King Arthur, accompanied by his squire, recruits his Knights of the Round Table, including Sir Bedevere the Wise, Sir Lancelot the Brave, Sir Robin the Not-Quite-So-Brave-As-Sir-Lancelot and Sir Galahad the Pure. On the way, Arthur battles the Black Knight who, despite having had all his limbs chopped off, insists he can still fight. They reach Camelot, but Arthur decides not to enter, as \"it is a silly place\".", "text_for_embedding": "Monty Python and the Holy Grail (1975). Genres: Adventure, Comedy, Fantasy. King Arthur, accompanied by his squire, recruits his Knights of the Round Table, including Sir Bedevere the Wise, Sir Lancelot the Brave, Sir Robin the Not-Quite-So-Brave-As-Sir-Lancelot and Sir Galahad the Pure. On the way, Arthur battles the Black Knight who, despite having had all his limbs chopped off, insists he can still fight. They reach Camelot, but Arthur decides not to enter, as \"it is a silly place\".. Tags: holy grail, monk, scotland yard, swordplay, camelot, round table, chapter, aggression by animal, knight, king arthur, wedding reception, midnight movie, monty python, knights of the round table, anarchic comedy"} +{"id": "64499", "title": "Quinceañera", "year": 2006, "duration_min": 90, "rating": 7.0, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "", "tags_pipe": "", "overview": "As Magdalena's 15th birthday approaches, her simple, blissful life is complicated by the discovery that she's pregnant. Kicked out of her house, she finds a new family with her great-granduncle and gay cousin.", "text_for_embedding": "Quinceañera (2006). Genres: Drama. As Magdalena's 15th birthday approaches, her simple, blissful life is complicated by the discovery that she's pregnant. Kicked out of her house, she finds a new family with her great-granduncle and gay cousin.. Tags: "} +{"id": "1435", "title": "Tarnation", "year": 2003, "duration_min": 91, "rating": 7.5, "genres": "Documentary, Drama", "genres_pipe": "|Documentary|Drama|", "keywords": "schizophrenia, gay, usa, rape, texas, loss of sense of reality, foster parents, single, homosexuality, relationship, psychopathy, family feud, electro shock", "tags_pipe": "|schizophrenia|gay|usa|rape|texas|loss of sense of reality|foster parents|single|homosexuality|relationship|psychopathy|family feud|electro shock|", "overview": "Filmmaker Jonathan Caouette's documentary on growing up with his schizophrenic mother -- a mixture of snapshots, Super-8, answering machine messages, video diaries, early short films, and more -- culled from 19 years of his life.", "text_for_embedding": "Tarnation (2003). Genres: Documentary, Drama. Filmmaker Jonathan Caouette's documentary on growing up with his schizophrenic mother -- a mixture of snapshots, Super-8, answering machine messages, video diaries, early short films, and more -- culled from 19 years of his life.. Tags: schizophrenia, gay, usa, rape, texas, loss of sense of reality, foster parents, single, homosexuality, relationship, psychopathy, family feud, electro shock"} +{"id": "47546", "title": "I Want Your Money", "year": 2010, "duration_min": 92, "rating": 3.8, "genres": "Documentary", "genres_pipe": "|Documentary|", "keywords": "", "tags_pipe": "", "overview": "Two versions of the American dream now stand in sharp contrast. One views the money you earned as yours and best allocated by you; the other believes that an elite in Washington knows best how to allocate your wealth. One champions the traditional American dream, which has played out millions of times through generations of Americans, of improving one's lot in life and even daring to dream and build big. The other holds that there is no end to the \"good\" the government can do by taking and spending other peoples' money in an ever-burgeoning list of programs. The documentary film I Want Your Money exposes the high cost in lost freedom and in lost opportunity to support a Leviathan-like bureaucratic state.", "text_for_embedding": "I Want Your Money (2010). Genres: Documentary. Two versions of the American dream now stand in sharp contrast. One views the money you earned as yours and best allocated by you; the other believes that an elite in Washington knows best how to allocate your wealth. One champions the traditional American dream, which has played out millions of times through generations of Americans, of improving one's lot in life and even daring to dream and build big. The other holds that there is no end to the \"good\" the government can do by taking and spending other peoples' money in an ever-burgeoning list of programs. The documentary film I Want Your Money exposes the high cost in lost freedom and in lost opportunity to support a Leviathan-like bureaucratic state.. Tags: "} +{"id": "19204", "title": "The Beyond", "year": 1981, "duration_min": 87, "rating": 6.6, "genres": "Horror", "genres_pipe": "|Horror|", "keywords": "hotel, experiment, hell, gore, morgue, undead, blood, zombie, violence, gothic horror, gothic, mutilation, ghost, blindness, video nasty", "tags_pipe": "|hotel|experiment|hell|gore|morgue|undead|blood|zombie|violence|gothic horror|gothic|mutilation|ghost|blindness|video nasty|", "overview": "A young woman inherits an old hotel in Louisiana where after a series of supernatural 'accidents', she learns that the building was built over one of the entrances to Hell.", "text_for_embedding": "The Beyond (1981). Genres: Horror. A young woman inherits an old hotel in Louisiana where after a series of supernatural 'accidents', she learns that the building was built over one of the entrances to Hell.. Tags: hotel, experiment, hell, gore, morgue, undead, blood, zombie, violence, gothic horror, gothic, mutilation, ghost, blindness, video nasty"} +{"id": "9029", "title": "What Happens in Vegas", "year": 2008, "duration_min": 99, "rating": 5.8, "genres": "Comedy, Romance", "genres_pipe": "|Comedy|Romance|", "keywords": "casino, hotel, roommate, fictitious marriage, romantic comedy, rivalry, wedding, las vegas", "tags_pipe": "|casino|hotel|roommate|fictitious marriage|romantic comedy|rivalry|wedding|las vegas|", "overview": "During a wild vacation in Las Vegas, career woman Joy McNally and playboy Jack Fuller come to the sober realization that they have married each other after a night of drunken abandon. They are then compelled, for legal reasons, to live life as a couple for a limited period of time. At stake is a large amount of money.", "text_for_embedding": "What Happens in Vegas (2008). Genres: Comedy, Romance. During a wild vacation in Las Vegas, career woman Joy McNally and playboy Jack Fuller come to the sober realization that they have married each other after a night of drunken abandon. They are then compelled, for legal reasons, to live life as a couple for a limited period of time. At stake is a large amount of money.. Tags: casino, hotel, roommate, fictitious marriage, romantic comedy, rivalry, wedding, las vegas"} +{"id": "18045", "title": "The Dark Hours", "year": 2005, "duration_min": 80, "rating": 5.5, "genres": "Horror, Science Fiction, Thriller", "genres_pipe": "|Horror|Science Fiction|Thriller|", "keywords": "canada, winter, hostage, olympic games, cabin, psychopath, basement, surrealism, suspense, snow, blood, psychiatrist, game, mental patient, axe murder", "tags_pipe": "|canada|winter|hostage|olympic games|cabin|psychopath|basement|surrealism|suspense|snow|blood|psychiatrist|game|mental patient|axe murder|", "overview": "Dr. Samantha Goodman is a beautiful, young psychiatrist. Burnt out, she drives to the family’s winter cottage to spend time with her husband and sister. A relaxing weekend is jarringly interrupted when a terrifying and unexpected guest arrives. What follows is an extraordinary night of terror and evil mind games where escape is not an option.", "text_for_embedding": "The Dark Hours (2005). Genres: Horror, Science Fiction, Thriller. Dr. Samantha Goodman is a beautiful, young psychiatrist. Burnt out, she drives to the family’s winter cottage to spend time with her husband and sister. A relaxing weekend is jarringly interrupted when a terrifying and unexpected guest arrives. What follows is an extraordinary night of terror and evil mind games where escape is not an option.. Tags: canada, winter, hostage, olympic games, cabin, psychopath, basement, surrealism, suspense, snow, blood, psychiatrist, game, mental patient, axe murder"} +{"id": "11240", "title": "My Beautiful Laundrette", "year": 1985, "duration_min": 97, "rating": 6.6, "genres": "Romance, Drama, Comedy", "genres_pipe": "|Romance|Drama|Comedy|", "keywords": "london england, gay, immigration, society, british, independent film, gay interest, racism", "tags_pipe": "|london england|gay|immigration|society|british|independent film|gay interest|racism|", "overview": "Omar, a homosexual Pakistani boy living in London with his alcoholic father, lifts a chunk of drug money from another Pakistani and, with his lover Johnny, decides to renovate a grungy laundrette.", "text_for_embedding": "My Beautiful Laundrette (1985). Genres: Romance, Drama, Comedy. Omar, a homosexual Pakistani boy living in London with his alcoholic father, lifts a chunk of drug money from another Pakistani and, with his lover Johnny, decides to renovate a grungy laundrette.. Tags: london england, gay, immigration, society, british, independent film, gay interest, racism"} +{"id": "43743", "title": "Fabled", "year": 2002, "duration_min": 84, "rating": 0.0, "genres": "Drama, Mystery, Thriller", "genres_pipe": "|Drama|Mystery|Thriller|", "keywords": "independent film", "tags_pipe": "|independent film|", "overview": "Joseph just broke up with his girlfriend and is not taking it very well. He thinks she is plotting against him with their mutual psychiatrist. His dog is missing and he suspects the people at work might be behind it. Then there is the unshakable guilt over his past. It just might all be bearable, somehow possible to live through, if it weren't for those damned 'monsters' that keep trying to kill him. Through an allegorical 'fable' that is told in parallel with Joseph's struggle, we are left to decide for ourselves in the end, who is the crow and who is the wolf., was someone out to get Joseph, was it a stroke of bad luck, or was it all in his head?", "text_for_embedding": "Fabled (2002). Genres: Drama, Mystery, Thriller. Joseph just broke up with his girlfriend and is not taking it very well. He thinks she is plotting against him with their mutual psychiatrist. His dog is missing and he suspects the people at work might be behind it. Then there is the unshakable guilt over his past. It just might all be bearable, somehow possible to live through, if it weren't for those damned 'monsters' that keep trying to kill him. Through an allegorical 'fable' that is told in parallel with Joseph's struggle, we are left to decide for ourselves in the end, who is the crow and who is the wolf., was someone out to get Joseph, was it a stroke of bad luck, or was it all in his head?. Tags: independent film"} +{"id": "157909", "title": "Show Me", "year": 2004, "duration_min": 97, "rating": 5.6, "genres": "Drama, Thriller", "genres_pipe": "|Drama|Thriller|", "keywords": "kidnapping", "tags_pipe": "|kidnapping|", "overview": "When two squeegee kids descend upon Sarah and her luxury sedan, the fuse is lit on a tense cat and mouse tale of captors and captives. Sarah is forced to continue her trip to an isolated cottage where the twisted trio bait and entice one another in a reckless search for truth.", "text_for_embedding": "Show Me (2004). Genres: Drama, Thriller. When two squeegee kids descend upon Sarah and her luxury sedan, the fuse is lit on a tense cat and mouse tale of captors and captives. Sarah is forced to continue her trip to an isolated cottage where the twisted trio bait and entice one another in a reckless search for truth.. Tags: kidnapping"} +{"id": "10238", "title": "Cries and Whispers", "year": 1972, "duration_min": 91, "rating": 7.8, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "sister sister relationship, sweden, dying and death", "tags_pipe": "|sister sister relationship|sweden|dying and death|", "overview": "When a woman dying of cancer in turn-of-the century Sweden is visited by her two sisters, long repressed feelings between the siblings rise to the surface.", "text_for_embedding": "Cries and Whispers (1972). Genres: Drama. When a woman dying of cancer in turn-of-the century Sweden is visited by her two sisters, long repressed feelings between the siblings rise to the surface.. Tags: sister sister relationship, sweden, dying and death"} +{"id": "3059", "title": "Intolerance", "year": 1916, "duration_min": 197, "rating": 7.4, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "usa, naivety, intolerance, mill, marriage, wedding, massacre, protestant, silent film, multiple storylines, reformer, saved from hanging, jesus", "tags_pipe": "|usa|naivety|intolerance|mill|marriage|wedding|massacre|protestant|silent film|multiple storylines|reformer|saved from hanging|jesus|", "overview": "The story of a poor young woman, separated by prejudice from her husband and baby, is interwoven with tales of intolerance from throughout history.", "text_for_embedding": "Intolerance (1916). Genres: Drama. The story of a poor young woman, separated by prejudice from her husband and baby, is interwoven with tales of intolerance from throughout history.. Tags: usa, naivety, intolerance, mill, marriage, wedding, massacre, protestant, silent film, multiple storylines, reformer, saved from hanging, jesus"} +{"id": "15800", "title": "Trekkies", "year": 1997, "duration_min": 86, "rating": 6.3, "genres": "Documentary", "genres_pipe": "|Documentary|", "keywords": "pop culture, fan culture, documentary, science fiction, space opera, fan convention, fandom", "tags_pipe": "|pop culture|fan culture|documentary|science fiction|space opera|fan convention|fandom|", "overview": "A hilarious look at the universe's most fervent fans.", "text_for_embedding": "Trekkies (1997). Genres: Documentary. A hilarious look at the universe's most fervent fans.. Tags: pop culture, fan culture, documentary, science fiction, space opera, fan convention, fandom"} +{"id": "65203", "title": "The Broadway Melody", "year": 1929, "duration_min": 100, "rating": 5.0, "genres": "Drama, Music, Romance", "genres_pipe": "|Drama|Music|Romance|", "keywords": "musical, singer, pre-code, wisecrack humor, early sound film, partially lost film", "tags_pipe": "|musical|singer|pre-code|wisecrack humor|early sound film|partially lost film|", "overview": "Harriet and Queenie Mahoney, a vaudeville act, come to Broadway, where their friend Eddie Kerns needs them for his number in one of Francis Zanfield's shows. Eddie was in love with Harriet, but when he meets Queenie, he falls in love to her, but she is courted by Jock Warriner, a member of the New Yorker high society. It takes a while till Queenie recognizes, that she is for Jock nothing more than a toy, and it also takes a while till Harriet recognizes, that Eddie is in love with Queenie", "text_for_embedding": "The Broadway Melody (1929). Genres: Drama, Music, Romance. Harriet and Queenie Mahoney, a vaudeville act, come to Broadway, where their friend Eddie Kerns needs them for his number in one of Francis Zanfield's shows. Eddie was in love with Harriet, but when he meets Queenie, he falls in love to her, but she is courted by Jock Warriner, a member of the New Yorker high society. It takes a while till Queenie recognizes, that she is for Jock nothing more than a toy, and it also takes a while till Harriet recognizes, that Eddie is in love with Queenie. Tags: musical, singer, pre-code, wisecrack humor, early sound film, partially lost film"} +{"id": "764", "title": "The Evil Dead", "year": 1981, "duration_min": 85, "rating": 7.3, "genres": "Horror", "genres_pipe": "|Horror|", "keywords": "falsely accused, beheading, audio tape, log cabin, chain saw, giant plant, aggression by plant, lodge, friends, stop motion, evil, occult, book of the dead, necronomicon, demonic possession", "tags_pipe": "|falsely accused|beheading|audio tape|log cabin|chain saw|giant plant|aggression by plant|lodge|friends|stop motion|evil|occult|book of the dead|necronomicon|demonic possession|", "overview": "When a group of college students finds a mysterious book and recording in the old wilderness cabin they've rented for the weekend, they unwittingly unleash a demonic force from the surrounding forest.", "text_for_embedding": "The Evil Dead (1981). Genres: Horror. When a group of college students finds a mysterious book and recording in the old wilderness cabin they've rented for the weekend, they unwittingly unleash a demonic force from the surrounding forest.. Tags: falsely accused, beheading, audio tape, log cabin, chain saw, giant plant, aggression by plant, lodge, friends, stop motion, evil, occult, book of the dead, necronomicon, demonic possession"} +{"id": "103620", "title": "Maniac", "year": 2012, "duration_min": 89, "rating": 6.0, "genres": "Horror", "genres_pipe": "|Horror|", "keywords": "prostitute, mannequin, remake, murder, gore, serial killer, scalping, misogynist, mumblegore", "tags_pipe": "|prostitute|mannequin|remake|murder|gore|serial killer|scalping|misogynist|mumblegore|", "overview": "As he helps a young artist with her upcoming exhibition, the owner of a mannequin shop's deadly, suppressed desires come to the surface.", "text_for_embedding": "Maniac (2012). Genres: Horror. As he helps a young artist with her upcoming exhibition, the owner of a mannequin shop's deadly, suppressed desires come to the surface.. Tags: prostitute, mannequin, remake, murder, gore, serial killer, scalping, misogynist, mumblegore"} +{"id": "319069", "title": "Censored Voices", "year": 2015, "duration_min": 84, "rating": 5.1, "genres": "History, Documentary", "genres_pipe": "|History|Documentary|", "keywords": "woman director", "tags_pipe": "|woman director|", "overview": "The 1967 'Six-Day' war ended with Israel's decisive victory; conquering Jerusalem, Gaza, Sinai and the West Bank. It is a war portrayed, to this day, as a righteous undertaking - a radiant emblem of Jewish pride. One week after the war, a group of young kibbutzniks, led by renowned author Amos Oz, recorded intimate conversations with soldiers returning from the battlefield. The recording revealed an honest look at the moment Israel turned from David to Goliath. The Israeli army censored the recordings, allowing the kibbutzniks to publish only a fragment of the conversations. 'Censored Voices' reveals the original recordings for the first time.", "text_for_embedding": "Censored Voices (2015). Genres: History, Documentary. The 1967 'Six-Day' war ended with Israel's decisive victory; conquering Jerusalem, Gaza, Sinai and the West Bank. It is a war portrayed, to this day, as a righteous undertaking - a radiant emblem of Jewish pride. One week after the war, a group of young kibbutzniks, led by renowned author Amos Oz, recorded intimate conversations with soldiers returning from the battlefield. The recording revealed an honest look at the moment Israel turned from David to Goliath. The Israeli army censored the recordings, allowing the kibbutzniks to publish only a fragment of the conversations. 'Censored Voices' reveals the original recordings for the first time.. Tags: woman director"} +{"id": "14278", "title": "Murderball", "year": 2005, "duration_min": 88, "rating": 6.9, "genres": "Documentary", "genres_pipe": "|Documentary|", "keywords": "paralympics, wheelchair, sport, rugby", "tags_pipe": "|paralympics|wheelchair|sport|rugby|", "overview": "Quadriplegics, who play full-contact rugby in wheelchairs, overcome unimaginable obstacles to compete in the Paralympic Games in Athens, Greece.", "text_for_embedding": "Murderball (2005). Genres: Documentary. Quadriplegics, who play full-contact rugby in wheelchairs, overcome unimaginable obstacles to compete in the Paralympic Games in Athens, Greece.. Tags: paralympics, wheelchair, sport, rugby"} +{"id": "25678", "title": "American Ninja 2: The Confrontation", "year": 1987, "duration_min": 90, "rating": 4.9, "genres": "Action, Adventure, Drama", "genres_pipe": "|Action|Adventure|Drama|", "keywords": "marine corps, army, ninja", "tags_pipe": "|marine corps|army|ninja|", "overview": "On a remote Caribbean island, Army Ranger Joe Armstrong saves an old friend from the clutches of \"The Lion\", an evil super-criminal who has kidnapped a local scientist and mass-produced an army of mutant Ninja warriors.", "text_for_embedding": "American Ninja 2: The Confrontation (1987). Genres: Action, Adventure, Drama. On a remote Caribbean island, Army Ranger Joe Armstrong saves an old friend from the clutches of \"The Lion\", an evil super-criminal who has kidnapped a local scientist and mass-produced an army of mutant Ninja warriors.. Tags: marine corps, army, ninja"} +{"id": "79161", "title": "51 Birch Street", "year": 2006, "duration_min": 90, "rating": 6.8, "genres": "Documentary", "genres_pipe": "|Documentary|", "keywords": "", "tags_pipe": "", "overview": "Documentary filmmaker Doug Block had every reason to believe his parents' 54-year marriage was a good one. But when his mother dies unexpectedly and his father swiftly marries his former secretary, he discovers two parents who are far more complex and troubled than he ever imagined. 51 Birch Street is a riveting personal documentary that explores a universal human question: how much about your parents do you really want to know?", "text_for_embedding": "51 Birch Street (2006). Genres: Documentary. Documentary filmmaker Doug Block had every reason to believe his parents' 54-year marriage was a good one. But when his mother dies unexpectedly and his father swiftly marries his former secretary, he discovers two parents who are far more complex and troubled than he ever imagined. 51 Birch Street is a riveting personal documentary that explores a universal human question: how much about your parents do you really want to know?. Tags: "} +{"id": "371690", "title": "Rotor DR1", "year": 2015, "duration_min": 98, "rating": 4.7, "genres": "Science Fiction, Family", "genres_pipe": "|Science Fiction|Family|", "keywords": "", "tags_pipe": "", "overview": "In a post-apocalyptic world where half the population is dead or missing and the sky is full of autonomous drones, a 16-year-old boy named Kitch sets out to find his father, joined by DR1, his drone companion.", "text_for_embedding": "Rotor DR1 (2015). Genres: Science Fiction, Family. In a post-apocalyptic world where half the population is dead or missing and the sky is full of autonomous drones, a 16-year-old boy named Kitch sets out to find his father, joined by DR1, his drone companion.. Tags: "} +{"id": "389", "title": "12 Angry Men", "year": 1957, "duration_min": 96, "rating": 8.2, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "judge, jurors, sultriness, death penalty, father murder, puerto rican, anonymity, court case, heat, group, class, innocence, court, courtroom", "tags_pipe": "|judge|jurors|sultriness|death penalty|father murder|puerto rican|anonymity|court case|heat|group|class|innocence|court|courtroom|", "overview": "The defense and the prosecution have rested and the jury is filing into the jury room to decide if a young Spanish-American is guilty or innocent of murdering his father. What begins as an open and shut case soon becomes a mini-drama of each of the jurors' prejudices and preconceptions about the trial, the accused, and each other.", "text_for_embedding": "12 Angry Men (1957). Genres: Drama. The defense and the prosecution have rested and the jury is filing into the jury room to decide if a young Spanish-American is guilty or innocent of murdering his father. What begins as an open and shut case soon becomes a mini-drama of each of the jurors' prejudices and preconceptions about the trial, the accused, and each other.. Tags: judge, jurors, sultriness, death penalty, father murder, puerto rican, anonymity, court case, heat, group, class, innocence, court, courtroom"} +{"id": "52032", "title": "My Dog Tulip", "year": 2009, "duration_min": 83, "rating": 7.6, "genres": "Animation, Comedy, Drama", "genres_pipe": "|Animation|Comedy|Drama|", "keywords": "human animal relationship, dog, german shepherd, woman director", "tags_pipe": "|human animal relationship|dog|german shepherd|woman director|", "overview": "The story of a man who rescues a German shepherd and how the two become fast friends.", "text_for_embedding": "My Dog Tulip (2009). Genres: Animation, Comedy, Drama. The story of a man who rescues a German shepherd and how the two become fast friends.. Tags: human animal relationship, dog, german shepherd, woman director"} +{"id": "3078", "title": "It Happened One Night", "year": 1934, "duration_min": 105, "rating": 7.7, "genres": "Comedy, Romance", "genres_pipe": "|Comedy|Romance|", "keywords": "miami, reference to the big bad wolf, reporter", "tags_pipe": "|miami|reference to the big bad wolf|reporter|", "overview": "Ellie Andrews has just tied the knot with society aviator King Westley when she is whisked away to her father's yacht and out of King's clutches. Ellie jumps ship and eventually winds up on a bus headed back to her husband. Reluctantly she must accept the help of out-of- work reporter Peter Warne. Actually, Warne doesn't give her any choice: either she sticks with him until he gets her back to her husband, or he'll blow the whistle on Ellie to her father. Either way, Peter gets what he wants... a really juicy newspaper story!", "text_for_embedding": "It Happened One Night (1934). Genres: Comedy, Romance. Ellie Andrews has just tied the knot with society aviator King Westley when she is whisked away to her father's yacht and out of King's clutches. Ellie jumps ship and eventually winds up on a bus headed back to her husband. Reluctantly she must accept the help of out-of- work reporter Peter Warne. Actually, Warne doesn't give her any choice: either she sticks with him until he gets her back to her husband, or he'll blow the whistle on Ellie to her father. Either way, Peter gets what he wants... a really juicy newspaper story!. Tags: miami, reference to the big bad wolf, reporter"} +{"id": "38810", "title": "Dogtooth", "year": 2009, "duration_min": 94, "rating": 6.9, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "male nudity, female nudity, hostage, paranoia, dysfunctional family, unsimulated sex, incest, lesbian sex, mental illness, explicit sex, sexual awakening, fantasy world, isolated house, brother sister incest, home education", "tags_pipe": "|male nudity|female nudity|hostage|paranoia|dysfunctional family|unsimulated sex|incest|lesbian sex|mental illness|explicit sex|sexual awakening|fantasy world|isolated house|brother sister incest|home education|", "overview": "Three teenagers are confined to an isolated country estate that could very well be on another planet. The trio spend their days listening to endless homemade tapes that teach them a whole new vocabulary. Any word that comes from beyond their family abode is instantly assigned a new meaning. Hence 'the sea' refers to a large armchair and 'zombies' are little yellow flowers. Having invented a brother whom they claim to have ostracized for his disobedience, the uber-controlling parents terrorize their offspring into submission.", "text_for_embedding": "Dogtooth (2009). Genres: Drama. Three teenagers are confined to an isolated country estate that could very well be on another planet. The trio spend their days listening to endless homemade tapes that teach them a whole new vocabulary. Any word that comes from beyond their family abode is instantly assigned a new meaning. Hence 'the sea' refers to a large armchair and 'zombies' are little yellow flowers. Having invented a brother whom they claim to have ostracized for his disobedience, the uber-controlling parents terrorize their offspring into submission.. Tags: male nudity, female nudity, hostage, paranoia, dysfunctional family, unsimulated sex, incest, lesbian sex, mental illness, explicit sex, sexual awakening, fantasy world, isolated house, brother sister incest, home education"} +{"id": "21525", "title": "Tupac: Resurrection", "year": 2003, "duration_min": 112, "rating": 8.0, "genres": "Music, Documentary", "genres_pipe": "|Music|Documentary|", "keywords": "rap music, hip-hop, blunt, woman director", "tags_pipe": "|rap music|hip-hop|blunt|woman director|", "overview": "Home movies, photographs, and recited poetry illustrate the life of Tupac Shakur, one of the most beloved, revolutionary, and volatile hip-hop MCs of all time.", "text_for_embedding": "Tupac: Resurrection (2003). Genres: Music, Documentary. Home movies, photographs, and recited poetry illustrate the life of Tupac Shakur, one of the most beloved, revolutionary, and volatile hip-hop MCs of all time.. Tags: rap music, hip-hop, blunt, woman director"} +{"id": "55123", "title": "Tumbleweeds", "year": 1999, "duration_min": 102, "rating": 6.2, "genres": "Comedy, Drama", "genres_pipe": "|Comedy|Drama|", "keywords": "independent film", "tags_pipe": "|independent film|", "overview": "A woman constantly runs from town to town with her 12 year old daughter to escape failed relationships. The film opens with one escape and the shift into a new start in San Diego. There Mom takes up with a controlling trucker and fights with her weirdo boss. Meanwhile, the daughter, used to making the constant shifts, finds a fit at school including getting chosen for a play lead.", "text_for_embedding": "Tumbleweeds (1999). Genres: Comedy, Drama. A woman constantly runs from town to town with her 12 year old daughter to escape failed relationships. The film opens with one escape and the shift into a new start in San Diego. There Mom takes up with a controlling trucker and fights with her weirdo boss. Meanwhile, the daughter, used to making the constant shifts, finds a fit at school including getting chosen for a play lead.. Tags: independent film"} +{"id": "11980", "title": "The Prophecy", "year": 1995, "duration_min": 98, "rating": 6.4, "genres": "Fantasy, Horror, Thriller", "genres_pipe": "|Fantasy|Horror|Thriller|", "keywords": "angel, archangel gabriel, menschheit", "tags_pipe": "|angel|archangel gabriel|menschheit|", "overview": "The angel Gabriel comes to Earth to collect a soul which will end the stalemated war in Heaven, and only a former priest and a little girl can stop him.", "text_for_embedding": "The Prophecy (1995). Genres: Fantasy, Horror, Thriller. The angel Gabriel comes to Earth to collect a soul which will end the stalemated war in Heaven, and only a former priest and a little girl can stop him.. Tags: angel, archangel gabriel, menschheit"} +{"id": "11956", "title": "When the Cat's Away", "year": 1996, "duration_min": 91, "rating": 6.1, "genres": "Comedy", "genres_pipe": "|Comedy|", "keywords": "paris, cat", "tags_pipe": "|paris|cat|", "overview": "When Chloe (Garance Clavel), a young Parisian, decides to take a long-overdue vacation, she has to find someone to look after Gris-Gris, her beloved cat. Everyone, including her gay male roommate, refuses to help her, but she finally makes an arrangement with the elderly Madame Renée (Renée Le Calm), who often watches over other peoples' cats and dogs. However, when Chloe comes back, Madame Renée tells her that unfortunately the cat has been lost, and the unlucky owner goes on a search for her dear animal friend. While looking for the cat, she meets many colorful characters who populate the neighborhood.", "text_for_embedding": "When the Cat's Away (1996). Genres: Comedy. When Chloe (Garance Clavel), a young Parisian, decides to take a long-overdue vacation, she has to find someone to look after Gris-Gris, her beloved cat. Everyone, including her gay male roommate, refuses to help her, but she finally makes an arrangement with the elderly Madame Renée (Renée Le Calm), who often watches over other peoples' cats and dogs. However, when Chloe comes back, Madame Renée tells her that unfortunately the cat has been lost, and the unlucky owner goes on a search for her dear animal friend. While looking for the cat, she meets many colorful characters who populate the neighborhood.. Tags: paris, cat"} +{"id": "1550", "title": "Pieces of April", "year": 2003, "duration_min": 81, "rating": 6.4, "genres": "Comedy, Drama", "genres_pipe": "|Comedy|Drama|", "keywords": "sex, thanksgiving, road trip, love, independent film, neighbor, marijuana, family, illness", "tags_pipe": "|sex|thanksgiving|road trip|love|independent film|neighbor|marijuana|family|illness|", "overview": "Quirky and rebellious April Burns lives with her boyfriend in a low-rent New York City apartment miles away from her emotionally distant family. But when she discovers that her mother has a fatal form of breast cancer, she invites the clan to her place for Thanksgiving. While her father struggles to drive her family into the city, April -- an inexperienced cook -- runs into kitchen trouble and must ask a neighbor for help.", "text_for_embedding": "Pieces of April (2003). Genres: Comedy, Drama. Quirky and rebellious April Burns lives with her boyfriend in a low-rent New York City apartment miles away from her emotionally distant family. But when she discovers that her mother has a fatal form of breast cancer, she invites the clan to her place for Thanksgiving. While her father struggles to drive her family into the city, April -- an inexperienced cook -- runs into kitchen trouble and must ask a neighbor for help.. Tags: sex, thanksgiving, road trip, love, independent film, neighbor, marijuana, family, illness"} +{"id": "26518", "title": "Old Joy", "year": 2006, "duration_min": 73, "rating": 6.3, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "woman director", "tags_pipe": "|woman director|", "overview": "Two old pals reunite for a camping trip in Oregon's Cascade Mountains.", "text_for_embedding": "Old Joy (2006). Genres: Drama. Two old pals reunite for a camping trip in Oregon's Cascade Mountains.. Tags: woman director"} +{"id": "8942", "title": "Wendy and Lucy", "year": 2008, "duration_min": 80, "rating": 6.4, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "usa, friendship, survival, scar, family, woman director, journey, mysterious past", "tags_pipe": "|usa|friendship|survival|scar|family|woman director|journey|mysterious past|", "overview": "Wendy, a near-penniless drifter, is traveling to Alaska in search of work, and her only companion is her dog, Lucy. Already perilously close to losing everything, Wendy hits a bigger bump in the road when her old car breaks down and she is arrested for shoplifting dog food. When she posts bail and returns to retrieve Lucy, she finds that the dog is gone, prompting a frantic search for her pet.", "text_for_embedding": "Wendy and Lucy (2008). Genres: Drama. Wendy, a near-penniless drifter, is traveling to Alaska in search of work, and her only companion is her dog, Lucy. Already perilously close to losing everything, Wendy hits a bigger bump in the road when her old car breaks down and she is arrested for shoplifting dog food. When she posts bail and returns to retrieve Lucy, she finds that the dog is gone, prompting a frantic search for her pet.. Tags: usa, friendship, survival, scar, family, woman director, journey, mysterious past"} +{"id": "68412", "title": "3 Backyards", "year": 2010, "duration_min": 88, "rating": 4.8, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "independent film", "tags_pipe": "|independent film|", "overview": "The story of three people from the same suburban town during the course of one curious autumn day.", "text_for_embedding": "3 Backyards (2010). Genres: Drama. The story of three people from the same suburban town during the course of one curious autumn day.. Tags: independent film"} +{"id": "2786", "title": "Pierrot le Fou", "year": 1965, "duration_min": 110, "rating": 7.6, "genres": "Drama, Thriller", "genres_pipe": "|Drama|Thriller|", "keywords": "paris, painting, independent film, money, bombing, bullet, dock, french noir", "tags_pipe": "|paris|painting|independent film|money|bombing|bullet|dock|french noir|", "overview": "Pierrot escapes his boring society and travels from Paris to the Mediterranean Sea with Marianne, a girl chased by hit-men from Algeria. They lead an unorthodox life, always on the run.", "text_for_embedding": "Pierrot le Fou (1965). Genres: Drama, Thriller. Pierrot escapes his boring society and travels from Paris to the Mediterranean Sea with Marianne, a girl chased by hit-men from Algeria. They lead an unorthodox life, always on the run.. Tags: paris, painting, independent film, money, bombing, bullet, dock, french noir"} +{"id": "87943", "title": "Sisters in Law", "year": 2005, "duration_min": 104, "rating": 7.3, "genres": "Documentary", "genres_pipe": "|Documentary|", "keywords": "woman director", "tags_pipe": "|woman director|", "overview": "Set in Kumba in South West Cameroon Sisters in Law follows Adultery, Rape and Abuse cases led by a Female Judge.", "text_for_embedding": "Sisters in Law (2005). Genres: Documentary. Set in Kumba in South West Cameroon Sisters in Law follows Adultery, Rape and Abuse cases led by a Female Judge.. Tags: woman director"} +{"id": "73981", "title": "Ayurveda: Art of Being", "year": 2001, "duration_min": 101, "rating": 5.5, "genres": "Documentary", "genres_pipe": "|Documentary|", "keywords": "philosophy, india, healing", "tags_pipe": "|philosophy|india|healing|", "overview": "Ayurveda is a science of life and a healing art, where body, mind and spirit are given equal importance. This voyage of thousands of miles across India and abroad takes you on a unique poetic journey, where we encounter remarkable men of medicine or simply a villager who lives in harmony with nature. \"Hope is nature's way of enabling us to survive so that we can discover nature itself.\"", "text_for_embedding": "Ayurveda: Art of Being (2001). Genres: Documentary. Ayurveda is a science of life and a healing art, where body, mind and spirit are given equal importance. This voyage of thousands of miles across India and abroad takes you on a unique poetic journey, where we encounter remarkable men of medicine or simply a villager who lives in harmony with nature. \"Hope is nature's way of enabling us to survive so that we can discover nature itself.\". Tags: philosophy, india, healing"} +{"id": "91721", "title": "Nothing But a Man", "year": 1964, "duration_min": 95, "rating": 7.0, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "", "tags_pipe": "", "overview": "A proud black man and his school-teacher wife face discriminatory challenges in 1960s America.", "text_for_embedding": "Nothing But a Man (1964). Genres: Drama. A proud black man and his school-teacher wife face discriminatory challenges in 1960s America.. Tags: "} +{"id": "118452", "title": "First Love, Last Rites", "year": 1998, "duration_min": 94, "rating": 3.0, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "sex, misfit, boring", "tags_pipe": "|sex|misfit|boring|", "overview": "Joey and Sissel are two misfits spending most of their time together talking or having sex. Gradually and slowly their relationships are becoming boring for them.", "text_for_embedding": "First Love, Last Rites (1998). Genres: Drama. Joey and Sissel are two misfits spending most of their time together talking or having sex. Gradually and slowly their relationships are becoming boring for them.. Tags: sex, misfit, boring"} +{"id": "40914", "title": "Royal Kill", "year": 2009, "duration_min": 90, "rating": 2.8, "genres": "Action, Thriller", "genres_pipe": "|Action|Thriller|", "keywords": "bodyguard, princess, female assassin, soldier, heir", "tags_pipe": "|bodyguard|princess|female assassin|soldier|heir|", "overview": "A fearsome warrior from the Kingdom of Samarza arrives in America to assassinate a high school girl. The girl does not know it, but she is the last living heir to the Kingdom. A noble guard arrives in America to protect the young princess.", "text_for_embedding": "Royal Kill (2009). Genres: Action, Thriller. A fearsome warrior from the Kingdom of Samarza arrives in America to assassinate a high school girl. The girl does not know it, but she is the last living heir to the Kingdom. A noble guard arrives in America to protect the young princess.. Tags: bodyguard, princess, female assassin, soldier, heir"} +{"id": "365052", "title": "The Looking Glass", "year": 2015, "duration_min": 110, "rating": 7.0, "genres": "", "genres_pipe": "", "keywords": "", "tags_pipe": "", "overview": "Troubled 13-year-old Julie loses her mother and must go to Indiana to live with her grandmother Karen. A former star of stage and screen, Karen has the early stages of Alzheimer's and wants to pass on all she knows to her granddaughter before it's too late. Will their troubled relationship allow this to happen?", "text_for_embedding": "The Looking Glass (2015). Genres: . Troubled 13-year-old Julie loses her mother and must go to Indiana to live with her grandmother Karen. A former star of stage and screen, Karen has the early stages of Alzheimer's and wants to pass on all she knows to her granddaughter before it's too late. Will their troubled relationship allow this to happen?. Tags: "} +{"id": "13282", "title": "Death Race 2000", "year": 1975, "duration_min": 80, "rating": 5.9, "genres": "Action, Comedy, Science Fiction", "genres_pipe": "|Action|Comedy|Science Fiction|", "keywords": "dystopia, street race, reality spoof", "tags_pipe": "|dystopia|street race|reality spoof|", "overview": "In a boorish future, the government sponsors a popular, but bloody, cross-country race in which points are scored by mowing down pedestrians. Five teams, each comprised of a male and female, compete using cars equipped with deadly weapons. Frankenstein, the mysterious returning champion, has become America's hero, but this time he has a passenger from the underground resistance.", "text_for_embedding": "Death Race 2000 (1975). Genres: Action, Comedy, Science Fiction. In a boorish future, the government sponsors a popular, but bloody, cross-country race in which points are scored by mowing down pedestrians. Five teams, each comprised of a male and female, compete using cars equipped with deadly weapons. Frankenstein, the mysterious returning champion, has become America's hero, but this time he has a passenger from the underground resistance.. Tags: dystopia, street race, reality spoof"} +{"id": "250184", "title": "Locker 13", "year": 2014, "duration_min": 90, "rating": 6.8, "genres": "Horror, Drama, Thriller", "genres_pipe": "|Horror|Drama|Thriller|", "keywords": "terror, anthology, suspense", "tags_pipe": "|terror|anthology|suspense|", "overview": "The story of Skip, a young ex-convict who takes a position as a night janitor at an old-west theme park. His supervisor Archie, teaches him the ropes, but more importantly attempts to convey critical philosophical messages through a series of four stories: a down and out boxer is given the opportunity to become a real golden gloves killer; an assassin kidnaps three people in order to find out who hired him for his latest hit; a new recruit is initiated into a lodge of fez-wearing businessmen where hazing can take a malevolent turn; and a member of a suicide club introduces real fear into a man about to jump to his death.", "text_for_embedding": "Locker 13 (2014). Genres: Horror, Drama, Thriller. The story of Skip, a young ex-convict who takes a position as a night janitor at an old-west theme park. His supervisor Archie, teaches him the ropes, but more importantly attempts to convey critical philosophical messages through a series of four stories: a down and out boxer is given the opportunity to become a real golden gloves killer; an assassin kidnaps three people in order to find out who hired him for his latest hit; a new recruit is initiated into a lodge of fez-wearing businessmen where hazing can take a malevolent turn; and a member of a suicide club introduces real fear into a man about to jump to his death.. Tags: terror, anthology, suspense"} +{"id": "426067", "title": "Midnight Cabaret", "year": 1990, "duration_min": 94, "rating": 0.0, "genres": "Horror", "genres_pipe": "|Horror|", "keywords": "", "tags_pipe": "", "overview": "A Broadway producer puts on a play with a Devil character in it. Soon the actors begin having nightmares, and events that are mentioned in the play really start happening.", "text_for_embedding": "Midnight Cabaret (1990). Genres: Horror. A Broadway producer puts on a play with a Devil character in it. Soon the actors begin having nightmares, and events that are mentioned in the play really start happening.. Tags: "} +{"id": "324352", "title": "Anderson's Cross", "year": 2010, "duration_min": 98, "rating": 0.0, "genres": "Romance, Comedy, Drama", "genres_pipe": "|Romance|Comedy|Drama|", "keywords": "coming of age", "tags_pipe": "|coming of age|", "overview": "Nick Anderson, Kevin Daniels, and Tracey Green do everything together. They are the best of friends, and yet they couldn't be more different. Neighbors from adolescence, they finish each other's thoughts and sentences, joys and pains, happiness and tears. Using Nick's house as their own members only clubhouse, they escape into their own world of contentment. Yet the inevitable intrusion of others tests their stability in ways never imagined.", "text_for_embedding": "Anderson's Cross (2010). Genres: Romance, Comedy, Drama. Nick Anderson, Kevin Daniels, and Tracey Green do everything together. They are the best of friends, and yet they couldn't be more different. Neighbors from adolescence, they finish each other's thoughts and sentences, joys and pains, happiness and tears. Using Nick's house as their own members only clubhouse, they escape into their own world of contentment. Yet the inevitable intrusion of others tests their stability in ways never imagined.. Tags: coming of age"} +{"id": "318040", "title": "Bizarre", "year": 2015, "duration_min": 99, "rating": 6.2, "genres": "Drama, Romance", "genres_pipe": "|Drama|Romance|", "keywords": "", "tags_pipe": "", "overview": "Maurice, a reticent young homeless man, somehow manages to get by in Brooklyn; he spends his nights in parked cars until he finds himself at Bizarre, an underground club renowned for its burlesque shows. Maurice is fascinated by the club’s playful revues celebrating self-determined sexuality and creative otherness, and the two female club owners both adore him. He soon becomes a part of their self-selected family, and begins to bond with introverted Luka. But Maurice turns his back on Luka’s growing affection. Running away from his true emotions he drifts aimlessly through the city. He tries to find his feet at a boxing club, where he meets Charlie. Unable to withstand the pressure of his repressed feelings, Maurice unleashes a mounting foment of emotions, pervaded by tenderness and menace.", "text_for_embedding": "Bizarre (2015). Genres: Drama, Romance. Maurice, a reticent young homeless man, somehow manages to get by in Brooklyn; he spends his nights in parked cars until he finds himself at Bizarre, an underground club renowned for its burlesque shows. Maurice is fascinated by the club’s playful revues celebrating self-determined sexuality and creative otherness, and the two female club owners both adore him. He soon becomes a part of their self-selected family, and begins to bond with introverted Luka. But Maurice turns his back on Luka’s growing affection. Running away from his true emotions he drifts aimlessly through the city. He tries to find his feet at a boxing club, where he meets Charlie. Unable to withstand the pressure of his repressed feelings, Maurice unleashes a mounting foment of emotions, pervaded by tenderness and menace.. Tags: "} +{"id": "27420", "title": "Graduation Day", "year": 1981, "duration_min": 96, "rating": 5.0, "genres": "Horror", "genres_pipe": "|Horror|", "keywords": "slasher", "tags_pipe": "|slasher|", "overview": "After a high school track runner, named Laura, suddenly dies from a heart attack after finishing a 30-second 200-meter race, a killer wearing a sweat suit and a fencing mask begins killing off her friends on the school track team one by one. The suspects include the track coach Michaels, Laura's sister Anne who arrives in town for the funeral, the creepy school principal Mr. Guglione, and Laura's strange boyfriend Kevin.", "text_for_embedding": "Graduation Day (1981). Genres: Horror. After a high school track runner, named Laura, suddenly dies from a heart attack after finishing a 30-second 200-meter race, a killer wearing a sweat suit and a fencing mask begins killing off her friends on the school track team one by one. The suspects include the track coach Michaels, Laura's sister Anne who arrives in town for the funeral, the creepy school principal Mr. Guglione, and Laura's strange boyfriend Kevin.. Tags: slasher"} +{"id": "80468", "title": "Some Guy Who Kills People", "year": 2011, "duration_min": 97, "rating": 5.7, "genres": "Comedy, Horror, Thriller", "genres_pipe": "|Comedy|Horror|Thriller|", "keywords": "", "tags_pipe": "", "overview": "A former mental patient's repressed anger reaches the boiling point, leading him to embark on a mission of revenge against the thugs who once subjected him to severe physical and mental trauma.", "text_for_embedding": "Some Guy Who Kills People (2011). Genres: Comedy, Horror, Thriller. A former mental patient's repressed anger reaches the boiling point, leading him to embark on a mission of revenge against the thugs who once subjected him to severe physical and mental trauma.. Tags: "} +{"id": "84188", "title": "Compliance", "year": 2012, "duration_min": 90, "rating": 6.3, "genres": "Drama, Thriller, Crime", "genres_pipe": "|Drama|Thriller|Crime|", "keywords": "", "tags_pipe": "", "overview": "Sandra is the manager at a fast-food restaurant, and Becky is her teenaged counter girl who really needs the job. One stressful day, a police officer telephones and accuses Becky of stealing money from a customer’s purse, which Becky vehemently denies. Sandra, overwhelmed by her managerial responsibilities, complies with the officer’s orders to detain Becky, beginning a nightmare that tragically blurs the lines between expedience, prudence, legality and reason.", "text_for_embedding": "Compliance (2012). Genres: Drama, Thriller, Crime. Sandra is the manager at a fast-food restaurant, and Becky is her teenaged counter girl who really needs the job. One stressful day, a police officer telephones and accuses Becky of stealing money from a customer’s purse, which Becky vehemently denies. Sandra, overwhelmed by her managerial responsibilities, complies with the officer’s orders to detain Becky, beginning a nightmare that tragically blurs the lines between expedience, prudence, legality and reason.. Tags: "} +{"id": "2255", "title": "Chasing Amy", "year": 1997, "duration_min": 113, "rating": 6.7, "genres": "Comedy, Drama, Romance", "genres_pipe": "|Comedy|Drama|Romance|", "keywords": "new jersey, coming out, love of one's life, bisexuality, menage a trois, comic book, comic-strip artist, independent film, lesbian, best friend", "tags_pipe": "|new jersey|coming out|love of one's life|bisexuality|menage a trois|comic book|comic-strip artist|independent film|lesbian|best friend|", "overview": "Holden and Banky are comic book artists. Everything is going good for them until they meet Alyssa, also a comic book artist. Holden falls for her, but his hopes are crushed when he finds out she's a lesbian.", "text_for_embedding": "Chasing Amy (1997). Genres: Comedy, Drama, Romance. Holden and Banky are comic book artists. Everything is going good for them until they meet Alyssa, also a comic book artist. Holden falls for her, but his hopes are crushed when he finds out she's a lesbian.. Tags: new jersey, coming out, love of one's life, bisexuality, menage a trois, comic book, comic-strip artist, independent film, lesbian, best friend"} +{"id": "50035", "title": "Lovely & Amazing", "year": 2001, "duration_min": 91, "rating": 6.3, "genres": "Comedy, Drama, Romance", "genres_pipe": "|Comedy|Drama|Romance|", "keywords": "woman director", "tags_pipe": "|woman director|", "overview": "Self-esteem and insecurity are at the heart of this comedy about the relationship between a mother and her three confused daughters.", "text_for_embedding": "Lovely & Amazing (2001). Genres: Comedy, Drama, Romance. Self-esteem and insecurity are at the heart of this comedy about the relationship between a mother and her three confused daughters.. Tags: woman director"} +{"id": "14290", "title": "Better Luck Tomorrow", "year": 2002, "duration_min": 101, "rating": 6.5, "genres": "Crime, Drama", "genres_pipe": "|Crime|Drama|", "keywords": "", "tags_pipe": "", "overview": "A group of over-achieving Asian-American high school seniors enjoy a power trip when they dip into extra-curricular criminal activities.", "text_for_embedding": "Better Luck Tomorrow (2002). Genres: Crime, Drama. A group of over-achieving Asian-American high school seniors enjoy a power trip when they dip into extra-curricular criminal activities.. Tags: "} +{"id": "29371", "title": "The Incredibly True Adventure of Two Girls In Love", "year": 1995, "duration_min": 94, "rating": 5.7, "genres": "Comedy, Drama, Romance", "genres_pipe": "|Comedy|Drama|Romance|", "keywords": "lesbian relationship, independent film, lesbian interest, lgbt, woman director", "tags_pipe": "|lesbian relationship|independent film|lesbian interest|lgbt|woman director|", "overview": "An adventurous love story between two young women of different social and economic backgrounds who find themselves going through all the typical struggles of a new romance.", "text_for_embedding": "The Incredibly True Adventure of Two Girls In Love (1995). Genres: Comedy, Drama, Romance. An adventurous love story between two young women of different social and economic backgrounds who find themselves going through all the typical struggles of a new romance.. Tags: lesbian relationship, independent film, lesbian interest, lgbt, woman director"} +{"id": "44490", "title": "Chuck & Buck", "year": 2000, "duration_min": 96, "rating": 5.7, "genres": "Comedy, Drama", "genres_pipe": "|Comedy|Drama|", "keywords": "gay, independent film, mentally handicapped man", "tags_pipe": "|gay|independent film|mentally handicapped man|", "overview": "Buck is a man-child who has lived his existence in a life of kindergarten collages and lollipops. Buck remembers his old childhood friend Chuck, with whom he feels a need to reconnect with after having invited him to his mother's funeral. Buck treks out to LA where Chuck, now a music record executive, is living his life. Buck ends up developing an obsession with Chuck and begins stalking him.", "text_for_embedding": "Chuck & Buck (2000). Genres: Comedy, Drama. Buck is a man-child who has lived his existence in a life of kindergarten collages and lollipops. Buck remembers his old childhood friend Chuck, with whom he feels a need to reconnect with after having invited him to his mother's funeral. Buck treks out to LA where Chuck, now a music record executive, is living his life. Buck ends up developing an obsession with Chuck and begins stalking him.. Tags: gay, independent film, mentally handicapped man"} +{"id": "32222", "title": "American Desi", "year": 2001, "duration_min": 100, "rating": 5.0, "genres": "Drama, Comedy, Romance", "genres_pipe": "|Drama|Comedy|Romance|", "keywords": "tradition, indian lead, roommate, culture clash, college, bollywood, india, heritage", "tags_pipe": "|tradition|indian lead|roommate|culture clash|college|bollywood|india|heritage|", "overview": "This is a fun-loving romantic comedy reminiscent of the great teen films of the 80's.From Kris, an All-American boy from India, to Ajay, an Afro-Centric Hindu homeboy, to Farah, a devoutly religious but modern Muslim girl, 'American Desi' tells the story of a unique set of characters and their culture from a decidedly hip and youthful point of view.", "text_for_embedding": "American Desi (2001). Genres: Drama, Comedy, Romance. This is a fun-loving romantic comedy reminiscent of the great teen films of the 80's.From Kris, an All-American boy from India, to Ajay, an Afro-Centric Hindu homeboy, to Farah, a devoutly religious but modern Muslim girl, 'American Desi' tells the story of a unique set of characters and their culture from a decidedly hip and youthful point of view.. Tags: tradition, indian lead, roommate, culture clash, college, bollywood, india, heritage"} +{"id": "378237", "title": "Amidst the Devil's Wings", "year": 2014, "duration_min": 90, "rating": 0.0, "genres": "Drama, Action, Crime", "genres_pipe": "|Drama|Action|Crime|", "keywords": "", "tags_pipe": "", "overview": "Prequel to \"5th of a Degree.\"", "text_for_embedding": "Amidst the Devil's Wings (2014). Genres: Drama, Action, Crime. Prequel to \"5th of a Degree.\". Tags: "} +{"id": "431", "title": "Cube", "year": 1997, "duration_min": 90, "rating": 6.9, "genres": "Thriller, Science Fiction, Mystery", "genres_pipe": "|Thriller|Science Fiction|Mystery|", "keywords": "riddle, autism, claustrophobia, maze, prime number, entrapment, mathematics, murder, escape, violence, numbers, canuxploitation", "tags_pipe": "|riddle|autism|claustrophobia|maze|prime number|entrapment|mathematics|murder|escape|violence|numbers|canuxploitation|", "overview": "Seven strangers are taken out of their daily lives and placed mysteriously in a deadly cube where they all agree they must find their way out.", "text_for_embedding": "Cube (1997). Genres: Thriller, Science Fiction, Mystery. Seven strangers are taken out of their daily lives and placed mysteriously in a deadly cube where they all agree they must find their way out.. Tags: riddle, autism, claustrophobia, maze, prime number, entrapment, mathematics, murder, escape, violence, numbers, canuxploitation"} +{"id": "76996", "title": "Love and Other Catastrophes", "year": 1996, "duration_min": 78, "rating": 5.8, "genres": "Comedy, Romance", "genres_pipe": "|Comedy|Romance|", "keywords": "independent film, woman director", "tags_pipe": "|independent film|woman director|", "overview": "A day in the life of two film-school students trying to find love and another house-mate.", "text_for_embedding": "Love and Other Catastrophes (1996). Genres: Comedy, Romance. A day in the life of two film-school students trying to find love and another house-mate.. Tags: independent film, woman director"} +{"id": "51942", "title": "I Married a Strange Person!", "year": 1998, "duration_min": 72, "rating": 7.5, "genres": "Drama, Comedy, Animation", "genres_pipe": "|Drama|Comedy|Animation|", "keywords": "", "tags_pipe": "", "overview": "A newlywed develops a strange lump on his neck that gives him the ability to transform people or objects at will. His wife is very upset. Meanwhile, the CEO of Smilecorp learns of this man and his ability and sees a way to achieve world domination if only the man can be taken alive. Animated movie by Bill Plympton.", "text_for_embedding": "I Married a Strange Person! (1998). Genres: Drama, Comedy, Animation. A newlywed develops a strange lump on his neck that gives him the ability to transform people or objects at will. His wife is very upset. Meanwhile, the CEO of Smilecorp learns of this man and his ability and sees a way to achieve world domination if only the man can be taken alive. Animated movie by Bill Plympton.. Tags: "} +{"id": "1424", "title": "November", "year": 2004, "duration_min": 73, "rating": 4.9, "genres": "Drama, Mystery, Thriller", "genres_pipe": "|Drama|Mystery|Thriller|", "keywords": "post traumatic stress disorder, photographer, loss of lover, professor, trauma, hold-up robbery, november, murder, independent film, polaroid", "tags_pipe": "|post traumatic stress disorder|photographer|loss of lover|professor|trauma|hold-up robbery|november|murder|independent film|polaroid|", "overview": "Sophie Jacobs is going through the most difficult time of her life. Now, she just has to find out if it's real.", "text_for_embedding": "November (2004). Genres: Drama, Mystery, Thriller. Sophie Jacobs is going through the most difficult time of her life. Now, she just has to find out if it's real.. Tags: post traumatic stress disorder, photographer, loss of lover, professor, trauma, hold-up robbery, november, murder, independent film, polaroid"} +{"id": "60420", "title": "Like Crazy", "year": 2011, "duration_min": 90, "rating": 6.4, "genres": "Drama, Romance", "genres_pipe": "|Drama|Romance|", "keywords": "chair, customs, student visa, parents, blogger", "tags_pipe": "|chair|customs|student visa|parents|blogger|", "overview": "A British college student falls for an American student, only to be separated from him when she's banned from the U.S. after overstaying her visa.", "text_for_embedding": "Like Crazy (2011). Genres: Drama, Romance. A British college student falls for an American student, only to be separated from him when she's banned from the U.S. after overstaying her visa.. Tags: chair, customs, student visa, parents, blogger"} +{"id": "325123", "title": "Teeth and Blood", "year": 2015, "duration_min": 96, "rating": 3.0, "genres": "Horror", "genres_pipe": "|Horror|", "keywords": "", "tags_pipe": "", "overview": "A beautiful diva is murdered on the set of horror director Vincent Augustine's latest film \"Chapel Blood.\" Somewhere between the crime scene and the coroner's van, the body mysteriously disappears. Meanwhile, the city's supply of donated blood is being dangerously depleted. Suspecting a connection between the events, detectives Mike Hung and Sasha Colfax go undercover at the studio to investigate. Their attempt to crack the case quickly turns into a desperate battle for survival when they uncover an age-old war between rival vampire covens that threatens to consume humanity in a final, grisly assault of Teeth and Blood!", "text_for_embedding": "Teeth and Blood (2015). Genres: Horror. A beautiful diva is murdered on the set of horror director Vincent Augustine's latest film \"Chapel Blood.\" Somewhere between the crime scene and the coroner's van, the body mysteriously disappears. Meanwhile, the city's supply of donated blood is being dangerously depleted. Suspecting a connection between the events, detectives Mike Hung and Sasha Colfax go undercover at the studio to investigate. Their attempt to crack the case quickly turns into a desperate battle for survival when they uncover an age-old war between rival vampire covens that threatens to consume humanity in a final, grisly assault of Teeth and Blood!. Tags: "} +{"id": "142132", "title": "Sugar Town", "year": 1999, "duration_min": 92, "rating": 5.5, "genres": "Comedy", "genres_pipe": "|Comedy|", "keywords": "woman director", "tags_pipe": "|woman director|", "overview": "Look at the lives of struggling L.A. scene rock stars follows main character, Gwen, on her quest for the top. Working as an assistant to a film production designer, she tries to steal her boy friend who is a music producer by offering sexual favors. The producer meanwhile is trying to orchestrate a comeback for a former glam band comprised of Michael Des Barres, John Taylor and Martin Kemp. Rosanna Arquette plays the former movie star wife of the lead singer, who is fretting because she has just been offered the role as the mother of one of the new ingenious. Beverly D'Angelo also shows up as a millionairess who agrees to bankroll the group, but only if she gets a roll in the hay with the lead singer. All of the career problems, including drug proclivity, are represented in this film.", "text_for_embedding": "Sugar Town (1999). Genres: Comedy. Look at the lives of struggling L.A. scene rock stars follows main character, Gwen, on her quest for the top. Working as an assistant to a film production designer, she tries to steal her boy friend who is a music producer by offering sexual favors. The producer meanwhile is trying to orchestrate a comeback for a former glam band comprised of Michael Des Barres, John Taylor and Martin Kemp. Rosanna Arquette plays the former movie star wife of the lead singer, who is fretting because she has just been offered the role as the mother of one of the new ingenious. Beverly D'Angelo also shows up as a millionairess who agrees to bankroll the group, but only if she gets a roll in the hay with the lead singer. All of the career problems, including drug proclivity, are represented in this film.. Tags: woman director"} +{"id": "20520", "title": "The Motel", "year": 2005, "duration_min": 75, "rating": 7.0, "genres": "Drama, Comedy", "genres_pipe": "|Drama|Comedy|", "keywords": "", "tags_pipe": "", "overview": "Thirteen-year-old Ernest Chin lives and works at a sleazy hourly-rate motel on a strip of desolate suburban bi-way. Misunderstood by his family and blindly careening into puberty, Ernest befriends Sam Kim, a self-destructive yet charismatic Korean man who has checked in. Sam teaches the fatherless boy all the rites of manhood.", "text_for_embedding": "The Motel (2005). Genres: Drama, Comedy. Thirteen-year-old Ernest Chin lives and works at a sleazy hourly-rate motel on a strip of desolate suburban bi-way. Misunderstood by his family and blindly careening into puberty, Ernest befriends Sam Kim, a self-destructive yet charismatic Korean man who has checked in. Sam teaches the fatherless boy all the rites of manhood.. Tags: "} +{"id": "109729", "title": "The Canyons", "year": 2013, "duration_min": 99, "rating": 4.1, "genres": "Thriller, Drama", "genres_pipe": "|Thriller|Drama|", "keywords": "sex, adultery, jealousy, nudity, seduction, control, liar, hollywood, fear, threesome, possessiveness, psychotherapy, film industry, snooping, mind games", "tags_pipe": "|sex|adultery|jealousy|nudity|seduction|control|liar|hollywood|fear|threesome|possessiveness|psychotherapy|film industry|snooping|mind games|", "overview": "The discovery of an illicit love affair leads two young Angelenos on a violent, sexually charged tour through the dark side of human nature.", "text_for_embedding": "The Canyons (2013). Genres: Thriller, Drama. The discovery of an illicit love affair leads two young Angelenos on a violent, sexually charged tour through the dark side of human nature.. Tags: sex, adultery, jealousy, nudity, seduction, control, liar, hollywood, fear, threesome, possessiveness, psychotherapy, film industry, snooping, mind games"} +{"id": "78307", "title": "On the Outs", "year": 2004, "duration_min": 86, "rating": 5.9, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "prison, drug dealer, single mother, teenage pregnancy, woman director, dominican", "tags_pipe": "|prison|drug dealer|single mother|teenage pregnancy|woman director|dominican|", "overview": "Follows the choices made by three young women - one a drug dealer, one an addict, one a pregnant teen - in Jersey City.", "text_for_embedding": "On the Outs (2004). Genres: Drama. Follows the choices made by three young women - one a drug dealer, one an addict, one a pregnant teen - in Jersey City.. Tags: prison, drug dealer, single mother, teenage pregnancy, woman director, dominican"} +{"id": "12247", "title": "Shotgun Stories", "year": 2007, "duration_min": 92, "rating": 6.9, "genres": "Drama, Thriller", "genres_pipe": "|Drama|Thriller|", "keywords": "brother brother relationship, loss of father, arkansas", "tags_pipe": "|brother brother relationship|loss of father|arkansas|", "overview": "Shotgun Stories tracks a feud that erupts between two sets of half brothers following the death of their father. Set against the cotton fields and back roads of Southeast Arkansas, these brothers discover the lengths to which each will go to protect their family.", "text_for_embedding": "Shotgun Stories (2007). Genres: Drama, Thriller. Shotgun Stories tracks a feud that erupts between two sets of half brothers following the death of their father. Set against the cotton fields and back roads of Southeast Arkansas, these brothers discover the lengths to which each will go to protect their family.. Tags: brother brother relationship, loss of father, arkansas"} +{"id": "29917", "title": "Exam", "year": 2009, "duration_min": 101, "rating": 6.6, "genres": "Thriller, Mystery", "genres_pipe": "|Thriller|Mystery|", "keywords": "gun, room, suspicion, guard, pill, job, psychologist, disease, interrogation, candidate, narcissist, corporation, pandemic, rules", "tags_pipe": "|gun|room|suspicion|guard|pill|job|psychologist|disease|interrogation|candidate|narcissist|corporation|pandemic|rules|", "overview": "The final candidates for a highly desirable corporate job are locked together in an exam room and given a test so simple and confusing that tension begins to unravel.", "text_for_embedding": "Exam (2009). Genres: Thriller, Mystery. The final candidates for a highly desirable corporate job are locked together in an exam room and given a test so simple and confusing that tension begins to unravel.. Tags: gun, room, suspicion, guard, pill, job, psychologist, disease, interrogation, candidate, narcissist, corporation, pandemic, rules"} +{"id": "70687", "title": "The Sticky Fingers of Time", "year": 1997, "duration_min": 90, "rating": 4.8, "genres": "Science Fiction, Drama", "genres_pipe": "|Science Fiction|Drama|", "keywords": "future, bisexuality, time travel, woman director", "tags_pipe": "|future|bisexuality|time travel|woman director|", "overview": "A 1950s author (Terumi Matthews) is transported to 1990s Brooklyn, where she meets a woman (Nicole Zaray) who reads about her life.", "text_for_embedding": "The Sticky Fingers of Time (1997). Genres: Science Fiction, Drama. A 1950s author (Terumi Matthews) is transported to 1990s Brooklyn, where she meets a woman (Nicole Zaray) who reads about her life.. Tags: future, bisexuality, time travel, woman director"} +{"id": "60463", "title": "Sunday School Musical", "year": 2008, "duration_min": 93, "rating": 5.5, "genres": "Music", "genres_pipe": "|Music|", "keywords": "high school, woman director", "tags_pipe": "|high school|woman director|", "overview": "Two competing groups of high school students must rally together and enter a song and dance competition in order to save their church from closing.", "text_for_embedding": "Sunday School Musical (2008). Genres: Music. Two competing groups of high school students must rally together and enter a song and dance competition in order to save their church from closing.. Tags: high school, woman director"} +{"id": "46252", "title": "Rust", "year": 2010, "duration_min": 94, "rating": 0.0, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "", "tags_pipe": "", "overview": "In the midst of a midlife crisis of faith, a man finds hope where he least expects it – his hometown. James Moore (Golden Globe nominee Corbin Bernsen) is a former pastor who returns home to discover a family new to the area has been killed in a mysterious fire, and his childhood friend is implicated in the murder. Convinced of his friend’s innocence, James sets out on a mission to find the truth… and in the process, rediscovers his own lost faith. An uplifting drama about faith, family, and the powerful ties that bind a community together.", "text_for_embedding": "Rust (2010). Genres: Drama. In the midst of a midlife crisis of faith, a man finds hope where he least expects it – his hometown. James Moore (Golden Globe nominee Corbin Bernsen) is a former pastor who returns home to discover a family new to the area has been killed in a mysterious fire, and his childhood friend is implicated in the murder. Convinced of his friend’s innocence, James sets out on a mission to find the truth… and in the process, rediscovers his own lost faith. An uplifting drama about faith, family, and the powerful ties that bind a community together.. Tags: "} +{"id": "24869", "title": "Ink", "year": 2009, "duration_min": 106, "rating": 6.4, "genres": "Action, Fantasy", "genres_pipe": "|Action|Fantasy|", "keywords": "supernatural, father daughter relationship, incubus", "tags_pipe": "|supernatural|father daughter relationship|incubus|", "overview": "Invisible forces exert power over us in our sleep. A mercenary named Ink, on a literal nightmare mission, captures the spirit of 8-year-old Emma in the dream world. To save her, the dream-givers marshal all their resources, focusing on saving the soul of Emma's tragically broken father.", "text_for_embedding": "Ink (2009). Genres: Action, Fantasy. Invisible forces exert power over us in our sleep. A mercenary named Ink, on a literal nightmare mission, captures the spirit of 8-year-old Emma in the dream world. To save her, the dream-givers marshal all their resources, focusing on saving the soul of Emma's tragically broken father.. Tags: supernatural, father daughter relationship, incubus"} +{"id": "77934", "title": "The Christmas Bunny", "year": 2010, "duration_min": 96, "rating": 5.7, "genres": "Drama, Family", "genres_pipe": "|Drama|Family|", "keywords": "", "tags_pipe": "", "overview": "The Christmas Bunny tells the story of a lonely foster child (Sophie Bolen) who finds a lost, injured rabbit in the woods on Christmas Eve. The rabbit is nursed back to health by The Bunny Lady (Florence Henderson), who runs a rabbit rescue in an old barn behind her Michigan farmhouse.", "text_for_embedding": "The Christmas Bunny (2010). Genres: Drama, Family. The Christmas Bunny tells the story of a lonely foster child (Sophie Bolen) who finds a lost, injured rabbit in the woods on Christmas Eve. The rabbit is nursed back to health by The Bunny Lady (Florence Henderson), who runs a rabbit rescue in an old barn behind her Michigan farmhouse.. Tags: "} +{"id": "34697", "title": "Butterfly", "year": 1982, "duration_min": 107, "rating": 5.0, "genres": "Crime, Drama", "genres_pipe": "|Crime|Drama|", "keywords": "nudity, seduction", "tags_pipe": "|nudity|seduction|", "overview": "Orson Welles, as judge Rauch, holds a lengthy trial against Jess Tyler, a caretaker deserted by his wife ten years before, who's accused of improper relations with his daughter Kady. Complications follows when Wash, father of Kady's baby, comes back to take her away.", "text_for_embedding": "Butterfly (1982). Genres: Crime, Drama. Orson Welles, as judge Rauch, holds a lengthy trial against Jess Tyler, a caretaker deserted by his wife ten years before, who's accused of improper relations with his daughter Kady. Complications follows when Wash, father of Kady's baby, comes back to take her away.. Tags: nudity, seduction"} +{"id": "306667", "title": "Horse Camp", "year": 2015, "duration_min": 108, "rating": 5.5, "genres": "Family, Drama", "genres_pipe": "|Family|Drama|", "keywords": "horse, teenage girl", "tags_pipe": "|horse|teenage girl|", "overview": "What’s the matter with Kathy (Jordan Trovillion, Highland Park)? She’s your typical 17 year-old girl in search of something more in her life. It seems the only place she is going to find it is at Horse Camp. Her father Luke (Dean Cain, Lois & Clark: The New Adventures of Superman) recognizes that she’s got it in her blood, a sensibility in her being - she understands horses just as much as they understand her. But at Horse Camp there is much more to learn, not only about horses, but about people and the many challenges of friendship.", "text_for_embedding": "Horse Camp (2015). Genres: Family, Drama. What’s the matter with Kathy (Jordan Trovillion, Highland Park)? She’s your typical 17 year-old girl in search of something more in her life. It seems the only place she is going to find it is at Horse Camp. Her father Luke (Dean Cain, Lois & Clark: The New Adventures of Superman) recognizes that she’s got it in her blood, a sensibility in her being - she understands horses just as much as they understand her. But at Horse Camp there is much more to learn, not only about horses, but about people and the many challenges of friendship.. Tags: horse, teenage girl"} +{"id": "274758", "title": "Give Me Shelter", "year": 2014, "duration_min": 90, "rating": 0.0, "genres": "Documentary", "genres_pipe": "|Documentary|", "keywords": "helping animals", "tags_pipe": "|helping animals|", "overview": "Give Me Shelter is a documentary to raise awareness for important animal issues around the world. This film uncovers the most prevalent issues in the animal world through the eyes of individuals dedicating their lives to them daily.", "text_for_embedding": "Give Me Shelter (2014). Genres: Documentary. Give Me Shelter is a documentary to raise awareness for important animal issues around the world. This film uncovers the most prevalent issues in the animal world through the eyes of individuals dedicating their lives to them daily.. Tags: helping animals"} +{"id": "3060", "title": "The Big Parade", "year": 1925, "duration_min": 151, "rating": 7.0, "genres": "Drama, Romance, War", "genres_pipe": "|Drama|Romance|War|", "keywords": "world war i, silent film", "tags_pipe": "|world war i|silent film|", "overview": "The story of an idle rich boy who joins the US Army's Rainbow Division and is sent to France to fight in World War I, becomes friends with two working class men, experiences the horrors of trench warfare, and finds love with a French girl.", "text_for_embedding": "The Big Parade (1925). Genres: Drama, Romance, War. The story of an idle rich boy who joins the US Army's Rainbow Division and is sent to France to fight in World War I, becomes friends with two working class men, experiences the horrors of trench warfare, and finds love with a French girl.. Tags: world war i, silent film"} +{"id": "173224", "title": "Along the Roadside", "year": 2013, "duration_min": 118, "rating": 7.7, "genres": "Romance, Comedy, Music", "genres_pipe": "|Romance|Comedy|Music|", "keywords": "road movie", "tags_pipe": "|road movie|", "overview": "Road movie about two young people from different parts of the world, their vastly different clashing cultures and their journey of self-discovery during the drive to the largest music festival in California.", "text_for_embedding": "Along the Roadside (2013). Genres: Romance, Comedy, Music. Road movie about two young people from different parts of the world, their vastly different clashing cultures and their journey of self-discovery during the drive to the largest music festival in California.. Tags: road movie"} +{"id": "18533", "title": "Bronson", "year": 2008, "duration_min": 92, "rating": 6.9, "genres": "Drama, Action, Crime", "genres_pipe": "|Drama|Action|Crime|", "keywords": "prison, isolation", "tags_pipe": "|prison|isolation|", "overview": "A young man who was sentenced to 7 years in prison for robbing a post office ends up spending 30 years in solitary confinement. During this time, his own personality is supplanted by his alter ego, Charles Bronson.", "text_for_embedding": "Bronson (2008). Genres: Drama, Action, Crime. A young man who was sentenced to 7 years in prison for robbing a post office ends up spending 30 years in solitary confinement. During this time, his own personality is supplanted by his alter ego, Charles Bronson.. Tags: prison, isolation"} +{"id": "376010", "title": "Western Religion", "year": 2015, "duration_min": 106, "rating": 0.0, "genres": "Western", "genres_pipe": "|Western|", "keywords": "", "tags_pipe": "", "overview": "The year is 1879. Gunfighters from the far reaches of the globe descend on Religion, AZ to compete in a legendary poker tournament. Drawn by the gold prize, the players come to realize that in this game, their very souls are at stake.", "text_for_embedding": "Western Religion (2015). Genres: Western. The year is 1879. Gunfighters from the far reaches of the globe descend on Religion, AZ to compete in a legendary poker tournament. Drawn by the gold prize, the players come to realize that in this game, their very souls are at stake.. Tags: "} +{"id": "139948", "title": "Burn", "year": 2012, "duration_min": 86, "rating": 6.9, "genres": "Foreign, Documentary", "genres_pipe": "|Foreign|Documentary|", "keywords": "michigan, crisis, fire fighting, detroit, woman director", "tags_pipe": "|michigan|crisis|fire fighting|detroit|woman director|", "overview": "A character-driven, action-packed documentary about Detroit, told through the eyes of the Detroit firefighters, the men and women charged with the thankless task of saving a city that many have written off as dead.", "text_for_embedding": "Burn (2012). Genres: Foreign, Documentary. A character-driven, action-packed documentary about Detroit, told through the eyes of the Detroit firefighters, the men and women charged with the thankless task of saving a city that many have written off as dead.. Tags: michigan, crisis, fire fighting, detroit, woman director"} +{"id": "77332", "title": "Urbania", "year": 2000, "duration_min": 103, "rating": 5.2, "genres": "Romance, Drama", "genres_pipe": "|Romance|Drama|", "keywords": "", "tags_pipe": "", "overview": "Charlie takes an odyssey through grief during a fall weekend in New York City. His encounters are planned and chance: with a homeless man who sleeps by his building, with a friend who's dying, with the couple who lives (and noisily loves) in the flat above him, with a bartender and a one-night-stand he follows home, and with a tattooed stranger whom he seeks out and befriends. Along the way, Charlie inhabits a city full of moments of violence and of stories and legends: a kidney thief, a microwaved poodle, a rat in a hot dog bun, a baby left on a car top, a tourist's toothbrush, needles in public-phone change slots. Charlie lives and tells his own stories. What caused his melancholy?", "text_for_embedding": "Urbania (2000). Genres: Romance, Drama. Charlie takes an odyssey through grief during a fall weekend in New York City. His encounters are planned and chance: with a homeless man who sleeps by his building, with a friend who's dying, with the couple who lives (and noisily loves) in the flat above him, with a bartender and a one-night-stand he follows home, and with a tattooed stranger whom he seeks out and befriends. Along the way, Charlie inhabits a city full of moments of violence and of stories and legends: a kidney thief, a microwaved poodle, a rat in a hot dog bun, a baby left on a car top, a tourist's toothbrush, needles in public-phone change slots. Charlie lives and tells his own stories. What caused his melancholy?. Tags: "} +{"id": "70478", "title": "The Stewardesses", "year": 1969, "duration_min": 69, "rating": 4.3, "genres": "Comedy", "genres_pipe": "|Comedy|", "keywords": "female nudity, lesbian, erotic movie", "tags_pipe": "|female nudity|lesbian|erotic movie|", "overview": "The Stewardesses is a 1969 Softcore 3-D film. Produced on a budget of just over $100,000, the film grossed over $27,000,000 (USD) in 1970 dollars, becoming the most profitable 3-D film ever released. This has now been passed by James Camerons Avatar.", "text_for_embedding": "The Stewardesses (1969). Genres: Comedy. The Stewardesses is a 1969 Softcore 3-D film. Produced on a budget of just over $100,000, the film grossed over $27,000,000 (USD) in 1970 dollars, becoming the most profitable 3-D film ever released. This has now been passed by James Camerons Avatar.. Tags: female nudity, lesbian, erotic movie"} +{"id": "35073", "title": "The Beast from 20,000 Fathoms", "year": 1953, "duration_min": 80, "rating": 6.7, "genres": "Adventure, Horror, Science Fiction", "genres_pipe": "|Adventure|Horror|Science Fiction|", "keywords": "monster, atomic bomb, lighthouse, arctic, rampage, stop motion, b movie, giant monster, dinosaur, new york city, sea monster, amusement park, roller coaster, beast, rhedosaurus", "tags_pipe": "|monster|atomic bomb|lighthouse|arctic|rampage|stop motion|b movie|giant monster|dinosaur|new york city|sea monster|amusement park|roller coaster|beast|rhedosaurus|", "overview": "The Beast from 20,000 Fathoms is a 1953 science fiction film directed by Eugène Lourié and stars Paul Christian, Paula Raymond and Cecil Kellaway with visual effects by Ray Harryhausen. The film is about an atomic bomb test in the Arctic Circle that unfreezes a hibernating fictional dinosaur, a Rhedosaurus, that begins to wreak havoc in New York City.", "text_for_embedding": "The Beast from 20,000 Fathoms (1953). Genres: Adventure, Horror, Science Fiction. The Beast from 20,000 Fathoms is a 1953 science fiction film directed by Eugène Lourié and stars Paul Christian, Paula Raymond and Cecil Kellaway with visual effects by Ray Harryhausen. The film is about an atomic bomb test in the Arctic Circle that unfreezes a hibernating fictional dinosaur, a Rhedosaurus, that begins to wreak havoc in New York City.. Tags: monster, atomic bomb, lighthouse, arctic, rampage, stop motion, b movie, giant monster, dinosaur, new york city, sea monster, amusement park, roller coaster, beast, rhedosaurus"} +{"id": "9659", "title": "Mad Max", "year": 1979, "duration_min": 93, "rating": 6.6, "genres": "Adventure, Action, Thriller, Science Fiction", "genres_pipe": "|Adventure|Action|Thriller|Science Fiction|", "keywords": "chain, baby, bridge, post-apocalyptic, dystopia, matter of life and death, benzine, biker, partner, truck, motorcycle, motorcycle gang, exploding car, ozploitation", "tags_pipe": "|chain|baby|bridge|post-apocalyptic|dystopia|matter of life and death|benzine|biker|partner|truck|motorcycle|motorcycle gang|exploding car|ozploitation|", "overview": "In a dystopian future Australia, a vicious biker gang murders a cop's family, and makes his fight with them personal.", "text_for_embedding": "Mad Max (1979). Genres: Adventure, Action, Thriller, Science Fiction. In a dystopian future Australia, a vicious biker gang murders a cop's family, and makes his fight with them personal.. Tags: chain, baby, bridge, post-apocalyptic, dystopia, matter of life and death, benzine, biker, partner, truck, motorcycle, motorcycle gang, exploding car, ozploitation"} +{"id": "10218", "title": "Swingers", "year": 1996, "duration_min": 94, "rating": 6.8, "genres": "Comedy, Romance", "genres_pipe": "|Comedy|Romance|", "keywords": "independent film, stuffed animal, hollywood, drink, swinger, producer, following someone, name calling, aspiring actor, actor", "tags_pipe": "|independent film|stuffed animal|hollywood|drink|swinger|producer|following someone|name calling|aspiring actor|actor|", "overview": "This is a story about Mike, a guy who left his girl in New York when he came to LA to be a star. It's been six months since his girlfriend left him and he's not doing so good. So, his pal and some other friends try and get him back in the social scene and forget about his 6 year relationship.", "text_for_embedding": "Swingers (1996). Genres: Comedy, Romance. This is a story about Mike, a guy who left his girl in New York when he came to LA to be a star. It's been six months since his girlfriend left him and he's not doing so good. So, his pal and some other friends try and get him back in the social scene and forget about his 6 year relationship.. Tags: independent film, stuffed animal, hollywood, drink, swinger, producer, following someone, name calling, aspiring actor, actor"} +{"id": "391", "title": "A Fistful of Dollars", "year": 1964, "duration_min": 99, "rating": 7.6, "genres": "Western", "genres_pipe": "|Western|", "keywords": "gang war, victim of murder, greed, hostility, spaghetti western", "tags_pipe": "|gang war|victim of murder|greed|hostility|spaghetti western|", "overview": "The Man With No Name enters the Mexican village of San Miguel in the midst of a power struggle among the three Rojo brothers and sheriff John Baxter. When a regiment of Mexican soldiers bearing gold intended to pay for new weapons is waylaid by the Rojo brothers, the stranger inserts himself into the middle of the long-simmering battle, selling false information to both sides for his own benefit.", "text_for_embedding": "A Fistful of Dollars (1964). Genres: Western. The Man With No Name enters the Mexican village of San Miguel in the midst of a power struggle among the three Rojo brothers and sheriff John Baxter. When a regiment of Mexican soldiers bearing gold intended to pay for new weapons is waylaid by the Rojo brothers, the stranger inserts himself into the middle of the long-simmering battle, selling false information to both sides for his own benefit.. Tags: gang war, victim of murder, greed, hostility, spaghetti western"} +{"id": "43595", "title": "She Done Him Wrong", "year": 1933, "duration_min": 66, "rating": 5.1, "genres": "Comedy", "genres_pipe": "|Comedy|", "keywords": "singer, night club owner", "tags_pipe": "|singer|night club owner|", "overview": "New York singer and nightclub owner Lady Lou has more men friends than you can imagine. Unfortunately one of them is a vicious criminal who's escaped and is on the way to see \"his\" girl, not realising she hasn't exactly been faithful in his absence. Help is at hand in the form of young Captain Cummings a local temperance league leader though.", "text_for_embedding": "She Done Him Wrong (1933). Genres: Comedy. New York singer and nightclub owner Lady Lou has more men friends than you can imagine. Unfortunately one of them is a vicious criminal who's escaped and is on the way to see \"his\" girl, not realising she hasn't exactly been faithful in his absence. Help is at hand in the form of young Captain Cummings a local temperance league leader though.. Tags: singer, night club owner"} +{"id": "194588", "title": "Short Cut to Nirvana: Kumbh Mela", "year": 2004, "duration_min": 85, "rating": 0.0, "genres": "", "genres_pipe": "", "keywords": "", "tags_pipe": "", "overview": "Every 12 years over 70 million pilgrims gather at the meeting of India's holiest rivers, the Ganges and the Yamuna, for a spectacular spiritual festival: the Kumbh Mela. This documentary takes a voyage of discovery through this colorful event through the eyes of several Westerners and an ebullient young Hindu monk, Swami Krishnanand. Featuring encounters with some of India's most respected holy men and exclusive footage of His Holiness the Dalai Lama.", "text_for_embedding": "Short Cut to Nirvana: Kumbh Mela (2004). Genres: . Every 12 years over 70 million pilgrims gather at the meeting of India's holiest rivers, the Ganges and the Yamuna, for a spectacular spiritual festival: the Kumbh Mela. This documentary takes a voyage of discovery through this colorful event through the eyes of several Westerners and an ebullient young Hindu monk, Swami Krishnanand. Featuring encounters with some of India's most respected holy men and exclusive footage of His Holiness the Dalai Lama.. Tags: "} +{"id": "54897", "title": "The Grace Card", "year": 2011, "duration_min": 101, "rating": 6.5, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "family's daily life, bible, platonic love, hope, church service, death of a friend, police everyday life", "tags_pipe": "|family's daily life|bible|platonic love|hope|church service|death of a friend|police everyday life|", "overview": "Everything can change in an instant ... and take a lifetime to unravel. When Mac McDonald loses his son in an accident, the ensuing 17 years of bitterness and pain erodes his love for his family and leaves him angry with God ... and just about everyone else. Mac's rage stonewalls his career in the police department and makes for a combustible situation when he's partnered with Sam Wright, a rising star on the force who happens to be a part-time pastor and a loving family man. Can they somehow join forces to help one another when it's impossible for either of them to look past their differences-especially the most obvious one? Every day, we have the opportunity to rebuild relationships and heal deep wounds by extending and receiving God's grace. Offer THE GRACE CARD ... and never underestimate the power of God's love.", "text_for_embedding": "The Grace Card (2011). Genres: Drama. Everything can change in an instant ... and take a lifetime to unravel. When Mac McDonald loses his son in an accident, the ensuing 17 years of bitterness and pain erodes his love for his family and leaves him angry with God ... and just about everyone else. Mac's rage stonewalls his career in the police department and makes for a combustible situation when he's partnered with Sam Wright, a rising star on the force who happens to be a part-time pastor and a loving family man. Can they somehow join forces to help one another when it's impossible for either of them to look past their differences-especially the most obvious one? Every day, we have the opportunity to rebuild relationships and heal deep wounds by extending and receiving God's grace. Offer THE GRACE CARD ... and never underestimate the power of God's love.. Tags: family's daily life, bible, platonic love, hope, church service, death of a friend, police everyday life"} +{"id": "83588", "title": "Middle of Nowhere", "year": 2012, "duration_min": 101, "rating": 6.6, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "prison, woman director", "tags_pipe": "|prison|woman director|", "overview": "'Middle of Nowhere' follows a woman named Ruby who lost her husband to incarceration and lost herself in the process.", "text_for_embedding": "Middle of Nowhere (2012). Genres: Drama. 'Middle of Nowhere' follows a woman named Ruby who lost her husband to incarceration and lost herself in the process.. Tags: prison, woman director"} +{"id": "53256", "title": "Three", "year": 2010, "duration_min": 119, "rating": 6.3, "genres": "Romance, Drama, Comedy", "genres_pipe": "|Romance|Drama|Comedy|", "keywords": "sex, bisexual, science", "tags_pipe": "|sex|bisexual|science|", "overview": "Hanna and Simon are in a 20 year marriage with an unexiting relationship. By chance, they both meet and start separate affairs with Adam. Adam has no idea that his two lovers are married, until they are all found out when Hanna becomes pregnant, with the natural doubts stemming from their situation.", "text_for_embedding": "Three (2010). Genres: Romance, Drama, Comedy. Hanna and Simon are in a 20 year marriage with an unexiting relationship. By chance, they both meet and start separate affairs with Adam. Adam has no idea that his two lovers are married, until they are all found out when Hanna becomes pregnant, with the natural doubts stemming from their situation.. Tags: sex, bisexual, science"} +{"id": "40920", "title": "The Business of Fancydancing", "year": 2002, "duration_min": 103, "rating": 8.0, "genres": "Music, Drama", "genres_pipe": "|Music|Drama|", "keywords": "independent film", "tags_pipe": "|independent film|", "overview": "Seymour Polatkin is a successful, gay Indian poet from Spokane who confronts his past when he returns to his childhood home on the reservation to attend the funeral of a dear friend.", "text_for_embedding": "The Business of Fancydancing (2002). Genres: Music, Drama. Seymour Polatkin is a successful, gay Indian poet from Spokane who confronts his past when he returns to his childhood home on the reservation to attend the funeral of a dear friend.. Tags: independent film"} +{"id": "287815", "title": "Call + Response", "year": 2008, "duration_min": 86, "rating": 8.0, "genres": "Documentary", "genres_pipe": "|Documentary|", "keywords": "", "tags_pipe": "", "overview": "Call + Response is a first of its kind feature documentary film that reveals the world’s 27 million dirtiest secrets: there are more slaves today than ever before in human history. Call + Response goes deep undercover where slavery is thriving from the child brothels of Cambodia to the slave brick kilns of rural India to reveal that in 2007, Slave Traders made more money than Google, Nike and Starbucks combined. Luminaries on the issue and many other prominent political and cultural figures offer first hand account of this 21st century trade. Performances from Grammy-winning and critically acclaimed artists move this chilling information into inspiration for stopping it. Music is part of the movement against human slavery. Dr. Cornel West connects the music of the American slave fields to the popular music we listen to today, and offers this connection as a rallying cry for the modern abolitionist movement currently brewing.", "text_for_embedding": "Call + Response (2008). Genres: Documentary. Call + Response is a first of its kind feature documentary film that reveals the world’s 27 million dirtiest secrets: there are more slaves today than ever before in human history. Call + Response goes deep undercover where slavery is thriving from the child brothels of Cambodia to the slave brick kilns of rural India to reveal that in 2007, Slave Traders made more money than Google, Nike and Starbucks combined. Luminaries on the issue and many other prominent political and cultural figures offer first hand account of this 21st century trade. Performances from Grammy-winning and critically acclaimed artists move this chilling information into inspiration for stopping it. Music is part of the movement against human slavery. Dr. Cornel West connects the music of the American slave fields to the popular music we listen to today, and offers this connection as a rallying cry for the modern abolitionist movement currently brewing.. Tags: "} +{"id": "54702", "title": "Malevolence", "year": 2004, "duration_min": 90, "rating": 4.9, "genres": "Crime, Horror, Thriller", "genres_pipe": "|Crime|Horror|Thriller|", "keywords": "hostage, psychopath, abandoned house, serial killer, slasher, desolate, farmland, country, isolated", "tags_pipe": "|hostage|psychopath|abandoned house|serial killer|slasher|desolate|farmland|country|isolated|", "overview": "It's ten years after the kidnapping of Martin Bristol. Taken from a backyard swing at his home at the age of six, he is forced to witness unspeakable crimes of a deranged madman. For years, Martin's whereabouts have remained a mystery...until now.", "text_for_embedding": "Malevolence (2004). Genres: Crime, Horror, Thriller. It's ten years after the kidnapping of Martin Bristol. Taken from a backyard swing at his home at the age of six, he is forced to witness unspeakable crimes of a deranged madman. For years, Martin's whereabouts have remained a mystery...until now.. Tags: hostage, psychopath, abandoned house, serial killer, slasher, desolate, farmland, country, isolated"} +{"id": "176074", "title": "Reality Show", "year": 2015, "duration_min": 92, "rating": 5.5, "genres": "", "genres_pipe": "", "keywords": "wife husband relationship, reality, reality tv, reality spoof", "tags_pipe": "|wife husband relationship|reality|reality tv|reality spoof|", "overview": "The Warwick family are unknowingly being filmed for a new reality show. Problem is, they're boring. So the producer must add conflict and drama to their lives. Their lives begin to unravel with shocking consequences.", "text_for_embedding": "Reality Show (2015). Genres: . The Warwick family are unknowingly being filmed for a new reality show. Problem is, they're boring. So the producer must add conflict and drama to their lives. Their lives begin to unravel with shocking consequences.. Tags: wife husband relationship, reality, reality tv, reality spoof"} +{"id": "69270", "title": "Super Hybrid", "year": 2010, "duration_min": 95, "rating": 4.6, "genres": "Horror", "genres_pipe": "|Horror|", "keywords": "", "tags_pipe": "", "overview": "Late one night, a mysterious car is brought into the Chicago police impound garage after a deadly traffic accident. The on-call mechanics soon discover the car has a mind of its own. With hundreds of horsepower and two tons of reinforced steel at its command, it's a seemingly unstoppable killing machine capable of outrunning -- and outwitting -- humans.", "text_for_embedding": "Super Hybrid (2010). Genres: Horror. Late one night, a mysterious car is brought into the Chicago police impound garage after a deadly traffic accident. The on-call mechanics soon discover the car has a mind of its own. With hundreds of horsepower and two tons of reinforced steel at its command, it's a seemingly unstoppable killing machine capable of outrunning -- and outwitting -- humans.. Tags: "} +{"id": "5759", "title": "Baghead", "year": 2008, "duration_min": 84, "rating": 5.8, "genres": "Drama, Comedy, Horror", "genres_pipe": "|Drama|Comedy|Horror|", "keywords": "mumblecore, mumblegore", "tags_pipe": "|mumblecore|mumblegore|", "overview": "Four actors go to a cabin in the woods to write, direct, and act in a film that will jump-start their careers. Their idea is a horror film about a man with a bag over his head, but what happens when that man mysteriously shows up?", "text_for_embedding": "Baghead (2008). Genres: Drama, Comedy, Horror. Four actors go to a cabin in the woods to write, direct, and act in a film that will jump-start their careers. Their idea is a horror film about a man with a bag over his head, but what happens when that man mysteriously shows up?. Tags: mumblecore, mumblegore"} +{"id": "402515", "title": "American Beast", "year": 2014, "duration_min": 89, "rating": 0.0, "genres": "Horror", "genres_pipe": "|Horror|", "keywords": "terror, horror, fear, wood, grove, bosque", "tags_pipe": "|terror|horror|fear|wood|grove|bosque|", "overview": "After finding an old storage locker filled with his family's history, James Erikson begins a journey to discover the truth behind a mysterious piece of land in the small town of Solitude.", "text_for_embedding": "American Beast (2014). Genres: Horror. After finding an old storage locker filled with his family's history, James Erikson begins a journey to discover the truth behind a mysterious piece of land in the small town of Solitude.. Tags: terror, horror, fear, wood, grove, bosque"} +{"id": "126141", "title": "The Case of the Grinning Cat", "year": 2004, "duration_min": 59, "rating": 7.7, "genres": "Documentary", "genres_pipe": "|Documentary|", "keywords": "", "tags_pipe": "", "overview": "Paris 2002. Yellow cats appear on the walls. Chris Marker is looking for these mysterious cats and captures with his camera the political and international events of these last two years (war in Iraq...).", "text_for_embedding": "The Case of the Grinning Cat (2004). Genres: Documentary. Paris 2002. Yellow cats appear on the walls. Chris Marker is looking for these mysterious cats and captures with his camera the political and international events of these last two years (war in Iraq...).. Tags: "} +{"id": "48035", "title": "Ordet", "year": 1955, "duration_min": 126, "rating": 7.8, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "faith, independent film, religion, religious fundamentalist, pregnant wife", "tags_pipe": "|faith|independent film|religion|religious fundamentalist|pregnant wife|", "overview": "How do we understand faith and prayer, and what of miracles? August 1925 on a Danish farm. Patriarch Borgan has three sons: Mikkel, a good-hearted agnostic whose wife Inger is pregnant, Johannes, who believes he is Jesus, and Anders, young, slight, in love with the tailor's daughter. The fundamentalist sect of the girl's father is anathema to Borgan's traditional Lutheranism; he opposes the marriage until the tailor forbids it, then Borgan's pride demands that it happen. Unexpectedly, Inger, who is the family's sweetness and light, has problems with her pregnancy. The rational doctor arrives, and a long night brings sharp focus to at least four views of faith.", "text_for_embedding": "Ordet (1955). Genres: Drama. How do we understand faith and prayer, and what of miracles? August 1925 on a Danish farm. Patriarch Borgan has three sons: Mikkel, a good-hearted agnostic whose wife Inger is pregnant, Johannes, who believes he is Jesus, and Anders, young, slight, in love with the tailor's daughter. The fundamentalist sect of the girl's father is anathema to Borgan's traditional Lutheranism; he opposes the marriage until the tailor forbids it, then Borgan's pride demands that it happen. Unexpectedly, Inger, who is the family's sweetness and light, has problems with her pregnancy. The rational doctor arrives, and a long night brings sharp focus to at least four views of faith.. Tags: faith, independent film, religion, religious fundamentalist, pregnant wife"} +{"id": "14758", "title": "Good Dick", "year": 2008, "duration_min": 86, "rating": 6.1, "genres": "Comedy, Drama, Romance", "genres_pipe": "|Comedy|Drama|Romance|", "keywords": "sexuality, roommate, misfit, independent film, relationship, woman director", "tags_pipe": "|sexuality|roommate|misfit|independent film|relationship|woman director|", "overview": "A fidgety, wisecracking video store clerk develops a fixation on a particularly reclusive customer, a frequent visitor to the pornography section of Cinefile, the video store where he works in Los Angeles. After multiple failures to impress her during their brief daily transactions, he finds her street address in the store's database, drives to her apartment building and initiates an unconventional campaign to win her affections.", "text_for_embedding": "Good Dick (2008). Genres: Comedy, Drama, Romance. A fidgety, wisecracking video store clerk develops a fixation on a particularly reclusive customer, a frequent visitor to the pornography section of Cinefile, the video store where he works in Los Angeles. After multiple failures to impress her during their brief daily transactions, he finds her street address in the store's database, drives to her apartment building and initiates an unconventional campaign to win her affections.. Tags: sexuality, roommate, misfit, independent film, relationship, woman director"} +{"id": "13363", "title": "The Man from Earth", "year": 2007, "duration_min": 87, "rating": 7.7, "genres": "Science Fiction, Drama", "genres_pipe": "|Science Fiction|Drama|", "keywords": "philosophy, secret, birthday, professor, psychology, bible, time, legend, immortality, history, survival, prehistoric, memory, anthropology, religion", "tags_pipe": "|philosophy|secret|birthday|professor|psychology|bible|time|legend|immortality|history|survival|prehistoric|memory|anthropology|religion|", "overview": "An impromptu goodbye party for Professor John Oldman becomes a mysterious interrogation after the retiring scholar reveals to his colleagues he never ages and has walked the earth for 14,000 years.", "text_for_embedding": "The Man from Earth (2007). Genres: Science Fiction, Drama. An impromptu goodbye party for Professor John Oldman becomes a mysterious interrogation after the retiring scholar reveals to his colleagues he never ages and has walked the earth for 14,000 years.. Tags: philosophy, secret, birthday, professor, psychology, bible, time, legend, immortality, history, survival, prehistoric, memory, anthropology, religion"} +{"id": "37985", "title": "The Trials Of Darryl Hunt", "year": 2007, "duration_min": 106, "rating": 6.8, "genres": "Documentary", "genres_pipe": "|Documentary|", "keywords": "woman director", "tags_pipe": "|woman director|", "overview": "\"The Trials of Darryl Hunt\" is a feature documentary about a brutal rape/murder case and a wrongly convicted man, Darryl Hunt, who spent nearly twenty years in prison for a crime he did not commit. Both a social justice story and a personally driven narrative, the film chronicles this capital case from 1984 through 2004. With exclusive footage from two decades, the film frames the judicial and emotional response to a chilling crime - and the implications that reverberate from Hunt's conviction - against a backdrop of class and racial bias in the South and in the American criminal justice system.", "text_for_embedding": "The Trials Of Darryl Hunt (2007). Genres: Documentary. \"The Trials of Darryl Hunt\" is a feature documentary about a brutal rape/murder case and a wrongly convicted man, Darryl Hunt, who spent nearly twenty years in prison for a crime he did not commit. Both a social justice story and a personally driven narrative, the film chronicles this capital case from 1984 through 2004. With exclusive footage from two decades, the film frames the judicial and emotional response to a chilling crime - and the implications that reverberate from Hunt's conviction - against a backdrop of class and racial bias in the South and in the American criminal justice system.. Tags: woman director"} +{"id": "25786", "title": "Samantha: An American Girl Holiday", "year": 2004, "duration_min": 86, "rating": 4.6, "genres": "Drama, Family", "genres_pipe": "|Drama|Family|", "keywords": "", "tags_pipe": "", "overview": "Kindhearted Samantha Parkington's world starts to change the day Nellie O'Malley walks into her life. Nellie, her father, and her two little sisters have moved in next door to be servants for the Ryland family. Though they come from completely different backgrounds, Samantha and Nellie become fast friends. The girls turn to each other in happiness and sorrow, adventure and danger.", "text_for_embedding": "Samantha: An American Girl Holiday (2004). Genres: Drama, Family. Kindhearted Samantha Parkington's world starts to change the day Nellie O'Malley walks into her life. Nellie, her father, and her two little sisters have moved in next door to be servants for the Ryland family. Though they come from completely different backgrounds, Samantha and Nellie become fast friends. The girls turn to each other in happiness and sorrow, adventure and danger.. Tags: "} +{"id": "36549", "title": "Yesterday Was a Lie", "year": 2008, "duration_min": 89, "rating": 6.0, "genres": "Drama, Mystery, Science Fiction, Thriller", "genres_pipe": "|Drama|Mystery|Science Fiction|Thriller|", "keywords": "independent film", "tags_pipe": "|independent film|", "overview": "Hoyle a girl with a sharp mind and a weakness for bourbon -- finds herself on the trail of a reclusive genius. But her work takes a series of unforeseen twists as events around her grow increasingly fragmented... disconnected... surreal. With an ethereal lounge singer and her loyal partner as her only allies, Hoyle is plunged into a dark world of intrigue and earth-shattering cosmological secrets. Haunted by an ever-present shadow whom she is destined to face, Hoyle discovers that the most powerful force in the universe -- the power to bend reality, the power to know the truth -- lies within the depths of the human heart.", "text_for_embedding": "Yesterday Was a Lie (2008). Genres: Drama, Mystery, Science Fiction, Thriller. Hoyle a girl with a sharp mind and a weakness for bourbon -- finds herself on the trail of a reclusive genius. But her work takes a series of unforeseen twists as events around her grow increasingly fragmented... disconnected... surreal. With an ethereal lounge singer and her loyal partner as her only allies, Hoyle is plunged into a dark world of intrigue and earth-shattering cosmological secrets. Haunted by an ever-present shadow whom she is destined to face, Hoyle discovers that the most powerful force in the universe -- the power to bend reality, the power to know the truth -- lies within the depths of the human heart.. Tags: independent film"} +{"id": "361398", "title": "Theresa Is a Mother", "year": 2015, "duration_min": 105, "rating": 0.0, "genres": "Music, Comedy, Drama", "genres_pipe": "|Music|Comedy|Drama|", "keywords": "", "tags_pipe": "", "overview": "Singer/songwriter and single mother Theresa McDermott has finally hit the end of the line in NYC. Unable to make ends meet, she is forced to pack up her life and her 3 girls and move back to the small town and parents she ran from a decade ago. Teresa needs a job, her parents need their space and a family tragedy that was never dealt with from years past needs closure. Old wounds, unattainable dreams and a few other things expose themselves as a fractured family works to become whole and a single mom, a responsible mother.", "text_for_embedding": "Theresa Is a Mother (2015). Genres: Music, Comedy, Drama. Singer/songwriter and single mother Theresa McDermott has finally hit the end of the line in NYC. Unable to make ends meet, she is forced to pack up her life and her 3 girls and move back to the small town and parents she ran from a decade ago. Teresa needs a job, her parents need their space and a family tragedy that was never dealt with from years past needs closure. Old wounds, unattainable dreams and a few other things expose themselves as a fractured family works to become whole and a single mom, a responsible mother.. Tags: "} +{"id": "289180", "title": "H.", "year": 2014, "duration_min": 93, "rating": 6.5, "genres": "Thriller, Drama, Science Fiction", "genres_pipe": "|Thriller|Drama|Science Fiction|", "keywords": "woman director", "tags_pipe": "|woman director|", "overview": "H. is a modern interpretation of a classic Greek tragedy in which two women, each named Helen, live out their mirrored lives of one another in the town of Troy, NY. The first Helen is in her 60s, lives with her husband Roy, and takes care of a small, extremely lifelike baby doll called a “Reborn Doll,” which she cares for as a living baby. The second Helen is in her 30s, has a successful art career with her partner Alex, and is four months pregnant. One night, something falls out of the sky and explodes over the town. In the aftermath of this event, bizarre and unexplainable things begin to happen. Many people in the town go missing—Helen’s husband being one of them—and unnatural cloud formations begin appearing in the sky. Meanwhile, the two Helens find themselves, and their lives spinning out of control.", "text_for_embedding": "H. (2014). Genres: Thriller, Drama, Science Fiction. H. is a modern interpretation of a classic Greek tragedy in which two women, each named Helen, live out their mirrored lives of one another in the town of Troy, NY. The first Helen is in her 60s, lives with her husband Roy, and takes care of a small, extremely lifelike baby doll called a “Reborn Doll,” which she cares for as a living baby. The second Helen is in her 30s, has a successful art career with her partner Alex, and is four months pregnant. One night, something falls out of the sky and explodes over the town. In the aftermath of this event, bizarre and unexplainable things begin to happen. Many people in the town go missing—Helen’s husband being one of them—and unnatural cloud formations begin appearing in the sky. Meanwhile, the two Helens find themselves, and their lives spinning out of control.. Tags: woman director"} +{"id": "288927", "title": "Archaeology of a Woman", "year": 2014, "duration_min": 94, "rating": 0.0, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "woman director", "tags_pipe": "|woman director|", "overview": "A woman's dementia uncovers secrets of a 30-year-old crime as her daughter struggles to deal with the fallout", "text_for_embedding": "Archaeology of a Woman (2014). Genres: Drama. A woman's dementia uncovers secrets of a 30-year-old crime as her daughter struggles to deal with the fallout. Tags: woman director"} +{"id": "21334", "title": "Children of Heaven", "year": 1997, "duration_min": 89, "rating": 7.8, "genres": "Drama, Comedy, Family", "genres_pipe": "|Drama|Comedy|Family|", "keywords": "brother sister relationship, class, foot race", "tags_pipe": "|brother sister relationship|class|foot race|", "overview": "Zohre's shoes are gone; her older brother Ali lost them. They are poor, there are no shoes for Zohre until they come up with an idea: they will share one pair of shoes, Ali's. School awaits...", "text_for_embedding": "Children of Heaven (1997). Genres: Drama, Comedy, Family. Zohre's shoes are gone; her older brother Ali lost them. They are poor, there are no shoes for Zohre until they come up with an idea: they will share one pair of shoes, Ali's. School awaits.... Tags: brother sister relationship, class, foot race"} +{"id": "79120", "title": "Weekend", "year": 2011, "duration_min": 96, "rating": 7.4, "genres": "Drama, Romance", "genres_pipe": "|Drama|Romance|", "keywords": "gay, great britain, one-night stand, independent film, gay relationship", "tags_pipe": "|gay|great britain|one-night stand|independent film|gay relationship|", "overview": "After a drunken house party with his straight mates, Russell heads out to a gay club. Just before closing time he picks up Glen but what's expected to be just a one-night stand becomes something else, something special.", "text_for_embedding": "Weekend (2011). Genres: Drama, Romance. After a drunken house party with his straight mates, Russell heads out to a gay club. Just before closing time he picks up Glen but what's expected to be just a one-night stand becomes something else, something special.. Tags: gay, great britain, one-night stand, independent film, gay relationship"} +{"id": "27995", "title": "She's Gotta Have It", "year": 1986, "duration_min": 84, "rating": 6.1, "genres": "Comedy, Romance", "genres_pipe": "|Comedy|Romance|", "keywords": "independent film, lesbian", "tags_pipe": "|independent film|lesbian|", "overview": "The story of Nola Darling's simultaneous sexual relationships with three different men is told by her and by her partners and other friends. All three men wanted her to commit solely to them; Nola resists being \"owned\" by a single partner.", "text_for_embedding": "She's Gotta Have It (1986). Genres: Comedy, Romance. The story of Nola Darling's simultaneous sexual relationships with three different men is told by her and by her partners and other friends. All three men wanted her to commit solely to them; Nola resists being \"owned\" by a single partner.. Tags: independent film, lesbian"} +{"id": "253290", "title": "Butterfly Girl", "year": 2014, "duration_min": 77, "rating": 0.0, "genres": "Documentary", "genres_pipe": "|Documentary|", "keywords": "woman director", "tags_pipe": "|woman director|", "overview": "Abbie came of age in honky tonks, defying her life threatening disease, but all the while longing for an identity of her own. Now that she is 18, how much is she willing to sacrifice for her independence?", "text_for_embedding": "Butterfly Girl (2014). Genres: Documentary. Abbie came of age in honky tonks, defying her life threatening disease, but all the while longing for an identity of her own. Now that she is 18, how much is she willing to sacrifice for her independence?. Tags: woman director"} +{"id": "344466", "title": "The World Is Mine", "year": 2015, "duration_min": 104, "rating": 0.0, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "", "tags_pipe": "", "overview": "Larisa is 16 and lives in a city by the sea. It's a small city, where gossip and news spread fast. It's a city where your image and influence, \"manelele\", money and power are all that matters. And Larisa… wants it all. And even if she doesn't have it, she fights for it. Larisa believes in herself. She knows that she deserves better. She is convinced that it's worth doing everything it takes to fulfill her dreams. And for her courage and recklessness - we love her.", "text_for_embedding": "The World Is Mine (2015). Genres: Drama. Larisa is 16 and lives in a city by the sea. It's a small city, where gossip and news spread fast. It's a city where your image and influence, \"manelele\", money and power are all that matters. And Larisa… wants it all. And even if she doesn't have it, she fights for it. Larisa believes in herself. She knows that she deserves better. She is convinced that it's worth doing everything it takes to fulfill her dreams. And for her courage and recklessness - we love her.. Tags: "} +{"id": "55420", "title": "Another Earth", "year": 2011, "duration_min": 92, "rating": 6.8, "genres": "Drama, Science Fiction", "genres_pipe": "|Drama|Science Fiction|", "keywords": "earth, tragedy, janitor, planet, duplicate, cosmology, ego, solar system", "tags_pipe": "|earth|tragedy|janitor|planet|duplicate|cosmology|ego|solar system|", "overview": "On the night of the discovery of a duplicate Earth in the Solar system, an ambitious young student and an accomplished composer cross paths in a tragic accident.", "text_for_embedding": "Another Earth (2011). Genres: Drama, Science Fiction. On the night of the discovery of a duplicate Earth in the Solar system, an ambitious young student and an accomplished composer cross paths in a tragic accident.. Tags: earth, tragedy, janitor, planet, duplicate, cosmology, ego, solar system"} +{"id": "5822", "title": "Sweet Sweetback's Baadasssss Song", "year": 1971, "duration_min": 97, "rating": 4.6, "genres": "Action, Drama, Romance", "genres_pipe": "|Action|Drama|Romance|", "keywords": "mexico, black people, pimp, anti hero, black panthers, black panther, blaxploitation, unsimulated sex, los angeles", "tags_pipe": "|mexico|black people|pimp|anti hero|black panthers|black panther|blaxploitation|unsimulated sex|los angeles|", "overview": "After saving a Black Panther from some racist cops, a black male prostitute goes on the run from \"the man\" with the help of the ghetto community and some disillusioned Hells Angels.", "text_for_embedding": "Sweet Sweetback's Baadasssss Song (1971). Genres: Action, Drama, Romance. After saving a Black Panther from some racist cops, a black male prostitute goes on the run from \"the man\" with the help of the ghetto community and some disillusioned Hells Angels.. Tags: mexico, black people, pimp, anti hero, black panthers, black panther, blaxploitation, unsimulated sex, los angeles"} +{"id": "408429", "title": "Perfect Cowboy", "year": 2014, "duration_min": 109, "rating": 5.0, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "", "tags_pipe": "", "overview": "Two gay fathers of a straight country western singers, all living in a rural community and playing music together. Jimmy Poole gets out of prison and kicks his step-son Mark out of the family's band.", "text_for_embedding": "Perfect Cowboy (2014). Genres: Drama. Two gay fathers of a straight country western singers, all living in a rural community and playing music together. Jimmy Poole gets out of prison and kicks his step-son Mark out of the family's band.. Tags: "} +{"id": "39141", "title": "Tadpole", "year": 2002, "duration_min": 78, "rating": 5.5, "genres": "Comedy, Drama, Romance", "genres_pipe": "|Comedy|Drama|Romance|", "keywords": "independent film", "tags_pipe": "|independent film|", "overview": "Beautiful, sophisticated women are all over Oscar Grubman. He is sensitive and compassionate, speaks French fluently, is passionate about Voltaire, and thinks the feature that tells the most about a woman is her hands. On the train home from Chauncey Academy for the Thanksgiving weekend, Oscar confides in his best friend that he has plans for this vacation--he will win the heart of his true love. But there is one major problem--Oscar's true love is his stepmother Eve. Oscar is certain that he could be a better mate to Eve than his work-obsessed father. He fails to win Eve's heart and is consequently dejected. Oscar's path to his true love is further crossed by Diane, Eve's best friend who, one night while wearing Eve's borrowed perfumed scarf, offers him temporary comfort in an unconventional tryst. For Diane, Oscar fills a void in her life. For Oscar, Diane is somewhat of a distraction, as his continued pursuit of Eve leads to an unexpected resolution.", "text_for_embedding": "Tadpole (2002). Genres: Comedy, Drama, Romance. Beautiful, sophisticated women are all over Oscar Grubman. He is sensitive and compassionate, speaks French fluently, is passionate about Voltaire, and thinks the feature that tells the most about a woman is her hands. On the train home from Chauncey Academy for the Thanksgiving weekend, Oscar confides in his best friend that he has plans for this vacation--he will win the heart of his true love. But there is one major problem--Oscar's true love is his stepmother Eve. Oscar is certain that he could be a better mate to Eve than his work-obsessed father. He fails to win Eve's heart and is consequently dejected. Oscar's path to his true love is further crossed by Diane, Eve's best friend who, one night while wearing Eve's borrowed perfumed scarf, offers him temporary comfort in an unconventional tryst. For Diane, Oscar fills a void in her life. For Oscar, Diane is somewhat of a distraction, as his continued pursuit of Eve leads to an unexpected resolution.. Tags: independent film"} +{"id": "5723", "title": "Once", "year": 2007, "duration_min": 85, "rating": 7.3, "genres": "Drama, Music, Romance", "genres_pipe": "|Drama|Music|Romance|", "keywords": "rock and roll, pop, irland, music style, love of one's life, fascination, music lover, song, lovers, dublin, to make music, music, music instrument, tenderness, pianist", "tags_pipe": "|rock and roll|pop|irland|music style|love of one's life|fascination|music lover|song|lovers|dublin|to make music|music|music instrument|tenderness|pianist|", "overview": "A vacuum repairman moonlights as a street musician and hopes for his big break. One day a Czech immigrant, who earns a living selling flowers, approaches him with the news that she is also an aspiring singer-songwriter. The pair decide to collaborate, and the songs that they compose reflect the story of their blossoming love.", "text_for_embedding": "Once (2007). Genres: Drama, Music, Romance. A vacuum repairman moonlights as a street musician and hopes for his big break. One day a Czech immigrant, who earns a living selling flowers, approaches him with the news that she is also an aspiring singer-songwriter. The pair decide to collaborate, and the songs that they compose reflect the story of their blossoming love.. Tags: rock and roll, pop, irland, music style, love of one's life, fascination, music lover, song, lovers, dublin, to make music, music, music instrument, tenderness, pianist"} +{"id": "28666", "title": "The Woman Chaser", "year": 1999, "duration_min": 90, "rating": 4.9, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "charles willeford, used car salesman", "tags_pipe": "|charles willeford|used car salesman|", "overview": "A 1950s used-car salesman (Patrick Warburton) wants to make a low-budget film about a trucker who accidentally runs down a child.", "text_for_embedding": "The Woman Chaser (1999). Genres: Drama. A 1950s used-car salesman (Patrick Warburton) wants to make a low-budget film about a trucker who accidentally runs down a child.. Tags: charles willeford, used car salesman"} +{"id": "30979", "title": "The Horse Boy", "year": 2009, "duration_min": 93, "rating": 5.5, "genres": "Documentary", "genres_pipe": "|Documentary|", "keywords": "autism, independent film", "tags_pipe": "|autism|independent film|", "overview": "Filmmaker Michel Orion Scott captures a magical journey into a little-known world, in a documentary which chronicles Rupert Isaacson and Kristin Neff's personal odyssey to make sense of their child's autism, and find healing for him and themselves in the unlikeliest of places.", "text_for_embedding": "The Horse Boy (2009). Genres: Documentary. Filmmaker Michel Orion Scott captures a magical journey into a little-known world, in a documentary which chronicles Rupert Isaacson and Kristin Neff's personal odyssey to make sense of their child's autism, and find healing for him and themselves in the unlikeliest of places.. Tags: autism, independent film"} +{"id": "50497", "title": "When the Lights Went Out", "year": 2012, "duration_min": 86, "rating": 5.8, "genres": "Thriller, Drama, Horror", "genres_pipe": "|Thriller|Drama|Horror|", "keywords": "newspaper, exorcism, poltergeist, priest, haunting, reporter, spirit, britain, father daughter relationship, seance, catholic priest, coal shed", "tags_pipe": "|newspaper|exorcism|poltergeist|priest|haunting|reporter|spirit|britain|father daughter relationship|seance|catholic priest|coal shed|", "overview": "Yorkshire, 1974, the Maynard family moves into their dream house. It's a dream that quickly descends into a panic stricken nightmare as the family discovers a horrifying truth, a truth that will make the history books. The house is already occupied by the most violent poltergeist ever documented, a poltergeist that will tear you from your bed as you sleep and drag you helplessly into the darkness.", "text_for_embedding": "When the Lights Went Out (2012). Genres: Thriller, Drama, Horror. Yorkshire, 1974, the Maynard family moves into their dream house. It's a dream that quickly descends into a panic stricken nightmare as the family discovers a horrifying truth, a truth that will make the history books. The house is already occupied by the most violent poltergeist ever documented, a poltergeist that will tear you from your bed as you sleep and drag you helplessly into the darkness.. Tags: newspaper, exorcism, poltergeist, priest, haunting, reporter, spirit, britain, father daughter relationship, seance, catholic priest, coal shed"} +{"id": "354624", "title": "Heroes of Dirt", "year": 2015, "duration_min": 98, "rating": 0.0, "genres": "Action, Drama", "genres_pipe": "|Action|Drama|", "keywords": "bmx", "tags_pipe": "|bmx|", "overview": "Passionate BMX dirt jumper, Phin Cooper, wants nothing in life but to attain fame in his sport. After missing a competition when he lands in jail for unpaid citations, he is court-ordered for community service and reluctantly mentors one of the toughest boys, Blue Espinosa. As Phin leads the troubled teen on exciting adventures of riding dirt trails, big jumps and cityscapes, Blue becomes more than an obligation - an unlikely friend whose secret world of drug trafficking threatens Phin's ultimate dream. Featuring some of the best stunts in dirt jumping by legendary pros and hardcore locals, Heroes of Dirt is more than adrenaline rush. It embarks on an unforgettable journey into real significance, and the price it takes to get there.", "text_for_embedding": "Heroes of Dirt (2015). Genres: Action, Drama. Passionate BMX dirt jumper, Phin Cooper, wants nothing in life but to attain fame in his sport. After missing a competition when he lands in jail for unpaid citations, he is court-ordered for community service and reluctantly mentors one of the toughest boys, Blue Espinosa. As Phin leads the troubled teen on exciting adventures of riding dirt trails, big jumps and cityscapes, Blue becomes more than an obligation - an unlikely friend whose secret world of drug trafficking threatens Phin's ultimate dream. Featuring some of the best stunts in dirt jumping by legendary pros and hardcore locals, Heroes of Dirt is more than adrenaline rush. It embarks on an unforgettable journey into real significance, and the price it takes to get there.. Tags: bmx"} +{"id": "13187", "title": "A Charlie Brown Christmas", "year": 1965, "duration_min": 25, "rating": 7.5, "genres": "Animation, Family, Comedy, TV Movie", "genres_pipe": "|Animation|Family|Comedy|TV Movie|", "keywords": "holiday, christmas", "tags_pipe": "|holiday|christmas|", "overview": "When Charlie Brown complains about the overwhelming materialism that he sees amongst everyone during the Christmas season, Lucy suggests that he become director of the school Christmas pageant. Charlie Brown accepts, but is a frustrating struggle. When an attempt to restore the proper spirit with a forlorn little fir Christmas tree fails, he needs Linus' help to learn the meaning of Christmas.", "text_for_embedding": "A Charlie Brown Christmas (1965). Genres: Animation, Family, Comedy, TV Movie. When Charlie Brown complains about the overwhelming materialism that he sees amongst everyone during the Christmas season, Lucy suggests that he become director of the school Christmas pageant. Charlie Brown accepts, but is a frustrating struggle. When an attempt to restore the proper spirit with a forlorn little fir Christmas tree fails, he needs Linus' help to learn the meaning of Christmas.. Tags: holiday, christmas"} +{"id": "335244", "title": "Antarctic Edge: 70° South", "year": 2015, "duration_min": 72, "rating": 0.0, "genres": "Documentary", "genres_pipe": "|Documentary|", "keywords": "woman director", "tags_pipe": "|woman director|", "overview": "In 2014, scientists declared West Antarctic ice sheet melt unstoppable, threatening the future of our planet. A group of world-class researchers is in a race to understand climate change in the fastest winter-warming place on earth: the West Antarctic Peninsula. Trekking through dangerous and uncharted landscape, these scientists push the limits of their research and come to terms with the sacrifices necessary to understand this rapidly changing world.", "text_for_embedding": "Antarctic Edge: 70° South (2015). Genres: Documentary. In 2014, scientists declared West Antarctic ice sheet melt unstoppable, threatening the future of our planet. A group of world-class researchers is in a race to understand climate change in the fastest winter-warming place on earth: the West Antarctic Peninsula. Trekking through dangerous and uncharted landscape, these scientists push the limits of their research and come to terms with the sacrifices necessary to understand this rapidly changing world.. Tags: woman director"} +{"id": "178862", "title": "Aroused", "year": 2013, "duration_min": 73, "rating": 7.2, "genres": "Documentary", "genres_pipe": "|Documentary|", "keywords": "pornography, interview, biography, photography, porno star, fashion, woman director", "tags_pipe": "|pornography|interview|biography|photography|porno star|fashion|woman director|", "overview": "Get up close and personal with 16 of the most successful women in the adult film industry as they shed their clothes for an intimate photo shoot with director Deborah Anderson. As questions are asked, personal stories about their lives are revealed, from why they chose the business of sex to how they got into it in the first place. These porn stars have always been discreet about their private lives in the past, yet Anderson has a way of opening up a dialog allowing them to share more than just their naked skin on screen. Their true inner vulnerability is touching, yet the characters they have created are confident and intoxicating. Once you hear their stories, you'll never look at them in the same way again.", "text_for_embedding": "Aroused (2013). Genres: Documentary. Get up close and personal with 16 of the most successful women in the adult film industry as they shed their clothes for an intimate photo shoot with director Deborah Anderson. As questions are asked, personal stories about their lives are revealed, from why they chose the business of sex to how they got into it in the first place. These porn stars have always been discreet about their private lives in the past, yet Anderson has a way of opening up a dialog allowing them to share more than just their naked skin on screen. Their true inner vulnerability is touching, yet the characters they have created are confident and intoxicating. Once you hear their stories, you'll never look at them in the same way again.. Tags: pornography, interview, biography, photography, porno star, fashion, woman director"} +{"id": "331745", "title": "Top Spin", "year": 2014, "duration_min": 80, "rating": 6.8, "genres": "Documentary", "genres_pipe": "|Documentary|", "keywords": "competition, ping pong, documentary, woman director", "tags_pipe": "|competition|ping pong|documentary|woman director|", "overview": "Three teenagers' quest to qualify for the 2012 US Olympic table tennis team.", "text_for_embedding": "Top Spin (2014). Genres: Documentary. Three teenagers' quest to qualify for the 2012 US Olympic table tennis team.. Tags: competition, ping pong, documentary, woman director"} +{"id": "1779", "title": "Roger & Me", "year": 1989, "duration_min": 91, "rating": 7.4, "genres": "Documentary, History", "genres_pipe": "|Documentary|History|", "keywords": "capitalism, economics, unemployment, corporate greed", "tags_pipe": "|capitalism|economics|unemployment|corporate greed|", "overview": "A documentary about the closure of General Motors' plant at Flint, Michigan, which resulted in the loss of 30,000 jobs. Details the attempts of filmmaker Michael Moore to get an interview with GM CEO Roger Smith.", "text_for_embedding": "Roger & Me (1989). Genres: Documentary, History. A documentary about the closure of General Motors' plant at Flint, Michigan, which resulted in the loss of 30,000 jobs. Details the attempts of filmmaker Michael Moore to get an interview with GM CEO Roger Smith.. Tags: capitalism, economics, unemployment, corporate greed"} +{"id": "282128", "title": "An American in Hollywood", "year": 2014, "duration_min": 89, "rating": 0.0, "genres": "", "genres_pipe": "", "keywords": "", "tags_pipe": "", "overview": "A talented young filmmaker from New York sets off to Los Angeles in pursuit of the Hollywood dream, only to discover through his relationship with a beautiful feisty young actress, that Hollywood is not all that it seems.", "text_for_embedding": "An American in Hollywood (2014). Genres: . A talented young filmmaker from New York sets off to Los Angeles in pursuit of the Hollywood dream, only to discover through his relationship with a beautiful feisty young actress, that Hollywood is not all that it seems.. Tags: "} +{"id": "86812", "title": "Sound of My Voice", "year": 2011, "duration_min": 85, "rating": 6.3, "genres": "Science Fiction, Drama, Mystery", "genres_pipe": "|Science Fiction|Drama|Mystery|", "keywords": "journalist, independent film, hand clapping game, cult leader", "tags_pipe": "|journalist|independent film|hand clapping game|cult leader|", "overview": "A journalist and his girlfriend get pulled in while they investigate a cult whose leader claims to be from the future.", "text_for_embedding": "Sound of My Voice (2011). Genres: Science Fiction, Drama, Mystery. A journalist and his girlfriend get pulled in while they investigate a cult whose leader claims to be from the future.. Tags: journalist, independent film, hand clapping game, cult leader"} +{"id": "38786", "title": "The Blood of My Brother: A Story of Death in Iraq", "year": 2005, "duration_min": 90, "rating": 0.0, "genres": "", "genres_pipe": "", "keywords": "", "tags_pipe": "", "overview": "THE BLOOD OF MY BROTHER goes behind the scenes of one Iraqi family's struggle to survive amidst the carnage of the growing Shia insurgency. Nineteen-year-old Ibrahim dreams of revenge when his brother is shot and killed by an American patrol. With scenes of fighting and death on the streets of Baghdad, this is the closest most viewers will ever come to being in Iraq; kneeling in prayer amidst a thousand Muslim worshipers, feeling the roar of low-flying Apaches, riding atop a sixty-ton tank, driving with masked resistance fighters to attack American positions, fleeing the threat of an overwhelming response, the blood in the street, a tank on fire, or the cold, distant stare of a dead Iraqi fighter. Written by Andrew Berends.", "text_for_embedding": "The Blood of My Brother: A Story of Death in Iraq (2005). Genres: . THE BLOOD OF MY BROTHER goes behind the scenes of one Iraqi family's struggle to survive amidst the carnage of the growing Shia insurgency. Nineteen-year-old Ibrahim dreams of revenge when his brother is shot and killed by an American patrol. With scenes of fighting and death on the streets of Baghdad, this is the closest most viewers will ever come to being in Iraq; kneeling in prayer amidst a thousand Muslim worshipers, feeling the roar of low-flying Apaches, riding atop a sixty-ton tank, driving with masked resistance fighters to attack American positions, fleeing the threat of an overwhelming response, the blood in the street, a tank on fire, or the cold, distant stare of a dead Iraqi fighter. Written by Andrew Berends.. Tags: "} +{"id": "84355", "title": "Your Sister's Sister", "year": 2011, "duration_min": 90, "rating": 6.5, "genres": "Drama, Comedy", "genres_pipe": "|Drama|Comedy|", "keywords": "sister sister relationship, secret, romance, cottage, relationship, mumblecore, woman director", "tags_pipe": "|sister sister relationship|secret|romance|cottage|relationship|mumblecore|woman director|", "overview": "Iris invites her friend Jack to stay at her family's island getaway after the death of his brother. At their remote cabin, Jack's drunken encounter with Hannah, Iris' sister, kicks off a revealing stretch of days.", "text_for_embedding": "Your Sister's Sister (2011). Genres: Drama, Comedy. Iris invites her friend Jack to stay at her family's island getaway after the death of his brother. At their remote cabin, Jack's drunken encounter with Hannah, Iris' sister, kicks off a revealing stretch of days.. Tags: sister sister relationship, secret, romance, cottage, relationship, mumblecore, woman director"} +{"id": "18632", "title": "A Dog's Breakfast", "year": 2007, "duration_min": 88, "rating": 5.9, "genres": "Comedy", "genres_pipe": "|Comedy|", "keywords": "independent film", "tags_pipe": "|independent film|", "overview": "If you've never been good at anything in your life, why would murder be any different? Patrick (David Hewlett) has always had a somewhat combative relationship with his little sister Marilyn (Kate Hewlett), but when she brings home her new sci-fi soap star fiancé Ryan (Paul McGillion), it's all out war. When Patrick fails to drive a wedge between the happy couple, he reaches for sharper instruments.", "text_for_embedding": "A Dog's Breakfast (2007). Genres: Comedy. If you've never been good at anything in your life, why would murder be any different? Patrick (David Hewlett) has always had a somewhat combative relationship with his little sister Marilyn (Kate Hewlett), but when she brings home her new sci-fi soap star fiancé Ryan (Paul McGillion), it's all out war. When Patrick fails to drive a wedge between the happy couple, he reaches for sharper instruments.. Tags: independent film"} +{"id": "40652", "title": "The Married Woman", "year": 1964, "duration_min": 95, "rating": 7.1, "genres": "Drama, Romance", "genres_pipe": "|Drama|Romance|", "keywords": "sandstorm, woman, godard, married", "tags_pipe": "|sandstorm|woman|godard|married|", "overview": "Charlotte is young and modern, not a hair out of place, superficial, cool; she reads fashion magazines - does she have the perfect bust? She lives in a Paris suburb with her son and her husband Pierre, a pilot. Her lover is Robert, an actor. Assignations with him, dinner with her husband and a client, consulting a physician: there's tension at home, Pierre had her followed a few months before, their marital play has an edge, Pierre slaps her and apologizes. She quizzes Robert: is he acting when he's with her? Events may force her to choose Robert or Pierre. Close-ups fill the screen; is there more than surface? Her eyes tear up. The horrors of war provide a distant counterpoint.", "text_for_embedding": "The Married Woman (1964). Genres: Drama, Romance. Charlotte is young and modern, not a hair out of place, superficial, cool; she reads fashion magazines - does she have the perfect bust? She lives in a Paris suburb with her son and her husband Pierre, a pilot. Her lover is Robert, an actor. Assignations with him, dinner with her husband and a client, consulting a physician: there's tension at home, Pierre had her followed a few months before, their marital play has an edge, Pierre slaps her and apologizes. She quizzes Robert: is he acting when he's with her? Events may force her to choose Robert or Pierre. Close-ups fill the screen; is there more than surface? Her eyes tear up. The horrors of war provide a distant counterpoint.. Tags: sandstorm, woman, godard, married"} +{"id": "339408", "title": "The Birth of a Nation", "year": 2016, "duration_min": 120, "rating": 6.5, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "slavery", "tags_pipe": "|slavery|", "overview": "Nat Turner, a former slave in America, leads a liberation movement in 1831 to free African-Americans in Virgina that results in a violent retaliation from whites.", "text_for_embedding": "The Birth of a Nation (2016). Genres: Drama. Nat Turner, a former slave in America, leads a liberation movement in 1831 to free African-Americans in Virgina that results in a violent retaliation from whites.. Tags: slavery"} +{"id": "266857", "title": "The Work and The Story", "year": 2003, "duration_min": 70, "rating": 0.0, "genres": "Comedy", "genres_pipe": "|Comedy|", "keywords": "", "tags_pipe": "", "overview": "It is July, 2000 Richard Dutcher, the man who pioneered \"Mormon Cinema\" with his film \"God's Army\" is missing and presumed dead. Three amateur Mormon Filmmakers: Judy Shumway, Peter Beuhmann and Kevin Evans individually set out to make their first feature-length films to take Dutcher's place as the next \"Mormon Spielberg\". Who will win? Who will lose? Who will find Richard? And does everyone want Richard found?", "text_for_embedding": "The Work and The Story (2003). Genres: Comedy. It is July, 2000 Richard Dutcher, the man who pioneered \"Mormon Cinema\" with his film \"God's Army\" is missing and presumed dead. Three amateur Mormon Filmmakers: Judy Shumway, Peter Beuhmann and Kevin Evans individually set out to make their first feature-length films to take Dutcher's place as the next \"Mormon Spielberg\". Who will win? Who will lose? Who will find Richard? And does everyone want Richard found?. Tags: "} +{"id": "18925", "title": "Facing the Giants", "year": 2006, "duration_min": 111, "rating": 6.6, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "christian, sport, aftercreditsstinger", "tags_pipe": "|christian|sport|aftercreditsstinger|", "overview": "A losing coach with an underdog football team faces their giants of fear and failure on and off the field to surprising results.", "text_for_embedding": "Facing the Giants (2006). Genres: Drama. A losing coach with an underdog football team faces their giants of fear and failure on and off the field to surprising results.. Tags: christian, sport, aftercreditsstinger"} +{"id": "299245", "title": "The Gallows", "year": 2015, "duration_min": 87, "rating": 4.9, "genres": "Horror, Thriller", "genres_pipe": "|Horror|Thriller|", "keywords": "gallows, high school, tragedy, hanging, found footage, stage production", "tags_pipe": "|gallows|high school|tragedy|hanging|found footage|stage production|", "overview": "20 years after a horrific accident during a small town school play, students at the school resurrect the failed show in a misguided attempt to honor the anniversary of the tragedy - but soon discover that some things are better left alone.", "text_for_embedding": "The Gallows (2015). Genres: Horror, Thriller. 20 years after a horrific accident during a small town school play, students at the school resurrect the failed show in a misguided attempt to honor the anniversary of the tragedy - but soon discover that some things are better left alone.. Tags: gallows, high school, tragedy, hanging, found footage, stage production"} +{"id": "985", "title": "Eraserhead", "year": 1977, "duration_min": 89, "rating": 7.5, "genres": "Drama, Fantasy, Horror, Science Fiction", "genres_pipe": "|Drama|Fantasy|Horror|Science Fiction|", "keywords": "baby, mutant, claustrophobia, nightmare, parents-in-law, pencil, eraser, surrealism, independent film, torture, parallel world, cool hair", "tags_pipe": "|baby|mutant|claustrophobia|nightmare|parents-in-law|pencil|eraser|surrealism|independent film|torture|parallel world|cool hair|", "overview": "Henry Spencer tries to survive his industrial environment, his angry girlfriend, and the unbearable screams of his newly born mutant child.", "text_for_embedding": "Eraserhead (1977). Genres: Drama, Fantasy, Horror, Science Fiction. Henry Spencer tries to survive his industrial environment, his angry girlfriend, and the unbearable screams of his newly born mutant child.. Tags: baby, mutant, claustrophobia, nightmare, parents-in-law, pencil, eraser, surrealism, independent film, torture, parallel world, cool hair"} +{"id": "34101", "title": "Hollywood Shuffle", "year": 1987, "duration_min": 78, "rating": 5.7, "genres": "Comedy", "genres_pipe": "|Comedy|", "keywords": "black people, ethnic stereotype", "tags_pipe": "|black people|ethnic stereotype|", "overview": "Aspiring actor and hot-dog stand employee Bobby Taylor catches the ire of his grandmother for auditioning for a role in the regrettably titled exploitation film \"Jivetime Jimmy's Revenge.\" When Tinseltown Studios casts Taylor in the title role, he has a series of conflicted dreams satirizing African-American stereotypes in Hollywood, and must reconcile his career goals with his desire to remain a positive role model for his little brother.", "text_for_embedding": "Hollywood Shuffle (1987). Genres: Comedy. Aspiring actor and hot-dog stand employee Bobby Taylor catches the ire of his grandmother for auditioning for a role in the regrettably titled exploitation film \"Jivetime Jimmy's Revenge.\" When Tinseltown Studios casts Taylor in the title role, he has a series of conflicted dreams satirizing African-American stereotypes in Hollywood, and must reconcile his career goals with his desire to remain a positive role model for his little brother.. Tags: black people, ethnic stereotype"} +{"id": "9821", "title": "The Mighty", "year": 1998, "duration_min": 100, "rating": 7.1, "genres": "Comedy, Drama", "genres_pipe": "|Comedy|Drama|", "keywords": "ohio, coming of age, disabled, learning disability, birth defect, suit of armor", "tags_pipe": "|ohio|coming of age|disabled|learning disability|birth defect|suit of armor|", "overview": "This tells the story of a strong friendship between a young boy with Morquio's syndrome and an older boy who is always bullied because of his size. Adapted from the novel, Freak the Mighty, the film explores a building of trust and friendship. Kevin, an intelligent guy helps out Maxwell to improve his reading skills. In return, Kevin wants Maxwell to take him out places since he is not allowed out unauthorized. Being the social outcasts of the town, Kevin and Maxwell come to realize that they are similar to each other and accept that they are \"freaks\" and nothing will stop them.", "text_for_embedding": "The Mighty (1998). Genres: Comedy, Drama. This tells the story of a strong friendship between a young boy with Morquio's syndrome and an older boy who is always bullied because of his size. Adapted from the novel, Freak the Mighty, the film explores a building of trust and friendship. Kevin, an intelligent guy helps out Maxwell to improve his reading skills. In return, Kevin wants Maxwell to take him out places since he is not allowed out unauthorized. Being the social outcasts of the town, Kevin and Maxwell come to realize that they are similar to each other and accept that they are \"freaks\" and nothing will stop them.. Tags: ohio, coming of age, disabled, learning disability, birth defect, suit of armor"} +{"id": "65448", "title": "Penitentiary", "year": 1979, "duration_min": 99, "rating": 4.9, "genres": "Action, Drama", "genres_pipe": "|Action|Drama|", "keywords": "prison, boxing", "tags_pipe": "|prison|boxing|", "overview": "A hitchhiker named Martel Gordone gets in a fight with two bikers over a prostitute, and one of the bikers is killed. Gordone is arrested and sent to prison, where he joins the prison's boxing team in an effort to secure an early parole and to establish his dominance over the prison's toughest gang.", "text_for_embedding": "Penitentiary (1979). Genres: Action, Drama. A hitchhiker named Martel Gordone gets in a fight with two bikers over a prostitute, and one of the bikers is killed. Gordone is arrested and sent to prison, where he joins the prison's boxing team in an effort to secure an early parole and to establish his dominance over the prison's toughest gang.. Tags: prison, boxing"} +{"id": "18841", "title": "The Lost Skeleton of Cadavra", "year": 2001, "duration_min": 90, "rating": 6.5, "genres": "Comedy, Horror, Science Fiction", "genres_pipe": "|Comedy|Horror|Science Fiction|", "keywords": "monster, mutant, skeleton, alien life-form, science", "tags_pipe": "|monster|mutant|skeleton|alien life-form|science|", "overview": "Remember the good old days when anyone with a camera and a few thousand bucks could schlep up to Bronson canyon and quickly make a cheap sci-fi/horror B-movie? Well, they're back! The Lost Skeleton of Cadavra is an affectionate, meticulous re-creation of those notoriously cheesy clunkers, as a gaggle of beloved stereotypes pursue \"that rarest of radioactive elements - atmospherium.\"", "text_for_embedding": "The Lost Skeleton of Cadavra (2001). Genres: Comedy, Horror, Science Fiction. Remember the good old days when anyone with a camera and a few thousand bucks could schlep up to Bronson canyon and quickly make a cheap sci-fi/horror B-movie? Well, they're back! The Lost Skeleton of Cadavra is an affectionate, meticulous re-creation of those notoriously cheesy clunkers, as a gaggle of beloved stereotypes pursue \"that rarest of radioactive elements - atmospherium.\". Tags: monster, mutant, skeleton, alien life-form, science"} +{"id": "175291", "title": "Cheap Thrills", "year": 2013, "duration_min": 85, "rating": 6.3, "genres": "Drama, Comedy, Crime", "genres_pipe": "|Drama|Comedy|Crime|", "keywords": "suspense, mumblegore", "tags_pipe": "|suspense|mumblegore|", "overview": "Recently fired and facing eviction, a new dad has his life turned upside down when he meets a wealthy couple who offer a path to financial security... but at a price.", "text_for_embedding": "Cheap Thrills (2013). Genres: Drama, Comedy, Crime. Recently fired and facing eviction, a new dad has his life turned upside down when he meets a wealthy couple who offer a path to financial security... but at a price.. Tags: suspense, mumblegore"} +{"id": "80215", "title": "Indie Game: The Movie", "year": 2012, "duration_min": 96, "rating": 7.4, "genres": "Documentary", "genres_pipe": "|Documentary|", "keywords": "games, woman director, programmers, coding", "tags_pipe": "|games|woman director|programmers|coding|", "overview": "Indie Game: The Movie is a feature documentary about video games, their creators and the craft. The film follows the dramatic journeys of video game developers as they create and release their games to the world. The film tells the emotional story of friends Edmund McMillen & Tommy Refenes, as they craft their first Xbox game: \"Super Meat Boy\". It follows Phil Fish, the creator of the highly-anticipated game: \"FEZ\". After 4 years of working in near solitude, Phil reveals his opus to the public for the first time. And, the film tells the surprising story of one of the highest-rated video games of all time:\"Braid\". The film is about making video games, but at its core, it's about the creative process, and exposing yourself through your work. In short: Making fun and games is anything but fun and games.", "text_for_embedding": "Indie Game: The Movie (2012). Genres: Documentary. Indie Game: The Movie is a feature documentary about video games, their creators and the craft. The film follows the dramatic journeys of video game developers as they create and release their games to the world. The film tells the emotional story of friends Edmund McMillen & Tommy Refenes, as they craft their first Xbox game: \"Super Meat Boy\". It follows Phil Fish, the creator of the highly-anticipated game: \"FEZ\". After 4 years of working in near solitude, Phil reveals his opus to the public for the first time. And, the film tells the surprising story of one of the highest-rated video games of all time:\"Braid\". The film is about making video games, but at its core, it's about the creative process, and exposing yourself through your work. In short: Making fun and games is anything but fun and games.. Tags: games, woman director, programmers, coding"} +{"id": "13538", "title": "Straightheads", "year": 2007, "duration_min": 88, "rating": 5.2, "genres": "Thriller", "genres_pipe": "|Thriller|", "keywords": "london england, countryside, rape, sex, trauma, van, assault, horror, party, revenge, murder, attack, gang, car accident, scar", "tags_pipe": "|london england|countryside|rape|sex|trauma|van|assault|horror|party|revenge|murder|attack|gang|car accident|scar|", "overview": "There is instant chemistry between Alice (Gillian Anderson), a businesswoman, and Adam (Danny Dyer), a younger working-class man who installs a security system in her London apartment. She takes him to a party in the country, and they end up making love. But the night turns horrific when they encounter three thugs who maim Adam and rape Alice. The incident turns them into fearful recluses until Alice spots the leader of their attackers (Anthony Calf) -- and the two victims plot a brutal revenge.", "text_for_embedding": "Straightheads (2007). Genres: Thriller. There is instant chemistry between Alice (Gillian Anderson), a businesswoman, and Adam (Danny Dyer), a younger working-class man who installs a security system in her London apartment. She takes him to a party in the country, and they end up making love. But the night turns horrific when they encounter three thugs who maim Adam and rape Alice. The incident turns them into fearful recluses until Alice spots the leader of their attackers (Anthony Calf) -- and the two victims plot a brutal revenge.. Tags: london england, countryside, rape, sex, trauma, van, assault, horror, party, revenge, murder, attack, gang, car accident, scar"} +{"id": "51130", "title": "Open Secret", "year": 1948, "duration_min": 68, "rating": 7.0, "genres": "Crime, Mystery, Thriller", "genres_pipe": "|Crime|Mystery|Thriller|", "keywords": "suspense, film noir", "tags_pipe": "|suspense|film noir|", "overview": "A couple discovers that their friend has gone missing. Their investigation leads them to believe that anti-semites are behind the disappearance.", "text_for_embedding": "Open Secret (1948). Genres: Crime, Mystery, Thriller. A couple discovers that their friend has gone missing. Their investigation leads them to believe that anti-semites are behind the disappearance.. Tags: suspense, film noir"} +{"id": "270554", "title": "Echo Dr.", "year": 2013, "duration_min": 85, "rating": 5.0, "genres": "Thriller, Action, Drama, Science Fiction", "genres_pipe": "|Thriller|Action|Drama|Science Fiction|", "keywords": "", "tags_pipe": "", "overview": "When their home security system malfunctions, a family struggles to survive an attack against a state of the art patrol guard that believes they are intruders.", "text_for_embedding": "Echo Dr. (2013). Genres: Thriller, Action, Drama, Science Fiction. When their home security system malfunctions, a family struggles to survive an attack against a state of the art patrol guard that believes they are intruders.. Tags: "} +{"id": "72086", "title": "The Night Visitor", "year": 1971, "duration_min": 106, "rating": 7.3, "genres": "Crime, Horror", "genres_pipe": "|Crime|Horror|", "keywords": "revenge, escape from prison, suspense", "tags_pipe": "|revenge|escape from prison|suspense|", "overview": "An insane Swedish farmer escapes from an asylum to get revenge on his sister, her husband and others.", "text_for_embedding": "The Night Visitor (1971). Genres: Crime, Horror. An insane Swedish farmer escapes from an asylum to get revenge on his sister, her husband and others.. Tags: revenge, escape from prison, suspense"} +{"id": "268917", "title": "The Past Is a Grotesque Animal", "year": 2014, "duration_min": 77, "rating": 5.5, "genres": "Documentary, Music", "genres_pipe": "|Documentary|Music|", "keywords": "artist, band", "tags_pipe": "|artist|band|", "overview": "A personal, accessible look at an artist - Kevin Barnes, frontman of the endlessly versatile indie pop band of Montreal - whose pursuit to make transcendent music at all costs drives him to value art over human relationships. As he struggles with all of those around him, family and bandmates alike, he's forced to reconsider the future of the band, begging the question - is this really worth it?", "text_for_embedding": "The Past Is a Grotesque Animal (2014). Genres: Documentary, Music. A personal, accessible look at an artist - Kevin Barnes, frontman of the endlessly versatile indie pop band of Montreal - whose pursuit to make transcendent music at all costs drives him to value art over human relationships. As he struggles with all of those around him, family and bandmates alike, he's forced to reconsider the future of the band, begging the question - is this really worth it?. Tags: artist, band"} +{"id": "64973", "title": "Peace, Propaganda & the Promised Land", "year": 2005, "duration_min": 80, "rating": 6.4, "genres": "Documentary", "genres_pipe": "|Documentary|", "keywords": "", "tags_pipe": "", "overview": "This video shows how the foreign policy interests of American political elites-working in combination with Israeli public relations stratgies-influence US news reporting about the Middle East conflict. Combining American and British TV news clips with observations of analysts, journalists and political activists, Peace, Propaganda & the Promised Land provides a brief historical overview, a striking media comparison, and an examination of factors that have distorted U.S. media coverage and, in turn, American public opinion.", "text_for_embedding": "Peace, Propaganda & the Promised Land (2005). Genres: Documentary. This video shows how the foreign policy interests of American political elites-working in combination with Israeli public relations stratgies-influence US news reporting about the Middle East conflict. Combining American and British TV news clips with observations of analysts, journalists and political activists, Peace, Propaganda & the Promised Land provides a brief historical overview, a striking media comparison, and an examination of factors that have distorted U.S. media coverage and, in turn, American public opinion.. Tags: "} +{"id": "473", "title": "Pi", "year": 1998, "duration_min": 84, "rating": 7.1, "genres": "Mystery, Drama, Thriller", "genres_pipe": "|Mystery|Drama|Thriller|", "keywords": "hacker, mathematician, helix, headache, chaos theory, migraine, mathematics, insanity, genius", "tags_pipe": "|hacker|mathematician|helix|headache|chaos theory|migraine|mathematics|insanity|genius|", "overview": "The debut film from Darren Aronofsky in which a mathematical genius Maximilian Cohen discovers a link in the connection between numbers and reality and thus believes he can predict the future.", "text_for_embedding": "Pi (1998). Genres: Mystery, Drama, Thriller. The debut film from Darren Aronofsky in which a mathematical genius Maximilian Cohen discovers a link in the connection between numbers and reality and thus believes he can predict the future.. Tags: hacker, mathematician, helix, headache, chaos theory, migraine, mathematics, insanity, genius"} +{"id": "90414", "title": "I Love You, Don't Touch Me!", "year": 1997, "duration_min": 86, "rating": 6.0, "genres": "Comedy, Romance", "genres_pipe": "|Comedy|Romance|", "keywords": "woman director", "tags_pipe": "|woman director|", "overview": "The story of a 25 year old virgin girl, looking for the right boyfriend, not realizing that \"the one\" has been next to her for many years.", "text_for_embedding": "I Love You, Don't Touch Me! (1997). Genres: Comedy, Romance. The story of a 25 year old virgin girl, looking for the right boyfriend, not realizing that \"the one\" has been next to her for many years.. Tags: woman director"} +{"id": "111794", "title": "20 Dates", "year": 1998, "duration_min": 87, "rating": 3.7, "genres": "Romance, Comedy", "genres_pipe": "|Romance|Comedy|", "keywords": "hidden camera, biography, reality show, mockumentary", "tags_pipe": "|hidden camera|biography|reality show|mockumentary|", "overview": "Myles is divorced in L.A. He wants a love life and a film career. So he decides to go on 20 dates and find true love in front of a camera, making his first feature. His patient agent, Richard, finds a $60,000 investor, the shadowy Elie. Myles starts his search, sometimes telling his date she's being filmed, sometimes not. Elie wants sex and titillation, Myles wants it \"real.\" Myles regularly talks with his old film teacher, Robert McKee, who wonders if love is possible in modern life. Half-way through the 20 dates, Myles meets Elisabeth; she's everything he desires and she likes him. Can he finish the 20 dates, satisfy Elie, and complete his film without losing Elisabeth?", "text_for_embedding": "20 Dates (1998). Genres: Romance, Comedy. Myles is divorced in L.A. He wants a love life and a film career. So he decides to go on 20 dates and find true love in front of a camera, making his first feature. His patient agent, Richard, finds a $60,000 investor, the shadowy Elie. Myles starts his search, sometimes telling his date she's being filmed, sometimes not. Elie wants sex and titillation, Myles wants it \"real.\" Myles regularly talks with his old film teacher, Robert McKee, who wonders if love is possible in modern life. Half-way through the 20 dates, Myles meets Elisabeth; she's everything he desires and she likes him. Can he finish the 20 dates, satisfy Elie, and complete his film without losing Elisabeth?. Tags: hidden camera, biography, reality show, mockumentary"} +{"id": "360188", "title": "Queen Crab", "year": 2015, "duration_min": 90, "rating": 3.3, "genres": "Science Fiction", "genres_pipe": "|Science Fiction|", "keywords": "monster, crab, actress", "tags_pipe": "|monster|crab|actress|", "overview": "A meteor crashes into a quiet lake in the remote countryside and awakens a centuries-old beast, who tears through a nearby town and its inhabitants, who must fight for their lives and stop this Queen Crab before she can hatch an army of babies.", "text_for_embedding": "Queen Crab (2015). Genres: Science Fiction. A meteor crashes into a quiet lake in the remote countryside and awakens a centuries-old beast, who tears through a nearby town and its inhabitants, who must fight for their lives and stop this Queen Crab before she can hatch an army of babies.. Tags: monster, crab, actress"} +{"id": "9372", "title": "Super Size Me", "year": 2004, "duration_min": 100, "rating": 6.6, "genres": "Documentary, Comedy, Drama", "genres_pipe": "|Documentary|Comedy|Drama|", "keywords": "experiment, health, junk food, food industry, fast food, mcdonald's restaurant", "tags_pipe": "|experiment|health|junk food|food industry|fast food|mcdonald's restaurant|", "overview": "Morgan Spurlock subjects himself to a diet based only on McDonald's fast food three times a day for thirty days without exercising to try to prove why so many Americans are fat or obese. He submits himself to a complete check-up by three doctors, comparing his weight along the way, resulting in a scary conclusion.", "text_for_embedding": "Super Size Me (2004). Genres: Documentary, Comedy, Drama. Morgan Spurlock subjects himself to a diet based only on McDonald's fast food three times a day for thirty days without exercising to try to prove why so many Americans are fat or obese. He submits himself to a complete check-up by three doctors, comparing his weight along the way, resulting in a scary conclusion.. Tags: experiment, health, junk food, food industry, fast food, mcdonald's restaurant"} +{"id": "85860", "title": "The FP", "year": 2011, "duration_min": 82, "rating": 4.5, "genres": "Comedy", "genres_pipe": "|Comedy|", "keywords": "", "tags_pipe": "", "overview": "Two rival gangs fight for control of Frazier Park -- a deadly arena in competitive dance-fight video game \"Beat-Beat Revolution.\"", "text_for_embedding": "The FP (2011). Genres: Comedy. Two rival gangs fight for control of Frazier Park -- a deadly arena in competitive dance-fight video game \"Beat-Beat Revolution.\". Tags: "} +{"id": "244534", "title": "Happy Christmas", "year": 2014, "duration_min": 82, "rating": 5.2, "genres": "Comedy, Drama", "genres_pipe": "|Comedy|Drama|", "keywords": "family, mumblecore, christmas", "tags_pipe": "|family|mumblecore|christmas|", "overview": "After a breakup with her boyfriend, a young woman moves in with her older brother, his wife, and their 2-year-old son.", "text_for_embedding": "Happy Christmas (2014). Genres: Comedy, Drama. After a breakup with her boyfriend, a young woman moves in with her older brother, his wife, and their 2-year-old son.. Tags: family, mumblecore, christmas"} +{"id": "33468", "title": "The Brain That Wouldn't Die", "year": 1962, "duration_min": 82, "rating": 4.4, "genres": "Horror, Science Fiction", "genres_pipe": "|Horror|Science Fiction|", "keywords": "transplantation, experiment, mutant, brain, fiancé, surgeon, strip club, stripper, car crash, laboratory, independent film, gore, disembodied head, mad doctor, b movie", "tags_pipe": "|transplantation|experiment|mutant|brain|fiancé|surgeon|strip club|stripper|car crash|laboratory|independent film|gore|disembodied head|mad doctor|b movie|", "overview": "Dr. Bill Cortner (Jason Evers) and his fiancée, Jan Compton (Virginia Leith), are driving to his lab when they get into a horrible car accident. Compton is decapitated. But Cortner is not fazed by this seemingly insurmountable hurdle. His expertise is in transplants, and he is excited to perform the first head transplant. Keeping Compton's head alive in his lab, Cortner plans the groundbreaking yet unorthodox surgery. First, however, he needs a body.", "text_for_embedding": "The Brain That Wouldn't Die (1962). Genres: Horror, Science Fiction. Dr. Bill Cortner (Jason Evers) and his fiancée, Jan Compton (Virginia Leith), are driving to his lab when they get into a horrible car accident. Compton is decapitated. But Cortner is not fazed by this seemingly insurmountable hurdle. His expertise is in transplants, and he is excited to perform the first head transplant. Keeping Compton's head alive in his lab, Cortner plans the groundbreaking yet unorthodox surgery. First, however, he needs a body.. Tags: transplantation, experiment, mutant, brain, fiancé, surgeon, strip club, stripper, car crash, laboratory, independent film, gore, disembodied head, mad doctor, b movie"} +{"id": "294086", "title": "Tiger Orange", "year": 2014, "duration_min": 75, "rating": 6.4, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "gay, lgbt", "tags_pipe": "|gay|lgbt|", "overview": "In the small Central California town where they grew up, two estranged gay brothers struggle to reconnect after the recent death of their father.", "text_for_embedding": "Tiger Orange (2014). Genres: Drama. In the small Central California town where they grew up, two estranged gay brothers struggle to reconnect after the recent death of their father.. Tags: gay, lgbt"} +{"id": "139998", "title": "Supporting Characters", "year": 2012, "duration_min": 87, "rating": 6.7, "genres": "Drama, Comedy", "genres_pipe": "|Drama|Comedy|", "keywords": "marriage proposal, relationship, filmmaking, film editing", "tags_pipe": "|marriage proposal|relationship|filmmaking|film editing|", "overview": "Two New York film editors balance their personal relationships while reworking a movie in crisis.", "text_for_embedding": "Supporting Characters (2012). Genres: Drama, Comedy. Two New York film editors balance their personal relationships while reworking a movie in crisis.. Tags: marriage proposal, relationship, filmmaking, film editing"} +{"id": "74777", "title": "Absentia", "year": 2011, "duration_min": 92, "rating": 5.8, "genres": "Mystery, Horror, Thriller", "genres_pipe": "|Mystery|Horror|Thriller|", "keywords": "pregnancy, declared dead, returned alive", "tags_pipe": "|pregnancy|declared dead|returned alive|", "overview": "Tricia's husband Daniel has been missing for seven years. Her younger sister Callie comes to live with her as the pressure mounts to finally declare him 'dead in absentia.' As Tricia sifts through the wreckage and tries to move on with her life, Callie finds herself drawn to an ominous tunnel near the house. As she begins to link it to other mysterious disappearances, it becomes clear that Daniel's presumed death might be anything but 'natural.' The ancient force at work in the tunnel might have set its sights on Callie and Tricia... and Daniel might be suffering a fate far worse than death in its grasp.", "text_for_embedding": "Absentia (2011). Genres: Mystery, Horror, Thriller. Tricia's husband Daniel has been missing for seven years. Her younger sister Callie comes to live with her as the pressure mounts to finally declare him 'dead in absentia.' As Tricia sifts through the wreckage and tries to move on with her life, Callie finds herself drawn to an ominous tunnel near the house. As she begins to link it to other mysterious disappearances, it becomes clear that Daniel's presumed death might be anything but 'natural.' The ancient force at work in the tunnel might have set its sights on Callie and Tricia... and Daniel might be suffering a fate far worse than death in its grasp.. Tags: pregnancy, declared dead, returned alive"} +{"id": "16388", "title": "The Brothers McMullen", "year": 1995, "duration_min": 98, "rating": 6.3, "genres": "Comedy, Drama, Romance", "genres_pipe": "|Comedy|Drama|Romance|", "keywords": "love, independent film, best friend, true love, irish catholic", "tags_pipe": "|love|independent film|best friend|true love|irish catholic|", "overview": "Deals with the lives of the three Irish Catholic McMullen brothers from Long Island, New York, over three months, as they grapple with basic ideas and values — love, sex, marriage, religion and family — in the 1990s. Directed, written, produced by and starring Edward Burns.", "text_for_embedding": "The Brothers McMullen (1995). Genres: Comedy, Drama, Romance. Deals with the lives of the three Irish Catholic McMullen brothers from Long Island, New York, over three months, as they grapple with basic ideas and values — love, sex, marriage, religion and family — in the 1990s. Directed, written, produced by and starring Edward Burns.. Tags: love, independent film, best friend, true love, irish catholic"} +{"id": "159770", "title": "The Dirties", "year": 2013, "duration_min": 83, "rating": 6.0, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "", "tags_pipe": "", "overview": "Two best friends are filming a comedy about getting revenge on the bullies at their high school. One of them isn't joking.", "text_for_embedding": "The Dirties (2013). Genres: Drama. Two best friends are filming a comedy about getting revenge on the bullies at their high school. One of them isn't joking.. Tags: "} +{"id": "42109", "title": "Gabriela", "year": 1983, "duration_min": 99, "rating": 6.0, "genres": "Drama, Romance", "genres_pipe": "|Drama|Romance|", "keywords": "", "tags_pipe": "", "overview": "In 1925, Gabriela becomes cook, mistress, and then wife of Nacib, a bar owner in a small Brazilian coastal town runs by the local colonels. Nacib becomes tired of Gabriela's uneducated ways, and annuls the marriage when he finds her in bed with his friend Tonico. The political ways of the town modernize slightly and Gabriela returns as Nacib's mistress.", "text_for_embedding": "Gabriela (1983). Genres: Drama, Romance. In 1925, Gabriela becomes cook, mistress, and then wife of Nacib, a bar owner in a small Brazilian coastal town runs by the local colonels. Nacib becomes tired of Gabriela's uneducated ways, and annuls the marriage when he finds her in bed with his friend Tonico. The political ways of the town modernize slightly and Gabriela returns as Nacib's mistress.. Tags: "} +{"id": "47607", "title": "Tiny Furniture", "year": 2010, "duration_min": 99, "rating": 5.6, "genres": "Romance, Comedy, Drama", "genres_pipe": "|Romance|Comedy|Drama|", "keywords": "sister sister relationship, male female relationship, mother daughter relationship, youtube, woman director", "tags_pipe": "|sister sister relationship|male female relationship|mother daughter relationship|youtube|woman director|", "overview": "After graduating from film school, Aura returns to New York to live with her photographer mother, Siri, and her sister, Nadine, who has just finished high school. Aura is directionless and wonders where to go next in her career and her life. She takes a job in a restaurant and tries unsuccessfully to develop relationships with men, including Keith, a chef where she works, and cult Internet star Jed.", "text_for_embedding": "Tiny Furniture (2010). Genres: Romance, Comedy, Drama. After graduating from film school, Aura returns to New York to live with her photographer mother, Siri, and her sister, Nadine, who has just finished high school. Aura is directionless and wonders where to go next in her career and her life. She takes a job in a restaurant and tries unsuccessfully to develop relationships with men, including Keith, a chef where she works, and cult Internet star Jed.. Tags: sister sister relationship, male female relationship, mother daughter relationship, youtube, woman director"} +{"id": "193603", "title": "Hayride", "year": 2012, "duration_min": 93, "rating": 5.1, "genres": "Thriller, Horror", "genres_pipe": "|Thriller|Horror|", "keywords": "haunted house, slasher", "tags_pipe": "|haunted house|slasher|", "overview": "A college student returning home for Halloween is forced to face his childhood fears when an escaped killer takes refuge in his family's \"Haunted Hayride\".", "text_for_embedding": "Hayride (2012). Genres: Thriller, Horror. A college student returning home for Halloween is forced to face his childhood fears when an escaped killer takes refuge in his family's \"Haunted Hayride\".. Tags: haunted house, slasher"} +{"id": "84659", "title": "The Naked Ape", "year": 2006, "duration_min": 110, "rating": 5.0, "genres": "Drama, Comedy, Family", "genres_pipe": "|Drama|Comedy|Family|", "keywords": "", "tags_pipe": "", "overview": "The Naked Ape is a coming-of-age film following three teenagers on a road trip across the Pacific Southwest.", "text_for_embedding": "The Naked Ape (2006). Genres: Drama, Comedy, Family. The Naked Ape is a coming-of-age film following three teenagers on a road trip across the Pacific Southwest.. Tags: "} +{"id": "322745", "title": "Counting", "year": 2015, "duration_min": 111, "rating": 8.3, "genres": "Documentary", "genres_pipe": "|Documentary|", "keywords": "", "tags_pipe": "", "overview": "An associative collection of visual impressions across fifteen chapters: a seagull in Porto, political posters in New York, an abstract painting in St. Petersburg, an abandoned video shop in Cairo and cats everywhere you look.", "text_for_embedding": "Counting (2015). Genres: Documentary. An associative collection of visual impressions across fifteen chapters: a seagull in Porto, political posters in New York, an abstract painting in St. Petersburg, an abandoned video shop in Cairo and cats everywhere you look.. Tags: "} +{"id": "20981", "title": "The Call of Cthulhu", "year": 2005, "duration_min": 47, "rating": 6.9, "genres": "Horror, Thriller, Fantasy", "genres_pipe": "|Horror|Thriller|Fantasy|", "keywords": "obsession, nightmare, notebook, cult, h.p. lovecraft, cthulhu, grayscale", "tags_pipe": "|obsession|nightmare|notebook|cult|h.p. lovecraft|cthulhu|grayscale|", "overview": "A dying professor leaves his great-nephew a collection of documents pertaining to the Cthulhu Cult. The nephew begins to learn why the study of the cult so fascinated his grandfather. Bit-by-bit he begins piecing together the dread implications of his grandfather's inquiries, and soon he takes on investigating the Cthulhu cult as a crusade of his own.", "text_for_embedding": "The Call of Cthulhu (2005). Genres: Horror, Thriller, Fantasy. A dying professor leaves his great-nephew a collection of documents pertaining to the Cthulhu Cult. The nephew begins to learn why the study of the cult so fascinated his grandfather. Bit-by-bit he begins piecing together the dread implications of his grandfather's inquiries, and soon he takes on investigating the Cthulhu cult as a crusade of his own.. Tags: obsession, nightmare, notebook, cult, h.p. lovecraft, cthulhu, grayscale"} +{"id": "174362", "title": "Bending Steel", "year": 2013, "duration_min": 93, "rating": 5.0, "genres": "Documentary", "genres_pipe": "|Documentary|", "keywords": "", "tags_pipe": "", "overview": "The Cyclone, The Freakshow, The Mermaid Parade: all Coney Island icons. But Chris “Wonder” Schoeck has always preferred the Coney Island Strongman. Bending Steel follows the sweet, unassuming Schoeck as he parlays his extraordinary strength into the pursuit of his lifelong dream. Training with an elite group of men whose hands bend, drag, twist and shred metal, he tackles an enormous physical and mental challenge, taking a surprisingly emotional journey as a result.", "text_for_embedding": "Bending Steel (2013). Genres: Documentary. The Cyclone, The Freakshow, The Mermaid Parade: all Coney Island icons. But Chris “Wonder” Schoeck has always preferred the Coney Island Strongman. Bending Steel follows the sweet, unassuming Schoeck as he parlays his extraordinary strength into the pursuit of his lifelong dream. Training with an elite group of men whose hands bend, drag, twist and shred metal, he tackles an enormous physical and mental challenge, taking a surprisingly emotional journey as a result.. Tags: "} +{"id": "242095", "title": "The Signal", "year": 2014, "duration_min": 95, "rating": 5.8, "genres": "Thriller, Science Fiction", "genres_pipe": "|Thriller|Science Fiction|", "keywords": "hacker, supernatural powers, road trip, independent film, superpower, boyfriend girlfriend relationship, secret laboratory", "tags_pipe": "|hacker|supernatural powers|road trip|independent film|superpower|boyfriend girlfriend relationship|secret laboratory|", "overview": "Three college students on a road trip across the Southwest experience a detour – the tracking of a computer genius who has already hacked into MIT and exposed security faults. When the trio find themselves drawn to an eerily isolated area, suddenly everything goes dark. When one of the students regains consciousness, he finds himself in a waking nightmare.", "text_for_embedding": "The Signal (2014). Genres: Thriller, Science Fiction. Three college students on a road trip across the Southwest experience a detour – the tracking of a computer genius who has already hacked into MIT and exposed security faults. When the trio find themselves drawn to an eerily isolated area, suddenly everything goes dark. When one of the students regains consciousness, he finds himself in a waking nightmare.. Tags: hacker, supernatural powers, road trip, independent film, superpower, boyfriend girlfriend relationship, secret laboratory"} +{"id": "250902", "title": "The Image Revolution", "year": 2013, "duration_min": 81, "rating": 5.7, "genres": "Documentary", "genres_pipe": "|Documentary|", "keywords": "comic book, biography, comic book artist, image comics, comic book industry", "tags_pipe": "|comic book|biography|comic book artist|image comics|comic book industry|", "overview": "Twenty years ago, seven superstar artists left Marvel Comics to create their own company, Image Comics, a company that continues to influence mainstream comics and pop culture to this day. Image began as more than just a publisher - it was a response to years of creator mistreatment, and changed comics forever. The Image Revolution tells the story of Image Comics, from its founders' work at Marvel, through Image's early success, company difficulties during the comics market implosion, and ultimately the publisher's new generation of properties like The Walking Dead. Filled with colorful characters, the film is a clarion call to artists to take control of their destiny.", "text_for_embedding": "The Image Revolution (2013). Genres: Documentary. Twenty years ago, seven superstar artists left Marvel Comics to create their own company, Image Comics, a company that continues to influence mainstream comics and pop culture to this day. Image began as more than just a publisher - it was a response to years of creator mistreatment, and changed comics forever. The Image Revolution tells the story of Image Comics, from its founders' work at Marvel, through Image's early success, company difficulties during the comics market implosion, and ultimately the publisher's new generation of properties like The Walking Dead. Filled with colorful characters, the film is a clarion call to artists to take control of their destiny.. Tags: comic book, biography, comic book artist, image comics, comic book industry"} +{"id": "158895", "title": "This Is Martin Bonner", "year": 2013, "duration_min": 83, "rating": 6.6, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "", "tags_pipe": "", "overview": "Two men, at opposite ends of the social spectrum, find themselves starting new lives in the same, small town and form an unlikely friendship.", "text_for_embedding": "This Is Martin Bonner (2013). Genres: Drama. Two men, at opposite ends of the social spectrum, find themselves starting new lives in the same, small town and form an unlikely friendship.. Tags: "} +{"id": "222250", "title": "A True Story", "year": 2013, "duration_min": 96, "rating": 6.8, "genres": "Comedy", "genres_pipe": "|Comedy|", "keywords": "", "tags_pipe": "", "overview": "Mike and Matt own nothing and share everything, including their life's work, a screenplay, which seems to be their only escape from the harsh reality that is the Hollywood machine.", "text_for_embedding": "A True Story (2013). Genres: Comedy. Mike and Matt own nothing and share everything, including their life's work, a screenplay, which seems to be their only escape from the harsh reality that is the Hollywood machine.. Tags: "} +{"id": "18292", "title": "George Washington", "year": 2000, "duration_min": 89, "rating": 6.4, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "independent film", "tags_pipe": "|independent film|", "overview": "A delicately told and deceptively simple story of a group of children in a depressed small town who band together to cover up a tragic mistake.", "text_for_embedding": "George Washington (2000). Genres: Drama. A delicately told and deceptively simple story of a group of children in a depressed small town who band together to cover up a tragic mistake.. Tags: independent film"} +{"id": "125537", "title": "Smiling Fish & Goat On Fire", "year": 1999, "duration_min": 90, "rating": 7.0, "genres": "Comedy, Romance", "genres_pipe": "|Comedy|Romance|", "keywords": "", "tags_pipe": "", "overview": "Two brothers share a house in LA's Fairfax district: Tony's a feckless actor, Chris is an accountant. Both are in relationships on rocky ground. As these emotions swirl, Tony meets his US Postal Service letter carrier, a single mom named Kathy who's come to LA from Wyoming with her daughter, a budding actress. Chris meets Anna, an Italian beauty working in the States for a few months wrangling animals on movie sets. Chris also befriends Clive, an aging and crusty man whose longing for his recently-deceased wife is a portrait of true love. Can Clive's example help Chris sort out his love life, and can Tony grow up enough to see the possibilities with Kathy and her daughter?", "text_for_embedding": "Smiling Fish & Goat On Fire (1999). Genres: Comedy, Romance. Two brothers share a house in LA's Fairfax district: Tony's a feckless actor, Chris is an accountant. Both are in relationships on rocky ground. As these emotions swirl, Tony meets his US Postal Service letter carrier, a single mom named Kathy who's come to LA from Wyoming with her daughter, a budding actress. Chris meets Anna, an Italian beauty working in the States for a few months wrangling animals on movie sets. Chris also befriends Clive, an aging and crusty man whose longing for his recently-deceased wife is a portrait of true love. Can Clive's example help Chris sort out his love life, and can Tony grow up enough to see the possibilities with Kathy and her daughter?. Tags: "} +{"id": "326576", "title": "Dawn of the Crescent Moon", "year": 2014, "duration_min": 95, "rating": 2.0, "genres": "Thriller, Drama, Science Fiction", "genres_pipe": "|Thriller|Drama|Science Fiction|", "keywords": "", "tags_pipe": "", "overview": "A group of college students travel to a small Texas town to research the Legend of Blood Lake, an obscure folktale forged by events surrounding the horrible massacre of a Comanche village.", "text_for_embedding": "Dawn of the Crescent Moon (2014). Genres: Thriller, Drama, Science Fiction. A group of college students travel to a small Texas town to research the Legend of Blood Lake, an obscure folktale forged by events surrounding the horrible massacre of a Comanche village.. Tags: "} +{"id": "228550", "title": "Raymond Did It", "year": 2011, "duration_min": 83, "rating": 3.2, "genres": "Horror", "genres_pipe": "|Horror|", "keywords": "high school, murder, slasher, teenager", "tags_pipe": "|high school|murder|slasher|teenager|", "overview": "Mentally challenged Raymond Rourke gets blamed and framed by several kids after they accidentally kill his younger brother Bryce. Six years later, Raymond escapes from the state mental hospital he's been locked up in so he can exact a harsh revenge on the folks who killed his brother and set him up.", "text_for_embedding": "Raymond Did It (2011). Genres: Horror. Mentally challenged Raymond Rourke gets blamed and framed by several kids after they accidentally kill his younger brother Bryce. Six years later, Raymond escapes from the state mental hospital he's been locked up in so he can exact a harsh revenge on the folks who killed his brother and set him up.. Tags: high school, murder, slasher, teenager"} +{"id": "13963", "title": "The Last Waltz", "year": 1978, "duration_min": 117, "rating": 7.9, "genres": "Documentary, Music", "genres_pipe": "|Documentary|Music|", "keywords": "1970s, music", "tags_pipe": "|1970s|music|", "overview": "Martin Scorsese's rockumentary intertwines footage from \"The Band's\" incredible farewell tour with probing backstage interviews and featured performances by Eric Clapton, Bob Dylan, Joni Mitchell, Ringo Starr and other rock legends.", "text_for_embedding": "The Last Waltz (1978). Genres: Documentary, Music. Martin Scorsese's rockumentary intertwines footage from \"The Band's\" incredible farewell tour with probing backstage interviews and featured performances by Eric Clapton, Bob Dylan, Joni Mitchell, Ringo Starr and other rock legends.. Tags: 1970s, music"} +{"id": "290391", "title": "Run, Hide, Die", "year": 2015, "duration_min": 75, "rating": 3.5, "genres": "Thriller, Horror", "genres_pipe": "|Thriller|Horror|", "keywords": "revenge, murder", "tags_pipe": "|revenge|murder|", "overview": "On the anniversary weekend of the death of a young women's husband, five girls head out to a cabin to help their friend move past her husband's death. As the party continues a dark secret begins to unravel and a hideous past crawls out to seek revenge.", "text_for_embedding": "Run, Hide, Die (2015). Genres: Thriller, Horror. On the anniversary weekend of the death of a young women's husband, five girls head out to a cabin to help their friend move past her husband's death. As the party continues a dark secret begins to unravel and a hideous past crawls out to seek revenge.. Tags: revenge, murder"} +{"id": "44770", "title": "The Exploding Girl", "year": 2009, "duration_min": 80, "rating": 6.4, "genres": "Drama, Romance", "genres_pipe": "|Drama|Romance|", "keywords": "independent film", "tags_pipe": "|independent film|", "overview": "On a summer break from college, Ivy, a young epileptic woman, struggles to balance her feelings for her fledgling boyfriend while her friend Al crashes with her for the season.", "text_for_embedding": "The Exploding Girl (2009). Genres: Drama, Romance. On a summer break from college, Ivy, a young epileptic woman, struggles to balance her feelings for her fledgling boyfriend while her friend Al crashes with her for the season.. Tags: independent film"} +{"id": "69382", "title": "The Legend of God's Gun", "year": 2007, "duration_min": 78, "rating": 0.0, "genres": "Action, Western", "genres_pipe": "|Action|Western|", "keywords": "", "tags_pipe": "", "overview": "A gun-slinging preacher returns to the debaucherous town of Playa Diablo seeking revenge from the notorious scorpion-venom drinking bandito El Sobero - lead outlaw and number one bad guy. El Sobero and his band of bad banditos are also returning to Playa Diablo seeking their own revenge against the town sheriff. With the Bounty Hunter dragging up slowly behind there is sure to be a confrontation of Biblical proportions as they all meet in the circle of death.", "text_for_embedding": "The Legend of God's Gun (2007). Genres: Action, Western. A gun-slinging preacher returns to the debaucherous town of Playa Diablo seeking revenge from the notorious scorpion-venom drinking bandito El Sobero - lead outlaw and number one bad guy. El Sobero and his band of bad banditos are also returning to Playa Diablo seeking their own revenge against the town sheriff. With the Bounty Hunter dragging up slowly behind there is sure to be a confrontation of Biblical proportions as they all meet in the circle of death.. Tags: "} +{"id": "40769", "title": "Mutual Appreciation", "year": 2005, "duration_min": 109, "rating": 6.1, "genres": "Drama, Comedy", "genres_pipe": "|Drama|Comedy|", "keywords": "musician, romance, independent film, mumblecore", "tags_pipe": "|musician|romance|independent film|mumblecore|", "overview": "Alan is a musician who leaves a busted-up band for New York, and a new musical voyage. He tries to stay focused and fends off all manner of distractions, including the attraction to his good friend's girlfriend. Film of the \"Mumblecore\" genre.", "text_for_embedding": "Mutual Appreciation (2005). Genres: Drama, Comedy. Alan is a musician who leaves a busted-up band for New York, and a new musical voyage. He tries to stay focused and fends off all manner of distractions, including the attraction to his good friend's girlfriend. Film of the \"Mumblecore\" genre.. Tags: musician, romance, independent film, mumblecore"} +{"id": "220490", "title": "Her Cry: La Llorona Investigation", "year": 2013, "duration_min": 89, "rating": 0.0, "genres": "Horror", "genres_pipe": "|Horror|", "keywords": "", "tags_pipe": "", "overview": "Crew of \"Paranormal Legends\" went to film their 4th season at the place where La Llorona (Weeping woman) was reportedly seen. Only thing that's left was 17 hours of tapes and 2 camcorders.", "text_for_embedding": "Her Cry: La Llorona Investigation (2013). Genres: Horror. Crew of \"Paranormal Legends\" went to film their 4th season at the place where La Llorona (Weeping woman) was reportedly seen. Only thing that's left was 17 hours of tapes and 2 camcorders.. Tags: "} +{"id": "42151", "title": "Down Terrace", "year": 2009, "duration_min": 89, "rating": 6.3, "genres": "Drama, Action, Comedy", "genres_pipe": "|Drama|Action|Comedy|", "keywords": "murder, dark comedy, crime family", "tags_pipe": "|murder|dark comedy|crime family|", "overview": "After serving jail time for a mysterious crime, Bill and Karl get out of jail and become preoccupied with figuring out who turned them in to the police. On top of that, the \"family business\" is on the rocks, and the motley crew of criminals who operate out of Down Terrace aren't feeling terribly trusting of one another. It might look like an ordinary house, but at Down Terrace, the walls are closing in..", "text_for_embedding": "Down Terrace (2009). Genres: Drama, Action, Comedy. After serving jail time for a mysterious crime, Bill and Karl get out of jail and become preoccupied with figuring out who turned them in to the police. On top of that, the \"family business\" is on the rocks, and the motley crew of criminals who operate out of Down Terrace aren't feeling terribly trusting of one another. It might look like an ordinary house, but at Down Terrace, the walls are closing in... Tags: murder, dark comedy, crime family"} +{"id": "2292", "title": "Clerks", "year": 1994, "duration_min": 92, "rating": 7.4, "genres": "Comedy", "genres_pipe": "|Comedy|", "keywords": "salesclerk, loser, aftercreditsstinger", "tags_pipe": "|salesclerk|loser|aftercreditsstinger|", "overview": "Convenience and video store clerks Dante and Randal are sharp-witted, potty-mouthed and bored out of their minds. So in between needling customers, the counter jockeys play hockey on the roof, visit a funeral home and deal with their love lives.", "text_for_embedding": "Clerks (1994). Genres: Comedy. Convenience and video store clerks Dante and Randal are sharp-witted, potty-mouthed and bored out of their minds. So in between needling customers, the counter jockeys play hockey on the roof, visit a funeral home and deal with their love lives.. Tags: salesclerk, loser, aftercreditsstinger"} +{"id": "42497", "title": "Pink Narcissus", "year": 1971, "duration_min": 64, "rating": 6.0, "genres": "Drama, Romance", "genres_pipe": "|Drama|Romance|", "keywords": "dream, prostitution", "tags_pipe": "|dream|prostitution|", "overview": "An erotic poem set in the fantasies of a young male prostitute.", "text_for_embedding": "Pink Narcissus (1971). Genres: Drama, Romance. An erotic poem set in the fantasies of a young male prostitute.. Tags: dream, prostitution"} +{"id": "33693", "title": "Funny Ha Ha", "year": 2002, "duration_min": 85, "rating": 6.3, "genres": "Drama, Comedy", "genres_pipe": "|Drama|Comedy|", "keywords": "mumblecore", "tags_pipe": "|mumblecore|", "overview": "Unsure of what to do next, 23-year-old Marnie tries her best to navigate life after college in this romantic comedy. Still partying like there's no tomorrow, Marnie drags herself out of bed for her miserable temp job and can't decide whether she's wasting her time going after best buddy Alex, who doesn't seem to be interested.", "text_for_embedding": "Funny Ha Ha (2002). Genres: Drama, Comedy. Unsure of what to do next, 23-year-old Marnie tries her best to navigate life after college in this romantic comedy. Still partying like there's no tomorrow, Marnie drags herself out of bed for her miserable temp job and can't decide whether she's wasting her time going after best buddy Alex, who doesn't seem to be interested.. Tags: mumblecore"} +{"id": "14585", "title": "In the Company of Men", "year": 1997, "duration_min": 97, "rating": 6.8, "genres": "Comedy, Drama", "genres_pipe": "|Comedy|Drama|", "keywords": "office, love, independent film, secretary, misogynist", "tags_pipe": "|office|love|independent film|secretary|misogynist|", "overview": "Two business executives--one an avowed misogynist, the other recently emotionally wounded by his love interest--set out to exact revenge on the female gender by seeking out the most innocent, uncorrupted girl they can find and ruining her life.", "text_for_embedding": "In the Company of Men (1997). Genres: Comedy, Drama. Two business executives--one an avowed misogynist, the other recently emotionally wounded by his love interest--set out to exact revenge on the female gender by seeking out the most innocent, uncorrupted girl they can find and ruining her life.. Tags: office, love, independent film, secretary, misogynist"} +{"id": "185465", "title": "Manito", "year": 2002, "duration_min": 78, "rating": 5.5, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "", "tags_pipe": "", "overview": "Fifteen years ago, their Washington Heights neighborhood was dubbed the crack-cocaine capital of the world, but today it is transforming into one of the most vibrant, Spanish-speaking communities in the United States. While the drug dealers continue to disappear, their violent legacy still casts a shadow over the neighborhood and its residents. Junior, an ex-convict struggling to get his life back on track, is a product of this legacy. His younger brother Manny, the salutatorian of his high school class, embodies the hope of the future. On the night of his graduation party, Manny finds himself faced with an ill-fated decision that could change his life forever", "text_for_embedding": "Manito (2002). Genres: Drama. Fifteen years ago, their Washington Heights neighborhood was dubbed the crack-cocaine capital of the world, but today it is transforming into one of the most vibrant, Spanish-speaking communities in the United States. While the drug dealers continue to disappear, their violent legacy still casts a shadow over the neighborhood and its residents. Junior, an ex-convict struggling to get his life back on track, is a product of this legacy. His younger brother Manny, the salutatorian of his high school class, embodies the hope of the future. On the night of his graduation party, Manny finds himself faced with an ill-fated decision that could change his life forever. Tags: "} +{"id": "38780", "title": "Rampage", "year": 2009, "duration_min": 85, "rating": 6.0, "genres": "Action, Drama, Crime, Thriller", "genres_pipe": "|Action|Drama|Crime|Thriller|", "keywords": "rampage, massacre, killing spree", "tags_pipe": "|rampage|massacre|killing spree|", "overview": "The boredom of small town life is eating Bill Williamson alive. Feeling constrained and claustrophobic in the meaningless drudgery of everyday life and helpless against overwhelming global dissolution, Bill begins a descent into madness. His shockingly violent plan will shake the very foundations of society by painting the streets red with blood.", "text_for_embedding": "Rampage (2009). Genres: Action, Drama, Crime, Thriller. The boredom of small town life is eating Bill Williamson alive. Feeling constrained and claustrophobic in the meaningless drudgery of everyday life and helpless against overwhelming global dissolution, Bill begins a descent into madness. His shockingly violent plan will shake the very foundations of society by painting the streets red with blood.. Tags: rampage, massacre, killing spree"} +{"id": "14022", "title": "Slacker", "year": 1990, "duration_min": 97, "rating": 6.4, "genres": "Comedy", "genres_pipe": "|Comedy|", "keywords": "moon, philosophy, burglar, texas, dream, atomic bomb, tent, anarchist, telescope, ufo, independent film, cigarette smoking, african american, writer, cafe", "tags_pipe": "|moon|philosophy|burglar|texas|dream|atomic bomb|tent|anarchist|telescope|ufo|independent film|cigarette smoking|african american|writer|cafe|", "overview": "Presents a day in the life in Austin, Texas among its social outcasts and misfits, predominantly the twenty-something set, using a series of linear vignettes. These characters, who in some manner just don't fit into the establishment norms, move seamlessly from one scene to the next, randomly coming and going into one another's lives.", "text_for_embedding": "Slacker (1990). Genres: Comedy. Presents a day in the life in Austin, Texas among its social outcasts and misfits, predominantly the twenty-something set, using a series of linear vignettes. These characters, who in some manner just don't fit into the establishment norms, move seamlessly from one scene to the next, randomly coming and going into one another's lives.. Tags: moon, philosophy, burglar, texas, dream, atomic bomb, tent, anarchist, telescope, ufo, independent film, cigarette smoking, african american, writer, cafe"} +{"id": "366967", "title": "Dutch Kills", "year": 2015, "duration_min": 90, "rating": 0.0, "genres": "Thriller, Crime, Drama", "genres_pipe": "|Thriller|Crime|Drama|", "keywords": "", "tags_pipe": "", "overview": "A desperate ex-con is forced to gather his old crew for one last job to pay off his sister's debt to a dangerous local criminal.", "text_for_embedding": "Dutch Kills (2015). Genres: Thriller, Crime, Drama. A desperate ex-con is forced to gather his old crew for one last job to pay off his sister's debt to a dangerous local criminal.. Tags: "} +{"id": "255266", "title": "Dry Spell", "year": 2013, "duration_min": 90, "rating": 6.0, "genres": "Comedy, Romance", "genres_pipe": "|Comedy|Romance|", "keywords": "dating, divorce, sex scene, sex comedy, anti romantic comedy", "tags_pipe": "|dating|divorce|sex scene|sex comedy|anti romantic comedy|", "overview": "Sasha tries to get her soon-to-be ex husband Kyle laid so she can move on with her sex life guilt-free.", "text_for_embedding": "Dry Spell (2013). Genres: Comedy, Romance. Sasha tries to get her soon-to-be ex husband Kyle laid so she can move on with her sex life guilt-free.. Tags: dating, divorce, sex scene, sex comedy, anti romantic comedy"} +{"id": "17345", "title": "Flywheel", "year": 2003, "duration_min": 120, "rating": 6.8, "genres": "Drama, Family", "genres_pipe": "|Drama|Family|", "keywords": "christianity, father son relationship, georgia, ark of the covenant, minister, christian film, repentance", "tags_pipe": "|christianity|father son relationship|georgia|ark of the covenant|minister|christian film|repentance|", "overview": "Jay Austin wants to sell you a used car, but watch out! Many victims have fallen prey to his smiling face and hasty promises. Austin does everything his way until his dishonesty and manipulation are exposed. Like many men, he becomes disgusted by the masks he wears and the lies he tells. In every man's life, there can be a turning point. When Jay makes his turn, he never looks back.", "text_for_embedding": "Flywheel (2003). Genres: Drama, Family. Jay Austin wants to sell you a used car, but watch out! Many victims have fallen prey to his smiling face and hasty promises. Austin does everything his way until his dishonesty and manipulation are exposed. Like many men, he becomes disgusted by the masks he wears and the lies he tells. In every man's life, there can be a turning point. When Jay makes his turn, he never looks back.. Tags: christianity, father son relationship, georgia, ark of the covenant, minister, christian film, repentance"} +{"id": "226458", "title": "Backmask", "year": 2015, "duration_min": 91, "rating": 4.7, "genres": "Thriller, Horror", "genres_pipe": "|Thriller|Horror|", "keywords": "possession", "tags_pipe": "|possession|", "overview": "During an all-night, drug-fueled party at an abandoned asylum known for the horrific treatment of its patients, a group of ordinary teens decide to experiment with the occult, mysteriously leading to a violent possession. In an effort to find help, the group rushes to escape, only to find themselves locked inside with no means of communication. Tempers flare, trusts are broken and in attempt to save one of their friends possessed by the demon, the amateurs try to perform an exorcism. Instead of solving the problem, and unbeknownst to them, they unleash an even more powerful and vengeful spirit, one with a distinct motive and which wants them all dead. The teen's only chance of survival is to uncover the asylum's deep mysteries and find a way out before it's too late.", "text_for_embedding": "Backmask (2015). Genres: Thriller, Horror. During an all-night, drug-fueled party at an abandoned asylum known for the horrific treatment of its patients, a group of ordinary teens decide to experiment with the occult, mysteriously leading to a violent possession. In an effort to find help, the group rushes to escape, only to find themselves locked inside with no means of communication. Tempers flare, trusts are broken and in attempt to save one of their friends possessed by the demon, the amateurs try to perform an exorcism. Instead of solving the problem, and unbeknownst to them, they unleash an even more powerful and vengeful spirit, one with a distinct motive and which wants them all dead. The teen's only chance of survival is to uncover the asylum's deep mysteries and find a way out before it's too late.. Tags: possession"} +{"id": "24055", "title": "The Puffy Chair", "year": 2005, "duration_min": 85, "rating": 6.2, "genres": "Drama, Comedy, Romance", "genres_pipe": "|Drama|Comedy|Romance|", "keywords": "mumblecore", "tags_pipe": "|mumblecore|", "overview": "Josh's life is pretty much in the toilet. He's a failed NYC indie rocker, and a failing booking agent. But he finds the potential of a small victory in a really bad idea. He decides to purchase a 1985 Lazy Boy on eBay, just like the one his dad had when Josh was a kid. He'll drive cross-country for the chair, staying with Emily at his brother's house on the way, and deliver it to his father as a surprise birthday gift. But when Rhett ends up coming along for the ride, it's three people and a giant purple puffy chair in a too-small van... and one of them has to go before the trip's end.", "text_for_embedding": "The Puffy Chair (2005). Genres: Drama, Comedy, Romance. Josh's life is pretty much in the toilet. He's a failed NYC indie rocker, and a failing booking agent. But he finds the potential of a small victory in a really bad idea. He decides to purchase a 1985 Lazy Boy on eBay, just like the one his dad had when Josh was a kid. He'll drive cross-country for the chair, staying with Emily at his brother's house on the way, and deliver it to his father as a surprise birthday gift. But when Rhett ends up coming along for the ride, it's three people and a giant purple puffy chair in a too-small van... and one of them has to go before the trip's end.. Tags: mumblecore"} +{"id": "287625", "title": "Stories of Our Lives", "year": 2014, "duration_min": 60, "rating": 0.0, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "", "tags_pipe": "", "overview": "Created by the members of a Nairobi-based arts collective — who have removed their names from the film for fear of reprisal — this anthology film that dramatizes true-life stories from Kenya’s oppressed LGBTQ community is both a labour of love and a bold act of militancy.", "text_for_embedding": "Stories of Our Lives (2014). Genres: Drama. Created by the members of a Nairobi-based arts collective — who have removed their names from the film for fear of reprisal — this anthology film that dramatizes true-life stories from Kenya’s oppressed LGBTQ community is both a labour of love and a bold act of militancy.. Tags: "} +{"id": "44990", "title": "Breaking Upwards", "year": 2009, "duration_min": 88, "rating": 5.6, "genres": "Comedy, Romance", "genres_pipe": "|Comedy|Romance|", "keywords": "independent film", "tags_pipe": "|independent film|", "overview": "'Breaking Upwards' explores a young, real-life New York couple who, four years in and battling codependency, decide to intricately strategize their own break up. Based on an actual experiment devised by director/actor Daryl Wein and actress Zoe Lister-Jones, the film loosely interprets a year in their lives exploring alternatives to monogamy, and the madness that ensues. An uncensored look at young love, lust, and the pangs of codependency, 'Breaking Upwards' follows its characters as they navigate each others' emotions across the city they love. It begs the question: is it ever possible to grow apart together?", "text_for_embedding": "Breaking Upwards (2009). Genres: Comedy, Romance. 'Breaking Upwards' explores a young, real-life New York couple who, four years in and battling codependency, decide to intricately strategize their own break up. Based on an actual experiment devised by director/actor Daryl Wein and actress Zoe Lister-Jones, the film loosely interprets a year in their lives exploring alternatives to monogamy, and the madness that ensues. An uncensored look at young love, lust, and the pangs of codependency, 'Breaking Upwards' follows its characters as they navigate each others' emotions across the city they love. It begs the question: is it ever possible to grow apart together?. Tags: independent film"} +{"id": "86304", "title": "All Superheroes Must Die", "year": 2011, "duration_min": 78, "rating": 4.2, "genres": "Science Fiction, Thriller", "genres_pipe": "|Science Fiction|Thriller|", "keywords": "superhero", "tags_pipe": "|superhero|", "overview": "Masked vigilantes Charge (Jason Trost), Cutthroat (Lucas Till), The Wall (Lee Valmassy), and Shadow (Sophie Merkley) are rendered powerless by their archenemy (James Remar) and are forced to complete a series of deadly tasks in order to save the lives of more than 100 innocent civilians. Should they fail or refuse to cooperate, the entire town will be destroyed. ~ Jason Buchanan, Rovi", "text_for_embedding": "All Superheroes Must Die (2011). Genres: Science Fiction, Thriller. Masked vigilantes Charge (Jason Trost), Cutthroat (Lucas Till), The Wall (Lee Valmassy), and Shadow (Sophie Merkley) are rendered powerless by their archenemy (James Remar) and are forced to complete a series of deadly tasks in order to save the lives of more than 100 innocent civilians. Should they fail or refuse to cooperate, the entire town will be destroyed. ~ Jason Buchanan, Rovi. Tags: superhero"} +{"id": "692", "title": "Pink Flamingos", "year": 1972, "duration_min": 93, "rating": 6.2, "genres": "Horror, Comedy, Crime", "genres_pipe": "|Horror|Comedy|Crime|", "keywords": "gay, trailer park, pop culture, drug dealer, heroin, fetishism, spanner, excrements , disgust, dog dirt, van, independent film, adult humor, unsimulated sex, cult classic", "tags_pipe": "|gay|trailer park|pop culture|drug dealer|heroin|fetishism|spanner|excrements |disgust|dog dirt|van|independent film|adult humor|unsimulated sex|cult classic|", "overview": "Notorious Baltimore criminal and underground figure Divine goes up against Connie & Raymond Marble, a sleazy married couple who make a passionate attempt to humiliate her and seize her tabloid-given title as \"The Filthiest Person Alive\".", "text_for_embedding": "Pink Flamingos (1972). Genres: Horror, Comedy, Crime. Notorious Baltimore criminal and underground figure Divine goes up against Connie & Raymond Marble, a sleazy married couple who make a passionate attempt to humiliate her and seize her tabloid-given title as \"The Filthiest Person Alive\".. Tags: gay, trailer park, pop culture, drug dealer, heroin, fetishism, spanner, excrements , disgust, dog dirt, van, independent film, adult humor, unsimulated sex, cult classic"} +{"id": "39851", "title": "Clean", "year": 2004, "duration_min": 111, "rating": 6.7, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "addiction, recovering drug addict, estranged son", "tags_pipe": "|addiction|recovering drug addict|estranged son|", "overview": "After losing her husband to a heroin overdose, Emily Wang fights to overcome her own addictions and to be reconciled with her estranged son.", "text_for_embedding": "Clean (2004). Genres: Drama. After losing her husband to a heroin overdose, Emily Wang fights to overcome her own addictions and to be reconciled with her estranged son.. Tags: addiction, recovering drug addict, estranged son"} +{"id": "13898", "title": "The Circle", "year": 2000, "duration_min": 90, "rating": 6.6, "genres": "Drama, Foreign", "genres_pipe": "|Drama|Foreign|", "keywords": "", "tags_pipe": "", "overview": "Various women struggle to function in the oppressively sexist society of contemporary Iran.", "text_for_embedding": "The Circle (2000). Genres: Drama, Foreign. Various women struggle to function in the oppressively sexist society of contemporary Iran.. Tags: "} +{"id": "157185", "title": "Tin Can Man", "year": 2007, "duration_min": 84, "rating": 2.0, "genres": "Horror", "genres_pipe": "|Horror|", "keywords": "home invasion", "tags_pipe": "|home invasion|", "overview": "Recently dumped by his girlfirend for another man, working in a job he hates, things could be better for Peter. One night, while he is alone in his apartment, there is a knock on the door. His life will never be the same again.", "text_for_embedding": "Tin Can Man (2007). Genres: Horror. Recently dumped by his girlfirend for another man, working in a job he hates, things could be better for Peter. One night, while he is alone in his apartment, there is a knock on the door. His life will never be the same again.. Tags: home invasion"} +{"id": "36095", "title": "Cure", "year": 1997, "duration_min": 111, "rating": 7.4, "genres": "Crime, Horror, Mystery, Thriller", "genres_pipe": "|Crime|Horror|Mystery|Thriller|", "keywords": "japan, prostitute, hotel, based on novel, hallucination, interview, investigation, murder, junkyard, interrogation, stranger, psychosis, record player, mental hospital, neo-noir", "tags_pipe": "|japan|prostitute|hotel|based on novel|hallucination|interview|investigation|murder|junkyard|interrogation|stranger|psychosis|record player|mental hospital|neo-noir|", "overview": "A wave of gruesome murders is sweeping Tokyo. The only connection is a bloody X carved into the neck of each of the victims. In each case, the murderer is found near the victim and remembers nothing of the crime. Detective Takabe and psychologist Sakuma are called in to figure out the connection, but their investigation goes nowhere...", "text_for_embedding": "Cure (1997). Genres: Crime, Horror, Mystery, Thriller. A wave of gruesome murders is sweeping Tokyo. The only connection is a bloody X carved into the neck of each of the victims. In each case, the murderer is found near the victim and remembers nothing of the crime. Detective Takabe and psychologist Sakuma are called in to figure out the connection, but their investigation goes nowhere.... Tags: japan, prostitute, hotel, based on novel, hallucination, interview, investigation, murder, junkyard, interrogation, stranger, psychosis, record player, mental hospital, neo-noir"} +{"id": "182291", "title": "On The Downlow", "year": 2004, "duration_min": 90, "rating": 6.0, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "confession, hazing, gang member, latino, lgbt, catholic priest, shakespeare's romeo and juliet, latino lgbt, gang initiation, gunplay", "tags_pipe": "|confession|hazing|gang member|latino|lgbt|catholic priest|shakespeare's romeo and juliet|latino lgbt|gang initiation|gunplay|", "overview": "Isaac and Angel are two young Latinos involved in a south side Chicago gang. They have a secret in a world where secrets are forbidden.", "text_for_embedding": "On The Downlow (2004). Genres: Drama. Isaac and Angel are two young Latinos involved in a south side Chicago gang. They have a secret in a world where secrets are forbidden.. Tags: confession, hazing, gang member, latino, lgbt, catholic priest, shakespeare's romeo and juliet, latino lgbt, gang initiation, gunplay"} +{"id": "286939", "title": "Sanctuary: Quite a Conundrum", "year": 2012, "duration_min": 82, "rating": 0.0, "genres": "Thriller, Horror, Comedy", "genres_pipe": "|Thriller|Horror|Comedy|", "keywords": "", "tags_pipe": "", "overview": "It should have been just a normal day of sex, fun, alcohol, hormones and debauchery for Tabitha and Mimi, two over-privileged twenty-somethings. But that so-called normalcy gets tossed out the window when a devastating event occurs at a pool party.", "text_for_embedding": "Sanctuary: Quite a Conundrum (2012). Genres: Thriller, Horror, Comedy. It should have been just a normal day of sex, fun, alcohol, hormones and debauchery for Tabitha and Mimi, two over-privileged twenty-somethings. But that so-called normalcy gets tossed out the window when a devastating event occurs at a pool party.. Tags: "} +{"id": "124606", "title": "Bang", "year": 1995, "duration_min": 98, "rating": 6.0, "genres": "Drama", "genres_pipe": "|Drama|", "keywords": "gang, audition, police fake, homeless, actress", "tags_pipe": "|gang|audition|police fake|homeless|actress|", "overview": "A young woman in L.A. is having a bad day: she's evicted, an audition ends with a producer furious she won't trade sex for the part, and a policeman nabs her for something she didn't do, demanding fellatio to release her. She snaps, grabs his gun, takes his uniform, and leaves him cuffed to a tree where he's soon having a defenseless chat with a homeless man. She takes off on the cop's motorcycle and, for an afternoon, experiences a cop's life. She talks a young man out of suicide and then is plunged into violence after a friendly encounter with two \"vatos.\" She is torn between self-protection and others' expectations. Is there any resolution for her torrent of feelings?", "text_for_embedding": "Bang (1995). Genres: Drama. A young woman in L.A. is having a bad day: she's evicted, an audition ends with a producer furious she won't trade sex for the part, and a policeman nabs her for something she didn't do, demanding fellatio to release her. She snaps, grabs his gun, takes his uniform, and leaves him cuffed to a tree where he's soon having a defenseless chat with a homeless man. She takes off on the cop's motorcycle and, for an afternoon, experiences a cop's life. She talks a young man out of suicide and then is plunged into violence after a friendly encounter with two \"vatos.\" She is torn between self-protection and others' expectations. Is there any resolution for her torrent of feelings?. Tags: gang, audition, police fake, homeless, actress"} +{"id": "14337", "title": "Primer", "year": 2004, "duration_min": 77, "rating": 6.9, "genres": "Science Fiction, Drama, Thriller", "genres_pipe": "|Science Fiction|Drama|Thriller|", "keywords": "distrust, garage, identity crisis, time travel, time machine, mathematics, independent film, paradox, mechanical engineering", "tags_pipe": "|distrust|garage|identity crisis|time travel|time machine|mathematics|independent film|paradox|mechanical engineering|", "overview": "Friends/fledgling entrepreneurs invent a device in their garage that reduces the apparent mass of any object placed inside it, but they accidentally discover that it has some highly unexpected capabilities -- ones that could enable them to do and to have seemingly anything they want. Taking advantage of this unique opportunity is the first challenge they face. Dealing with the consequences is the next.", "text_for_embedding": "Primer (2004). Genres: Science Fiction, Drama, Thriller. Friends/fledgling entrepreneurs invent a device in their garage that reduces the apparent mass of any object placed inside it, but they accidentally discover that it has some highly unexpected capabilities -- ones that could enable them to do and to have seemingly anything they want. Taking advantage of this unique opportunity is the first challenge they face. Dealing with the consequences is the next.. Tags: distrust, garage, identity crisis, time travel, time machine, mathematics, independent film, paradox, mechanical engineering"} +{"id": "67238", "title": "Cavite", "year": 2005, "duration_min": 80, "rating": 7.5, "genres": "Foreign, Thriller", "genres_pipe": "|Foreign|Thriller|", "keywords": "", "tags_pipe": "", "overview": "Adam, a security guard, travels from California to the Philippines, his native land, for his father's funeral. He arrives in Manila. As he waits, a phone rings in his backpack; he answers it, and a male voice tells him that his mother and sister are captives and will be killed if Adam doesn't cooperate. Over the next hour, the voice sends Adam by bus, taxi, motorized tricycle, and on foot through an urban landscape of busy streets, cramped apartments, a fetid squatters' camp, a bank, a cockfighting arena, and a church. Adam's conversations with the voice cover murder, Islam, jihad, rebellion in Mindanao, and his family. What is it Adam will be commanded to do?", "text_for_embedding": "Cavite (2005). Genres: Foreign, Thriller. Adam, a security guard, travels from California to the Philippines, his native land, for his father's funeral. He arrives in Manila. As he waits, a phone rings in his backpack; he answers it, and a male voice tells him that his mother and sister are captives and will be killed if Adam doesn't cooperate. Over the next hour, the voice sends Adam by bus, taxi, motorized tricycle, and on foot through an urban landscape of busy streets, cramped apartments, a fetid squatters' camp, a bank, a cockfighting arena, and a church. Adam's conversations with the voice cover murder, Islam, jihad, rebellion in Mindanao, and his family. What is it Adam will be commanded to do?. Tags: "} +{"id": "9367", "title": "El Mariachi", "year": 1992, "duration_min": 81, "rating": 6.6, "genres": "Action, Crime, Thriller", "genres_pipe": "|Action|Crime|Thriller|", "keywords": "united states–mexico barrier, legs, arms, paper knife, guitar case", "tags_pipe": "|united states–mexico barrier|legs|arms|paper knife|guitar case|", "overview": "El Mariachi just wants to play his guitar and carry on the family tradition. Unfortunately, the town he tries to find work in has another visitor...a killer who carries his guns in a guitar case. The drug lord and his henchmen mistake El Mariachi for the killer, Azul, and chase him around town trying to kill him and get his guitar case.", "text_for_embedding": "El Mariachi (1992). Genres: Action, Crime, Thriller. El Mariachi just wants to play his guitar and carry on the family tradition. Unfortunately, the town he tries to find work in has another visitor...a killer who carries his guns in a guitar case. The drug lord and his henchmen mistake El Mariachi for the killer, Azul, and chase him around town trying to kill him and get his guitar case.. Tags: united states–mexico barrier, legs, arms, paper knife, guitar case"} +{"id": "72766", "title": "Newlyweds", "year": 2011, "duration_min": 85, "rating": 5.9, "genres": "Comedy, Romance", "genres_pipe": "|Comedy|Romance|", "keywords": "", "tags_pipe": "", "overview": "A newlywed couple's honeymoon is upended by the arrivals of their respective sisters.", "text_for_embedding": "Newlyweds (2011). Genres: Comedy, Romance. A newlywed couple's honeymoon is upended by the arrivals of their respective sisters.. Tags: "} +{"id": "231617", "title": "Signed, Sealed, Delivered", "year": 2013, "duration_min": 120, "rating": 7.0, "genres": "Comedy, Drama, Romance, TV Movie", "genres_pipe": "|Comedy|Drama|Romance|TV Movie|", "keywords": "date, love at first sight, narration, investigation, team, postal worker", "tags_pipe": "|date|love at first sight|narration|investigation|team|postal worker|", "overview": "\"Signed, Sealed, Delivered\" introduces a dedicated quartet of civil servants in the Dead Letter Office of the U.S. Postal System who transform themselves into an elite team of lost-mail detectives. Their determination to deliver the seemingly undeliverable takes them out of the post office into an unpredictable world where letters and packages from the past save lives, solve crimes, reunite old loves, and change futures by arriving late, but always miraculously on time.", "text_for_embedding": "Signed, Sealed, Delivered (2013). Genres: Comedy, Drama, Romance, TV Movie. \"Signed, Sealed, Delivered\" introduces a dedicated quartet of civil servants in the Dead Letter Office of the U.S. Postal System who transform themselves into an elite team of lost-mail detectives. Their determination to deliver the seemingly undeliverable takes them out of the post office into an unpredictable world where letters and packages from the past save lives, solve crimes, reunite old loves, and change futures by arriving late, but always miraculously on time.. Tags: date, love at first sight, narration, investigation, team, postal worker"} +{"id": "126186", "title": "Shanghai Calling", "year": 2012, "duration_min": 98, "rating": 5.7, "genres": "", "genres_pipe": "", "keywords": "", "tags_pipe": "", "overview": "When ambitious New York attorney Sam is sent to Shanghai on assignment, he immediately stumbles into a legal mess that could end his career. With the help of a beautiful relocation specialist, a well-connected old-timer, a clever journalist, and a street-smart legal assistant, Sam might just save his job, find romance, and learn to appreciate the beauty and wonders of Shanghai. Written by Anonymous (IMDB.com).", "text_for_embedding": "Shanghai Calling (2012). Genres: . When ambitious New York attorney Sam is sent to Shanghai on assignment, he immediately stumbles into a legal mess that could end his career. With the help of a beautiful relocation specialist, a well-connected old-timer, a clever journalist, and a street-smart legal assistant, Sam might just save his job, find romance, and learn to appreciate the beauty and wonders of Shanghai. Written by Anonymous (IMDB.com).. Tags: "} +{"id": "25975", "title": "My Date with Drew", "year": 2005, "duration_min": 90, "rating": 6.3, "genres": "Documentary", "genres_pipe": "|Documentary|", "keywords": "obsession, camcorder, crush, dream girl", "tags_pipe": "|obsession|camcorder|crush|dream girl|", "overview": "Ever since the second grade when he first saw her in E.T. The Extraterrestrial, Brian Herzlinger has had a crush on Drew Barrymore. Now, 20 years later he's decided to try to fulfill his lifelong dream by asking her for a date. There's one small problem: She's Drew Barrymore and he's, well, Brian Herzlinger, a broke 27-year-old aspiring filmmaker from New Jersey.", "text_for_embedding": "My Date with Drew (2005). Genres: Documentary. Ever since the second grade when he first saw her in E.T. The Extraterrestrial, Brian Herzlinger has had a crush on Drew Barrymore. Now, 20 years later he's decided to try to fulfill his lifelong dream by asking her for a date. There's one small problem: She's Drew Barrymore and he's, well, Brian Herzlinger, a broke 27-year-old aspiring filmmaker from New Jersey.. Tags: obsession, camcorder, crush, dream girl"} diff --git a/data/test_queries.jsonl b/data/test_queries.jsonl new file mode 100644 index 0000000..60db72d --- /dev/null +++ b/data/test_queries.jsonl @@ -0,0 +1,30 @@ +{"query": "Хочу что-то как Интерстеллар", "expected_genres": ["Science Fiction", "Drama"], "expected_type": "recommendation"} +{"query": "Страшный фильм до 100 минут", "expected_genres": ["Horror"], "expected_type": "recommendation"} +{"query": "Романтическая комедия для вечера", "expected_genres": ["Romance", "Comedy"], "expected_type": "recommendation"} +{"query": "Эпический фэнтези фильм", "expected_genres": ["Fantasy", "Adventure"], "expected_type": "recommendation"} +{"query": "Триллер с неожиданной концовкой", "expected_genres": ["Thriller"], "expected_type": "recommendation"} +{"query": "Анимационный фильм для всей семьи", "expected_genres": ["Animation", "Family"], "expected_type": "recommendation"} +{"query": "Военный фильм про вторую мировую", "expected_genres": ["War", "Drama"], "expected_type": "recommendation"} +{"query": "Документальный фильм о природе", "expected_genres": ["Documentary"], "expected_type": "recommendation"} +{"query": "Криминальная драма как Крёстный отец", "expected_genres": ["Crime", "Drama"], "expected_type": "recommendation"} +{"query": "Фильм про супергероев", "expected_genres": ["Action", "Science Fiction"], "expected_type": "recommendation"} +{"query": "Лёгкая комедия чтобы посмеяться", "expected_genres": ["Comedy"], "expected_type": "recommendation"} +{"query": "Фильм о путешествии во времени", "expected_genres": ["Science Fiction"], "expected_type": "recommendation"} +{"query": "Мюзикл с хорошими песнями", "expected_genres": ["Music"], "expected_type": "recommendation"} +{"query": "Психологический триллер", "expected_genres": ["Thriller", "Drama"], "expected_type": "recommendation"} +{"query": "Фильм-катастрофа", "expected_genres": ["Action", "Thriller"], "expected_type": "recommendation"} +{"query": "Детективный фильм с загадкой", "expected_genres": ["Mystery", "Crime"], "expected_type": "recommendation"} +{"query": "Спортивная драма", "expected_genres": ["Drama"], "expected_type": "recommendation"} +{"query": "Фильм про космос и инопланетян", "expected_genres": ["Science Fiction"], "expected_type": "recommendation"} +{"query": "Вестерн", "expected_genres": ["Western"], "expected_type": "recommendation"} +{"query": "Фильм нуар", "expected_genres": ["Crime", "Thriller"], "expected_type": "recommendation"} +{"query": "Биографический фильм о музыканте", "expected_genres": ["Drama", "Music"], "expected_type": "recommendation"} +{"query": "Хороший фильм с рейтингом выше 8", "expected_genres": [], "expected_type": "recommendation"} +{"query": "Новый фильм после 2015 года", "expected_genres": [], "expected_type": "recommendation"} +{"query": "Короткий фильм до 90 минут", "expected_genres": [], "expected_type": "recommendation"} +{"query": "Какая сегодня погода?", "expected_genres": [], "expected_type": "off_topic"} +{"query": "Сколько будет 2+2?", "expected_genres": [], "expected_type": "off_topic"} +{"query": "Расскажи анекдот", "expected_genres": [], "expected_type": "off_topic"} +{"query": "Посоветуй что-то весёлое и доброе", "expected_genres": ["Comedy", "Family"], "expected_type": "recommendation"} +{"query": "Мрачный фильм с глубоким смыслом", "expected_genres": ["Drama"], "expected_type": "recommendation"} +{"query": "Приключенческий фильм для подростков", "expected_genres": ["Adventure"], "expected_type": "recommendation"} diff --git a/prompts.yaml b/prompts.yaml new file mode 100644 index 0000000..47a664d --- /dev/null +++ b/prompts.yaml @@ -0,0 +1,60 @@ +query_analyzer: + version: "1.0" + system: | + You are a movie recommendation query analyzer. Your task is to parse user queries (which may be in Russian or English) into a structured JSON format for a movie recommendation system. + + IMPORTANT: The "semantic_query" field MUST be in English, as the movie database uses English embeddings. + + If the query is NOT about movies or movie recommendations (e.g., weather, math, general questions), respond with: + {"off_topic": true} + + Otherwise, respond with a JSON object: + { + "genre": "genre name or null", + "mood": "mood description or null", + "max_duration": integer or null (in minutes), + "min_year": integer or null, + "min_rating": float or null, + "semantic_query": "English search query for vector search" + } + + Only output valid JSON, no explanations. + + user_template: | + User query: {user_query} + Conversation context (last messages): {history} + +generation: + version: "1.0" + system: | + You are CineMatch, a friendly movie recommendation assistant. You recommend movies based on the provided search results. + + RULES: + 1. ONLY recommend movies from the provided list. NEVER invent or hallucinate movies. + 2. Respond in the same language as the user's query. + 3. For each movie, explain briefly WHY it matches the user's request. + 4. If the results don't match well, say so honestly. + 5. Keep responses concise and conversational. + + Respond with a JSON object: + { + "movies": [ + { + "title": "Movie Title", + "year": 2020, + "rating": 7.5, + "duration_min": 120, + "reason": "Brief explanation why this matches" + } + ], + "message": "Conversational intro/outro message in user's language" + } + + user_template: | + User query: {user_query} + + Retrieved movies: + {movies_json} + + Conversation history: + {history} diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 0000000..bfb7d6c --- /dev/null +++ b/requirements.txt @@ -0,0 +1,9 @@ +streamlit>=1.30.0 +chromadb>=0.4.22 +sentence-transformers>=2.3.0 +openai>=1.0.0 +kagglehub>=0.2.0 +pandas>=2.1.0 +pyyaml>=6.0 +python-dotenv>=1.0.0 +scikit-learn>=1.3.0 diff --git a/scripts/build_index.py b/scripts/build_index.py new file mode 100644 index 0000000..0a96edb --- /dev/null +++ b/scripts/build_index.py @@ -0,0 +1,101 @@ +"""Build ChromaDB vector index from processed movies.jsonl.""" + +import json +import sys +from pathlib import Path + +import chromadb +from sentence_transformers import SentenceTransformer + +PROJECT_ROOT = Path(__file__).resolve().parent.parent +sys.path.insert(0, str(PROJECT_ROOT)) + +import yaml + +with open(PROJECT_ROOT / "config.yaml") as f: + config = yaml.safe_load(f) + +MOVIES_FILE = PROJECT_ROOT / config["data"]["movies_file"] +CHROMA_PATH = PROJECT_ROOT / config["chroma_db_path"] +COLLECTION_NAME = config["chroma_collection"] +EMBEDDING_MODEL = config["embedding_model"] + + +def load_movies(path: Path) -> list[dict]: + movies = [] + with open(path, encoding="utf-8") as f: + for line in f: + movies.append(json.loads(line)) + return movies + + +def build_index(): + print(f"Loading movies from {MOVIES_FILE}...") + movies = load_movies(MOVIES_FILE) + print(f"Loaded {len(movies)} movies") + + print(f"Loading embedding model: {EMBEDDING_MODEL}...") + model = SentenceTransformer(EMBEDDING_MODEL) + + texts = [m["text_for_embedding"] for m in movies] + print(f"Generating embeddings for {len(texts)} documents (batch_size=64)...") + embeddings = model.encode(texts, batch_size=64, show_progress_bar=True) + print(f"Embeddings shape: {embeddings.shape}") + + print(f"Creating ChromaDB at {CHROMA_PATH}...") + client = chromadb.PersistentClient(path=str(CHROMA_PATH)) + + try: + client.delete_collection(COLLECTION_NAME) + print(f"Deleted existing collection '{COLLECTION_NAME}'") + except Exception: + pass + + collection = client.create_collection( + name=COLLECTION_NAME, + metadata={"hnsw:space": "cosine"}, + ) + + batch_size = 500 + for i in range(0, len(movies), batch_size): + batch = movies[i : i + batch_size] + batch_embeddings = embeddings[i : i + batch_size].tolist() + + ids = [m["id"] for m in batch] + documents = [m["text_for_embedding"] for m in batch] + metadatas = [ + { + "title": m["title"], + "year": int(m["year"]), + "duration_min": int(m["duration_min"]), + "rating": float(m["rating"]), + "genres": m["genres_pipe"], + "tags": m["tags_pipe"], + "overview": m["overview"], + } + for m in batch + ] + + collection.add( + ids=ids, + embeddings=batch_embeddings, + documents=documents, + metadatas=metadatas, + ) + print(f" Added batch {i // batch_size + 1}: {len(batch)} documents") + + print(f"Total documents in collection: {collection.count()}") + + print("\nTest query: 'space exploration emotional drama'") + results = collection.query( + query_embeddings=model.encode(["space exploration emotional drama"]).tolist(), + n_results=5, + ) + for i, (doc_id, metadata) in enumerate(zip(results["ids"][0], results["metadatas"][0])): + print(f" {i + 1}. {metadata['title']} ({metadata['year']}) - rating: {metadata['rating']}") + + print("\nIndex built successfully!") + + +if __name__ == "__main__": + build_index() diff --git a/scripts/evaluate.py b/scripts/evaluate.py new file mode 100644 index 0000000..748fd2c --- /dev/null +++ b/scripts/evaluate.py @@ -0,0 +1,185 @@ +"""Evaluation script: measure RAG pipeline quality metrics.""" + +import json +import os +import sys +import time +from pathlib import Path + +from openai import OpenAI +from dotenv import load_dotenv +import yaml + +from src.llm_utils import llm_call_with_retry + +PROJECT_ROOT = Path(__file__).resolve().parent.parent +sys.path.insert(0, str(PROJECT_ROOT)) + +load_dotenv(PROJECT_ROOT / ".env") + +with open(PROJECT_ROOT / "config.yaml") as f: + config = yaml.safe_load(f) + +from src.rag import CineMatchRAG + +TEST_QUERIES_FILE = PROJECT_ROOT / "data" / "test_queries.jsonl" + + +def load_test_queries(path: Path) -> list[dict]: + queries = [] + with open(path, encoding="utf-8") as f: + for line in f: + if line.strip(): + queries.append(json.loads(line)) + return queries + + +def evaluate_genre_recall(result: dict, expected_genres: list[str]) -> float: + """Check if recommended movies match expected genres.""" + if not result.get("movies") or not expected_genres: + return 0.0 + hits = 0 + for movie in result["movies"]: + title = movie.get("title", "").lower() + if any(g.lower() in str(result).lower() for g in expected_genres): + hits += 1 + break + return 1.0 if hits > 0 else 0.0 + + +def evaluate_with_llm_judge(query: str, result: dict, client: OpenAI) -> float: + """Use LLM judge to score recommendation quality 1-5.""" + movies_str = json.dumps(result.get("movies", []), ensure_ascii=False, indent=2) + prompt = f"""Rate the quality of these movie recommendations on a scale of 1-5. + +User query: {query} +Recommendations: {movies_str} + +Criteria: +- Relevance to the query (genre, mood, theme) +- Diversity of recommendations +- Quality of explanations + +Respond with ONLY a single number 1-5.""" + + raw = llm_call_with_retry( + client, + config["llm_model"], + [{"role": "user", "content": prompt}], + fallback_models=config.get("fallback_models", []), + max_retries=config["generation"]["max_retries"], + backoff_base=config["generation"].get("backoff_base_seconds", 2), + ) + if raw is None: + print(" LLM judge: all models failed, defaulting to 3.0") + return 3.0 + + try: + score = float(raw.strip().split()[0]) + return min(max(score, 1.0), 5.0) + except (ValueError, IndexError) as e: + print(f" LLM judge parse error: {e}") + return 3.0 + + +def main(): + api_key = os.getenv("OPENROUTER_API_KEY") + if not api_key: + print("ERROR: OPENROUTER_API_KEY not set in .env") + sys.exit(1) + + if not TEST_QUERIES_FILE.exists(): + print(f"ERROR: {TEST_QUERIES_FILE} not found") + sys.exit(1) + + print("Initializing RAG pipeline...") + rag = CineMatchRAG(api_key) + + judge_client = OpenAI( + base_url=config["openrouter_base_url"], + api_key=api_key, + ) + + test_queries = load_test_queries(TEST_QUERIES_FILE) + print(f"Loaded {len(test_queries)} test queries\n") + + metrics = { + "recall_scores": [], + "latencies": [], + "llm_judge_scores": [], + "hallucination_count": 0, + "total": len(test_queries), + } + + for i, tq in enumerate(test_queries, 1): + query = tq["query"] + expected_genres = tq.get("expected_genres", []) + expected_type = tq.get("expected_type", "recommendation") + + print(f"[{i}/{len(test_queries)}] {query}") + + start = time.time() + try: + result = rag.query(query) + except Exception as e: + print(f" ERROR: {e}") + print() + time.sleep(1) + continue + latency = (time.time() - start) * 1000 + metrics["latencies"].append(latency) + + if result["type"] != expected_type: + if expected_type == "recommendation" and result["type"] == "no_results": + metrics["hallucination_count"] += 1 + print(f" MISS: expected recommendations, got no_results") + + if expected_genres and result["type"] == "recommendation": + recall = evaluate_genre_recall(result, expected_genres) + metrics["recall_scores"].append(recall) + print(f" Genre recall: {recall:.2f}") + + if result["type"] == "recommendation": + judge_score = evaluate_with_llm_judge(query, result, judge_client) + metrics["llm_judge_scores"].append(judge_score) + print(f" LLM judge: {judge_score:.1f}/5") + + print(f" Latency: {latency:.0f}ms | Type: {result['type']}") + print() + time.sleep(1) + + print("=" * 60) + print("EVALUATION RESULTS") + print("=" * 60) + + avg_recall = ( + sum(metrics["recall_scores"]) / len(metrics["recall_scores"]) + if metrics["recall_scores"] else 0 + ) + avg_latency = ( + sum(metrics["latencies"]) / len(metrics["latencies"]) + if metrics["latencies"] else 0 + ) + avg_judge = ( + sum(metrics["llm_judge_scores"]) / len(metrics["llm_judge_scores"]) + if metrics["llm_judge_scores"] else 0 + ) + hallucination_rate = metrics["hallucination_count"] / metrics["total"] * 100 + + print(f"Recall@5 (genre): {avg_recall:.2f} (target: >= 0.75)") + print(f"Avg Latency: {avg_latency:.0f}ms (target: <= 10000ms)") + print(f"LLM Judge: {avg_judge:.1f}/5 (target: >= 4.0)") + print(f"Hallucination rate: {hallucination_rate:.1f}% (target: < 5%)") + print() + + passed = all([ + avg_recall >= 0.75, + avg_latency <= 10000, + avg_judge >= 4.0, + hallucination_rate < 5, + ]) + print(f"Overall: {'PASS ✓' if passed else 'FAIL ✗'}") + + +if __name__ == "__main__": + main() diff --git a/scripts/ingest.py b/scripts/ingest.py new file mode 100644 index 0000000..6c0ead9 --- /dev/null +++ b/scripts/ingest.py @@ -0,0 +1,119 @@ +"""Download TMDB 5000 dataset and process into movies.jsonl.""" + +import json +import sys +from pathlib import Path + +import kagglehub +import pandas as pd + +PROJECT_ROOT = Path(__file__).resolve().parent.parent +sys.path.insert(0, str(PROJECT_ROOT)) + +RAW_DIR = PROJECT_ROOT / "data" / "raw" +PROCESSED_DIR = PROJECT_ROOT / "data" / "processed" +OUTPUT_FILE = PROCESSED_DIR / "movies.jsonl" + + +def download_dataset() -> Path: + """Download TMDB 5000 dataset via kagglehub.""" + print("Downloading TMDB 5000 dataset...") + path = kagglehub.dataset_download("tmdb/tmdb-movie-metadata") + print(f"Dataset downloaded to: {path}") + return Path(path) + + +def parse_json_column(value: str) -> list[str]: + """Parse JSON string column into list of name strings.""" + if pd.isna(value): + return [] + try: + items = json.loads(value) + return [item["name"] for item in items if "name" in item] + except (json.JSONDecodeError, TypeError): + return [] + + +def process_movies(dataset_path: Path) -> pd.DataFrame: + """Load and process TMDB movies CSV.""" + csv_path = dataset_path / "tmdb_5000_movies.csv" + if not csv_path.exists(): + candidates = list(dataset_path.rglob("tmdb_5000_movies.csv")) + if not candidates: + raise FileNotFoundError(f"tmdb_5000_movies.csv not found in {dataset_path}") + csv_path = candidates[0] + + print(f"Loading {csv_path}...") + df = pd.read_csv(csv_path) + print(f"Loaded {len(df)} movies") + + df["genres_list"] = df["genres"].apply(parse_json_column) + df["keywords_list"] = df["keywords"].apply(parse_json_column) + + df["year"] = pd.to_datetime(df["release_date"], errors="coerce").dt.year + df["year"] = df["year"].fillna(0).astype(int) + + df["duration_min"] = df["runtime"] + df["rating"] = df["vote_average"] + + before = len(df) + df = df.dropna(subset=["overview", "runtime"]) + df = df[df["overview"].str.strip().astype(bool)] + df = df[df["runtime"] > 0] + print(f"Filtered: {before} → {len(df)} movies (removed {before - len(df)} without overview/runtime)") + + df["genres_str"] = df["genres_list"].apply(lambda g: ", ".join(g)) + df["keywords_str"] = df["keywords_list"].apply(lambda k: ", ".join(k[:15])) + + df["text_for_embedding"] = df.apply( + lambda r: ( + f"{r['title']} ({int(r['year'])}). " + f"Genres: {r['genres_str']}. " + f"{r['overview']}. " + f"Tags: {r['keywords_str']}" + ), + axis=1, + ) + + df["genres_pipe"] = df["genres_list"].apply(lambda g: "|" + "|".join(g) + "|" if g else "") + df["tags_pipe"] = df["keywords_list"].apply(lambda k: "|" + "|".join(k[:15]) + "|" if k else "") + + return df + + +def save_jsonl(df: pd.DataFrame, output_path: Path): + """Save processed movies to JSONL.""" + output_path.parent.mkdir(parents=True, exist_ok=True) + records = [] + for _, row in df.iterrows(): + record = { + "id": str(int(row["id"])), + "title": row["title"], + "year": int(row["year"]), + "duration_min": int(row["duration_min"]), + "rating": round(float(row["rating"]), 1), + "genres": row["genres_str"], + "genres_pipe": row["genres_pipe"], + "keywords": row["keywords_str"], + "tags_pipe": row["tags_pipe"], + "overview": row["overview"], + "text_for_embedding": row["text_for_embedding"], + } + records.append(record) + + with open(output_path, "w", encoding="utf-8") as f: + for record in records: + f.write(json.dumps(record, ensure_ascii=False) + "\n") + + print(f"Saved {len(records)} movies to {output_path}") + + +def main(): + dataset_path = download_dataset() + df = process_movies(dataset_path) + save_jsonl(df, OUTPUT_FILE) + print("Done!") + + +if __name__ == "__main__": + main() diff --git a/src/__init__.py b/src/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/src/app.py b/src/app.py new file mode 100644 index 0000000..32363b3 --- /dev/null +++ b/src/app.py @@ -0,0 +1,117 @@ +"""Streamlit UI for CineMatch movie recommendation system.""" + +import os +import sys +from pathlib import Path + +PROJECT_ROOT = Path(__file__).resolve().parent.parent +sys.path.insert(0, str(PROJECT_ROOT)) + +import streamlit as st +from dotenv import load_dotenv + +load_dotenv(PROJECT_ROOT / ".env") + +from src.rag import CineMatchRAG + +st.set_page_config(page_title="CineMatch", page_icon="🎬", layout="centered") + +st.title("🎬 CineMatch") +st.caption("Рекомендательная система фильмов на основе RAG") + + +@st.cache_resource +def get_rag(): + """Initialize RAG pipeline (cached).""" + api_key = os.getenv("OPENROUTER_API_KEY") + if not api_key: + st.error("OPENROUTER_API_KEY не найден. Создайте файл .env с ключом.") + st.stop() + return CineMatchRAG(api_key) + + +rag = get_rag() + +if "messages" not in st.session_state: + st.session_state.messages = [] +if "request_ids" not in st.session_state: + st.session_state.request_ids = {} + +for i, msg in enumerate(st.session_state.messages): + with st.chat_message(msg["role"]): + st.markdown(msg["content"]) + + if msg["role"] == "assistant" and i in st.session_state.request_ids: + req_id = st.session_state.request_ids[i] + col1, col2, _ = st.columns([1, 1, 8]) + with col1: + if st.button("👍", key=f"like_{i}"): + rag.save_feedback(req_id, "like") + st.toast("Спасибо за отзыв!") + with col2: + if st.button("👎", key=f"dislike_{i}"): + rag.save_feedback(req_id, "dislike") + st.toast("Спасибо за отзыв!") + +if user_input := st.chat_input("Опишите, какой фильм вы хотите посмотреть..."): + st.session_state.messages.append({"role": "user", "content": user_input}) + with st.chat_message("user"): + st.markdown(user_input) + + with st.chat_message("assistant"): + with st.spinner("Ищу фильмы..."): + history = [ + {"role": m["role"], "content": m["content"]} + for m in st.session_state.messages[:-1] + ] + try: + result = rag.query(user_input, history) + except Exception as e: + error_msg = "Произошла ошибка при обработке запроса. Попробуйте ещё раз через несколько секунд." + print(f"RAG query error: {e}") + st.error(error_msg) + st.session_state.messages.append({"role": "assistant", "content": error_msg}) + st.stop() + + if result["type"] == "off_topic": + response_text = result["message"] + elif result["type"] == "no_results": + response_text = result["message"] + else: + parts = [] + if result.get("message"): + parts.append(result["message"]) + parts.append("") + + for j, movie in enumerate(result.get("movies", []), 1): + title = movie.get("title", "Unknown") + year = movie.get("year", "") + rating = movie.get("rating", "") + duration = movie.get("duration_min", "") + reason = movie.get("reason", "") + + parts.append( + f"**{j}. {title}** ({year})\n" + f" ⭐ {rating} | ⏱ {duration} мин\n" + f" _{reason}_" + ) + parts.append("") + + response_text = "\n".join(parts) + + st.markdown(response_text) + + msg_idx = len(st.session_state.messages) + st.session_state.messages.append({"role": "assistant", "content": response_text}) + if result.get("request_id"): + st.session_state.request_ids[msg_idx] = result["request_id"] + + col1, col2, _ = st.columns([1, 1, 8]) + with col1: + if st.button("👍", key=f"like_{msg_idx}"): + rag.save_feedback(result["request_id"], "like") + st.toast("Спасибо за отзыв!") + with col2: + if st.button("👎", key=f"dislike_{msg_idx}"): + rag.save_feedback(result["request_id"], "dislike") + st.toast("Спасибо за отзыв!") diff --git a/src/hallucination.py b/src/hallucination.py new file mode 100644 index 0000000..1b19918 --- /dev/null +++ b/src/hallucination.py @@ -0,0 +1,32 @@ +"""Hallucination guard: check retrieval quality before calling LLM.""" + +from pathlib import Path + +import yaml + +PROJECT_ROOT = Path(__file__).resolve().parent.parent + +with open(PROJECT_ROOT / "config.yaml") as f: + config = yaml.safe_load(f) + + +SIMILARITY_THRESHOLD = config["retrieval"]["similarity_threshold"] + + +def check_retrieval_quality(candidates: list[dict]) -> tuple[bool, str]: + """Check if retrieval results are good enough to generate a response. + + Returns: + (is_ok, message): is_ok=True if quality sufficient, message for fallback. + """ + if not candidates: + return False, "По вашему запросу подходящих фильмов не найдено. Попробуйте переформулировать запрос." + + best_similarity = max(c.get("similarity", 0) for c in candidates) + if best_similarity < SIMILARITY_THRESHOLD: + return False, ( + "По вашему запросу подходящих фильмов не найдено. " + "Попробуйте описать желаемый фильм другими словами." + ) + + return True, "" diff --git a/src/llm_utils.py b/src/llm_utils.py new file mode 100644 index 0000000..51ff793 --- /dev/null +++ b/src/llm_utils.py @@ -0,0 +1,47 @@ +"""Shared LLM call helper with retry and fallback model support.""" + +import time + +import openai + + +def llm_call_with_retry( + client: openai.OpenAI, + model: str, + messages: list[dict], + fallback_models: list[str] | None = None, + max_retries: int = 2, + backoff_base: float = 2.0, +) -> str | None: + """Call LLM with exponential backoff retry and fallback models. + + Returns raw response text or None if all models/retries exhausted. + """ + models_to_try = [model] + (fallback_models or []) + + for current_model in models_to_try: + for attempt in range(max_retries + 1): + try: + response = client.chat.completions.create( + model=current_model, + messages=messages, + ) + content = response.choices[0].message.content if response.choices else None + if not content: + raise ValueError("Empty response from LLM") + return content + except (openai.RateLimitError, openai.APIConnectionError, openai.APIStatusError) as e: + print(f"LLM error ({current_model}, attempt {attempt + 1}/{max_retries + 1}): {e}") + if attempt < max_retries: + sleep_time = backoff_base ** (attempt + 1) + print(f" Retrying in {sleep_time:.0f}s...") + time.sleep(sleep_time) + else: + print(f" Exhausted retries for {current_model}, trying next model...") + break + except ValueError as e: + print(f"LLM error ({current_model}): {e}") + break + + print("All models exhausted.") + return None diff --git a/src/query_analyzer.py b/src/query_analyzer.py new file mode 100644 index 0000000..6a1491d --- /dev/null +++ b/src/query_analyzer.py @@ -0,0 +1,103 @@ +"""Query Analyzer: parse user queries into structured search parameters via OpenRouter.""" + +import json +import re +from pathlib import Path + +from openai import OpenAI +import yaml + +from src.llm_utils import llm_call_with_retry + +PROJECT_ROOT = Path(__file__).resolve().parent.parent + +with open(PROJECT_ROOT / "config.yaml") as f: + config = yaml.safe_load(f) + +with open(PROJECT_ROOT / "prompts.yaml") as f: + prompts = yaml.safe_load(f) + + +class QueryAnalyzer: + def __init__(self, api_key: str): + self.client = OpenAI( + base_url=config["openrouter_base_url"], + api_key=api_key, + ) + self.model = config["llm_model"] + self.fallback_models = config.get("fallback_models", []) + self.max_retries = config["query_analyzer"]["max_retries"] + self.backoff_base = config["query_analyzer"].get("backoff_base_seconds", 2) + self.system_prompt = prompts["query_analyzer"]["system"] + self.user_template = prompts["query_analyzer"]["user_template"] + + def _clean_json_response(self, text: str) -> str: + """Strip markdown code fences and extract JSON.""" + text = re.sub(r"```(?:json)?\s*", "", text) + text = re.sub(r"```", "", text) + text = text.strip() + match = re.search(r"\{.*\}", text, re.DOTALL) + if match: + return match.group(0) + return text + + def analyze(self, user_query: str, history: list[dict] | None = None) -> dict: + """Analyze user query and return structured search parameters.""" + history_str = "" + if history: + last_turns = history[-(config["generation"]["history_turns"] * 2):] + history_str = "\n".join( + f"{msg['role']}: {msg['content']}" for msg in last_turns + ) + + user_msg = self.user_template.format( + user_query=user_query, + history=history_str or "None", + ) + + messages = [ + {"role": "system", "content": self.system_prompt}, + {"role": "user", "content": user_msg}, + ] + + fallback = { + "genre": None, "mood": None, "max_duration": None, + "min_year": None, "min_rating": None, "semantic_query": user_query, + } + + for attempt in range(self.max_retries + 1): + raw = llm_call_with_retry( + self.client, self.model, messages, + fallback_models=self.fallback_models, + max_retries=self.max_retries, + backoff_base=self.backoff_base, + ) + if raw is None: + print("Query analyzer: all models failed, fallback to raw query") + return fallback + + try: + cleaned = self._clean_json_response(raw) + parsed = json.loads(cleaned) + + if "off_topic" in parsed: + return {"off_topic": True} + + if "semantic_query" not in parsed or not parsed["semantic_query"]: + parsed["semantic_query"] = user_query + + return { + "genre": parsed.get("genre"), + "mood": parsed.get("mood"), + "max_duration": parsed.get("max_duration"), + "min_year": parsed.get("min_year"), + "min_rating": parsed.get("min_rating"), + "semantic_query": parsed["semantic_query"], + } + + except (json.JSONDecodeError, KeyError) as e: + if attempt < self.max_retries: + print(f"Query analyzer JSON retry {attempt + 1}: {e}") + continue + print(f"Query analyzer fallback to raw query: {e}") + return fallback diff --git a/src/rag.py b/src/rag.py new file mode 100644 index 0000000..823e74f --- /dev/null +++ b/src/rag.py @@ -0,0 +1,229 @@ +"""RAG Pipeline orchestrator: ties together query analysis, retrieval, and generation.""" + +import json +import re +import sqlite3 +import time +import uuid +from pathlib import Path + +from openai import OpenAI +import yaml + +from src.llm_utils import llm_call_with_retry + +from src.hallucination import check_retrieval_quality +from src.query_analyzer import QueryAnalyzer +from src.retrieval import Retriever + +PROJECT_ROOT = Path(__file__).resolve().parent.parent + +with open(PROJECT_ROOT / "config.yaml") as f: + config = yaml.safe_load(f) + +with open(PROJECT_ROOT / "prompts.yaml") as f: + prompts = yaml.safe_load(f) + + +class CineMatchRAG: + def __init__(self, api_key: str): + self.query_analyzer = QueryAnalyzer(api_key) + self.retriever = Retriever() + + self.client = OpenAI( + base_url=config["openrouter_base_url"], + api_key=api_key, + ) + self.model = config["llm_model"] + self.fallback_models = config.get("fallback_models", []) + self.max_retries = config["generation"]["max_retries"] + self.backoff_base = config["generation"].get("backoff_base_seconds", 2) + self.history_turns = config["generation"]["history_turns"] + + self.gen_system = prompts["generation"]["system"] + self.gen_user_template = prompts["generation"]["user_template"] + + self.db_path = PROJECT_ROOT / config["logging"]["db_path"] + self._init_db() + + def _init_db(self): + """Initialize SQLite logging database.""" + self.db_path.parent.mkdir(parents=True, exist_ok=True) + conn = sqlite3.connect(str(self.db_path)) + conn.execute(""" + CREATE TABLE IF NOT EXISTS logs ( + request_id TEXT PRIMARY KEY, + timestamp REAL, + user_query TEXT, + parsed_query TEXT, + retrieved_movie_ids TEXT, + llm_response TEXT, + latency_ms REAL, + feedback TEXT + ) + """) + conn.commit() + conn.close() + + def _log(self, request_id: str, user_query: str, parsed_query: dict, + movie_ids: list[str], response: str, latency_ms: float): + """Log request to SQLite.""" + try: + conn = sqlite3.connect(str(self.db_path)) + conn.execute( + "INSERT INTO logs (request_id, timestamp, user_query, parsed_query, " + "retrieved_movie_ids, llm_response, latency_ms) VALUES (?, ?, ?, ?, ?, ?, ?)", + ( + request_id, + time.time(), + user_query, + json.dumps(parsed_query, ensure_ascii=False), + json.dumps(movie_ids), + response, + latency_ms, + ), + ) + conn.commit() + conn.close() + except Exception as e: + print(f"Logging error: {e}") + + def save_feedback(self, request_id: str, feedback: str): + """Save user feedback for a request.""" + try: + conn = sqlite3.connect(str(self.db_path)) + conn.execute( + "UPDATE logs SET feedback = ? WHERE request_id = ?", + (feedback, request_id), + ) + conn.commit() + conn.close() + except Exception as e: + print(f"Feedback save error: {e}") + + def _clean_json_response(self, text: str) -> str: + """Strip markdown code fences and extract JSON.""" + text = re.sub(r"```(?:json)?\s*", "", text) + text = re.sub(r"```", "", text) + text = text.strip() + match = re.search(r"\{.*\}", text, re.DOTALL) + if match: + return match.group(0) + return text + + def _generate_response(self, user_query: str, movies: list[dict], + history: list[dict] | None) -> dict: + """Call LLM to generate final recommendation response.""" + history_str = "" + if history: + last_turns = history[-(self.history_turns * 2):] + history_str = "\n".join( + f"{msg['role']}: {msg['content']}" for msg in last_turns + ) + + movies_json = json.dumps( + [ + { + "title": m["title"], + "year": m["year"], + "rating": m["rating"], + "duration_min": m["duration_min"], + "genres": m["genres"], + "overview": m["overview"], + } + for m in movies + ], + ensure_ascii=False, + indent=2, + ) + + user_msg = self.gen_user_template.format( + user_query=user_query, + movies_json=movies_json, + history=history_str or "None", + ) + + messages = [ + {"role": "system", "content": self.gen_system}, + {"role": "user", "content": user_msg}, + ] + + fallback_result = { + "movies": [ + { + "title": m["title"], + "year": m["year"], + "rating": m["rating"], + "duration_min": m["duration_min"], + "reason": m.get("overview", "")[:100], + } + for m in movies[:5] + ], + "message": "Вот что я нашёл по вашему запросу:", + } + + for attempt in range(self.max_retries + 1): + raw = llm_call_with_retry( + self.client, self.model, messages, + fallback_models=self.fallback_models, + max_retries=self.max_retries, + backoff_base=self.backoff_base, + ) + if raw is None: + print("Generation: all models failed, using fallback") + return fallback_result + + try: + cleaned = self._clean_json_response(raw) + return json.loads(cleaned) + except json.JSONDecodeError as e: + if attempt < self.max_retries: + print(f"Generation JSON retry {attempt + 1}: {e}") + continue + print(f"Generation fallback: {e}") + return fallback_result + + def query(self, user_query: str, history: list[dict] | None = None) -> dict: + """Main entry point: process user query and return recommendations.""" + request_id = str(uuid.uuid4()) + start = time.time() + + parsed = self.query_analyzer.analyze(user_query, history) + + if parsed.get("off_topic"): + latency = (time.time() - start) * 1000 + self._log(request_id, user_query, parsed, [], "off_topic", latency) + return { + "request_id": request_id, + "type": "off_topic", + "message": "Я — CineMatch, рекомендательная система фильмов. " + "Задайте вопрос о фильмах, и я помогу подобрать что-то интересное!", + "movies": [], + } + + candidates = self.retriever.retrieve(parsed) + + is_ok, fallback_msg = check_retrieval_quality(candidates) + if not is_ok: + latency = (time.time() - start) * 1000 + self._log(request_id, user_query, parsed, [], fallback_msg, latency) + return { + "request_id": request_id, + "type": "no_results", + "message": fallback_msg, + "movies": [], + } + + gen_result = self._generate_response(user_query, candidates, history) + latency = (time.time() - start) * 1000 + + movie_ids = [c["id"] for c in candidates] + self._log(request_id, user_query, parsed, movie_ids, + json.dumps(gen_result, ensure_ascii=False), latency) + + return { + "request_id": request_id, + "type": "recommendation", + "message": gen_result.get("message", ""), + "movies": gen_result.get("movies", []), + } diff --git a/src/retrieval.py b/src/retrieval.py new file mode 100644 index 0000000..3b45565 --- /dev/null +++ b/src/retrieval.py @@ -0,0 +1,133 @@ +"""Retrieval module: vector search with ChromaDB + cross-encoder reranking.""" + +from pathlib import Path + +import chromadb +import yaml +from sentence_transformers import CrossEncoder, SentenceTransformer + +PROJECT_ROOT = Path(__file__).resolve().parent.parent + +with open(PROJECT_ROOT / "config.yaml") as f: + config = yaml.safe_load(f) + + +class Retriever: + def __init__(self): + self.embedding_model = SentenceTransformer(config["embedding_model"]) + self.reranker = CrossEncoder(config["reranker_model"]) + + chroma_path = PROJECT_ROOT / config["chroma_db_path"] + client = chromadb.PersistentClient(path=str(chroma_path)) + self.collection = client.get_collection(config["chroma_collection"]) + + self.n_results = config["retrieval"]["n_results"] + self.top_k = config["retrieval"]["top_k"] + self.min_results = config["retrieval"]["min_results_with_filter"] + + def _build_where_filter(self, parsed_query: dict) -> dict | None: + """Build ChromaDB where filter from parsed query.""" + conditions = [] + + genre = parsed_query.get("genre") + if genre: + conditions.append({"genres": {"$contains": genre}}) + + max_duration = parsed_query.get("max_duration") + if max_duration: + conditions.append({"duration_min": {"$lte": int(max_duration)}}) + + min_year = parsed_query.get("min_year") + if min_year: + conditions.append({"year": {"$gte": int(min_year)}}) + + min_rating = parsed_query.get("min_rating") + if min_rating: + conditions.append({"rating": {"$gte": float(min_rating)}}) + + if not conditions: + return None + if len(conditions) == 1: + return conditions[0] + return {"$and": conditions} + + def retrieve(self, parsed_query: dict) -> list[dict]: + """Retrieve and rerank movies based on parsed query.""" + semantic_query = parsed_query.get("semantic_query", "") + query_embedding = self.embedding_model.encode([semantic_query]).tolist() + + where_filter = self._build_where_filter(parsed_query) + + + results = self._query_chroma(query_embedding, where_filter) + + + if where_filter and len(results) < self.min_results: + print(f"Only {len(results)} results with filter, retrying without filter...") + results = self._query_chroma(query_embedding, where_filter=None) + + if not results: + return [] + + + reranked = self._rerank(semantic_query, results) + return reranked[: self.top_k] + + def _query_chroma(self, query_embedding: list, where_filter: dict | None) -> list[dict]: + """Query ChromaDB and return results.""" + kwargs = { + "query_embeddings": query_embedding, + "n_results": self.n_results, + } + if where_filter: + kwargs["where"] = where_filter + + try: + results = self.collection.query(**kwargs) + except Exception as e: + print(f"ChromaDB query error: {e}") + + if where_filter: + results = self.collection.query( + query_embeddings=query_embedding, + n_results=self.n_results, + ) + else: + return [] + + movies = [] + if not results["ids"] or not results["ids"][0]: + return movies + + for i, doc_id in enumerate(results["ids"][0]): + distance = results["distances"][0][i] if results["distances"] else 1.0 + similarity = 1.0 - distance + metadata = results["metadatas"][0][i] + movies.append({ + "id": doc_id, + "title": metadata["title"], + "year": metadata["year"], + "duration_min": metadata["duration_min"], + "rating": metadata["rating"], + "genres": metadata["genres"], + "overview": metadata["overview"], + "similarity": round(similarity, 4), + }) + return movies + + def _rerank(self, query: str, candidates: list[dict]) -> list[dict]: + """Rerank candidates using cross-encoder.""" + if not candidates: + return [] + + pairs = [ + (query, f"{c['title']} ({c['year']}). {c['overview']}") + for c in candidates + ] + scores = self.reranker.predict(pairs) + + for i, score in enumerate(scores): + candidates[i]["rerank_score"] = float(score) + + candidates.sort(key=lambda x: x["rerank_score"], reverse=True) + return candidates