This Python script checks which users you follow on Letterboxd are not following you back. It utilizes BeautifulSoup and requests to scrape follower and following lists from your Letterboxd profile.
- Fetches followers and following lists from your Letterboxd profile.
- Identifies users who do not follow you back.
- Outputs the list of non-followers to a text file.
- Python 3.x
requests
librarybeautifulsoup4
library
- Clone the repository:
git clone https://github.com/wsjishan/letterboxd-follow-back-checker.git
- Navigate to the project directory:
cd letterboxd-follow-back-checker
- Install the required libraries:
pip install requests beautifulsoup4
- Run the script:
python main.py
- Enter your Letterboxd username when prompted.
The output will be saved to a file named not_following_back.txt
in the project directory.