{ "info": { "author": "Florian Wilhelm", "author_email": "florian.wilhelm@gmail.com", "bugtrack_url": null, "classifiers": [ "Development Status :: 5 - Production/Stable", "Intended Audience :: Developers", "License :: OSI Approved :: MIT License", "Operating System :: MacOS", "Operating System :: Microsoft :: Windows", "Operating System :: OS Independent", "Operating System :: POSIX :: Linux", "Operating System :: Unix", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.4", "Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3 :: Only", "Topic :: Software Development :: Libraries :: Python Modules" ], "description": ".. image:: https://api.cirrus-ci.com/github/pyscaffold/configupdater.svg?branch=master\n :alt: Cirrus CI\n :target: https://cirrus-ci.com/github/pyscaffold/configupdater\n.. image:: https://readthedocs.org/projects/pyscaffold/badge/?version=latest\n :alt: ReadTheDocs\n :target: https://configupdater.readthedocs.io/\n.. image:: https://img.shields.io/coveralls/github/pyscaffold/configupdater/master.svg\n :alt: Coveralls\n :target: https://coveralls.io/r/pyscaffold/configupdater\n.. image:: https://img.shields.io/pypi/v/configupdater.svg\n :alt: PyPI-Server\n :target: https://pypi.org/project/configupdater/\n\n=============\nConfigUpdater\n=============\n\nThe sole purpose of `ConfigUpdater`_ is to easily update an INI config file\nwith no changes to the original file except the intended ones. This means\ncomments, the ordering of sections and key/value-pairs as wells as their\ncases are kept as in the original file. Thus ConfigUpdater provides\ncomplementary functionality to Python's `ConfigParser`_ which is primarily\nmeant for reading config files and writing *new* ones.\n\nFeatures\n========\n\nThe key differences to `ConfigParser`_ are:\n\n* minimal invasive changes in the update configuration file,\n* proper handling of comments,\n* only a single config file can be updated at a time,\n* empty lines in values are not valid,\n* the original case of sections and keys are kept,\n* control over the position of a new section/key\n\nFollowing features are **deliberately not** implemented:\n\n* interpolation of values,\n* propagation of parameters from the default section,\n* conversions of values,\n* passing key/value-pairs with ``default`` argument,\n* non-strict mode allowing duplicate sections and keys.\n\nUsage\n=====\n\nFirst install the package with::\n\n pip install configupdater\n\nNow we can simply do::\n\n from configupdater import ConfigUpdater\n\n updater = ConfigUpdater()\n updater.read('setup.cfg')\n\nwhich would read the file ``setup.cfg`` that is found in many projects.\n\nTo change the value of an existing key we can simply do::\n\n updater['metadata']['author'].value = \"Alan Turing\"\n\nAt any point we can print the current state of the configuration file with::\n\n print(updater)\n\nTo update the read-in file just call ``updater.update_file()`` or ``updater.write('filename')``\nto write the changed configuration file to another destination. Before actually writing,\nConfigUpdater will automatically check that the updated configuration file is still valid by\nparsing it with the help of ConfigParser.\n\nMany of ConfigParser's methods still exists and it's best to look them up in the `module reference`_.\nLet's look at some examples.\n\nAdding and removing options\n---------------------------\n\nLet's say we have the following configuration in a string::\n\n cfg = \"\"\"\n [metadata]\n author = Ada Lovelace\n summary = The Analytical Engine\n \"\"\"\n\nWe can add an *license* option, i.e. a key/value pair, in the same way we would do with ConfigParser::\n\n updater = ConfigUpdater()\n updater.read_string(cfg)\n updater['metadata']['license'] = 'MIT'\n\nA simple ``print(updater)`` will give show you that the new option was appended to the end::\n\n [metadata]\n author = Ada Lovelace\n summary = The Analytical Engine\n license = MIT\n\nSince the license is really important to us let's say we want to add it before the ``summary``\nand even add a short comment before it::\n\n updater = ConfigUpdater()\n updater.read_string(cfg)\n (updater['metadata']['summary'].add_before\n .comment(\"Ada would have loved MIT\")\n .option('license', 'MIT'))\n\nwhich would result in::\n\n [metadata]\n author = Ada Lovelace\n # Ada would have loved MIT\n license = MIT\n summary = Analytical Engine calculating the Bernoulli numbers\n\nUsing ``add_after`` would give the same result and looks like::\n\n updater = ConfigUpdater()\n updater.read_string(cfg)\n (updater['metadata']['author'].add_after\n .comment(\"Ada would have loved MIT\")\n .option('license', 'MIT'))\n\nLet's say we want to rename `summary` to the more common `description`::\n\n updater = ConfigUpdater()\n updater.read_string(cfg)\n updater['metadata']['summary'].key = 'description'\n\nIf we wanted no summary at all, we could just do ``del updater['metadata']['summary']``.\n\n\nAdding and removing sections\n----------------------------\n\nAdding and remove sections just works like adding and removing options but on a higher level.\nSticking to our *Ada Lovelace* example, let's say we want to add a section ``options`` just\nbefore ``metadata`` with a comment and two new lines to separate it from ``metadata``::\n\n updater = ConfigUpdater()\n updater.read_string(cfg)\n (updater['metadata'].add_before\n .comment(\"Some specific project options\")\n .section(\"options\")\n .space(2))\n\nAs expected, this results in::\n\n # Some specific project options\n [options]\n\n [metadata]\n author = Ada Lovelace\n summary = The Analytical Engine\n\nWe could now fill the new section with options like we learnt before. If we wanted to rename\nan existing section we could do this with the help of the ``name`` attribute::\n\n updater['metadata'].name = 'MetaData'\n\nSometimes it might be useful to inject a new section not in a programmatic way but more declarative.\nLet's assume we have thus defined our new section in a multi-line string::\n\n sphinx_sect_str = \"\"\"\n [build_sphinx]\n source_dir = docs\n build_dir = docs/_build\n \"\"\"\n\nWith the help of two ConfigUpdater objects we can easily inject this section into our example::\n\n sphinx = ConfigUpdater()\n sphinx.read_string(sphinx_sect_str)\n sphinx_sect = sphinx['build_sphinx']\n\n updater = ConfigUpdater()\n updater.read_string(cfg)\n\n (updater['metadata'].add_after\n .space()\n .section(sphinx_sect))\n\nThis results in::\n\n [metadata]\n author = Ada Lovelace\n summary = The Analytical Engine\n\n [build_sphinx]\n source_dir = docs\n build_dir = docs/_build\n\nFor more examples on how the API of ConfigUpdater works it's best to take a look into the\n`unit tests`_ and read the references.\n\n\nNotes\n=====\n\nConfigUpdater is mainly developed for `PyScaffold`_.\n\n.. _ConfigParser: https://docs.python.org/3/library/configparser.html\n.. _ConfigUpdater: https://configupdater.readthedocs.io/\n.. _PyScaffold: http://pyscaffold.org/\n.. _module reference: https://configupdater.readthedocs.io/en/latest/api/configupdater.html#configupdater.configupdater.ConfigUpdater\n.. _unit tests: https://github.com/pyscaffold/configupdater/blob/master/tests/test_configupdater.py\n\n\n", "description_content_type": "text/x-rst; charset=UTF-8", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/pyscaffold/configupdater", "keywords": "", "license": "mit", "maintainer": "", "maintainer_email": "", "name": "ConfigUpdater", "package_url": "https://pypi.org/project/ConfigUpdater/", "platform": "any", "project_url": "https://pypi.org/project/ConfigUpdater/", "project_urls": { "Documentation": "https://configupdater.readthedocs.io/", "Homepage": "https://github.com/pyscaffold/configupdater" }, "release_url": "https://pypi.org/project/ConfigUpdater/1.0.1/", "requires_dist": [ "setuptools (>=38.3)", "sphinx ; extra == 'testing'", "flake8 ; extra == 'testing'", "pytest ; extra == 'testing'", "pytest-cov ; extra == 'testing'", "pytest-virtualenv ; extra == 'testing'", "pytest-xdist ; extra == 'testing'" ], "requires_python": ">=3.4", "summary": "Parser like ConfigParser but for updating configuration files", "version": "1.0.1" }, "last_serial": 5868753, "releases": { "0.1": [ { "comment_text": "", "digests": { "md5": "0ebcfe0abf8c739d22b624ece8567c15", "sha256": "547904b858f79957698f78fc07007d96bbc5f68b7dd7c659634c7e1fa8b0fa81" }, "downloads": -1, "filename": "ConfigUpdater-0.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "0ebcfe0abf8c739d22b624ece8567c15", "packagetype": "bdist_wheel", "python_version": "3.6", "requires_python": null, "size": 15184, "upload_time": "2018-07-07T12:00:30", "url": "https://files.pythonhosted.org/packages/d1/86/bfbf20048e5cdbebdb818282d256dba8097c7e343fc1506fb54af9c9c2aa/ConfigUpdater-0.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "856c1d74f94a521c16ef9295fdcd6c70", "sha256": "57e956ec42cceb4bdd1db3aa99915b533f8f0220db81fc28e5e10a7757a49986" }, "downloads": -1, "filename": "ConfigUpdater-0.1.tar.gz", "has_sig": false, "md5_digest": "856c1d74f94a521c16ef9295fdcd6c70", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 27004, "upload_time": "2018-07-07T12:00:28", "url": "https://files.pythonhosted.org/packages/fb/4a/eb89a061a9ee88d2ef61843c62d11ae0b306f5977c368932f241b2ada513/ConfigUpdater-0.1.tar.gz" } ], "0.1.1": [ { "comment_text": "", "digests": { "md5": "3ca4d654e13f7b9a61d14ab35600d302", "sha256": "1b09d2e9287b767fe1c339c39390d8d7f019263267d206195e0621304c7b759b" }, "downloads": -1, "filename": "ConfigUpdater-0.1.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "3ca4d654e13f7b9a61d14ab35600d302", "packagetype": "bdist_wheel", "python_version": "3.6", "requires_python": null, "size": 15237, "upload_time": "2018-07-07T12:21:15", "url": "https://files.pythonhosted.org/packages/0a/52/663481a5a084ac37d44fd167f73e4b6b96b2e2402e6f6ea79fe60d45326f/ConfigUpdater-0.1.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "8ea8c80253a5ba6aaf4a2991bca7969d", "sha256": "cbf54c242f4e42fec849ca2a0ed57931d375e4d186f5268608510e0ff5940326" }, "downloads": -1, "filename": "ConfigUpdater-0.1.1.tar.gz", "has_sig": false, "md5_digest": "8ea8c80253a5ba6aaf4a2991bca7969d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 27041, "upload_time": "2018-07-07T12:21:13", "url": "https://files.pythonhosted.org/packages/b8/fa/0f73b08b0b6d6808c2edcb73f77e79d28bb7ded228646db0dde3de9e1fcc/ConfigUpdater-0.1.1.tar.gz" } ], "0.1a1.dev1": [ { "comment_text": "", "digests": { "md5": "238365ae7e89fe248bd091f50ca84699", "sha256": "cd33edf3c5345777bdcbe1f108a738f3106bc56fdc418b14596643e35553b060" }, "downloads": -1, "filename": "configupdater-0.1a1.dev1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "238365ae7e89fe248bd091f50ca84699", "packagetype": "bdist_wheel", "python_version": "3.6", "requires_python": null, "size": 17431, "upload_time": "2018-06-22T18:21:02", "url": "https://files.pythonhosted.org/packages/af/b5/2fe956060a82c19cf9a41437118b3b37ff31d208b0d5b5c3a1c15e472625/configupdater-0.1a1.dev1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "019ebbf5416be80dbfe4c416298dc414", "sha256": "938ee7c2a13d8318567d81c7bff0a3f444fce2fdf8353bf713718195b138cf01" }, "downloads": -1, "filename": "configupdater-0.1a1.dev1.tar.gz", "has_sig": false, "md5_digest": "019ebbf5416be80dbfe4c416298dc414", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 27534, "upload_time": "2018-06-22T18:21:00", "url": "https://files.pythonhosted.org/packages/92/48/678140bea7b6580b0f1964946cb9bdb6069244d29576a14d2d5ef883221e/configupdater-0.1a1.dev1.tar.gz" } ], "0.1a2": [ { "comment_text": "", "digests": { "md5": "56d44ce47c9d6e274d06048779d1c5e2", "sha256": "325f09462b15af4e64f0454e377a5354cafae72e3a414abfbed67f69f9fc4390" }, "downloads": -1, "filename": "configupdater-0.1a2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "56d44ce47c9d6e274d06048779d1c5e2", "packagetype": "bdist_wheel", "python_version": "3.6", "requires_python": null, "size": 17840, "upload_time": "2018-06-23T09:28:30", "url": "https://files.pythonhosted.org/packages/e5/1b/2d6840416ffa647e0ac8d23782d7f4dc80f803f819f0e7f29bfe258c28b4/configupdater-0.1a2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "dbb2960bb716b3a1a47ead8b57bafa9d", "sha256": "6a8704e2b66652b5fea1a58a98b5de509b4a7348e21bbcebb89467b3521e054d" }, "downloads": -1, "filename": "configupdater-0.1a2.tar.gz", "has_sig": false, "md5_digest": "dbb2960bb716b3a1a47ead8b57bafa9d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 28072, "upload_time": "2018-06-23T09:28:28", "url": "https://files.pythonhosted.org/packages/49/ab/ff216a16f4f9a3e488d1cfa155fc292510a6695f9455624d43422f291389/configupdater-0.1a2.tar.gz" } ], "0.2": [ { "comment_text": "", "digests": { "md5": "3bc1667f947390ba87f6b68dac0cab8e", "sha256": "627dd6d81ccc45104875ff5ca0e7d2dc33abbd0d8e79168065d346a853984aa7" }, "downloads": -1, "filename": "ConfigUpdater-0.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "3bc1667f947390ba87f6b68dac0cab8e", "packagetype": "bdist_wheel", "python_version": "3.6", "requires_python": null, "size": 15418, "upload_time": "2018-08-02T14:26:24", "url": "https://files.pythonhosted.org/packages/ee/0a/187fac5cf9df65aec923dd7390975f823555fb2175c5d960a12c59f74fef/ConfigUpdater-0.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "bbb72c36a0d1400d832a714f5bfe2c38", "sha256": "7c3e403b94a944b52227a39e208ab1202a7479e7a16d5ab8375e6f34bbe0f7bc" }, "downloads": -1, "filename": "ConfigUpdater-0.2.tar.gz", "has_sig": false, "md5_digest": "bbb72c36a0d1400d832a714f5bfe2c38", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 28885, "upload_time": "2018-08-02T14:26:22", "url": "https://files.pythonhosted.org/packages/88/dc/e6a970f2c3394965b540d836783916f79b93479703197f09939e9171b695/ConfigUpdater-0.2.tar.gz" } ], "0.3": [ { "comment_text": "", "digests": { "md5": "9384796dedf6130499c843db61c41279", "sha256": "54af62e189092672ab83381680934a82894b38736b254c492c5e0442f3bc6094" }, "downloads": -1, "filename": "ConfigUpdater-0.3-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "9384796dedf6130499c843db61c41279", "packagetype": "bdist_wheel", "python_version": "3.6", "requires_python": null, "size": 15654, "upload_time": "2018-08-08T06:13:04", "url": "https://files.pythonhosted.org/packages/a2/c2/b017bfcffc295e6ef578ee220c1a54fdbf3438feec0beebed62af3cf992e/ConfigUpdater-0.3-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "f08d739d972d546d2c1173bf4a3685a0", "sha256": "c6f2a127f594bd8b97be769961f4f5de472b8c93f6bf039105353ac2609d6c05" }, "downloads": -1, "filename": "ConfigUpdater-0.3.tar.gz", "has_sig": false, "md5_digest": "f08d739d972d546d2c1173bf4a3685a0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 29524, "upload_time": "2018-08-08T06:13:02", "url": "https://files.pythonhosted.org/packages/12/0f/2bc4079ff73ae653bda6cd8b0dd0b3eb92798e5040121b1732369c6f151f/ConfigUpdater-0.3.tar.gz" } ], "0.3.1": [ { "comment_text": "", "digests": { "md5": "efe4a351166a1c7531f63c5e65cf64f5", "sha256": "567b4b90f816563d7e43565df59843dc2879900130601737186417a9203c5c00" }, "downloads": -1, "filename": "ConfigUpdater-0.3.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "efe4a351166a1c7531f63c5e65cf64f5", "packagetype": "bdist_wheel", "python_version": "3.7", "requires_python": null, "size": 12571, "upload_time": "2018-09-07T02:13:39", "url": "https://files.pythonhosted.org/packages/dd/02/1a26ad14b9b451d3db21e07f063b9301c0628227625df096d00787bad08e/ConfigUpdater-0.3.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "c37275b6037fcaa73aeb70a9a9906f74", "sha256": "28e16181dc4403f5aa458340bd6003b6c48b670df8b6b6fdcf35411013a1ca2b" }, "downloads": -1, "filename": "ConfigUpdater-0.3.1.tar.gz", "has_sig": false, "md5_digest": "c37275b6037fcaa73aeb70a9a9906f74", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 30036, "upload_time": "2018-09-07T02:13:37", "url": "https://files.pythonhosted.org/packages/cd/36/58c388d24f48d0dbfac654cdc006ebe607fa8f1f977547037c0b4dd36a66/ConfigUpdater-0.3.1.tar.gz" } ], "0.3.2": [ { "comment_text": "", "digests": { "md5": "ee5a037fc7c07c50672f9519b1faab59", "sha256": "c17cd653273758053db42fd5b008a04cc323bb297d9afbb6dc41df8f2694568d" }, "downloads": -1, "filename": "ConfigUpdater-0.3.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "ee5a037fc7c07c50672f9519b1faab59", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=3.4", "size": 12628, "upload_time": "2018-09-08T11:34:34", "url": "https://files.pythonhosted.org/packages/1a/a4/91b84162f8f0dc646ed473e5841f3f0981bda9aa277d27603535f2e3175e/ConfigUpdater-0.3.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "0fe9435016c685f07fb9e7410a30599f", "sha256": "f8e832a1a40faca6aa9abdc3069cc0fb9021580dcef96cbe1aad055bc08ab865" }, "downloads": -1, "filename": "ConfigUpdater-0.3.2.tar.gz", "has_sig": false, "md5_digest": "0fe9435016c685f07fb9e7410a30599f", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.4", "size": 30177, "upload_time": "2018-09-08T11:34:36", "url": "https://files.pythonhosted.org/packages/54/b8/1aa82f89b77045c897c35d3f2f28c7559282fd422018c0377efc362f56d1/ConfigUpdater-0.3.2.tar.gz" } ], "0.3.2rc1": [ { "comment_text": "", "digests": { "md5": "86c27b8c9ebc8c9512affdf4102b8f4f", "sha256": "abeea07f055bd2c7e1c0096d0c5cf892a18a79eb5a83ef8dc821d851f79552ef" }, "downloads": -1, "filename": "ConfigUpdater-0.3.2rc1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "86c27b8c9ebc8c9512affdf4102b8f4f", "packagetype": "bdist_wheel", "python_version": "3.7", "requires_python": null, "size": 12656, "upload_time": "2018-09-08T11:24:52", "url": "https://files.pythonhosted.org/packages/e3/e4/589b01f59467b4f089d4b0cf53db7eb3d2936b5980fd0119516de62aaab3/ConfigUpdater-0.3.2rc1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "661c9f175239c5da09b643119184b851", "sha256": "580b92aa2e15e1ffe814959620396de51cc5929a6cfc1e39e572671f74def002" }, "downloads": -1, "filename": "ConfigUpdater-0.3.2rc1.tar.gz", "has_sig": false, "md5_digest": "661c9f175239c5da09b643119184b851", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 30166, "upload_time": "2018-09-08T11:24:51", "url": "https://files.pythonhosted.org/packages/c9/df/046fa604428cb54c19073b41f9c8b0d7012b5a09eecfe11b4bafcd120337/ConfigUpdater-0.3.2rc1.tar.gz" } ], "0.3.2rc2": [ { "comment_text": "", "digests": { "md5": "01203d03dc49ad8bb8592623e3454d2b", "sha256": "b8e6ea2d0d32ff89787eaf280c8fa17f3e248accc80a4d13755ebcebebcf719f" }, "downloads": -1, "filename": "ConfigUpdater-0.3.2rc2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "01203d03dc49ad8bb8592623e3454d2b", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=3.4", "size": 12657, "upload_time": "2018-09-08T11:31:08", "url": "https://files.pythonhosted.org/packages/88/a3/d011b3d533a0b4413c26316f2c1bf033291bb213826b8c7d38b1a3129776/ConfigUpdater-0.3.2rc2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "f26e1af8101848b42b61528607e10737", "sha256": "ae477de0fd593ee240b4e389c5c3b09cdf9091018db7ed4ecc03e4b778a9094b" }, "downloads": -1, "filename": "ConfigUpdater-0.3.2rc2.tar.gz", "has_sig": false, "md5_digest": "f26e1af8101848b42b61528607e10737", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.4", "size": 30165, "upload_time": "2018-09-08T11:31:10", "url": "https://files.pythonhosted.org/packages/1f/34/5678977453c3737e84e04fc3a62f3a46801d57d57af3be15345805ef6002/ConfigUpdater-0.3.2rc2.tar.gz" } ], "1.0": [ { "comment_text": "", "digests": { "md5": "5bb4aeacf93a95ae272efd6f7b405485", "sha256": "3113f0c8f2c8378063350d11d4ba63f77fca2738f4ee4da5d83029861332aa45" }, "downloads": -1, "filename": "ConfigUpdater-1.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "5bb4aeacf93a95ae272efd6f7b405485", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=3.4", "size": 12613, "upload_time": "2018-11-29T14:35:20", "url": "https://files.pythonhosted.org/packages/93/31/cdee8436529130bf2be4be7e4b2674abc6b872b7337d77feb16d58548c60/ConfigUpdater-1.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "c7974af28eeb95d968ba8f80a165c88e", "sha256": "a86d97bcb3f1012e10f13dc25a3b99019aa27abec414a047b6392255b2bbf4ca" }, "downloads": -1, "filename": "ConfigUpdater-1.0.tar.gz", "has_sig": false, "md5_digest": "c7974af28eeb95d968ba8f80a165c88e", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.4", "size": 30215, "upload_time": "2018-11-29T14:35:23", "url": "https://files.pythonhosted.org/packages/aa/af/069c7db438b9382a05fdaa6c90a2b44595dd7acdb1707848a0b8f2cbe1c1/ConfigUpdater-1.0.tar.gz" } ], "1.0.1": [ { "comment_text": "", "digests": { "md5": "37fcfafcb71c3f0ed0f59adc5b57d768", "sha256": "d7931993a0d54e31e6c0721c65e484f8736bfdcf5b466d258d44becf64c8169e" }, "downloads": -1, "filename": "ConfigUpdater-1.0.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "37fcfafcb71c3f0ed0f59adc5b57d768", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=3.4", "size": 13771, "upload_time": "2019-09-22T11:09:58", "url": "https://files.pythonhosted.org/packages/19/6b/ec35716e860911fc4b40771781ab00e49925cc63a0882b938a6fbf51adfd/ConfigUpdater-1.0.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "6fb0e4371b22d9bb72efa79181000aac", "sha256": "b750d8bc64bd22fa928feb12686e1e7135ff867730b23812e60cbd87cbe1c547" }, "downloads": -1, "filename": "ConfigUpdater-1.0.1.tar.gz", "has_sig": false, "md5_digest": "6fb0e4371b22d9bb72efa79181000aac", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.4", "size": 30905, "upload_time": "2019-09-22T11:10:00", "url": "https://files.pythonhosted.org/packages/ae/77/5d3c17609475ecd93b1ad5df28791e0d6424e000877ac4085003b4e81b9e/ConfigUpdater-1.0.1.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "37fcfafcb71c3f0ed0f59adc5b57d768", "sha256": "d7931993a0d54e31e6c0721c65e484f8736bfdcf5b466d258d44becf64c8169e" }, "downloads": -1, "filename": "ConfigUpdater-1.0.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "37fcfafcb71c3f0ed0f59adc5b57d768", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=3.4", "size": 13771, "upload_time": "2019-09-22T11:09:58", "url": "https://files.pythonhosted.org/packages/19/6b/ec35716e860911fc4b40771781ab00e49925cc63a0882b938a6fbf51adfd/ConfigUpdater-1.0.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "6fb0e4371b22d9bb72efa79181000aac", "sha256": "b750d8bc64bd22fa928feb12686e1e7135ff867730b23812e60cbd87cbe1c547" }, "downloads": -1, "filename": "ConfigUpdater-1.0.1.tar.gz", "has_sig": false, "md5_digest": "6fb0e4371b22d9bb72efa79181000aac", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.4", "size": 30905, "upload_time": "2019-09-22T11:10:00", "url": "https://files.pythonhosted.org/packages/ae/77/5d3c17609475ecd93b1ad5df28791e0d6424e000877ac4085003b4e81b9e/ConfigUpdater-1.0.1.tar.gz" } ] }