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 appspace

How to install appspace

  1. Download and install ActivePython
  2. Open Command Prompt
  3. Type pypm install appspace
 Python 2.7Python 3.2Python 3.3
Windows (32-bit)
0.5.4 Available View build log
0.5.0 Available View build log
0.4.1 Available View build log
0.3.3 Available View build log
0.3.1 Available View build log
0.2.0 Available View build log
0.1.2 Available View build log
0.1.1 Available View build log
0.5.4 Available View build log
0.5.0 Available View build log
Windows (64-bit)
0.5.4 Available View build log
0.5.0 Available View build log
0.4.1 Available View build log
0.3.3 Available View build log
0.3.1 Available View build log
0.2.0 Available View build log
0.1.2 Available View build log
0.1.1 Available View build log
0.5.4 Available View build log
0.5.0 Available View build log
Mac OS X (10.5+)
0.5.4 Available View build log
0.5.0 Available View build log
0.4.1 Available View build log
0.3.3 Available View build log
0.3.1 Available View build log
0.2.0 Available View build log
0.1.2 Available View build log
0.1.1 Available View build log
0.5.4 Available View build log
0.5.0 Available View build log
Linux (32-bit)
0.5.4 Available View build log
0.5.0 Available View build log
0.4.1 Available View build log
0.3.3 Available View build log
0.3.1 Available View build log
0.2.0 Available View build log
0.1.2 Available View build log
0.1.1 Available View build log
0.5.4 Available View build log
0.5.0 Available View build log
Linux (64-bit)
0.5.4 Available View build log
0.5.0 Available View build log
0.4.1 Available View build log
0.3.3 Available View build log
0.3.1 Available View build log
0.2.0 Available View build log
0.1.2 Available View build log
0.1.1 Available View build log
0.5.4 Available View build log
0.5.0 Available View build log
0.5.4 Available View build log
 
Author
License
BSD
Depended by
Lastest release
version 0.5.4 on May 23rd, 2012

appspace is a component injection framework that allows any mishmash of Python classes, objects, functions, or modules to be dynamically cobbled together into an application.

An appspaced application is built with an appconf (application configuration) similar to a Django urlconf:

>>> from appspace import patterns
>>> appconf = patterns(
...    'helpers',
...    ('square', 'math.sqrt'),
...    ('fabulous', 'math.fabs'),
...    include('subapp', 'foo.bar.apps')
... )

Once configured, application components can be accessed as object attributes, dictionary keys, or by calling the component manager directly:

>>> fab1 = plug.helpers.fabulous
>>> fab2 = plug['helpers']['fabulous']
>>> fab1(2)
2.0
>>> fab2(2)
2.0
>>> plug.helpers.fabulous(2)
2.0
>>> plug('fabulous', 2)
2.0

Subscribe to package updates

Last updated May 23rd, 2012

Download Stats

Last month:3

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.