Skip to main content

掘金量化

A股实盘量化 中国期货量化 程序化交易 仿真 中国量化第一 掘金3 sdk

Changelog

Version v3.0.186

  • feat: 新增后台推送数据解析异常后落地异常数据包的功能

Version v3.0.185

  • fix: 部分接口类型注释问题提示错误
  • chore: 调整python312及以上版本tzdata库版本限制
  • feat: 支持python3.14

Version v3.0.184

  • feat: 增加bus证书参数

Version v3.0.183

  • fix: 新环境安装protobuf默认安装的最新版本存在兼容问题,增加版本限制

Version v3.0.182

  • fix: 当策略没有关联账号时 get_account接口返回所有实时账号问题.

Version v3.0.181

  • fix: 升级c api, 修复linux版本依赖库缺失的问题
  • feat: order_batch增加委托属性order_style=1
  • other: 调整protobuf依赖版本

Version v3.0.180

  • feat: 支持bus消息交互功能。相关api:
    • set_option
    • on_customized_message
    • send_msg_to_bus
  • other: subscribe在不需要设置count的场景下,参数count默认值修改为0。解决在回测过程中因该参数默认值为1导致每次订阅都需要从后台查询数据影响回测性能的问题.

Version v3.0.179

  • fix: 回测模式下订阅多频度数据时context.data重复记录问题
  • fix: 实时模式subscribe订阅多频度数据且wait_group=True时,出现只推送了单个频度数据的情况,出现频率跟订阅代码行情活跃情况有关
  • fix: 回测时run返回-1错误问题
  • other: 优化python3.12+环境调用get_trading_dates_by_year出现DataFrame.applyMap弃用警告
  • other: 修正get_open_call_auction返回类型描述

Version v3.0.178

  • fix: 过滤重复推送的委托状态与成交(主要是账号重登录引起)
  • fix:龙虎榜接口(stk_abnor_change_detailstk_abnor_change_stocks)在df=False情况下没有返回"零"值字段的问题
  • feat: 新增接口last_price, 查询历史L2 Tick行情
  • feat: 新增run回测参数backtest_intraday
  • feat: algo_orderorder数据增加字段(origin_productorigin_module)

Version v3.0.177

  • fix: 修复正常回测时,报日期格式不正确问题
  • feat: 支持python3.13

Version v3.0.176

  • feat: get_symbol_infos、get_symbols、get_history_symbol 增加返回字段 delisting_begin_date(退市整理开始日)
  • feat: 增加get_open_call_auction 查询开盘集合竞价
  • feat: 增加current_price 查询当前最新价
  • perf: 回测过程变更订阅条件时,如果变更后与之前比较无变化,则回测速度影响不大

Version v3.0.175

  • fix: 实时模式下策略结束后策略进程异常挂起

Version v3.0.174

  • feat: 支持算法单批量委托,关联api:
    • algo_order_batch

Version v3.0.173

  • feat: 新增标的池功能, 关联api:
    • universe_delete
    • universe_set
    • universe_get_names
    • universe_get_symbols
  • refactor: 标记部分弃用函数, 替换函数参照 新老数据函数切换对照表

Version v3.0.172

  • fix: numpy2语法兼容。 由于numpy2移除了np.NAN,当有空字段返回时会报错
  • feat: 股票分红接口stk_get_dividend、基金分红接口fnd_get_dividend 增加返回字段dvd_target
  • feat: order_volume 支持期货条件单
  • feat: 新增数据接口
    • stk_get_money_flow
    • stk_get_finance_audit
    • stk_get_finance_forecast
    • fnd_get_share
    • bnd_get_analysis

Version v3.0.171

  • fix: 退订后再次订阅数据context.data数据异常
  • fix: 同时存在waitgroup=true和waitgroup=false的订阅时触发on_bar会导致程序崩溃

Version v3.0.170

  • fix: 订阅多标的、多频率情况下出现context.data缓存异常

Version v3.0.169

  • fix: 当历史bar数量少于订阅行情时设置的订阅数据滑窗大小时,context.data会出现重复数据。
  • feat: 增加账号连接状态枚举值
  • feat: 增加wheel依赖,避免新python环境安装出错
  • other: 升级capi到3.7.8。
    • fix: 修正回测下单时交易事件错误时序问题
    • fix: 回测时委托回报添加待报和已报状态

