Ultimately, I want it so that when users upload a file, it parses the file and then creates a new url (using save_url) where it displays the output of that parsing.
Here is the edit.pt that renders the form:
<form action="/add_page" method="post" accept-charset="utf-8" enctype="multipart/form-data">
<label for="stl">Stl</label>
<input name="stl" type="file" value="" />
<input type="submit" value="submit"/>
</form>
Here is the add_page section of views.py:
@view_config(route_name='add_page', renderer='templates/edit.pt')
def add_page(request):
input_file=request.POST['stl'].file
i1, i2 = itertools.tee(input_file)
vertices = [map(float, line.split()[1:4])
for line in i1
if line.lstrip().startswith('vertex')]
normals = [map(float, line.split()[2:5])
for line in i2
if line.lstrip().startswith('facet')]
ordering=[]
N=len(normals)
...(parsing data)...
return data
if data is None:
displayNotification['please upload file']
if 'stl' in request.params:
name=request.params('name')
page=Page(name,data)
return HTTPFound(location=request.route_url('view_page',pagename=name))
save_url=request.route_url('add_page',pagename=name)
page=Page('','')
return dict(page=page,save_url=save_url)
And when I try and go to http://localhost:6543/add_page/new (to add a new page with a new url), I get this error:
KeyError: "No key 'stl': Not a form request".
This error occurs on the line under def add_page(request):. I am formatting it like so as to go off of this tutorial.