Skip to main content

A tiny web framework to create APIs rapidly

Project description

Tiny-api

Tiny-api is a python web framework for creating Restful APIs written for learning purpose out of curiosity. It is written with the help of Webob, a library which provides objects for HTTP requests and responses.

Installation

Install using pip.

$ pip3 install tiny-api

Getting Started

It’s really easy to get started with tiny-api.

from tiny_api import Tinyapi
from tiny_api.Responses import JsonResponse
from tiny_api.Status import HTTP_200_OK

app = Tinyapi()

@app.route('/home')
def home(request):
    return JsonResponse({'data':'hello world'},HTTP_200_OK)

Credits

Thanks to Jahongir Rahmonov’s awesome blog that helped me get started with this project. Visit his blog

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

tiny-api-0.1.1.tar.gz (7.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