cools commited on
Commit
8947834
·
1 Parent(s): 321da59

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -16,13 +16,13 @@ import pandas as pd
16
 
17
  st.set_page_config(layout="wide")
18
 
19
- with st.expander:
20
  loc_link = st.text_input('LOC Link', placeholder='https://www.supremecourt.gov/opinions/22pdf/21-476_c185.pdf')
21
  case_num = 0
22
  pdf_links = [loc_link]
23
  print(pdf_links)
24
 
25
- with st. expander:
26
  volume = st.slider('Volume', 500, 550, 525)
27
  r = requests.get('https://www.loc.gov/collections/united-states-reports/?fa=partof%3Au.s.+reports%3A+volume+'+str(volume) +'&st=list&c=250')
28
  soup = BeautifulSoup(r.text)
 
16
 
17
  st.set_page_config(layout="wide")
18
 
19
+ with st.expander("Direct Link"):
20
  loc_link = st.text_input('LOC Link', placeholder='https://www.supremecourt.gov/opinions/22pdf/21-476_c185.pdf')
21
  case_num = 0
22
  pdf_links = [loc_link]
23
  print(pdf_links)
24
 
25
+ with st.expander("US. Reports Case Pull"):
26
  volume = st.slider('Volume', 500, 550, 525)
27
  r = requests.get('https://www.loc.gov/collections/united-states-reports/?fa=partof%3Au.s.+reports%3A+volume+'+str(volume) +'&st=list&c=250')
28
  soup = BeautifulSoup(r.text)