Security News
Maven Central Adds Sigstore Signature Validation
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.
This streamlit component uses react beautiful dnd to provide you a kanban structure where you can create dinamically the kanban columns and cards with also dynamic fields
Streamlit component that allows you to render a Kanban Board in the Screen and Retrive User Updates
pip install streamlit-kanban
This should be used with session state to hold the current state of the kanban,
more information you can find in the sample code example.py
#The component should receive a data structure JSON like this sample below:
data = {
"columns": [
{
"id": "todo",
"title": "To Do",
"cards": [
{"id": "card-1", "name": "Task 1", "fields": ["Bug"], "color": "#FF5555"},
{"id": "card-2", "name": "Task 2", "fields": ["Bug"], "color": "#55FF55"},
],
},
{
"id": "in-progress",
"title": "In Progress",
"cards": [
{"id": "card-3", "name": "Task 3", "fields": ["Bug"], "color": "#5555FF"},
],
},
{"id": "done", "title": "Done", "cards": []},
]
}
For more example on how to call it please look into example.py file
FAQs
This streamlit component uses react beautiful dnd to provide you a kanban structure where you can create dinamically the kanban columns and cards with also dynamic fields
We found that streamlit-kanban 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
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.
Security News
CISOs are racing to adopt AI for cybersecurity, but hurdles in budgets and governance may leave some falling behind in the fight against cyber threats.
Research
Security News
Socket researchers uncovered a backdoored typosquat of BoltDB in the Go ecosystem, exploiting Go Module Proxy caching to persist undetected for years.