client.py
# Importing modules
import os
import asyncio
import sys
import Events
import glob
import Plugins
global FPath
global PlugPath
global CMDPath
FPath = os.path.dirname(os.path.abspath(__file__))
PlugPath = os.path.dirname(os.path.abspath(__file__)) + "\\Plugins"
Events.Startup()
global cmds
cmds = input("\\>")
global commandlst
commandlst = cmds.split()
command = commandlst[0]
runpy = "python " + str(FPath) + "\\" + str(command) + ".py"
if(os.path.isfile(FPath + "\\" + command + ".py") == True):
os.system(runpy)
else:
print(command + " is not a command or a plugin command!")
os.system("ping localhost -n 2 >nul")
os.system("py client.py")
help.py
import json
from pprint import pprint
import os
import sys
import client
commands = json.loads(open(sys.path[0] + "\\commands.json").read())
при импорте клиента он запускает весь файл client.py.
Я попытался из команды import клиента и ничего не работает.
пожалуйста, помогите.