Spaces:
Runtime error
Runtime error
File size: 876 Bytes
48fc275 0135459 48fc275 0135459 48fc275 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 |
"""All app-specific data and disk-IO related functionality implemented here"""
import os
import pymongo
import streamlit as st
@st.cache_resource
def __get_db():
"""Connect to MongoDB Atlas instances"""
client = pymongo.MongoClient(os.getenv("MONGO_CONN_STR"))
return client
def get_access_counter():
client = __get_db()
"""Get the current access count from the database"""
access_counter = client["mydb"]["access-counter"].find_one()
return access_counter
def update_access_count():
"""Update the current access count by 1 in the database"""
client = __get_db()
access_counter = get_access_counter()
updated_count = access_counter["current-count"] + 1
client["mydb"]["access-counter"].update_one(
{"_id": access_counter["_id"]},
{"$set": {"current-count": updated_count}},
)
return updated_count
|