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.
@@ -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.1
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.1
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 框架,主要用于构建高效、可维护的机器人应用程序。
@@ -2,7 +2,7 @@ from setuptools import setup, find_packages
2
2
 
3
3
  setup(
4
4
  name='ErisPulse',
5
- version='1.0.1',
5
+ version='1.0.2',
6
6
  author='艾莉丝·格雷拉特(WSu2059)',
7
7
  author_email='wsu2059@qq.com',
8
8
  maintainer='runoneall',
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes