{"id":16538394,"url":"https://github.com/santhoshse7en/imdb-scrapy","last_synced_at":"2025-08-13T11:53:37.975Z","repository":{"id":138727593,"uuid":"269032356","full_name":"santhoshse7en/IMDb-Scrapy","owner":"santhoshse7en","description":"A fun projects made using Scrapy. The Spiders included in this are able to extract Movie, TV-Series, TV-Movies based on year and title type. A lot more to come ahead","archived":false,"fork":false,"pushed_at":"2020-06-03T09:24:44.000Z","size":100,"stargazers_count":3,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"master","last_synced_at":"2025-05-31T00:47:26.178Z","etag":null,"topics":["beautifulsoup4","imdb","imdb-dataset","imdb-scraper","scrapy","scrapy-crawler","scrapy-framework","scrapy-spider"],"latest_commit_sha":null,"homepage":null,"language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/santhoshse7en.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2020-06-03T08:27:57.000Z","updated_at":"2024-05-11T16:14:07.000Z","dependencies_parsed_at":null,"dependency_job_id":"68f6aebe-c9f3-46b2-bef4-1183b2864c45","html_url":"https://github.com/santhoshse7en/IMDb-Scrapy","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/santhoshse7en/IMDb-Scrapy","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/santhoshse7en%2FIMDb-Scrapy","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/santhoshse7en%2FIMDb-Scrapy/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/santhoshse7en%2FIMDb-Scrapy/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/santhoshse7en%2FIMDb-Scrapy/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/santhoshse7en","download_url":"https://codeload.github.com/santhoshse7en/IMDb-Scrapy/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/santhoshse7en%2FIMDb-Scrapy/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":270235835,"owners_count":24550187,"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","status":"online","status_checked_at":"2025-08-13T02:00:09.904Z","response_time":66,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"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":["beautifulsoup4","imdb","imdb-dataset","imdb-scraper","scrapy","scrapy-crawler","scrapy-framework","scrapy-spider"],"created_at":"2024-10-11T18:45:30.273Z","updated_at":"2025-08-13T11:53:37.954Z","avatar_url":"https://github.com/santhoshse7en.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"## IMDb_Scraper\nA fun projects made using Scrapy. The Spiders included in this are able to extract Movie, TV-Series, TV-Movies based on year and title type. A lot more to come features ahead\n\n## Run\n\n### Create and activate virtual env \n\n**Python3**\n\n```python\n\n\u003e\u003e python3 -m venv venv\n\u003e\u003e . ./venv/bin/activate\n\n```\n\n**Anaconda**\n\n```python\n\n\u003e\u003e conda create --name venv\n\u003e\u003e conda activate venv\n\n```\n\n### Dependencies\n\n* Scrapy\n\n### Extracted information\n\nIMDb Scraper extracts the following attributes from IMDb websites. Also, have a look at an examplary [json](https://github.com/santhoshse7en/IMDb_Scraper/blob/master/example/sample.json) and [CSV](https://github.com/santhoshse7en/IMDb_Scraper/blob/master/example/sample.csv) file extracted by IMDb Scraper.\n\n* Movie Name\n* Movie ID\n* Movie URL\n* Poster\n* Year\n* Genre\n* RunTime\n* Certificate\n* Rating\n* MetaScore\n* Plot\n* Votes\n* Gross\n* Director\n* Director ID\n* Director URL\n* Cast\n* Cast ID\n* Cast URL\n\n### Install dependencies\n\nUse the package manager [pip](https://pip.pypa.io/en/stable/) to install following\n\n```python\n\n\u003e\u003e pip install -r requirements.txt\n\u003e\u003e pip install scrapy\n\n```\n\n**Anaconda**\n\n```python\n\n\u003e\u003e conda install scrapy -y\n\n```\n\n### TitleType was the main parameter to different title alongside release year to sort the release\n\n* feature\n* tv_series\n* tv_movie\n* tv_episode\n* tv_special\n* tv_miniseries\n* documentary\n* video_game\n* short\n* video\n* tv_short\n\n### Usage\n\n```python\n\n\u003e\u003e scrapy crawl imdb_year -a title_type=feature -a year=2019\n\n```\n\n**Save the output as a file**\n\n```python\n\n\u003e\u003e scrapy crawl imdb_year -a title_type=feature -a year=2019 -o output.csv\n\n\u003e\u003e scrapy crawl imdb_year -a title_type=feature -a year=2019 -o output.json\n\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsanthoshse7en%2Fimdb-scrapy","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsanthoshse7en%2Fimdb-scrapy","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsanthoshse7en%2Fimdb-scrapy/lists"}