Skip to main content

Yet another way to build APIs using AIOHTTP framework

Project description

aioapi

Build Status codecov PyPI PyPI - Downloads GitHub

Yet another way to build APIs using AIOHTTP framework.

Follow documentation to know what you can do with AIOAPI.

Installation

$ pip install aioapi

Usage & Examples

Below you can find a simple, but powerful example of AIOAPI library usage:

import aioapi as api
from aioapi import Body, PathParam
from aioapi.middlewares import validation_error_middleware
from aiohttp import web
from pydantic import BaseModel


class User(BaseModel):
    name: str
    age: int = 42


async def hello_body(user_id: PathParam[int], body: Body[User]):
    user = body.cleaned
    return web.json_response(
        {"id": user_id.cleaned, "name": user.name, "age": user.age}
    )


def main():
    app = web.Application()

    app.add_routes([api.post("/hello/{user_id}", hello_body)])
    app.middlewares.append(validation_error_middleware)

    web.run_app(app)


if __name__ == "__main__":
    main()

And there are also more examples of usage at examples/ directory.

To run them use command below:

$ make example

Contributing

To work on the AIOAPI codebase, you'll want to clone the project locally and install the required dependencies via poetry:

$ git clone git@github.com:Gr1N/aioapi.git
$ make install

To run tests and linters use command below:

$ make lint && make test

If you want to run only tests or linters you can explicitly specify what you want to run, e.g.:

$ make lint-black

Milestones

If you're interesting in project's future you can find milestones and plans at projects page.

License

AIOAPI is licensed under the MIT license. See the license file for details.

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

aioapi-0.3.0a2.tar.gz (8.5 kB view details)

Uploaded Source

Built Distribution

aioapi-0.3.0a2-py3-none-any.whl (9.4 kB view details)

Uploaded Python 3

File details

Details for the file aioapi-0.3.0a2.tar.gz.

File metadata

  • Download URL: aioapi-0.3.0a2.tar.gz
  • Upload date:
  • Size: 8.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.0.0 CPython/3.8.0 Linux/5.0.0-1027-azure

File hashes

Hashes for aioapi-0.3.0a2.tar.gz
Algorithm Hash digest
SHA256 e9585fe82b0db5124546d5f0d0ecb532339852703e18d4013c08a3d9a51faaab
MD5 70bcd8e394a13c92c1a475b4ae89d91f
BLAKE2b-256 844d6583e941a30791aa09d15a3c33a551c6f355f40eb4d4ab39251a946814ea

See more details on using hashes here.

File details

Details for the file aioapi-0.3.0a2-py3-none-any.whl.

File metadata

  • Download URL: aioapi-0.3.0a2-py3-none-any.whl
  • Upload date:
  • Size: 9.4 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.0.0 CPython/3.8.0 Linux/5.0.0-1027-azure

File hashes

Hashes for aioapi-0.3.0a2-py3-none-any.whl
Algorithm Hash digest
SHA256 5912dcc83c160ab5eb6acb43e4ddcc9dd501d935e5309e782cd7cb044f99a68d
MD5 4f586d2de72330f1fdc97273c8be37f0
BLAKE2b-256 e03e96a843d49a2663f5a017a74fbf0ef8b7637c7c738ae8cca4fcab987fcd68

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page