Welcome, guest | Sign In | My Account | Store | Cart

Notice! PyPM is being replaced with the ActiveState Platform, which enhances PyPM’s build and deploy capabilities. Create your free Platform account to download ActivePython or customize Python with the packages you require and get automatic updates.

Download
ActivePython
INSTALL>
pypm install z3c.appconfig

How to install z3c.appconfig

  1. Download and install ActivePython
  2. Open Command Prompt
  3. Type pypm install z3c.appconfig
 Python 2.7Python 3.2Python 3.3
Windows (32-bit)
1.0 Available View build log
1.0b1 Available View build log
Windows (64-bit)
1.0 Available View build log
1.0b1 Available View build log
Mac OS X (10.5+)
1.0 Available View build log
1.0b1 Available View build log
Linux (32-bit)
1.0 Available View build log
1.0b1 Available View build log
Linux (64-bit)
1.0 Available View build log
1.0b1 Available View build log
 
License
BSD
Lastest release
version 1.0 on Mar 2nd, 2011

Introduction

This package provides a method to configure an application via standard .ini files. This is convenient for site admins since they are more likely to be familiar with ini files than with ZCML.

Creating config files

There are two ways to tell a Zope instance which configuration files to load: zcml statements and the APPCONFIG environment variable. zcml statements are processed first, making it possible to override standard configuration.

The zcml syntax looks like this:

<configure xmlns="http://namespaces.zope.org/zope">
  <include package="z3c.appconfig" file="meta.zcml"/>
  <appconfig file="default.ini" />
</configure>

This will load the contents of default.ini and merge it into the application configuration.

If an APPCONFIG environment variable is set and points to a file its contents will be merged into the application configuration. This is done last, allowing you to override application defined defaults. For example:

$ APPCONFIG=etc/mysite.ini bin/instance fg

Accessing configuration

The configuration data can be accessed from your code via a IAppConfig utility. This utility is essentially a standard python dictionary which stores all configuration data. For example lets use a very simple configuration file:

[site]
title = My lovely site

You can access the title from python with code like this:

from zope.component import getUtility
from z3c.appconfig.interfaces import IAppConfig

appconfig=getUtility(IAppConfig)
print "Site title is: %s" % appconfig["site"]["title"]

Utility methods

As a convenience a utility method is provided to convert values from a configuration file to booleans: the z3c.appconfig.utils.asBool method:

from z3c.appconfig.utils import asBool
print "Pants are on: %s" % asBool("true")

Changelog

1.0 (2011-01-24)
  • Add more trove classifiers. [wichert]
  • Add a asBool utility method. [wichert]
1.0b1 (2010-05-17)
  • Initial release. [wichert]

Subscribe to package updates

Last updated Mar 2nd, 2011

Download Stats

Last month:1

What does the lock icon mean?

Builds marked with a lock icon are only available via PyPM to users with a current ActivePython Business Edition subscription.

Need custom builds or support?

ActivePython Enterprise Edition guarantees priority access to technical support, indemnification, expert consulting and quality-assured language builds.

Plan on re-distributing ActivePython?

Get re-distribution rights and eliminate legal risks with ActivePython OEM Edition.