# Text Captcha Breaker | |
## Prerequisites | |
Before running this project, make sure you have the following prerequisites installed: | |
- [git-lfs](https://github.com/git-lfs/git-lfs/wiki/Installation#debian-and-ubuntu): A Git extension for versioning large files. | |
To install git-lfs on Debian and Ubuntu, run the following commands: | |
```bash | |
curl -s https://packagecloud.io/install/repositories/github/git-lfs/script.deb.sh | sudo bash | |
sudo apt-get update | |
sudo apt-get install git-lfs | |
git lfs install | |
``` | |
- Required Python packages: Install the required packages by running the following command: | |
```bash | |
pip install -r requirements.txt | |
``` | |
## Usage | |
To use this project, run the following command: | |
```bash | |
python3 app.py BASE_64_IMAGE_BLOB_STRING | |
``` | |