书栈网 · BookStack 本次搜索耗时 0.028 秒,为您找到 1836 个相关结果.
  • Python

    Dapr Python SDK Available packages Install the Dapr module Note Try it out More information Dapr Python SDK Python SDK packages for developing Dapr applications Dapr offer...
  • 项目结构规范

    项目结构规范 项目结构规范 我们在前面所举的例子基本都是写在一个单一的脚本文件中,比如 app.py ,这在做一些简单的测试中是可行的,但是在较大的项目中则不应该这么做。好的项目结构可以让人更易于查找代码,也易于维护。当然了,每个团队都有自己的项目规范,在这里,我分享自己在平时的开发中经常用到的项目结构,仅供参考。 我们以该 TODO 项目为例,...
  • 使用 SQLite 3

    使用 SQLite 3 按需连接 简化查询 初始化模式 使用 SQLite 3 在 Flask 中可以方便地按需打开数据库连接,并在情境结束时(通常是请求结束时)关闭。 下面是一个如何在 Flask 中使用 SQLite 3 的例子: import sqlite3 from flask import g DATABASE...
  • Chapter 23: Application Programming Interfaces (APIs)

    REST as a Foundation of API Design Client-Server Layered System Cache Code On Demand Stateless Uniform Interface Implementing an API Blueprint Representing Users as JSON Ob...
  • 安全注意事项

    安全注意事项 跨站脚本攻击(XSS) 跨站请求伪造( CSRF ) JSON 安全 安全头部 HTTP Strict Transport Security (HSTS) Content Security Policy (CSP) X-Content-Type-Options X-Frame-Options X-XSS-Protection S...
  • 安全注意事项

    安全注意事项¶ 跨站脚本攻击(XSS)¶ 跨站请求伪造( CSRF )¶ JSON 安全¶ 安全头部¶ HTTP Strict Transport Security (HSTS)¶ Content Security Policy (CSP)¶ X-Content-Type-Options¶ X-Frame-Options¶ X-XSS-Prot...
  • Python

    Python 可用软件包 安装 Dapr 模块 Note 试试吧 详情 Python Dapr提供了帮助开发Python应用程序各种包。 你可以使用他们来创建 Python 客户端、服务器和 virtual actors。 可用软件包 Dapr client for writing Python applications to int...
  • Python

    Python 可用软件包 安装 Dapr 模块 Note 试试吧 详情 Python Dapr提供了帮助开发Python应用程序各种包。 你可以使用他们来创建 Python 客户端、服务器和 virtual actors。 可用软件包 Dapr client for writing Python applications to int...
  • How-To: Route events

    How-To: Route messages to different event handlers Preview feature Introduction Enable message routing Declarative subscription Programmatic subscription Next steps How-To...
  • 使用 SQLite 3

    使用 SQLite 3¶ 按需连接¶ 简化查询¶ 初始化模式¶ 使用 SQLite 3¶ 在 Flask 中可以方便地按需打开数据库连接,并在情境结束时(通常是请求结束时)关闭。 下面是一个如何在 Flask 中使用 SQLite 3 的例子: import sqlite3 from flask import g   DATA...