Trisurf Monte Carlo simulator
Samo Penic
2016-07-06 61d2e7bdabfdac94c533265941d4909537676f4b
python/trisurf/WebTrisurf.py
@@ -1,8 +1,11 @@
import subprocess
from urllib.parse import urlparse
import sys, os
if sys.version_info>=(3,0):
   from urllib.parse import urlparse
else:
   from urlparse import urlparse
import http.server
import socketserver
import sys, os
#Web server
class TsWEB(http.server.BaseHTTPRequestHandler):