Version v3.0.168

  • fix: option_calculate_ivsurface 接口调用出错
  • refactor: 优化对接实时行情服务的兼容性
  • feat: 支持pandas2numpy2

Version 3.0.167

  • feat: 支持多源行情
  • feat: 支持ctp行情直连, 可通过set_option接口设置ctp_md_info参数来配置ctp行情连接信息
  • feat: 行情连接、断开回调触发时可通过 context.message 来获取描述信息
  • feat: 回测模式下在策略代码中提前订阅行情再调用current,会根据订阅频度(tick,分钟bar,日线)取回测当前时刻的最新价格返回,超出历史行情权限会报错中止回测;不订阅current会取回测当前时刻最近的日线收盘价返回

Version 3.0.166

  • fix: current 没有返回"0"值字段
  • fix: get_instruments、get_history_instruments 查询参数fields包含 is_adjusted 时,is_adjusted字段没有返回
  • feat: 新增期货每日成交持仓排名接口(多标的多指标)

Version 3.0.165

  • fix: 单独订阅 3600s 与 同时订阅 tick 和 3600s 所产生的 3600s 数据 open 和 high 不一致
  • fix: context.data在回测模式下盘中可以取到当天的日线数据(未来数据)
  • feat: 支持Python 3.12

Version 3.0.164

  • 修复 context.data 函数bug
  • 移除 arrow 库依赖, 改为使用 Python 原生日期库

Version 3.0.163

  • context.data 优化, 增加两种新的返回类型
  • 新增龙虎榜和北向资金接口
  • 增加 get_cash 和 get_position 接口

Version 3.0.162

  • 添加新的回调函数, on_customized_message - 定制消息推送事件
  • 修改回测时间错误提示文案
  • 日内回测行情提取逻辑调整, 匹配单次33000条记录限制
  • 修正回测内存过大问题
  • 优化 history 和 history_n 速度
  • 增加 tzdata 依赖, 解决 tick 和 bar 转换为 pandas DataFrame 时过慢问题

Version 3.0.161

  • current 函数添加 include_call_auction 入参

Version 3.0.160

  • SDK 支持 Python 3.11 版本
  • 对不常用到的依赖库设置为可选依赖项, 现在默认移除 scipy 库的依赖, 要下载所有依赖可使用 pip install gm[all] 命令
  • Pandas 的默认精度改为8位小数
  • 修复 tick 回测模式 created_at 字段毫秒数错误问题
  • 添加新枚举值, 委托类型 OrderType 相关

Version 3.0.159

  • 修复context.data报错问题

Version 3.0.158

  • 修复context.data取日线数据少了最近一天的问题
  • 修复回测模式下,订阅用了wait_group=True,导致定时任务处理时间不对问题
  • Tick增加iopv字段
  • 交易所增加广期所

Version 3.0.157

  • 修正 Order 对象被错误过滤掉 order_business 和 position_src 字段的问题

Version 3.0.156

  • 新增做市API
  • 新增10个财务接口
  • 修复get_history_instruments接口conversion_price字段取数错误问题
  • get_symbols增加股转作市业务相关字段
  • 修正回测错误时,返回错误码与扩展信息不一致问题
  • 增加枚举常量 OrderBusiness_MARKET_MAKING

Version 3.0.155

  • 两融API改造, 补全头寸来源 position_src, 负债合约编号 debtsno 和还款方式 repay_type 三个字段
  • 修复 context.data 获取日线bar时有重复数据的bug
  • current 接口支持 field 过滤
  • 修复 stk_get_index_constituents 接口返回值 weight 为 0 bug
  • Python3.9 的 pandas 库 1.5 版本有bug, 在转带时区的datetime数据时非常慢, 限制 pandas 库的最高版本号避免

Version 3.0.154

  • 修正用广发端时AccountStatus事件中account_name缺失问题
  • 修正AccountStatus状态为6问题
  • SDK 报错提示错误信息文案优化
  • 支持分布式部署, Linux SDK 现在可以连上终端
  • 修复投研数据查询接口返回值时间格式问题
  • 指数成分查询函数stk_get_index_constituents增加总市值和流通市值字段
  • 优化回测时 on_tick 和 on_bar 的性能瓶颈
  • 修复行情连接断开又连上后,订阅行情成功策略却退出问题
  • context.account().status 的类型改为 dict 类型

Version 3.0.153

  • 修复 SDK Python 3.10 版本的第三方依赖库兼容性问题

Version 3.0.152

  • 修复部分老接口日期格式兼容问题
  • 修复 grpc 网络错误问题
  • 限制第三方库最高版本以保证兼容性

Versino 3.0.151

  • 修正使用数据代理时还在读取sdk缓存问题
  • 优化 SDK 依赖项, 保证 SDK 安装兼容性

Version 3.0.150

  • 本地数据代理优化
  • SDK 报错机制改造
  • 新增接口 set_option - 设置策略运行系统选项, 目前支持设置回测运行的最大线程数和触发流控时最大等待时间
  • 优化回测时的超时机制,避免部分回测业务不正常
  • 添加枚举量, 新的委托拒绝原因
  • 接口变更, 查询指数成分股接口新增 trade_date 参数
  • 修复 AccountStatus 查询与推送系列问题
  • 回测模式下载数据时打印相关指引信息

Version 3.0.149

  • 新增广发期权组合保证金API

Version 3.0.148

  • 新增财务数据接口
  • 修复已知 bug

Version 3.0.147

  • 修复启动速度过慢的问题
  • 修复调用 get_history_symbols 接口时进程崩溃退出问题

Version 3.0.146

  • 修复 get_symbols 和 get_history_symbols 接口 bug
  • Tick 类型添加 ask_q, bid_q 字段

Version 3.0.145

  • 新增投研数据查询接口
  • 修复 ipo_get_match_number 和 ipo_get_lot_info 函数日期参数传输错误 bug
  • 修复 get_history_instruments 函数返回值不存在 info 字段时产生的 Bug
  • 修复用 in 判断 BarLikeDict2 对象时无法退出的 bug

Version 3.0.144

  • 修复 get_history_instruments 返回错误的调整标志的 Bug

Version 3.0.143

  • 增加接口 bond_convertible_get_call_info - 查询可转债赎回信息

Version 3.0.142

  • context.data 获取 tick 时返回格式修正为 DataFrame
  • get_history_instrument 增加可转债字段
  • 支持 Python3.10, 弃用 Python2.7

Version 3.0.141

  • 限制 protobuf 版本小于 4.0 防止不兼容情况
  • 修复 get_history_instruments 里获取的保证金比例 margin_ratio 获取的是最新数据而不是历史数据的问题

Version 3.0.140

  • 算法单新增 algo_params 字段
  • 兼容老版本客户端传入错误的默认参数 undefined 的情况
  • 实时模式能正确返回错误信息
  • instrument 添加 conversion_price 字段

Version 3.0.139

  • 修复 Python 3.7.1 版本 typing_extensions 依赖问题, typing_extensions 版本需要大于等于 4.1.1
  • 增加 get_expire_rest_days 查询到期剩余天数
  • 修改 option_covered_open 备兑开仓, 在回测/仿真模式下不占用保证金
  • 修改 option_covered_close 备兑平仓, 在回测/仿真模式下不释放保证金
  • 新增 option_preorder_valid_volume 备兑标志, 可获取备兑可开数量
  • run 函数新增 backtest_match_mode 参数, 设置回测撮合模式, 可设定市价单是否采用当前 bar/tick 撮合成交

Version 3.0.138

  • 策略进程退出前, SDK主动退订已订阅代码, 恢复订阅权限
  • 修复回测模式中在 on_bar 或 on_tick 里下单后资金和持仓没有变化的问题
  • 兼容 Pandas 1.4.0 以上版本
  • option_get_symbols_by_exchange 增加参数 adjust_flag
  • 修复 get_history_instruments 返回的 multiplier 和 exercise_price 字段只取最新数据问题
  • 之前对所有的浮点数四舍五入改为仅对价格类的字段四舍五入4位小数
  • run 添加参数 backtest_commission_unit, 表示回测手续费需要按张收取
  • option_get_symbols_by_in_at_out 添加参数 adjust_flag 来决定选择的合约范围是否包含调整过的合约
  • 修复 get_instruments 的 exchanges 不支持list格式问题
  • 增加针对剩余时间t=0导致分母为0的健壮性处理, 定价模型计算时剩余时间最小值设置为 0.01

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

gm-3.0.186-cp314-cp314-win_amd64.whl (6.8 MB view details)

Uploaded CPython 3.14Windows x86-64

gm-3.0.186-cp314-cp314-manylinux1_x86_64.whl (12.0 MB view details)

Uploaded CPython 3.14

gm-3.0.186-cp313-cp313-win_amd64.whl (6.6 MB view details)

Uploaded CPython 3.13Windows x86-64

gm-3.0.186-cp313-cp313-manylinux1_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.13

gm-3.0.186-cp312-cp312-win_amd64.whl (6.6 MB view details)

Uploaded CPython 3.12Windows x86-64

gm-3.0.186-cp312-cp312-manylinux1_x86_64.whl (12.9 MB view details)

Uploaded CPython 3.12

gm-3.0.186-cp311-cp311-win_amd64.whl (6.6 MB view details)

Uploaded CPython 3.11Windows x86-64

gm-3.0.186-cp311-cp311-win32.whl (5.3 MB view details)

Uploaded CPython 3.11Windows x86

gm-3.0.186-cp311-cp311-manylinux1_x86_64.whl (12.6 MB view details)

Uploaded CPython 3.11

gm-3.0.186-cp310-cp310-win_amd64.whl (6.6 MB view details)

Uploaded CPython 3.10Windows x86-64

gm-3.0.186-cp310-cp310-win32.whl (5.3 MB view details)

Uploaded CPython 3.10Windows x86

gm-3.0.186-cp310-cp310-manylinux1_x86_64.whl (12.2 MB view details)

Uploaded CPython 3.10

gm-3.0.186-cp39-cp39-win_amd64.whl (6.6 MB view details)

Uploaded CPython 3.9Windows x86-64

gm-3.0.186-cp39-cp39-win32.whl (5.3 MB view details)

Uploaded CPython 3.9Windows x86

gm-3.0.186-cp39-cp39-manylinux1_x86_64.whl (12.1 MB view details)

Uploaded CPython 3.9

gm-3.0.186-cp38-cp38-win_amd64.whl (6.6 MB view details)

Uploaded CPython 3.8Windows x86-64

gm-3.0.186-cp38-cp38-win32.whl (5.3 MB view details)

Uploaded CPython 3.8Windows x86

gm-3.0.186-cp38-cp38-manylinux1_x86_64.whl (12.2 MB view details)

Uploaded CPython 3.8

gm-3.0.186-cp37-cp37m-win_amd64.whl (6.6 MB view details)

Uploaded CPython 3.7mWindows x86-64

gm-3.0.186-cp37-cp37m-win32.whl (5.3 MB view details)

Uploaded CPython 3.7mWindows x86

gm-3.0.186-cp37-cp37m-manylinux1_x86_64.whl (11.9 MB view details)

Uploaded CPython 3.7m

gm-3.0.186-cp36-cp36m-win_amd64.whl (6.6 MB view details)

Uploaded CPython 3.6mWindows x86-64

gm-3.0.186-cp36-cp36m-win32.whl (5.3 MB view details)

Uploaded CPython 3.6mWindows x86

gm-3.0.186-cp36-cp36m-manylinux1_x86_64.whl (11.8 MB view details)

Uploaded CPython 3.6m

File details

Details for the file gm-3.0.186-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: gm-3.0.186-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 6.8 MB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.3

File hashes

Hashes for gm-3.0.186-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 3b06902778dab8d05a9b32713f2cc0226f4f07db4bc49aed5657888f946d81ea
MD5 c4aca18d2516f5e01c49446b7f79c3bd
BLAKE2b-256 53429b01374804d46f53ef64e65a8cd728e11185ce203a82e42314e4a8dc2171

See more details on using hashes here.

File details

Details for the file gm-3.0.186-cp314-cp314-manylinux1_x86_64.whl.

File metadata

File hashes

Hashes for gm-3.0.186-cp314-cp314-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 459acf9dfd6e89822e2fb901ef6ddcc2f132d080e0e6ec546ed3c10e25239e5b
MD5 d84c9427f64dea5f547534ae919efba2
BLAKE2b-256 8325024dd81224c405cb4d68ea499d73ef4981c02a2c74c8b00bc7a04fbc1729

See more details on using hashes here.

File details

Details for the file gm-3.0.186-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: gm-3.0.186-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 6.6 MB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.3

File hashes

Hashes for gm-3.0.186-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 6ed61cce0ae79ff3ca9645fb9a2a520361c7c82cad2bc26dd047364d5a7bee65
MD5 88857e10bba29567bf65b3a5b8b79be3
BLAKE2b-256 ec9d9efa109cc07e8d0cd788510647d25799bfe34bd92066b1079f3910e412d1

See more details on using hashes here.

File details

Details for the file gm-3.0.186-cp313-cp313-manylinux1_x86_64.whl.

File metadata

File hashes

Hashes for gm-3.0.186-cp313-cp313-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 0d99bf5e568ea4868dcf0592181160af6dfc8ca8d79fa312a6330fc7a5f6ad83
MD5 0b67b7579ccd7c9d263080841816762e
BLAKE2b-256 092897ccc5c59a81ae076450673c7fb38e573fe5f7bc194bb5dc18cfad67ba8c

See more details on using hashes here.

File details

Details for the file gm-3.0.186-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: gm-3.0.186-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 6.6 MB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.3

File hashes

Hashes for gm-3.0.186-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 33f47def6ba050b50f7a69adb7a8a3ca64d79dc45ffeccfd18878f2da68ab212
MD5 64fd901341e3a4d1a2a9b027e35c9497
BLAKE2b-256 3842f8ef48664e7be9b933a0e4ce998cc62e6720d0303e965d25c1a8184bcd56

See more details on using hashes here.

File details

Details for the file gm-3.0.186-cp312-cp312-manylinux1_x86_64.whl.

File metadata

File hashes

Hashes for gm-3.0.186-cp312-cp312-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 351e88bc9b76b5fb4306063709203e55a183cad56c55d0eee741bbee4429988c
MD5 d4f425d10d1af38f6a02ca43b0e73d35
BLAKE2b-256 bc0caeb4f6f758f08857dba3aa91d58089e8fa629a1122f56a670dd3e7f670f3

See more details on using hashes here.

File details

Details for the file gm-3.0.186-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: gm-3.0.186-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 6.6 MB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.3

File hashes

Hashes for gm-3.0.186-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 df014f9fa00f920e9f0c06801b32dec8f07a7f1a0298027cbd4f19cf6eea9e93
MD5 595a5b4e0e850d77aa5cdd88184bbf40
BLAKE2b-256 314a3bbeeb1d00704f81c36aa6757e6f8f621a65242197c8c76a9d29bb08aa16

See more details on using hashes here.

File details

Details for the file gm-3.0.186-cp311-cp311-win32.whl.

File metadata

  • Download URL: gm-3.0.186-cp311-cp311-win32.whl
  • Upload date:
  • Size: 5.3 MB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.3

File hashes

Hashes for gm-3.0.186-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 19418b4cbb1383d1d7b52aae8b3c380bd41405cf49437e6240a4898e75399f49
MD5 24d00a881cb013adba34a75fb1dc79d8
BLAKE2b-256 625bc213435109265920e5929a4b8d61d1826e4be4778ff75a626b0561aecfd6

See more details on using hashes here.

File details

Details for the file gm-3.0.186-cp311-cp311-manylinux1_x86_64.whl.

File metadata

File hashes

Hashes for gm-3.0.186-cp311-cp311-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 15c0b31f6ec3d29a9a2c997bcfdf3f9d3a1cd845a920b536f102c8daf99e89a4
MD5 67db25beec20b748b08ac3b5c43bfc45
BLAKE2b-256 74b59821d4488d66e4beaf3a2a397240cd5322d426e61bed3b4ba4c22c1b38fe

See more details on using hashes here.

File details

Details for the file gm-3.0.186-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: gm-3.0.186-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 6.6 MB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.3

File hashes

Hashes for gm-3.0.186-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 62403c037fd5796666310ae52f61ae4c433d0a085e1a5478e0258d341da6ce36
MD5 1ce2182acef70f77b4e5983ac3a5d69e
BLAKE2b-256 9db8bde0fd307731d148e4542a8e697c442cd3c5ba45fba4c41c224197b91abf

See more details on using hashes here.

File details

Details for the file gm-3.0.186-cp310-cp310-win32.whl.

File metadata

  • Download URL: gm-3.0.186-cp310-cp310-win32.whl
  • Upload date:
  • Size: 5.3 MB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.3

File hashes

Hashes for gm-3.0.186-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 e7cbcc112635c3f406856902c16afd70fdd857c56fb7f8df83ce9cc4a30f473e
MD5 6e576c61ce8cc0489c251998dbadb3ef
BLAKE2b-256 3207dcb8d90d7929666b48757b1498a2909c985c7bcd67694b1239f211b6cc5b

See more details on using hashes here.

File details

Details for the file gm-3.0.186-cp310-cp310-manylinux1_x86_64.whl.

File metadata

File hashes

Hashes for gm-3.0.186-cp310-cp310-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 8f926e6514b192a92b1eb6e20afc1a9b67b316bac62738576f15b6ee1da1b39d
MD5 41ccfe5f920d247306ff14c17c304b34
BLAKE2b-256 d2c69642a279282bd44b65fd690ad8115e81f8aa2723ec30721ac210258e9637

See more details on using hashes here.

File details

Details for the file gm-3.0.186-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: gm-3.0.186-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 6.6 MB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.3

File hashes

Hashes for gm-3.0.186-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 6817eeaeffd8f053b1eb7f9a20fccccd788fa1a6bd14c6bed1fdaa2a16330218
MD5 a4bd298c57ddcd29aac3ddc0c37419c3
BLAKE2b-256 823ff59537df462a3e699517b7206bac425fb10a852731b60f767bd87fe7cc1c

See more details on using hashes here.

File details

Details for the file gm-3.0.186-cp39-cp39-win32.whl.

File metadata

  • Download URL: gm-3.0.186-cp39-cp39-win32.whl
  • Upload date:
  • Size: 5.3 MB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.3

File hashes

Hashes for gm-3.0.186-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 5d292e0e429f60a8e92338d8c24ccc0b4a4fa46adbad2d1c81b9180212feb241
MD5 3caa3f947e5b4051af1ac4573151f6dd
BLAKE2b-256 32e67905e55b603d697e700a29f09f70ff87306fa447911aafba68ca7babbca2

See more details on using hashes here.

File details

Details for the file gm-3.0.186-cp39-cp39-manylinux1_x86_64.whl.

File metadata

File hashes

Hashes for gm-3.0.186-cp39-cp39-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 adca16d3f2491c611f873c02beee1932d7476da6c55e1c04ea79e0986f84b5be
MD5 86987c5a0ad3952235c034dea9eaab1e
BLAKE2b-256 959e139974a38d33848ef88f9b469a4735a1cef1d30ff52e6a2dd4d7bc0f68d3

See more details on using hashes here.

File details

Details for the file gm-3.0.186-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: gm-3.0.186-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 6.6 MB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.3

File hashes

Hashes for gm-3.0.186-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 218f91f29bc97ddc937ff260b8fa0edf1ec85456555a7e7964d4d6659ab3e9dd
MD5 0e67a90fba9da8382bf090632f3053fd
BLAKE2b-256 bbb9533276f1d7b6963b178fa40b010ed347f51046b42f170fca6b0ef675e2d2

See more details on using hashes here.

File details

Details for the file gm-3.0.186-cp38-cp38-win32.whl.

File metadata

  • Download URL: gm-3.0.186-cp38-cp38-win32.whl
  • Upload date:
  • Size: 5.3 MB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.3

File hashes

Hashes for gm-3.0.186-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 0e6fd042bb4af8b0e413277d0775e3283c4e94e68eeaf8466aa6916d701a3ffd
MD5 a311f4f7de0a6ea13a8ada15c6c92dcd
BLAKE2b-256 b339b9a43e845931a546ef490bcdf6f68d26fc09c0a47e5335bfbb4361855e82

See more details on using hashes here.

File details

Details for the file gm-3.0.186-cp38-cp38-manylinux1_x86_64.whl.

File metadata

File hashes

Hashes for gm-3.0.186-cp38-cp38-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 25725c0ea6fc8f493df41c13a103bd47b9f21e1a382493c097b6b691257751cb
MD5 faebaa78d015fdb3f1bbe6d5b97d03dc
BLAKE2b-256 dc76863d450db717264e5cdc31f8a161d89fc311bee213aef66066dc05ac07cd

See more details on using hashes here.

File details

Details for the file gm-3.0.186-cp37-cp37m-win_amd64.whl.

File metadata

  • Download URL: gm-3.0.186-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 6.6 MB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.3

File hashes

Hashes for gm-3.0.186-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 b694f943b17bf8c4fddf303a2fb89685803b36de2a2c463268bbb5abc19c57ed
MD5 f29660384ec804b306bb1fbe02a708b0
BLAKE2b-256 d0926cc1990733633143d8419a56961f8958057d2e1726b5019bd85e34f8a757

See more details on using hashes here.

File details

Details for the file gm-3.0.186-cp37-cp37m-win32.whl.

File metadata

  • Download URL: gm-3.0.186-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 5.3 MB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.3

File hashes

Hashes for gm-3.0.186-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 4223850960f86e8db5c30cdb1f99d7788b9b647bc137f2c483188f705e6307bb
MD5 fbb1358286bf256a2e0245ceeee5c36b
BLAKE2b-256 061b822758173f1bf9df9af3117de285f25f04ce587ebae98c613a95b2b111f9

See more details on using hashes here.

File details

Details for the file gm-3.0.186-cp37-cp37m-manylinux1_x86_64.whl.

File metadata

File hashes

Hashes for gm-3.0.186-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 e590272845b8442f432a6e3a8a6c16968ac4a0249dbd9fa0127c86560ede8546
MD5 3cee34a73cc6d999442e65f6561ed0d7
BLAKE2b-256 debac70a3484a1298ccc25b989e83bf2ff6fb2906a7b6a9ca7ef82b558291105

See more details on using hashes here.

File details

Details for the file gm-3.0.186-cp36-cp36m-win_amd64.whl.

File metadata

  • Download URL: gm-3.0.186-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 6.6 MB
  • Tags: CPython 3.6m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.3

File hashes

Hashes for gm-3.0.186-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 473cefe8b81dff103a67842f1376e630ce7861440133207a47295f81de75f24a
MD5 c40b66af2b466784d45a0eaa312e4f48
BLAKE2b-256 ce29cbc4b24869fb45084e5da631bb973f5f9f4bf0bae791367d2fd6eb261dc0

See more details on using hashes here.

File details

Details for the file gm-3.0.186-cp36-cp36m-win32.whl.

File metadata

  • Download URL: gm-3.0.186-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 5.3 MB
  • Tags: CPython 3.6m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.3

File hashes

Hashes for gm-3.0.186-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 7853742b87a6ff5dde7e9c539bb2cb90f34940c93e891adfeb975fdf5c215eb9
MD5 cba975f03c50fabc3bbd5f8a89ff8078
BLAKE2b-256 b3ba1c5d3644ae2ee063056f4bfc2ac2fb3f66662b185c4e22b01edb7d1f798f

See more details on using hashes here.

File details

Details for the file gm-3.0.186-cp36-cp36m-manylinux1_x86_64.whl.

File metadata

File hashes

Hashes for gm-3.0.186-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 1d4b2598993db10404c52ad6fb85a3f68484d6daed498f2ba6a2cb12e077c005
MD5 bec64637fbc6ae797ee37efefc3f105a
BLAKE2b-256 eb91d3db5f5329c99a06e90edd35057190ed888e5bd6132f4384c28bfba06a5f

See more details on using hashes here.

Release history Release notifications | RSS feed

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page