<!DOCTYPE html>
<html>
<head>
<title>
</title>
</head>
<body>
<script type='text/javascript'>
btn=document.createElement('BUTTON');
btn.id='b1';
btn.onclick = function () {
//запустить файл main.py
}
btn.textContent='1111';
document.body.appendChild(btn);
</script>
</body>
</html>