Update app.py
Browse files
app.py
CHANGED
|
@@ -17,8 +17,11 @@ if run:
|
|
| 17 |
Manager.run('Temp')
|
| 18 |
file = open("PDF Cases/Temp/processed.pkl",'rb')
|
| 19 |
C = pickle.load(file)
|
| 20 |
-
st.write("Case Name
|
| 21 |
st.write(C.date)
|
|
|
|
|
|
|
|
|
|
| 22 |
|
| 23 |
cols = st.columns(4)
|
| 24 |
image_filenames = [f for f in os.listdir('PDF Cases/Temp') if 'processed.png' in f]
|
|
|
|
| 17 |
Manager.run('Temp')
|
| 18 |
file = open("PDF Cases/Temp/processed.pkl",'rb')
|
| 19 |
C = pickle.load(file)
|
| 20 |
+
st.write("Case Name:\t" + C.case_name)
|
| 21 |
st.write(C.date)
|
| 22 |
+
st.write("Citation:\t" + C.case_citation)
|
| 23 |
+
st.write("Cert Info:\t" + C.cert_info)
|
| 24 |
+
st.write("Majority:\t" + C.majority.author)
|
| 25 |
|
| 26 |
cols = st.columns(4)
|
| 27 |
image_filenames = [f for f in os.listdir('PDF Cases/Temp') if 'processed.png' in f]
|