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

无数据

分类

全部后端开发(565)Python(565)Django(93)PyWebIO(86)Jupyter(62)Scrapy(62)Celery(51)Tornado(20)Conda(17)ORM(16)

语言

全部英语(464)中文(简体)(94)法语(2)中文(繁体)(1)英语(1)

格式

全部PDF文档 PDF(322)其他文档 其他(242)DOC文档 DOC(1)
 
本次搜索耗时 0.088 秒,为您找到相关结果约 565 个.
  • 全部
  • 后端开发
  • Python
  • Django
  • PyWebIO
  • Jupyter
  • Scrapy
  • Celery
  • Tornado
  • Conda
  • ORM
  • 全部
  • 英语
  • 中文(简体)
  • 法语
  • 中文(繁体)
  • 英语
  • 全部
  • PDF文档 PDF
  • 其他文档 其他
  • DOC文档 DOC
  • 默认排序
  • 最新排序
  • 页数排序
  • 大小排序
  • 全部时间
  • 最近一天
  • 最近一周
  • 最近一个月
  • 最近三个月
  • 最近半年
  • 最近一年
  • pdf文档 Mypy 1.8.0 Documentation

    import Union def normalize_id(user_id: Union[int, str]) -> str: if isinstance(user_id, int): return f'user-{100_000 + user_id}' else: return user_id The typing module contains many other useful types previous page) # This is how you annotate a callable (function) value x: Callable[[int, float], float] = f def register(callback: Callable[[str], int]) -> None: ... # A generator function that yields ints is amount: int) -> None: self.audit_log.append(f"Deposited {amount}") self.balance += amount def withdraw(self, amount: int) -> None: self.audit_log.append(f"Withdrew {amount}") self.balance -= amount
    0 码力 | 234 页 | 902.89 KB | 1 年前
    3
  • epub文档 Mypy 1.8.0 Documentation

    def normalize_id(user_id: Union[int, str]) -> str: if isinstance(user_id, int): return f'user-{100_000 + user_id}' else: return user_id The typing [https://docs.python.org/3/library/typing errors # This is how you annotate a callable (function) value x: Callable[[int, float], float] = f def register(callback: Callable[[str], int]) -> None: ... # A generator function that yields ints is None: self.audit_log.append(f"Deposited {amount}") self.balance += amount def withdraw(self, amount: int) -> None: self.audit_log.append(f"Withdrew {amount}") self.balance
    0 码力 | 318 页 | 271.55 KB | 1 年前
    3
  • epub文档 Mypy 1.10.0+dev Documentation

    def normalize_id(user_id: Union[int, str]) -> str: if isinstance(user_id, int): return f'user-{100_000 + user_id}' else: return user_id The typing [https://docs.python.org/3/library/typing errors # This is how you annotate a callable (function) value x: Callable[[int, float], float] = f def register(callback: Callable[[str], int]) -> None: ... # A generator function that yields ints is None: self.audit_log.append(f"Deposited {amount}") self.balance += amount def withdraw(self, amount: int) -> None: self.audit_log.append(f"Withdrew {amount}") self.balance
    0 码力 | 318 页 | 270.84 KB | 1 年前
    3
  • pdf文档 Mypy 1.10.0+dev Documentation

    import Union def normalize_id(user_id: Union[int, str]) -> str: if isinstance(user_id, int): return f'user-{100_000 + user_id}' else: return user_id The typing module contains many other useful types previous page) # This is how you annotate a callable (function) value x: Callable[[int, float], float] = f def register(callback: Callable[[str], int]) -> None: ... # A generator function that yields ints is amount: int) -> None: self.audit_log.append(f"Deposited {amount}") self.balance += amount def withdraw(self, amount: int) -> None: self.audit_log.append(f"Withdrew {amount}") self.balance -= amount
    0 码力 | 234 页 | 913.89 KB | 1 年前
    3
  • epub文档 Celery 2.4 Documentation

    "priority": 0, "request": { "name": "tasks.sleeptask", "id": "1a7980ea-8b19-413e-91d2-0b74f3844c4d", "args": "[1]", "kwargs": "{}"}}, {"eta": "2010-06-07 09:07:53", "priority": task being executed: [INFO/MainProcess] Task celery.task.http.HttpDispatchTask [f2cc8efc-2a14-40cd-85ad-f1c77c94beeb] processed: 100 Since applying tasks can be done via HTTP using the djcelery result: Show the result of a task $ celeryctl result -t tasks.add 4e196aa4-0141-4601-8138- 7aa33db0f577 Note that you can omit the name of the task as long as the task doesn’t use a custom result backend
    0 码力 | 543 页 | 957.42 KB | 1 年前
    3
  • pdf文档 Python3 基础教程 - 廖雪峰

    Python 程序的运行时间需要 0.1 秒,慢了 100 倍,但由于 网络更慢,需要等待 1 秒,你想,用户能感觉到 1.001 秒和 1.1 秒的区 别吗?这就好比 F1 赛车和普通的出租车在北京三环路上行驶的道理一 样,虽然 F1 赛车理论时速高达 400 公里,但由于三环路堵车的时速只 有 20 公里,因此,作为乘客,你感觉的时速永远是 20 公里。 Python3 基础教程【完整版】 可以处理任意大小的整数,当然包括负整数,在程序中的表示方 法和数学上的写法一模一样,例如:1,100,-8080,0,等等。 计算机由于使用二进制,所以,有时候用十六进制表示整数比较方便, 十六进制用 0x 前缀和 0-9,a-f 表示,例如:0xff00,0xa5b4c3d2,等等。 浮点数 浮点数也就是小数,之所以称为浮点数,是因为按照科学记数法表示时, 一个浮点数的小数点位置是可变的,比如,1.23x109 和 42/531 >>> 10 % 3 1 无论整数做//除法还是取余数,结果永远是整数,所以,整数运算结果 永远是精确的。 练习 请打印出以下变量的值: n = 123 f = 456.789 s1 = 'Hello, world' s2 = 'Hello, \'Adam\'' s3 = r'Hello, "Bart"' s4 = r'''Hello, Lisa
    0 码力 | 531 页 | 5.15 MB | 1 年前
    3
  • pdf文档 MuPDF 1.25.0 Documentation

    setAppearance(null, null, mupdf.Matrix.identity, [ 0, 0, 100, 100 ], ˓→{}, "0 1 0 rg 10 10 50 50 re f") annot = page.createAnnotation("Stamp") annot.setRect([10, 750, 200, 850]) annot.setIcon("TOP SECRET") command. For example, to zoom to 150 dpi, type “150z”. F1 Display help. i Show document information. o Show document outline. L Highlight links. F Highlight form fields. a Show annotation editor. r color mode. E Toggle ICC color management. e Toggle spot color emulation. A Toggle anti-aliasing. f Toggle fullscreen. w Shrinkwrap window to fit page. W Fit page width to window. H Fit page height
    0 码力 | 259 页 | 1.11 MB | 7 月前
    3
  • pdf文档 MuPDF 1.24.0 Documentation

    setAppearance(null, null, mupdf.Matrix.identity, [ 0, 0, 100, 100 ], ˓→{}, "0 1 0 rg 10 10 50 50 re f") annot = page.createAnnotation("Stamp") annot.setRect([10, 750, 200, 850]) annot.setIcon("TOP SECRET") command. For example, to zoom to 150 dpi, type “150z”. F1 Display help. i Show document information. o Show document outline. L Highlight links. F Highlight form fields. a Show annotation editor. r color mode. E Toggle ICC color management. e Toggle spot color emulation. A Toggle anti-aliasing. f Toggle fullscreen. w Shrinkwrap window to fit page. W Fit page width to window. H Fit page height
    0 码力 | 249 页 | 830.15 KB | 7 月前
    3
  • epub文档 WeRoBot 1.6.0 微信公众号开发框架文档

    @robot.filter(re.compile("(.*)?e(.*)?"), "f") def d(message, session, match): if match: return "正文为 " + match.group(1) + "e" + match.group(2) return "正文为 f" 这段代码等价于 @robot.text def a(message): return "正文为 " + match.group(1) + "e" + match.group(2) if message.content == "f": return "正文为 f" 如果你想通过修饰符以外的方法添加 filter,可以使用 add_filter() 方法 def say_hello(): return "hello!" robot 操作类 有部分接口暂未实现,可自行调用微信接口。 开始开发 获取 access token 详细请参考 http://mp.weixin.qq.com/wiki/14/9f9c82c1af308e3b14ba9b973f99a8ba.html Client.grant_token() 获取 Access Token。 返回: 返回的 JSON 数据包 Client.get_access_token()
    0 码力 | 85 页 | 89.26 KB | 1 年前
    3
  • epub文档 WeRoBot 1.5.0 微信公众号开发框架文档

    @robot.filter(re.compile("(.*)?e(.*)?"), "f") def d(message, session, match): if match: return "正文为 " + match.group(1) + "e" + match.group(2) return "正文为 f" 这段代码等价于 @robot.text def a(message): return "正文为 " + match.group(1) + "e" + match.group(2) if message.content == "f": return "正文为 f" 如果你想通过修饰符以外的方法添加 filter,可以使用 add_filter() 方法 def say_hello(): return "hello!" robot 操作类 有部分接口暂未实现,可自行调用微信接口。 开始开发 获取 access token 详细请参考 http://mp.weixin.qq.com/wiki/14/9f9c82c1af308e3b14ba9b973f99a8ba.html Client.grant_token() 获取 Access Token。 返回: 返回的 JSON 数据包 Client.get_access_token()
    0 码力 | 83 页 | 88.85 KB | 1 年前
    3
共 565 条
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 57
前往
页
相关搜索词
Mypy1.8Documentation1.10devCelery2.4Python3基础教程基础教程雪峰MuPDF1.251.24WeRoBot1.6微信公众公众号微信公众号开发框架开发框架文档1.5
IT文库
关于我们 文库协议 联系我们 意见反馈 免责声明
本站文档数据由用户上传或本站整理自互联网,不以营利为目的,供所有人免费下载和学习使用。如侵犯您的权益,请联系我们进行删除。
IT文库 ©1024 - 2025 | 站点地图
Powered By MOREDOC AI v3.3.0-beta.70
  • 关注我们的公众号【刻舟求荐】,给您不一样的精彩
    关注我们的公众号【刻舟求荐】,给您不一样的精彩