flask-script作用_Python flask

flask-script作用_Python flask安装pipinstallFlask-Script-ihttps://pypi.douban.com/simple Flsak加入flask-script #-*-coding:utf-8-*- imp

Flask-Script

安装pip install Flask-Script -i https://pypi.douban.com/simple  

 

Flsak加入flask-script

  1. # -*- coding: utf-8 -*-  
  2. import apps  
  3. from apps import db  
  4. from flask_script import Manager  
  5. my_app = apps.create_app()  
  6. manager = Manager(my_app)  
  7.     
  8. #  —————- flask_script  
  9. 直接运行命令  
  10. @manager.command  
  11. def runflask():  
  12.     my_app.run()  
  13.     return “ok”  
  14.     
  15. 启动时带参数  
  16. # –name -n的全称, dest是参数的命名  
  17. @manager.option(“-n”, “–name”, dest=“arg”)  
  18. @manager.option(“-s”, “–say”, dest=“say”)  
  19. def open_flask(arg, say):  
  20.     my_app.run(arg, say)  
  21.     return arg, say  
  22.     
  23.     
  24. if __name__ == “__main__”:  
  25.     # my_app.run(“0.0.0.0”, port=5000debug=True)  
  26.     manager.run()  # flask_script  
  27.     
  28.     
  29. 运行   
  30. python manager.py talk -n 赵丽颖 -s 漂亮  
  31. python manager.py talk –name 赵丽颖–say 漂亮  

 

flask-script作用_Python flask

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。
转载请注明出处: https://daima100.com/10326.html

(0)
上一篇 2022-12-29
下一篇 2022-12-29

相关推荐

发表回复

您的电子邮箱地址不会被公开。 必填项已用*标注