Spaces:
Running
Running
James McCool
commited on
Commit
·
bae6d41
1
Parent(s):
c7d49f4
Update MongoDB database name in app.py from NHL_Database to MLB_Database to reflect the new data focus.
Browse files
app.py
CHANGED
@@ -27,7 +27,7 @@ def init_conn():
|
|
27 |
|
28 |
uri = st.secrets['mongo_uri']
|
29 |
client = pymongo.MongoClient(uri, retryWrites=True, serverSelectionTimeoutMS=500000)
|
30 |
-
db = client["
|
31 |
|
32 |
gc = gspread.service_account_from_dict(credentials)
|
33 |
|
|
|
27 |
|
28 |
uri = st.secrets['mongo_uri']
|
29 |
client = pymongo.MongoClient(uri, retryWrites=True, serverSelectionTimeoutMS=500000)
|
30 |
+
db = client["MLB_Database"]
|
31 |
|
32 |
gc = gspread.service_account_from_dict(credentials)
|
33 |
|