nonebot-plugin-htmlrender 0.3.2__tar.gz → 0.3.3__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {nonebot_plugin_htmlrender-0.3.2 → nonebot_plugin_htmlrender-0.3.3}/PKG-INFO +2 -2
- {nonebot_plugin_htmlrender-0.3.2 → nonebot_plugin_htmlrender-0.3.3}/pyproject.toml +3 -2
- {nonebot_plugin_htmlrender-0.3.2 → nonebot_plugin_htmlrender-0.3.3}/LICENSE +0 -0
- {nonebot_plugin_htmlrender-0.3.2 → nonebot_plugin_htmlrender-0.3.3}/README.md +0 -0
- {nonebot_plugin_htmlrender-0.3.2 → nonebot_plugin_htmlrender-0.3.3}/nonebot_plugin_htmlrender/__init__.py +0 -0
- {nonebot_plugin_htmlrender-0.3.2 → nonebot_plugin_htmlrender-0.3.3}/nonebot_plugin_htmlrender/browser.py +0 -0
- {nonebot_plugin_htmlrender-0.3.2 → nonebot_plugin_htmlrender-0.3.3}/nonebot_plugin_htmlrender/config.py +0 -0
- {nonebot_plugin_htmlrender-0.3.2 → nonebot_plugin_htmlrender-0.3.3}/nonebot_plugin_htmlrender/data_source.py +0 -0
- {nonebot_plugin_htmlrender-0.3.2 → nonebot_plugin_htmlrender-0.3.3}/nonebot_plugin_htmlrender/templates/github-markdown-light.css +0 -0
- {nonebot_plugin_htmlrender-0.3.2 → nonebot_plugin_htmlrender-0.3.3}/nonebot_plugin_htmlrender/templates/katex/katex.min.b64_fonts.css +0 -0
- {nonebot_plugin_htmlrender-0.3.2 → nonebot_plugin_htmlrender-0.3.3}/nonebot_plugin_htmlrender/templates/katex/katex.min.js +0 -0
- {nonebot_plugin_htmlrender-0.3.2 → nonebot_plugin_htmlrender-0.3.3}/nonebot_plugin_htmlrender/templates/katex/mathtex-script-type.min.js +0 -0
- {nonebot_plugin_htmlrender-0.3.2 → nonebot_plugin_htmlrender-0.3.3}/nonebot_plugin_htmlrender/templates/markdown.html +0 -0
- {nonebot_plugin_htmlrender-0.3.2 → nonebot_plugin_htmlrender-0.3.3}/nonebot_plugin_htmlrender/templates/pygments-default.css +0 -0
- {nonebot_plugin_htmlrender-0.3.2 → nonebot_plugin_htmlrender-0.3.3}/nonebot_plugin_htmlrender/templates/text.css +0 -0
- {nonebot_plugin_htmlrender-0.3.2 → nonebot_plugin_htmlrender-0.3.3}/nonebot_plugin_htmlrender/templates/text.html +0 -0
- {nonebot_plugin_htmlrender-0.3.2 → nonebot_plugin_htmlrender-0.3.3}/tests/__init__.py +0 -0
- {nonebot_plugin_htmlrender-0.3.2 → nonebot_plugin_htmlrender-0.3.3}/tests/conftest.py +0 -0
- {nonebot_plugin_htmlrender-0.3.2 → nonebot_plugin_htmlrender-0.3.3}/tests/templates/markdown.css +0 -0
- {nonebot_plugin_htmlrender-0.3.2 → nonebot_plugin_htmlrender-0.3.3}/tests/templates/mystyle.css +0 -0
- {nonebot_plugin_htmlrender-0.3.2 → nonebot_plugin_htmlrender-0.3.3}/tests/templates/text.html +0 -0
- {nonebot_plugin_htmlrender-0.3.2 → nonebot_plugin_htmlrender-0.3.3}/tests/test_htmlrender.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: nonebot-plugin-htmlrender
|
|
3
|
-
Version: 0.3.
|
|
3
|
+
Version: 0.3.3
|
|
4
4
|
Summary: 通过浏览器渲染图片
|
|
5
5
|
Author-Email: kexue <xana278@foxmail.com>
|
|
6
6
|
License: MIT License
|
|
@@ -28,7 +28,7 @@ Project-URL: Homepage, https://github.com/kexue-z/nonebot-plugin-htmlrender
|
|
|
28
28
|
Project-URL: Bug tracker, https://github.com/kexue-z/nonebot-plugin-htmlrender/issues
|
|
29
29
|
Requires-Python: <4.0,>=3.9
|
|
30
30
|
Requires-Dist: playwright>=1.17.2
|
|
31
|
-
Requires-Dist: nonebot2
|
|
31
|
+
Requires-Dist: nonebot2>=2.2.0
|
|
32
32
|
Requires-Dist: jinja2>=3.0.3
|
|
33
33
|
Requires-Dist: markdown>=3.3.6
|
|
34
34
|
Requires-Dist: Pygments>=2.10.0
|
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = "nonebot-plugin-htmlrender"
|
|
3
|
-
version = "0.3.
|
|
3
|
+
version = "0.3.3"
|
|
4
4
|
description = "通过浏览器渲染图片"
|
|
5
5
|
authors = [
|
|
6
6
|
{ name = "kexue", email = "xana278@foxmail.com" },
|
|
7
7
|
]
|
|
8
8
|
dependencies = [
|
|
9
9
|
"playwright>=1.17.2",
|
|
10
|
-
"nonebot2
|
|
10
|
+
"nonebot2>=2.2.0",
|
|
11
11
|
"jinja2>=3.0.3",
|
|
12
12
|
"markdown>=3.3.6",
|
|
13
13
|
"Pygments>=2.10.0",
|
|
@@ -30,6 +30,7 @@ dev = [
|
|
|
30
30
|
"pytest-asyncio<1.0.0,>=0.18.1",
|
|
31
31
|
"nonebug @ git+https://github.com/nonebot/nonebug.git",
|
|
32
32
|
"nonebot-adapter-onebot>=2.2.3",
|
|
33
|
+
"fastapi>=0.111.0",
|
|
33
34
|
]
|
|
34
35
|
|
|
35
36
|
[tool.pdm.build]
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{nonebot_plugin_htmlrender-0.3.2 → nonebot_plugin_htmlrender-0.3.3}/tests/templates/markdown.css
RENAMED
|
File without changes
|
{nonebot_plugin_htmlrender-0.3.2 → nonebot_plugin_htmlrender-0.3.3}/tests/templates/mystyle.css
RENAMED
|
File without changes
|
{nonebot_plugin_htmlrender-0.3.2 → nonebot_plugin_htmlrender-0.3.3}/tests/templates/text.html
RENAMED
|
File without changes
|
{nonebot_plugin_htmlrender-0.3.2 → nonebot_plugin_htmlrender-0.3.3}/tests/test_htmlrender.py
RENAMED
|
File without changes
|