A simple Python web application to create AI-powered course content using external APIs.
- Generate course structures or content via AI
- Uses Google API key for AI requests
- Basic web interface and backend endpoint
- Python 3.x
.envfile with API credentials
-
Clone the repository
git clone https://github.com/SelvamathanS/Ai-Course-Creator cd Ai-Course-Creator -
Create and activate virtual environment
python3 -m venv venv source venv/bin/activate # Linux/Mac venv\Scripts\activate # Windows
-
Install dependencies
pip install -r requirements.txt
-
Configure environment variables Create a
.envfile with:GOOGLE_API_KEY="YOUR_GOOGLE_API_KEY"
py app.pyAfter running, access the app in your browser (typically at http://localhost:5000).
- Add your API key properly before starting.
- The app uses external AI APIs — usage limits and billing may apply.
GOOGLE_API_KEY = "KEY"
pip install -r requirements.txt
py -m venv venv
Set-ExecutionPolicy -ExecutionPolicy RemoteSigned -Scope CurrentUser
.\venv\Scripts\activate
py app.py