Skip to content

Instantly share code, notes, and snippets.

View robwalton's full-sized avatar

Rob Walton robwalton

View GitHub Profile
@robwalton
robwalton / st_dict_input.py
Created May 20, 2021 11:26
A toy dictionary input widget for Streamlit
import json
from dataclasses import dataclass
from typing import Dict
import inspect
import streamlit as st
try:
import pyperclip
except ImportError: