awacke1 commited on
Commit
707d0de
โ€ข
1 Parent(s): bc7d3cc

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +16 -12
app.py CHANGED
@@ -3,6 +3,21 @@ import pandas as pd
3
  import os
4
  import glob
5
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
6
  # Define headers for dataframe
7
  headers = [
8
  "NPI", "EntityTypeCode", "ReplacementNPI", "EmployerIdentificationNumberEIN",
@@ -40,18 +55,7 @@ def find_state_files():
40
 
41
  specialties = load_specialties()
42
 
43
- # Set page configuration with a title and favicon
44
- st.set_page_config(
45
- page_title="๐Ÿฉบ๐Ÿ” Care Team Finder - Care Providers by Specialty and Location",
46
- page_icon="๐Ÿฉบ",
47
- layout="wide",
48
- initial_sidebar_state="expanded",
49
- menu_items={
50
- 'Get Help': 'https://huggingface.co/awacke1',
51
- 'Report a bug': "https://huggingface.co/spaces/awacke1/WebDataDownload",
52
- 'About': "# ๐Ÿฉบ๐Ÿ” Care Team Finder By Aaron Wacker - https://huggingface.co/awacke1"
53
- }
54
- )
55
 
56
  st.markdown("# ๐Ÿฉบ๐Ÿ” Care Team Finder ")
57
  st.markdown("#### Search for Care Providers by Specialty and Location")
 
3
  import os
4
  import glob
5
 
6
+
7
+ # Set page configuration with a title and favicon
8
+ st.set_page_config(
9
+ page_title="๐Ÿฉบ๐Ÿ” Care Team Finder - Care Providers by Specialty and Location",
10
+ page_icon="๐Ÿฉบ",
11
+ layout="wide",
12
+ initial_sidebar_state="expanded",
13
+ menu_items={
14
+ 'Get Help': 'https://huggingface.co/awacke1',
15
+ 'Report a bug': "https://huggingface.co/spaces/awacke1/WebDataDownload",
16
+ 'About': "# ๐Ÿฉบ๐Ÿ” Care Team Finder By Aaron Wacker - https://huggingface.co/awacke1"
17
+ }
18
+ )
19
+
20
+
21
  # Define headers for dataframe
22
  headers = [
23
  "NPI", "EntityTypeCode", "ReplacementNPI", "EmployerIdentificationNumberEIN",
 
55
 
56
  specialties = load_specialties()
57
 
58
+
 
 
 
 
 
 
 
 
 
 
 
59
 
60
  st.markdown("# ๐Ÿฉบ๐Ÿ” Care Team Finder ")
61
  st.markdown("#### Search for Care Providers by Specialty and Location")