Skip to main content

Format the responses in flask

Project description

Response Formatter

This library will help you to work with flask application without hesitating responses and exception in routes.

How to use

  1. To get exceptions as response messages use like below. Make sure to set 'allow_exception=False'. Once you done you would be able work without breaking when exception comes. The exception will come as a response

    from make_response.format import response_format
    
    @app.route('/')
    @response_format(allow_exception=False)
    def hello_world():
        return {}, True, 200, 'message'
    
  2. For see the exceptions. Once you give 'allow_exception=True' it will allows to raise the exception and the app would brake as usual way.

    from make_response.format import response_format
    
    @app.route('/')
    @response_format(allow_exception=True)
    def hello_world():
        return {}, True, 200, 'message'
    

Project details


Release history Release notifications | RSS feed

This version

1

Download files

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

Source Distribution

make_response-1.tar.gz (2.7 kB view details)

Uploaded Source

File details

Details for the file make_response-1.tar.gz.

File metadata

  • Download URL: make_response-1.tar.gz
  • Upload date:
  • Size: 2.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/47.1.1 requests-toolbelt/0.9.1 tqdm/4.46.0 CPython/3.7.5

File hashes

Hashes for make_response-1.tar.gz
Algorithm Hash digest
SHA256 78711df4a47c967137083bf1a9020e4e758f6374fe4a408431d807ddbbedcc8f
MD5 e596e9e5252fc14351d42d4078033785
BLAKE2b-256 ad7125bd3f14e7f46ca75702cd3159be6e988e12eeab6f2139ffeefed028336b

See more details on using hashes here.

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