Hello i'm newby in Vertx. Today i implemented very simple vertx app with python But it is not working
Here is python code
web_server_conf = {
'port' : 8080,
'host' : 'localhost'
}
# Start the web server, with the config we defined above
import vertx
vertx.deploy_verticle('vertx.web-server-v1.0', web_server_conf)
But i got a error like below
C:\dev\tools\vert.x-1.3.0.final>vertx run app.py Cannot find verticle vertx.web-server-v1.0
i already installed the module in $VERTX_HOME\mods and javascript version of the sample is works well,
load('vertx.js');
var webServerConf = {
port: 8080,
host: 'localhost'
};
// Start the web server, with the config we defined above
vertx.deployModule('vertx.web-server-v1.0', webServerConf);
Could u please kindly mentoring me?