satori-python-client 0.17.2__tar.gz → 0.17.5__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.
- {satori_python_client-0.17.2 → satori_python_client-0.17.5}/PKG-INFO +2 -1
- {satori_python_client-0.17.2 → satori_python_client-0.17.5}/README.md +1 -0
- {satori_python_client-0.17.2 → satori_python_client-0.17.5}/pyproject.toml +7 -4
- {satori_python_client-0.17.2 → satori_python_client-0.17.5}/.mina/client.toml +0 -0
- {satori_python_client-0.17.2 → satori_python_client-0.17.5}/LICENSE +0 -0
- {satori_python_client-0.17.2 → satori_python_client-0.17.5}/src/satori/client/__init__.py +0 -0
- {satori_python_client-0.17.2 → satori_python_client-0.17.5}/src/satori/client/account.py +0 -0
- {satori_python_client-0.17.2 → satori_python_client-0.17.5}/src/satori/client/account.pyi +0 -0
- {satori_python_client-0.17.2 → satori_python_client-0.17.5}/src/satori/client/config.py +0 -0
- {satori_python_client-0.17.2 → satori_python_client-0.17.5}/src/satori/client/network/__init__.py +0 -0
- {satori_python_client-0.17.2 → satori_python_client-0.17.5}/src/satori/client/network/base.py +0 -0
- {satori_python_client-0.17.2 → satori_python_client-0.17.5}/src/satori/client/network/util.py +0 -0
- {satori_python_client-0.17.2 → satori_python_client-0.17.5}/src/satori/client/network/webhook.py +0 -0
- {satori_python_client-0.17.2 → satori_python_client-0.17.5}/src/satori/client/network/websocket.py +0 -0
- {satori_python_client-0.17.2 → satori_python_client-0.17.5}/src/satori/client/protocol.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: satori-python-client
|
|
3
|
-
Version: 0.17.
|
|
3
|
+
Version: 0.17.5
|
|
4
4
|
Summary: Satori Protocol SDK for python, specify client part
|
|
5
5
|
Home-page: https://github.com/RF-Tar-Railt/satori-python
|
|
6
6
|
Author-Email: RF-Tar-Railt <rf_tar_railt@qq.com>
|
|
@@ -77,6 +77,7 @@ pip install satori-python-server
|
|
|
77
77
|
| Satori | `pip install satori-python-adapter-satori` | satori.adapters.satori |
|
|
78
78
|
| OneBot V11 | `pip install satori-python-adapter-onebot11` | satori.adapters.onebot11.forward, satori.adapters.onebot11.reverse |
|
|
79
79
|
| Console | `pip install satori-python-adapter-console` | satori.adapters.console |
|
|
80
|
+
| Milky | `pip install satori-python-adapter-milky` | satori.adapters.milky.main, satori.adapters.milky.webhook |
|
|
80
81
|
|
|
81
82
|
### 社区适配器
|
|
82
83
|
|
|
@@ -52,6 +52,7 @@ pip install satori-python-server
|
|
|
52
52
|
| Satori | `pip install satori-python-adapter-satori` | satori.adapters.satori |
|
|
53
53
|
| OneBot V11 | `pip install satori-python-adapter-onebot11` | satori.adapters.onebot11.forward, satori.adapters.onebot11.reverse |
|
|
54
54
|
| Console | `pip install satori-python-adapter-console` | satori.adapters.console |
|
|
55
|
+
| Milky | `pip install satori-python-adapter-milky` | satori.adapters.milky.main, satori.adapters.milky.webhook |
|
|
55
56
|
|
|
56
57
|
### 社区适配器
|
|
57
58
|
|
|
@@ -24,7 +24,7 @@ classifiers = [
|
|
|
24
24
|
"Programming Language :: Python :: 3.12",
|
|
25
25
|
"Operating System :: OS Independent",
|
|
26
26
|
]
|
|
27
|
-
version = "0.17.
|
|
27
|
+
version = "0.17.5"
|
|
28
28
|
|
|
29
29
|
[project.license]
|
|
30
30
|
text = "MIT"
|
|
@@ -66,7 +66,7 @@ excludes = [
|
|
|
66
66
|
composite = [
|
|
67
67
|
"isort ./src/ ./example/",
|
|
68
68
|
"black ./src/ ./example/",
|
|
69
|
-
"ruff check
|
|
69
|
+
"ruff check",
|
|
70
70
|
]
|
|
71
71
|
|
|
72
72
|
[tool.pdm.version]
|
|
@@ -90,7 +90,10 @@ extra_standard_library = [
|
|
|
90
90
|
line-length = 120
|
|
91
91
|
target-version = "py310"
|
|
92
92
|
exclude = [
|
|
93
|
-
"
|
|
93
|
+
"exam_qps.py",
|
|
94
|
+
"exam1.py",
|
|
95
|
+
"exam2.py",
|
|
96
|
+
"src/satori/_vendor/*",
|
|
94
97
|
]
|
|
95
98
|
|
|
96
99
|
[tool.ruff.lint]
|
|
@@ -108,7 +111,7 @@ ignore = [
|
|
|
108
111
|
"F403",
|
|
109
112
|
"F405",
|
|
110
113
|
"C901",
|
|
111
|
-
"
|
|
114
|
+
"T201",
|
|
112
115
|
]
|
|
113
116
|
|
|
114
117
|
[tool.pyright]
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{satori_python_client-0.17.2 → satori_python_client-0.17.5}/src/satori/client/network/__init__.py
RENAMED
|
File without changes
|
{satori_python_client-0.17.2 → satori_python_client-0.17.5}/src/satori/client/network/base.py
RENAMED
|
File without changes
|
{satori_python_client-0.17.2 → satori_python_client-0.17.5}/src/satori/client/network/util.py
RENAMED
|
File without changes
|
{satori_python_client-0.17.2 → satori_python_client-0.17.5}/src/satori/client/network/webhook.py
RENAMED
|
File without changes
|
{satori_python_client-0.17.2 → satori_python_client-0.17.5}/src/satori/client/network/websocket.py
RENAMED
|
File without changes
|
|
File without changes
|