Skip to main content

Let you use function annotations (PEP 3107) to getarguments from flask http requests

Project description

=========
ThunderArgs
=========

Abstract
--------

Bla-bla-bla bla-bla-bla


Installation
------------

.. code-block:: bash

sudo pip install thunderargs --pre


Usage
-----

You can use it like this:

.. code-block:: python

from thunderargs import Arg
from thunderargs.endpoint import Endpoint


@Endpoint
def max_int(x: Arg(int), y: Arg(int)):
return max(x,y)

Or you can use it with flask, like this:

.. code-block:: python

@app.route('/calc_with_expander/')
def calc_with_expander(x:Arg(int), y:Arg(int),
op:Arg(str, default='+', expander=OPERATION)):
return str(op(x,y))

Or you can write yourself adapter to any other framework!

Read the example.py, flask-example.py and thunderargs/flask.py

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

thunderargs-0.1b.zip (5.6 kB view hashes)

Uploaded Source

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