在Turtle中使用Skulpt和Splinter for Python Web应用程序吗?

时间:2019-02-07 13:08:42

标签: python splinter brython skulpt

我目前正在开发一个Web应用程序,其主要功能是Python的Turtle。当我开始这样做时,我使用Skulpt可以在网站上可视化并运行我的python代码,并且效果很好。但是,我需要给我的python代码一个HTML文件中表单的输入。因此,我尝试使用Splinter来解决该问题,但没有成功,当我编写“从碎片导入浏览器”时,似乎Python代码停止运行。

有人知道Splinter是否与Skulpt不兼容,或者是否还有其他方法可以做到这一点?

1 个答案:

答案 0 :(得分:0)

splinter不在skulpt中实现。您可以自己编写。看看http://www.skulpt.org/

上的“第三方模块”

另一种方法是更改​​“ input()”:

Sk.configure({
        inputfun: function (prompt) {
           return window.prompt(prompt);
        },
});

这是有关更改输入的有趣帖子 Wait for an event to occur within a function in Javascript for Skulpt