积分充值
 首页
前端开发
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文库
  • 综合
  • 文档
  • 文章

无数据

分类

全部后端开发(95)Python(95)PyWebIO(44)Django(2)Flask(1)

语言

全部中文(简体)(54)英语(41)

格式

全部PDF文档 PDF(54)其他文档 其他(41)
 
本次搜索耗时 0.032 秒,为您找到相关结果约 95 个.
  • 全部
  • 后端开发
  • Python
  • PyWebIO
  • Django
  • Flask
  • 全部
  • 中文(简体)
  • 英语
  • 全部
  • PDF文档 PDF
  • 其他文档 其他
  • 默认排序
  • 最新排序
  • 页数排序
  • 大小排序
  • 全部时间
  • 最近一天
  • 最近一周
  • 最近一个月
  • 最近三个月
  • 最近半年
  • 最近一年
  • pdf文档 Django 官方教程翻译项目

    测试将节约你的时间 测试不仅能发现错误,而且能预防错误 测试使你的代码更有吸引力 测试有利于团队协作 基本测试策略 第一个测试 首先得有个 Bug 写个测试来发现 Bug 运行测试 修复 Bug 更全面的测试 测试视图 针对视图的测试 Django 测试工具之 Client 改善视图代码 测试新视图 测试 DetailView 更多的测试 测试那是越多越好 进一步测试 行 Python 代码了,选择从哪里开始 写测试确实不怎么简单。如果是这种情况,那么在你下次修改代码(比如加新功能,或者修复 Bug) 之前写个测试是比较合理且有效的。 所以,我们现在就开始写吧。 幸运的是,我们的投票(polls)应用现在就有一个小 Bug 需要被修复:我们的要求是如果 Question 是在一天之内发布的,Question.was_published_recently() 方法,发现 was_published_recently() 返回了 True,而我们希 望它返回 False 测试系统通知我们哪些测试样例失败了,和造成测试失败的代码所在的行号。 运行测试 修复 Bug 创建你的第一个 Django 项目, 第五部分 - 57 - 本文档使用 书栈(BookStack.CN) 构建 我们现在知道了,问题出在当 pub_date 为将来时, Question
    0 码力 | 103 页 | 1.86 MB | 1 年前
    3
  • epub文档 WeRoBot 1.12.0 微信公众号开发框架文档

    请现在 GitHub 上 Fork [https://github.com/whtsky/WeRoBot] WeRoBot 仓库, 然后在 master 分支上开一个新的 分支。 如果你的贡献的代码是修复 Bug , 请确认这个 Bug 已经有了对应的 Issue (如 果没有, 请先创建一个); 然后在 Pull Request 的描述里面引用这个 Bug 的 Issue ID , 就像这样(假设 com/offu/WeRoBot/pull/539] ) 停止了对 SAE 相关代码的测试。 ( #539 [https://github.com/offu/WeRoBot/pull/539] ) Version 1.10.1 修复 群发接口 的 docstring 样式。 Version 1.10.0 在 Client 中增加对 上传图文消息素材 的支持 ( #493 [https://github.com/offu/WeRoBot/pull/493] (#383 [https://github.com/offu/WeRoBot/issues/383]) (#412 [https://github.com/offu/WeRoBot/pull/412]) 修复 imp 在 Python3.4 后被废弃的问题 (#411 [https://github.com/offu/WeRoBot/pull/411]) Version 1.7.0 为 werobot
    0 码力 | 103 页 | 74.49 KB | 1 年前
    3
  • epub文档 WeRoBot 1.10.1 微信公众号开发框架文档

    请现在 GitHub 上 Fork [https://github.com/whtsky/WeRoBot] WeRoBot 仓库, 然后在 master 分支上开一个新的 分支。 如果你的贡献的代码是修复 Bug , 请确认这个 Bug 已经有了对应的 Issue (如 果没有, 请先创建一个); 然后在 Pull Request 的描述里面引用这个 Bug 的 Issue ID , 就像这样(假设 level='info') 按照配置开启 log 的格式化优化。 logger – 配置的 logger 对象 level – 要为 logger 设置的等级 Changelog Version 1.10.1 修复 群发接口 的 docstring 样式。 Version 1.10.0 在 Client 中增加对 上传图文消息素材 的支持 ( #493 [https://github.com/offu/WeRoBot/pull/493] (#383 [https://github.com/offu/WeRoBot/issues/383]) (#412 [https://github.com/offu/WeRoBot/pull/412]) 修复 imp 在 Python3.4 后被废弃的问题 (#411 [https://github.com/offu/WeRoBot/pull/411]) Version 1.7.0 为 werobot
    0 码力 | 102 页 | 73.98 KB | 1 年前
    3
  • epub文档 WeRoBot 1.13.1 微信公众号开发框架文档

    请现在 GitHub 上 Fork [https://github.com/whtsky/WeRoBot] WeRoBot 仓库, 然后在 master 分支上开一个新的 分支。 如果你的贡献的代码是修复 Bug , 请确认这个 Bug 已经有了对应的 Issue (如 果没有, 请先创建一个); 然后在 Pull Request 的描述里面引用这个 Bug 的 Issue ID , 就像这样(假设 com/offu/WeRoBot/pull/539] ) 停止了对 SAE 相关代码的测试。 ( #539 [https://github.com/offu/WeRoBot/pull/539] ) Version 1.10.1 修复 群发接口 的 docstring 样式。 Version 1.10.0 在 Client 中增加对 上传图文消息素材 的支持 ( #493 [https://github.com/offu/WeRoBot/pull/493] (#383 [https://github.com/offu/WeRoBot/issues/383]) (#412 [https://github.com/offu/WeRoBot/pull/412]) 修复 imp 在 Python3.4 后被废弃的问题 (#411 [https://github.com/offu/WeRoBot/pull/411]) Version 1.7.0 为 werobot
    0 码力 | 105 页 | 76.25 KB | 1 年前
    3
  • epub文档 WeRoBot 1.11.0 微信公众号开发框架文档

    请现在 GitHub 上 Fork [https://github.com/whtsky/WeRoBot] WeRoBot 仓库, 然后在 master 分支上开一个新的 分支。 如果你的贡献的代码是修复 Bug , 请确认这个 Bug 已经有了对应的 Issue (如 果没有, 请先创建一个); 然后在 Pull Request 的描述里面引用这个 Bug 的 Issue ID , 就像这样(假设 com/offu/WeRoBot/pull/539] ) 停止了对 SAE 相关代码的测试。 ( #539 [https://github.com/offu/WeRoBot/pull/539] ) Version 1.10.1 修复 群发接口 的 docstring 样式。 Version 1.10.0 在 Client 中增加对 上传图文消息素材 的支持 ( #493 [https://github.com/offu/WeRoBot/pull/493] (#383 [https://github.com/offu/WeRoBot/issues/383]) (#412 [https://github.com/offu/WeRoBot/pull/412]) 修复 imp 在 Python3.4 后被废弃的问题 (#411 [https://github.com/offu/WeRoBot/pull/411]) Version 1.7.0 为 werobot
    0 码力 | 103 页 | 74.21 KB | 1 年前
    3
  • epub文档 WeRoBot 1.8.0 微信公众号开发框架文档

    请现在 GitHub 上 Fork [https://github.com/whtsky/WeRoBot] WeRoBot 仓库, 然后在 master 分支上开一个新的 分支。 如果你的贡献的代码是修复 Bug , 请确认这个 Bug 已经有了对应的 Issue (如 果没有, 请先创建一个); 然后在 Pull Request 的描述里面引用这个 Bug 的 Issue ID , 就像这样(假设 (#383 [https://github.com/offu/WeRoBot/issues/383]) (#412 [https://github.com/offu/WeRoBot/pull/412]) 修复 imp 在 Python3.4 后被废弃的问题 (#411 [https://github.com/offu/WeRoBot/pull/411]) Version 1.7.0 为 werobot com/offu/WeRoBot/pull/305])(Author: cxgreat2014 [https://github.com/cxgreat2014]) Version 1.4.1 修复 werobot.client.Client.post() 中文文件名的 bug (#292 [https://github.com/offu/WeRoBot/issues/292]) Version
    0 码力 | 96 页 | 75.79 KB | 1 年前
    3
  • epub文档 WeRoBot 1.9.0 微信公众号开发框架文档

    请现在 GitHub 上 Fork [https://github.com/whtsky/WeRoBot] WeRoBot 仓库, 然后在 master 分支上开一个新的 分支。 如果你的贡献的代码是修复 Bug , 请确认这个 Bug 已经有了对应的 Issue (如 果没有, 请先创建一个); 然后在 Pull Request 的描述里面引用这个 Bug 的 Issue ID , 就像这样(假设 (#383 [https://github.com/offu/WeRoBot/issues/383]) (#412 [https://github.com/offu/WeRoBot/pull/412]) 修复 imp 在 Python3.4 后被废弃的问题 (#411 [https://github.com/offu/WeRoBot/pull/411]) Version 1.7.0 为 werobot com/offu/WeRoBot/pull/305])(Author: cxgreat2014 [https://github.com/cxgreat2014]) Version 1.4.1 修复 werobot.client.Client.post() 中文文件名的 bug (#292 [https://github.com/offu/WeRoBot/issues/292]) Version
    0 码力 | 99 页 | 76.68 KB | 1 年前
    3
  • epub文档 WeRoBot 1.10.0 微信公众号开发框架文档

    请现在 GitHub 上 Fork [https://github.com/whtsky/WeRoBot] WeRoBot 仓库, 然后在 master 分支上开一个新的 分支。 如果你的贡献的代码是修复 Bug , 请确认这个 Bug 已经有了对应的 Issue (如 果没有, 请先创建一个); 然后在 Pull Request 的描述里面引用这个 Bug 的 Issue ID , 就像这样(假设 (#383 [https://github.com/offu/WeRoBot/issues/383]) (#412 [https://github.com/offu/WeRoBot/pull/412]) 修复 imp 在 Python3.4 后被废弃的问题 (#411 [https://github.com/offu/WeRoBot/pull/411]) Version 1.7.0 为 werobot com/offu/WeRoBot/pull/305])(Author: cxgreat2014 [https://github.com/cxgreat2014]) Version 1.4.1 修复 werobot.client.Client.post() 中文文件名的 bug (#292 [https://github.com/offu/WeRoBot/issues/292]) Version
    0 码力 | 101 页 | 73.89 KB | 1 年前
    3
  • epub文档 WeRoBot 1.10.0 微信公众号开发框架文档

    请现在 GitHub 上 Fork [https://github.com/whtsky/WeRoBot] WeRoBot 仓库, 然后在 master 分支上开一个新的 分支。 如果你的贡献的代码是修复 Bug , 请确认这个 Bug 已经有了对应的 Issue (如 果没有, 请先创建一个); 然后在 Pull Request 的描述里面引用这个 Bug 的 Issue ID , 就像这样(假设 (#383 [https://github.com/offu/WeRoBot/issues/383]) (#412 [https://github.com/offu/WeRoBot/pull/412]) 修复 imp 在 Python3.4 后被废弃的问题 (#411 [https://github.com/offu/WeRoBot/pull/411]) Version 1.7.0 为 werobot com/offu/WeRoBot/pull/305])(Author: cxgreat2014 [https://github.com/cxgreat2014]) Version 1.4.1 修复 werobot.client.Client.post() 中文文件名的 bug (#292 [https://github.com/offu/WeRoBot/issues/292]) Version
    0 码力 | 101 页 | 73.89 KB | 1 年前
    3
  • epub文档 WeRoBot 1.6.0 微信公众号开发框架文档

    请现在 GitHub 上 Fork [https://github.com/whtsky/WeRoBot] WeRoBot 仓库, 然后在 master 分支上开一个新的 分支。 如果你的贡献的代码是修复 Bug , 请确认这个 Bug 已经有了对应的 Issue (如 果没有, 请先创建一个); 然后在 Pull Request 的描述里面引用这个 Bug 的 Issue ID , 就像这样(假设 com/offu/WeRoBot/pull/305])(Author: cxgreat2014 [https://github.com/cxgreat2014]) Version 1.4.1 修复 werobot.client.Client.post() 中文文件名的 bug (#292 [https://github.com/offu/WeRoBot/issues/292]) Version Python 3.6+ 下优先使用 secrets.choice 来随机生成 token 修复 werobot.client.Client.get_media_list() 的调用参数错误 (#208 [https://github.com/whtsky/WeRoBot/issues/208]) 修复了某些情况下 Client 中文编码不正确的问题 (#250 [https://github
    0 码力 | 85 页 | 89.26 KB | 1 年前
    3
共 95 条
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 10
前往
页
相关搜索词
Django官方教程翻译项目WeRoBot1.12微信公众公众号微信公众号开发框架开发框架文档1.101.131.111.81.91.6
IT文库
关于我们 文库协议 联系我们 意见反馈 免责声明
本站文档数据由用户上传或本站整理自互联网,不以营利为目的,供所有人免费下载和学习使用。如侵犯您的权益,请联系我们进行删除。
IT文库 ©1024 - 2025 | 站点地图
Powered By MOREDOC AI v3.3.0-beta.70
  • 关注我们的公众号【刻舟求荐】,给您不一样的精彩
    关注我们的公众号【刻舟求荐】,给您不一样的精彩