rocket-framework 1.0.0__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.
Files changed (49) hide show
  1. rocket_framework-1.0.0/LICENSE +21 -0
  2. rocket_framework-1.0.0/PKG-INFO +87 -0
  3. rocket_framework-1.0.0/README.md +16 -0
  4. rocket_framework-1.0.0/rocket_framework/__init__.py +25 -0
  5. rocket_framework-1.0.0/rocket_framework/base_model.py +817 -0
  6. rocket_framework-1.0.0/rocket_framework/clickhouse.py +29 -0
  7. rocket_framework-1.0.0/rocket_framework/coding.py +34 -0
  8. rocket_framework-1.0.0/rocket_framework/config.py +88 -0
  9. rocket_framework-1.0.0/rocket_framework/console/__init__.py +8 -0
  10. rocket_framework-1.0.0/rocket_framework/console/base_console.py +96 -0
  11. rocket_framework-1.0.0/rocket_framework/crypto.py +428 -0
  12. rocket_framework-1.0.0/rocket_framework/csv.py +540 -0
  13. rocket_framework-1.0.0/rocket_framework/dict.py +67 -0
  14. rocket_framework-1.0.0/rocket_framework/es.py +196 -0
  15. rocket_framework-1.0.0/rocket_framework/excel.py +509 -0
  16. rocket_framework-1.0.0/rocket_framework/file.py +1488 -0
  17. rocket_framework-1.0.0/rocket_framework/host.py +29 -0
  18. rocket_framework-1.0.0/rocket_framework/http.py +225 -0
  19. rocket_framework-1.0.0/rocket_framework/json.py +47 -0
  20. rocket_framework-1.0.0/rocket_framework/log.py +388 -0
  21. rocket_framework-1.0.0/rocket_framework/memcached.py +24 -0
  22. rocket_framework-1.0.0/rocket_framework/message_queue/__init__.py +0 -0
  23. rocket_framework-1.0.0/rocket_framework/message_queue/rabbit.py +122 -0
  24. rocket_framework-1.0.0/rocket_framework/message_queue/rocket.py +155 -0
  25. rocket_framework-1.0.0/rocket_framework/mongodb.py +271 -0
  26. rocket_framework-1.0.0/rocket_framework/mysql.py +462 -0
  27. rocket_framework-1.0.0/rocket_framework/notice.py +72 -0
  28. rocket_framework-1.0.0/rocket_framework/os.py +139 -0
  29. rocket_framework-1.0.0/rocket_framework/powerjob.py +154 -0
  30. rocket_framework-1.0.0/rocket_framework/qr_code.py +54 -0
  31. rocket_framework-1.0.0/rocket_framework/redis.py +119 -0
  32. rocket_framework-1.0.0/rocket_framework/sign.py +112 -0
  33. rocket_framework-1.0.0/rocket_framework/time.py +596 -0
  34. rocket_framework-1.0.0/rocket_framework/uuid.py +20 -0
  35. rocket_framework-1.0.0/rocket_framework/web_tornado/__init__.py +10 -0
  36. rocket_framework-1.0.0/rocket_framework/web_tornado/base_handler/__init__.py +12 -0
  37. rocket_framework-1.0.0/rocket_framework/web_tornado/base_handler/base_api_handler.py +43 -0
  38. rocket_framework-1.0.0/rocket_framework/web_tornado/base_handler/base_cookie_handler.py +49 -0
  39. rocket_framework-1.0.0/rocket_framework/web_tornado/base_handler/base_handler.py +806 -0
  40. rocket_framework-1.0.0/rocket_framework/web_tornado/base_tornado.py +100 -0
  41. rocket_framework-1.0.0/rocket_framework/web_tornado/monitor.py +59 -0
  42. rocket_framework-1.0.0/rocket_framework/wechat.py +136 -0
  43. rocket_framework-1.0.0/rocket_framework.egg-info/PKG-INFO +87 -0
  44. rocket_framework-1.0.0/rocket_framework.egg-info/SOURCES.txt +47 -0
  45. rocket_framework-1.0.0/rocket_framework.egg-info/dependency_links.txt +1 -0
  46. rocket_framework-1.0.0/rocket_framework.egg-info/requires.txt +34 -0
  47. rocket_framework-1.0.0/rocket_framework.egg-info/top_level.txt +1 -0
  48. rocket_framework-1.0.0/setup.cfg +4 -0
  49. rocket_framework-1.0.0/setup.py +80 -0
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2023 Tanzy
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
@@ -0,0 +1,87 @@
1
+ Metadata-Version: 2.4
2
+ Name: rocket_framework
3
+ Version: 1.0.0
4
+ Summary: rocket framework
5
+ Home-page: https://gitee.com/rocket_man/rocket_framework.git
6
+ Author: rocket_man
7
+ Author-email: rocket@ggo9.com
8
+ License: MIT
9
+ Classifier: Topic :: Software Development :: Libraries :: Python Modules
10
+ Classifier: Programming Language :: Python
11
+ Classifier: Programming Language :: Python :: 3.4
12
+ Classifier: Programming Language :: Python :: 3.5
13
+ Classifier: Programming Language :: Python :: 3.5
14
+ Classifier: Programming Language :: Python :: 3.6
15
+ Classifier: Programming Language :: Python :: 3.7
16
+ Classifier: Programming Language :: Python :: 3.8
17
+ Classifier: Programming Language :: Python :: 3.9
18
+ Classifier: Programming Language :: Python :: 3.10
19
+ Classifier: Programming Language :: Python :: 3.11
20
+ Classifier: Programming Language :: Python :: 3.12
21
+ Classifier: Programming Language :: Python :: 3.13
22
+ Classifier: Programming Language :: Python :: 3.14
23
+ Requires-Python: ~=3.4
24
+ Description-Content-Type: text/markdown
25
+ License-File: LICENSE
26
+ Requires-Dist: elasticsearch<=7.6.0
27
+ Requires-Dist: requests>=2.23.0
28
+ Requires-Dist: PyMySQL>=1.0.2
29
+ Requires-Dist: python_dateutil>=2.8.1
30
+ Requires-Dist: redis>=5.0.7
31
+ Requires-Dist: pycryptodome>=3.8.0
32
+ Requires-Dist: tornado==6.0.4
33
+ Requires-Dist: bleach>=3.1.5
34
+ Requires-Dist: pycket>=0.3.0
35
+ Requires-Dist: ufile>=3.2.2
36
+ Requires-Dist: ks3sdk>=1.0.16
37
+ Requires-Dist: oss2>=2.13.1
38
+ Requires-Dist: boto3>=1.20.37
39
+ Requires-Dist: cos-python-sdk-v5>=1.9.0
40
+ Requires-Dist: bce-python-sdk>=0.8.61
41
+ Requires-Dist: DBUtils==1.3
42
+ Requires-Dist: openpyxl>=3.0.3
43
+ Requires-Dist: xlwt>=1.3.0
44
+ Requires-Dist: xlrd>=1.2.0
45
+ Requires-Dist: xlutils>=2.0.0
46
+ Requires-Dist: qrcode>=6.1
47
+ Requires-Dist: Pillow>=7.1.2
48
+ Requires-Dist: threadpool>=1.3.2
49
+ Requires-Dist: filechunkio>=1.8
50
+ Requires-Dist: clickhouse-driver>=0.2.0
51
+ Requires-Dist: lxml>=4.5.0
52
+ Requires-Dist: pika>=1.2.1
53
+ Requires-Dist: rocketmq-client-python>=2.0.0
54
+ Requires-Dist: numpy>=1.23.5
55
+ Requires-Dist: filetype>=1.2.0
56
+ Requires-Dist: python3-memcached>=1.51
57
+ Requires-Dist: urllib3==1.26.15
58
+ Requires-Dist: nacos-sdk-python==1.0.0
59
+ Requires-Dist: pymongo==4.10.1
60
+ Dynamic: author
61
+ Dynamic: author-email
62
+ Dynamic: classifier
63
+ Dynamic: description
64
+ Dynamic: description-content-type
65
+ Dynamic: home-page
66
+ Dynamic: license
67
+ Dynamic: license-file
68
+ Dynamic: requires-dist
69
+ Dynamic: requires-python
70
+ Dynamic: summary
71
+
72
+
73
+
74
+ <!--
75
+ * @Author: ChenXiaolei
76
+ * @Date: 2021-09-08 11:32:28
77
+ * @LastEditTime: 2025-12-24 13:37:45
78
+ * @LastEditors: ChenXiaolei
79
+ * @Description:
80
+ -->
81
+
82
+ # rocket_framework
83
+
84
+ ## 火箭先生Python开发框架
85
+
86
+ ### 1.0.0 更新内容
87
+ * 框架发布
@@ -0,0 +1,16 @@
1
+
2
+
3
+ <!--
4
+ * @Author: ChenXiaolei
5
+ * @Date: 2021-09-08 11:32:28
6
+ * @LastEditTime: 2025-12-24 13:37:45
7
+ * @LastEditors: ChenXiaolei
8
+ * @Description:
9
+ -->
10
+
11
+ # rocket_framework
12
+
13
+ ## 火箭先生Python开发框架
14
+
15
+ ### 1.0.0 更新内容
16
+ * 框架发布
@@ -0,0 +1,25 @@
1
+ # -*- coding: utf-8 -*-
2
+ """
3
+ :Author: ChenXiaolei
4
+ :Date: 2020-04-16 14:38:22
5
+ :LastEditTime: 2025-12-24 13:41:40
6
+ :LastEditors: ChenXiaolei
7
+ :Description:
8
+ """
9
+
10
+ from . import config
11
+ from .coding import *
12
+ from .crypto import *
13
+ from .mysql import *
14
+ from .log import *
15
+ from .time import *
16
+ from .uuid import *
17
+ from .http import *
18
+ from .json import *
19
+ from .host import *
20
+ from .notice import *
21
+ from .excel import *
22
+ from .csv import *
23
+ from .qr_code import *
24
+ from .sign import *
25
+ from .os import *