
Security News
NVD Quietly Sweeps 100K+ CVEs Into a “Deferred” Black Hole
NVD now marks all pre-2018 CVEs as "Deferred," signaling it will no longer enrich older vulnerabilities, further eroding trust in its data.
Minimalistic dashboard app for visualizing tabular data -- WIP.
pip install tabloo
Run tabloo from within Python on an instance of a Pandas DataFrame:
# given a pandas dataframe `df`
import tabloo
tabloo.show(df)
Run tabloo from the command line on a CSV file:
tabloo_cli my.csv
Tabloo decouples the visualization frontend from the data backend. You could drive the frontend by arbitrary data backends, i.e., instead of running from DataFrames, you may implement a backend accessing other data sources like databases. This implies that backends can be implemented in any other language. Currently the backend API is still under development and may change. For now, the flask backend can serve as a reference implementation.
Currently the "Filter" input element accepts DataFrame.query()
expressions.
It handles expressions like:
# filter by specific values
SomeColumn == "some value"
# standard inequality operations are supported
SomeNumberColumn > 0
# it's possible to use advanced string conditions via `.str`
SomeStringColumn.str.len() < 10
# Combining conditions is possible with & | and or
ColumnA == 42 & SomeStringColumn.str.contains("substring")
Refer to documentation of query() for more examples.
Note: Eventually the syntax may change into a Pandas agnostic syntax to simplify implementations in non-Pandas backends.
FAQs
Minimalistic dashboard app for visualizing tabular data
We found that tabloo 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.
Security News
NVD now marks all pre-2018 CVEs as "Deferred," signaling it will no longer enrich older vulnerabilities, further eroding trust in its data.
Research
Security News
Lazarus-linked threat actors expand their npm malware campaign with new RAT loaders, hex obfuscation, and over 5,600 downloads across 11 packages.
Security News
Safari 18.4 adds support for Iterator Helpers and two other TC39 JavaScript features, bringing full cross-browser coverage to key parts of the ECMAScript spec.