EinsteinCoder commited on
Commit
1df47ed
·
1 Parent(s): ed3a947

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -4
app.py CHANGED
@@ -18,9 +18,9 @@ Add a section for Next Week's Prediction and Tommorow's Prediction.
18
  Add a section to aware the couple for any upcoming negative traits or events or scenarios.
19
  Add a section to notify about all the Lucky Dates.
20
  Add a section of Couple Compatibility based on the moon signs of the couple, use your own knowledge and intelligence to deduce it.
21
- Use bullets and headlines for all sections.
 
22
  Add emojis to look interesting.
23
- Emphasize the keywords with BOLD letters using markdown.
24
  """
25
 
26
  def get_daily_pred(url):
@@ -140,8 +140,8 @@ def main():
140
  prediction = predict_horoscope(m_sign, f_sign,strtime,m_daily_pred,f_daily_pred,m_monthly_pred,f_monthly_pred,m_weekly_pred,f_weekly_pred)
141
  st.info("**Today's is**: " + strtime + " | **Husband's Moon Sign**: " + m_sign + " | **Wife's Moon Sign**: " + f_sign)
142
  #st.success("Insight generated!")
143
- #st.markdown(prediction)
144
- st.text(prediction)
145
 
146
  if __name__ == '__main__':
147
  main()
 
18
  Add a section to aware the couple for any upcoming negative traits or events or scenarios.
19
  Add a section to notify about all the Lucky Dates.
20
  Add a section of Couple Compatibility based on the moon signs of the couple, use your own knowledge and intelligence to deduce it.
21
+ Use BOLD headlines for all sections.
22
+ Use BULLET points for details for all sections.
23
  Add emojis to look interesting.
 
24
  """
25
 
26
  def get_daily_pred(url):
 
140
  prediction = predict_horoscope(m_sign, f_sign,strtime,m_daily_pred,f_daily_pred,m_monthly_pred,f_monthly_pred,m_weekly_pred,f_weekly_pred)
141
  st.info("**Today's is**: " + strtime + " | **Husband's Moon Sign**: " + m_sign + " | **Wife's Moon Sign**: " + f_sign)
142
  #st.success("Insight generated!")
143
+ st.markdown(prediction)
144
+ #st.text(prediction)
145
 
146
  if __name__ == '__main__':
147
  main()