This is an initial development version.
- Generate captcha images
- Generate corresponding captcha text
- Written in Python
-
Clone this repository:
git clone https://github.com/aditya-an1l/pcaptcha.git cd pcaptcha
-
Set up a virtual environment:
On Unix
python -m venv venv
source venv/bin/activate
On Windows
python -m venv venv
source venv\Scripts\activate
- Install the required packages:
pip install -r requirements.txt
-
Navigate to the
scripts
directory:cd scripts
-
Run the main script:
python ./main.py
Generated captcha images will be stored in the scripts/media
directory.
pcaptcha/
├── scripts/
│ ├── main.py
│ └── media/
├── venv/
├── requirements.txt
└── README.md
- The application is entirely CLI-based with no GUI.
- By default, it overwrites the previous captcha image unless an alternate name is provided in the script.
- Make the CLI more interactive
- Implement a better naming mechanism for captcha images
- Develop a GUI mode
Contributions are welcome! Please feel free to submit a Pull Request.