Spaces:
Runtime error
Runtime error
Add comments referring to the original file URLs
Browse files- pages/3dmol.py +2 -0
- pages/Ace.py +2 -0
- pages/AgGrid.py +2 -0
- pages/Agraph.py +2 -0
- pages/Analytics.py +2 -0
- pages/Annotated_Text.py +2 -0
- pages/Authenticator.py +2 -0
- pages/Bokeh_Events.py +2 -0
- pages/Cropper.py +2 -0
- pages/D3_Demo.py +2 -0
- pages/Discourse.py +2 -0
- pages/Disqus.py +2 -0
- pages/Drawable_Canvas.py +2 -0
- pages/Echarts.py +2 -0
- pages/Elements.py +2 -0
- pages/Embedcode.py +2 -0
- pages/Extras.py +2 -0
- pages/Folium.py +2 -0
- pages/HiPlot.py +2 -0
- pages/Lottie.py +2 -0
- pages/Observable.py +2 -0
- pages/On_Hover_Tabs.py +2 -0
- pages/Option_Menu.py +2 -0
- pages/Pandas_Profiling.py +2 -0
- pages/Player.py +2 -0
- pages/Tags.py +2 -0
- pages/Vega-Lite.py +2 -0
- pages/WebRTC.py +2 -0
- pages/spaCy.py +1 -0
pages/3dmol.py
CHANGED
@@ -1,2 +1,4 @@
|
|
|
|
|
|
1 |
from stmol import *
|
2 |
showmol(render_pdb(id = '1A2C'))
|
|
|
1 |
+
# Copied from https://github.com/napoles-uach/stmol
|
2 |
+
|
3 |
from stmol import *
|
4 |
showmol(render_pdb(id = '1A2C'))
|
pages/Ace.py
CHANGED
@@ -1,3 +1,5 @@
|
|
|
|
|
|
1 |
import streamlit as st
|
2 |
|
3 |
from streamlit_ace import st_ace
|
|
|
1 |
+
# Copied from https://github.com/okld/streamlit-ace
|
2 |
+
|
3 |
import streamlit as st
|
4 |
|
5 |
from streamlit_ace import st_ace
|
pages/AgGrid.py
CHANGED
@@ -1,3 +1,5 @@
|
|
|
|
|
|
1 |
from st_aggrid import AgGrid
|
2 |
import pandas as pd
|
3 |
|
|
|
1 |
+
# Copied from https://github.com/PablocFonseca/streamlit-aggrid
|
2 |
+
|
3 |
from st_aggrid import AgGrid
|
4 |
import pandas as pd
|
5 |
|
pages/Agraph.py
CHANGED
@@ -1,3 +1,5 @@
|
|
|
|
|
|
1 |
import streamlit
|
2 |
from streamlit_agraph import agraph, Node, Edge, Config
|
3 |
|
|
|
1 |
+
# Copied from https://github.com/ChrisDelClea/streamlit-agraph
|
2 |
+
|
3 |
import streamlit
|
4 |
from streamlit_agraph import agraph, Node, Edge, Config
|
5 |
|
pages/Analytics.py
CHANGED
@@ -1,3 +1,5 @@
|
|
|
|
|
|
1 |
import streamlit as st
|
2 |
import streamlit_analytics
|
3 |
|
|
|
1 |
+
# Copied from https://github.com/jrieke/streamlit-analytics
|
2 |
+
|
3 |
import streamlit as st
|
4 |
import streamlit_analytics
|
5 |
|
pages/Annotated_Text.py
CHANGED
@@ -1,3 +1,5 @@
|
|
|
|
|
|
1 |
import streamlit as st
|
2 |
from annotated_text import annotated_text
|
3 |
|
|
|
1 |
+
# Copied from https://github.com/tvst/st-annotated-text
|
2 |
+
|
3 |
import streamlit as st
|
4 |
from annotated_text import annotated_text
|
5 |
|
pages/Authenticator.py
CHANGED
@@ -1,3 +1,5 @@
|
|
|
|
|
|
1 |
import yaml
|
2 |
|
3 |
import streamlit as st
|
|
|
1 |
+
# Copied from https://github.com/mkhorasani/Streamlit-Authenticator
|
2 |
+
|
3 |
import yaml
|
4 |
|
5 |
import streamlit as st
|
pages/Bokeh_Events.py
CHANGED
@@ -1,3 +1,5 @@
|
|
|
|
|
|
1 |
import streamlit as st
|
2 |
from bokeh.plotting import figure
|
3 |
from bokeh.models import ColumnDataSource, CustomJS
|
|
|
1 |
+
# Copied from https://github.com/ash2shukla/streamlit-bokeh-events
|
2 |
+
|
3 |
import streamlit as st
|
4 |
from bokeh.plotting import figure
|
5 |
from bokeh.models import ColumnDataSource, CustomJS
|
pages/Cropper.py
CHANGED
@@ -1,3 +1,5 @@
|
|
|
|
|
|
1 |
import streamlit as st
|
2 |
from streamlit_cropper import st_cropper
|
3 |
from PIL import Image
|
|
|
1 |
+
# Copied from https://github.com/turner-anderson/streamlit-cropper
|
2 |
+
|
3 |
import streamlit as st
|
4 |
from streamlit_cropper import st_cropper
|
5 |
from PIL import Image
|
pages/D3_Demo.py
CHANGED
@@ -1,3 +1,5 @@
|
|
|
|
|
|
1 |
import random
|
2 |
from streamlit_d3_demo import d3_line
|
3 |
|
|
|
1 |
+
# Copied from https://github.com/andfanilo/streamlit-d3-demo
|
2 |
+
|
3 |
import random
|
4 |
from streamlit_d3_demo import d3_line
|
5 |
|
pages/Discourse.py
CHANGED
@@ -1,3 +1,5 @@
|
|
|
|
|
|
1 |
from streamlit_discourse import st_discourse
|
2 |
|
3 |
# https://discuss.streamlit.io/t/discourse-component/8061
|
|
|
1 |
+
# Copied from https://github.com/okld/streamlit-discourse
|
2 |
+
|
3 |
from streamlit_discourse import st_discourse
|
4 |
|
5 |
# https://discuss.streamlit.io/t/discourse-component/8061
|
pages/Disqus.py
CHANGED
@@ -1,3 +1,5 @@
|
|
|
|
|
|
1 |
from streamlit_disqus import st_disqus
|
2 |
|
3 |
st_disqus("streamlit-disqus-demo")
|
|
|
1 |
+
# Copied from https://github.com/okld/streamlit-disqus
|
2 |
+
|
3 |
from streamlit_disqus import st_disqus
|
4 |
|
5 |
st_disqus("streamlit-disqus-demo")
|
pages/Drawable_Canvas.py
CHANGED
@@ -1,3 +1,5 @@
|
|
|
|
|
|
1 |
import pandas as pd
|
2 |
from PIL import Image
|
3 |
import streamlit as st
|
|
|
1 |
+
# Copied from https://github.com/andfanilo/streamlit-drawable-canvas
|
2 |
+
|
3 |
import pandas as pd
|
4 |
from PIL import Image
|
5 |
import streamlit as st
|
pages/Echarts.py
CHANGED
@@ -1,3 +1,5 @@
|
|
|
|
|
|
1 |
from streamlit_echarts import st_echarts
|
2 |
|
3 |
options = {
|
|
|
1 |
+
# Copied from https://github.com/andfanilo/streamlit-echarts
|
2 |
+
|
3 |
from streamlit_echarts import st_echarts
|
4 |
|
5 |
options = {
|
pages/Elements.py
CHANGED
@@ -1,3 +1,5 @@
|
|
|
|
|
|
1 |
# First, import the elements you need
|
2 |
|
3 |
from streamlit_elements import elements, mui, html
|
|
|
1 |
+
# Copied from https://github.com/okld/streamlit-elements
|
2 |
+
|
3 |
# First, import the elements you need
|
4 |
|
5 |
from streamlit_elements import elements, mui, html
|
pages/Embedcode.py
CHANGED
@@ -1,3 +1,5 @@
|
|
|
|
|
|
1 |
import streamlit as st
|
2 |
from streamlit_embedcode import github_gist
|
3 |
|
|
|
1 |
+
# Copied from https://github.com/randyzwitch/streamlit-embedcode
|
2 |
+
|
3 |
import streamlit as st
|
4 |
from streamlit_embedcode import github_gist
|
5 |
|
pages/Extras.py
CHANGED
@@ -1,3 +1,5 @@
|
|
|
|
|
|
1 |
from streamlit_extras.stoggle import stoggle
|
2 |
|
3 |
stoggle(
|
|
|
1 |
+
# Copied from https://github.com/arnaudmiribel/streamlit-extras
|
2 |
+
|
3 |
from streamlit_extras.stoggle import stoggle
|
4 |
|
5 |
stoggle(
|
pages/Folium.py
CHANGED
@@ -1,3 +1,5 @@
|
|
|
|
|
|
1 |
"""
|
2 |
This sample code has been copied from
|
3 |
https://github.com/randyzwitch/streamlit-folium/blob/master/examples/streamlit_app.py
|
|
|
1 |
+
# Copied from https://github.com/randyzwitch/streamlit-folium
|
2 |
+
|
3 |
"""
|
4 |
This sample code has been copied from
|
5 |
https://github.com/randyzwitch/streamlit-folium/blob/master/examples/streamlit_app.py
|
pages/HiPlot.py
CHANGED
@@ -1,3 +1,5 @@
|
|
|
|
|
|
1 |
"""
|
2 |
This sample code has been copied from
|
3 |
https://facebookresearch.github.io/hiplot/tuto_streamlit.html
|
|
|
1 |
+
# Copied from https://github.com/facebookresearch/hiplot
|
2 |
+
|
3 |
"""
|
4 |
This sample code has been copied from
|
5 |
https://facebookresearch.github.io/hiplot/tuto_streamlit.html
|
pages/Lottie.py
CHANGED
@@ -1,3 +1,5 @@
|
|
|
|
|
|
1 |
import time
|
2 |
import requests
|
3 |
|
|
|
1 |
+
# Copied from https://github.com/andfanilo/streamlit-lottie
|
2 |
+
|
3 |
import time
|
4 |
import requests
|
5 |
|
pages/Observable.py
CHANGED
@@ -1,3 +1,5 @@
|
|
|
|
|
|
1 |
import streamlit as st
|
2 |
from streamlit_observable import observable
|
3 |
|
|
|
1 |
+
# Copied from https://github.com/asg017/streamlit-observable
|
2 |
+
|
3 |
import streamlit as st
|
4 |
from streamlit_observable import observable
|
5 |
|
pages/On_Hover_Tabs.py
CHANGED
@@ -1,3 +1,5 @@
|
|
|
|
|
|
1 |
from st_on_hover_tabs import on_hover_tabs
|
2 |
import streamlit as st
|
3 |
st.set_page_config(layout="wide")
|
|
|
1 |
+
# Copied from https://github.com/Socvest/streamlit-on-Hover-tabs
|
2 |
+
|
3 |
from st_on_hover_tabs import on_hover_tabs
|
4 |
import streamlit as st
|
5 |
st.set_page_config(layout="wide")
|
pages/Option_Menu.py
CHANGED
@@ -1,3 +1,5 @@
|
|
|
|
|
|
1 |
import streamlit as st
|
2 |
from streamlit_option_menu import option_menu
|
3 |
|
|
|
1 |
+
# Copied from https://github.com/victoryhb/streamlit-option-menu
|
2 |
+
|
3 |
import streamlit as st
|
4 |
from streamlit_option_menu import option_menu
|
5 |
|
pages/Pandas_Profiling.py
CHANGED
@@ -1,3 +1,5 @@
|
|
|
|
|
|
1 |
import pandas as pd
|
2 |
import pandas_profiling
|
3 |
import streamlit as st
|
|
|
1 |
+
# Copied from https://github.com/okld/streamlit-pandas-profiling
|
2 |
+
|
3 |
import pandas as pd
|
4 |
import pandas_profiling
|
5 |
import streamlit as st
|
pages/Player.py
CHANGED
@@ -1,3 +1,5 @@
|
|
|
|
|
|
1 |
from streamlit_player import st_player
|
2 |
|
3 |
# Embed a youtube video
|
|
|
1 |
+
# https://github.com/okld/streamlit-player
|
2 |
+
|
3 |
from streamlit_player import st_player
|
4 |
|
5 |
# Embed a youtube video
|
pages/Tags.py
CHANGED
@@ -1,3 +1,5 @@
|
|
|
|
|
|
1 |
from streamlit_tags import st_tags, st_tags_sidebar
|
2 |
|
3 |
keywords = st_tags(
|
|
|
1 |
+
# Copied from https://github.com/gagan3012/streamlit-tags
|
2 |
+
|
3 |
from streamlit_tags import st_tags, st_tags_sidebar
|
4 |
|
5 |
keywords = st_tags(
|
pages/Vega-Lite.py
CHANGED
@@ -1,3 +1,5 @@
|
|
|
|
|
|
1 |
import altair as alt
|
2 |
import streamlit as st
|
3 |
import pandas as pd
|
|
|
1 |
+
# Copied from https://github.com/domoritz/streamlit-vega-lite
|
2 |
+
|
3 |
import altair as alt
|
4 |
import streamlit as st
|
5 |
import pandas as pd
|
pages/WebRTC.py
CHANGED
@@ -1,3 +1,5 @@
|
|
|
|
|
|
1 |
from streamlit_webrtc import webrtc_streamer
|
2 |
|
3 |
webrtc_streamer(key="sample")
|
|
|
1 |
+
# Copied from https://github.com/whitphx/streamlit-webrtc
|
2 |
+
|
3 |
from streamlit_webrtc import webrtc_streamer
|
4 |
|
5 |
webrtc_streamer(key="sample")
|
pages/spaCy.py
CHANGED
@@ -1,4 +1,5 @@
|
|
1 |
# Copied from https://github.com/explosion/spacy-streamlit/blob/master/examples/01_out-of-the-box.py
|
|
|
2 |
"""
|
3 |
Very basic out-of-the-box example using the full visualizer. This file can be
|
4 |
run using the "streamlit run" command.
|
|
|
1 |
# Copied from https://github.com/explosion/spacy-streamlit/blob/master/examples/01_out-of-the-box.py
|
2 |
+
|
3 |
"""
|
4 |
Very basic out-of-the-box example using the full visualizer. This file can be
|
5 |
run using the "streamlit run" command.
|