Metadata-Version: 1.1
Name: mo-hg
Version: 1.5.18059
Summary: Fast cache for Mozilla's Mercurial repository
Home-page: https://github.com/klahnakoski/mo-hg
Author: Kyle Lahnakoski
Author-email: kyle@lahnakoski.com
License: MPL 2.0
Description: More Mercurial (Hg)!
        ====================
        
        Uses ElasticSearch as a fast cache for Mozilla's Mercurial repository.
        
        Usage
        -----
        
        Make an instance of the cache, modifying the parameters to fit your use
        case
        
        .. code:: python
        
                hg = HgMozillaOrg({
                    "use_cache": true,
                    "hg":{
                        "url": "https://hg.mozilla.org"
                    },
                    "branches": {
                        "host": "http://localhost",
                        "port": 9200,
                        "index": "branches",
                        "type": "branch",
                        "timeout": 300,
                        "schema": {
                            "$ref": "//../resources/branch.json"
                        },
                        "debug": false,
                        "limit_replicas": false
                    },
                    "repo": {
                        "host": "http://localhost",
                        "port": 9200,
                        "index": "repo",
                        "type": "revision",
                        "timeout": 300,
                        "schema": {
                            "$ref": "//../resources/revision.json"
                        },
                        "debug": false,
                        "limit_replicas": false
                    }
                })
        
        then call ``get_revision()`` when you need a revision:
        
        .. code:: python
        
                rev = hg.get_revision({
                    "changeset":{"id": "b3649fd5cd7a76506d2cf04f45e39cbc972fb553"},
                    "branch": {"name": "mozilla-inbound"}
                })
        
        ... and yes, the call really does require a "complicated" dict
        parameter: The intent was to convert partial revision objects into
        completed revision objects.
        
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Topic :: Software Development :: Libraries
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)
