fresco


Namefresco JSON
Version 3.3.1 PyPI version JSON
download
home_pagehttps://ollycope.com/software/fresco/latest/
SummaryA Web/WSGI micro-framework
upload_time2023-05-18 12:07:19
maintainer
docs_urlNone
authorOliver Cope
requires_python
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": "https://ollycope.com/software/fresco/latest/",
    "name": "fresco",
    "maintainer": "",
    "docs_url": null,
    "requires_python": "",
    "maintainer_email": "",
    "keywords": "wsgi web www framework",
    "author": "Oliver Cope",
    "author_email": "oliver@redgecko.org",
    "download_url": "https://files.pythonhosted.org/packages/79/2f/306f1d30c42e9c4c9555ae0529f2af7d8703aa1b48fbeaebb319246c4810/fresco-3.3.1.tar.gz",
    "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.3.1",
    "project_urls": {
        "Homepage": "https://ollycope.com/software/fresco/latest/"
    },
    "split_keywords": [
        "wsgi",
        "web",
        "www",
        "framework"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d0779ee7b1d68c258b70264137435b0ae5c8f0b67ae23a8070b8a39897037065",
                "md5": "b9ae9b8b99fea246908643b6904d84e0",
                "sha256": "f4187f20f7fd16e600e984b9b0c6105cc9d0a87c0842845a15c30d9d1517b880"
            },
            "downloads": -1,
            "filename": "fresco-3.3.1-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "b9ae9b8b99fea246908643b6904d84e0",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": null,
            "size": 92424,
            "upload_time": "2023-05-18T12:07:16",
            "upload_time_iso_8601": "2023-05-18T12:07:16.861090Z",
            "url": "https://files.pythonhosted.org/packages/d0/77/9ee7b1d68c258b70264137435b0ae5c8f0b67ae23a8070b8a39897037065/fresco-3.3.1-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "792f306f1d30c42e9c4c9555ae0529f2af7d8703aa1b48fbeaebb319246c4810",
                "md5": "077b26c1df60c1026dbe4d286b8e421a",
                "sha256": "943255bfc1dd9f3d4debb59a2f72de987029c1ede49fe649502ac2342ed3a1eb"
            },
            "downloads": -1,
            "filename": "fresco-3.3.1.tar.gz",
            "has_sig": false,
            "md5_digest": "077b26c1df60c1026dbe4d286b8e421a",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 117348,
            "upload_time": "2023-05-18T12:07:19",
            "upload_time_iso_8601": "2023-05-18T12:07:19.404702Z",
            "url": "https://files.pythonhosted.org/packages/79/2f/306f1d30c42e9c4c9555ae0529f2af7d8703aa1b48fbeaebb319246c4810/fresco-3.3.1.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-05-18 12:07:19",
    "github": false,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "lcname": "fresco"
}
        
Elapsed time: 0.06672s