reyserver 1.1.213__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,10 @@
1
+ # Python-generated files
2
+ __pycache__/
3
+ *.py[oc]
4
+ build/
5
+ dist/
6
+ wheels/
7
+ *.egg-info
8
+
9
+ # Virtual environments
10
+ .venv
@@ -0,0 +1 @@
1
+ 3.13
@@ -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,35 @@
1
+ Metadata-Version: 2.4
2
+ Name: reyserver
3
+ Version: 1.1.213
4
+ Summary: Backend server method set.
5
+ Project-URL: Homepage, https://www.reyxbo.com
6
+ Project-URL: Repository, https://github.com/reyxbo/reyserver-py.git
7
+ Author-email: Rey <reyxbo@163.com>
8
+ License: Copyright 2025 ReyXBo
9
+
10
+ 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:
11
+
12
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
13
+
14
+ 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.
15
+ License-File: LICENSE
16
+ Keywords: API,async,asynchronous,backend,rey,reyxbo,server
17
+ Requires-Python: >=3.12
18
+ Requires-Dist: fastapi-cache2[redis]
19
+ Requires-Dist: fastapi[standard]
20
+ Requires-Dist: reyclient
21
+ Requires-Dist: reydb
22
+ Requires-Dist: reykit
23
+ Requires-Dist: sqladmin[full]
24
+ Requires-Dist: uvicorn[standard]
25
+ Description-Content-Type: text/markdown
26
+
27
+ # reyserver
28
+
29
+ > Backend server method set.
30
+
31
+ ## Install
32
+
33
+ ```
34
+ pip install reyserver
35
+ ```
@@ -0,0 +1,9 @@
1
+ # reyserver
2
+
3
+ > Backend server method set.
4
+
5
+ ## Install
6
+
7
+ ```
8
+ pip install reyserver
9
+ ```
@@ -0,0 +1,28 @@
1
+ [project]
2
+ name = "reyserver"
3
+ version = "1.1.213"
4
+ description = "Backend server method set."
5
+ readme = "README.md"
6
+ requires-python = ">=3.12"
7
+ license = {file = "LICENSE"}
8
+ keywords = ["rey", "reyxbo", "server", "backend", "API", "async", "asynchronous"]
9
+ authors = [
10
+ {name = "Rey", email = "reyxbo@163.com"}
11
+ ]
12
+ dependencies = [
13
+ "fastapi[standard]",
14
+ "fastapi-cache2[redis]",
15
+ "reyclient",
16
+ "reydb",
17
+ "reykit",
18
+ "sqladmin[full]",
19
+ "uvicorn[standard]"
20
+ ]
21
+
22
+ [project.urls]
23
+ Homepage = "https://www.reyxbo.com"
24
+ Repository = "https://github.com/reyxbo/reyserver-py.git"
25
+
26
+ [build-system]
27
+ requires = ["hatchling"]
28
+ build-backend = "hatchling.build"
@@ -0,0 +1,25 @@
1
+ # !/usr/bin/env python
2
+ # -*- coding: utf-8 -*-
3
+
4
+ """
5
+ @Time : 2023-02-19
6
+ @Author : Rey
7
+ @Contact : reyxbo@163.com
8
+ @Explain : Backend server method set.
9
+
10
+ Modules
11
+ -------
12
+ rall : All methods.
13
+ rauth : Authentication methods.
14
+ rbase : Base methods.
15
+ rbind : Dependency bind methods.
16
+ rcache : Cache methods.
17
+ rclient : Client methods.
18
+ rfile : File methods.
19
+ rpublic : Public methods.
20
+ rredirect : Redirect methods.
21
+ rserver : Server methods.
22
+ rtest : Test methods.
23
+ """
24
+
25
+ from .rserver import Server
File without changes
@@ -0,0 +1,21 @@
1
+ # !/usr/bin/env python
2
+ # -*- coding: utf-8 -*-
3
+
4
+ """
5
+ @Time : 2024-01-11
6
+ @Author : Rey
7
+ @Contact : reyxbo@163.com
8
+ @Explain : All methods.
9
+ """
10
+
11
+ from .rauth import *
12
+ from .rbase import *
13
+ from .rbind import *
14
+ from .rcache import *
15
+ from .rclient import *
16
+ from .rfile import *
17
+ from .rlink import *
18
+ from .rpublic import *
19
+ from .rredirect import *
20
+ from .rserver import *
21
+ from .rtest import *