{"id":16135844,"url":"https://github.com/jmaupetit/imdb-sql","last_synced_at":"2026-02-16T10:02:32.170Z","repository":{"id":247963031,"uuid":"827252358","full_name":"jmaupetit/imdb-sql","owner":"jmaupetit","description":"Load IMDB datasets in SQL databases","archived":false,"fork":false,"pushed_at":"2025-05-02T09:25:25.000Z","size":94,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-09-26T10:42:37.072Z","etag":null,"topics":["database","imdb","load-testing","sql"],"latest_commit_sha":null,"homepage":"","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/jmaupetit.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","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":"2024-07-11T09:36:13.000Z","updated_at":"2025-05-02T09:25:32.000Z","dependencies_parsed_at":"2024-11-28T11:24:54.472Z","dependency_job_id":"4669b6dd-c9e7-4376-b213-93e1f7d98e17","html_url":"https://github.com/jmaupetit/imdb-sql","commit_stats":{"total_commits":18,"total_committers":3,"mean_commits":6.0,"dds":0.4444444444444444,"last_synced_commit":"658a3a79bb6d5348c6738d4862ba24d51e5647cc"},"previous_names":["jmaupetit/imdb-sql"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/jmaupetit/imdb-sql","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jmaupetit%2Fimdb-sql","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jmaupetit%2Fimdb-sql/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jmaupetit%2Fimdb-sql/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jmaupetit%2Fimdb-sql/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/jmaupetit","download_url":"https://codeload.github.com/jmaupetit/imdb-sql/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jmaupetit%2Fimdb-sql/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29505664,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-16T09:05:14.864Z","status":"ssl_error","status_checked_at":"2026-02-16T08:55:59.364Z","response_time":115,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":["database","imdb","load-testing","sql"],"created_at":"2024-10-09T23:09:35.622Z","updated_at":"2026-02-16T10:02:32.120Z","avatar_url":"https://github.com/jmaupetit.png","language":"Python","funding_links":[],"categories":["Python"],"sub_categories":[],"readme":"# IMDB SQL\n\nLoad IMDB datasets in a SQL database.\n\n## 💡 The idea\n\n**TL;DR** this project aims to be a helper to generate massive databases used in\nperformance-related studies. It is actually used in the\n[data7 project](https://jmaupetit.github.io/data7/).\n\n## Dependencies\n\n- [Poetry](https://python-poetry.org)\n- [Curl](https://curl.se/)\n- [GNU Make](https://www.gnu.org/software/make/)\n\n## Getting started\n\nClone the project then bootstrap it using:\n\n```sh\nmake bootstrap\n```\n\nAnd you are now ready to push the dataset to your database:\n\n```sh\npoetry run python imdb-sql.py [DATABASE_URL]\n```\n\nWith no argument, this will create an `im.db` SQLite database in the current\ndirectory. Feel free to add the `DATABASE_URL` argument to use a PostgreSQL or\nMariaDB instance. We support database URLs as defined in\n[SQLAlchemy](https://docs.sqlalchemy.org/en/20/core/engines.html#database-urls)\n(note that you need to install required database-specific driver).\n\n## Testing with other DBMS\n\nWe provide a Docker compose configuration to test datasets loading in other DBMS\nthan SQLite.\n\n\u003e 💡 Feel free to substitute provided docker-based configuration with the\n\u003e database server instance used in performance tests.\n\n### PostgreSQL\n\nBoot the Postgres server (if you need one, else use your own server):\n\n```sh\ndocker compose up -d postgresql\n```\n\nInstall the Postgres driver:\n\n```sh\npoetry add psycopg2-binary\n```\n\nLoad IMDB datasets:\n\n```sh\npoetry run python imdb-sql.py postgresql://imdb:pass@localhost:5432/imdb\n```\n\n### MariaDB\n\nBoot the MariaDB server (if you need one, else use your own server):\n\n```sh\ndocker compose up -d mariadb\n```\n\nInstall the MariaDB driver (you should first install MariaDB on your system):\n\n```sh\npoetry add mariadb\n```\n\nLoad IMDB datasets:\n\n```sh\npoetry run python imdb-sql.py mariadb://imdb:pass@localhost:3306/imdb\n```\n\n## LICENSE\n\nThis work is released under the MIT License.\n\nIMDB datasets are provided for\n[non-commercial use only](https://developer.imdb.com/non-commercial-datasets/).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjmaupetit%2Fimdb-sql","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjmaupetit%2Fimdb-sql","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjmaupetit%2Fimdb-sql/lists"}