manage icon indicating copy to clipboard operation
manage copied to clipboard

add option to auto import all flask modules to shell

Open rochacbruno opened this issue 9 years ago • 0 comments

See flask-konsh

def get_flask_imports():
    ret = {}
    for name in [e for e in dir(flask) if not e.startswith('_')]:
        ret[name] = getattr(flask, name)
    return ret

if in manage.yml shell: import_flask_object: true import all the above

rochacbruno avatar Jul 22 '16 15:07 rochacbruno