
Research
/Security News
60 Malicious Ruby Gems Used in Targeted Credential Theft Campaign
A RubyGems malware campaign used 60 malicious packages posing as automation tools to steal credentials from social media and marketing tool users.
A simple wrapper on top of Altair to make charts in Streamlit with an express API.
If you're lazy and/or familiar with Altair, this is probably a good fit! Inspired by tvst/plost and plotly-express.
pip install altex
Or with uv (recommended):
uv add altex
import streamlit as st
import altex
import pandas as pd
# Create sample data
data = pd.DataFrame({
'x': range(10),
'y': [i**2 for i in range(10)]
})
# Create and display charts in Streamlit
altex.line_chart(data=data, x='x', y='y', title='My Chart')
altex.bar_chart(data=data, x='x', y='y', color='x')
altex.scatter_chart(data=data, x='x', y='y', opacity=0.7)
Try the interactive demo:
# Clone this repository
git clone https://github.com/arnaudmiribel/altex.git
cd altex
uv sync
uv run streamlit run streamlit_app.py
The demo showcases:
line_chart()
- Line chartsbar_chart()
- Bar chartsarea_chart()
- Area chartsscatter_chart()
- Scatter plotshist_chart()
- Histogramssparkline_chart()
- Sparkline chartssparkbar_chart()
- Spark bar chartssparkarea_chart()
- Spark area chartsApache-2.0
FAQs
A simple wrapper on top of Altair to make charts with an express API
We found that altex demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
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
/Security News
A RubyGems malware campaign used 60 malicious packages posing as automation tools to steal credentials from social media and marketing tool users.
Security News
The CNA Scorecard ranks CVE issuers by data completeness, revealing major gaps in patch info and software identifiers across thousands of vulnerabilities.
Research
/Security News
Two npm packages masquerading as WhatsApp developer libraries include a kill switch that deletes all files if the phone number isn’t whitelisted.