awacke1 commited on
Commit
487b26b
·
verified ·
1 Parent(s): 1837253

Create app.py

Browse files
Files changed (1) hide show
  1. app.py +39 -0
app.py ADDED
@@ -0,0 +1,39 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import streamlit as st
2
+
3
+ Boxing_and_MMA_Commentary_and_Knowledge = """
4
+ # Boxing and UFC Study of 1971 - 2024 The Greatest Fights History
5
+
6
+ 1. In Boxing, the most heart breaking fight in Boxing was the Boom Boom Mancini fight with Duku Kim.
7
+ 2. After changes to Boxing made it more safe due to the heart break.
8
+ 3. Rehydration of the brain after weight ins loss preparation for a match is life saving change.
9
+ 4. Fighting went from 15 rounds to 12.
10
+
11
+ # UFC By Contrast..
12
+ 1. 5 Rounds of 5 Minutes each.
13
+ 2. Greatest UFC Fighters:
14
+ - Jon Jones could be the greatest of all time (GOAT) since he never lost.
15
+ - George St. Pierre
16
+ - BJ Penn
17
+ - Anderson Silva
18
+ - Mighty Mouse MMA's heart at 125 pounds
19
+ - Kabib retired 29 and 0
20
+ - Fedor Milliano
21
+ - Alex Pereira
22
+ - James Tony
23
+ - Randy Couture
24
+ 3. You have to Judge them in their Championship Peak
25
+ 4. Chris Weidman
26
+ 5. Connor McGregor
27
+ 6. Leg Breaking - Shin calcification and breaking baseball bats
28
+
29
+
30
+ # References:
31
+ 1. Joe Rogan - Interview #2219
32
+ 2. Donald J Trump
33
+ """
34
+
35
+ st.markdown("""
36
+
37
+ {Boxing_and_MMA_Commentary_and_Knowledge}
38
+
39
+ """)