reywechat 1.0.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.
@@ -0,0 +1,2 @@
1
+ __pycache__/
2
+ /dist
@@ -0,0 +1,7 @@
1
+ Copyright 2025 ReyXBo
2
+
3
+ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
4
+
5
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
6
+
7
+ THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
@@ -0,0 +1,29 @@
1
+ Metadata-Version: 2.4
2
+ Name: reywechat
3
+ Version: 1.0.3
4
+ Summary: Rey's WeChat method set.
5
+ Project-URL: homepage, https://github.com/reyxbo/reywechat/
6
+ Author-email: Rey <reyxbo@163.com>
7
+ License: Copyright 2025 ReyXBo
8
+
9
+ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
10
+
11
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
12
+
13
+ THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
14
+ License-File: LICENSE
15
+ Keywords: helper,rey,reyxbo,robot,wechat
16
+ Requires-Python: >=3.12
17
+ Requires-Dist: beautifulsoup4
18
+ Requires-Dist: reykit
19
+ Description-Content-Type: text/markdown
20
+
21
+ # reywechat
22
+
23
+ > Rey's WeChat method set.
24
+
25
+ ## Install
26
+
27
+ ```
28
+ pip install reywechat
29
+ ```
@@ -0,0 +1,9 @@
1
+ # reywechat
2
+
3
+ > Rey's WeChat method set.
4
+
5
+ ## Install
6
+
7
+ ```
8
+ pip install reywechat
9
+ ```
@@ -0,0 +1,27 @@
1
+ [project]
2
+ name = "reywechat"
3
+ version = "1.0.3"
4
+ description = "Rey's WeChat method set."
5
+ readme = "README.md"
6
+ requires-python = ">=3.12"
7
+ license = {file = "LICENSE"}
8
+ keywords = ["rey", "reyxbo", "wechat", "robot", "helper"]
9
+ authors = [
10
+ {name = "Rey", email = "reyxbo@163.com"}
11
+ ]
12
+ dependencies = [
13
+ "beautifulsoup4",
14
+ "reykit"
15
+ ]
16
+
17
+ [project.urls]
18
+ homepage = "https://github.com/reyxbo/reywechat/"
19
+
20
+ [build-system]
21
+ requires = ["hatchling"]
22
+ build-backend = "hatchling.build"
23
+
24
+ [tool.hatch.build]
25
+ artifacts = [
26
+ "src/reywechat/data/client_api.dll"
27
+ ]
@@ -0,0 +1,26 @@
1
+ # !/usr/bin/env python
2
+ # -*- coding: utf-8 -*-
3
+
4
+ """
5
+ @Time : 2023-10-17 20:24:04
6
+ @Author : Rey
7
+ @Contact : reyxbo@163.com
8
+ @Explain : Rey's WeChat method set.
9
+
10
+ Folders
11
+ -------
12
+ data : Data file.
13
+
14
+ Modules
15
+ -------
16
+ rall : All methods.
17
+ rclient : Client methods.
18
+ rdatabase : Database methods.
19
+ rexception : Exception methods.
20
+ rexecute: Execute methods.
21
+ rlog : Log methods.
22
+ rreceive : Receive methods.
23
+ rschedule : Schedule methods.
24
+ rsend : Send methods.
25
+ rwechat : WeChat methods.
26
+ """
@@ -0,0 +1,20 @@
1
+ # !/usr/bin/env python
2
+ # -*- coding: utf-8 -*-
3
+
4
+ """
5
+ @Time : 2023-10-19 11:40:35
6
+ @Author : Rey
7
+ @Contact : reyxbo@163.com
8
+ @Explain : All methods.
9
+ """
10
+
11
+
12
+ from .rclient import *
13
+ from .rdatabase import *
14
+ from .rexception import *
15
+ from .rexecute import *
16
+ from .rlog import *
17
+ from .rreceive import *
18
+ from .rschedule import *
19
+ from .rsend import *
20
+ from .rwechat import *