Skip to content

Instantly share code, notes, and snippets.

@omaraboumrad
Created November 12, 2012 23:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save omaraboumrad/4062691 to your computer and use it in GitHub Desktop.
Save omaraboumrad/4062691 to your computer and use it in GitHub Desktop.
lists files based on requested path (wsgiref playground)
import os
from wsgiref import simple_server
def format_html(entries):
html = """<html><body><ul>%s</ul></body></html"""
return html % entries
def format_entries(requested_dir, children):
result = []
a = '<li><a href="%s">%s</a></li>'
non_a = '<li>%s</li>'
for child in children:
file_path = os.path.join(requested_dir, child)
if os.path.isdir(file_path):
result.append(a % (file_path, child))
else:
result.append(non_a % child )
formatted = ''.join(result)
return format_html(formatted)
def req(env, res):
result = None
requested_dir = env['PATH_INFO']
status = '200 OK'
try:
children = os.listdir(requested_dir)
result = format_entries(requested_dir, children)
except:
result = 'Error!'
status = '404 NotFound'
headers = [('Content-Type', 'text/html')]
res(status, headers)
return [str(result)]
httpd = simple_server.make_server('', 8000, req)
httpd.serve_forever()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment