Metadata-Version: 2.1
Name: letterboxd-convert
Version: 1.3
Summary: Convert letterboxd.com lists to a list of IMDb tconsts.
Home-page: https://github.com/gusberinger/letterboxd-convert
Author: Gus Beringer
Author-email: gusberinger@gmail.com
License: UNKNOWN
Project-URL: Bug Tracker, https://github.com/gusberinger/letterboxd-convert/issues
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE

# letterboxd-convert
![Tests](https://github.com/gusberinger/letterboxd-convert/actions/workflows/tests.yml/badge.svg)

Convert letterboxd.com lists to a list of imdb ids.

## Install
```
pip install letterboxd-convert
```


## Usage

CLI usage
```
letterboxd-convert "https://letterboxd.com/crew/list/the-2010s-top-250-narrative-features/" -limit 20
```


Python package

```
from letterboxd_convert import download_list
url = "https://letterboxd.com/crew/list/the-2010s-top-250-narrative-features/"
print(download_list(url, limit=20))
```


