{"id":46367454,"url":"https://github.com/hextriclosan/mubi2letterboxd-py","last_synced_at":"2026-03-05T02:34:18.415Z","repository":{"id":44459056,"uuid":"512532973","full_name":"hextriclosan/mubi2letterboxd-py","owner":"hextriclosan","description":"A simple GUI application for user data migration from MUBI.com to letterboxd.com","archived":false,"fork":false,"pushed_at":"2026-02-02T15:36:09.000Z","size":301,"stargazers_count":1,"open_issues_count":12,"forks_count":2,"subscribers_count":2,"default_branch":"main","last_synced_at":"2026-02-03T04:32:46.835Z","etag":null,"topics":["data-migration","data-migration-tool","letterboxd","mubi"],"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/hextriclosan.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,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2022-07-10T20:28:53.000Z","updated_at":"2025-07-13T10:22:34.000Z","dependencies_parsed_at":"2023-12-14T00:29:23.493Z","dependency_job_id":"d8c1cf72-272b-4df6-8d5a-6c8ad9e9e335","html_url":"https://github.com/hextriclosan/mubi2letterboxd-py","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/hextriclosan/mubi2letterboxd-py","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hextriclosan%2Fmubi2letterboxd-py","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hextriclosan%2Fmubi2letterboxd-py/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hextriclosan%2Fmubi2letterboxd-py/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hextriclosan%2Fmubi2letterboxd-py/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/hextriclosan","download_url":"https://codeload.github.com/hextriclosan/mubi2letterboxd-py/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hextriclosan%2Fmubi2letterboxd-py/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":30107256,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-05T01:39:18.192Z","status":"online","status_checked_at":"2026-03-05T02:00:06.710Z","response_time":93,"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":["data-migration","data-migration-tool","letterboxd","mubi"],"created_at":"2026-03-05T02:34:17.608Z","updated_at":"2026-03-05T02:34:18.405Z","avatar_url":"https://github.com/hextriclosan.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# mubi2letterboxd\n## ☹ Temporarily paused\nUnfortunately, MUBI has discontinued the functionality that the current project was working on.\n\n_mubi2letterboxd_ is temporarily paused until an alternative way to extract the data is found.\n\n# The easy way\nIf you're not interested in the engineering stuff, you can use the online import file generator from my [mubi2letterboxd](https://github.com/hextriclosan/mubi2letterboxd) project.\n\n# The geeky way\n\n### What?\n_mubi2letterboxd_ is a simple GUI application for user data migration from [MUBI](https://mubi.com) to [letterboxd](https://letterboxd.com). With the utility, you can create a [.csv file](https://letterboxd.com/about/importing-data/) suitable for manual [import](https://letterboxd.com/import/) to Letterboxd.\n\n### Why?\nIf you have an account on MUBI, the mubi2letterboxd utility can help you easily import your data to [letterboxd](https://letterboxd.com). \n\n### How?\nOpen your profile page on MUBI. Examine your browser address line to find out your UserID. UserID is a number at the end of the site address.\n\n![How to find UserID](docs/images/userid_url.png \"How to find UserID\")\n\nThen input UserID to the application window.\n\n## Quick start\n## Install dependencies\n```shell\npip install -r requirements.txt\n```\n\n## Run application\n```shell\npython mubi2letterboxd.py\n```\n\n![Program Window](docs/images/window.png \"Program Window\")\nThose who prefer a command line interface can refer to a similar [mubi2letterboxd](https://github.com/hextriclosan/mubi2letterboxd) application I wrote in Golang.\n\n\n## Maintain\n\n### Install\n\n#### Create environment\nYou can create environment either with virtualenv or pyenv.\n\n##### Virtualenv with pyenv\nBefore this, you need to install [pyenv](https://github.com/pyenv/pyenv) and [pyenv-virtualenv](https://github.com/pyenv/pyenv-virtualenv) for your OS.\n```shell\nvirtualenv venv\nsource ./venv/bin/activate\n```\n\n##### Pyenv\n```shell\npyenv virtualenv 3.9.1 mubi2letterboxd\npyenv activate mubi2letterboxd\n```\n\n#### Install requirements\nYou can use either Poetry or Pip\n##### Poetry\n```shell\npip install -U pip poetry\npoetry install\n```\n\n##### Pip\n```shell\npip install -r requirements.txt\n```\n\n### Use linters\n\n#### Install pre-commit hooks\n```shell\npre-commit install\n```\n\n#### Use pre-commit hooks\nBefore each commit call `make lint`. After installing libs call `make update-isort`\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhextriclosan%2Fmubi2letterboxd-py","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fhextriclosan%2Fmubi2letterboxd-py","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhextriclosan%2Fmubi2letterboxd-py/lists"}