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
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
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
Algorithm | Hash digest | |
---|---|---|
SHA256 | 48b270de8e642785130c6e18c15fbb3aedc3e7514178e4493f5f8f56c80baf01 |
|
MD5 | 13847869d290b650f33855762a194282 |
|
BLAKE2b-256 | f0190ab8f7e9131f5fcde148deb3613bffd620c665191b37537f63df463abfbe |