This is a simple Flask web application that generates random stories based on user input for character names and random selections for settings, problems, and actions.
- Clone or download this repository.
- Install the required dependencies by running
pip install -r requirements.txt
. - Run the Flask application by executing
python app.py
. - Open your web browser and navigate to
http://localhost:5000
. - Enter a character name in the provided form and click "Generate".
- A story will be generated with the entered character name along with randomly chosen settings, problems, and actions.
app.py
: Contains the Flask application code.templates/index.html
: HTML template for the web interface.README.md
: This file providing information about the project.
- Flask: Web framework for Python.