积分充值
 首页
前端开发
AngularDartElectronFlutterHTML/CSSJavaScriptReactSvelteTypeScriptVue.js构建工具
后端开发
.NetC#C++C语言DenoffmpegGoIdrisJavaJuliaKotlinLeanMakefilenimNode.jsPascalPHPPythonRISC-VRubyRustSwiftUML其它语言区块链开发测试微服务敏捷开发架构设计汇编语言
数据库
Apache DorisApache HBaseCassandraClickHouseFirebirdGreenplumMongoDBMySQLPieCloudDBPostgreSQLRedisSQLSQLiteTiDBVitess数据库中间件数据库工具数据库设计
系统运维
AndroidDevOpshttpdJenkinsLinuxPrometheusTraefikZabbix存储网络与安全
云计算&大数据
Apache APISIXApache FlinkApache KarafApache KyuubiApache OzonedaprDockerHadoopHarborIstioKubernetesOpenShiftPandasrancherRocketMQServerlessService MeshVirtualBoxVMWare云原生CNCF机器学习边缘计算
综合其他
BlenderGIMPKiCadKritaWeblate产品与服务人工智能亿图数据可视化版本控制笔试面试
文库资料
前端
AngularAnt DesignBabelBootstrapChart.jsCSS3EchartsElectronHighchartsHTML/CSSHTML5JavaScriptJerryScriptJestReactSassTypeScriptVue前端工具小程序
后端
.NETApacheC/C++C#CMakeCrystalDartDenoDjangoDubboErlangFastifyFlaskGinGoGoFrameGuzzleIrisJavaJuliaLispLLVMLuaMatplotlibMicronautnimNode.jsPerlPHPPythonQtRPCRubyRustR语言ScalaShellVlangwasmYewZephirZig算法
移动端
AndroidAPP工具FlutterFramework7HarmonyHippyIoniciOSkotlinNativeObject-CPWAReactSwiftuni-appWeex
数据库
ApacheArangoDBCassandraClickHouseCouchDBCrateDBDB2DocumentDBDorisDragonflyDBEdgeDBetcdFirebirdGaussDBGraphGreenPlumHStreamDBHugeGraphimmudbIndexedDBInfluxDBIoTDBKey-ValueKitDBLevelDBM3DBMatrixOneMilvusMongoDBMySQLNavicatNebulaNewSQLNoSQLOceanBaseOpenTSDBOracleOrientDBPostgreSQLPrestoDBQuestDBRedisRocksDBSequoiaDBServerSkytableSQLSQLiteTiDBTiKVTimescaleDBYugabyteDB关系型数据库数据库数据库ORM数据库中间件数据库工具时序数据库
云计算&大数据
ActiveMQAerakiAgentAlluxioAntreaApacheApache APISIXAPISIXBFEBitBookKeeperChaosChoerodonCiliumCloudStackConsulDaprDataEaseDC/OSDockerDrillDruidElasticJobElasticSearchEnvoyErdaFlinkFluentGrafanaHadoopHarborHelmHudiInLongKafkaKnativeKongKubeCubeKubeEdgeKubeflowKubeOperatorKubernetesKubeSphereKubeVelaKumaKylinLibcloudLinkerdLonghornMeiliSearchMeshNacosNATSOKDOpenOpenEBSOpenKruiseOpenPitrixOpenSearchOpenStackOpenTracingOzonePaddlePaddlePolicyPulsarPyTorchRainbondRancherRediSearchScikit-learnServerlessShardingSphereShenYuSparkStormSupersetXuperChainZadig云原生CNCF人工智能区块链数据挖掘机器学习深度学习算法工程边缘计算
UI&美工&设计
BlenderKritaSketchUI设计
网络&系统&运维
AnsibleApacheAWKCeleryCephCI/CDCurveDevOpsGoCDHAProxyIstioJenkinsJumpServerLinuxMacNginxOpenRestyPrometheusServertraefikTrafficUnixWindowsZabbixZipkin安全防护系统内核网络运维监控
综合其它
文章资讯
 上传文档  发布文章  登录账户
IT文库
  • 综合
  • 文档
  • 文章

无数据

分类

全部后端开发(34)Python(34)Django(3)Flask(2)Jupyter(2)Tornado(1)

语言

全部英语(32)中文(简体)(2)

格式

全部PDF文档 PDF(24)其他文档 其他(9)DOC文档 DOC(1)
 
