![Create React App Officially Deprecated Amid React 19 Compatibility Issues](https://cdn.sanity.io/images/cgdhsj6q/production/04fa08cf844d798abc0e1a6391c129363cc7e2ab-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Create React App Officially Deprecated Amid React 19 Compatibility Issues
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
A console-based Kanban task manager created in Python.
Create and manage tasks visually in your terminal using simple commands.
Install using pip running the following command in the terminal:
pip install kanbanpy
kanbanpy requires a config file located in the user's home directory. This file
can be generated using the setup
command:
# Run the setup wizard
kanbanpy setup
# Or use the defaults
kanbanpy setup -y
If you installed the library, you can use the CLI as a system command:
kanbanpy [...args]
Or call it as a Python import:
python -m kanbanpy [...args]
Here are some examples of the commands available:
# Just display the kanban board
kanbanpy
# Create a new task
kanbanpy create "A new todo"
# Move task with id 1 to the next status
kanbanpy next 1
# Revert a task with id 1 to the previous status
kanbanpy prev 1
# Remove task with id 1
kanbanpy remove 1
Commands also have convenient aliases:
create
: c
next
: n
prev
: p
remove
: r
To explore the full list of commands, run:
kanbanpy --help
A handful technique is to define a shell alias to call the cli and take advantage of the command aliases defined by the package.
# Instead of running:
kanbanpy create "my new todo"
# Define an alias in your .bashrc or .zshrc:
alias kb="kanbanpy"
# And type shorter commands:
kb c "my new todo"
Include a '!' in a task todo to mark it as important. The task will be highlighted when displaying the board:
kanbanpy create "an important todo!"
kanbanpy create "project!: todo title"
kanbanpy create "(!) new todo"
Thank you for considering contributing to my project! Any pull requests are welcome and greatly appreciated. If you encounter any issues while using the project, please feel free to post them on the issue tracker.
To contribute to the project, please follow these steps:
This project is licensed under the MIT License. See the LICENSE file for more details.
FAQs
A console-based Kanban task manager created in Python.
We found that kanbanpy 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
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.