pyramid_beaker


Namepyramid_beaker JSON
Version 0.9 PyPI version JSON
download
home_pagehttps://docs.pylonsproject.org/projects/pyramid_beaker/en/latest/
SummaryBeaker session factory backend for Pyramid
upload_time2024-04-05 06:32:46
maintainerNone
docs_urlNone
authorChris McDonough, Agendaless Consulting
requires_pythonNone
licenseBSD-derived (http://www.repoze.org/LICENSE.txt)
keywords web wsgi pylons pyramid
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            pyramid_beaker
==============

Provides a session factory for the `Pyramid <https://docs.pylonsproject.org/projects/pyramid/en/latest/>`_
web framework backed by the `Beaker <https://beaker.readthedocs.io/en/latest/>`_ sessioning
system.


0.9 (2024-03-29)
----------------

 - Fixed a bug causing session saving even when it is not needed. See
   https://github.com/Pylons/pyramid_beaker/pull/28

0.8 (2013-06-28)
----------------

- On Python 3, the CSRF token returned by new_csrf_token was a bytestring
  instead of correctly being a string.  See
  https://github.com/Pylons/pyramid_beaker/pull/12

- A new argument to PyramidBeakerSessionFactoryConfig named
  ``constant_csrf_token`` is now permitted for test configuration purposes.
  See https://github.com/Pylons/pyramid_beaker/pull/13 for more information.

0.7 (2012-07-10)
----------------

- Python 3.2 compatibility.

- Dropped Jython support (may be re-added after Jython releases a 2.7-
  compatible version).

- Dropped Python 2.5 support.

- Made compatible with zope.interface 4.0.0 (symptom: ``TypeError: Class
  advice impossible in Python3.  Use the @implementer class decorator
  instead.`` when run under Python 2 or *or* Python 3)

- Add ``dev`` and ``docs`` setup.py aliases.

0.6.1 (2011-11-19)
------------------

- Beaker 1.6+ compat: added support for ``key_length`` and ``enabled``
  options.

0.6 (2011-11-12)
----------------

- Add a tox.ini for Jenkins testing.

- Add includeme function to ease application setup.

0.5 (2011-03-30)
----------------

- The default value for the ``cookie_on_exception`` parameter to
  ``pyramid_beaker.BeakerSessionFactoryConfig`` is now ``True``.  This means
  that when view code causes an exception to be raised, and the session has
  been mutated, a cookie will be sent back in the response.  Previously its
  default value was ``False``.

0.4 (2011-01-08)
----------------

- Allow cache regions to inherit URL configuration from main cache options.

- Respect a ``cookie_on_exception`` configuration value passed to the
  ``BeakerSessionFactoryConfig`` constructor.  If this value is passed and
  it's not false, session cookies will be set even on responses resulting
  from an exception.

- Update to new relationship between ``new_csrf_token`` and
  ``get_csrf_token`` as described in Pyramid 1.0a9 interfaces.

0.3 (2010-12-29)
----------------

- Support ISession flash/csrf API added to Pyramid 1.0a8+.

0.2 (2010-11-27)
----------------

- Add cache_region support via
  ``pyramid_beaker.set_cache_regions_from_settings`` (and documented).

0.1
---

- Initial release.

            

Raw data

            {
    "_id": null,
    "home_page": "https://docs.pylonsproject.org/projects/pyramid_beaker/en/latest/",
    "name": "pyramid_beaker",
    "maintainer": null,
    "docs_url": null,
    "requires_python": null,
    "maintainer_email": null,
    "keywords": "web wsgi pylons pyramid",
    "author": "Chris McDonough, Agendaless Consulting",
    "author_email": "pylons-discuss@googlegroups.com",
    "download_url": "https://files.pythonhosted.org/packages/0d/ba/8170f488fb4b76b7cd93bf8a59e59d55ace00272977c271ccd4b305743e0/pyramid_beaker-0.9.tar.gz",
    "platform": null,
    "description": "pyramid_beaker\n==============\n\nProvides a session factory for the `Pyramid <https://docs.pylonsproject.org/projects/pyramid/en/latest/>`_\nweb framework backed by the `Beaker <https://beaker.readthedocs.io/en/latest/>`_ sessioning\nsystem.\n\n\n0.9 (2024-03-29)\n----------------\n\n - Fixed a bug causing session saving even when it is not needed. See\n   https://github.com/Pylons/pyramid_beaker/pull/28\n\n0.8 (2013-06-28)\n----------------\n\n- On Python 3, the CSRF token returned by new_csrf_token was a bytestring\n  instead of correctly being a string.  See\n  https://github.com/Pylons/pyramid_beaker/pull/12\n\n- A new argument to PyramidBeakerSessionFactoryConfig named\n  ``constant_csrf_token`` is now permitted for test configuration purposes.\n  See https://github.com/Pylons/pyramid_beaker/pull/13 for more information.\n\n0.7 (2012-07-10)\n----------------\n\n- Python 3.2 compatibility.\n\n- Dropped Jython support (may be re-added after Jython releases a 2.7-\n  compatible version).\n\n- Dropped Python 2.5 support.\n\n- Made compatible with zope.interface 4.0.0 (symptom: ``TypeError: Class\n  advice impossible in Python3.  Use the @implementer class decorator\n  instead.`` when run under Python 2 or *or* Python 3)\n\n- Add ``dev`` and ``docs`` setup.py aliases.\n\n0.6.1 (2011-11-19)\n------------------\n\n- Beaker 1.6+ compat: added support for ``key_length`` and ``enabled``\n  options.\n\n0.6 (2011-11-12)\n----------------\n\n- Add a tox.ini for Jenkins testing.\n\n- Add includeme function to ease application setup.\n\n0.5 (2011-03-30)\n----------------\n\n- The default value for the ``cookie_on_exception`` parameter to\n  ``pyramid_beaker.BeakerSessionFactoryConfig`` is now ``True``.  This means\n  that when view code causes an exception to be raised, and the session has\n  been mutated, a cookie will be sent back in the response.  Previously its\n  default value was ``False``.\n\n0.4 (2011-01-08)\n----------------\n\n- Allow cache regions to inherit URL configuration from main cache options.\n\n- Respect a ``cookie_on_exception`` configuration value passed to the\n  ``BeakerSessionFactoryConfig`` constructor.  If this value is passed and\n  it's not false, session cookies will be set even on responses resulting\n  from an exception.\n\n- Update to new relationship between ``new_csrf_token`` and\n  ``get_csrf_token`` as described in Pyramid 1.0a9 interfaces.\n\n0.3 (2010-12-29)\n----------------\n\n- Support ISession flash/csrf API added to Pyramid 1.0a8+.\n\n0.2 (2010-11-27)\n----------------\n\n- Add cache_region support via\n  ``pyramid_beaker.set_cache_regions_from_settings`` (and documented).\n\n0.1\n---\n\n- Initial release.\n",
    "bugtrack_url": null,
    "license": "BSD-derived (http://www.repoze.org/LICENSE.txt)",
    "summary": "Beaker session factory backend for Pyramid",
    "version": "0.9",
    "project_urls": {
        "Homepage": "https://docs.pylonsproject.org/projects/pyramid_beaker/en/latest/"
    },
    "split_keywords": [
        "web",
        "wsgi",
        "pylons",
        "pyramid"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "207f78b4e47dd290b03dc55cb511646f31c29f19eaa60dca06d3df13662c5bbe",
                "md5": "c67ecb54dad73286b9033491ef0dde46",
                "sha256": "222da97b6507b39a02f5ecdb5dac92978729c56a3a3d80efe615f9443235a70a"
            },
            "downloads": -1,
            "filename": "pyramid_beaker-0.9-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "c67ecb54dad73286b9033491ef0dde46",
            "packagetype": "bdist_wheel",
            "python_version": "3",
            "requires_python": null,
            "size": 6685,
            "upload_time": "2024-04-05T06:32:44",
            "upload_time_iso_8601": "2024-04-05T06:32:44.851989Z",
            "url": "https://files.pythonhosted.org/packages/20/7f/78b4e47dd290b03dc55cb511646f31c29f19eaa60dca06d3df13662c5bbe/pyramid_beaker-0.9-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0dba8170f488fb4b76b7cd93bf8a59e59d55ace00272977c271ccd4b305743e0",
                "md5": "68a6ee0b729ec2a568441dc01fcee098",
                "sha256": "ccc513eb4cfb5b41657f29b6e6b28ca2bd7b3bf9fda91306a1029aee92d1cfa5"
            },
            "downloads": -1,
            "filename": "pyramid_beaker-0.9.tar.gz",
            "has_sig": false,
            "md5_digest": "68a6ee0b729ec2a568441dc01fcee098",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 9212,
            "upload_time": "2024-04-05T06:32:46",
            "upload_time_iso_8601": "2024-04-05T06:32:46.754668Z",
            "url": "https://files.pythonhosted.org/packages/0d/ba/8170f488fb4b76b7cd93bf8a59e59d55ace00272977c271ccd4b305743e0/pyramid_beaker-0.9.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-04-05 06:32:46",
    "github": false,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "lcname": "pyramid_beaker"
}
        
Elapsed time: 0.23721s