Skip to main content

A collection of opinionated Flask Blueprints

Project description

DISCLAIMER This repository is part of Runnerly, an application made for the Python Microservices Development. It was made for educational purpose and not suitable for production. It’s still being updated. If you find any issue or want to talk with the author, feel free to open an issue in the issue tracker.

Flask helper for building JSON web services.

Installation:

$ pip install flakon

Features so far:

  • a JsonBlueprint: like a Blueprint but everything is jsonified

  • a SwaggerBlueprint: like JsonBlueprint but you can pass a swagger spec and user @operation(‘operationId’) instead of @route

  • uses Konfig to load an INI file for updating app.config

Example of usage:

from flakon import SwaggerBlueprint, JsonBluePrint, create_app


api = SwaggerBlueprint('Swagger API', 'swagger' ,
                       swagger_spec='openapi.yaml')

@api.operation('getUserIds')
def get_user_ids():
    return {'one': 2}

other_api = JsonBlueprint('api', __name__)

@other_api.route('/')
def some():
    return {'here': 1}


app = create_app(blueprints=[api, other_api])

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

flakon-0.2.tar.gz (7.7 kB view details)

Uploaded Source

File details

Details for the file flakon-0.2.tar.gz.

File metadata

  • Download URL: flakon-0.2.tar.gz
  • Upload date:
  • Size: 7.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for flakon-0.2.tar.gz
Algorithm Hash digest
SHA256 1754f8df40235c6e439629695989f124a600b8f7f6440fa89104047cf3401d29
MD5 1cb2a5f858b960d605030f5bee5a6b59
BLAKE2b-256 38e8610bc8ccdff74f35833f0dea04450b4be708bbaf3a738a5701cfd6cb5066

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