{"id":23116320,"url":"https://github.com/breakbb/v_crawler","last_synced_at":"2026-04-17T01:02:26.328Z","repository":{"id":39721873,"uuid":"158670205","full_name":"BreakBB/v_crawler","owner":"BreakBB","description":"A simple project to crawl the Amazon Prime Video platform for movies and series","archived":false,"fork":false,"pushed_at":"2022-12-08T01:19:47.000Z","size":54,"stargazers_count":0,"open_issues_count":7,"forks_count":3,"subscribers_count":0,"default_branch":"master","last_synced_at":"2025-04-04T01:28:25.891Z","etag":null,"topics":["amazon-video","movie","postgresql","scrapy"],"latest_commit_sha":null,"homepage":null,"language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/BreakBB.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2018-11-22T08:57:11.000Z","updated_at":"2019-11-04T12:30:55.000Z","dependencies_parsed_at":"2023-01-24T09:00:13.546Z","dependency_job_id":null,"html_url":"https://github.com/BreakBB/v_crawler","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/BreakBB/v_crawler","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/BreakBB%2Fv_crawler","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/BreakBB%2Fv_crawler/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/BreakBB%2Fv_crawler/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/BreakBB%2Fv_crawler/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/BreakBB","download_url":"https://codeload.github.com/BreakBB/v_crawler/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/BreakBB%2Fv_crawler/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":266152253,"owners_count":23884473,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["amazon-video","movie","postgresql","scrapy"],"created_at":"2024-12-17T04:15:59.496Z","updated_at":"2026-04-17T01:02:26.094Z","avatar_url":"https://github.com/BreakBB.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# v_crawler\n\nv_crawler is a simple project to crawl the Amazon Prime Video platform for movies and series.\n\nIt is using the [Scrapy Framework](https://github.com/scrapy/scrapy) and extracts various information about the found content and saves them to a AWS DynamoDB table.\n\n## Requirements\n\n### Privoxy\n\n1. Install Privoxy\n2. Uncomment the following line in the **config.txt**:\n     \n    ```forward-socks4a   /               127.0.0.1:9050 .```\n\n3. Change the given port from _9050_ to _9150_\n\n### TOR\n\n1. Install the TOR browser and have it running\n2. If you want to make use of the TOR service you have to skip step 2 of Privoxy and change the ports inside the code to 9050.\n\n### PostgreSQL\n\n1. Create a \"database.ini\" file with the following schema:\n\n    ```ini\n    [postgresql]\n    host=\u003cyourHost\u003e\n    port=\u003cyourPort\u003e\n    dbname=\u003cyourDbName\u003e\n    user=\u003cyourUser\u003e\n    password=\u003cyourPassword\u003e\n    ```\n    \n2. Create a table using the following specs:\n\n    ```SQL\n    CREATE TABLE amazon_video_com\n    (\n        number SERIAL NOT NULL,\n        movie_id VARCHAR(10) NOT NULL PRIMARY KEY,\n        url VARCHAR(255) NOT NULL,\n        title VARCHAR(255) NOT NULL,\n        rating DOUBLE PRECISION,\n        imdb DOUBLE PRECISION,\n        genres VARCHAR[],\n        year INTEGER,\n        fsk INTEGER,\n        movie_type VARCHAR(255),\n        poster BYTEA,\n        directors VARCHAR[],\n        actors VARCHAR[],\n        writer VARCHAR[]\n    )\n    ```\n    \n    - To improve the query speed you want to create an index for the LOWER() function of PostgreSQL:\n    ```SQL\n    CREATE INDEX ON amazon_video_com (LOWER(title))\n    ```\n    \n    - If you want to crawl another domain of prime video you should create a table for it and implement a spider for it (have a look at the \"amazon_de_spider\")\n    \n    \n### IMDb API server\n\n1. Install my [imdb-api-server](https://github.com/BreakBB/imdb-api-server)\n2. By default this runs on localhost:8555\n    \n    \n### Python dependencies\n\n1. Install the python dependencies using the **requirements.txt** with:\n\n    ```pip install -r requirements.txt```\n \n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbreakbb%2Fv_crawler","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbreakbb%2Fv_crawler","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbreakbb%2Fv_crawler/lists"}