{ "info": { "author": "Arne Bachmann", "author_email": "ArneBachmann@users.noreply.github.com", "bugtrack_url": null, "classifiers": [ "Development Status :: 5 - Production/Stable", "Intended Audience :: Developers", "License :: OSI Approved :: MIT License", "Operating System :: OS Independent", "Programming Language :: Python :: 2", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.3", "Programming Language :: Python :: 3.4", "Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.6", "Topic :: Software Development :: Libraries :: Python Modules" ], "description": "Configr 2018.2004.2239\n======================\n\n\n.. image:: https://travis-ci.org/ArneBachmann/configr.svg?branch=master\n :target: https://travis-ci.org/ArneBachmann/configr\n\n.. image:: https://ci.appveyor.com/api/projects/status/lyidsj76smdyxd8v?svg=true\n :target: https://ci.appveyor.com/project/ArneBachmann/configr\n\n.. image:: https://badge.fury.io/py/configr.svg\n :target: https://badge.fury.io/py/configr\n\n.. image:: https://coveralls.io/repos/github/ArneBachmann/configr/badge.svg?branch=master\n :target: https://coveralls.io/github/ArneBachmann/configr?branch=master\n\n.. image:: https://img.shields.io/pypi/pyversions/Django.svg\n :target: https://github.com/ArneBachmann/configr\n\n.. image:: https://img.shields.io/github/license/mashape/apistatus.svg\n :target: https://github.com/ArneBachmann/configr\n\n.. image:: https://bettercodehub.com/edge/badge/ArneBachmann/configr?branch=master\n :target: https://bettercodehub.com\n\nWorks with Python 2.7 and Python 3.3+\n\n\nSynopsis\n--------\n\nThis little utility library helps managing global or per-user configuration for your Python apps and therefore simplifies the common problem of configuration/settings/preset handling.\n\nAn installation through the ``pip`` command will also install the ``appdirs`` package as a dependency, but the code can be used without it as well.\n\n\nCode Example\n------------\n\nSimple use::\n\n >>> import configr\n >>> cfg = configr.Configr(\"myapp\")\n >>> cfg.a = \"Value of A\"\n >>> print cfg[\"a\"]\n Value of A\n\n\nInstallation\n------------\n\nUsing pip::\n\n pip install configr\n\nUsing setup.py (usually elevated rights are needed, e.g. via ``sudo`` (Linux) or ``runas`` (Windows))::\n\n python setup.py install\n\nor\n\n python setup.py install -e .\n\nfor a development installation (pointing to the folder you checked the source code out in).\n\n\nAPI reference\n-------------\n\nThe ``configr.Configr`` object provides the following functions::\n\n __init__(_, name:Optional[str] = None, data:Dict[str,Any] = {}, defaults:Dict[str,Any] = {}) # \"data\" initializes the configuration, while \"defaults\" contains fallback values\n\n loadSettings(_, data:Dict[str,Any] = {}, location:Optional[str] = None, ignores:List[str] = [], clientCodeLocation:Optional[str] = None) # load configuration. \"data\" is used for keys not in the file. \"ignores\" are keys to not load. \"location\" is a file system path, clientCodeLocation should be a call to os.path.abspath(__file__)\n\n saveSettings(_, keys:Optional[Dict[str,Any]] = None, location:Optional[str] = None, ignores:List[str] = [], clientCodeLocation:Optional[str] = None) # save configuration. \"keys\" limits the entries written. \"location\" is a file system path, clientCodeLocation should be a call to os.path.abspath(__file__)\n\n keys(_) # returns list of keys (Python 2) or an dict_keys object (Python 3)\n values(_) # returns list of values (Python 2) or a dict_values object (Python 3)\n items(_) # returns a list of (key, value) tuples (Python 2) or a dict_items object (Python 3)\n\nConfigr objects support dictionary and attribute style access to get or set entries, as well as the usual means to remove entries via ``del`` and ``remove()``.\nBoth ``loadSettings`` and ``saveSettings`` support an additional ``clientCodeLocation`` parameter to allow passing a unique file system path from the caller. This allows to separate settings for multiple installation locations of the same app on a single file system, cf. API comment above.\n\nBoth functions also return a named 2-tuple ``ReturnValue`` containing last loaded/saved file location in the first (``.path``), or an exception in the second (``.error``) position.\n\nYou may also nest Configr objects to have different levels of defaults (e.g. per-system, per-user, per-software, per-instance, ...), by passing Configr objects instead of the ``defaults`` dictionary.\n\n\nBuilding, packaging and distribution\n------------------------------------\n\n- Run test suite under ``configr`` via ``python configr/test.py`` with Python 2 and Python 3. If there are no problems, continue:\n- Run ``python setup.py clean build sdist`` to compile, raise the version number, and create the package archive.\n- Run ``git commit`` and ``git push`` and let Travis CI run all tests. If the changes have no problems, continue:\n- Run ``twine upload dist/*.tar.gz`` to upload the module to PyPI.\n\n\nTodo\n----\n\nThis library is supposed to be lightweight and gets the job done so far.\nIf you have ideas or discover bugs, please put them into the project's issue tracker on Github.\n\n\nTests\n-----\n\nThe tool provides unit tests through the ``doctest`` module and integration tests through the ``unittest`` module.\n\n\nWho uses it?\n------------\n\nThe library is currently used by the `SOS project\n`_, developed by the author.\nIf you use ``configr`` for your Python apps, please let me know.\n\n\nContributors\n------------\n\nThis library is currently developed and maintained by Arne Bachmann.\n\n\nLicense\n-------\n\nLicensed under the terms of MIT license.\n\n MIT License\n\n Copyright (c) 2016-2018 Arne Bachmann\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE.", "description_content_type": "", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "http://github.com/ArneBachmann/configr", "keywords": "application configuration management settings presets", "license": "MIT", "maintainer": "Arne Bachmann", "maintainer_email": "ArneBachmann@users.noreply.github.com", "name": "configr", "package_url": "https://pypi.org/project/configr/", "platform": "", "project_url": "https://pypi.org/project/configr/", "project_urls": { "Homepage": "http://github.com/ArneBachmann/configr" }, "release_url": "https://pypi.org/project/configr/2018.2004.2239/", "requires_dist": null, "requires_python": "", "summary": "configr: A practical configuration library for your Python apps.", "version": "2018.2004.2239" }, "last_serial": 4339774, "releases": { "1.0.2": [ { "comment_text": "", "digests": { "md5": "6b34ecc6c2b60d83beff06e105d126b4", "sha256": "5e62a74ba0fa33bfeb606c2deb81e6b486ee20a297ea7127b18fa93f25715ca7" }, "downloads": -1, "filename": "configr-1.0.2.tar.gz", "has_sig": false, "md5_digest": "6b34ecc6c2b60d83beff06e105d126b4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 4334, "upload_time": "2016-07-25T22:05:54", "url": "https://files.pythonhosted.org/packages/da/68/6f644a104eb8d3bbc62dd45bb04ea6dc0d178d615aed6a07f04404ffa345/configr-1.0.2.tar.gz" } ], "2016.1201.2142": [ { "comment_text": "built for Linux-3.16.7-48-desktop-i686-with-glibc2.0", "digests": { "md5": "1aa08ef05393f998fd4fd5834305911c", "sha256": "0332e21db473cf905dbc47882c16b193ff63538cfb01f63ea00a8fbdf655afdc" }, "downloads": -1, "filename": "configr-2016.1201.2142.linux-i686.tar.gz", "has_sig": false, "md5_digest": "1aa08ef05393f998fd4fd5834305911c", "packagetype": "bdist_dumb", "python_version": "any", "requires_python": null, "size": 5839, "upload_time": "2016-12-01T21:36:54", "url": "https://files.pythonhosted.org/packages/87/04/5090392992c43617e4d2690bc24c846bc77bdfec07685c98fbef06fe5944/configr-2016.1201.2142.linux-i686.tar.gz" } ], "2016.1201.2318": [ { "comment_text": "built for Linux-3.16.7-48-desktop-i686-with-glibc2.0", "digests": { "md5": "99a9e913aad66dcd7f8dd8a059a02852", "sha256": "521af8aa3636bd9dac98c2a81eef8b85987d705c650b8fc18e012d41f2e524f5" }, "downloads": -1, "filename": "configr-2016.1201.2318.linux-i686.tar.gz", "has_sig": false, "md5_digest": "99a9e913aad66dcd7f8dd8a059a02852", "packagetype": "bdist_dumb", "python_version": "any", "requires_python": null, "size": 5852, "upload_time": "2016-12-01T22:18:39", "url": "https://files.pythonhosted.org/packages/c1/77/27e8ec99c4791b9625b18e335ff929d8571a6b181ed6e787de9e679051bd/configr-2016.1201.2318.linux-i686.tar.gz" }, { "comment_text": "", "digests": { "md5": "6cf25cb4f00ee6885ea38988247ffd22", "sha256": "226a81abe38633f948a3349af811beec7a59eac57d5e864247801c87d7697dd7" }, "downloads": -1, "filename": "configr-2016.1201.2318.tar.gz", "has_sig": false, "md5_digest": "6cf25cb4f00ee6885ea38988247ffd22", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 4770, "upload_time": "2016-12-01T22:18:37", "url": "https://files.pythonhosted.org/packages/2a/7f/ebc7435c3e0a83e3de6b7eaef4ed1d33d7b740b697a07f910e6baaf5ed84/configr-2016.1201.2318.tar.gz" } ], "2016.1230.2312": [ { "comment_text": "", "digests": { "md5": "d5a33746f2832548e1ea00f9a55b3052", "sha256": "297490b9abc94145c31b4f61189469a9f44b0392ca027807af91be95769be4af" }, "downloads": -1, "filename": "configr-2016.1230.2312.tar.gz", "has_sig": false, "md5_digest": "d5a33746f2832548e1ea00f9a55b3052", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 4953, "upload_time": "2016-12-30T22:12:42", "url": "https://files.pythonhosted.org/packages/cd/c6/69abf9604254a3ad5b3e304a75d18054e11fe88809bf9c115dfa4b8a9f1c/configr-2016.1230.2312.tar.gz" } ], "2017.1515.2733": [ { "comment_text": "", "digests": { "md5": "a977a84dd7515d693df2d76581bee484", "sha256": "7335d47c413f81b6884554910217cb07f7649fe53b8249fed8d8d2d60e8e077d" }, "downloads": -1, "filename": "configr-2017.1515.2733.zip", "has_sig": false, "md5_digest": "a977a84dd7515d693df2d76581bee484", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 11296, "upload_time": "2017-05-15T15:34:03", "url": "https://files.pythonhosted.org/packages/49/55/d9d43fb44513384c39541d8774cdab5a6a65bdd9ad9868409a9ad14b38e9/configr-2017.1515.2733.zip" } ], "2017.1623.2537": [ { "comment_text": "", "digests": { "md5": "1435f051390a442045b0dac9f84f2e7d", "sha256": "e75588f36b8c2c1df7c25571700a0735ad50b349bc9162250ecdf49f13dbb3fa" }, "downloads": -1, "filename": "configr-2017.1623.2537.tar.gz", "has_sig": false, "md5_digest": "1435f051390a442045b0dac9f84f2e7d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 6285, "upload_time": "2017-06-23T13:37:20", "url": "https://files.pythonhosted.org/packages/73/7d/5d3266fed19dc8a58ec8d5d17af086a337278b74bb6c87f4776f36af399a/configr-2017.1623.2537.tar.gz" } ], "2017.1623.2542": [ { "comment_text": "", "digests": { "md5": "99bf82c22df9ae26d6b3094abb9c9fda", "sha256": "73fbacb7e945828ff4fa1c7070bfeecb0e388684344b99b10b285ba16eadce94" }, "downloads": -1, "filename": "configr-2017.1623.2542.tar.gz", "has_sig": false, "md5_digest": "99bf82c22df9ae26d6b3094abb9c9fda", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 6351, "upload_time": "2017-06-23T13:42:28", "url": "https://files.pythonhosted.org/packages/d4/c6/b9b271004242f9ebb414492561a3ff1f207af929fe9c6c21ada46c3756d4/configr-2017.1623.2542.tar.gz" } ], "2017.1623.2543": [ { "comment_text": "", "digests": { "md5": "a07f904895a7fd739a7a2e2ee5c78e3b", "sha256": "84b844bcc40c5bd4ac7a2d49b8d7e750f7d0c145243a9ac9837d56af0c0460d6" }, "downloads": -1, "filename": "configr-2017.1623.2543.tar.gz", "has_sig": false, "md5_digest": "a07f904895a7fd739a7a2e2ee5c78e3b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 6347, "upload_time": "2017-06-23T13:43:40", "url": "https://files.pythonhosted.org/packages/9d/14/8dcc525dcb5627f09447c31e9d09ad01a4349e70dc2c2401c89f10e7ca64/configr-2017.1623.2543.tar.gz" } ], "2017.1623.3024": [ { "comment_text": "", "digests": { "md5": "4a872958592556699534eb843bd9b5ee", "sha256": "9f7564705dd0a0004adca65b911e4266662996613d0bab73f8fa9bb6b85b4871" }, "downloads": -1, "filename": "configr-2017.1623.3024.tar.gz", "has_sig": false, "md5_digest": "4a872958592556699534eb843bd9b5ee", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 6939, "upload_time": "2017-06-23T18:25:45", "url": "https://files.pythonhosted.org/packages/2d/6d/62079c2b6094c2d4fdea025c1980bb834fb23b5bb1a7a6589bea2140c4e3/configr-2017.1623.3024.tar.gz" } ], "2017.1623.3102": [ { "comment_text": "", "digests": { "md5": "bc523f1d1380d1c34c1a241690177432", "sha256": "de07ee8c34c6b0c86686c423913aabe1d40eb054e775d4ddeaa9be5d382878f6" }, "downloads": -1, "filename": "configr-2017.1623.3102.tar.gz", "has_sig": false, "md5_digest": "bc523f1d1380d1c34c1a241690177432", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7017, "upload_time": "2017-06-23T19:02:59", "url": "https://files.pythonhosted.org/packages/dc/a8/4e55c15e39939c1ae5ec0a411734ba412381e4195c648cbac5574dfd8fe7/configr-2017.1623.3102.tar.gz" } ], "2017.1625.3048": [ { "comment_text": "", "digests": { "md5": "17d7acd7e6f9e90ac8cf9f8d05c863ed", "sha256": "74defeb59747e9a6bcf52b92d4fb8932c7992508dde5861aab2225cac176fe65" }, "downloads": -1, "filename": "configr-2017.1625.3048.tar.gz", "has_sig": false, "md5_digest": "17d7acd7e6f9e90ac8cf9f8d05c863ed", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7351, "upload_time": "2017-06-25T19:12:01", "url": "https://files.pythonhosted.org/packages/5c/ff/c209aabbf94cf13a2d0b0a1f9c2aac0e02388ca45825fe7e33e473f165a1/configr-2017.1625.3048.tar.gz" } ], "2017.1701.3046": [ { "comment_text": "", "digests": { "md5": "04d6f0656b1e0454b6cdf0f32b1c1b2b", "sha256": "f2474d21b57732f952c571785fff10bc4a4c486e885e00dd06e5014da212b34d" }, "downloads": -1, "filename": "configr-2017.1701.3046.tar.gz", "has_sig": false, "md5_digest": "04d6f0656b1e0454b6cdf0f32b1c1b2b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7470, "upload_time": "2017-07-01T18:46:34", "url": "https://files.pythonhosted.org/packages/63/05/f7ea47024cb69bdc5e9250059ba0cfa72f68896b60008e798e0248d49104/configr-2017.1701.3046.tar.gz" } ], "2017.1701.3146": [ { "comment_text": "", "digests": { "md5": "36b980e62a8248b04a27aa2b2ca923ca", "sha256": "1c6632b60beedcb6c0dc1ca12fda2dfe38ca15631621193f3cb0e856e9b578b7" }, "downloads": -1, "filename": "configr-2017.1701.3146.tar.gz", "has_sig": false, "md5_digest": "36b980e62a8248b04a27aa2b2ca923ca", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7712, "upload_time": "2017-07-01T19:46:44", "url": "https://files.pythonhosted.org/packages/47/11/6a76100b7c18b00d980152648424ec262b136b1906b6be559e1c720320a6/configr-2017.1701.3146.tar.gz" } ], "2017.1701.3208": [ { "comment_text": "", "digests": { "md5": "f51e2f4dc2e622b82ebdba009d1b45c3", "sha256": "ae98b769e27c5274f3e22e00b81fcc0802caecd336fbcd8500d5f1ebdbe409bb" }, "downloads": -1, "filename": "configr-2017.1701.3208.tar.gz", "has_sig": false, "md5_digest": "f51e2f4dc2e622b82ebdba009d1b45c3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7732, "upload_time": "2017-07-01T20:08:48", "url": "https://files.pythonhosted.org/packages/49/a7/6c9be34cb786e955f67df6aca8f25adc940bb1233851b5029c91083b8c0d/configr-2017.1701.3208.tar.gz" } ], "2017.1701.3212": [ { "comment_text": "", "digests": { "md5": "7bdef5f92620db84219e5cde0ab7d002", "sha256": "99865087104f73db7b8e8bb4e543782f4c91ed00100826e23868f88dc5e8e186" }, "downloads": -1, "filename": "configr-2017.1701.3212.tar.gz", "has_sig": false, "md5_digest": "7bdef5f92620db84219e5cde0ab7d002", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7793, "upload_time": "2017-07-01T20:12:28", "url": "https://files.pythonhosted.org/packages/b4/d3/590f0ad9c5ef9492f56c8514f36e5e9d05797e1d08a0e3678cf8a747651d/configr-2017.1701.3212.tar.gz" } ], "2017.1701.3213": [ { "comment_text": "", "digests": { "md5": "a1a345bc6b78b16d76419ab5f65614e4", "sha256": "2af778f40c0c81af13d718bbca565059722c582fdffdfe8613e3629d81048961" }, "downloads": -1, "filename": "configr-2017.1701.3213.tar.gz", "has_sig": false, "md5_digest": "a1a345bc6b78b16d76419ab5f65614e4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7755, "upload_time": "2017-07-01T20:14:06", "url": "https://files.pythonhosted.org/packages/e5/eb/5247b1e64c7b2800cc0c02bf689b4a3389b54ea12185d5bce7a52db532d3/configr-2017.1701.3213.tar.gz" } ], "2017.1706.2413": [ { "comment_text": "", "digests": { "md5": "408f2bdfa7de5f923546d9d501b10073", "sha256": "46ece07b8f4db9ab7b706376bb7e5a39519594a87ab0b4e6124f1a121d53bae9" }, "downloads": -1, "filename": "configr-2017.1706.2413.zip", "has_sig": false, "md5_digest": "408f2bdfa7de5f923546d9d501b10073", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15052, "upload_time": "2017-07-06T12:14:21", "url": "https://files.pythonhosted.org/packages/08/e4/aa2fe9637a3332eaa866790a44a5e471936fa56ce26d95a21b929d31a55e/configr-2017.1706.2413.zip" } ], "2017.1707.2247": [ { "comment_text": "", "digests": { "md5": "d683018963acb2c2d1c6266ef42db9db", "sha256": "38152f24e5362ec7d2fa2a9f37115446677e6141d002f07db1ce1d21ed398e5e" }, "downloads": -1, "filename": "configr-2017.1707.2247.zip", "has_sig": false, "md5_digest": "d683018963acb2c2d1c6266ef42db9db", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15279, "upload_time": "2017-07-07T10:48:13", "url": "https://files.pythonhosted.org/packages/1a/9e/daea9f4d2c1ee558d6d5b6f827ac630e6b42f00f5ea3bb720c99ad2907d9/configr-2017.1707.2247.zip" } ], "2017.1824.3043": [ { "comment_text": "", "digests": { "md5": "1688699096164b2cf805a73d94e131c2", "sha256": "ab8f040aa7ef015f151f55912cd11dda4f1f5d918d3cd1aeaa607e10caa98614" }, "downloads": -1, "filename": "configr-2017.1824.3043.tar.gz", "has_sig": false, "md5_digest": "1688699096164b2cf805a73d94e131c2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8562, "upload_time": "2017-08-24T18:45:24", "url": "https://files.pythonhosted.org/packages/db/93/fefbdb8ade62af984cf38858a0a3bee081cf36a6f5bb201aa578efef4698/configr-2017.1824.3043.tar.gz" } ], "2017.1824.3119": [ { "comment_text": "", "digests": { "md5": "a12a7294d35aec62fdde069c21b62e35", "sha256": "0e465851da235fac8d418605befdd3d5936e38f5ac1f2429f36568c85513c527" }, "downloads": -1, "filename": "configr-2017.1824.3119.tar.gz", "has_sig": false, "md5_digest": "a12a7294d35aec62fdde069c21b62e35", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8625, "upload_time": "2017-08-24T19:22:12", "url": "https://files.pythonhosted.org/packages/f9/af/fb750c839c985551cd562a7295807fdaf00a5cac62f943784bc023d5d303/configr-2017.1824.3119.tar.gz" } ], "2017.206.1733": [ { "comment_text": "", "digests": { "md5": "6645ff82259b7ed5282e2a70ebf459c7", "sha256": "3112726287c65d783e4c565a4c335e8e595a7dd146a10c2e2232606545718183" }, "downloads": -1, "filename": "configr-2017.206.1733.zip", "has_sig": false, "md5_digest": "6645ff82259b7ed5282e2a70ebf459c7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 10450, "upload_time": "2017-02-06T16:33:30", "url": "https://files.pythonhosted.org/packages/70/cd/ee7fd199f692384d5676444232f84d1e05c0ba7b73ff5be5354433f385aa/configr-2017.206.1733.zip" } ], "2017.2110.2910": [ { "comment_text": "", "digests": { "md5": "81cb273f87fd0084607c22ee6913b4a3", "sha256": "672ce846329594a0013bc0f8fb23a52f18b2fea2adc775c89ea87d4efb0615fb" }, "downloads": -1, "filename": "configr-2017.2110.2910.tar.gz", "has_sig": false, "md5_digest": "81cb273f87fd0084607c22ee6913b4a3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8868, "upload_time": "2017-11-10T18:10:33", "url": "https://files.pythonhosted.org/packages/79/a3/9dff7cab1570b3cd32133b5139f4490e383a196dc443edcc833cca748b00/configr-2017.2110.2910.tar.gz" } ], "2017.2110.3125": [ { "comment_text": "", "digests": { "md5": "3ae93baaab7d931171e37b74c78ad63a", "sha256": "c1e57f1170f6b02e5b02ba51884f3d5c7532335f8bc6e723dda754ba20a6b9f7" }, "downloads": -1, "filename": "configr-2017.2110.3125.tar.gz", "has_sig": false, "md5_digest": "3ae93baaab7d931171e37b74c78ad63a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8865, "upload_time": "2017-11-10T20:26:23", "url": "https://files.pythonhosted.org/packages/fd/4e/3018568a87dc64a10c91c8faca1a9901224d6de9f7d736e41f5fc37f96ad/configr-2017.2110.3125.tar.gz" } ], "2017.2117.2635": [ { "comment_text": "", "digests": { "md5": "88775a9f64d7fee385481dccac94be02", "sha256": "8ca0bbd0b92e71d33ff03f161b871ee61a6be5003406a1600b25b31106af7419" }, "downloads": -1, "filename": "configr-2017.2117.2635.tar.gz", "has_sig": false, "md5_digest": "88775a9f64d7fee385481dccac94be02", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8976, "upload_time": "2017-11-17T15:35:39", "url": "https://files.pythonhosted.org/packages/49/a4/e92a5036dda79c6175a56c84f9197a3db29031e22d4ab229de97a8e715b5/configr-2017.2117.2635.tar.gz" } ], "2017.2127.2911": [ { "comment_text": "", "digests": { "md5": "24f9aedf674266b8c62ddf87bd7a4c72", "sha256": "874a7134c7c97584f31f7e822e14f0bb2a83c4d586cf2357aedf97180bc825ea" }, "downloads": -1, "filename": "configr-2017.2127.2911.tar.gz", "has_sig": false, "md5_digest": "24f9aedf674266b8c62ddf87bd7a4c72", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9034, "upload_time": "2017-11-27T18:11:59", "url": "https://files.pythonhosted.org/packages/0f/8b/ce8861799ed8957744e3870418fc322025890d5b80891eb36cf7cbf6f75a/configr-2017.2127.2911.tar.gz" } ], "2017.2127.3107": [ { "comment_text": "", "digests": { "md5": "b1ab51008a73bc8913c944b474456184", "sha256": "84077b9fec20b13712c9f8c8bd270017c62c82e3d7d41d2e5df2e0ab486c4538" }, "downloads": -1, "filename": "configr-2017.2127.3107.tar.gz", "has_sig": false, "md5_digest": "b1ab51008a73bc8913c944b474456184", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9043, "upload_time": "2017-11-27T20:07:14", "url": "https://files.pythonhosted.org/packages/32/59/bdc73f3c77905dc76e705941479cd776d320c4a2a55182a40d3d623b7a7c/configr-2017.2127.3107.tar.gz" } ], "2017.2127.3114": [ { "comment_text": "", "digests": { "md5": "df7079f0b7c17daa7b8f19dec6a13453", "sha256": "37995bfd5c82bdee94a27650f461489fc867253e94673b0f4719520ff789b070" }, "downloads": -1, "filename": "configr-2017.2127.3114.tar.gz", "has_sig": false, "md5_digest": "df7079f0b7c17daa7b8f19dec6a13453", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9091, "upload_time": "2017-11-27T20:14:38", "url": "https://files.pythonhosted.org/packages/b6/83/0447f4c936c1304cc76a3427a16289758a5c0eb1e01777eac22908b0281d/configr-2017.2127.3114.tar.gz" } ], "2017.2129.2820": [ { "comment_text": "", "digests": { "md5": "324bff401b48456a32ab2253847c6e73", "sha256": "1c88f5983c27989f615cd4d51060b3f1e077e9fb78d0c4e7c325d623b5ff9fe1" }, "downloads": -1, "filename": "configr-2017.2129.2820.tar.gz", "has_sig": false, "md5_digest": "324bff401b48456a32ab2253847c6e73", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9102, "upload_time": "2017-11-29T17:23:24", "url": "https://files.pythonhosted.org/packages/4b/38/8d2fc9048599dfa23990abaa97bcfa92d6db11c3ae8eb73b5c8396868378/configr-2017.2129.2820.tar.gz" } ], "2017.2214.3034": [ { "comment_text": "", "digests": { "md5": "6011683863e337483de79fd1692109db", "sha256": "8ec6e8333756873f5ce559743cde83125d9855b11b4598373a6f3de1fe5fb275" }, "downloads": -1, "filename": "configr-2017.2214.3034.tar.gz", "has_sig": false, "md5_digest": "6011683863e337483de79fd1692109db", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9431, "upload_time": "2017-12-14T19:34:16", "url": "https://files.pythonhosted.org/packages/b0/c0/646d1631ec60196a3863f34dc6d9aef76fc6b86fb9a25b3c0f67a9b08ca0/configr-2017.2214.3034.tar.gz" } ], "2018.1202.3244": [ { "comment_text": "", "digests": { "md5": "5dbd9bfcc0fd2132383c6db7ddc83769", "sha256": "d0e1e02695de82a4f8aa021a9ff5524396c9bf167677ad218fd278c02e55a24c" }, "downloads": -1, "filename": "configr-2018.1202.3244.tar.gz", "has_sig": false, "md5_digest": "5dbd9bfcc0fd2132383c6db7ddc83769", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9555, "upload_time": "2018-02-02T21:45:17", "url": "https://files.pythonhosted.org/packages/84/2f/96e673b674e1ccaf7ce77626dcbd1679cb00991c9691b2cece39cf05d5f0/configr-2018.1202.3244.tar.gz" } ], "2018.1203.1008": [ { "comment_text": "", "digests": { "md5": "da9f1c94f02b67cb7c5ecaf189019aec", "sha256": "1fd7362a8a0a67e34d317c81ea40f4990aee39ee77df253c869dc029f7cdf20c" }, "downloads": -1, "filename": "configr-2018.1203.1008.tar.gz", "has_sig": false, "md5_digest": "da9f1c94f02b67cb7c5ecaf189019aec", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9556, "upload_time": "2018-02-02T23:08:29", "url": "https://files.pythonhosted.org/packages/98/c4/6af666e8e5082baea3e74826258e08fdf33f886a98560fcab83efd610dbf/configr-2018.1203.1008.tar.gz" } ], "2018.1422.1940": [ { "comment_text": "", "digests": { "md5": "357b53c8faf5fcd202cecc433c55975a", "sha256": "14d8338fd9f73d31ffb904cba7ad4b26625ee4709bf516b0655f03fdba1345f1" }, "downloads": -1, "filename": "configr-2018.1422.1940.tar.gz", "has_sig": false, "md5_digest": "357b53c8faf5fcd202cecc433c55975a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9761, "upload_time": "2018-04-22T07:40:44", "url": "https://files.pythonhosted.org/packages/e5/7a/4660660346c8e4628ff47864c7e26a7bdd04e286916f37e25f27ca51a181/configr-2018.1422.1940.tar.gz" } ], "2018.1716.1827": [ { "comment_text": "", "digests": { "md5": "f4c98098ed53f0ad7d5e44088d66dd7b", "sha256": "73a47d6cbbaf9fcc0a9b58440fa5360c1f1ff5d457b0f3f843283a13b68e4ca7" }, "downloads": -1, "filename": "configr-2018.1716.1827.tar.gz", "has_sig": false, "md5_digest": "f4c98098ed53f0ad7d5e44088d66dd7b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9923, "upload_time": "2018-07-16T06:27:51", "url": "https://files.pythonhosted.org/packages/83/e5/8f5e79c7af840dfc47df5f5595af28b4f02d4778261e085dac5102b84c2c/configr-2018.1716.1827.tar.gz" } ], "2018.2004.2239": [ { "comment_text": "", "digests": { "md5": "df7790cdadc61d8f743b6d9bf3dc813b", "sha256": "a95bf808e91729b74fa2c9e45142692174363ed33220f956b0ddc8f75d453387" }, "downloads": -1, "filename": "configr-2018.2004.2239.tar.gz", "has_sig": false, "md5_digest": "df7790cdadc61d8f743b6d9bf3dc813b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 10044, "upload_time": "2018-10-04T10:39:46", "url": "https://files.pythonhosted.org/packages/bf/5d/8e333ac44a99443dddebef04cbde69f477583fce931b826bfdadddc9fb45/configr-2018.2004.2239.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "df7790cdadc61d8f743b6d9bf3dc813b", "sha256": "a95bf808e91729b74fa2c9e45142692174363ed33220f956b0ddc8f75d453387" }, "downloads": -1, "filename": "configr-2018.2004.2239.tar.gz", "has_sig": false, "md5_digest": "df7790cdadc61d8f743b6d9bf3dc813b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 10044, "upload_time": "2018-10-04T10:39:46", "url": "https://files.pythonhosted.org/packages/bf/5d/8e333ac44a99443dddebef04cbde69f477583fce931b826bfdadddc9fb45/configr-2018.2004.2239.tar.gz" } ] }