Skip to content

Instantly share code, notes, and snippets.

@jeremyjordan
jeremyjordan / pages.py
Last active July 1, 2025 22:20
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.