Metadata-Version: 1.1
Name: remoteconfig
Version: 0.2.1
Summary: remoteconfig
============

A simple wrapper for localconfig_ that allows for reading config from a remote server

Quick Start Tutorial
====================

To install::

    pip install remoteconfig

To read from a remote config:

.. code-block:: python

    from remoteconfig import config

    config.read('http://url/to/remote-config.ini')

    # Or cache the URL content for 60 seconds to avoid excessive download if program is invoked often
    config.read('http://url/to/remote-config.ini', cache_duration=60)

For everything else that you can do with `config`, refer to `localconfig's documentation`_

.. _localconfig: https://pypi.python.org/pypi/localconfig
.. _`localconfig's documentation`: http://localconfig.readthedocs.org


More
====

| Documentation: http://remoteconfig.readthedocs.org
|
| PyPI Package: https://pypi.python.org/pypi/remoteconfig
| GitHub Source: https://github.com/maxzheng/remoteconfig
| Report Issues/Bugs: https://github.com/maxzheng/remoteconfig/issues
|
| Connect: https://www.linkedin.com/in/maxzheng
| Contact: maxzheng.os @t gmail.com

Home-page: UNKNOWN
Author: Max Zheng
Author-email: maxzheng.os @t gmail.com
License: MIT
Description: UNKNOWN
Keywords: configuration remote http config
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Configuration
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
