An updated program of a previous project which converts image pixels to ASCII character art. This program is updated with a functional UI written in HTML, CSS and JavaScript. Backend logic is handled by FastAPI and Python as the programming language.
- Python 3.10+
- pip (included with Python)
- Create a virtual environment:
python -m venv venv- Activate the virtual environment:`
Windows
venv\Scripts\activateMac/Linux
source venv/bin/activate- Install all the required dependencies:
pip install -r requirements.txtTo start the development server, run:
python -m uvicorn app:app --reloadThe application will be available at http://127.0.0.1:8000
When you are done, deactivate the virtual environment:
deactivate