nonebot-plugin-random-draw


Namenonebot-plugin-random-draw JSON
Version 0.1.0 PyPI version JSON
download
home_pagehttps://github.com/Ikaros-521/nonebot_plugin_random_draw
Summary通过添加各种想要抽取的内容,最后进行随机抽取。
upload_time2023-06-11 15:58:59
maintainer
docs_urlNone
authorIkaros
requires_python>=3.8,<4.0
licenseMIT
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_random_draw

_✨ NoneBot 随机抽取设定内容 插件 ✨_


<a href="https://github.com/Ikaros-521/nonebot_plugin_random_draw/stargazers">
    <img alt="GitHub stars" src="https://img.shields.io/github/stars/Ikaros-521/nonebot_plugin_random_draw?color=%09%2300BFFF&style=flat-square">
</a>
<a href="https://github.com/Ikaros-521/nonebot_plugin_random_draw/issues">
    <img alt="GitHub issues" src="https://img.shields.io/github/issues/Ikaros-521/nonebot_plugin_random_draw?color=Emerald%20green&style=flat-square">
</a>
<a href="https://github.com/Ikaros-521/nonebot_plugin_random_draw/network">
    <img alt="GitHub forks" src="https://img.shields.io/github/forks/Ikaros-521/nonebot_plugin_random_draw?color=%2300BFFF&style=flat-square">
</a>
<a href="./LICENSE">
    <img src="https://img.shields.io/github/license/Ikaros-521/nonebot_plugin_random_draw.svg" alt="license">
</a>
<a href="https://pypi.python.org/pypi/nonebot_plugin_random_draw">
    <img src="https://img.shields.io/pypi/v/nonebot_plugin_random_draw.svg" alt="pypi">
</a>
<a href="https://www.python.org">
    <img src="https://img.shields.io/badge/python-3.8+-blue.svg" alt="python">
</a>

</div>

## 📖 介绍

通过添加各种想要抽取的内容,最后进行随机抽取。  

## 🔧 开发环境
Nonebot2:2.0.0rc3  
python:3.8.13  
操作系统:Windows10(Linux兼容性问题不大)  
编辑器:VS Code  

## 💿 安装  

### 1. nb-cli安装

在你bot工程的文件夹下,运行cmd(运行路径要对啊),执行nb命令安装插件,插件配置会自动添加至配置文件  
```
nb plugin install nonebot_plugin_random_draw
```

### 2. 本地安装

将项目clone到你的机器人插件下的对应插件目录内(一般为机器人文件夹下的`src/plugins`),然后把`nonebot_plugin_random_draw`文件夹里的内容拷贝至上一级目录即可。  
clone命令参考(得先装`git`,懂的都懂):
```
git clone https://github.com/Ikaros-521/nonebot_plugin_random_draw.git
``` 
也可以直接下载压缩包到插件目录解压,然后同样提取`nonebot_plugin_random_draw`至上一级目录。  
目录结构: ```你的bot/src/plugins/nonebot_plugin_random_draw/__init__.py```  


### 3. pip安装
```
pip install nonebot_plugin_random_draw
```  
打开 nonebot2 项目的 ```bot.py``` 文件, 在其中写入  
```nonebot.load_plugin('nonebot_plugin_random_draw')```  
当然,如果是默认nb-cli创建的nonebot2的话,在bot路径```pyproject.toml```的```[tool.nonebot]```的```plugins```中添加```nonebot_plugin_random_draw```即可  
pyproject.toml配置例如:  
``` 
[tool.nonebot]
plugin_dirs = ["src/plugins"]
plugins = ["nonebot_plugin_random_draw"]
``` 


## 🔧 配置


## 🎉 功能
  

## 👉 命令

### /随抽帮助
命令结构:```/随抽帮助```  
例如:```/随抽帮助```  
功能:返回所有命令的使用方式。  
bot返回内容:  
```
功能说明:命令列表(命令前缀自行匹配)
获取帮助:随抽帮助
创建随抽组,一个群可以有多个组:随抽组创建 <组名>
往指定的随抽组中添加待抽内容(可多个,用空格分隔):随抽添加 <组号> <内容>
删除指定随抽组中的待抽内容(可多个,用空格分隔):随抽删除 <组号> <内容>
删除指定组号的随抽组:随抽组删除 <组号>
查看本群所有的随抽组内容(含组号和组名):随抽组列表
查看指定组号的所有待抽内容:随抽列表 <组号>
在指定随抽组中随机抽取一个待抽内容:随抽 <组号>
清空本群中所有的随抽组(慎用):随抽组清空
清空指定随抽组中所有的待抽内容(慎用):随抽清空 <组号>

注意:
随抽内容必须配合文本描述,不能只是图片。
批量添加待抽内容不支持图片批量,如果你硬这么用,就都是重复的图片。
随抽删除只需要传入文本内容即可,不需要图片。
查看随抽列表只返回文本内容。
图片用的是tx的图床,所以一段时间后会挂。
```

### 其他命令懒得写了,直接看图吧
![](docs/result.png)
![](docs/result2.png)

## ⚙ 拓展
 

## 📝 更新日志

<details>
<summary>展开/收起</summary>

### 0.0.1

- 插件初次发布  

### 0.0.2

- 增加批量添加和删除内容的功能

### 0.1.0

- 增加 图片内容的兼容(仅单个添加的情况,必须配合文本描述)

</details>

