Merge branch 'master' into master-2
# Conflicts: # LICENSE
This commit is contained in:
10
test/service/webservice/cgi-bin/file_content_response.py
Executable file
10
test/service/webservice/cgi-bin/file_content_response.py
Executable file
@@ -0,0 +1,10 @@
|
||||
#!/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)
|
||||
Reference in New Issue
Block a user