BLENDER2.73A support Python3.4.2, not only can customize the interface, control process. It can also be used in conjunction with other software through the Python socket function, which is really powerful. such as can be achieved: render server, cluster rendering, external data import, external algorithm solver and so on, so that blender into a super graphics work network.
[Change from: BLENDERCN Chinese Forum]
The first step: Enter in the Blender text editor:
Import Http.serverimport socketserverport = 8000Handler = HTTP.SERVER.SIMPLEHTTPREQUESTHANDLERHTTPD = Socketserver. TCPServer (("", port), Handler) print ("Serving at Port", Port) Httpd.serve_forever ()
Step Two: Click Execute next to the text editor.
The third step: Hit the browser, enter http://127.0.0.1:8000 now your Blender folder is in the browser can be browsed.
Transform blender into a small HTTP web server