Zachary Blackwood

Results 48 comments of Zachary Blackwood

FYI, the "navigate to another page" functionality is available today through streamlit extras https://extras.streamlit.app/Switch%20page%20function

@AbrahamSanders Good question. Turns out, it doesn't really matter in practice, since the page list should already be cached by the time you get to that line, so it just...

@gustavz If you use the solution that @juanblue2022 provided (removing `controls`) it should work ```python import base64 import streamlit as st def autoplay_audio(file_path: str): with open(file_path, "rb") as f: data...

Can you please provide a reproducible script which shows this issue?

Could you share the code you're using to create the map?

It looks like you should be able to just add different objects to a LayerGroup, and then when you add Draw, pass that feature group to it to make it...

Here's a new component I created to solve this issue: https://github.com/blackary/streamlit-image-coordinates

> btw. It might be good to test if the function signature is preserved (which I think should work fine in this case) via `help()` @LukasMasuch I was thinking the...

@arnaudmiribel To be honest, I like the dunder attributes better because it doesn't actually run anything when you import an extra. What if you slightly modified this, and make a...

Also a checkbox to disable certain inputs would be nice