Skip to content

Instantly share code, notes, and snippets.

@jeremyjordan
jeremyjordan / pages.py
Last active July 22, 2023 13:13
Streamlit Paginated Example
import numpy as np
import streamlit as st
from .streamlit_utils import SessionState
session_state = SessionState.get(page=1)
def main():
# Render the readme as markdown using st.markdown.