New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

streamlit-kanban

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

streamlit-kanban

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

  • 1.0.0
  • PyPI
  • Socket score

Maintainers
1

streamlit-custom-component

Streamlit component that allows you to render a Kanban Board in the Screen and Retrive User Updates

Installation instructions

pip install streamlit-kanban

Important!

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

Usage instructions


#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


Did you know?

Socket

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc