cha0smagick commited on
Commit
954a391
1 Parent(s): a6eeae9

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -4
app.py CHANGED
@@ -47,10 +47,10 @@ def visualize_sigil(sigil):
47
  plt.ylim(0, 1)
48
  st.pyplot(fig)
49
 
50
- st.title("Generador de Sigilos")
51
-
52
- desire = st.text_input("Ingresa tu deseo:")
53
  if desire:
54
  sigil = create_sigil(desire)
55
- st.write("Sigilo generado:", sigil)
56
  visualize_sigil(sigil)
 
47
  plt.ylim(0, 1)
48
  st.pyplot(fig)
49
 
50
+ st.title("Austin Osman Spare Sigil Generator")
51
+ st.text("Created by Frater Cha0smagick for the blog grimoriomagiadelcaos.blogspot.com")
52
+ desire = st.text_input("Enter your wish or intention:")
53
  if desire:
54
  sigil = create_sigil(desire)
55
+ st.write("Generated Sigil:", sigil)
56
  visualize_sigil(sigil)