Skip to main content

JSON serializer suited for REST apis developed with BottlePy

Project description

bottle-rest-serializer

Simple serializers for REST APIs built using BottlePy

Default Python serializers don't work when your dicts/objects contains datetime or Decimal instances. This plugin is meant to fix this "issue".

  • datetime instances will be converted to ISO8601 strings.
  • Decimal instances will be converted to float.

Installation

bottle-rest-serializer is available from PyPI as bottle-rest-serializer:

pip install bottle-rest-serializer

JSON Serializer:

from datetime import datetime
from decimal import Decimal

from bottle import Bottle, run
from truckpad.bottle.rest_serializer import FlexibleJSONPlugin

app = Bottle()
app.install(FlexibleJSONPlugin())

@app.get('/')
def index():
    return {
        'now': datetime.now(),
        'float_number': Decimal(123.4567),
        'int_number': Decimal(4567)
    }

if __name__ == '__main__':
    run(app)

XML Serializer:

To be developed in the future :P

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

bottle_rest_serializer-0.1.4.tar.gz (2.3 kB view hashes)

Uploaded Source

Built Distribution

bottle_rest_serializer-0.1.4-py3-none-any.whl (3.2 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page