Spaces:
Sleeping
Sleeping
import streamlit as st | |
import astroplan | |
def main(): | |
st.title("Zodiac Sign Calculator") | |
year = st.slider("Enter your year of birth:", 1900, 2000, value=1991) | |
month = st.slider("Enter your month of birth:", 1, 12, value=1) | |
day = st.slider("Enter your day of birth:", 1, 31, value=1) | |
birth_date = astroplan.Date(year, month, day) | |
zodiac_sign = birth_date.zodiac_sign | |
st.write("Your zodiac sign is: ", zodiac_sign) | |
if __name__ == "__main__": | |
main() | |