• <small id='cuqmc'></small><noframes id='cuqmc'>

  • <i id='cuqmc'><tr id='cuqmc'><dt id='cuqmc'><q id='cuqmc'><span id='cuqmc'><b id='cuqmc'><form id='cuqmc'><ins id='cuqmc'></ins><ul id='cuqmc'></ul><sub id='cuqmc'></sub></form><legend id='cuqmc'></legend><bdo id='cuqmc'><pre id='cuqmc'><center id='cuqmc'></center></pre></bdo></b><th id='cuqmc'></th></span></q></dt></tr></i><div id='cuqmc'><tfoot id='cuqmc'></tfoot><dl id='cuqmc'><fieldset id='cuqmc'></fieldset></dl></div>

  • <tfoot id='cuqmc'></tfoot>

      1. <legend id='cuqmc'><style id='cuqmc'><dir id='cuqmc'><q id='cuqmc'></q></dir></style></legend>
        • <bdo id='cuqmc'></bdo><ul id='cuqmc'></ul>

        使用 django 作为 CLI 工具

        时间:2023-07-04
          <tbody id='5vHlj'></tbody>
          • <bdo id='5vHlj'></bdo><ul id='5vHlj'></ul>
          • <small id='5vHlj'></small><noframes id='5vHlj'>

              <legend id='5vHlj'><style id='5vHlj'><dir id='5vHlj'><q id='5vHlj'></q></dir></style></legend>
                <tfoot id='5vHlj'></tfoot>

                  <i id='5vHlj'><tr id='5vHlj'><dt id='5vHlj'><q id='5vHlj'><span id='5vHlj'><b id='5vHlj'><form id='5vHlj'><ins id='5vHlj'></ins><ul id='5vHlj'></ul><sub id='5vHlj'></sub></form><legend id='5vHlj'></legend><bdo id='5vHlj'><pre id='5vHlj'><center id='5vHlj'></center></pre></bdo></b><th id='5vHlj'></th></span></q></dt></tr></i><div id='5vHlj'><tfoot id='5vHlj'></tfoot><dl id='5vHlj'><fieldset id='5vHlj'></fieldset></dl></div>
                  本文介绍了使用 django 作为 CLI 工具的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                  问题描述

                  使用 Django 框架开发命令行界面工具有什么意义吗?就我而言,不会有任何图形界面.使用它可以获得什么好处?或者,也许您知道任何其他有用的 CLI 框架?我想强调一下使用 REST API 发出 HTTP 请求.

                  Is there any sense in using Django framework for developing Command Line Interface tool? In my case there won't be any graphical interface. What benefits can I get using it? Or maybe you know any other useful frameworks for CLI? I'd like to put an accent on making HTTP requests with REST API.

                  更新:谢谢大家!我宁愿使用 REST API 而不是在我的工具中创建它.

                  UPDATE: Thanks guys! I would like rather to use REST API than create it in my tool.

                  推荐答案

                  虽然 django 主要用于 Web 应用程序,但它具有强大且易于使用的 ORM,也可用于 CLI 应用程序.要将 django 脚本用作没有网络服务器的独立脚本,您只需将以下内容添加到文件顶部.

                  While django is primarily for web apps it has a powerful and easy to use ORM that can be used for CLI apps as well. To use django script as a standalone script without a webserver, all you need to do is to add the following to the top of the file.

                  import os, sys
                  if __name__ == '__main__':
                      # Setup environ
                      sys.path.append(os.getcwd())
                      os.environ.setdefault("DJANGO_SETTINGS_MODULE", "main.settings")
                  
                      # Setup django
                      import django
                      django.setup()
                  
                      # now you can import your ORM models 
                  

                  这篇关于使用 django 作为 CLI 工具的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                  上一篇:Python REST(Web 服务)框架的推荐? 下一篇:Mac OS X 上 Python 的框架和非框架构建之间的差异

                  相关文章

                  <i id='eLATO'><tr id='eLATO'><dt id='eLATO'><q id='eLATO'><span id='eLATO'><b id='eLATO'><form id='eLATO'><ins id='eLATO'></ins><ul id='eLATO'></ul><sub id='eLATO'></sub></form><legend id='eLATO'></legend><bdo id='eLATO'><pre id='eLATO'><center id='eLATO'></center></pre></bdo></b><th id='eLATO'></th></span></q></dt></tr></i><div id='eLATO'><tfoot id='eLATO'></tfoot><dl id='eLATO'><fieldset id='eLATO'></fieldset></dl></div>

                  1. <small id='eLATO'></small><noframes id='eLATO'>

                    <legend id='eLATO'><style id='eLATO'><dir id='eLATO'><q id='eLATO'></q></dir></style></legend>
                    <tfoot id='eLATO'></tfoot>
                      <bdo id='eLATO'></bdo><ul id='eLATO'></ul>