mattritchey commited on
Commit
f3246de
·
verified ·
1 Parent(s): ee63323

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +6 -1
app.py CHANGED
@@ -1,4 +1,9 @@
 
 
 
1
 
 
 
2
 
3
  import streamlit as st
4
  import pandas as pd
@@ -93,7 +98,7 @@ def google_address(address):
93
  'Description':[i.description for i in all_data],})
94
 
95
  df=df.query("Title==Title")
96
- df['Link']=df['Link'].str.replace('/www.','www.')
97
 
98
  # df['Description']=df['Description'].bfill()
99
  df['Address Output']=df['Title'].str.extract(r'(.+? \d{5})').fillna("**DID NOT EXTRACT ADDRESS**")
 
1
+ # -*- coding: utf-8 -*-
2
+ """
3
+ Created on Fri Feb 14 08:01:05 2025
4
 
5
+ @author: mritchey
6
+ """
7
 
8
  import streamlit as st
9
  import pandas as pd
 
98
  'Description':[i.description for i in all_data],})
99
 
100
  df=df.query("Title==Title")
101
+ df['Link']=df['Link'].str.replace('/www.','https://www.')
102
 
103
  # df['Description']=df['Description'].bfill()
104
  df['Address Output']=df['Title'].str.extract(r'(.+? \d{5})').fillna("**DID NOT EXTRACT ADDRESS**")