Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8060605
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 5, 20262026-06-05T10:03:00+00:00 2026-06-05T10:03:00+00:00

In pyramid, I need to render my templates according to different runtime environments —

  • 0

In pyramid, I need to render my templates according to different runtime environments — enable google analytics, use minified code, etc. (when in production). Is there an easy way to find out the current environment — perhaps an existing flag to find out which ini file was used?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-05T10:03:05+00:00Added an answer on June 5, 2026 at 10:03 am

    Pyramid INI files can hold arbitrary configuration entries, so why not include a flag in your files that distinguishes between production and development deployments?

    I’d do it like this; in your production .ini file:

    [app:main]
    production_deployment = True # Set to False in your development .ini file
    

    Pass this value on to the Pyramid Configurator:

    def main(global_config, **settings):
        # ...
        from pyramid.settings import asbool
        production_deployment = asbool(settings.get(
                   'production_deployment', 'false'))
        settings['production_deployment'] = production_deployment
        config = Configurator(settings=settings)
    

    You can now access the settings from just about anywhere in your Pyramid code. For example, in a request handler:

    settings = request.registry.settings
    if settings['production_deployment']:
        # Enable some production code here.
    

    However, I’d also use more finegrained settings in this case; a flag for enabling Google Analytics, one for minifying resources, etc. That way you can test each individual setting in your development environment, write unit tests for these switches, etc.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Pyramid documentation shows us how to use i18n inside views (and templates as well
I'm working on a Pyramid project using Mako templates, and I'm trying to display
i want to use a jquery widget in my pyramid project. Specifically I want
I am trying to use pyramid beaker in Pyramid framework and its just not
I'm using Pyramid and SQLAlchemy, but the following simplified code: u = u\u201C m
I need to draw a pyramid plot, like the one attached. I found an
I have a Pyramid app that uses Chameleon for its templates. I would like
Since Pyramid does not have any form dependencies, I need recommendations for form handling.
In the Python Pyramid tutorial , I encountered this phrase: Windows users will need
In Pyramid , add_notfound_view(append_slash=True) will cause a request which does not match any view,

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.