Skip to main content

Versatile API manager for python

Project description

With APy2 you can make a Python API and then, serve it online, make scalable intercommunicable applications, document and organize your code, make command line interfaces quickly, reuse it in other applications, and more cool stuff…

APy2 provides utilities to easily create aplications or modules that must interact with other applications or modules. Its just that simple.

APy2 can receive python functions (and restful objects soon) and collects data, doc, and annotations of it. Then a APy2 stores all functions and manages them by context. One can also retrive a Context object to easily access all the functions of that given context.

Some simple usage looks like this:

#!/usr/bin/env python

from apy2.core.api import Api

api = Api()

@api.add()
def foo(a, b, c):
    return a * b + c

with api.context("web"):
    @api.add()
    def foo(a = "This", b = "good"):
            return " ".join([a, "is", b])

if __name__ == "__main__":
    with context("web") as web:
            print(web.foo(b="great!"))

Project details


Release history Release notifications | RSS feed

This version

0.1

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

APy2-0.1.tar.gz (5.5 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