As of version 0.1.4, req.get_param() no longer accepts a "default" parameter. Instead, callers are encourage to use the idiomatic python "or" pattern. For example: limit = req.get_param('limit') or 10 Fixes #132