Commit
·
0d9f0eb
1
Parent(s):
95b2441
Update app.py
Browse files
app.py
CHANGED
@@ -3,9 +3,25 @@ import matplotlib.pyplot as plt
|
|
3 |
import numpy as np
|
4 |
|
5 |
def main():
|
6 |
-
st.title("
|
7 |
-
st.
|
8 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
9 |
radius_outer = 1.0
|
10 |
radius_inner = 0.6
|
11 |
circle_center = (0.0, 0.0)
|
@@ -16,9 +32,9 @@ def main():
|
|
16 |
x_inner = circle_center[0] + radius_inner * np.cos(theta)
|
17 |
y_inner = circle_center[1] + radius_inner * np.sin(theta)
|
18 |
|
19 |
-
name = st.text_input("
|
20 |
|
21 |
-
conversion_type = st.selectbox("
|
22 |
|
23 |
conversion_dict = {}
|
24 |
|
@@ -95,7 +111,7 @@ def main():
|
|
95 |
numerical_values.append(0)
|
96 |
converted_name += char
|
97 |
|
98 |
-
st.write("
|
99 |
|
100 |
fig, ax = plt.subplots(figsize=(6, 6))
|
101 |
ax.fill_between(theta, radius_inner, radius_outer, color='white')
|
|
|
3 |
import numpy as np
|
4 |
|
5 |
def main():
|
6 |
+
st.title("Goetic Seals Generator")
|
7 |
+
st.markdown(
|
8 |
+
"""
|
9 |
+
|
10 |
+
**Author:** cha0smagick the Techno wizard
|
11 |
+
**Created for the blog:** [El Rincon Paranormal](https://elrinconparanormal.blogspot.com)
|
12 |
+
**Project's main page:** [Technowizard Cha0smagick's Goetic seals Generator](https://elrinconparanormal.blogspot.com/2023/12/)
|
13 |
+
|
14 |
+
**Donate crypto to support the project:**
|
15 |
+
|
16 |
+
- Bitcoin: 1FmE3xRy2DFuGPajGdGhuwwNqfqL9rW3fW
|
17 |
+
- Litecoin: LaBBn2SCgWo63yRtXLjN1Z4sdqwfZZCv3J
|
18 |
+
- Dodgecoin: DQ9PYWTQhUGdGxMupzvXUiAUAVfpDrNE3v
|
19 |
+
- Blackcoin: BKNJP7kLePSQPN5HtvPRgArw8gQBKuLa1y
|
20 |
+
- Dash: xj15HJrFXShAo5A4vSvZdbjPpZJoCYLoYf
|
21 |
+
- Peercoin: PT1VKAjxkfPG1u7hAjr5GfqMgpsB8isVh9
|
22 |
+
|
23 |
+
"""
|
24 |
+
)
|
25 |
radius_outer = 1.0
|
26 |
radius_inner = 0.6
|
27 |
circle_center = (0.0, 0.0)
|
|
|
32 |
x_inner = circle_center[0] + radius_inner * np.cos(theta)
|
33 |
y_inner = circle_center[1] + radius_inner * np.sin(theta)
|
34 |
|
35 |
+
name = st.text_input("Entrer a Name, Desire or wish:")
|
36 |
|
37 |
+
conversion_type = st.selectbox("Choose a Goetic language:", ["Hebreo", "Árabe"])
|
38 |
|
39 |
conversion_dict = {}
|
40 |
|
|
|
111 |
numerical_values.append(0)
|
112 |
converted_name += char
|
113 |
|
114 |
+
st.write("Goetic Name:", converted_name)
|
115 |
|
116 |
fig, ax = plt.subplots(figsize=(6, 6))
|
117 |
ax.fill_between(theta, radius_inner, radius_outer, color='white')
|