
Research
Malicious npm Packages Impersonate Flashbots SDKs, Targeting Ethereum Wallet Credentials
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
streamlit-multi-menu
Advanced tools
Streamlit component that allows you to render a menu widget with multiple columns but with only one globally selected value. It is possible to use photos for background inside the menu buttons.
With streamlit_multi_menu you can create a multi-column menu widget (with google icons or background images on the buttons). It allows you to selected just one sub menu across the whole all columns.
pip install streamlit_multi_menu
import streamlit as st
from streamlit_multi_menu import streamlit_multi_menu
### Define Menu
sub_menus = {"Finance":["Stock prediction","Turn around rate"],
"Cars":["Drift","Garage"],
"Food":["Ramen","Bubble Tea","Kitchen Design"]}
# Optinally you can supply google icons
sub_menu_icons = {
"Finance": ["trending_up", "sync_alt"],
"Cars": ["directions_car", "garage"],
"Food": ["restaurant", "local_cafe", "kitchen"]
}
selected_menu = streamlit_multi_menu(menu_titles=list(sub_menus.keys()),
sub_menus=sub_menus,
sub_menu_icons = sub_menu_icons,
use_container_width=True)
if selected_menu != None:
st.write("The selected menu is:",selected_menu)
### Define Menu
sub_menus = {"Finance":["Stock prediction","Turn around rate"],
"Cars":["Drift","Garage"],
"Food":["Ramen","Bubble Tea","Kitchen Design"]}
# Optinally you can supply google icons
sub_menu_icons = {
"Finance": ["trending_up", "sync_alt"],
"Cars": ["directions_car", "garage"],
"Food": ["restaurant", "local_cafe", "kitchen"]
}
# Urls for images
list_of_finance_imgs = ["https://cdn1.vectorstock.com/i/1000x1000/09/30/stock-market-background-or-forex-trading-business-vector-29570930.jpg",
"https://thumbs.dreamstime.com/b/three-part-cycle-diagram-white-background-53987147.jpg"]
list_of_car_imgs = ["https://as1.ftcdn.net/v2/jpg/02/74/00/80/1000_F_274008098_hp9JCh3EM3UctN4ihEYarXY3c6wM7A0e.jpg",
"https://img.freepik.com/free-vector/empty-storehouse-warehouse-interior-factory_1441-3877.jpg?size=626&ext=jpg&ga=GA1.1.1224184972.1710201600&semt=ais"]
# Assign images to corresponding column
sub_menu_imgs = {"Finance":list_of_finance_imgs,
"Cars":list_of_car_imgs}
selected_menu = streamlit_multi_menu(menu_titles=list(sub_menus.keys()),
sub_menus=sub_menus,
sub_menu_imgs=sub_menu_imgs,
sub_menu_icons = sub_menu_icons,
use_container_width=True)
FAQs
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
Security News
Ruby maintainers from Bundler and rbenv teams are building rv to bring Python uv's speed and unified tooling approach to Ruby development.
Security News
Following last week’s supply chain attack, Nx published findings on the GitHub Actions exploit and moved npm publishing to Trusted Publishers.