flask-script
flask-script copied to clipboard
Flask extension to help writing external scripts for Flask applications
Flask now ships the `run` command and a relatively flexible built-in CLI interface: https://flask.palletsprojects.com/en/1.1.x/cli/ @smurfix can you archive this repo? That would indicate to folks they should use that instead.
I'm trying to use type hinting from [PEP 484](https://www.python.org/dev/peps/pep-0484/) valid since Python 3.5, but I'm getting an error: `ValueError: Function has keyword-only arguments or annotations, use getfullargspec() API which can...
Hello, I'm getting the following deprecation warning when decorating a function with manager.command in Python 3.6: ```bash /usr/local/lib/python3.6/dist-packages/flask_script/commands.py:118: DeprecationWarning: inspect.getargspec() is deprecated, use inspect.signature() or inspect.getfullargspec() args, varargs, keywords, defaults...
Will there be a release with the [fix for `flask.ext.script`import error](https://github.com/smurfix/flask-script/commit/fcf894b6e4d0ad17489480b722c870aaea600db1)? I am trying to build the package for Fedora, and I get an error when running tests: ``` ImportError...
Addresses issue #159 The functionality documented seems to have been lost in 4d09a6a2f6169c622eb996be81fe8532f22a3b03
Remove a typo.
This adds a function to parse the docstring of command functions and which extracts Sphinx-style `:param the_parameter:` declarations which then get put into the help text provided with the corresponding...
Today, I was trying to handle configurable extensions commands availability. That is, I want to be able to add commands to my manager based on the available extensions configured with...
I'm not sure how I want to do the transition myself yet but I'm more than happy with how Click (http://click.pocoo.org/) (and the integration of it into Flask 1.0) is...