Trisurf Monte Carlo simulator
Samo Penic
2016-07-13 90882f51387b945bc0f660d8b12200b2f48e80fa
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):