Skip to content

8x6/flask-raml

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

14 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Flask-RAML (REST API Markup Language) API server with parameter conversion, response encoding, and examples.

[Latest Version] (https://pypi.python.org/pypi/Flask-RAML/) [Downloads] (https://pypi.python.org/pypi/Flask-RAML/) [Supported Python versions] (https://pypi.python.org/pypi/Flask-RAML/) [License] (https://pypi.python.org/pypi/Flask-RAML/)

Supported Platforms

Get Started

Install using pip or easy_install:

pip install Flask-RAML
easy_install Flask-RAML

Optionally, you can specify yaml or raml extras to install related dependencies:

pip install "Flask-RAML[yaml,raml]"
easy_install "Flask-RAML[yaml,raml]"

Features

  • Load RAML API specification stored in any of supported markup languages using PyDataLoader.
  • Provide enhanced PyRAML API model.
    • Reuse PyRAML extensible API spec loader and parameter converters.
    • Use extensible flask-mime-encoders for request/response body decoding/encoding.
  • Provide enhanced route decorator with optional API request/response middleware layers.
    • Auto-decode request body based on Content-Type header (for JSON, it reuses Flask auto-decoding).
    • Convert and validate URI/query parameters.
    • Auto-encode response with specified route encoders mimetype.
  • Make it simple to serve API example response of requested/default MIME type.
    • Make also simple to serve example responses for all unhandled API resources and methods.

Tasks

  • Release example API spec and Flask API server.
    • Create repository flask-raml-example.
    • Design a modular sample API spec with examples and reusable schemas, types, traits and markdown docs.
    • Add gulp tasks to generate HTML docs and YAML spec from the sample RAML API specs.
    • Add gulp tasks for API testing using abao.
    • Add example app deployment from Github via API yaml/html build on CircleCI to uWSGI/Flask site on Heroku.
    • Extend raml2html API docs generator.
      • Add parameter details (min/max lenght/value, pattern).
      • Add API console for testing.
  • Add autoselect encoder (based on request Accept header) to flask-mime-encoders.
  • Add request body JSON schema validation.
    • Extend raml-js-parser to embed local JSON schema references for validation.
    • Optionally extend pyraml-parser too.
    • Add optional request body JSON schema validation to the route decorator.

Changelog

0.1.7

Fixes

  • Fix logging http status passed as string.
  • Fix Python 2.6 support with updated PyRAML 0.1.9.

0.1.6

Features

  • Allow custom route request/response decoders/encoders.
  • Allow abort without response body.
  • Enhance logging.

0.1.5

Fixes

  • Fix broken example view function attributes.
  • Fix broken mime encoders import.

0.1.4

Fixes

  • Fix PEP-8 style and method spec in view serving decorator.

0.1.3

Features

  • Update PyRAML dependency to add default option to ignore empty parameters unless '' is specified in enum.

0.1.2

Fixes

  • Fix package setup to not require dependencies preinstalled.

0.1.0

Features

  • Initial release.

About

Flask-RAML (REST API Markup Language) API server with parameter conversion, response encoding, and examples.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Python 100.0%