Connect to a AWS RDS mySQL database example

Actualy, almost…

I have a lot of functions that look like:

def some_query(conn, p1, p2, p3):
    ...

It would be ideal if there was some way to say:

@st.cache(no_cache='conn', ttl=20)
def some_query(conn, p1, p2, p3):
    ...