File size: 481 Bytes
8f1620e
8295f55
8f1620e
df85459
8295f55
 
 
 
 
 
 
 
df85459
 
8295f55
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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()