pyramid-debugtoolbar


Namepyramid-debugtoolbar JSON
Version 4.12.1 PyPI version JSON
download
home_pagehttps://docs.pylonsproject.org/projects/pyramid-debugtoolbar/en/latest/
SummaryA package which provides an interactive HTML debugger for Pyramid application development
upload_time2024-02-05 03:40:32
maintainer
docs_urlNone
authorChris McDonough, Michael Merickel, Casey Duncan, Blaise Laflamme
requires_python>=3.7
licenseBSD
keywords wsgi pylons pyramid transaction
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            pyramid_debugtoolbar
====================

``pyramid_debugtoolbar`` provides a debug toolbar useful while you're
developing your Pyramid application.

Note that ``pyramid_debugtoolbar`` is a blatant rip-off of Michael van
Tellingen's ``flask-debugtoolbar`` (which itself was derived from Rob Hudson's
``django-debugtoolbar``). It also includes a lightly sanded down version of the
Werkzeug debugger code by Armin Ronacher and team.


Documentation
-------------

The documentation of the current stable release of ``pyramid_debugtoolbar`` is
available at
https://docs.pylonsproject.org/projects/pyramid-debugtoolbar/en/latest/.


Demonstration
-------------

For a demonstration:

- Clone the ``pyramid_debugtoolbar`` trunk.

  .. code-block:: bash

      $ git clone https://github.com/Pylons/pyramid_debugtoolbar.git

- Create a virtual environment in the workspace.

  .. code-block:: bash

      $ cd pyramid_debugtoolbar
      $ python3 -m venv env

- Install the ``pyramid_debugtoolbar`` trunk into the virtualenv.

  .. code-block:: bash

      $ env/bin/pip install -e .

- Install the ``pyramid_debugtoolbar/demo`` package into the virtualenv.

  .. code-block:: bash

      $ env/bin/pip install -e demo

- Run the ``pyramid_debugtoolbar`` package's ``demo/demo.py`` file using the
  virtual environment's Python.

  .. code-block:: bash

      $ env/bin/python demo/demo.py

Visit http://localhost:8080 in a web browser to see a page full of test
options.


Testing
-------

If you have ``tox`` installed, run all tests with:

.. code-block:: bash

    $ tox

To run only a specific Python environment:

.. code-block:: bash

    $ tox -e py311

If you don't have ``tox`` installed, you can install the testing requirements,
then run the tests.

.. code-block:: bash

    $ python3 -m venv env
    $ env/bin/pip install -e ".[testing]"
    $ env/bin/py.test


Building documentation
----------------------

If you have ``tox`` installed, build the docs with:

.. code-block:: bash

    $ tox -e docs

If you don't have ``tox`` installed, you can install the requirements to build
the docs, then build them.

.. code-block:: bash

    $ env/bin/pip install -e ".[docs]"
    $ cd docs
    $ make clean html SPHINXBUILD=../env/bin/sphinx-build

4.12.1 (2024-02-04)
-------------------

- Fix a toolbar crash when loading the page and there aren't any visible
  requests yet.

- Fix a concern where the toolbar may access sensitive request attributes like
  ``request.authenticated_userid`` at times outside of the supported request
  lifecycle.

4.12 (2024-02-03)
-----------------

- Remove dependency on setuptools / pkg_resources.
  See https://github.com/Pylons/pyramid_debugtoolbar/pull/390

- Avoid triggering DeprecationWarnings when tracking values for
  deprecated attributes in Pyramid like ``effective_principals``.
  See https://github.com/Pylons/pyramid_debugtoolbar/pull/391

4.11 (2024-01-27)
-----------------

- Drop support for SQLAlchemy < 1.4.
  See https://github.com/Pylons/pyramid_debugtoolbar/pull/388

- Add support for Python 3.12.

- Add support for SQLAlchemy 2.x.
  See https://github.com/Pylons/pyramid_debugtoolbar/pull/388

- Fix an issue where a long-running request might not appear in the toolbar UI
  without refreshing the page.

- Use ``time.monotonic()`` when computing performance intervals.

4.10 (2022-01-02)
-----------------

- Drop support for Python 2.7, 3.4, 3.5, 3.6.

- Add support for Python 3.9, 3.10, 3.11.

- Fix deprecated usages of ``threading.currentThread()``.
  See https://github.com/Pylons/pyramid_debugtoolbar/pull/374

4.9 (2020-11-24)
----------------

- Support Python 3.9.

- Added a new Session Panel to track ingress and egress changes to a registered
  ISession interface across a request lifecycle.  By default, the panel only
  operates on accessed sessions via a wrapped loader. Users can activate the
  Session Panel, via the Toolbar Settings or a per-request cookie, to track the
  ingress and egress data on all requests.

  * Removed "Session" section from Request Vars Panel
  * Updated Documentation and Screenshots

- Ensured the Headers panel only operates when a Response object exists, to
  create better stack traces if other panels encounter errors.

- ``utils.dictrepr`` will now fallback to a string comparison of the keys if a
  TypeError is encountered, which can occur under Python3.

  * A test was added to check to ensure sorting errors occur under Python3.
    If the test fails in the future, this workaround may no longer be needed.

- Updated toolbar javascript to better handle multiple user-activated panels.

  * ``split`` and ``join`` functions now use the same delimiter.
  * If the browser supports it, use a "set" to de-duplicate active panels.

- Inline comments on toolbar.js and toolbar.py to alert future developers on
  the string delimiters and cookie names.


4.8 (2020-10-23)
----------------

- Added tracking of transactional SQLAlchemy events to provide more insight
  into database session behavior during a request's lifecycle.
  See https://github.com/Pylons/pyramid_debugtoolbar/pull/368

4.7 (2020-10-22)
----------------

- Added black, isort, and github actions to the pipeline. Dropped travis-ci.

- Added some extra output to the "Request Vars" panel related to previewing
  the body contents.
  See https://github.com/Pylons/pyramid_debugtoolbar/pull/367

4.6.1 (2020-02-10)
------------------

- Fix parser errors when injecting the toolbar into XHTML formatted pages.
  See https://github.com/Pylons/pyramid_debugtoolbar/pull/360

4.6 (2020-01-20)
----------------

- Show the full URL in the tooltip on the requests panel.
  See https://github.com/Pylons/pyramid_debugtoolbar/pull/358

4.5.2 (2020-01-06)
------------------

- Stop accessing ``request.unauthenticated_userid`` in preparation for
  Pyramid 2.0 where it is deprecated.

- Catch a ``ValueError`` when JSON-serializing SQLA objects for display.
  See https://github.com/Pylons/pyramid_debugtoolbar/pull/357

4.5.1 (2019-11-08)
------------------

- Add Python 3.8 support.

- Fix internal deprecation warnings on Python 3.7.

4.5 (2018-09-09)
----------------

- Drop Python 3.3 support to align with Pyramid and its EOL.

- Add support for testing on Python 3.7.

- Add a list of engines to the SQLAlchemy panel if queries come from
  multiple engines.
  See https://github.com/Pylons/pyramid_debugtoolbar/pull/334

- When the toolbar intercepts an exception via
  ``debugtoolbar.intercept_exc = True`` and returns the interactive
  debugger, it will add ``request.exception`` and ``request.exc_info`` to
  the request to indicate what exception triggered the response. This helps
  upstream tweens such as ``pyramid_retry`` to possibly retry the requests.
  See https://github.com/Pylons/pyramid_debugtoolbar/pull/343

- Stop parsing the ``request.remote_addr`` value when it contains chain of
  comma-separated ip-addresses. Reject these values and emit a warning
  to sanitize the value upstream.
  See https://github.com/Pylons/pyramid_debugtoolbar/pull/342


4.4 (2018-02-19)
----------------

- Reduce the log output for squashed exceptions and put them at the INFO
  level so they can be filtered out if desired.
  See https://github.com/Pylons/pyramid_debugtoolbar/pull/328 and
  https://github.com/Pylons/pyramid_debugtoolbar/pull/329

4.3.1 (2018-01-28)
------------------

- Javascript syntax fixes for browsers that don't support trailing commas.
  See https://github.com/Pylons/pyramid_debugtoolbar/pull/326

4.3 (2017-07-14)
----------------

- The logging panel indicator is now color-coded to indicate the severity of
  the log messages as well as the number of messages at said level. There may
  be more messages, but the most severe show up in the annotation.

  This feature also added a new ``nav_subtitle_style`` hook to the
  ``DebugPanel`` API for adding a custom CSS class to the subtitle tag.

  See https://github.com/Pylons/pyramid_debugtoolbar/pull/322

4.2.1 (2017-06-30)
------------------

- Fix a bug with the logging of squashed exceptions on Python < 3.5.
  See https://github.com/Pylons/pyramid_debugtoolbar/pull/320

4.2 (2017-06-21)
----------------

This release contains a rewrite of the underlying exception / traceback
tracking machinery and fixes regressions caused by the 4.1 release that
broke the interactive debugger.
See https://github.com/Pylons/pyramid_debugtoolbar/pull/318

- Tracebacks are now tied to the per-request toolbar object one-to-one.
  A request may have only one traceback. Previously they actually stuck
  around for the entire lifetime of the app instead of being collected by
  the max_request_history setting.

- The routes for exceptions are standardized to look similar to the SQLA AJAX
  routes. For example, ``/{request_id}/exception`` instead of
  ``/exception?token=...&tb=...`` and
  ``/{request_id}/exception/execute/{frame_id}?cmd=...`` instead of
  ``/exception?token=...&tb=...&frm=...&cmd=...``.

- Fixed the url generation for the traceback panel link at the bottom of the
  traceback... it was actually empty previously - it got lost somewhere along
  the way.

- /favicon.ico is no longer specially handled.. it's just part of
  ``exclude_prefixes`` like anything else that you want to exclude.

- ``request.pdtb_history`` is available for toolbar requests (mostly AJAX
  requests or panel rendering).

- Removed the unused history predicate.

- URL generation was broken in the ``debugger.js`` but that's fixed now so the
  execute/source buttons work in tracebacks.

- Drop the license from ``LICENSE.txt`` for the removed ipaddr module in 4.1.
  See https://github.com/Pylons/pyramid_debugtoolbar/pull/315

4.1 (2017-05-30)
----------------

- Debug squashed exceptions! If you register an exception view for an exception
  it will render a response. The toolbar will see the squashed exception and
  enable the ``Traceback`` tab in the toolbar and emit a message on the
  console with the URL. You can then debug the exception while returning the
  original response to the user.
  See https://github.com/Pylons/pyramid_debugtoolbar/pull/308

- Remove the vendored ipaddr package and use the stdlib ipaddress module on
  Python 3.3+. On Python < 3.3 the ipaddress module is a dependency from PyPI.
  This dependency uses environment markers and thus requires pip 8.1.2+.
  See https://github.com/Pylons/pyramid_debugtoolbar/pull/304

- Display a warning if the toolbar is used to display a request that no longer
  exists. This may be because the app was restarted or the request fell off
  the end of the ``max_request_history``.
  See https://github.com/Pylons/pyramid_debugtoolbar/pull/305

- Enable testing on Python 3.6.
  See https://github.com/Pylons/pyramid_debugtoolbar/pull/306

- Drop the link-local suffix off of local interfaces in order to accept
  requests on them. See https://github.com/Pylons/pyramid_debugtoolbar/pull/307

- Headers panel defers its processing to a finished callback. This is best
  effort of displaying actual headers, since they could be modified by
  a response callback or another finished callback.
  See https://github.com/Pylons/pyramid_debugtoolbar/pull/310

- Query log inside SQLAlchemy panel does not cause horizontal scrolling
  anymore, which should improve UX.
  See https://github.com/Pylons/pyramid_debugtoolbar/pull/311

4.0.1 (2017-05-09)
------------------

- Fix sticky panel functionality that was broken by other cleanup in the 4.0
  release. See https://github.com/Pylons/pyramid_debugtoolbar/pull/297

4.0 (2017-05-03)
----------------

- The config settings ``debugtoolbar.panels``, ``debugtoolbar.extra_panels``,
  ``debugtoolbar.global_panels`` and ``debugtoolbar.extra_global_panels``
  now all accept panel names as defined in
  ``pyramid_debugtoolbar.panels.DebugPanel.name``. Thus you may use names
  such as ``performance``, ``headers``, etc. These settings still support the
  dotted Python path but it is suggested that panels now support being
  included via ``debugtoolbar.includes`` and ``config.add_debugtoolbar_panel``
  instead such that they are automatically added to the toolbar.
  See https://github.com/Pylons/pyramid_debugtoolbar/pull/288

- Add a new ``config.add_debugtoolbar_panel`` directive that can be invoked
  from ``includeme`` functions included via the ``debugtoolbar.includes``
  setting. These panels are automatically added to the default panel list
  and should become the way to define toolbar panels in the future.
  See https://github.com/Pylons/pyramid_debugtoolbar/pull/283

- Add a new ``config.inject_parent_action`` directive that can be invoked
  from ``includeme`` functions included via the ``debugtoolbar.includes``
  setting. These actions are invoked on the parent config just before it is
  created such that actions can inspect / wrap existing config.
  See https://github.com/Pylons/pyramid_debugtoolbar/pull/288

- Added "sticky" panel functionality to allow a selected panel to persist
  across pageviews using cookies.  If a cookied panel does not have content
  available for display, the first non-disabled panel will be displayed. If a
  cookied panel is not enabled on the toolbar, the first non-disabled panel will
  be displayed AND will become the new default panel.
  See https://github.com/Pylons/pyramid_debugtoolbar/pull/272

- Added `CustomLoggerFactory` to javascript, used in the development of PR 272.
  This javascript factory allows panel developers and maintainers to use verbose
  console logging during development, partitioned by feature, and silence it for
  deployment while still leaving the logging lines activated.

- The toolbar registers a ``BeforeRender`` subscriber in your application to
  monitor the rendering of templates. Previously it was possible that the
  toolbar would miss rendering information because of the order in which the
  subscribers were registered. The toolbar now waits until the application
  is created and then appends a new subscriber that encapsulates the
  your application's ``BeforeRender`` subscribers.
  See https://github.com/Pylons/pyramid_debugtoolbar/pull/284

- Remove duplicate ``id="${panel.dom_id}"`` tags in history tab html. Only
  the top-level ``<li>`` tag has the id now.
  See https://github.com/Pylons/pyramid_debugtoolbar/pull/285

- Emit a warning and disable the toolbar if the app is being served by
  a forking / multiprocess wsgi server that sets
  ``environ['wsgi.multiprocess']`` to ``True``. This should help avoid
  confusing issues in certain deployments like gunicorn and uwsgi multiprocess
  modes. See https://github.com/Pylons/pyramid_debugtoolbar/pull/286

- The toolbar tween is always placed explicitly OVER the pyramid_tm tween.

- Refactored all debugtoolbar panels to be included using
  ``config.add_debugtoolbar_panel`` and per-panel ``includeme`` functions.
  See https://github.com/Pylons/pyramid_debugtoolbar/pull/288

- Exposed a ``request.toolbar_panels`` dictionary which can be used from within
  ``DebugPanel.render_content`` and ``DebugPanel.render_vars`` in order to
  introspect and use the data generated by other panels when rendering the
  panel. See https://github.com/Pylons/pyramid_debugtoolbar/pull/291

- Support streaming new requests on Microsoft Edge and Internet Explorer 8+ by
  using a Server-Sent-Events polyfill.
  See https://github.com/Pylons/pyramid_debugtoolbar/pull/293

3.0.5 (2016-11-1)
-----------------

- Change static toolbar asset to accommodate color blindness.
  See https://github.com/Pylons/pyramid_debugtoolbar/issues/273

3.0.4 (2016-07-26)
------------------

- 3.0.3 was a brownbag release missing static assets.

3.0.3 (2016-07-26)
------------------

- Fix another regression where the toolbar was modifying requests to the
  toolbar itself such that the ``script_name`` and ``path_info`` were
  different after handling the request than before.
  See https://github.com/Pylons/pyramid_debugtoolbar/pull/269

3.0.2 (2016-07-02)
------------------

- Fix a regression with inspecting requests with a session that is loaded
  before the toolbar executes.
  See https://github.com/Pylons/pyramid_debugtoolbar/pull/268

3.0.1 (2016-05-20)
------------------

- Avoid touching ``request.unauthenticated_userid``,
  ``request.authenticated_userid`` and ``request.effective_principals`` unless
  they are accessed by the user in the normal request lifecycle. This avoids
  some issues where unauthenticated requests could trigger side effects on
  your authentication policy or access the properties outside of the
  expected lifecycle of the properties.
  See https://github.com/Pylons/pyramid_debugtoolbar/pull/263

3.0 (2016-04-23)
----------------

- The toolbar is now a completely standalone application running inside the
  tween. There are several minor incompatibilities and improvements related
  to this extra isolation:

  1. ``pyramid_mako`` and the ``.dbtmako`` renderer are no longer included
     in the parent application (your app).
  2. Panels must be extra careful now that they only render templates inside
     of the ``render_vars`` and ``render_content`` functions. These are the
     only functions in which the ``request`` object is for rendering the
     toolbar panel.
  3. The toolbar will not be affected by any global security policies your
     application may put in place other than via
     ``config.set_debugtoolbar_request_authorization``.
     **never run the toolbar in production**

  See https://github.com/Pylons/pyramid_debugtoolbar/pull/253

- Updated Bootstrap to v3.3.6, refactored static assets and dropped require.js.
  Each page now depends on what it needs without extra dependencies included
  in the debugger pages.
  See https://github.com/Pylons/pyramid_debugtoolbar/pull/259

- Enabled interactive tablesorting on table columns.
  See https://github.com/Pylons/pyramid_debugtoolbar/pull/256

- setuptools-git is now required to install the codebase in non-editable mode.

2.5 (2016-04-20)
----------------

- Drop Python 2.6 and Python 3.2 support.

- Add Python 3.5 support.

- Remove inline javascript from injected pages to work better with any
  Content Security Policy that may be in place.
  See https://github.com/Pylons/pyramid_debugtoolbar/pull/250

- Added the packages' `.location` to the "Versions" panel so developers can tell
  which version of each package is actually being used.
  See https://github.com/Pylons/pyramid_debugtoolbar/pull/240

- Upon exception do a better job guessing the charset of the sourcefile when
  reading it in to display tracebacks.
  See https://github.com/Pylons/pyramid_debugtoolbar/pull/244

- Removed jQuery code in the toolbar referring to a DOM node called 'myTab',
  which doesn't seem to exist anymore.
  See https://github.com/Pylons/pyramid_debugtoolbar/pull/247

- Updated the "Request Vars" panel:
  1. Show additional values that were previously missing
  2. Sections upgraded to link to Pyramid Documentation when possible
  3. Mako reformatted into "defs" for simpler reorganization in the future
  See https://github.com/Pylons/pyramid_debugtoolbar/pull/241

- Fix to prevent the toolbar from loading the session until it is actually
  accessed by the user. This avoids unnecessary parsing of the session object
  as well as waiting to parse it until later in the request which may meet
  more expectations of the session factory.
  See https://github.com/Pylons/pyramid_debugtoolbar/pull/249

