23 lines
514 B
Python
23 lines
514 B
Python
"""
|
|
Initialization module for the `aliyun` package.
|
|
|
|
This module can initialize the package, import submodules, and declare
|
|
package-level variables or functions.
|
|
"""
|
|
|
|
# Importing submodules (if any)
|
|
from .aliyuntokenaccess import get_token
|
|
|
|
# Package metadata
|
|
__version__ = "1.0.0"
|
|
__author__ = "Kang"
|
|
|
|
def initialize():
|
|
"""
|
|
Perform any package-wide initialization here.
|
|
"""
|
|
print("aliyun package initialized")
|
|
|
|
# Perform initialization when the module is loaded
|
|
initialize()
|