Ceeder: a framework for CDRs and analytics

Release v0.0.3. (Installation)

ceeder is a library that makes working with CDRs and analytics easier.

Example code (validation):

>>> from ceeder import cdr
>>> cdr()
{'uri': 'https://qntfy.com',...
>>> from ceeder import validate
>>> validate(cdr())
>>> validate({"hello": "world"})
Traceback (most recent call last):
    ...
jsonschema.exceptions.ValidationError: 'uri' is a required property

Failed validating 'required' in schema:
    ...
On instance:
  {'hello': 'world'}

User guide