diff --git a/src/python/scripts/wsgiref_test1.py b/src/python/scripts/wsgiref_test1.py
new file mode 100755
index 0000000000000000000000000000000000000000..ac075fc12620717bd597efde48dd24e40f06fe37_c3JjL3B5dGhvbi9zY3JpcHRzL3dzZ2lyZWZfdGVzdDEucHk=
--- /dev/null
+++ b/src/python/scripts/wsgiref_test1.py
@@ -0,0 +1,6 @@
+def application(environ, start_response):
+    start_response('200 OK',[('Content-type','text/html')])
+    return ['<html><body>Hello World!</body></html>']
+
+from wsgiref.handlers import CGIHandler
+CGIHandler().run(application)