2.4.2 (2015-10-28)
------------------

- Fix a long-standing bug in which log messages were not rendered until
  the end of the response. By this time the arguments passed to the logger
  may no longer be valid (such as SQLAlchemy managed objects) and you would
  see a ``DetachedInstanceError``.
  See https://github.com/Pylons/pyramid_debugtoolbar/issues/188

2.4.1 (2015-08-12)
------------------

- Remove the extra query hash constructed when indexing into SQL queries via
  url as it was unused after releasing 2.4.
  See https://github.com/Pylons/pyramid_debugtoolbar/pull/232

2.4 (2015-06-04)
----------------

This release changes some details of the panel API, so if you are writing
any custom panels for the toolbar please review the changes.

- Document the cookie used to activate panels on a per-request basis. It is
  possible to specify the cookie per-request to turn on certain panels. This
  is used by default in the browser, but may also be used on a per-request
  basis by curl or other http APIs.

- Add new ``debugtoolbar.active_panels`` setting which can specify certain
  panels to be always active.

- Modify ``DebugPanel.name`` to be a valid python identifier, used for
  settings and lookup.

- The toolbar no longer will clobber the ``request.id`` property. It now
  namespaces its usage as ``request.pdtb_id``, freeing up ``request.id``
  for applications.

- Add a lock icon next to the request method in the sidebar if the request
  was accessed over https.
  See https://github.com/Pylons/pyramid_debugtoolbar/pull/213

- Update to bootstrap 3.1.1.
  See https://github.com/Pylons/pyramid_debugtoolbar/pull/213

- Fix display of POST variables where the same key is used multiple times.
  See https://github.com/Pylons/pyramid_debugtoolbar/pull/210

- Fix auth callback so it protects the toolbar views. Auth system is tested
  now. See https://github.com/Pylons/pyramid_debugtoolbar/pull/226

- Convert SQLAlchemy views to obtain the query and params internally; this
  allows executing queries with parameters that are not serializable.
  See https://github.com/Pylons/pyramid_debugtoolbar/pull/227

- Adds Pyramid version tests and bumps required Pyramid version to 1.4.
  The pyramid_mako dependency requires 1.3, but debugtoolbar also uses
  ``invoke_subrequest`` which was added in 1.4. The ``invoke_subrequest`` call
  was added
  in pyramid_debugtoolbar 2.0; if you need Pyramid 1.3 compatibility, try
  an older version.
  See https://github.com/Pylons/pyramid_debugtoolbar/issues/183
  and https://github.com/Pylons/pyramid_debugtoolbar/pull/225

2.3 (2015-01-05)
----------------

- Support a ``debugtoolbar.includes`` setting which will allow addons to
  extend the toolbar's internal Pyramid application with custom logic.
  See https://github.com/Pylons/pyramid_debugtoolbar/issues/207

- Fixed an issue when the toolbar is not mounted at the root of the domain.
  See https://github.com/Pylons/pyramid_debugtoolbar/pull/201

- Fixed an issue where the `button_css` was not pulled from the settings.
  Added support for configurable `max_request_history` and
  `max_visible_requests`.
  See https://github.com/Pylons/pyramid_debugtoolbar/pull/206

2.2.2 (2014-11-09)
------------------

- Brownbagged 2.2.1, forgot to include the templates!

2.2.1 (2014-11-09)
------------------

- Several internal links were not relative causing them to fail when the
  app is mounted at a path prefix. See
  https://github.com/Pylons/pyramid_debugtoolbar/pull/185 and
  https://github.com/Pylons/pyramid_debugtoolbar/pull/196

- Pin pygments<2 on 3.2 as the new release has dropped support.

2.2 (2014-08-12)
----------------

- Avoid polluting user code with unnecessary toolbar css just to show the
  button. See https://github.com/Pylons/pyramid_debugtoolbar/pull/174

- Inject the toolbar button into ``application/xhtml+xml`` requests.
  See https://github.com/Pylons/pyramid_debugtoolbar/pull/176

- Make the toolbar accessible before another request has been served by the
  application. See https://github.com/Pylons/pyramid_debugtoolbar/pull/171


2.1 (2014-05-22)
----------------

- Add new "debugtoolbar." configuration settings that allow enabling or
  disabling various Pyramid knobs in a users .ini file. This for instance
  allows easy enabling/disabling of template reloading for the debugtoolbar.

- Allow the toolbar to display always, even when the parent application
  is using a default permission.
  See https://github.com/Pylons/pyramid_debugtoolbar/issues/147

- Stabilize and document the ``pyramid_debugtoolbar.panels.DebugPanel``
  API to allow developers to create their own panels.

- Add new ``debugtoolbar.extra_panels`` and
  ``debugtoolbar.extra_global_panels`` configuration settings to make it
  simpler to support custom panels without overwriting the default panels.

2.0.2 (2014-02-13)
------------------

- Fix breaking bugs when run under Py3k.

2.0.1 (2014-02-12)
------------------

- Fixes a bug in 2.0 expecting pyramid_beaker to be around.

2.0 (2014-02-12)
----------------

- The toolbar has undergone a major refactoring to mitigate the effects of
  the toolbar's internal behavior on the application to which it is connected
  and make it possible to inspect arbitrary requests. It is now available at
  ``/_debug_toolbar`` and can be used to monitor any and all requests serviced
  by the Pyramid application that it is wrapping, including non-html responses.

  The toolbar will live-update (on conforming browsers via Server Sent Events)
  when requests come into the Pyramid application, and can be used to debug and
  inspect multiple requests simultaneously.

1.0.9 (2013-10-20)
------------------

- Use new ``pyramid_mako`` configuration directive add_mako_renderer.

1.0.8 (2013-09-09)
------------------

- Depend on ``pyramid_mako`` (Mako support will be split out of Pyramid in
  1.5+).

1.0.7 (2013-08-29)
------------------

- Drop support for Python 2.5.

- Fix computation of proxy addresses.  See
  https://github.com/Pylons/pyramid_debugtoolbar/pull/100 .

- Make templates compatible with no-MarkupSafe Mako under Python 3.2.

- Decode platform name to Unicode using utf-8 encoding to cope with nonascii
  characters in platform (e.g. Fedora's Schrodinger's Cat).  See
  https://github.com/Pylons/pyramid_debugtoolbar/pull/98

- Raise a ``pyramid.exceptions.URLDecodeError`` instead of a raw
  UnicodeDecodeError when the request path cannot be decoded.  See
  https://github.com/Pylons/pyramid/issues/1057.

- Added new configuration option: `debugtoolbar.show_on_exc_only` (
  default=false).  If set to true (`debugtoolbar.show_on_exc_only = true`)
  the debugtoolbar will only be injected into the response in case a
  exception is raised. If the response is processed without exception the
  returned html code is not changed at all.
  See https://github.com/Pylons/pyramid_debugtoolbar/issues/54

- Fix various UnicodeDecodeError exceptions.

1.0.6 (2013-04-17)
------------------

- Packaging release only, no code changes.  1.0.5 was a brownbag release due to
  missing directories in the tarball.

1.0.5 (2013-04-17)
------------------

- Parse IPs correctly when request.remote_addr is a comma separated list
  of proxies IPs.

- If you are also using require.js, the debug toolbar's version of jQuery
  will no longer conflict with your application's version of the library.

- Use the "n" filter to disable default_filters when including the raw
  SQL in links, leaving only the "u" filter (URL escaping).

- Support for per-request authorization of toolbar middleware via
  ``config.set_debugtoolbar_request_authorization(callback)`` where callback
  accepts request object and returns boolean value whether toolbar is enabled
  or not.

- Short term fix for preventing error when converting binary query params to json.

- Fix sqlalchemy query duration from microseconds to milliseconds.

1.0.4 (2013-01-05)
------------------

- Add a ``debugtoolbar.excluded_prefixes`` setting.  When a URL path prefix
  matches one of these prefixes, the toolbar will not be shown on the resulting
  page.

- Show the prompt and little text file icons show all the time, instead of
  only on hover.

- Do not set max-height on result boxes (which result in nested scroll on
  the page, which makes it hard to find information quickly).

- When an expression result is long, do not truncate with an ellipsis, which
  requires one more click to get at the information I need.

- Support ``pip install`` from the github repository by adding all static files
  required to install in the ``package_data`` ``setup.py``. Setuptools usually
  uses Subversion or CVS to tell it what static files it needs to package up
  for egg distribution, but does not support reading git metadata.

- The debug toolbar now use a patched version of require.js with a distinct
  private name that cannot clash with the dojo loader or other incompatible
  versions of require that may already be loaded on the page. You no longer
  need to add the toolbar to your own require.js to make it work.

1.0.3 (2012-09-23)
------------------

- The ``valid_host`` custom predicate used internally by pyramid_debugtoolbar
  views didn't use newer "ipaddr"-based logic.  Symptom: some views may have
  been incorrectly inaccessible if you used a network mask as a
  "debugtoolbar.hosts" option.

- The debug console now works with Google App Engine.

- The debug console now adds a shortcut for accessing the last result through
  ``_``.

1.0.2 (2012-04-19)
------------------

- Moved the toolbar and debugger javascript files to use requirejs for
  better dependency loading and module isolation to play better with mutiple
  library versions. Recurrent problem was with async loading and application
  specific jquery library where the expected version was overrided by the
  toolbar one.

  If you are already using requirejs and want the toolbar to load, just add it
  to your path and module::

    require.config({
      paths: {
        "jquery": "jquery-1.7.2.min",
        "toolbar": "/_debug_toolbar/static/js/toolbar"
      }
    });

    require(["jquery", "toolbar"], function($, toolbar) {
      $(function() {
        // your module
      });
    });

