You can actually use the default value,
opt_param = request.args.get("something")
if opt_param is None:
print "Argument not provided"
You can actually use the default value,
opt_param = request.args.get("something")
if opt_param is None:
print "Argument not provided"