Gherkin is a safe serializer for simple Python types.

These types are:
Complex, Long, Int, Float, Bool, None, Lists, Tuples, Sets, Dicts,
Strings and Unicode.


Usage:
import gherkin
binary_data = gherkin.dumps(<some_object>)
some_object = gherkin.loads(binary_data)

