email-unsubscribe-links-scr.../README.md

25 lines
1.0 KiB
Markdown
Raw Normal View History

2023-08-01 03:13:50 +02:00
# Email Unsubscribe Links Scraper
This is a simple Python web application that logs into an email server, scans the inbox for unsubscribe links, and displays the results in a table. It also provides the option to move selected emails to the trash.
## Disclaimer
This App is still in development
## How to use
1. Clone this repository.
2. Build the Docker image:
2023-08-01 03:49:01 +02:00
```docker build -t email-unsubscribe-links-scraper .```
2023-08-01 03:13:50 +02:00
3. Run the Docker container:
2023-08-01 03:49:01 +02:00
```docker run -p 5000:5000 -e EMAIL_USERNAME=your_email@example.com -e EMAIL_PASSWORD=your_email_password -e EMAIL_SERVER=your_email_server email-unsubscribe-links-scraper```
2023-08-01 03:13:50 +02:00
4. Access the application in your web browser at http://localhost:5000.
2023-08-01 03:49:01 +02:00
### For non-build-use:
Run following command: ```docker run -p 5000:5000 -e EMAIL_USERNAME=your_email@example.com -e EMAIL_PASSWORD=your_email_password -e EMAIL_SERVER=your_email_server rsclub22/email-unsubscribe-links-scraper```
2023-08-01 03:13:50 +02:00
## License
2023-08-01 23:56:32 +02:00
Copyright 2023 Philipp Wagner
This project is licensed under the GPLv3 License - see the [LICENSE](LICENSE) file for details.