from decimal import Decimal, ROUND_HALF_UP def round_half_up(val): return int(Decimal(val).quantize(0, ROUND_HALF_UP))