This is a simple Flask application that determines a user's zodiac sign based on their birth date.
- Python 3.8 or higher (3.11 recommended)
- pip (Python package manager)
-
Clone this repository or download the source code.
-
Navigate to the project directory:
cd path/to/zodiac-sign-finder
-
Install the required dependencies:
pip install flask
-
Start the Flask server:
python main.py
-
Open your web browser and go to:
http://localhost:5000
Note: If you want to access the application from a different machine on the same network, replace 'localhost' with the IP address of the machine running the server.
You should now see the Zodiac Sign Finder application running in your browser.
- Enter your birth date in the provided input field.
- Click the "Find My Zodiac Sign" button.
- Your zodiac sign and some information about it will be displayed.
main.py
: The main Flask application filezodiac.py
: Contains functions for determining zodiac signstemplates/index.html
: The HTML template for the web interfacestatic/js/app.js
: JavaScript file for handling user interactionsstatic/css/styles.css
: CSS file for styling the web interface
Enjoy finding your zodiac sign!