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 details)

Uploaded Source

File details

Details for the file APy2-0.1.tar.gz.

File metadata

  • Download URL: APy2-0.1.tar.gz
  • Upload date:
  • Size: 5.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for APy2-0.1.tar.gz
Algorithm Hash digest
SHA256 48b270de8e642785130c6e18c15fbb3aedc3e7514178e4493f5f8f56c80baf01
MD5 13847869d290b650f33855762a194282
BLAKE2b-256 f0190ab8f7e9131f5fcde148deb3613bffd620c665191b37537f63df463abfbe

See more details on using hashes here.

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