mubi2letterboxd is a simple GUI application for user data migration from MUBI to letterboxd. With the utility, you can create a .csv file suitable for manual import to Letterboxd.
If you have an account on MUBI, the mubi2letterboxd utility can help you easily import your data to letterboxd.
Open 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.
Then input UserID to the application window.
pip install -r requirements.txtpython mubi2letterboxd.py
Those who prefer command line interface can refer to the similar mubi2letterboxd application I wrote in Golang.
You can create environment either with virtualenv or pyenv.
Before it, you need to install pyenv and pyenv-virtualenv for your OS.
virtualenv venv
source ./venv/bin/activatepyenv virtualenv 3.9.1 mubi2letterboxd
pyenv activate mubi2letterboxdYou can use either Poetry or Pip
pip install -U pip poetry
poetry installpip install -r requirements.txtpre-commit installBefore each commit call make lint. After installing libs call make update-isort
