Skip to main content

Sarpoka is a rapidly development Python micro framework designed for serverless applications

Project description

Sarpoka Python Packaging

Sarpoka is a rapidly development Python micro framework designed for serverless applications

Installation

pip install sarpoka

An example of usage

from sarpoka import Sarpoka

app = Sarpoka()


@app.route('/')
def home(request, response, **kwargs):
    return 'Welcome Home!!'


@app.route('/api/me', methods=['GET', 'POST'])
def get_me(request, response, **kwargs):
    response.content_type = 'application/json'
    response.status_code = 200
    return {
        'name': 'Mohammad Ashraful Islam'
    }


@app.route('/about')
def about(request, response, **kwargs):
    return '''
  <h1>Mohammad Ashraful Islam</h1>
  <div>
    Senior Software Engineer at Field Buzz<br/>
  </div>
  '''

Features

  • Basic Routing
  • HTTP Method defining during route
  • Query string support
  • View function support only
  • Serving html as string (File not supported yet.)

Upcoming Features

  • Database and ORM support
  • Class based view support
  • HTML/Markdown file rendering
  • Template engine support
  • ... will be added many more.

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

sarpoka-1.0.1.tar.gz (3.8 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