You can use sum()to add your booleans; Trueequal to 1 in a numerical context, Falseequal to 0:
sum(d['success'] for d in s)
This works because the Python type boolis a subclass intfor historical reasons.
If you want to make this explicit, you can use a conditional expression, but from my point of view, readability will not improve:
sum(1 if d['success'] else 0 for d in s)