## 致谢
- [nonebot-plugin-template](https://github.com/A-kirami/nonebot-plugin-template)

## 项目打包上传至pypi

官网:https://pypi.org,注册账号,在系统用户根目录下创建`.pypirc`,配置  
``` 
[distutils] 
index-servers=pypi 
 
[pypi] repository = https://upload.pypi.org/legacy/ 
username = 用户名 
password = 密码
```

### poetry

```
# 参考 https://www.freesion.com/article/58051228882/
# poetry config pypi-token.pypi

# 1、安装poetry
pip install poetry

# 2、初始化配置文件(根据提示填写)
poetry init

# 3、微调配置文件pyproject.toml

# 4、运行 poetry install, 可生成 “poetry.lock” 文件(可跳过)
poetry install

# 5、编译,生成dist
poetry build

# 6、发布(poetry config pypi-token.pypi 配置token)
poetry publish

```

### twine

```
# 参考 https://www.cnblogs.com/danhuai/p/14915042.html
#创建setup.py文件 填写相关信息

# 1、可以先升级打包工具
pip install --upgrade setuptools wheel twine

# 2、打包
python setup.py sdist bdist_wheel

# 3、可以先检查一下包
twine check dist/*

# 4、上传包到pypi(需输入用户名、密码)
twine upload dist/*
```

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/Ikaros-521/nonebot_plugin_random_draw",
    "name": "nonebot-plugin-random-draw",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.8,<4.0",
    "maintainer_email": "",
    "keywords": "",
    "author": "Ikaros",
    "author_email": "327209194@qq.com",
    "download_url": "https://files.pythonhosted.org/packages/33/3a/c8ebc83cd234bda8308f8d94276ae189e642da9f04fb5a802e8ff33cf25a/nonebot_plugin_random_draw-0.1.0.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_random_draw\n\n_\u2728 NoneBot \u968f\u673a\u62bd\u53d6\u8bbe\u5b9a\u5185\u5bb9 \u63d2\u4ef6 \u2728_\n\n\n<a href=\"https://github.com/Ikaros-521/nonebot_plugin_random_draw/stargazers\">\n    <img alt=\"GitHub stars\" src=\"https://img.shields.io/github/stars/Ikaros-521/nonebot_plugin_random_draw?color=%09%2300BFFF&style=flat-square\">\n</a>\n<a href=\"https://github.com/Ikaros-521/nonebot_plugin_random_draw/issues\">\n    <img alt=\"GitHub issues\" src=\"https://img.shields.io/github/issues/Ikaros-521/nonebot_plugin_random_draw?color=Emerald%20green&style=flat-square\">\n</a>\n<a href=\"https://github.com/Ikaros-521/nonebot_plugin_random_draw/network\">\n    <img alt=\"GitHub forks\" src=\"https://img.shields.io/github/forks/Ikaros-521/nonebot_plugin_random_draw?color=%2300BFFF&style=flat-square\">\n</a>\n<a href=\"./LICENSE\">\n    <img src=\"https://img.shields.io/github/license/Ikaros-521/nonebot_plugin_random_draw.svg\" alt=\"license\">\n</a>\n<a href=\"https://pypi.python.org/pypi/nonebot_plugin_random_draw\">\n    <img src=\"https://img.shields.io/pypi/v/nonebot_plugin_random_draw.svg\" alt=\"pypi\">\n</a>\n<a href=\"https://www.python.org\">\n    <img src=\"https://img.shields.io/badge/python-3.8+-blue.svg\" alt=\"python\">\n</a>\n\n</div>\n\n## \ud83d\udcd6 \u4ecb\u7ecd\n\n\u901a\u8fc7\u6dfb\u52a0\u5404\u79cd\u60f3\u8981\u62bd\u53d6\u7684\u5185\u5bb9\uff0c\u6700\u540e\u8fdb\u884c\u968f\u673a\u62bd\u53d6\u3002  \n\n## \ud83d\udd27 \u5f00\u53d1\u73af\u5883\nNonebot2\uff1a2.0.0rc3  \npython\uff1a3.8.13  \n\u64cd\u4f5c\u7cfb\u7edf\uff1aWindows10\uff08Linux\u517c\u5bb9\u6027\u95ee\u9898\u4e0d\u5927\uff09  \n\u7f16\u8f91\u5668\uff1aVS Code  \n\n## \ud83d\udcbf \u5b89\u88c5  \n\n### 1. nb-cli\u5b89\u88c5\n\n\u5728\u4f60bot\u5de5\u7a0b\u7684\u6587\u4ef6\u5939\u4e0b\uff0c\u8fd0\u884ccmd\uff08\u8fd0\u884c\u8def\u5f84\u8981\u5bf9\u554a\uff09\uff0c\u6267\u884cnb\u547d\u4ee4\u5b89\u88c5\u63d2\u4ef6\uff0c\u63d2\u4ef6\u914d\u7f6e\u4f1a\u81ea\u52a8\u6dfb\u52a0\u81f3\u914d\u7f6e\u6587\u4ef6  \n```\nnb plugin install nonebot_plugin_random_draw\n```\n\n### 2. \u672c\u5730\u5b89\u88c5\n\n\u5c06\u9879\u76eeclone\u5230\u4f60\u7684\u673a\u5668\u4eba\u63d2\u4ef6\u4e0b\u7684\u5bf9\u5e94\u63d2\u4ef6\u76ee\u5f55\u5185\uff08\u4e00\u822c\u4e3a\u673a\u5668\u4eba\u6587\u4ef6\u5939\u4e0b\u7684`src/plugins`\uff09\uff0c\u7136\u540e\u628a`nonebot_plugin_random_draw`\u6587\u4ef6\u5939\u91cc\u7684\u5185\u5bb9\u62f7\u8d1d\u81f3\u4e0a\u4e00\u7ea7\u76ee\u5f55\u5373\u53ef\u3002  \nclone\u547d\u4ee4\u53c2\u8003\uff08\u5f97\u5148\u88c5`git`\uff0c\u61c2\u7684\u90fd\u61c2\uff09\uff1a\n```\ngit clone https://github.com/Ikaros-521/nonebot_plugin_random_draw.git\n``` \n\u4e5f\u53ef\u4ee5\u76f4\u63a5\u4e0b\u8f7d\u538b\u7f29\u5305\u5230\u63d2\u4ef6\u76ee\u5f55\u89e3\u538b\uff0c\u7136\u540e\u540c\u6837\u63d0\u53d6`nonebot_plugin_random_draw`\u81f3\u4e0a\u4e00\u7ea7\u76ee\u5f55\u3002  \n\u76ee\u5f55\u7ed3\u6784\uff1a ```\u4f60\u7684bot/src/plugins/nonebot_plugin_random_draw/__init__.py```  \n\n\n### 3. pip\u5b89\u88c5\n```\npip install nonebot_plugin_random_draw\n```  \n\u6253\u5f00 nonebot2 \u9879\u76ee\u7684 ```bot.py``` \u6587\u4ef6, \u5728\u5176\u4e2d\u5199\u5165  \n```nonebot.load_plugin('nonebot_plugin_random_draw')```  \n\u5f53\u7136\uff0c\u5982\u679c\u662f\u9ed8\u8ba4nb-cli\u521b\u5efa\u7684nonebot2\u7684\u8bdd\uff0c\u5728bot\u8def\u5f84```pyproject.toml```\u7684```[tool.nonebot]```\u7684```plugins```\u4e2d\u6dfb\u52a0```nonebot_plugin_random_draw```\u5373\u53ef  \npyproject.toml\u914d\u7f6e\u4f8b\u5982\uff1a  \n``` \n[tool.nonebot]\nplugin_dirs = [\"src/plugins\"]\nplugins = [\"nonebot_plugin_random_draw\"]\n``` \n\n\n## \ud83d\udd27 \u914d\u7f6e\n\n\n## \ud83c\udf89 \u529f\u80fd\n  \n\n## \ud83d\udc49 \u547d\u4ee4\n\n### /\u968f\u62bd\u5e2e\u52a9\n\u547d\u4ee4\u7ed3\u6784\uff1a```/\u968f\u62bd\u5e2e\u52a9```  \n\u4f8b\u5982\uff1a```/\u968f\u62bd\u5e2e\u52a9```  \n\u529f\u80fd\uff1a\u8fd4\u56de\u6240\u6709\u547d\u4ee4\u7684\u4f7f\u7528\u65b9\u5f0f\u3002  \nbot\u8fd4\u56de\u5185\u5bb9\uff1a  \n```\n\u529f\u80fd\u8bf4\u660e\uff1a\u547d\u4ee4\u5217\u8868\uff08\u547d\u4ee4\u524d\u7f00\u81ea\u884c\u5339\u914d\uff09\n\u83b7\u53d6\u5e2e\u52a9\uff1a\u968f\u62bd\u5e2e\u52a9\n\u521b\u5efa\u968f\u62bd\u7ec4\uff0c\u4e00\u4e2a\u7fa4\u53ef\u4ee5\u6709\u591a\u4e2a\u7ec4\uff1a\u968f\u62bd\u7ec4\u521b\u5efa <\u7ec4\u540d>\n\u5f80\u6307\u5b9a\u7684\u968f\u62bd\u7ec4\u4e2d\u6dfb\u52a0\u5f85\u62bd\u5185\u5bb9\uff08\u53ef\u591a\u4e2a\uff0c\u7528\u7a7a\u683c\u5206\u9694\uff09\uff1a\u968f\u62bd\u6dfb\u52a0 <\u7ec4\u53f7> <\u5185\u5bb9>\n\u5220\u9664\u6307\u5b9a\u968f\u62bd\u7ec4\u4e2d\u7684\u5f85\u62bd\u5185\u5bb9\uff08\u53ef\u591a\u4e2a\uff0c\u7528\u7a7a\u683c\u5206\u9694\uff09\uff1a\u968f\u62bd\u5220\u9664 <\u7ec4\u53f7> <\u5185\u5bb9>\n\u5220\u9664\u6307\u5b9a\u7ec4\u53f7\u7684\u968f\u62bd\u7ec4\uff1a\u968f\u62bd\u7ec4\u5220\u9664 <\u7ec4\u53f7>\n\u67e5\u770b\u672c\u7fa4\u6240\u6709\u7684\u968f\u62bd\u7ec4\u5185\u5bb9\uff08\u542b\u7ec4\u53f7\u548c\u7ec4\u540d\uff09\uff1a\u968f\u62bd\u7ec4\u5217\u8868\n\u67e5\u770b\u6307\u5b9a\u7ec4\u53f7\u7684\u6240\u6709\u5f85\u62bd\u5185\u5bb9\uff1a\u968f\u62bd\u5217\u8868 <\u7ec4\u53f7>\n\u5728\u6307\u5b9a\u968f\u62bd\u7ec4\u4e2d\u968f\u673a\u62bd\u53d6\u4e00\u4e2a\u5f85\u62bd\u5185\u5bb9\uff1a\u968f\u62bd <\u7ec4\u53f7>\n\u6e05\u7a7a\u672c\u7fa4\u4e2d\u6240\u6709\u7684\u968f\u62bd\u7ec4\uff08\u614e\u7528\uff09\uff1a\u968f\u62bd\u7ec4\u6e05\u7a7a\n\u6e05\u7a7a\u6307\u5b9a\u968f\u62bd\u7ec4\u4e2d\u6240\u6709\u7684\u5f85\u62bd\u5185\u5bb9\uff08\u614e\u7528\uff09\uff1a\u968f\u62bd\u6e05\u7a7a <\u7ec4\u53f7>\n\n\u6ce8\u610f\uff1a\n\u968f\u62bd\u5185\u5bb9\u5fc5\u987b\u914d\u5408\u6587\u672c\u63cf\u8ff0\uff0c\u4e0d\u80fd\u53ea\u662f\u56fe\u7247\u3002\n\u6279\u91cf\u6dfb\u52a0\u5f85\u62bd\u5185\u5bb9\u4e0d\u652f\u6301\u56fe\u7247\u6279\u91cf\uff0c\u5982\u679c\u4f60\u786c\u8fd9\u4e48\u7528\uff0c\u5c31\u90fd\u662f\u91cd\u590d\u7684\u56fe\u7247\u3002\n\u968f\u62bd\u5220\u9664\u53ea\u9700\u8981\u4f20\u5165\u6587\u672c\u5185\u5bb9\u5373\u53ef\uff0c\u4e0d\u9700\u8981\u56fe\u7247\u3002\n\u67e5\u770b\u968f\u62bd\u5217\u8868\u53ea\u8fd4\u56de\u6587\u672c\u5185\u5bb9\u3002\n\u56fe\u7247\u7528\u7684\u662ftx\u7684\u56fe\u5e8a\uff0c\u6240\u4ee5\u4e00\u6bb5\u65f6\u95f4\u540e\u4f1a\u6302\u3002\n```\n\n### \u5176\u4ed6\u547d\u4ee4\u61d2\u5f97\u5199\u4e86\uff0c\u76f4\u63a5\u770b\u56fe\u5427\n![](docs/result.png)\n![](docs/result2.png)\n\n## \u2699 \u62d3\u5c55\n \n\n## \ud83d\udcdd \u66f4\u65b0\u65e5\u5fd7\n\n<details>\n<summary>\u5c55\u5f00/\u6536\u8d77</summary>\n\n### 0.0.1\n\n- \u63d2\u4ef6\u521d\u6b21\u53d1\u5e03  \n\n### 0.0.2\n\n- \u589e\u52a0\u6279\u91cf\u6dfb\u52a0\u548c\u5220\u9664\u5185\u5bb9\u7684\u529f\u80fd\n\n### 0.1.0\n\n- \u589e\u52a0 \u56fe\u7247\u5185\u5bb9\u7684\u517c\u5bb9\uff08\u4ec5\u5355\u4e2a\u6dfb\u52a0\u7684\u60c5\u51b5\uff0c\u5fc5\u987b\u914d\u5408\u6587\u672c\u63cf\u8ff0\uff09\n\n</details>\n\n## \u81f4\u8c22\n- [nonebot-plugin-template](https://github.com/A-kirami/nonebot-plugin-template)\n\n## \u9879\u76ee\u6253\u5305\u4e0a\u4f20\u81f3pypi\n\n\u5b98\u7f51\uff1ahttps://pypi.org\uff0c\u6ce8\u518c\u8d26\u53f7\uff0c\u5728\u7cfb\u7edf\u7528\u6237\u6839\u76ee\u5f55\u4e0b\u521b\u5efa`.pypirc`\uff0c\u914d\u7f6e  \n``` \n[distutils] \nindex-servers=pypi \n \n[pypi] repository = https://upload.pypi.org/legacy/ \nusername = \u7528\u6237\u540d \npassword = \u5bc6\u7801\n```\n\n### poetry\n\n```\n# \u53c2\u8003 https://www.freesion.com/article/58051228882/\n# poetry config pypi-token.pypi\n\n# 1\u3001\u5b89\u88c5poetry\npip install poetry\n\n# 2\u3001\u521d\u59cb\u5316\u914d\u7f6e\u6587\u4ef6\uff08\u6839\u636e\u63d0\u793a\u586b\u5199\uff09\npoetry init\n\n# 3\u3001\u5fae\u8c03\u914d\u7f6e\u6587\u4ef6pyproject.toml\n\n# 4\u3001\u8fd0\u884c poetry install, \u53ef\u751f\u6210 \u201cpoetry.lock\u201d \u6587\u4ef6\uff08\u53ef\u8df3\u8fc7\uff09\npoetry install\n\n# 5\u3001\u7f16\u8bd1\uff0c\u751f\u6210dist\npoetry build\n\n# 6\u3001\u53d1\u5e03(poetry config pypi-token.pypi \u914d\u7f6etoken)\npoetry publish\n\n```\n\n### twine\n\n```\n# \u53c2\u8003 https://www.cnblogs.com/danhuai/p/14915042.html\n#\u521b\u5efasetup.py\u6587\u4ef6 \u586b\u5199\u76f8\u5173\u4fe1\u606f\n\n# 1\u3001\u53ef\u4ee5\u5148\u5347\u7ea7\u6253\u5305\u5de5\u5177\npip install --upgrade setuptools wheel twine\n\n# 2\u3001\u6253\u5305\npython setup.py sdist bdist_wheel\n\n# 3\u3001\u53ef\u4ee5\u5148\u68c0\u67e5\u4e00\u4e0b\u5305\ntwine check dist/*\n\n# 4\u3001\u4e0a\u4f20\u5305\u5230pypi\uff08\u9700\u8f93\u5165\u7528\u6237\u540d\u3001\u5bc6\u7801\uff09\ntwine upload dist/*\n```\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "\u901a\u8fc7\u6dfb\u52a0\u5404\u79cd\u60f3\u8981\u62bd\u53d6\u7684\u5185\u5bb9\uff0c\u6700\u540e\u8fdb\u884c\u968f\u673a\u62bd\u53d6\u3002",
    "version": "0.1.0",
    "project_urls": {
        "Documentation": "https://github.com/Ikaros-521/nonebot_plugin_random_draw/blob/master/README.md",
        "Homepage": "https://github.com/Ikaros-521/nonebot_plugin_random_draw",
        "Repository": "https://github.com/Ikaros-521/nonebot_plugin_random_draw"
    },
    "split_keywords": [],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "02b15aec9f7b312cde4ac2eea9f00abe9c5e7e2677313aa6fafc523ba708b3f4",
                "md5": "a3fb576a2ef01c6528318b31dd5589f5",
                "sha256": "488b87f0b34ccc0cc68e9a2e60a2e4b93575b36c8bb6e2b2719c0743ed5108ef"
            },
            "downloads": -1,
            "filename": "nonebot_plugin_random_draw-0.1.0-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "a3fb576a2ef01c6528318b31dd5589f5",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.8,<4.0",
            "size": 9234,
            "upload_time": "2023-06-11T15:58:58",
            "upload_time_iso_8601": "2023-06-11T15:58:58.120380Z",
            "url": "https://files.pythonhosted.org/packages/02/b1/5aec9f7b312cde4ac2eea9f00abe9c5e7e2677313aa6fafc523ba708b3f4/nonebot_plugin_random_draw-0.1.0-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "333ac8ebc83cd234bda8308f8d94276ae189e642da9f04fb5a802e8ff33cf25a",
                "md5": "65b29486c4a216519cde241af9f1a759",
                "sha256": "3d318fece2b0ffee371987a7061db59d4c2ae7228d2ff414c3599199f4df505c"
            },
            "downloads": -1,
            "filename": "nonebot_plugin_random_draw-0.1.0.tar.gz",
            "has_sig": false,
            "md5_digest": "65b29486c4a216519cde241af9f1a759",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.8,<4.0",
            "size": 8738,
            "upload_time": "2023-06-11T15:58:59",
            "upload_time_iso_8601": "2023-06-11T15:58:59.880840Z",
            "url": "https://files.pythonhosted.org/packages/33/3a/c8ebc83cd234bda8308f8d94276ae189e642da9f04fb5a802e8ff33cf25a/nonebot_plugin_random_draw-0.1.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-06-11 15:58:59",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "Ikaros-521",
    "github_project": "nonebot_plugin_random_draw",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": false,
    "lcname": "nonebot-plugin-random-draw"
}
        
Elapsed time: 0.08884s