Files
ServiceSimulator/test/service/webservice/cgi-bin/file_content_response.py
stubbfel 7cf755493c Merge branch 'master' into master-2
# Conflicts:
#	LICENSE
2015-03-27 00:06:28 +01:00

10 lines
238 B
Python
Executable File

#!/usr/bin/env python3
__author__ = 'dev'
response_file_path = "cgi-bin/test.html"
response_file = open(response_file_path, "r")
response_file_content = response_file.read()
response_file.close()
print("\n")
print(response_file_content)