Skip to main content

Another python web framework.

Project description

.. gunstar documentation master file, created by
sphinx-quickstart on Mon Aug 19 20:26:18 2013.
You can adapt this file completely to your liking, but it should at least
contain the root `toctree` directive.

Gunstar: Another Python Framework
===================================
Gunstar is a WSGI micro web framework.

`Github Repo <http://github.com/allisson/gunstar/>`_.

=================
Features
=================

* `Based on WebOb <http://docs.webob.org/en/latest/>`_.
* Simple url routing.
* `Jinja2 templates <http://jinja.pocoo.org/docs/>`_.
* Session interface with signed cookies.
* `Signals with blinker <http://pythonhosted.org/blinker/>`_.
* Unit testing support.
* `Supports Python 2.6, 2.7, 3.3 and PyPy <http://travis-ci.org/allisson/gunstar>`_.


=================
Example
=================
Hello World App::

# -*- coding: utf-8 -*-
from gunstar.app import Application
from gunstar.http import RequestHandler

class IndexHandler(RequestHandler):
def get(self):
self.response.write('Hello World')


routes = (
('/', IndexHandler, 'index_named_url'),
)


app = Application(routes=routes)


if __name__ == '__main__':
from wsgiref.simple_server import make_server
server = make_server('127.0.0.1', 8080, app)
server.serve_forever()

=================
Contents
=================

.. toctree::
:maxdepth: 2

installation
quickstart
configuration
routing
application
handlers
session
signals
testing


==================
Indices and tables
==================

* :ref:`genindex`
* :ref:`modindex`
* :ref:`search`

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

gunstar-0.2.1.tar.gz (14.0 kB view details)

Uploaded Source

File details

Details for the file gunstar-0.2.1.tar.gz.

File metadata

  • Download URL: gunstar-0.2.1.tar.gz
  • Upload date:
  • Size: 14.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for gunstar-0.2.1.tar.gz
Algorithm Hash digest
SHA256 1a5f6e434eb4ad71b56c266dabbd8885851857636fd395df205bee5629a01b24
MD5 6e66c85c506d3406de6f5d1dad679049
BLAKE2b-256 1078f260ac88f732c80dfc7e705d88c2efdb0c948b848387c4cde74703428db8

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