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.tar.gz (8.5 kB view details)

Uploaded Source

File details

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

File metadata

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

File hashes

Hashes for gunstar-0.2.tar.gz
Algorithm Hash digest
SHA256 4b1ddb6e8c5325b457bfcbbd1b152254d9336d405e539e4bda29e242d3697bcb
MD5 faa3cc40b299ced57b7a37a3f6c692d3
BLAKE2b-256 3f86cad0a7ae83406ffbeff0ed167303505091a87edfc05046690db82509b5e3

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