fresco


Namefresco JSON
Version 3.4.0 PyPI version JSON
download
home_pageNone
SummaryA Web/WSGI micro-framework
upload_time2024-10-16 12:03:15
maintainerNone
docs_urlNone
authorNone
requires_pythonNone
licenseApache
keywords wsgi web www framework
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            Fresco, a web micro-framework for Python
========================================

The fresco web framework is:

- Fast, simple and powerful, with sophisticated URL routing, request and response objects.
- Lightweight and open to integration: you pick the templating and database libraries you want.
- WSGI compliant: easy integration with your choice of web server, apps and middleware.

A minimal fresco web framework application:

.. code-block:: python

    from fresco import FrescoApp, GET, Response

    def helloworld():
        return Response("<h1>Hello World!</h1>")

    app = FrescoApp()
    app.route('/', GET, helloworld)


Read the
`fresco web framework documentation
<https://ollycope.com/software/fresco/latest/>`_ for
more about the framework, or
visit the `source repo <https://sr.ht/~olly/fresco/>`_.

            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "fresco",
    "maintainer": null,
    "docs_url": null,
    "requires_python": null,
    "maintainer_email": null,
    "keywords": "wsgi, web, www, framework",
    "author": null,
    "author_email": "Oliver Cope <oliver@redgecko.org>",
    "download_url": null,
    "platform": null,
    "description": "Fresco, a web micro-framework for Python\n========================================\n\nThe fresco web framework is:\n\n- Fast, simple and powerful, with sophisticated URL routing, request and response objects.\n- Lightweight and open to integration: you pick the templating and database libraries you want.\n- WSGI compliant: easy integration with your choice of web server, apps and middleware.\n\nA minimal fresco web framework application:\n\n.. code-block:: python\n\n    from fresco import FrescoApp, GET, Response\n\n    def helloworld():\n        return Response(\"<h1>Hello World!</h1>\")\n\n    app = FrescoApp()\n    app.route('/', GET, helloworld)\n\n\nRead the\n`fresco web framework documentation\n<https://ollycope.com/software/fresco/latest/>`_ for\nmore about the framework, or\nvisit the `source repo <https://sr.ht/~olly/fresco/>`_.\n",
    "bugtrack_url": null,
    "license": "Apache",
    "summary": "A Web/WSGI micro-framework",
    "version": "3.4.0",
    "project_urls": {
        "Homepage": "https://ollycope.com/software/fresco/latest/"
    },
    "split_keywords": [
        "wsgi",
        " web",
        " www",
        " framework"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a3e2e7fadd322f92e71d1b1b1b7fbaca10bb9bd3d88adf5cea5ff04041d90874",
                "md5": "ce7632465b40378f37c8a67a95ec775d",
                "sha256": "ff82cf4606b8da13615f8da97f12b2b6cf9f13bee89fb5292bc554c15b571049"
            },
            "downloads": -1,
            "filename": "fresco-3.4.0-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "ce7632465b40378f37c8a67a95ec775d",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": null,
            "size": 138236,
            "upload_time": "2024-10-16T12:03:15",
            "upload_time_iso_8601": "2024-10-16T12:03:15.256220Z",
            "url": "https://files.pythonhosted.org/packages/a3/e2/e7fadd322f92e71d1b1b1b7fbaca10bb9bd3d88adf5cea5ff04041d90874/fresco-3.4.0-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-10-16 12:03:15",
    "github": false,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "lcname": "fresco"
}
        
Elapsed time: 0.38182s