view changes
Browse files
app.py
CHANGED
@@ -430,7 +430,7 @@ def LatestExtractedSkills():
|
|
430 |
df = pd.read_sql_query(dbQuery, conn)
|
431 |
st.dataframe(df,use_container_width = True, hide_index = True)
|
432 |
def Last20JD():
|
433 |
-
dbQuery = "select * from
|
434 |
conn = psycopg2.connect(**db_params)
|
435 |
df = pd.read_sql_query(dbQuery, conn)
|
436 |
st.dataframe(df,use_container_width = True, hide_index = True)
|
|
|
430 |
df = pd.read_sql_query(dbQuery, conn)
|
431 |
st.dataframe(df,use_container_width = True, hide_index = True)
|
432 |
def Last20JD():
|
433 |
+
dbQuery = "select * from ProfileMatch"
|
434 |
conn = psycopg2.connect(**db_params)
|
435 |
df = pd.read_sql_query(dbQuery, conn)
|
436 |
st.dataframe(df,use_container_width = True, hide_index = True)
|