Trisurf Monte Carlo simulator
Samo Penic
2016-07-10 8e345370c7846bb5592fb639a6ff91a8abbeef00
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):