Pylons File Upload
This code snippet should clear up the confusing documentation when it comes to uploading an optional picture :
import os
from pylons import config
import shutil
class MyController(BaseController):
def picture(self, registration=False):
if ’send_picture’ in request.params:
if (‘picture’ in request.params) and hasattr(request.params[‘picture’], ‘filename’):
[...]