{ "info": { "author": "MongoDB, Inc.", "author_email": "mongodb-user@googlegroups.com", "bugtrack_url": null, "classifiers": [ "Development Status :: 4 - Beta", "Intended Audience :: Developers", "License :: OSI Approved :: Apache Software License", "Operating System :: MacOS :: MacOS X", "Operating System :: Microsoft :: Windows", "Operating System :: POSIX", "Programming Language :: Python :: 2", "Programming Language :: Python :: 2.6", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.2", "Programming Language :: Python :: 3.3", "Programming Language :: Python :: 3.4", "Programming Language :: Python :: Implementation :: CPython" ], "description": "See the `wiki `__\nfor documentation.\n\nMongo Orchestration is an HTTP server that provides a REST API for\ncreating and managing MongoDB configurations on a single host.\n\n**THIS PROJECT IS FOR TESTING OF MONGODB DRIVERS.**\n\nFeatures\n--------\n\n- Start and stop mongod servers, replica sets, and sharded clusters on the host running mongo-orchestration.\n- Add and remove replica set members.\n- Add and remove shards and mongos routers.\n- Reset replica sets and clusters to restart all members that were\n stopped.\n- Freeze secondary members of replica sets.\n- Retrieve information about MongoDB resources.\n- Interaction all through REST interface.\n\nRequires\n--------\n\n- `Python 2.6, 2.7, or >= 3.2 `__\n- `bottle >= 0.12.7 `__\n- `PyMongo >= 3.0.2 `__\n- `CherryPy >= 3.5.0, < 7.1 `__\n- `argparse >= 1.2.1 `__ (Python 2.6 only)\n\nInstallation\n------------\n\nThe easiest way to install Mongo Orchestration is with `pip `__:\n\n::\n\n pip install mongo-orchestration\n\nYou can also install the development version of Mongo Orchestration\nmanually:\n\n::\n\n git clone https://github.com/10gen/mongo-orchestration.git\n cd mongo-orchestration\n pip install .\n\nCloning the `repository `__ this way will also give you access to the tests for Mongo Orchestration as well as the ``mo`` script. Note that you may\nhave to run the above commands with ``sudo``, depending on where you're\ninstalling Mongo Orchestration and what privileges you have.\nInstallation will place a ``mongo-orchestration`` script on your path.\n\nUsage\n-----\n\n::\n\n mongo-orchestration [-h] [-f CONFIG] [-e ENV] [--no-fork] [-b BIND IP=\"localhost\"] [-p PORT]\n [-s {cherrypy,wsgiref}] [--socket-timeout-ms MILLIS]\n [--pidfile PIDFILE] [--enable-majority-read-concern] {start,stop,restart}\n\n\nArguments:\n\n- **-h** - show help\n- **-f, --config** - path to config file\n- **-e, --env** - default release to use, as specified in the config\n file\n- **--no-fork** - run server in foreground\n- **-b, --bind** - host on which Mongo Orchestration and subordinate mongo processes should listen for requests. Defaults to \"localhost\".\n- **-s, --server** - HTTP backend to use: one of `cherrypy` or `wsgiref`\n- **-p** - port number (8889 by default)\n- **--socket-timeout-ms** - socket timeout when connecting to MongoDB servers\n- **--pidfile** - location where mongo-orchestration should place its pid file\n- **--enable-majority-read-concern** - enable \"majority\" read concern on server versions that support it.\n- **start/stop/restart**: start, stop, or restart the server,\n respectively\n\nIn addition, Mongo Orchestration can be influenced by the\n``MONGO_ORCHESTRATION_HOME`` environment variable, which informs the\nserver where to find the \"configurations\" directory for presets as well\nas where to put the log and pid files.\n\nExamples\n~~~~~~~~\n\n``mongo-orchestration start``\n\nStarts Mongo Orchestration as service on port 8889.\n\n``mongo-orchestration stop``\n\nStop the server.\n\n``mongo-orchestration -f mongo-orchestration.config -e 30-release -p 8888 --no-fork start``\n\nStarts Mongo Orchestration on port 8888 using ``30-release`` defined in\n``mongo-orchestration.config``. Stops with *Ctrl+C*.\n\nIf you have installed mongo-orchestration but you're still getting\n``command not found: mongo-orchestration`` this means that the script was\ninstalled to a directory that is not on your ``PATH``. As an alternative use:\n\n``python -m mongo_orchestration.server start``\n\nConfiguration File\n~~~~~~~~~~~~~~~~~~\n\nMongo Orchestration may be given a JSON configuration file with the\n``--config`` option specifying where to find MongoDB binaries. See\n`mongo-orchestration.config `__\nfor an example. When no configuration file is provided, Mongo\nOrchestration uses whatever binaries are on the user's PATH.\n\nPredefined Configurations\n-------------------------\n\nMongo Orchestration has a set of predefined\n`configurations `__\nthat can be used to start, restart, or stop MongoDB processes. You can\nuse a tool like ``curl`` to send these files directly to the Mongo\nOrchestration server, or use the ``mo`` script in the ``scripts``\ndirectory (in the `repository `__ only). Some examples:\n\n- Start a single node without SSL or auth:\n\n ::\n\n mo configurations/servers/clean.json start\n\n- Get the status of a single node without SSL or auth:\n\n ::\n\n mo configurations/servers/clean.json status\n\n- Stop a single node without SSL or auth:\n\n ::\n\n mo configurations/servers/clean.json stop\n\n- Start a replica set with ssl and auth:\n\n ::\n\n mo configurations/replica_sets/ssl_auth.json start\n\n- Use ``curl`` to create a basic sharded cluster with the id\n \"myCluster\":\n\n ::\n\n curl -XPUT http://localhost:8889/v1/sharded_clusters/myCluster \\\n -d@configurations/sharded_clusters/basic.json\n\nNote that in order to run the ``mo`` script, you need to be in the same\ndirectory as \"configurations\".\n\n**Helpful hint**: You can prettify JSON responses from the server by\npiping the response into ``python -m json.tool``, e.g.:\n\n::\n\n $ curl http://localhost:8889/v1/servers/myServer | python -m json.tool\n\n {\n \"id\": \"myServer\",\n \"mongodb_uri\": \"mongodb://localhost:1025\",\n \"orchestration\": \"servers\",\n \"procInfo\": {\n \"alive\": true,\n \"name\": \"mongod\",\n \"optfile\": \"/var/folders/v9/spc2j6cx3db71l/T/mongo-KHUACD\",\n \"params\": {\n \"dbpath\": \"/var/folders/v9/spc2j6cx3db71l/T/mongo-vAgYaQ\",\n \"ipv6\": true,\n \"journal\": true,\n \"logappend\": true,\n \"oplogSize\": 100,\n \"port\": 1025\n },\n \"pid\": 51320\n },\n // etc.\n }\n\nTests\n-----\n\nIn order to run the tests, you should first clone the `repository `__. Running the tests has the following additional dependency:\n\n- `unittest2 >= 0.6 `__ (Python 2.6 only)\n\nRun all tests\n~~~~~~~~~~~~~\n\n``python setup.py test``\n\nRun a test module\n~~~~~~~~~~~~~~~~~\n\n``python -m unittest tests.test_servers``\n\nRun a single test case\n~~~~~~~~~~~~~~~~~~~~~~\n\n``python -m unittest tests.test_servers.ServerSSLTestCase``\n\nRun a single test method\n~~~~~~~~~~~~~~~~~~~~~~~~\n\n``python -m unittest tests.test_servers.ServerSSLTestCase.test_ssl_auth``\n\nRun a single test example for debugging with verbose and immediate stdout output\n~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\n\n``python -m unittest -v tests.test_servers.ServerSSLTestCase``\n\n\n", "description_content_type": "", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/10gen/mongo-orchestration", "keywords": "mongo-orchestration,mongodb,mongo,rest,testing", "license": "http://www.apache.org/licenses/LICENSE-2.0.html", "maintainer": "", "maintainer_email": "", "name": "mongo-orchestration", "package_url": "https://pypi.org/project/mongo-orchestration/", "platform": "any", "project_url": "https://pypi.org/project/mongo-orchestration/", "project_urls": { "Homepage": "https://github.com/10gen/mongo-orchestration" }, "release_url": "https://pypi.org/project/mongo-orchestration/0.6.12/", "requires_dist": [ "CherryPy (>=3.5.0,<7.1)", "bottle (>=0.12.7)", "pymongo (>=3.0.2,<3.6.0)", "argparse; python_version==\"2.6\"", "simplejson; python_version==\"2.6\"" ], "requires_python": "", "summary": "Restful service for managing MongoDB servers", "version": "0.6.12" }, "last_serial": 4609211, "releases": { "0.1": [ { "comment_text": "", "digests": { "md5": "47d7443549ef80083c16269e3ef50494", "sha256": "ae9bd3d88228ec1d0b6f288b8c20a3e4ac757f552ee3e7fd35511b96095382de" }, "downloads": -1, "filename": "mongo_orchestration-0.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "47d7443549ef80083c16269e3ef50494", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 72030, "upload_time": "2014-11-07T19:48:41", "url": "https://files.pythonhosted.org/packages/4a/57/bc0488acbfcf82543c1f38deca661ee9d529a63ee9ac2ca485e4418fa8f5/mongo_orchestration-0.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "a8c840a4785ea2bcbd46a0cbb3f3c16e", "sha256": "0f2b0e9ad55cf9ab3f561e2d795f7ada86ee7ce712e9fecd8f8deeb591f5ced7" }, "downloads": -1, "filename": "mongo-orchestration-0.1.tar.gz", "has_sig": false, "md5_digest": "a8c840a4785ea2bcbd46a0cbb3f3c16e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 41549, "upload_time": "2014-11-07T19:48:17", "url": "https://files.pythonhosted.org/packages/3b/0c/e47450bb0bbdf33dbf4c01d4e7f8e75bf9a66775a22df617e2eeb4b3b162/mongo-orchestration-0.1.tar.gz" } ], "0.2": [ { "comment_text": "", "digests": { "md5": "9b85b217db3608fba89eacf1ece9133f", "sha256": "6cdf3cf192f34987d3613e2913030f20b598772617fc46b9b7cb1a74bbafe674" }, "downloads": -1, "filename": "mongo_orchestration-0.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "9b85b217db3608fba89eacf1ece9133f", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 58718, "upload_time": "2015-02-05T22:21:52", "url": "https://files.pythonhosted.org/packages/62/94/76813aac82bb68e510654028468e2c417d73aea80dcd919097f8eb19e7ed/mongo_orchestration-0.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "f4c3f798041c0fceaef329101e5f3a48", "sha256": "39cf7359a704afe23762bf2569fdcc08a4ce4a3880199e29bbdaa1c34add98fb" }, "downloads": -1, "filename": "mongo-orchestration-0.2.tar.gz", "has_sig": false, "md5_digest": "f4c3f798041c0fceaef329101e5f3a48", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 36230, "upload_time": "2015-02-05T22:22:00", "url": "https://files.pythonhosted.org/packages/0f/01/099f86cd35b4308e44ea9ab5aa394f331d50d9d992bd3d5be6b317bd16cf/mongo-orchestration-0.2.tar.gz" } ], "0.3.1": [ { "comment_text": "", "digests": { "md5": "57c175af37ac18c5a3d13c0d550fa027", "sha256": "13534c92c8126fd178e734a4a1e3a47702f0e87f0c550d7e4797859f0d5afa09" }, "downloads": -1, "filename": "mongo_orchestration-0.3.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "57c175af37ac18c5a3d13c0d550fa027", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 59237, "upload_time": "2015-04-06T18:00:19", "url": "https://files.pythonhosted.org/packages/ea/f3/36728774ec53eda4ffe941c58b1700ea0c69b96774793704de3fc272d342/mongo_orchestration-0.3.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "2953f0baa8e40856dd3113f977fa9a17", "sha256": "b4508d2e08ec550f68efb62d99709abe047a1a34a429d6833990e0d4c5090c9b" }, "downloads": -1, "filename": "mongo-orchestration-0.3.1.tar.gz", "has_sig": false, "md5_digest": "2953f0baa8e40856dd3113f977fa9a17", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 36378, "upload_time": "2015-04-06T18:00:17", "url": "https://files.pythonhosted.org/packages/f2/4c/2f635ddff2450dbc6d28bdda5a10db4cf942ba7544cbc471bd5f9478ea5f/mongo-orchestration-0.3.1.tar.gz" } ], "0.4": [ { "comment_text": "", "digests": { "md5": "f5d5fd1e08954082a7472c3de38b25dc", "sha256": "50a07e14fb302d9fc3f45aae11fa586e5661c436e782b188640b8ef966f1ef0b" }, "downloads": -1, "filename": "mongo_orchestration-0.4-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "f5d5fd1e08954082a7472c3de38b25dc", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 61414, "upload_time": "2015-06-24T23:20:46", "url": "https://files.pythonhosted.org/packages/da/78/f3aee6b6b72a8d1ba7b73b235d220390896d5df4ca09a56278bb58ea20d5/mongo_orchestration-0.4-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "553a0d796987a59929dcf348f67b0368", "sha256": "b093087cada6eea9f274d48c2f43a851f294d5cf18da455e239dca470d1bc437" }, "downloads": -1, "filename": "mongo-orchestration-0.4.tar.gz", "has_sig": false, "md5_digest": "553a0d796987a59929dcf348f67b0368", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 38044, "upload_time": "2015-06-24T23:20:43", "url": "https://files.pythonhosted.org/packages/d8/d0/44c52283db36393956d3e646161423db86c47e7d7736d763a131ee9f05ad/mongo-orchestration-0.4.tar.gz" } ], "0.4.1": [ { "comment_text": "", "digests": { "md5": "60850db9f7b28cdb3d45762369d1faab", "sha256": "8edd8d2a867525659c6fec59c3aa783678867f5ab186af7924901b1ba6c52413" }, "downloads": -1, "filename": "mongo_orchestration-0.4.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "60850db9f7b28cdb3d45762369d1faab", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 61629, "upload_time": "2015-09-25T16:19:27", "url": "https://files.pythonhosted.org/packages/f3/bc/565fa4fa02d014c9fa3cb3b2609d19551dd1f2bda3eb8e54e7bed746b007/mongo_orchestration-0.4.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "1c3ce603fa6995df16c41d08a4f29378", "sha256": "c451207633e7eba38cb67257b1f050c1a7ba1c7403c9c1ed494b1f49a63513b6" }, "downloads": -1, "filename": "mongo-orchestration-0.4.1.tar.gz", "has_sig": false, "md5_digest": "1c3ce603fa6995df16c41d08a4f29378", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 38231, "upload_time": "2015-09-25T16:19:33", "url": "https://files.pythonhosted.org/packages/92/5f/70b886b4d11a210cb7c6cfe5bf1983a16e2680c45d46a233a10c07db2a39/mongo-orchestration-0.4.1.tar.gz" } ], "0.4.2": [ { "comment_text": "", "digests": { "md5": "72aa9f439381daeb963f29d892ed6c59", "sha256": "0f0159c646827d2772200c202456802a1efee5a07edbdefd65e898d5b390cfb6" }, "downloads": -1, "filename": "mongo_orchestration-0.4.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "72aa9f439381daeb963f29d892ed6c59", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 62463, "upload_time": "2015-09-29T17:19:20", "url": "https://files.pythonhosted.org/packages/6a/c7/052fd0a47136585e15f44bbb068fbf34e417ac7eb78245fe449a58841d32/mongo_orchestration-0.4.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "d1fe1b74ee99adb396877da1d70b90e5", "sha256": "e4ff44a25803466c68866643b2ba86faf4e21febcaf60ade49d5a8de5a9e4369" }, "downloads": -1, "filename": "mongo-orchestration-0.4.2.tar.gz", "has_sig": false, "md5_digest": "d1fe1b74ee99adb396877da1d70b90e5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 38551, "upload_time": "2015-09-29T17:19:15", "url": "https://files.pythonhosted.org/packages/08/d4/693f2dae9bca6c54afeaec3958ad60b552aa5400c4796d6c33963276cfd2/mongo-orchestration-0.4.2.tar.gz" } ], "0.5": [ { "comment_text": "", "digests": { "md5": "e39f0a0f6f245b0de2a7790f77729ab3", "sha256": "59ff2b30fd92d9a379d208939eeddffcc81c9411a5f90e4a20f4166622e2e279" }, "downloads": -1, "filename": "mongo_orchestration-0.5-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "e39f0a0f6f245b0de2a7790f77729ab3", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 62293, "upload_time": "2015-11-18T20:04:55", "url": "https://files.pythonhosted.org/packages/e3/40/af7d22a96eb60afc80f8551aecc909a6659baa280aae0783cd2da03ed0dc/mongo_orchestration-0.5-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "02498967af581110f29badfeaa8d8ba1", "sha256": "3d99f1700ba11169d9b25b8196454f4ba91476c5aea23b4cf368bea6bd73a07d" }, "downloads": -1, "filename": "mongo-orchestration-0.5.tar.gz", "has_sig": false, "md5_digest": "02498967af581110f29badfeaa8d8ba1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 38850, "upload_time": "2015-11-18T20:04:35", "url": "https://files.pythonhosted.org/packages/1e/4c/d4ff5348adca68d7d5c1e4636c0b34a813a53ee9de8c8ba36f72a16a5741/mongo-orchestration-0.5.tar.gz" } ], "0.6": [ { "comment_text": "", "digests": { "md5": "ddbd8fc91e724d7acb532b97640780d6", "sha256": "361bd87b4e7f0dd253bf3dc354a46ccdce256c1d72e8cb30b1481f1791957e10" }, "downloads": -1, "filename": "mongo_orchestration-0.6-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "ddbd8fc91e724d7acb532b97640780d6", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 62787, "upload_time": "2016-03-08T00:28:34", "url": "https://files.pythonhosted.org/packages/8f/bf/f1a98b750383dbbd79c2d5ab580d243eea7b036f3b6df74c9cf06a91a4d8/mongo_orchestration-0.6-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "00bd625ede2c557c866476e68f16ac89", "sha256": "17d8ac1f27b3e70dde0aa1a84244226aa3f2d125d49a407635823d5ed93db898" }, "downloads": -1, "filename": "mongo-orchestration-0.6.tar.gz", "has_sig": false, "md5_digest": "00bd625ede2c557c866476e68f16ac89", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 39255, "upload_time": "2016-03-08T00:28:28", "url": "https://files.pythonhosted.org/packages/21/98/6e583267284b623b8e822ded2d157fa7084d22ff0987695b3cbba25c2fe9/mongo-orchestration-0.6.tar.gz" } ], "0.6.1": [ { "comment_text": "", "digests": { "md5": "49194872687558bfd9f738fcd55c9624", "sha256": "c6bdaac1a300d3953a86fb73d78fa0808e98f609773af06cbf2314bf49a42992" }, "downloads": -1, "filename": "mongo_orchestration-0.6.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "49194872687558bfd9f738fcd55c9624", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 62858, "upload_time": "2016-03-08T18:49:00", "url": "https://files.pythonhosted.org/packages/20/0a/c093efe1225daccae6e4cdda53b07ca1c4f99626e3c3560de03cc43e45f5/mongo_orchestration-0.6.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "8eb02d573ca0754359a78b668104c29e", "sha256": "a7606ee6a61d85fab17feceb7114f2bb973a6735f19f09f23e10a68acc27a4a1" }, "downloads": -1, "filename": "mongo-orchestration-0.6.1.tar.gz", "has_sig": false, "md5_digest": "8eb02d573ca0754359a78b668104c29e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 39287, "upload_time": "2016-03-08T18:48:52", "url": "https://files.pythonhosted.org/packages/6c/4e/a48c2b96449f209216b146f0d63e92ea0810f7ce8c127f4c04e2e45fe8f0/mongo-orchestration-0.6.1.tar.gz" } ], "0.6.10": [ { "comment_text": "", "digests": { "md5": "53f06670ca4749f3de4c66e656470cea", "sha256": "ae6d95d23860b536a26637eec5565710d51166e27a72f540f90f1493c8e073ae" }, "downloads": -1, "filename": "mongo_orchestration-0.6.10-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "53f06670ca4749f3de4c66e656470cea", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 63906, "upload_time": "2017-08-04T03:04:01", "url": "https://files.pythonhosted.org/packages/63/84/1555cb3e17b90662090ba53adc7b1f5bcb05e1cf3fe528d2129d1fd4600b/mongo_orchestration-0.6.10-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "be4dcf8294892eb49c43306eaf9b263b", "sha256": "138b3ac82533e9f90548b73582235ad48abcb3a5b6f39a6b1b4cae6f62798e3c" }, "downloads": -1, "filename": "mongo-orchestration-0.6.10.tar.gz", "has_sig": false, "md5_digest": "be4dcf8294892eb49c43306eaf9b263b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 40374, "upload_time": "2017-08-04T02:57:09", "url": "https://files.pythonhosted.org/packages/6e/86/d36b2332ce7218e178df0547f45067d3a3041a3c456f2e430fcdda241597/mongo-orchestration-0.6.10.tar.gz" } ], "0.6.11": [ { "comment_text": "", "digests": { "md5": "c9dbbb5a52cb5c0f279c00342b423208", "sha256": "ad100988b646f139a3f7d5694547e7a87514196594ba9065166b8e1f908be3dd" }, "downloads": -1, "filename": "mongo_orchestration-0.6.11-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "c9dbbb5a52cb5c0f279c00342b423208", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 64900, "upload_time": "2018-04-19T23:50:52", "url": "https://files.pythonhosted.org/packages/1b/12/a9f1b9e4e742d7285e9836f2e94d206395737556e60e5214ea15b14ce19c/mongo_orchestration-0.6.11-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "96257d8097cab324c9f21b1a1b9a37dd", "sha256": "7a09706d36e94ae767e90646fed98a52b426a4d14b0f4f724b185e292ac8f425" }, "downloads": -1, "filename": "mongo-orchestration-0.6.11.tar.gz", "has_sig": false, "md5_digest": "96257d8097cab324c9f21b1a1b9a37dd", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 43184, "upload_time": "2018-04-19T23:50:53", "url": "https://files.pythonhosted.org/packages/6d/b5/624a02d5f6cbfa8eb3c6554f5387c4739ad283bac7efb27ee99434a4d314/mongo-orchestration-0.6.11.tar.gz" } ], "0.6.12": [ { "comment_text": "", "digests": { "md5": "de684f8fa7bcae5833b3be8409ff8589", "sha256": "56cf995e6c413cdeabd839b703695dc16c6de453ee9b06b3797111ef638dad13" }, "downloads": -1, "filename": "mongo_orchestration-0.6.12-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "de684f8fa7bcae5833b3be8409ff8589", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 65339, "upload_time": "2018-12-17T19:19:20", "url": "https://files.pythonhosted.org/packages/a7/67/cba9d06dfd8d01404000707c88924c1d802d40c628b9a355184c5be1234d/mongo_orchestration-0.6.12-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "aba286b957b260d2cff34a3072e0bc3c", "sha256": "d73f7666424ee6e4b2143c1e2f72025b15236dacd07c80a374a44bb056d53a6b" }, "downloads": -1, "filename": "mongo-orchestration-0.6.12.tar.gz", "has_sig": false, "md5_digest": "aba286b957b260d2cff34a3072e0bc3c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 43607, "upload_time": "2018-12-17T19:19:22", "url": "https://files.pythonhosted.org/packages/72/34/9f010c4ac8569314569ea69a93a234d1dedf211666ab0b01b919d7843dba/mongo-orchestration-0.6.12.tar.gz" } ], "0.6.2": [ { "comment_text": "", "digests": { "md5": "bdaf3f84a793cffa2f5acceafb1da001", "sha256": "8c61ba7a8808b83b4701c27f2e60c8ad8948488398de1b063580888a784b7fb7" }, "downloads": -1, "filename": "mongo_orchestration-0.6.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "bdaf3f84a793cffa2f5acceafb1da001", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 62841, "upload_time": "2016-05-10T19:47:56", "url": "https://files.pythonhosted.org/packages/5e/90/54eef1efa29f489885673c1d2ea2c0ea8cc514f7e0a8dde63b7b6c721d0c/mongo_orchestration-0.6.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "8abef2c37c9c2e31dc831037aca65e2a", "sha256": "10ce25af88579e13ae3eaaf6900a8ffde89882b169708c800a795d84d227e1b0" }, "downloads": -1, "filename": "mongo-orchestration-0.6.2.tar.gz", "has_sig": false, "md5_digest": "8abef2c37c9c2e31dc831037aca65e2a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 39288, "upload_time": "2016-05-10T19:47:49", "url": "https://files.pythonhosted.org/packages/45/02/ada5af88642622f63fbecb4ced9382122135b776bd2dd84487da4f230bb2/mongo-orchestration-0.6.2.tar.gz" } ], "0.6.3": [ { "comment_text": "", "digests": { "md5": "50e649ea85c7a853e1ef060f7b87d7ea", "sha256": "67089407c433bcfd98db5a67dce499abd5c28531c097db811b2325872330cfd9" }, "downloads": -1, "filename": "mongo_orchestration-0.6.3-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "50e649ea85c7a853e1ef060f7b87d7ea", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 62839, "upload_time": "2016-05-17T20:33:17", "url": "https://files.pythonhosted.org/packages/51/e2/c9386bc8231b9ef364fffcde79b176a5c9732c8e26c0c947e75cabaf201a/mongo_orchestration-0.6.3-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "87bfa0ba5a93e0b54ad32315d24fe07c", "sha256": "87c6bafc7d8d6ce60438da601178a8bdbda71185be416e7f55209d81a1e3b6d1" }, "downloads": -1, "filename": "mongo-orchestration-0.6.3.tar.gz", "has_sig": false, "md5_digest": "87bfa0ba5a93e0b54ad32315d24fe07c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 39302, "upload_time": "2016-05-17T20:33:10", "url": "https://files.pythonhosted.org/packages/6a/b7/ac2783ef144865e15d6729cee2896d7d812d0bc6b2788a57072b42b54067/mongo-orchestration-0.6.3.tar.gz" } ], "0.6.5": [ { "comment_text": "", "digests": { "md5": "8bbefa39f6116a53b204ae516269ee16", "sha256": "8551fd2d333788f3fcc73b043da1a3a2a1b2284b2dd8e0e27c5d5babdeb3a033" }, "downloads": -1, "filename": "mongo_orchestration-0.6.5-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "8bbefa39f6116a53b204ae516269ee16", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 63062, "upload_time": "2016-08-03T20:19:43", "url": "https://files.pythonhosted.org/packages/ae/7f/43885f71a734dde6544b854928db9905b84075a66b2b4127fe835bb32557/mongo_orchestration-0.6.5-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "9b4d235e97c23ce19caca36e2de30ebc", "sha256": "831b3a18a0124f156b50c6e2bd7905214804d161217eb74bfd5e08bf161e8d51" }, "downloads": -1, "filename": "mongo-orchestration-0.6.5.tar.gz", "has_sig": false, "md5_digest": "9b4d235e97c23ce19caca36e2de30ebc", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 39563, "upload_time": "2016-08-03T20:19:02", "url": "https://files.pythonhosted.org/packages/07/d4/97f89395d013e2354af6667b5da008b7c5c1c060a69496879acbb45f48f0/mongo-orchestration-0.6.5.tar.gz" } ], "0.6.6": [ { "comment_text": "", "digests": { "md5": "9f63e5bd94e8a39b35548948065bb944", "sha256": "2f000740b32f754a9482a9868f78fb7acb8464492e59ef16b1fac799d48ef241" }, "downloads": -1, "filename": "mongo_orchestration-0.6.6-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "9f63e5bd94e8a39b35548948065bb944", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 63413, "upload_time": "2016-08-23T17:18:09", "url": "https://files.pythonhosted.org/packages/c5/b7/22e32195de3ff1401c74ce0aa72131b180b1cdf0aacd638f6c88dec13c3b/mongo_orchestration-0.6.6-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "682b2a6d156a16a9f0945ba5b047456c", "sha256": "daebe5448ebd2d17f86387671f6b9676dd84fb9bffe010f816848ed4d4b4f76b" }, "downloads": -1, "filename": "mongo-orchestration-0.6.6.tar.gz", "has_sig": false, "md5_digest": "682b2a6d156a16a9f0945ba5b047456c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 39894, "upload_time": "2016-08-23T17:18:06", "url": "https://files.pythonhosted.org/packages/5c/9e/fb802dbc6cb71c82dcc6679cd4001af290556268b0830078d54c6299b8b3/mongo-orchestration-0.6.6.tar.gz" } ], "0.6.7": [ { "comment_text": "", "digests": { "md5": "117318905f9b0d8de1d4ffbb86cfbdce", "sha256": "0d2d2acb04c72abcc588025b7416ceb64703491021be741b2d8060b8d368cae6" }, "downloads": -1, "filename": "mongo_orchestration-0.6.7-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "117318905f9b0d8de1d4ffbb86cfbdce", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 64194, "upload_time": "2016-10-17T17:27:49", "url": "https://files.pythonhosted.org/packages/ec/5c/3068a9bc90282dd37d04fa21df17ece8eea7d5f1e6f1db5e6dc14601d0e6/mongo_orchestration-0.6.7-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "2b664b487a15c8d220434547c708725a", "sha256": "f9086b42f2d0579177f8cc654915e1f77832b21b5569d603bc9fe62b09e61cdb" }, "downloads": -1, "filename": "mongo-orchestration-0.6.7.tar.gz", "has_sig": false, "md5_digest": "2b664b487a15c8d220434547c708725a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 40118, "upload_time": "2016-10-17T17:27:46", "url": "https://files.pythonhosted.org/packages/ba/a1/b42693985249b537c838ba1226d17179de3d21557f4537b3d9903110096e/mongo-orchestration-0.6.7.tar.gz" } ], "0.6.8": [ { "comment_text": "", "digests": { "md5": "004143b0fd0c9d524449cfc25637cd0a", "sha256": "fcf2d4df1f2f6d9e1b594921b7fdafb8cce438f0c702abce32bdca30d1bf5c79" }, "downloads": -1, "filename": "mongo_orchestration-0.6.8-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "004143b0fd0c9d524449cfc25637cd0a", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 63537, "upload_time": "2017-02-22T23:06:08", "url": "https://files.pythonhosted.org/packages/ad/6f/4551b6a3b7f93f0dc2857855135d7dbdf0e242e5118792ae977817347929/mongo_orchestration-0.6.8-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "7448bb2da30fe6d9d4aa083e23a5eaa0", "sha256": "ed27f9efa2ca701a3aa221f95c8cec4a6c3b623f82b594aa717d8be76cc15bdc" }, "downloads": -1, "filename": "mongo-orchestration-0.6.8.tar.gz", "has_sig": false, "md5_digest": "7448bb2da30fe6d9d4aa083e23a5eaa0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 40010, "upload_time": "2017-02-22T23:06:05", "url": "https://files.pythonhosted.org/packages/ef/fd/0d4151edb6543db86f27282c872225f2519115fabb2eacd0f8cacea9095c/mongo-orchestration-0.6.8.tar.gz" } ], "0.6.9": [ { "comment_text": "", "digests": { "md5": "2c5d965a34f16af5fee46e3aeda94b82", "sha256": "837aa3740a65ff2a6a8a620a78c4eeee62c8086b3c590c2a39265fdee1088555" }, "downloads": -1, "filename": "mongo_orchestration-0.6.9-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "2c5d965a34f16af5fee46e3aeda94b82", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 63850, "upload_time": "2017-03-03T19:37:37", "url": "https://files.pythonhosted.org/packages/1b/64/626113f922204671e76d7086a5f8630f434066c03f66371dc38103fc8426/mongo_orchestration-0.6.9-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "873861377ae2e558ef9c5bb0599b11d1", "sha256": "a48ba59e0d15800544683f3aa69d3b6936d9b1e297a91b6beb0b6f1dfec5a523" }, "downloads": -1, "filename": "mongo-orchestration-0.6.9.tar.gz", "has_sig": false, "md5_digest": "873861377ae2e558ef9c5bb0599b11d1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 40319, "upload_time": "2017-03-03T19:37:34", "url": "https://files.pythonhosted.org/packages/96/91/271dce3d51e2b276c352c5061699650b596cb07987f1e0a101513f9aa93e/mongo-orchestration-0.6.9.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "de684f8fa7bcae5833b3be8409ff8589", "sha256": "56cf995e6c413cdeabd839b703695dc16c6de453ee9b06b3797111ef638dad13" }, "downloads": -1, "filename": "mongo_orchestration-0.6.12-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "de684f8fa7bcae5833b3be8409ff8589", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 65339, "upload_time": "2018-12-17T19:19:20", "url": "https://files.pythonhosted.org/packages/a7/67/cba9d06dfd8d01404000707c88924c1d802d40c628b9a355184c5be1234d/mongo_orchestration-0.6.12-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "aba286b957b260d2cff34a3072e0bc3c", "sha256": "d73f7666424ee6e4b2143c1e2f72025b15236dacd07c80a374a44bb056d53a6b" }, "downloads": -1, "filename": "mongo-orchestration-0.6.12.tar.gz", "has_sig": false, "md5_digest": "aba286b957b260d2cff34a3072e0bc3c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 43607, "upload_time": "2018-12-17T19:19:22", "url": "https://files.pythonhosted.org/packages/72/34/9f010c4ac8569314569ea69a93a234d1dedf211666ab0b01b919d7843dba/mongo-orchestration-0.6.12.tar.gz" } ] }