satori-python-client 0.17.2__tar.gz → 0.17.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.
- {satori_python_client-0.17.2 → satori_python_client-0.17.3}/PKG-INFO +2 -1
- {satori_python_client-0.17.2 → satori_python_client-0.17.3}/README.md +1 -0
- {satori_python_client-0.17.2 → satori_python_client-0.17.3}/pyproject.toml +6 -4
- {satori_python_client-0.17.2 → satori_python_client-0.17.3}/.mina/client.toml +0 -0
- {satori_python_client-0.17.2 → satori_python_client-0.17.3}/LICENSE +0 -0
- {satori_python_client-0.17.2 → satori_python_client-0.17.3}/src/satori/client/__init__.py +0 -0
- {satori_python_client-0.17.2 → satori_python_client-0.17.3}/src/satori/client/account.py +0 -0
- {satori_python_client-0.17.2 → satori_python_client-0.17.3}/src/satori/client/account.pyi +0 -0
- {satori_python_client-0.17.2 → satori_python_client-0.17.3}/src/satori/client/config.py +0 -0
- {satori_python_client-0.17.2 → satori_python_client-0.17.3}/src/satori/client/network/__init__.py +0 -0
- {satori_python_client-0.17.2 → satori_python_client-0.17.3}/src/satori/client/network/base.py +0 -0
- {satori_python_client-0.17.2 → satori_python_client-0.17.3}/src/satori/client/network/util.py +0 -0
- {satori_python_client-0.17.2 → satori_python_client-0.17.3}/src/satori/client/network/webhook.py +0 -0
- {satori_python_client-0.17.2 → satori_python_client-0.17.3}/src/satori/client/network/websocket.py +0 -0
- {satori_python_client-0.17.2 → satori_python_client-0.17.3}/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.3
|
|
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.3"
|
|
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,9 @@ 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",
|
|
94
96
|
]
|
|
95
97
|
|
|
96
98
|
[tool.ruff.lint]
|
|
@@ -108,7 +110,7 @@ ignore = [
|
|
|
108
110
|
"F403",
|
|
109
111
|
"F405",
|
|
110
112
|
"C901",
|
|
111
|
-
"
|
|
113
|
+
"T201",
|
|
112
114
|
]
|
|
113
115
|
|
|
114
116
|
[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.3}/src/satori/client/network/__init__.py
RENAMED
|
File without changes
|
{satori_python_client-0.17.2 → satori_python_client-0.17.3}/src/satori/client/network/base.py
RENAMED
|
File without changes
|
{satori_python_client-0.17.2 → satori_python_client-0.17.3}/src/satori/client/network/util.py
RENAMED
|
File without changes
|
{satori_python_client-0.17.2 → satori_python_client-0.17.3}/src/satori/client/network/webhook.py
RENAMED
|
File without changes
|
{satori_python_client-0.17.2 → satori_python_client-0.17.3}/src/satori/client/network/websocket.py
RENAMED
|
File without changes
|
|
File without changes
|