Metadata-Version: 2.1
Name: Flask-RestForms
Version: 0.1.1
Summary: Add REST superpowers to your Jinja templates
Home-page: https://www.github.com/alanmunguiacerda/flask-restforms/
Author: Alan Munguia Cerda
License: MIT
Keywords: FLASK,JINJA,REST,MPA
Platform: any
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: License :: OSI Approved :: MIT License
Classifier: Environment :: Web Environment
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Requires-Python: >= 3.6
Description-Content-Type: text/markdown
Requires-Dist: Flask
Requires-Dist: Jinja2 (>=2.5)

# Flask REST Forms

[![PyPI version](https://badge.fury.io/py/Flask-RestForms.svg)](https://badge.fury.io/py/Flask-RestForms)

Flask REST Forms provides a transparent interface for adding REST-like forms to your Jinja templates.

```html
<form method="DELETE" action="/resource/{{ id }}">
    ...
</form>
```

## Installation

Install the extension with pip:

```sh
$ pip install -U Flask-RestForms
```

## Usage

Once installed, the extension just has to be loaded after the application is created:

```py
import flask
from flask_restforms import FlasRestForms

app = flask.Flask(__name__)
flask_restforms = FlaskRestForms(app)
```


