skillfed

plaster-pastedeploy

A loader implementing the PasteDeploy syntax to be used by plaster.

plaster-pastedeploy v1.0.1 2.4M downloads/30d#3,085 on PyPI7
Permissive license Active released

What it is and what it does

plaster_pastedeploy is a plugin for the plaster configuration framework that enables loading and parsing INI files according to the PasteDeploy standard. It implements the WSGI protocol interface, allowing applications to retrieve WSGI applications, filters, servers, and configuration settings from named sections in an INI file. The plugin bridges plaster's generic loader interface with PasteDeploy's specific INI syntax, supporting features like default value interpolation, environment variable injection, and logging configuration.

The package is typically used in web application frameworks (particularly Pyramid and other Pylons projects) to centralize application configuration. Developers call plaster.get_loader() with a URI pointing to an INI file, then use methods like get_wsgi_app() or get_settings() to retrieve configured components. The returned settings objects carry both local config and global defaults, plus a reference to the loader itself.

Use it for:

  • Load WSGI application instances from INI configuration files in Pyramid or other Pylons-based web frameworks.
  • Retrieve application settings and defaults from named sections in a PasteDeploy-format INI file for initialization.
  • Configure WSGI filters and middleware chains by parsing filter definitions from an INI configuration source.
  • Set up and start WSGI servers defined in an INI file without hardcoding server parameters in application code.
  • Manage logging configuration alongside application settings by parsing logging setup from a single INI file.

Worth the install?

AI-flagged interpretation of the facts on this page — verify before relying

A plaster plugin that loads and parses INI configuration files using the PasteDeploy format, exposing methods to retrieve WSGI applications, filters, servers, and settings from named config sections.

Yes. The package has low install friction, no known vulnerabilities, permissive licensing, and active maintenance. It is a stable, production-ready solution for applications that already use plaster and PasteDeploy or are adopting the Pylons ecosystem's configuration conventions. Install it if your application needs to load WSGI configuration from INI files; skip it if you use a different configuration framework or format.

Install

plaster-pastedeploy on PyPI

pip

pip install plaster-pastedeploy

uv

uv add plaster-pastedeploy

poetry

poetry add plaster-pastedeploy

Installing plaster-pastedeploy

Before you install

Low install friction with only two runtime dependencies (plaster and PasteDeploy). The package is actively maintained with a recent commit history and supports current Python versions (3.7–3.10, including PyPy).

License in practice

Licensed under the MIT License (permissive), allowing free use, modification, and distribution with minimal restrictions.

Quickstart

import plaster

loader = plaster.get_loader('development.ini', protocols=['wsgi'])
settings = loader.get_wsgi_app_settings()
app = loader.get_wsgi_app()

Verify before relying

  • Whether the package is actively maintained beyond the last release in November 2022 (last commit is recent but no new version released since then).

Package facts

License not declared (permissive)
Python support supports the current Python release (>=3.7)
Install friction low — pure-Python wheel
Runtime dependencies 2 — PasteDeploy, plaster
Maintenance actively maintained — 1,376 days since the last release
Last repo commit
First released
Downloads 2,393,831/month — #3,085 on PyPI (30-day window, as of 2026-08-14)
Known vulnerabilities none known (OSV.dev, checked 2026-08-14)

Evidence: plaster_pastedeploy-1.0.1-py2.py3-none-any.whl

Keywords: plaster, pastedeploy, plaster_pastedeploy, ini, config, egg

Development Status :: 5 - Production/StableIntended Audience :: DevelopersLicense :: OSI Approved :: MIT LicenseNatural Language :: EnglishProgramming Language :: Python :: 3Programming Language :: Python :: 3.10Programming Language :: Python :: 3.7Programming Language :: Python :: 3.8Programming Language :: Python :: 3.9Programming Language :: Python :: Implementation :: CPythonProgramming Language :: Python :: Implementation :: PyPy

Tags

ini config file loaderpastedeploy wsgi configurationplaster plugin ini parserwsgi app configuration loaderini file settings parserpastedeploy format loaderwsgi application setup
wsgi-configini-parserpastedeploy

More Application Frameworks packages