ErisPulse 1.0.1__zip → 1.0.2__zip
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.
- {erispulse-1.0.1 → erispulse-1.0.2}/ErisPulse/__init__.py +6 -2
- {erispulse-1.0.1 → erispulse-1.0.2}/ErisPulse.egg-info/PKG-INFO +3 -1
- {erispulse-1.0.1 → erispulse-1.0.2}/PKG-INFO +3 -1
- {erispulse-1.0.1 → erispulse-1.0.2}/README.md +2 -0
- {erispulse-1.0.1 → erispulse-1.0.2}/setup.py +1 -1
- {erispulse-1.0.1 → erispulse-1.0.2}/ErisPulse/__main__.py +0 -0
- {erispulse-1.0.1 → erispulse-1.0.2}/ErisPulse/envManager.py +0 -0
- {erispulse-1.0.1 → erispulse-1.0.2}/ErisPulse/errors.py +0 -0
- {erispulse-1.0.1 → erispulse-1.0.2}/ErisPulse/logger.py +0 -0
- {erispulse-1.0.1 → erispulse-1.0.2}/ErisPulse/origin.py +0 -0
- {erispulse-1.0.1 → erispulse-1.0.2}/ErisPulse/sdk.py +0 -0
- {erispulse-1.0.1 → erispulse-1.0.2}/ErisPulse/util.py +0 -0
- {erispulse-1.0.1 → erispulse-1.0.2}/ErisPulse.egg-info/SOURCES.txt +0 -0
- {erispulse-1.0.1 → erispulse-1.0.2}/ErisPulse.egg-info/dependency_links.txt +0 -0
- {erispulse-1.0.1 → erispulse-1.0.2}/ErisPulse.egg-info/requires.txt +0 -0
- {erispulse-1.0.1 → erispulse-1.0.2}/ErisPulse.egg-info/top_level.txt +0 -0
- {erispulse-1.0.1 → erispulse-1.0.2}/setup.cfg +0 -0
|
@@ -10,11 +10,15 @@ setattr(sdk, "util", util)
|
|
|
10
10
|
|
|
11
11
|
env.load_env_file()
|
|
12
12
|
|
|
13
|
+
import os
|
|
14
|
+
|
|
13
15
|
def init():
|
|
14
|
-
import os
|
|
15
|
-
import sys
|
|
16
16
|
try:
|
|
17
17
|
sdkModulePath = os.path.join(os.path.dirname(__file__), "modules")
|
|
18
|
+
|
|
19
|
+
if not os.path.exists(sdkModulePath):
|
|
20
|
+
os.makedirs(sdkModulePath)
|
|
21
|
+
|
|
18
22
|
sys.path.append(sdkModulePath)
|
|
19
23
|
|
|
20
24
|
TempModules = [
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: ErisPulse
|
|
3
|
-
Version: 1.0.
|
|
3
|
+
Version: 1.0.2
|
|
4
4
|
Summary: ErisPulse 是一个模块化、可扩展的异步 Python SDK 框架,主要用于构建高效、可维护的机器人应用程序。
|
|
5
5
|
Home-page: https://github.com/wsu2059q/ErisPulse
|
|
6
6
|
Author: 艾莉丝·格雷拉特(WSu2059)
|
|
@@ -35,6 +35,8 @@ Dynamic: summary
|
|
|
35
35
|
|
|
36
36
|
# ErisPulse
|
|
37
37
|
|
|
38
|
+
v1.0.2此版本修复首次加载时因为模块目录不存在而报错的问题
|
|
39
|
+
|
|
38
40
|
本项目基于 [RyhBotPythonSDK V2](https://github.com/runoneall/RyhBotPythonSDK2) 构建,并由 [sdkFrame](https://github.com/runoneall/sdkFrame) 提供支持。这是一个异步版本的 SDK,可能在功能和特性上与原库存在一定差异。
|
|
39
41
|
|
|
40
42
|
ErisPulse 是一个模块化、可扩展的异步 Python SDK 框架,主要用于构建高效、可维护的机器人应用程序。
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: ErisPulse
|
|
3
|
-
Version: 1.0.
|
|
3
|
+
Version: 1.0.2
|
|
4
4
|
Summary: ErisPulse 是一个模块化、可扩展的异步 Python SDK 框架,主要用于构建高效、可维护的机器人应用程序。
|
|
5
5
|
Home-page: https://github.com/wsu2059q/ErisPulse
|
|
6
6
|
Author: 艾莉丝·格雷拉特(WSu2059)
|
|
@@ -35,6 +35,8 @@ Dynamic: summary
|
|
|
35
35
|
|
|
36
36
|
# ErisPulse
|
|
37
37
|
|
|
38
|
+
v1.0.2此版本修复首次加载时因为模块目录不存在而报错的问题
|
|
39
|
+
|
|
38
40
|
本项目基于 [RyhBotPythonSDK V2](https://github.com/runoneall/RyhBotPythonSDK2) 构建,并由 [sdkFrame](https://github.com/runoneall/sdkFrame) 提供支持。这是一个异步版本的 SDK,可能在功能和特性上与原库存在一定差异。
|
|
39
41
|
|
|
40
42
|
ErisPulse 是一个模块化、可扩展的异步 Python SDK 框架,主要用于构建高效、可维护的机器人应用程序。
|
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
# ErisPulse
|
|
2
2
|
|
|
3
|
+
v1.0.2此版本修复首次加载时因为模块目录不存在而报错的问题
|
|
4
|
+
|
|
3
5
|
本项目基于 [RyhBotPythonSDK V2](https://github.com/runoneall/RyhBotPythonSDK2) 构建,并由 [sdkFrame](https://github.com/runoneall/sdkFrame) 提供支持。这是一个异步版本的 SDK,可能在功能和特性上与原库存在一定差异。
|
|
4
6
|
|
|
5
7
|
ErisPulse 是一个模块化、可扩展的异步 Python SDK 框架,主要用于构建高效、可维护的机器人应用程序。
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|