Metadata-Version: 1.0
Name: DistributedPydap
Version: 0.0.2
Summary: Module that implements aggregation of a cluster of Pydap servers.
Home-page: http://pydap.org/
Author: Roberto De Almeida
Author-email: rob@pydap.org
License: MIT
Description: 
        This module brings a WSGI middleware that aggregates datasets from several Pydap servers.
        
        To install it, add the filter to your ``server.ini``::
        
            [app:main]
            use = egg:pydap#server
            root = %(here)s/data
            templates = %(here)s/templates
            x-wsgiorg.throw_errors = 0
            filter-with = distributed
        
            [filter:distributed]
            use = egg:DistributedPydap
            root = %(here)s/data
            cache = %(here)s/cache.db
        
        And then add the new ``index.html`` template::
        
            $ paster create -t DistributedPydap server
        
        Where ``server`` is your installation of Pydap. Then edit the ``index.html`` template
        adding the address of other Pydap servers configured with this middleware.
                
Keywords: opendap dods dap data science climate oceanography meteorology
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Environment :: Console
Classifier: Environment :: Web Environment
Classifier: Framework :: Paste
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Science/Research
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Topic :: Internet
Classifier: Topic :: Internet :: WWW/HTTP :: WSGI
Classifier: Topic :: Scientific/Engineering
Classifier: Topic :: Software Development :: Libraries :: Python Modules
