Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/javierarce/letterboxd-scraper
A script that scrapes films from a Letterboxd user's public diary.
https://github.com/javierarce/letterboxd-scraper
diary films letterboxd movies scraper
Last synced: about 2 months ago
JSON representation
A script that scrapes films from a Letterboxd user's public diary.
- Host: GitHub
- URL: https://github.com/javierarce/letterboxd-scraper
- Owner: javierarce
- Created: 2023-08-13T14:51:01.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2023-08-20T17:14:41.000Z (over 1 year ago)
- Last Synced: 2024-10-04T17:34:34.633Z (3 months ago)
- Topics: diary, films, letterboxd, movies, scraper
- Language: JavaScript
- Homepage:
- Size: 89.8 KB
- Stars: 9
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- starred - javierarce/letterboxd-scraper - A script that scrapes films from a Letterboxd user's public diary. (JavaScript)
README
### Letterboxd Film Scraper
A script that scrapes films from a Letterboxd user's public diary.
```shell
yarn letterboxd {username}
```### Result
The films will be saved in the `films.json` file with the following structure:
```js
{
"updated_at": "2023-08-13",
"count": 470,
"films": [
{
"watched_on": "2022-10-24",
"title": "Aftersun (2022)",
"rating": 4.5,
"rewatched": false,
"permalink": "aftersun"
},
{
"watched_on": "2021-03-20",
"title": "Le Trou (1960)",
"rating": 5,
"rewatched": true,
"permalink": "le-trou"
},
...
{
"watched_on": "2020-09-13",
"title": "Tampopo (1985)",
"rating": 5,
"rewatched": false,
"permalink": "tampopo"
}
]
}
```