Created
August 3, 2023 02:12
-
-
Save oeway/8614df759d18570d7816087cbab0a211 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<docs lang="markdown"> | |
[TODO: write documentation for this plugin.] | |
</docs> | |
<config lang="json"> | |
{ | |
"name": "stlite Demo", | |
"type": "window", | |
"tags": [], | |
"ui": "", | |
"version": "0.1.0", | |
"cover": "", | |
"description": "[TODO: describe this plugin with one sentence.]", | |
"icon": "extension", | |
"inputs": null, | |
"outputs": null, | |
"api_version": "0.1.8", | |
"env": "", | |
"permissions": [], | |
"requirements": ["https://cdn.jsdelivr.net/npm/@stlite/[email protected]/build/stlite.css", "https://cdn.jsdelivr.net/npm/@stlite/[email protected]/build/stlite.js"], | |
"dependencies": [], | |
"defaults": {"w": 20, "h": 10} | |
} | |
</config> | |
<script lang="javascript"> | |
class ImJoyPlugin { | |
async setup() { | |
api.log('initialized') | |
} | |
async run(ctx) { | |
stlite.mount( | |
{ | |
requirements: ["matplotlib"], // Packages to install | |
entrypoint: "streamlit_app.py", // The target file of the `streamlit run` command | |
files: { | |
"streamlit_app.py": ` | |
import streamlit as st | |
import matplotlib.pyplot as plt | |
import numpy as np | |
size = st.slider("Sample size", 100, 1000) | |
arr = np.random.normal(1, 1, size=size) | |
fig, ax = plt.subplots() | |
ax.hist(arr, bins=20) | |
st.pyplot(fig) | |
`, | |
}, | |
}, | |
document.getElementById("root") | |
); | |
} | |
} | |
api.export(new ImJoyPlugin()) | |
</script> | |
<window lang="html"> | |
<div id="root"> | |
</div> | |
</window> | |
<style lang="css"> | |
</style> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment