nonebot-plugin-steam-game-status


Namenonebot-plugin-steam-game-status JSON
Version 0.1.14 PyPI version JSON
download
home_pageNone
Summary播报群友 Steam 游戏状态
upload_time2024-10-21 04:37:34
maintainerNone
docs_urlNone
authorNone
requires_python>=3.8
licenseGPL3
keywords
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            <div align="center">
  <a href="https://v2.nonebot.dev/store"><img src="https://github.com/A-kirami/nonebot-plugin-template/blob/resources/nbp_logo.png" width="180" height="180" alt="NoneBotPluginLogo"></a>
  <br>
  <p><img src="https://github.com/A-kirami/nonebot-plugin-template/blob/resources/NoneBotPlugin.svg" width="240" alt="NoneBotPluginText"></p>
</div>

<div align="center">

# nonebot-plugin-steam-game-status

_✨ 在群内播报 Steam 游戏状态的 Nonebot 插件 ✨_


<a href="./LICENSE">
    <img src="https://camo.githubusercontent.com/9add6b327f8f49a33a5a0e485009666d2dd8cb698d30333b4e4467717a851d52/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f4c6963656e73652d47504c25323076332532422d626c75652e737667" alt="license">
</a>
<a href="https://pypi.python.org/pypi/nonebot_plugin_steam_game_status">
    <img src="https://img.shields.io/pypi/v/nonebot_plugin_steam_game_status.svg" alt="pypi">
</a>
<img src="https://img.shields.io/badge/python-3.8+-blue.svg" alt="python">

</div>


## 📖 介绍

在群内播报群友的 Steam 游戏状态

## 💿 安装

<details>
<summary>使用 nb-cli 安装</summary>
在 nonebot2 项目的根目录下打开命令行, 输入以下指令即可安装

    nb plugin install nonebot-plugin-steam-game-status

</details>

<details>
<summary>使用包管理器安装</summary>
在 nonebot2 项目的插件目录下, 打开命令行, 根据你使用的包管理器, 输入相应的安装命令

<details>
<summary>pip</summary>

    pip install nonebot-plugin-steam-game-status
</details>
<details>
<summary>pdm</summary>

    pdm add nonebot-plugin-steam-game-status
</details>
<details>
<summary>poetry</summary>

    poetry add nonebot-plugin-steam-game-status
</details>
<details>
<summary>conda</summary>

    conda install nonebot-plugin-steam-game-status
</details>
<details>
<summary>更新</summary>

    pip install nonebot-plugin-steam-game-status --upgrade
</details>

打开 nonebot2 项目根目录下的 `pyproject.toml` 文件, 在 `[tool.nonebot]` 部分追加写入

    plugins = ["nonebot_plugin_steam_game_status"]

</details>

## ⚙️ 配置

获取 [steam_web_key](https://steamcommunity.com/dev/apikey)

在 nonebot2 项目的`.env`文件中添加下表中的必填配置

| 配置项 | 必填 | 默认值 | 类型 | 说明 |
|:-----:|:----:|:----:|:----:|:----:|
| steam_web_key | 是 | 无 | str 或 list | Steam Api Key |
| steam_command_priority | 否 | 5 | int | 事件处理函数优先级 |
| steam_interval | 否 | 1 | int | steam查询间隔,单位分钟 |
| steam_proxy | 否 | None | str | 代理 |
| steam_link_enabled | 否 | true | bool | 链接识别全局开关 |

steam_proxy 示例
```bash
# .env.xxx
steam_proxy="http://ip:port"
```

单个 steam key 配置示例
```bash
# .env.xxx
steam_web_key=123456789QWERTYUII123456789

# or 引号包裹
steam_web_key="123456789QWERTYUII123456789"

# 若字符串形式key绑定失败,请改写为以下多key配置
```

多个 steam key 配置示例
```bash
# .env.xxx
steam_web_key='[
    "123456789QWERTYUII123456789",
    "123456789",
    "987654321",
]'

# or 无引号包裹
steam_web_key=["123456789QWERTYUII123456789","123456789","987654321"]


```

## 🎉 使用
### 获取SteamID64
    Steam 桌面网站或桌面客户端:点开右上角昵称下拉菜单,点击账户明细,即可看到 Steam ID
    Steam 应用:点击右上角头像,点击账户明细,即可看到 Steam ID
### 获取Steam好友代码
    Steam 桌面网站或桌面客户端:点开导航栏 好友 选项卡,点击添加好友,即可看到 Steam 好友代码
    Steam 应用:点击右上角头像,点击好友,点击添加好友,即可看到 Steam 好友代码
### 指令表
| 指令 | 需要@ | 范围 | 权限 |         说明         |
|:-----:|:----:|:----:|:----:|:------------------:|
| steam绑定/steam添加/steam.add | 否 | 群聊 | 群员 | 后加个人SteamID64或好友代码 |    
| steam解绑/steam删除/steam.del | 否 | 群聊 | 群员 |   后加个人SteamID64    |   
| steam列表/steam绑定列表 | 否 | 群聊 | 超管/群管 |       管理员命令,展示群内播报列表        |    
| steam屏蔽 | 否 | 群聊 | 超管/群管 |       管理员命令,后加完整游戏名称        |    
| steam恢复 | 否 | 群聊 | 超管/群管 |       管理员命令,后加完整游戏名称         |    
| steam排除列表 | 否 | 群聊 | 超管/群管 |       管理员命令,展示屏蔽的游戏列表        |    
| steam播报开启/steam播报打开 | 否 | 群聊 | 超管/群管 |       管理员命令        |    
| steam播报关闭/steam播报停止 | 否 | 群聊 | 超管/群管 |       管理员命令        |   
| 任意steam商店链接 | 否 | 群聊/私聊 | 群员/好友 |       获取游戏信息        |  

### 默认屏蔽游戏/工具名
["Wallpaper Engine:壁纸引擎","虚拟桌宠模拟器","OVR Toolkit","OVR Advanced Settings","OBS Studio","VTube Studio","Live2DViewerEX","Blender","LIV"]

> 目前建议手动添加 `Dead Lock` ,待发售完善后再移除,否则容易刷屏


## 创意来源

群友的 koishi bot 的该效果插件

## 注意事项

1. 不支持播报非 Steam 游戏
2. 不支持播报 Steam 隐身状态下进行的游戏
3. 在屏蔽游戏间切换的非屏蔽游戏也不会播报
4. 屏蔽游戏列表以群区分管理



## 更新记录
2024.10.21
1. 修复用户id数据异常


2024.09.16
1. 优化`steam链接识别`,降低失败可能性
2. 增加`steam列表`展示当前游戏
3. 优化重启后不再播报仍在继续的游戏


2024.06.30
1. 优化游戏中文名获取


2024.06.27
1. 修复添加新群时数据未保存的bug


2024.06.26
1. 优化播报后数据同步优先级
2. 添加链接识别功能
3. 优化日志等级


2024.06.23
1. 添加`屏蔽游戏`相关功能
2. 修复steam列表问题


2024.04.28
1. steam列表 合并消息优化


2024.02.29
1. 新增游戏中文名播报,感谢 [6DDUU6](https://github.com/6DDUU6) 的 [PR](https://github.com/nek0us/nonebot_plugin_steam_game_status/pull/18)
2. 顺应 Nonebot 规范,缓存文件迁移至用户目录下,详见 [plugin-localstore](https://github.com/nonebot/plugin-localstore)
3. 调整数据结构,节省 key 
4. 变更原缓存记录从 每次读取文件 更改为 持续在内存中

            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "nonebot-plugin-steam-game-status",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.8",
    "maintainer_email": null,
    "keywords": null,
    "author": null,
    "author_email": "nek0us <nekouss@mail.com>",
    "download_url": "https://files.pythonhosted.org/packages/6a/79/2dd92456302ac85d4bec970e4b53aefeed913c410c6c5423bfb07b5c234f/nonebot-plugin-steam-game-status-0.1.14.tar.gz",
    "platform": null,
    "description": "<div align=\"center\">\n  <a href=\"https://v2.nonebot.dev/store\"><img src=\"https://github.com/A-kirami/nonebot-plugin-template/blob/resources/nbp_logo.png\" width=\"180\" height=\"180\" alt=\"NoneBotPluginLogo\"></a>\n  <br>\n  <p><img src=\"https://github.com/A-kirami/nonebot-plugin-template/blob/resources/NoneBotPlugin.svg\" width=\"240\" alt=\"NoneBotPluginText\"></p>\n</div>\n\n<div align=\"center\">\n\n# nonebot-plugin-steam-game-status\n\n_\u2728 \u5728\u7fa4\u5185\u64ad\u62a5 Steam \u6e38\u620f\u72b6\u6001\u7684 Nonebot \u63d2\u4ef6 \u2728_\n\n\n<a href=\"./LICENSE\">\n    <img src=\"https://camo.githubusercontent.com/9add6b327f8f49a33a5a0e485009666d2dd8cb698d30333b4e4467717a851d52/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f4c6963656e73652d47504c25323076332532422d626c75652e737667\" alt=\"license\">\n</a>\n<a href=\"https://pypi.python.org/pypi/nonebot_plugin_steam_game_status\">\n    <img src=\"https://img.shields.io/pypi/v/nonebot_plugin_steam_game_status.svg\" alt=\"pypi\">\n</a>\n<img src=\"https://img.shields.io/badge/python-3.8+-blue.svg\" alt=\"python\">\n\n</div>\n\n\n## \ud83d\udcd6 \u4ecb\u7ecd\n\n\u5728\u7fa4\u5185\u64ad\u62a5\u7fa4\u53cb\u7684 Steam \u6e38\u620f\u72b6\u6001\n\n## \ud83d\udcbf \u5b89\u88c5\n\n<details>\n<summary>\u4f7f\u7528 nb-cli \u5b89\u88c5</summary>\n\u5728 nonebot2 \u9879\u76ee\u7684\u6839\u76ee\u5f55\u4e0b\u6253\u5f00\u547d\u4ee4\u884c, \u8f93\u5165\u4ee5\u4e0b\u6307\u4ee4\u5373\u53ef\u5b89\u88c5\n\n    nb plugin install nonebot-plugin-steam-game-status\n\n</details>\n\n<details>\n<summary>\u4f7f\u7528\u5305\u7ba1\u7406\u5668\u5b89\u88c5</summary>\n\u5728 nonebot2 \u9879\u76ee\u7684\u63d2\u4ef6\u76ee\u5f55\u4e0b, \u6253\u5f00\u547d\u4ee4\u884c, \u6839\u636e\u4f60\u4f7f\u7528\u7684\u5305\u7ba1\u7406\u5668, \u8f93\u5165\u76f8\u5e94\u7684\u5b89\u88c5\u547d\u4ee4\n\n<details>\n<summary>pip</summary>\n\n    pip install nonebot-plugin-steam-game-status\n</details>\n<details>\n<summary>pdm</summary>\n\n    pdm add nonebot-plugin-steam-game-status\n</details>\n<details>\n<summary>poetry</summary>\n\n    poetry add nonebot-plugin-steam-game-status\n</details>\n<details>\n<summary>conda</summary>\n\n    conda install nonebot-plugin-steam-game-status\n</details>\n<details>\n<summary>\u66f4\u65b0</summary>\n\n    pip install nonebot-plugin-steam-game-status --upgrade\n</details>\n\n\u6253\u5f00 nonebot2 \u9879\u76ee\u6839\u76ee\u5f55\u4e0b\u7684 `pyproject.toml` \u6587\u4ef6, \u5728 `[tool.nonebot]` \u90e8\u5206\u8ffd\u52a0\u5199\u5165\n\n    plugins = [\"nonebot_plugin_steam_game_status\"]\n\n</details>\n\n## \u2699\ufe0f \u914d\u7f6e\n\n\u83b7\u53d6 [steam_web_key](https://steamcommunity.com/dev/apikey)\n\n\u5728 nonebot2 \u9879\u76ee\u7684`.env`\u6587\u4ef6\u4e2d\u6dfb\u52a0\u4e0b\u8868\u4e2d\u7684\u5fc5\u586b\u914d\u7f6e\n\n| \u914d\u7f6e\u9879 | \u5fc5\u586b | \u9ed8\u8ba4\u503c | \u7c7b\u578b | \u8bf4\u660e |\n|:-----:|:----:|:----:|:----:|:----:|\n| steam_web_key | \u662f | \u65e0 | str \u6216 list | Steam Api Key |\n| steam_command_priority | \u5426 | 5 | int | \u4e8b\u4ef6\u5904\u7406\u51fd\u6570\u4f18\u5148\u7ea7 |\n| steam_interval | \u5426 | 1 | int | steam\u67e5\u8be2\u95f4\u9694\uff0c\u5355\u4f4d\u5206\u949f |\n| steam_proxy | \u5426 | None | str | \u4ee3\u7406 |\n| steam_link_enabled | \u5426 | true | bool | \u94fe\u63a5\u8bc6\u522b\u5168\u5c40\u5f00\u5173 |\n\nsteam_proxy \u793a\u4f8b\n```bash\n# .env.xxx\nsteam_proxy=\"http://ip:port\"\n```\n\n\u5355\u4e2a steam key \u914d\u7f6e\u793a\u4f8b\n```bash\n# .env.xxx\nsteam_web_key=123456789QWERTYUII123456789\n\n# or \u5f15\u53f7\u5305\u88f9\nsteam_web_key=\"123456789QWERTYUII123456789\"\n\n# \u82e5\u5b57\u7b26\u4e32\u5f62\u5f0fkey\u7ed1\u5b9a\u5931\u8d25\uff0c\u8bf7\u6539\u5199\u4e3a\u4ee5\u4e0b\u591akey\u914d\u7f6e\n```\n\n\u591a\u4e2a steam key \u914d\u7f6e\u793a\u4f8b\n```bash\n# .env.xxx\nsteam_web_key='[\n    \"123456789QWERTYUII123456789\",\n    \"123456789\",\n    \"987654321\",\n]'\n\n# or \u65e0\u5f15\u53f7\u5305\u88f9\nsteam_web_key=[\"123456789QWERTYUII123456789\",\"123456789\",\"987654321\"]\n\n\n```\n\n## \ud83c\udf89 \u4f7f\u7528\n### \u83b7\u53d6SteamID64\n    Steam \u684c\u9762\u7f51\u7ad9\u6216\u684c\u9762\u5ba2\u6237\u7aef\uff1a\u70b9\u5f00\u53f3\u4e0a\u89d2\u6635\u79f0\u4e0b\u62c9\u83dc\u5355\uff0c\u70b9\u51fb\u8d26\u6237\u660e\u7ec6\uff0c\u5373\u53ef\u770b\u5230 Steam ID\n    Steam \u5e94\u7528\uff1a\u70b9\u51fb\u53f3\u4e0a\u89d2\u5934\u50cf\uff0c\u70b9\u51fb\u8d26\u6237\u660e\u7ec6\uff0c\u5373\u53ef\u770b\u5230 Steam ID\n### \u83b7\u53d6Steam\u597d\u53cb\u4ee3\u7801\n    Steam \u684c\u9762\u7f51\u7ad9\u6216\u684c\u9762\u5ba2\u6237\u7aef\uff1a\u70b9\u5f00\u5bfc\u822a\u680f \u597d\u53cb \u9009\u9879\u5361\uff0c\u70b9\u51fb\u6dfb\u52a0\u597d\u53cb\uff0c\u5373\u53ef\u770b\u5230 Steam \u597d\u53cb\u4ee3\u7801\n    Steam \u5e94\u7528\uff1a\u70b9\u51fb\u53f3\u4e0a\u89d2\u5934\u50cf\uff0c\u70b9\u51fb\u597d\u53cb\uff0c\u70b9\u51fb\u6dfb\u52a0\u597d\u53cb\uff0c\u5373\u53ef\u770b\u5230 Steam \u597d\u53cb\u4ee3\u7801\n### \u6307\u4ee4\u8868\n| \u6307\u4ee4 | \u9700\u8981@ | \u8303\u56f4 | \u6743\u9650 |         \u8bf4\u660e         |\n|:-----:|:----:|:----:|:----:|:------------------:|\n| steam\u7ed1\u5b9a/steam\u6dfb\u52a0/steam.add | \u5426 | \u7fa4\u804a | \u7fa4\u5458 | \u540e\u52a0\u4e2a\u4ebaSteamID64\u6216\u597d\u53cb\u4ee3\u7801 |    \n| steam\u89e3\u7ed1/steam\u5220\u9664/steam.del | \u5426 | \u7fa4\u804a | \u7fa4\u5458 |   \u540e\u52a0\u4e2a\u4ebaSteamID64    |   \n| steam\u5217\u8868/steam\u7ed1\u5b9a\u5217\u8868 | \u5426 | \u7fa4\u804a | \u8d85\u7ba1/\u7fa4\u7ba1 |       \u7ba1\u7406\u5458\u547d\u4ee4\uff0c\u5c55\u793a\u7fa4\u5185\u64ad\u62a5\u5217\u8868        |    \n| steam\u5c4f\u853d | \u5426 | \u7fa4\u804a | \u8d85\u7ba1/\u7fa4\u7ba1 |       \u7ba1\u7406\u5458\u547d\u4ee4\uff0c\u540e\u52a0\u5b8c\u6574\u6e38\u620f\u540d\u79f0        |    \n| steam\u6062\u590d | \u5426 | \u7fa4\u804a | \u8d85\u7ba1/\u7fa4\u7ba1 |       \u7ba1\u7406\u5458\u547d\u4ee4\uff0c\u540e\u52a0\u5b8c\u6574\u6e38\u620f\u540d\u79f0         |    \n| steam\u6392\u9664\u5217\u8868 | \u5426 | \u7fa4\u804a | \u8d85\u7ba1/\u7fa4\u7ba1 |       \u7ba1\u7406\u5458\u547d\u4ee4\uff0c\u5c55\u793a\u5c4f\u853d\u7684\u6e38\u620f\u5217\u8868        |    \n| steam\u64ad\u62a5\u5f00\u542f/steam\u64ad\u62a5\u6253\u5f00 | \u5426 | \u7fa4\u804a | \u8d85\u7ba1/\u7fa4\u7ba1 |       \u7ba1\u7406\u5458\u547d\u4ee4        |    \n| steam\u64ad\u62a5\u5173\u95ed/steam\u64ad\u62a5\u505c\u6b62 | \u5426 | \u7fa4\u804a | \u8d85\u7ba1/\u7fa4\u7ba1 |       \u7ba1\u7406\u5458\u547d\u4ee4        |   \n| \u4efb\u610fsteam\u5546\u5e97\u94fe\u63a5 | \u5426 | \u7fa4\u804a/\u79c1\u804a | \u7fa4\u5458/\u597d\u53cb |       \u83b7\u53d6\u6e38\u620f\u4fe1\u606f        |  \n\n### \u9ed8\u8ba4\u5c4f\u853d\u6e38\u620f/\u5de5\u5177\u540d\n[\"Wallpaper Engine\uff1a\u58c1\u7eb8\u5f15\u64ce\",\"\u865a\u62df\u684c\u5ba0\u6a21\u62df\u5668\",\"OVR Toolkit\",\"OVR Advanced Settings\",\"OBS Studio\",\"VTube Studio\",\"Live2DViewerEX\",\"Blender\",\"LIV\"]\n\n> \u76ee\u524d\u5efa\u8bae\u624b\u52a8\u6dfb\u52a0 `Dead Lock` \uff0c\u5f85\u53d1\u552e\u5b8c\u5584\u540e\u518d\u79fb\u9664\uff0c\u5426\u5219\u5bb9\u6613\u5237\u5c4f\n\n\n## \u521b\u610f\u6765\u6e90\n\n\u7fa4\u53cb\u7684 koishi bot \u7684\u8be5\u6548\u679c\u63d2\u4ef6\n\n## \u6ce8\u610f\u4e8b\u9879\n\n1. \u4e0d\u652f\u6301\u64ad\u62a5\u975e Steam \u6e38\u620f\n2. \u4e0d\u652f\u6301\u64ad\u62a5 Steam \u9690\u8eab\u72b6\u6001\u4e0b\u8fdb\u884c\u7684\u6e38\u620f\n3. \u5728\u5c4f\u853d\u6e38\u620f\u95f4\u5207\u6362\u7684\u975e\u5c4f\u853d\u6e38\u620f\u4e5f\u4e0d\u4f1a\u64ad\u62a5\n4. \u5c4f\u853d\u6e38\u620f\u5217\u8868\u4ee5\u7fa4\u533a\u5206\u7ba1\u7406\n\n\n\n## \u66f4\u65b0\u8bb0\u5f55\n2024.10.21\n1. \u4fee\u590d\u7528\u6237id\u6570\u636e\u5f02\u5e38\n\n\n2024.09.16\n1. \u4f18\u5316`steam\u94fe\u63a5\u8bc6\u522b`\uff0c\u964d\u4f4e\u5931\u8d25\u53ef\u80fd\u6027\n2. \u589e\u52a0`steam\u5217\u8868`\u5c55\u793a\u5f53\u524d\u6e38\u620f\n3. \u4f18\u5316\u91cd\u542f\u540e\u4e0d\u518d\u64ad\u62a5\u4ecd\u5728\u7ee7\u7eed\u7684\u6e38\u620f\n\n\n2024.06.30\n1. \u4f18\u5316\u6e38\u620f\u4e2d\u6587\u540d\u83b7\u53d6\n\n\n2024.06.27\n1. \u4fee\u590d\u6dfb\u52a0\u65b0\u7fa4\u65f6\u6570\u636e\u672a\u4fdd\u5b58\u7684bug\n\n\n2024.06.26\n1. \u4f18\u5316\u64ad\u62a5\u540e\u6570\u636e\u540c\u6b65\u4f18\u5148\u7ea7\n2. \u6dfb\u52a0\u94fe\u63a5\u8bc6\u522b\u529f\u80fd\n3. \u4f18\u5316\u65e5\u5fd7\u7b49\u7ea7\n\n\n2024.06.23\n1. \u6dfb\u52a0`\u5c4f\u853d\u6e38\u620f`\u76f8\u5173\u529f\u80fd\n2. \u4fee\u590dsteam\u5217\u8868\u95ee\u9898\n\n\n2024.04.28\n1. steam\u5217\u8868 \u5408\u5e76\u6d88\u606f\u4f18\u5316\n\n\n2024.02.29\n1. \u65b0\u589e\u6e38\u620f\u4e2d\u6587\u540d\u64ad\u62a5\uff0c\u611f\u8c22 [6DDUU6](https://github.com/6DDUU6) \u7684 [PR](https://github.com/nek0us/nonebot_plugin_steam_game_status/pull/18)\n2. \u987a\u5e94 Nonebot \u89c4\u8303\uff0c\u7f13\u5b58\u6587\u4ef6\u8fc1\u79fb\u81f3\u7528\u6237\u76ee\u5f55\u4e0b\uff0c\u8be6\u89c1 [plugin-localstore](https://github.com/nonebot/plugin-localstore)\n3. \u8c03\u6574\u6570\u636e\u7ed3\u6784\uff0c\u8282\u7701 key \n4. \u53d8\u66f4\u539f\u7f13\u5b58\u8bb0\u5f55\u4ece \u6bcf\u6b21\u8bfb\u53d6\u6587\u4ef6 \u66f4\u6539\u4e3a \u6301\u7eed\u5728\u5185\u5b58\u4e2d\n",
    "bugtrack_url": null,
    "license": "GPL3",
    "summary": "\u64ad\u62a5\u7fa4\u53cb Steam \u6e38\u620f\u72b6\u6001",
    "version": "0.1.14",
    "project_urls": {
        "Homepage": "https://github.com/nek0us/nonebot_plugin_steam_game_status",
        "Repository": "https://github.com/nek0us/nonebot_plugin_steam_game_status"
    },
    "split_keywords": [],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a4bb0f1a33af395415df05eef0f5ed414bd382085f16b2e1f2357ebdebd186ca",
                "md5": "428806b22077ac082c103080606470d5",
                "sha256": "2725b9053b3f2d5a35e215645cf194d757a1f031823277d81f17514974af7a16"
            },
            "downloads": -1,
            "filename": "nonebot_plugin_steam_game_status-0.1.14-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "428806b22077ac082c103080606470d5",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.8",
            "size": 25305,
            "upload_time": "2024-10-21T04:37:33",
            "upload_time_iso_8601": "2024-10-21T04:37:33.500609Z",
            "url": "https://files.pythonhosted.org/packages/a4/bb/0f1a33af395415df05eef0f5ed414bd382085f16b2e1f2357ebdebd186ca/nonebot_plugin_steam_game_status-0.1.14-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6a792dd92456302ac85d4bec970e4b53aefeed913c410c6c5423bfb07b5c234f",
                "md5": "028fc6a0964efd508fb7887326a46755",
                "sha256": "6cccf34b9ce67a61283ac9d22ed78951cdc9cbfc792dbc44c6f89f5a6c9372b6"
            },
            "downloads": -1,
            "filename": "nonebot-plugin-steam-game-status-0.1.14.tar.gz",
            "has_sig": false,
            "md5_digest": "028fc6a0964efd508fb7887326a46755",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.8",
            "size": 26000,
            "upload_time": "2024-10-21T04:37:34",
            "upload_time_iso_8601": "2024-10-21T04:37:34.366080Z",
            "url": "https://files.pythonhosted.org/packages/6a/79/2dd92456302ac85d4bec970e4b53aefeed913c410c6c5423bfb07b5c234f/nonebot-plugin-steam-game-status-0.1.14.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-10-21 04:37:34",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "nek0us",
    "github_project": "nonebot_plugin_steam_game_status",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "nonebot-plugin-steam-game-status"
}
        
Elapsed time: 0.31256s