├── .gitignore ├── hello.py ├── index.html ├── main.js ├── package.json └── readme.md /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /hello.py: -------------------------------------------------------------------------------- 1 | import sys 2 | 3 | print('Hello from Python!') 4 | sys.stdout.flush() 5 | -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techiediaries/python-electron-app/HEAD/index.html -------------------------------------------------------------------------------- /main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techiediaries/python-electron-app/HEAD/main.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techiediaries/python-electron-app/HEAD/package.json -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techiediaries/python-electron-app/HEAD/readme.md --------------------------------------------------------------------------------