pwc-india commited on
Commit
4ab64e0
1 Parent(s): 8ef4d78

Update pages/4DEDUPLICATION.py

Browse files
Files changed (1) hide show
  1. pages/4DEDUPLICATION.py +12 -1
pages/4DEDUPLICATION.py CHANGED
@@ -6,8 +6,17 @@ import streamlit as st
6
  import pyodbc
7
  from streamlit_extras.stateful_button import button
8
  import pymssql
 
 
9
 
10
  st.set_page_config(page_title='DUPLICATE RECORDS DETECTION', layout= 'wide')
 
 
 
 
 
 
 
11
  st.title('Detect Duplicate Records')
12
  st.subheader('SELECT TABLE')
13
  conn = pymssql.connect( "Server=sql-ext-dev-uks-001.database.windows.net;"
@@ -125,7 +134,9 @@ if table_selector is not None and btn11:
125
 
126
 
127
 
128
-
 
 
129
 
130
 
131
 
 
6
  import pyodbc
7
  from streamlit_extras.stateful_button import button
8
  import pymssql
9
+ ############
10
+ from streamlit_app import sidebar
11
 
12
  st.set_page_config(page_title='DUPLICATE RECORDS DETECTION', layout= 'wide')
13
+
14
+ ######
15
+ def main():
16
+ # st.title('PAGE TITLE') # Change this for each page
17
+ sidebar()
18
+ ########
19
+
20
  st.title('Detect Duplicate Records')
21
  st.subheader('SELECT TABLE')
22
  conn = pymssql.connect( "Server=sql-ext-dev-uks-001.database.windows.net;"
 
134
 
135
 
136
 
137
+ ######
138
+ if __name__ == '__main__':
139
+ main()
140
 
141
 
142