本次搜索耗时 0.091 秒,为您找到相关结果约 34 个.
  • 全部
  • 后端开发
  • Python
  • Django
  • Flask
  • Jupyter
  • Tornado
  • 全部
  • 英语
  • 中文(简体)
  • 全部
  • PDF文档 PDF
  • 其他文档 其他
  • DOC文档 DOC
  • 默认排序
  • 最新排序
  • 页数排序
  • 大小排序
  • 全部时间
  • 最近一天
  • 最近一周
  • 最近一个月
  • 最近三个月
  • 最近半年
  • 最近一年
  • pdf文档 The Dangerous Flask Hsiaoming Yang

    { "alg": "HS256", "exp": 1568355992, "iat": 1516239022, } • HS256, HS384, HS512 • RS256, RS384, RS512 • ES256, ES384, ES512 • PS256, PS384, PS512 alg alg is defined sign method Json Web
    0 码力 | 38 页 | 2.75 MB | 1 年前
    3
  • pdf文档 Python3 基础教程 - 廖雪峰

    rs = yield from cur.fetchmany(size) else: rs = yield from cur.fetchall() yield from cur.close() logging.info('rows returned: %s' % len(rs)) return return rs SQL 语句的占位符是?,而 MySQL 的占位符是%s,select()函数在内部 自动替换。注意要始终坚持使用带参数的 SQL,而不是自己拼接 SQL 字符串,这样可以防止 SQL 注入攻击。 注意到 yield from 将调用一个子协程(也就是在一个协程中调用另一个 协程)并直接获得子协程的返回结果。 Python3 基础教程【完整版】 http://www key. ' rs = yield from select('%s where `%s`=?' % (cls.__select__, cls.__primary_key__), [pk], 1) if len(rs) == 0: return None return cls(**rs[0]) User 类现在就可以通过类方法实现主键查找:
    0 码力 | 531 页 | 5.15 MB | 1 年前
    3
  • epub文档 Tornado 6.1 Documentation

    # https://github.com/python/cpython/blob/v3.8.0/Lib/selectors.py#L312- L317 rs, ws, xs = select.select(to_read, to_write, to_write) ws = ws + xs except getattr(errno, "WSAENOTSOCK", errno.EBADF): rs, _, _ = select.select([self._waker_r.fileno()], [], [], 0) if rs: ws = [] else: call_soon_threadsafe(self._handle_select, rs, ws) def _handle_select( self, rs: List["_FileDescriptorLike"], ws: List["_FileDescriptorLike"] ) -> None: for r in rs: self._handle_event(r
    0 码力 | 931 页 | 708.03 KB | 1 年前
    3
  • pdf文档 Mypy 1.8.0 Documentation

    the type of "cs" from: a, b, *cs = 1, 2 # error: Need type annotation for "cs" rs: list[int] # no assignment! p, q, *rs = 1, 2 # OK 1.5.3 Explicit types for collections The type checker cannot always
    0 码力 | 234 页 | 902.89 KB | 1 年前
    3
  • epub文档 Mypy 1.10.0+dev Documentation

    the type of "cs" from: a, b, *cs = 1, 2 # error: Need type annotation for "cs" rs: list[int] # no assignment! p, q, *rs = 1, 2 # OK Explicit types for collections The type checker cannot always infer
    0 码力 | 318 页 | 270.84 KB | 1 年前
    3
  • epub文档 Mypy 1.8.0 Documentation

    the type of "cs" from: a, b, *cs = 1, 2 # error: Need type annotation for "cs" rs: list[int] # no assignment! p, q, *rs = 1, 2 # OK Explicit types for collections The type checker cannot always infer
    0 码力 | 318 页 | 271.55 KB | 1 年前
    3
  • pdf文档 Mypy 1.10.0+dev Documentation

    the type of "cs" from: a, b, *cs = 1, 2 # error: Need type annotation for "cs" rs: list[int] # no assignment! p, q, *rs = 1, 2 # OK 1.5.3 Explicit types for collections The type checker cannot always
    0 码力 | 234 页 | 913.89 KB | 1 年前
    3
  • word文档 python3学习手册

    02 STX 28 1C FS 54 36 6 80 50 P 106 6A j 3 03 ETX 29 1D GS 55 37 7 81 51 Q 107 6B k 4 04 EOT 30 1E RS 56 38 8 82 52 R 108 6C l 5 05 ENQ 31 1F US 57 39 9 83 53 S 109 6D m 6 06 ACK 32 20 空格 58 3A : 84
    0 码力 | 213 页 | 3.53 MB | 1 年前
    3
  • epub文档 Jupyter Notebook 6.2.0 Documentation

    IGEi yWcXJ2qL9kfAowsMKsA07UAJJ4FLZagVeLByyDQiXgprBF LoytLhcAlVwFDLQ6zkbS9V/xz00NU5G0PUKXC6BCJkaKw RS4MjUCrxYGsh0Zk4agm7s8u4Vpw7KUkRlbl04NYAFSJhIut 3FiN61ZdqWo4CABqrYyU6wxr/3KaR0yfIlTl47RKUG+OEhM wKSU
    0 码力 | 283 页 | 4.07 MB | 1 年前
    3
  • epub文档 Jupyter Notebook 6.4.4 Documentation

    IGEi yWcXJ2qL9kfAowsMKsA07UAJJ4FLZagVeLByyDQiXgprBF LoytLhcAlVwFDLQ6zkbS9V/xz00NU5G0PUKXC6BCJkaKw RS4MjUCrxYGsh0Zk4agm7s8u4Vpw7KUkRlbl04NYAFSJhIut 3FiN61ZdqWo4CABqrYyU6wxr/3KaR0yfIlTl47RKUG+OEhM wKSU
    0 码力 | 293 页 | 4.08 MB | 1 年前
    3
共 34 条
  • 1
  • 2
  • 3
  • 4
前往
页
相关搜索词
TheDangerousFlaskHsiaomingYangPython3基础教程基础教程雪峰Tornado6.1DocumentationMypy1.81.10devpython3学习手册JupyterNotebook6.2Documentation6.4
IT文库
关于我们 文库协议 联系我们 意见反馈 免责声明
本站文档数据由用户上传或本站整理自互联网,不以营利为目的,供所有人免费下载和学习使用。如侵犯您的权益,请联系我们进行删除。
IT文库 ©1024 - 2025 | 站点地图
Powered By MOREDOC AI v3.3.0-beta.70
  • 关注我们的公众号【刻舟求荐】,给您不一样的精彩
    关注我们的公众号【刻舟求荐】,给您不一样的精彩