streamlit-embedcode

Streamlit component for embedding code snippets such as GitHub gists, CodePen snippets, Gitlab snippets, etc.

MIT License

Downloads
206.2K
Stars
58
Committers
1

streamlit-embedcode

streamlit-embedcode is the easiest way to embed code snippets into your Streamlit app! This static component supports the following code sharing services:

Installation

streamlit-embedcode is distributed via PyPI:

pip install streamlit-embedcode

Examples

Using streamlit-embedcode is as simple as importing the code service you want to use:

import streamlit as st
from streamlit_embedcode import github_gist

github_gist("https://gist.github.com/randyzwitch/be8c5e9fb5b8e7b046afebcac12e5087/")

Optionally, you can provide arguments for height, width and scrolling to control the behavior of the iframe the content is displayed in.