--- id: flask-script version: "2.0.6" license: BSD license_treatment: permissive maintenance: abandoned --- # Flask-Script — Scripting support for Flask License: permissive · Maintenance: abandoned · Downloads: 424.9K/mo ## What it is and what it does Flask-Script is a deprecated utility library that adds command-line scripting capabilities to Flask applications. It provides decorators and helper classes to define custom management commands that run outside the web server context—useful for administrative tasks, scheduled jobs, and one-off scripts. The package has been abandoned since 2017, with the repository now archived and no active development. Flask itself incorporated command-line tooling as of version 0.11, making Flask-Script largely obsolete. While the maintainers accept pull requests, they explicitly recommend evaluating Flask's built-in CLI before adopting this package. If you are working with an existing Flask-Script codebase or have specific legacy requirements, the package remains available, but new projects should consider Flask's native CLI support instead. Use it for: - Manage administrative tasks in legacy Flask applications that predate Flask's built-in CLI - Run scheduled cronjobs or batch operations tied to a Flask application context - Define custom management commands for database migrations or data seeding in older Flask projects ## Worth the install? AI-flagged interpretation of the facts above — verify before relying. Flask-Script provides command-line interface decorators and utilities for Flask applications, enabling you to write custom script commands for tasks outside your web application. No. The package is abandoned (last release 2017-09-06, repository archived since 2020-03-09), and Flask has included a built-in CLI tool since version 0.11 that supersedes Flask-Script. Install only if maintaining legacy code that already depends on it; for new projects, use Flask's native CLI support. ## Install pip install flask-script uv add flask-script poetry add flask-script ## Installing Flask-Script Before you install: High install friction due to age and abandonment. The repository is archived, last commit was 2020-03-09, and the maintainers explicitly state they are not actively developing features. License in practice: BSD license is permissive, imposing no significant restrictions on use or redistribution. Quickstart: pip install Flask-Script==2.0.6 from flask_script import Manager manager = Manager(app) manager.run() Requires Flask framework to be installed and configured; package is abandoned and no longer maintained Verify before relying: - Whether the package works reliably with modern Python versions beyond 3.5 - Whether Flask's built-in CLI fully replaces Flask-Script's functionality for your use case ## Package facts - License: BSD (permissive) - Python support: unspecified - Install friction: high - Maintenance: abandoned - Downloads: 424.9K/month (top 15,000 on PyPI) - Known vulnerabilities: none known ## Tags flask command line interface, flask script commands, flask cli decorators, flask cronjob utilities, flask management commands, deprecated, legacy [View on SkillFed](https://skillfed.io/packages/flask-script) · [View on PyPI](https://pypi.org/project/flask-script/)