Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

bottle-rest-serializer

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

bottle-rest-serializer

JSON serializer suited for REST apis developed with BottlePy

  • 0.1.4
  • PyPI
  • Socket score

Maintainers
1

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

FAQs


Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc