{
"info": {
"author": "Allisson Azevedo",
"author_email": "allisson@gmail.com",
"bugtrack_url": null,
"classifiers": [
"Development Status :: 4 - Beta",
"Environment :: Web Environment",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 2.6",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.3",
"Programming Language :: Python :: Implementation :: PyPy",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
"Topic :: Software Development :: Libraries :: Python Modules"
],
"description": ".. gunstar documentation master file, created by\n sphinx-quickstart on Mon Aug 19 20:26:18 2013.\n You can adapt this file completely to your liking, but it should at least\n contain the root `toctree` directive.\n\nGunstar: Another Python Framework\n===================================\nGunstar is a WSGI micro web framework.\n\n`Github Repo `_.\n\n=================\nFeatures\n=================\n\n* `Based on WebOb `_.\n* Simple url routing.\n* `Jinja2 templates `_.\n* Session interface with signed cookies.\n* `Signals with blinker `_.\n* Unit testing support.\n* `Supports Python 2.6, 2.7, 3.3 and PyPy `_.\n\n\n=================\nExample\n=================\nHello World App::\n\n # -*- coding: utf-8 -*-\n from gunstar.app import Application\n from gunstar.http import RequestHandler\n\n class IndexHandler(RequestHandler):\n def get(self):\n self.response.write('Hello World')\n\n\n routes = (\n ('/', IndexHandler, 'index_named_url'),\n )\n\n\n app = Application(routes=routes)\n\n\n if __name__ == '__main__':\n from wsgiref.simple_server import make_server\n server = make_server('127.0.0.1', 8080, app)\n server.serve_forever()\n\n=================\nContents\n=================\n\n.. toctree::\n :maxdepth: 2\n\n installation\n quickstart\n configuration\n routing\n application\n handlers\n session\n signals\n testing\n\n\n==================\nIndices and tables\n==================\n\n* :ref:`genindex`\n* :ref:`modindex`\n* :ref:`search`",
"description_content_type": null,
"docs_url": "https://pythonhosted.org/gunstar/",
"download_url": "UNKNOWN",
"downloads": {
"last_day": -1,
"last_month": -1,
"last_week": -1
},
"home_page": "http://github.com/allisson/gunstar",
"keywords": null,
"license": "MIT",
"maintainer": null,
"maintainer_email": null,
"name": "gunstar",
"package_url": "https://pypi.org/project/gunstar/",
"platform": "UNKNOWN",
"project_url": "https://pypi.org/project/gunstar/",
"project_urls": {
"Download": "UNKNOWN",
"Homepage": "http://github.com/allisson/gunstar"
},
"release_url": "https://pypi.org/project/gunstar/0.2.2/",
"requires_dist": null,
"requires_python": null,
"summary": "Another python web framework.",
"version": "0.2.2"
},
"last_serial": 858977,
"releases": {
"0.1.0": [
{
"comment_text": "",
"digests": {
"md5": "33074789f228d4bab35281eda462c139",
"sha256": "3104573e5d60e9176f44462b7f9a06195d8b879b590fdd85630f7bc9f086ce2e"
},
"downloads": -1,
"filename": "gunstar-0.1.0.tar.gz",
"has_sig": false,
"md5_digest": "33074789f228d4bab35281eda462c139",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 7624,
"upload_time": "2013-08-24T19:29:15",
"url": "https://files.pythonhosted.org/packages/4b/7a/662c285368efd111b82b4518b4f59829e9cead4fd820df422f4b6d6f4711/gunstar-0.1.0.tar.gz"
}
],
"0.2": [
{
"comment_text": "",
"digests": {
"md5": "faa3cc40b299ced57b7a37a3f6c692d3",
"sha256": "4b1ddb6e8c5325b457bfcbbd1b152254d9336d405e539e4bda29e242d3697bcb"
},
"downloads": -1,
"filename": "gunstar-0.2.tar.gz",
"has_sig": false,
"md5_digest": "faa3cc40b299ced57b7a37a3f6c692d3",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 8451,
"upload_time": "2013-09-01T21:59:12",
"url": "https://files.pythonhosted.org/packages/3f/86/cad0a7ae83406ffbeff0ed167303505091a87edfc05046690db82509b5e3/gunstar-0.2.tar.gz"
}
],
"0.2.1": [
{
"comment_text": "",
"digests": {
"md5": "6e66c85c506d3406de6f5d1dad679049",
"sha256": "1a5f6e434eb4ad71b56c266dabbd8885851857636fd395df205bee5629a01b24"
},
"downloads": -1,
"filename": "gunstar-0.2.1.tar.gz",
"has_sig": false,
"md5_digest": "6e66c85c506d3406de6f5d1dad679049",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 13967,
"upload_time": "2013-09-02T01:28:56",
"url": "https://files.pythonhosted.org/packages/10/78/f260ac88f732c80dfc7e705d88c2efdb0c948b848387c4cde74703428db8/gunstar-0.2.1.tar.gz"
}
],
"0.2.2": [
{
"comment_text": "",
"digests": {
"md5": "c2d4dfe7df723af43ad6db37b82f9e22",
"sha256": "565749a1a720287b851216bd2c2bd188442fb66eb075854c9b7c345a354bf787"
},
"downloads": -1,
"filename": "gunstar-0.2.2.tar.gz",
"has_sig": false,
"md5_digest": "c2d4dfe7df723af43ad6db37b82f9e22",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 14049,
"upload_time": "2013-09-06T18:05:36",
"url": "https://files.pythonhosted.org/packages/0d/73/fa9d41430532d55535eb5cc82ee42e6ae8dcf26af7ebc173eded3bc252db/gunstar-0.2.2.tar.gz"
}
]
},
"urls": [
{
"comment_text": "",
"digests": {
"md5": "c2d4dfe7df723af43ad6db37b82f9e22",
"sha256": "565749a1a720287b851216bd2c2bd188442fb66eb075854c9b7c345a354bf787"
},
"downloads": -1,
"filename": "gunstar-0.2.2.tar.gz",
"has_sig": false,
"md5_digest": "c2d4dfe7df723af43ad6db37b82f9e22",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 14049,
"upload_time": "2013-09-06T18:05:36",
"url": "https://files.pythonhosted.org/packages/0d/73/fa9d41430532d55535eb5cc82ee42e6ae8dcf26af7ebc173eded3bc252db/gunstar-0.2.2.tar.gz"
}
]
}