E
E
Egor Fadeev2020-09-02 12:20:18
Python
Egor Fadeev, 2020-09-02 12:20:18

How to call a function from Python code in JS code?

Hello everyone, I am writing an application on the web interface for my convenience. I wrote the front in HTML and CSS, and the back in Python, and as a result, I need to use JS to force when I click on the button (#button1, #button2), activate the function in pythoncode.
For example:

Pressed button 1 - function 1 in pythoncode was activated
Pressed button 2 - function 2 in pythoncode was activated

Here is my pythoncode:

import eel
import os
import shutil

eel.init("web")

eel.start("main.html", size=(700, 700))


app = FastAPI()
survivalPath = "steamapps/common/Scrap Mechanic/Survival/Scripts/game/SurvivalGame.lua"

def onCheat():
  os.remove(scrapPath + survivalPath)
  shutil.copyfile("SurvivalGameEn.lua", scrapPath + survivalPath)
  return "Читы Включены!"

def offCheat():
  os.remove(scrapPath + survivalPath)
  shutil.copyfile("SurvivalGameDis.lua", scrapPath + survivalPath)
  print("Читы Выключены!")

Answer the question

In order to leave comments, you need to log in

1 answer(s)
A
Aetae, 2020-09-02
@egorgamery

Read documentation.
https://github.com/samuelhwilliams/Eel#exposing-fu...

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question