1.0.1 (2012-03-27)
------------------

- If ``request.remote_addr`` is ``None``, disable the toolbar.

1.0 (2012-03-17)
----------------

- Don't URL-quote SQL parameters on SQLAlchemy panel.

- Allow hostmask values as ``debugtoolbar.hosts`` entries
  (e.g. ``192.168.1.0/24``).

0.9.9.1 (2012-02-22)
--------------------

- When used with Pyramid 1.3a9+, views, routes, and other registrations made
  by ``pyramid_debugtoolbar`` itself will not show up in the introspectables
  panel.

0.9.9 (2012-02-19)
------------------

- Try to take advantage of MakoRendererFactoryHelper in Pyramid 1.3a8+.  If
  we can do this, the toolbar templates won't be effected by normal mako
  settings.  The most visible change is that toolbar mako templates now have
  a ``dbtmako`` extension.

0.9.8 (2012-01-09)
------------------

- Show request headers instead of mistakenly showing environ values in
  Headers panel under "Request Headers".  This also fixes a potential
  UnicodeDecodeError.

- Set content_length on response object when we regenerate app_iter while
  replacing original content.

0.9.7 (2011-12-09)
------------------

- The performance panel of the debugtoolbar used a variable named
  ``function_calls`` which was not initialised when stats are not
  collected. This caused a ``NameError`` when mako rendered the template with
  the ``strict_undefined`` option.

- Fix Python 3 compatibility in SQLAlchemy panel.

- Make SQLAlchemy explain and select work again.

0.9.6 (2011-12-09)
------------------

- Added "Introspection" panel; active only under Pyramid 1.3dev+ (requires
  Pyramid introspection subsystem).

- Address heisenbug reported where performance panel template variables cause
  unexpected results.  Can't repeat, but reporter indicates the fix works for
  him, so hail marying.  See
  https://github.com/Pylons/pyramid_debugtoolbar/commit/5719c97ea2a3a41fc01e261403d0167cc38f3b49

0.9.5 (2011-11-12)
------------------

- Adjust tox setup to test older Pyramid and WebOb branches under 2.5.

- Convert all templates to Mako.

- Don't rely on ``pyramid.compat.json``.

- Add Tweens toolbar panel.

0.9.4 (2011-09-28)
------------------

- Upgrade to jquery 1.6.4 and tablesorter plugin 2.0.5b

- Introduced new setting ``debugtoolbar.button_style``. Which can be used
  to override the default style (top:30px) set by ``toolbar.css``.

- Compatible with Python 3.2 (requires Pyramid 1.3dev+).

- Appease settings values that were sensitive to ``__getattr__`` in the
  settings debug panel (e.g. MongoDB databases).  See
  https://github.com/Pylons/pyramid_debugtoolbar/issues/30

0.9.3 (2011-09-12)
------------------

- All debug toolbar panels and underlying views are now always executable by
  entirely anonymous users, regardless of the default permission that may be
  in effect (use the ``NO_PERMISSION_REQUIRED`` permission for all
  debugtoolbar views).

- Toolbar cookie settings name changed (from fldt to p_dt), to avoid messing
  up folks who use both the flask debugtoolbar and Pyramid's.

- Fix IE7 and IE8 renderings of the toolbar.

0.9.2 (2011-09-05)
------------------

- Log an exception body to the debug toolbar logger when an exception
  happens.

- Don't reset the root logger level to NOTSET in the logging panel (changes
  console logging output to sanity again).

0.9.1 (2011-08-30)
------------------

- The ``debugtoolbar.intercept_exc`` setting is now a tri-state setting.  It
  can be one of ``debug``, ``display`` or ``false``.  ``debug`` means show
  the pretty traceback page with debugging controls.  ``display`` means show
  the pretty traceback package but omit the debugging controls.  ``false``
  means don't show the pretty traceback page.  For backwards compatibility
  purposes, ``true`` means ``debug``.

- A URL is now logged to the console for each exception when
  ``debugtoolbar.intercept_exc`` is ``debug`` or ``display``.  This URL leads
  to a rendering of the "pretty" traceback page for an exception.  This is
  useful when the exception was caused by an AJAX or non-human-driven
  request.  This URL is also injected into the pretty traceback page (at the
  bottom).

- "Unfixed" indentation of SQL EXPLAIN done in 0.9, it broke the explain page
  when a column value isn't a string.

0.9 (2011-08-29)
----------------

- Fixed indentation of SQL EXPLAIN by replacing spaces with HTML spaces.

- ``response.charset`` in some undefined user-reported cases may be ``None``,
  which would lead to an exception when attempting to render the debug
  toolbar.  In such cases we now assume the charset is UTF-8.

- Some renderings of the request vars and renderer values would raise an
  uncaught exception.

0.8 (2011-08-24)
----------------

- Try to cope with braindead Debian Python installs which package the
  ``pstats`` module separately from Python for god only knows what reason.
  Turn the performance panel off in this case instead of crashing.

0.7 (2011-08-24)
----------------

- Docs-only changes.

0.6 (2011-08-21)
----------------

- Do not register an alias when registering an implicit tween factory (compat
  with future 1.2 release).

0.5 (2011-08-18)
----------------

- The toolbar didn't work under Windows due to usage of the ``resource``
  module: https://github.com/Pylons/pyramid_debugtoolbar/issues/12

0.4 (2011-08-18)
----------------

- Change the default value for ``debugtoolbar.intercept_redirects`` to
  ``false.`` Rationale: it confuses people when first developing if the
  application they're working on has a home page which does a redirection.

0.3 (2011-08-15)
----------------

- Request vars panel would cause a UnicodeDecodeError under some
  circumstances (see https://github.com/Pylons/pyramid_debugtoolbar/issues/9).

- Dynamicize URLs for SQLAlchemy subpanels.

- Require "pyramid>=1.2dev" for install; the trunk is now "1.2dev" instead of
  "1.1.1dev".

- Requires trunk after 2011-08-14: WSGIHTTPException "prepare" method and
  ``alias`` param to add_tween, BeforeRender event has no "_system" attr.

- Fix memory leak.

- HTML HTTP exceptions now are rendered with the debug toolbar div.

- Added NotFound page to demo app and selenium tests.

0.2 (2011-08-07)
----------------

- Add SQLAlchemy "explain" and "select" pages (available from the SQLALchemy
  panel next to each query shown in the page).

- Requires newer Pyramid trunk (checked out on 2011-08-07 or later).

- Add a link to the SQLAlchemy demo page from the demo app index page.

0.1 (2011-07-30)
----------------

- Initial release.

            

Raw data

            {
    "_id": null,
    "home_page": "https://docs.pylonsproject.org/projects/pyramid-debugtoolbar/en/latest/",
    "name": "pyramid-debugtoolbar",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.7",
    "maintainer_email": "",
    "keywords": "wsgi,pylons,pyramid,transaction",
    "author": "Chris McDonough, Michael Merickel, Casey Duncan, Blaise Laflamme",
    "author_email": "pylons-discuss@googlegroups.com",
    "download_url": "https://files.pythonhosted.org/packages/1c/09/c2757fa0d1dd4d3f748e5160453bf5a50918f2fbeb22913e184998989644/pyramid_debugtoolbar-4.12.1.tar.gz",
    "platform": null,
    "description": "pyramid_debugtoolbar\n====================\n\n``pyramid_debugtoolbar`` provides a debug toolbar useful while you're\ndeveloping your Pyramid application.\n\nNote that ``pyramid_debugtoolbar`` is a blatant rip-off of Michael van\nTellingen's ``flask-debugtoolbar`` (which itself was derived from Rob Hudson's\n``django-debugtoolbar``). It also includes a lightly sanded down version of the\nWerkzeug debugger code by Armin Ronacher and team.\n\n\nDocumentation\n-------------\n\nThe documentation of the current stable release of ``pyramid_debugtoolbar`` is\navailable at\nhttps://docs.pylonsproject.org/projects/pyramid-debugtoolbar/en/latest/.\n\n\nDemonstration\n-------------\n\nFor a demonstration:\n\n- Clone the ``pyramid_debugtoolbar`` trunk.\n\n  .. code-block:: bash\n\n      $ git clone https://github.com/Pylons/pyramid_debugtoolbar.git\n\n- Create a virtual environment in the workspace.\n\n  .. code-block:: bash\n\n      $ cd pyramid_debugtoolbar\n      $ python3 -m venv env\n\n- Install the ``pyramid_debugtoolbar`` trunk into the virtualenv.\n\n  .. code-block:: bash\n\n      $ env/bin/pip install -e .\n\n- Install the ``pyramid_debugtoolbar/demo`` package into the virtualenv.\n\n  .. code-block:: bash\n\n      $ env/bin/pip install -e demo\n\n- Run the ``pyramid_debugtoolbar`` package's ``demo/demo.py`` file using the\n  virtual environment's Python.\n\n  .. code-block:: bash\n\n      $ env/bin/python demo/demo.py\n\nVisit http://localhost:8080 in a web browser to see a page full of test\noptions.\n\n\nTesting\n-------\n\nIf you have ``tox`` installed, run all tests with:\n\n.. code-block:: bash\n\n    $ tox\n\nTo run only a specific Python environment:\n\n.. code-block:: bash\n\n    $ tox -e py311\n\nIf you don't have ``tox`` installed, you can install the testing requirements,\nthen run the tests.\n\n.. code-block:: bash\n\n    $ python3 -m venv env\n    $ env/bin/pip install -e \".[testing]\"\n    $ env/bin/py.test\n\n\nBuilding documentation\n----------------------\n\nIf you have ``tox`` installed, build the docs with:\n\n.. code-block:: bash\n\n    $ tox -e docs\n\nIf you don't have ``tox`` installed, you can install the requirements to build\nthe docs, then build them.\n\n.. code-block:: bash\n\n    $ env/bin/pip install -e \".[docs]\"\n    $ cd docs\n    $ make clean html SPHINXBUILD=../env/bin/sphinx-build\n\n4.12.1 (2024-02-04)\n-------------------\n\n- Fix a toolbar crash when loading the page and there aren't any visible\n  requests yet.\n\n- Fix a concern where the toolbar may access sensitive request attributes like\n  ``request.authenticated_userid`` at times outside of the supported request\n  lifecycle.\n\n4.12 (2024-02-03)\n-----------------\n\n- Remove dependency on setuptools / pkg_resources.\n  See https://github.com/Pylons/pyramid_debugtoolbar/pull/390\n\n- Avoid triggering DeprecationWarnings when tracking values for\n  deprecated attributes in Pyramid like ``effective_principals``.\n  See https://github.com/Pylons/pyramid_debugtoolbar/pull/391\n\n4.11 (2024-01-27)\n-----------------\n\n- Drop support for SQLAlchemy < 1.4.\n  See https://github.com/Pylons/pyramid_debugtoolbar/pull/388\n\n- Add support for Python 3.12.\n\n- Add support for SQLAlchemy 2.x.\n  See https://github.com/Pylons/pyramid_debugtoolbar/pull/388\n\n- Fix an issue where a long-running request might not appear in the toolbar UI\n  without refreshing the page.\n\n- Use ``time.monotonic()`` when computing performance intervals.\n\n4.10 (2022-01-02)\n-----------------\n\n- Drop support for Python 2.7, 3.4, 3.5, 3.6.\n\n- Add support for Python 3.9, 3.10, 3.11.\n\n- Fix deprecated usages of ``threading.currentThread()``.\n  See https://github.com/Pylons/pyramid_debugtoolbar/pull/374\n\n4.9 (2020-11-24)\n----------------\n\n- Support Python 3.9.\n\n- Added a new Session Panel to track ingress and egress changes to a registered\n  ISession interface across a request lifecycle.  By default, the panel only\n  operates on accessed sessions via a wrapped loader. Users can activate the\n  Session Panel, via the Toolbar Settings or a per-request cookie, to track the\n  ingress and egress data on all requests.\n\n  * Removed \"Session\" section from Request Vars Panel\n  * Updated Documentation and Screenshots\n\n- Ensured the Headers panel only operates when a Response object exists, to\n  create better stack traces if other panels encounter errors.\n\n- ``utils.dictrepr`` will now fallback to a string comparison of the keys if a\n  TypeError is encountered, which can occur under Python3.\n\n  * A test was added to check to ensure sorting errors occur under Python3.\n    If the test fails in the future, this workaround may no longer be needed.\n\n- Updated toolbar javascript to better handle multiple user-activated panels.\n\n  * ``split`` and ``join`` functions now use the same delimiter.\n  * If the browser supports it, use a \"set\" to de-duplicate active panels.\n\n- Inline comments on toolbar.js and toolbar.py to alert future developers on\n  the string delimiters and cookie names.\n\n\n4.8 (2020-10-23)\n----------------\n\n- Added tracking of transactional SQLAlchemy events to provide more insight\n  into database session behavior during a request's lifecycle.\n  See https://github.com/Pylons/pyramid_debugtoolbar/pull/368\n\n4.7 (2020-10-22)\n----------------\n\n- Added black, isort, and github actions to the pipeline. Dropped travis-ci.\n\n- Added some extra output to the \"Request Vars\" panel related to previewing\n  the body contents.\n  See https://github.com/Pylons/pyramid_debugtoolbar/pull/367\n\n4.6.1 (2020-02-10)\n------------------\n\n- Fix parser errors when injecting the toolbar into XHTML formatted pages.\n  See https://github.com/Pylons/pyramid_debugtoolbar/pull/360\n\n4.6 (2020-01-20)\n----------------\n\n- Show the full URL in the tooltip on the requests panel.\n  See https://github.com/Pylons/pyramid_debugtoolbar/pull/358\n\n4.5.2 (2020-01-06)\n------------------\n\n- Stop accessing ``request.unauthenticated_userid`` in preparation for\n  Pyramid 2.0 where it is deprecated.\n\n- Catch a ``ValueError`` when JSON-serializing SQLA objects for display.\n  See https://github.com/Pylons/pyramid_debugtoolbar/pull/357\n\n4.5.1 (2019-11-08)\n------------------\n\n- Add Python 3.8 support.\n\n- Fix internal deprecation warnings on Python 3.7.\n\n4.5 (2018-09-09)\n----------------\n\n- Drop Python 3.3 support to align with Pyramid and its EOL.\n\n- Add support for testing on Python 3.7.\n\n- Add a list of engines to the SQLAlchemy panel if queries come from\n  multiple engines.\n  See https://github.com/Pylons/pyramid_debugtoolbar/pull/334\n\n- When the toolbar intercepts an exception via\n  ``debugtoolbar.intercept_exc = True`` and returns the interactive\n  debugger, it will add ``request.exception`` and ``request.exc_info`` to\n  the request to indicate what exception triggered the response. This helps\n  upstream tweens such as ``pyramid_retry`` to possibly retry the requests.\n  See https://github.com/Pylons/pyramid_debugtoolbar/pull/343\n\n- Stop parsing the ``request.remote_addr`` value when it contains chain of\n  comma-separated ip-addresses. Reject these values and emit a warning\n  to sanitize the value upstream.\n  See https://github.com/Pylons/pyramid_debugtoolbar/pull/342\n\n\n4.4 (2018-02-19)\n----------------\n\n- Reduce the log output for squashed exceptions and put them at the INFO\n  level so they can be filtered out if desired.\n  See https://github.com/Pylons/pyramid_debugtoolbar/pull/328 and\n  https://github.com/Pylons/pyramid_debugtoolbar/pull/329\n\n4.3.1 (2018-01-28)\n------------------\n\n- Javascript syntax fixes for browsers that don't support trailing commas.\n  See https://github.com/Pylons/pyramid_debugtoolbar/pull/326\n\n4.3 (2017-07-14)\n----------------\n\n- The logging panel indicator is now color-coded to indicate the severity of\n  the log messages as well as the number of messages at said level. There may\n  be more messages, but the most severe show up in the annotation.\n\n  This feature also added a new ``nav_subtitle_style`` hook to the\n  ``DebugPanel`` API for adding a custom CSS class to the subtitle tag.\n\n  See https://github.com/Pylons/pyramid_debugtoolbar/pull/322\n\n4.2.1 (2017-06-30)\n------------------\n\n- Fix a bug with the logging of squashed exceptions on Python < 3.5.\n  See https://github.com/Pylons/pyramid_debugtoolbar/pull/320\n\n4.2 (2017-06-21)\n----------------\n\nThis release contains a rewrite of the underlying exception / traceback\ntracking machinery and fixes regressions caused by the 4.1 release that\nbroke the interactive debugger.\nSee https://github.com/Pylons/pyramid_debugtoolbar/pull/318\n\n- Tracebacks are now tied to the per-request toolbar object one-to-one.\n  A request may have only one traceback. Previously they actually stuck\n  around for the entire lifetime of the app instead of being collected by\n  the max_request_history setting.\n\n- The routes for exceptions are standardized to look similar to the SQLA AJAX\n  routes. For example, ``/{request_id}/exception`` instead of\n  ``/exception?token=...&tb=...`` and\n  ``/{request_id}/exception/execute/{frame_id}?cmd=...`` instead of\n  ``/exception?token=...&tb=...&frm=...&cmd=...``.\n\n- Fixed the url generation for the traceback panel link at the bottom of the\n  traceback... it was actually empty previously - it got lost somewhere along\n  the way.\n\n- /favicon.ico is no longer specially handled.. it's just part of\n  ``exclude_prefixes`` like anything else that you want to exclude.\n\n- ``request.pdtb_history`` is available for toolbar requests (mostly AJAX\n  requests or panel rendering).\n\n- Removed the unused history predicate.\n\n- URL generation was broken in the ``debugger.js`` but that's fixed now so the\n  execute/source buttons work in tracebacks.\n\n- Drop the license from ``LICENSE.txt`` for the removed ipaddr module in 4.1.\n  See https://github.com/Pylons/pyramid_debugtoolbar/pull/315\n\n4.1 (2017-05-30)\n----------------\n\n- Debug squashed exceptions! If you register an exception view for an exception\n  it will render a response. The toolbar will see the squashed exception and\n  enable the ``Traceback`` tab in the toolbar and emit a message on the\n  console with the URL. You can then debug the exception while returning the\n  original response to the user.\n  See https://github.com/Pylons/pyramid_debugtoolbar/pull/308\n\n- Remove the vendored ipaddr package and use the stdlib ipaddress module on\n  Python 3.3+. On Python < 3.3 the ipaddress module is a dependency from PyPI.\n  This dependency uses environment markers and thus requires pip 8.1.2+.\n  See https://github.com/Pylons/pyramid_debugtoolbar/pull/304\n\n- Display a warning if the toolbar is used to display a request that no longer\n  exists. This may be because the app was restarted or the request fell off\n  the end of the ``max_request_history``.\n  See https://github.com/Pylons/pyramid_debugtoolbar/pull/305\n\n- Enable testing on Python 3.6.\n  See https://github.com/Pylons/pyramid_debugtoolbar/pull/306\n\n- Drop the link-local suffix off of local interfaces in order to accept\n  requests on them. See https://github.com/Pylons/pyramid_debugtoolbar/pull/307\n\n- Headers panel defers its processing to a finished callback. This is best\n  effort of displaying actual headers, since they could be modified by\n  a response callback or another finished callback.\n  See https://github.com/Pylons/pyramid_debugtoolbar/pull/310\n\n- Query log inside SQLAlchemy panel does not cause horizontal scrolling\n  anymore, which should improve UX.\n  See https://github.com/Pylons/pyramid_debugtoolbar/pull/311\n\n4.0.1 (2017-05-09)\n------------------\n\n- Fix sticky panel functionality that was broken by other cleanup in the 4.0\n  release. See https://github.com/Pylons/pyramid_debugtoolbar/pull/297\n\n4.0 (2017-05-03)\n----------------\n\n- The config settings ``debugtoolbar.panels``, ``debugtoolbar.extra_panels``,\n  ``debugtoolbar.global_panels`` and ``debugtoolbar.extra_global_panels``\n  now all accept panel names as defined in\n  ``pyramid_debugtoolbar.panels.DebugPanel.name``. Thus you may use names\n  such as ``performance``, ``headers``, etc. These settings still support the\n  dotted Python path but it is suggested that panels now support being\n  included via ``debugtoolbar.includes`` and ``config.add_debugtoolbar_panel``\n  instead such that they are automatically added to the toolbar.\n  See https://github.com/Pylons/pyramid_debugtoolbar/pull/288\n\n- Add a new ``config.add_debugtoolbar_panel`` directive that can be invoked\n  from ``includeme`` functions included via the ``debugtoolbar.includes``\n  setting. These panels are automatically added to the default panel list\n  and should become the way to define toolbar panels in the future.\n  See https://github.com/Pylons/pyramid_debugtoolbar/pull/283\n\n- Add a new ``config.inject_parent_action`` directive that can be invoked\n  from ``includeme`` functions included via the ``debugtoolbar.includes``\n  setting. These actions are invoked on the parent config just before it is\n  created such that actions can inspect / wrap existing config.\n  See https://github.com/Pylons/pyramid_debugtoolbar/pull/288\n\n- Added \"sticky\" panel functionality to allow a selected panel to persist\n  across pageviews using cookies.  If a cookied panel does not have content\n  available for display, the first non-disabled panel will be displayed. If a\n  cookied panel is not enabled on the toolbar, the first non-disabled panel will\n  be displayed AND will become the new default panel.\n  See https://github.com/Pylons/pyramid_debugtoolbar/pull/272\n\n- Added `CustomLoggerFactory` to javascript, used in the development of PR 272.\n  This javascript factory allows panel developers and maintainers to use verbose\n  console logging during development, partitioned by feature, and silence it for\n  deployment while still leaving the logging lines activated.\n\n- The toolbar registers a ``BeforeRender`` subscriber in your application to\n  monitor the rendering of templates. Previously it was possible that the\n  toolbar would miss rendering information because of the order in which the\n  subscribers were registered. The toolbar now waits until the application\n  is created and then appends a new subscriber that encapsulates the\n  your application's ``BeforeRender`` subscribers.\n  See https://github.com/Pylons/pyramid_debugtoolbar/pull/284\n\n- Remove duplicate ``id=\"${panel.dom_id}\"`` tags in history tab html. Only\n  the top-level ``<li>`` tag has the id now.\n  See https://github.com/Pylons/pyramid_debugtoolbar/pull/285\n\n- Emit a warning and disable the toolbar if the app is being served by\n  a forking / multiprocess wsgi server that sets\n  ``environ['wsgi.multiprocess']`` to ``True``. This should help avoid\n  confusing issues in certain deployments like gunicorn and uwsgi multiprocess\n  modes. See https://github.com/Pylons/pyramid_debugtoolbar/pull/286\n\n- The toolbar tween is always placed explicitly OVER the pyramid_tm tween.\n\n- Refactored all debugtoolbar panels to be included using\n  ``config.add_debugtoolbar_panel`` and per-panel ``includeme`` functions.\n  See https://github.com/Pylons/pyramid_debugtoolbar/pull/288\n\n- Exposed a ``request.toolbar_panels`` dictionary which can be used from within\n  ``DebugPanel.render_content`` and ``DebugPanel.render_vars`` in order to\n  introspect and use the data generated by other panels when rendering the\n  panel. See https://github.com/Pylons/pyramid_debugtoolbar/pull/291\n\n- Support streaming new requests on Microsoft Edge and Internet Explorer 8+ by\n  using a Server-Sent-Events polyfill.\n  See https://github.com/Pylons/pyramid_debugtoolbar/pull/293\n\n3.0.5 (2016-11-1)\n-----------------\n\n- Change static toolbar asset to accommodate color blindness.\n  See https://github.com/Pylons/pyramid_debugtoolbar/issues/273\n\n3.0.4 (2016-07-26)\n------------------\n\n- 3.0.3 was a brownbag release missing static assets.\n\n3.0.3 (2016-07-26)\n------------------\n\n- Fix another regression where the toolbar was modifying requests to the\n  toolbar itself such that the ``script_name`` and ``path_info`` were\n  different after handling the request than before.\n  See https://github.com/Pylons/pyramid_debugtoolbar/pull/269\n\n3.0.2 (2016-07-02)\n------------------\n\n- Fix a regression with inspecting requests with a session that is loaded\n  before the toolbar executes.\n  See https://github.com/Pylons/pyramid_debugtoolbar/pull/268\n\n3.0.1 (2016-05-20)\n------------------\n\n- Avoid touching ``request.unauthenticated_userid``,\n  ``request.authenticated_userid`` and ``request.effective_principals`` unless\n  they are accessed by the user in the normal request lifecycle. This avoids\n  some issues where unauthenticated requests could trigger side effects on\n  your authentication policy or access the properties outside of the\n  expected lifecycle of the properties.\n  See https://github.com/Pylons/pyramid_debugtoolbar/pull/263\n\n3.0 (2016-04-23)\n----------------\n\n- The toolbar is now a completely standalone application running inside the\n  tween. There are several minor incompatibilities and improvements related\n  to this extra isolation:\n\n  1. ``pyramid_mako`` and the ``.dbtmako`` renderer are no longer included\n     in the parent application (your app).\n  2. Panels must be extra careful now that they only render templates inside\n     of the ``render_vars`` and ``render_content`` functions. These are the\n     only functions in which the ``request`` object is for rendering the\n     toolbar panel.\n  3. The toolbar will not be affected by any global security policies your\n     application may put in place other than via\n     ``config.set_debugtoolbar_request_authorization``.\n     **never run the toolbar in production**\n\n  See https://github.com/Pylons/pyramid_debugtoolbar/pull/253\n\n- Updated Bootstrap to v3.3.6, refactored static assets and dropped require.js.\n  Each page now depends on what it needs without extra dependencies included\n  in the debugger pages.\n  See https://github.com/Pylons/pyramid_debugtoolbar/pull/259\n\n- Enabled interactive tablesorting on table columns.\n  See https://github.com/Pylons/pyramid_debugtoolbar/pull/256\n\n- setuptools-git is now required to install the codebase in non-editable mode.\n\n2.5 (2016-04-20)\n----------------\n\n- Drop Python 2.6 and Python 3.2 support.\n\n- Add Python 3.5 support.\n\n- Remove inline javascript from injected pages to work better with any\n  Content Security Policy that may be in place.\n  See https://github.com/Pylons/pyramid_debugtoolbar/pull/250\n\n- Added the packages' `.location` to the \"Versions\" panel so developers can tell\n  which version of each package is actually being used.\n  See https://github.com/Pylons/pyramid_debugtoolbar/pull/240\n\n- Upon exception do a better job guessing the charset of the sourcefile when\n  reading it in to display tracebacks.\n  See https://github.com/Pylons/pyramid_debugtoolbar/pull/244\n\n- Removed jQuery code in the toolbar referring to a DOM node called 'myTab',\n  which doesn't seem to exist anymore.\n  See https://github.com/Pylons/pyramid_debugtoolbar/pull/247\n\n- Updated the \"Request Vars\" panel:\n  1. Show additional values that were previously missing\n  2. Sections upgraded to link to Pyramid Documentation when possible\n  3. Mako reformatted into \"defs\" for simpler reorganization in the future\n  See https://github.com/Pylons/pyramid_debugtoolbar/pull/241\n\n- Fix to prevent the toolbar from loading the session until it is actually\n  accessed by the user. This avoids unnecessary parsing of the session object\n  as well as waiting to parse it until later in the request which may meet\n  more expectations of the session factory.\n  See https://github.com/Pylons/pyramid_debugtoolbar/pull/249\n\n2.4.2 (2015-10-28)\n------------------\n\n- Fix a long-standing bug in which log messages were not rendered until\n  the end of the response. By this time the arguments passed to the logger\n  may no longer be valid (such as SQLAlchemy managed objects) and you would\n  see a ``DetachedInstanceError``.\n  See https://github.com/Pylons/pyramid_debugtoolbar/issues/188\n\n2.4.1 (2015-08-12)\n------------------\n\n- Remove the extra query hash constructed when indexing into SQL queries via\n  url as it was unused after releasing 2.4.\n  See https://github.com/Pylons/pyramid_debugtoolbar/pull/232\n\n2.4 (2015-06-04)\n----------------\n\nThis release changes some details of the panel API, so if you are writing\nany custom panels for the toolbar please review the changes.\n\n- Document the cookie used to activate panels on a per-request basis. It is\n  possible to specify the cookie per-request to turn on certain panels. This\n  is used by default in the browser, but may also be used on a per-request\n  basis by curl or other http APIs.\n\n- Add new ``debugtoolbar.active_panels`` setting which can specify certain\n  panels to be always active.\n\n- Modify ``DebugPanel.name`` to be a valid python identifier, used for\n  settings and lookup.\n\n- The toolbar no longer will clobber the ``request.id`` property. It now\n  namespaces its usage as ``request.pdtb_id``, freeing up ``request.id``\n  for applications.\n\n- Add a lock icon next to the request method in the sidebar if the request\n  was accessed over https.\n  See https://github.com/Pylons/pyramid_debugtoolbar/pull/213\n\n- Update to bootstrap 3.1.1.\n  See https://github.com/Pylons/pyramid_debugtoolbar/pull/213\n\n- Fix display of POST variables where the same key is used multiple times.\n  See https://github.com/Pylons/pyramid_debugtoolbar/pull/210\n\n- Fix auth callback so it protects the toolbar views. Auth system is tested\n  now. See https://github.com/Pylons/pyramid_debugtoolbar/pull/226\n\n- Convert SQLAlchemy views to obtain the query and params internally; this\n  allows executing queries with parameters that are not serializable.\n  See https://github.com/Pylons/pyramid_debugtoolbar/pull/227\n\n- Adds Pyramid version tests and bumps required Pyramid version to 1.4.\n  The pyramid_mako dependency requires 1.3, but debugtoolbar also uses\n  ``invoke_subrequest`` which was added in 1.4. The ``invoke_subrequest`` call\n  was added\n  in pyramid_debugtoolbar 2.0; if you need Pyramid 1.3 compatibility, try\n  an older version.\n  See https://github.com/Pylons/pyramid_debugtoolbar/issues/183\n  and https://github.com/Pylons/pyramid_debugtoolbar/pull/225\n\n2.3 (2015-01-05)\n----------------\n\n- Support a ``debugtoolbar.includes`` setting which will allow addons to\n  extend the toolbar's internal Pyramid application with custom logic.\n  See https://github.com/Pylons/pyramid_debugtoolbar/issues/207\n\n- Fixed an issue when the toolbar is not mounted at the root of the domain.\n  See https://github.com/Pylons/pyramid_debugtoolbar/pull/201\n\n- Fixed an issue where the `button_css` was not pulled from the settings.\n  Added support for configurable `max_request_history` and\n  `max_visible_requests`.\n  See https://github.com/Pylons/pyramid_debugtoolbar/pull/206\n\n2.2.2 (2014-11-09)\n------------------\n\n- Brownbagged 2.2.1, forgot to include the templates!\n\n2.2.1 (2014-11-09)\n------------------\n\n- Several internal links were not relative causing them to fail when the\n  app is mounted at a path prefix. See\n  https://github.com/Pylons/pyramid_debugtoolbar/pull/185 and\n  https://github.com/Pylons/pyramid_debugtoolbar/pull/196\n\n- Pin pygments<2 on 3.2 as the new release has dropped support.\n\n2.2 (2014-08-12)\n----------------\n\n- Avoid polluting user code with unnecessary toolbar css just to show the\n  button. See https://github.com/Pylons/pyramid_debugtoolbar/pull/174\n\n- Inject the toolbar button into ``application/xhtml+xml`` requests.\n  See https://github.com/Pylons/pyramid_debugtoolbar/pull/176\n\n- Make the toolbar accessible before another request has been served by the\n  application. See https://github.com/Pylons/pyramid_debugtoolbar/pull/171\n\n\n2.1 (2014-05-22)\n----------------\n\n- Add new \"debugtoolbar.\" configuration settings that allow enabling or\n  disabling various Pyramid knobs in a users .ini file. This for instance\n  allows easy enabling/disabling of template reloading for the debugtoolbar.\n\n- Allow the toolbar to display always, even when the parent application\n  is using a default permission.\n  See https://github.com/Pylons/pyramid_debugtoolbar/issues/147\n\n- Stabilize and document the ``pyramid_debugtoolbar.panels.DebugPanel``\n  API to allow developers to create their own panels.\n\n- Add new ``debugtoolbar.extra_panels`` and\n  ``debugtoolbar.extra_global_panels`` configuration settings to make it\n  simpler to support custom panels without overwriting the default panels.\n\n2.0.2 (2014-02-13)\n------------------\n\n- Fix breaking bugs when run under Py3k.\n\n2.0.1 (2014-02-12)\n------------------\n\n- Fixes a bug in 2.0 expecting pyramid_beaker to be around.\n\n2.0 (2014-02-12)\n----------------\n\n- The toolbar has undergone a major refactoring to mitigate the effects of\n  the toolbar's internal behavior on the application to which it is connected\n  and make it possible to inspect arbitrary requests. It is now available at\n  ``/_debug_toolbar`` and can be used to monitor any and all requests serviced\n  by the Pyramid application that it is wrapping, including non-html responses.\n\n  The toolbar will live-update (on conforming browsers via Server Sent Events)\n  when requests come into the Pyramid application, and can be used to debug and\n  inspect multiple requests simultaneously.\n\n1.0.9 (2013-10-20)\n------------------\n\n- Use new ``pyramid_mako`` configuration directive add_mako_renderer.\n\n1.0.8 (2013-09-09)\n------------------\n\n- Depend on ``pyramid_mako`` (Mako support will be split out of Pyramid in\n  1.5+).\n\n1.0.7 (2013-08-29)\n------------------\n\n- Drop support for Python 2.5.\n\n- Fix computation of proxy addresses.  See\n  https://github.com/Pylons/pyramid_debugtoolbar/pull/100 .\n\n- Make templates compatible with no-MarkupSafe Mako under Python 3.2.\n\n- Decode platform name to Unicode using utf-8 encoding to cope with nonascii\n  characters in platform (e.g. Fedora's Schrodinger's Cat).  See\n  https://github.com/Pylons/pyramid_debugtoolbar/pull/98\n\n- Raise a ``pyramid.exceptions.URLDecodeError`` instead of a raw\n  UnicodeDecodeError when the request path cannot be decoded.  See\n  https://github.com/Pylons/pyramid/issues/1057.\n\n- Added new configuration option: `debugtoolbar.show_on_exc_only` (\n  default=false).  If set to true (`debugtoolbar.show_on_exc_only = true`)\n  the debugtoolbar will only be injected into the response in case a\n  exception is raised. If the response is processed without exception the\n  returned html code is not changed at all.\n  See https://github.com/Pylons/pyramid_debugtoolbar/issues/54\n\n- Fix various UnicodeDecodeError exceptions.\n\n1.0.6 (2013-04-17)\n------------------\n\n- Packaging release only, no code changes.  1.0.5 was a brownbag release due to\n  missing directories in the tarball.\n\n1.0.5 (2013-04-17)\n------------------\n\n- Parse IPs correctly when request.remote_addr is a comma separated list\n  of proxies IPs.\n\n- If you are also using require.js, the debug toolbar's version of jQuery\n  will no longer conflict with your application's version of the library.\n\n- Use the \"n\" filter to disable default_filters when including the raw\n  SQL in links, leaving only the \"u\" filter (URL escaping).\n\n- Support for per-request authorization of toolbar middleware via\n  ``config.set_debugtoolbar_request_authorization(callback)`` where callback\n  accepts request object and returns boolean value whether toolbar is enabled\n  or not.\n\n- Short term fix for preventing error when converting binary query params to json.\n\n- Fix sqlalchemy query duration from microseconds to milliseconds.\n\n1.0.4 (2013-01-05)\n------------------\n\n- Add a ``debugtoolbar.excluded_prefixes`` setting.  When a URL path prefix\n  matches one of these prefixes, the toolbar will not be shown on the resulting\n  page.\n\n- Show the prompt and little text file icons show all the time, instead of\n  only on hover.\n\n- Do not set max-height on result boxes (which result in nested scroll on\n  the page, which makes it hard to find information quickly).\n\n- When an expression result is long, do not truncate with an ellipsis, which\n  requires one more click to get at the information I need.\n\n- Support ``pip install`` from the github repository by adding all static files\n  required to install in the ``package_data`` ``setup.py``. Setuptools usually\n  uses Subversion or CVS to tell it what static files it needs to package up\n  for egg distribution, but does not support reading git metadata.\n\n- The debug toolbar now use a patched version of require.js with a distinct\n  private name that cannot clash with the dojo loader or other incompatible\n  versions of require that may already be loaded on the page. You no longer\n  need to add the toolbar to your own require.js to make it work.\n\n1.0.3 (2012-09-23)\n------------------\n\n- The ``valid_host`` custom predicate used internally by pyramid_debugtoolbar\n  views didn't use newer \"ipaddr\"-based logic.  Symptom: some views may have\n  been incorrectly inaccessible if you used a network mask as a\n  \"debugtoolbar.hosts\" option.\n\n- The debug console now works with Google App Engine.\n\n- The debug console now adds a shortcut for accessing the last result through\n  ``_``.\n\n1.0.2 (2012-04-19)\n------------------\n\n- Moved the toolbar and debugger javascript files to use requirejs for\n  better dependency loading and module isolation to play better with mutiple\n  library versions. Recurrent problem was with async loading and application\n  specific jquery library where the expected version was overrided by the\n  toolbar one.\n\n  If you are already using requirejs and want the toolbar to load, just add it\n  to your path and module::\n\n    require.config({\n      paths: {\n        \"jquery\": \"jquery-1.7.2.min\",\n        \"toolbar\": \"/_debug_toolbar/static/js/toolbar\"\n      }\n    });\n\n    require([\"jquery\", \"toolbar\"], function($, toolbar) {\n      $(function() {\n        // your module\n      });\n    });\n\n1.0.1 (2012-03-27)\n------------------\n\n- If ``request.remote_addr`` is ``None``, disable the toolbar.\n\n1.0 (2012-03-17)\n----------------\n\n- Don't URL-quote SQL parameters on SQLAlchemy panel.\n\n- Allow hostmask values as ``debugtoolbar.hosts`` entries\n  (e.g. ``192.168.1.0/24``).\n\n0.9.9.1 (2012-02-22)\n--------------------\n\n- When used with Pyramid 1.3a9+, views, routes, and other registrations made\n  by ``pyramid_debugtoolbar`` itself will not show up in the introspectables\n  panel.\n\n0.9.9 (2012-02-19)\n------------------\n\n- Try to take advantage of MakoRendererFactoryHelper in Pyramid 1.3a8+.  If\n  we can do this, the toolbar templates won't be effected by normal mako\n  settings.  The most visible change is that toolbar mako templates now have\n  a ``dbtmako`` extension.\n\n0.9.8 (2012-01-09)\n------------------\n\n- Show request headers instead of mistakenly showing environ values in\n  Headers panel under \"Request Headers\".  This also fixes a potential\n  UnicodeDecodeError.\n\n- Set content_length on response object when we regenerate app_iter while\n  replacing original content.\n\n0.9.7 (2011-12-09)\n------------------\n\n- The performance panel of the debugtoolbar used a variable named\n  ``function_calls`` which was not initialised when stats are not\n  collected. This caused a ``NameError`` when mako rendered the template with\n  the ``strict_undefined`` option.\n\n- Fix Python 3 compatibility in SQLAlchemy panel.\n\n- Make SQLAlchemy explain and select work again.\n\n0.9.6 (2011-12-09)\n------------------\n\n- Added \"Introspection\" panel; active only under Pyramid 1.3dev+ (requires\n  Pyramid introspection subsystem).\n\n- Address heisenbug reported where performance panel template variables cause\n  unexpected results.  Can't repeat, but reporter indicates the fix works for\n  him, so hail marying.  See\n  https://github.com/Pylons/pyramid_debugtoolbar/commit/5719c97ea2a3a41fc01e261403d0167cc38f3b49\n\n0.9.5 (2011-11-12)\n------------------\n\n- Adjust tox setup to test older Pyramid and WebOb branches under 2.5.\n\n- Convert all templates to Mako.\n\n- Don't rely on ``pyramid.compat.json``.\n\n- Add Tweens toolbar panel.\n\n0.9.4 (2011-09-28)\n------------------\n\n- Upgrade to jquery 1.6.4 and tablesorter plugin 2.0.5b\n\n- Introduced new setting ``debugtoolbar.button_style``. Which can be used\n  to override the default style (top:30px) set by ``toolbar.css``.\n\n- Compatible with Python 3.2 (requires Pyramid 1.3dev+).\n\n- Appease settings values that were sensitive to ``__getattr__`` in the\n  settings debug panel (e.g. MongoDB databases).  See\n  https://github.com/Pylons/pyramid_debugtoolbar/issues/30\n\n0.9.3 (2011-09-12)\n------------------\n\n- All debug toolbar panels and underlying views are now always executable by\n  entirely anonymous users, regardless of the default permission that may be\n  in effect (use the ``NO_PERMISSION_REQUIRED`` permission for all\n  debugtoolbar views).\n\n- Toolbar cookie settings name changed (from fldt to p_dt), to avoid messing\n  up folks who use both the flask debugtoolbar and Pyramid's.\n\n- Fix IE7 and IE8 renderings of the toolbar.\n\n0.9.2 (2011-09-05)\n------------------\n\n- Log an exception body to the debug toolbar logger when an exception\n  happens.\n\n- Don't reset the root logger level to NOTSET in the logging panel (changes\n  console logging output to sanity again).\n\n0.9.1 (2011-08-30)\n------------------\n\n- The ``debugtoolbar.intercept_exc`` setting is now a tri-state setting.  It\n  can be one of ``debug``, ``display`` or ``false``.  ``debug`` means show\n  the pretty traceback page with debugging controls.  ``display`` means show\n  the pretty traceback package but omit the debugging controls.  ``false``\n  means don't show the pretty traceback page.  For backwards compatibility\n  purposes, ``true`` means ``debug``.\n\n- A URL is now logged to the console for each exception when\n  ``debugtoolbar.intercept_exc`` is ``debug`` or ``display``.  This URL leads\n  to a rendering of the \"pretty\" traceback page for an exception.  This is\n  useful when the exception was caused by an AJAX or non-human-driven\n  request.  This URL is also injected into the pretty traceback page (at the\n  bottom).\n\n- \"Unfixed\" indentation of SQL EXPLAIN done in 0.9, it broke the explain page\n  when a column value isn't a string.\n\n0.9 (2011-08-29)\n----------------\n\n- Fixed indentation of SQL EXPLAIN by replacing spaces with HTML spaces.\n\n- ``response.charset`` in some undefined user-reported cases may be ``None``,\n  which would lead to an exception when attempting to render the debug\n  toolbar.  In such cases we now assume the charset is UTF-8.\n\n- Some renderings of the request vars and renderer values would raise an\n  uncaught exception.\n\n0.8 (2011-08-24)\n----------------\n\n- Try to cope with braindead Debian Python installs which package the\n  ``pstats`` module separately from Python for god only knows what reason.\n  Turn the performance panel off in this case instead of crashing.\n\n0.7 (2011-08-24)\n----------------\n\n- Docs-only changes.\n\n0.6 (2011-08-21)\n----------------\n\n- Do not register an alias when registering an implicit tween factory (compat\n  with future 1.2 release).\n\n0.5 (2011-08-18)\n----------------\n\n- The toolbar didn't work under Windows due to usage of the ``resource``\n  module: https://github.com/Pylons/pyramid_debugtoolbar/issues/12\n\n0.4 (2011-08-18)\n----------------\n\n- Change the default value for ``debugtoolbar.intercept_redirects`` to\n  ``false.`` Rationale: it confuses people when first developing if the\n  application they're working on has a home page which does a redirection.\n\n0.3 (2011-08-15)\n----------------\n\n- Request vars panel would cause a UnicodeDecodeError under some\n  circumstances (see https://github.com/Pylons/pyramid_debugtoolbar/issues/9).\n\n- Dynamicize URLs for SQLAlchemy subpanels.\n\n- Require \"pyramid>=1.2dev\" for install; the trunk is now \"1.2dev\" instead of\n  \"1.1.1dev\".\n\n- Requires trunk after 2011-08-14: WSGIHTTPException \"prepare\" method and\n  ``alias`` param to add_tween, BeforeRender event has no \"_system\" attr.\n\n- Fix memory leak.\n\n- HTML HTTP exceptions now are rendered with the debug toolbar div.\n\n- Added NotFound page to demo app and selenium tests.\n\n0.2 (2011-08-07)\n----------------\n\n- Add SQLAlchemy \"explain\" and \"select\" pages (available from the SQLALchemy\n  panel next to each query shown in the page).\n\n- Requires newer Pyramid trunk (checked out on 2011-08-07 or later).\n\n- Add a link to the SQLAlchemy demo page from the demo app index page.\n\n0.1 (2011-07-30)\n----------------\n\n- Initial release.\n",
    "bugtrack_url": null,
    "license": "BSD",
    "summary": "A package which provides an interactive HTML debugger for Pyramid application development",
    "version": "4.12.1",
    "project_urls": {
        "Homepage": "https://docs.pylonsproject.org/projects/pyramid-debugtoolbar/en/latest/"
    },
    "split_keywords": [
        "wsgi",
        "pylons",
        "pyramid",
        "transaction"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "350045969d152de9389e932c6e345846c97069b42987ef1388840db507d9f557",
                "md5": "8fc3e78a8efa5fd62b23b3265b79d818",
                "sha256": "1d13a82444b3396d5a76d1e611d0de1b38da096f04440041e8e889536103864b"
            },
            "downloads": -1,
            "filename": "pyramid_debugtoolbar-4.12.1-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "8fc3e78a8efa5fd62b23b3265b79d818",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.7",
            "size": 350810,
            "upload_time": "2024-02-05T03:40:27",
            "upload_time_iso_8601": "2024-02-05T03:40:27.724397Z",
            "url": "https://files.pythonhosted.org/packages/35/00/45969d152de9389e932c6e345846c97069b42987ef1388840db507d9f557/pyramid_debugtoolbar-4.12.1-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1c09c2757fa0d1dd4d3f748e5160453bf5a50918f2fbeb22913e184998989644",
                "md5": "ac49360221a238669bb0d3698c1b41d7",
                "sha256": "71e888d349c85fcca12b3e6dc4c7ae8e3f02a1d5acc05154fd9ba8c7f661b43d"
            },
            "downloads": -1,
            "filename": "pyramid_debugtoolbar-4.12.1.tar.gz",
            "has_sig": false,
            "md5_digest": "ac49360221a238669bb0d3698c1b41d7",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.7",
            "size": 3081467,
            "upload_time": "2024-02-05T03:40:32",
            "upload_time_iso_8601": "2024-02-05T03:40:32.556272Z",
            "url": "https://files.pythonhosted.org/packages/1c/09/c2757fa0d1dd4d3f748e5160453bf5a50918f2fbeb22913e184998989644/pyramid_debugtoolbar-4.12.1.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-02-05 03:40:32",
    "github": false,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "lcname": "pyramid-debugtoolbar"
}
        
Elapsed time: 0.18555s