configparser


Nameconfigparser JSON
Version 7.0.0 PyPI version JSON
download
home_pagehttps://github.com/jaraco/configparser/
SummaryUpdated configparser from stdlib for earlier Pythons.
upload_time2024-04-14 15:59:05
maintainerJason R. Coombs
docs_urlNone
authorŁukasz Langa
requires_python>=3.8
licenseNone
keywords configparser ini parsing conf cfg configuration file
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage
            .. image:: https://img.shields.io/pypi/v/configparser.svg
   :target: https://pypi.org/project/configparser

.. image:: https://img.shields.io/pypi/pyversions/configparser.svg

.. image:: https://github.com/jaraco/configparser/actions/workflows/main.yml/badge.svg
   :target: https://github.com/jaraco/configparser/actions?query=workflow%3A%22tests%22
   :alt: tests

.. image:: https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/charliermarsh/ruff/main/assets/badge/v2.json
    :target: https://github.com/astral-sh/ruff
    :alt: Ruff

.. image:: https://readthedocs.org/projects/configparser/badge/?version=latest
   :target: https://configparser.readthedocs.io/en/latest/?badge=latest

.. image:: https://img.shields.io/badge/skeleton-2024-informational
   :target: https://blog.jaraco.com/skeleton

.. image:: https://tidelift.com/badges/package/pypi/configparser
   :target: https://tidelift.com/subscription/pkg/pypi-configparser?utm_source=pypi-configparser&utm_medium=readme


This package is a backport of the refreshed and enhanced ConfigParser from
later Python versions. To use the backport instead of the built-in version,
simply import it explicitly as a backport::

  from backports import configparser

For detailed documentation consult the vanilla version at
http://docs.python.org/3/library/configparser.html.


Versioning
==========

This project uses `semver <https://semver.org/spec/v2.0.0.html>`_ to
communicate the impact of various releases while periodically syncing
with the upstream implementation in CPython.
The `history <https://configparser.readthedocs.io/en/latest/history.html>`_
serves as a reference indicating which versions incorporate
which upstream functionality.

Prior to the ``4.0.0`` release, `another scheme
<https://github.com/jaraco/configparser/blob/3.8.1/README.rst#versioning>`_
was used to associate the CPython and backports releases.

Maintenance
===========

This backport was originally authored by Łukasz Langa, the current vanilla
``configparser`` maintainer for CPython and is currently maintained by
Jason R. Coombs:

* `configparser repository <https://github.com/jaraco/configparser>`_

* `configparser issue tracker <https://github.com/jaraco/configparser/issues>`_

Conversion Process
==================

This section is technical and should bother you only if you are wondering how
this backport is produced. If the implementation details of this backport are
not important for you, feel free to ignore the following content.

The project takes the following branching approach:

* The ``cpython`` branch holds unchanged files synchronized from the upstream
  CPython repository. The synchronization is currently done by manually copying
  the required files and stating from which CPython changeset they come.

* The ``main`` branch holds a version of the ``cpython`` code with some tweaks
  that make it compatible with older Pythons. Code on this branch must work
  on all supported Python versions. Test with ``tox`` or in CI.

The process works like this:

1. In the ``cpython`` branch, run ``./sync-upstream``, which
   downloads the latest stable release of Python and copies the relevant
   files from there into their new locations and then commits those
   changes with a nice reference to the relevant upstream commit hash.

2. Merge the new commit to ``main``.

3. Check for new names in ``__all__`` and update imports in
   ``configparser/__init__.py`` accordingly. Run tests. Commit.

4. Make any compatibility changes on ``main``. Run tests. Commit.

5. Update the docs and release the new version.


For Enterprise
==============

Available as part of the Tidelift Subscription.

This project and the maintainers of thousands of other packages are working with Tidelift to deliver one enterprise subscription that covers all of the open source you use.

`Learn more <https://tidelift.com/subscription/pkg/pypi-configparser?utm_source=pypi-configparser&utm_medium=referral&utm_campaign=github>`_.

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/jaraco/configparser/",
    "name": "configparser",
    "maintainer": "Jason R. Coombs",
    "docs_url": null,
    "requires_python": ">=3.8",
    "maintainer_email": "jaraco@jaraco.com",
    "keywords": "configparser ini parsing conf cfg configuration file",
    "author": "\u0141ukasz Langa",
    "author_email": "lukasz@langa.pl",
    "download_url": "https://files.pythonhosted.org/packages/fd/1d/a0f55c373f80437607b898956518443b9edd435b5a226392a9ef11d79fa0/configparser-7.0.0.tar.gz",
    "platform": "any",
    "description": ".. image:: https://img.shields.io/pypi/v/configparser.svg\n   :target: https://pypi.org/project/configparser\n\n.. image:: https://img.shields.io/pypi/pyversions/configparser.svg\n\n.. image:: https://github.com/jaraco/configparser/actions/workflows/main.yml/badge.svg\n   :target: https://github.com/jaraco/configparser/actions?query=workflow%3A%22tests%22\n   :alt: tests\n\n.. image:: https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/charliermarsh/ruff/main/assets/badge/v2.json\n    :target: https://github.com/astral-sh/ruff\n    :alt: Ruff\n\n.. image:: https://readthedocs.org/projects/configparser/badge/?version=latest\n   :target: https://configparser.readthedocs.io/en/latest/?badge=latest\n\n.. image:: https://img.shields.io/badge/skeleton-2024-informational\n   :target: https://blog.jaraco.com/skeleton\n\n.. image:: https://tidelift.com/badges/package/pypi/configparser\n   :target: https://tidelift.com/subscription/pkg/pypi-configparser?utm_source=pypi-configparser&utm_medium=readme\n\n\nThis package is a backport of the refreshed and enhanced ConfigParser from\nlater Python versions. To use the backport instead of the built-in version,\nsimply import it explicitly as a backport::\n\n  from backports import configparser\n\nFor detailed documentation consult the vanilla version at\nhttp://docs.python.org/3/library/configparser.html.\n\n\nVersioning\n==========\n\nThis project uses `semver <https://semver.org/spec/v2.0.0.html>`_ to\ncommunicate the impact of various releases while periodically syncing\nwith the upstream implementation in CPython.\nThe `history <https://configparser.readthedocs.io/en/latest/history.html>`_\nserves as a reference indicating which versions incorporate\nwhich upstream functionality.\n\nPrior to the ``4.0.0`` release, `another scheme\n<https://github.com/jaraco/configparser/blob/3.8.1/README.rst#versioning>`_\nwas used to associate the CPython and backports releases.\n\nMaintenance\n===========\n\nThis backport was originally authored by \u0141ukasz Langa, the current vanilla\n``configparser`` maintainer for CPython and is currently maintained by\nJason R. Coombs:\n\n* `configparser repository <https://github.com/jaraco/configparser>`_\n\n* `configparser issue tracker <https://github.com/jaraco/configparser/issues>`_\n\nConversion Process\n==================\n\nThis section is technical and should bother you only if you are wondering how\nthis backport is produced. If the implementation details of this backport are\nnot important for you, feel free to ignore the following content.\n\nThe project takes the following branching approach:\n\n* The ``cpython`` branch holds unchanged files synchronized from the upstream\n  CPython repository. The synchronization is currently done by manually copying\n  the required files and stating from which CPython changeset they come.\n\n* The ``main`` branch holds a version of the ``cpython`` code with some tweaks\n  that make it compatible with older Pythons. Code on this branch must work\n  on all supported Python versions. Test with ``tox`` or in CI.\n\nThe process works like this:\n\n1. In the ``cpython`` branch, run ``./sync-upstream``, which\n   downloads the latest stable release of Python and copies the relevant\n   files from there into their new locations and then commits those\n   changes with a nice reference to the relevant upstream commit hash.\n\n2. Merge the new commit to ``main``.\n\n3. Check for new names in ``__all__`` and update imports in\n   ``configparser/__init__.py`` accordingly. Run tests. Commit.\n\n4. Make any compatibility changes on ``main``. Run tests. Commit.\n\n5. Update the docs and release the new version.\n\n\nFor Enterprise\n==============\n\nAvailable as part of the Tidelift Subscription.\n\nThis project and the maintainers of thousands of other packages are working with Tidelift to deliver one enterprise subscription that covers all of the open source you use.\n\n`Learn more <https://tidelift.com/subscription/pkg/pypi-configparser?utm_source=pypi-configparser&utm_medium=referral&utm_campaign=github>`_.\n",
    "bugtrack_url": null,
    "license": null,
    "summary": "Updated configparser from stdlib for earlier Pythons.",
    "version": "7.0.0",
    "project_urls": {
        "Homepage": "https://github.com/jaraco/configparser/"
    },
    "split_keywords": [
        "configparser",
        "ini",
        "parsing",
        "conf",
        "cfg",
        "configuration",
        "file"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a820f4aab9a42378542295c3be2bbdab353de10eb95396f6d4a5bc7a21b00952",
                "md5": "4448fb7c420dcb930e077a02d8f69756",
                "sha256": "f46d52a12811c637104c6bb8eb33693be0038ab6bf01d69aae009c39ec8c2017"
            },
            "downloads": -1,
            "filename": "configparser-7.0.0-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "4448fb7c420dcb930e077a02d8f69756",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.8",
            "size": 16989,
            "upload_time": "2024-04-14T15:59:04",
            "upload_time_iso_8601": "2024-04-14T15:59:04.160752Z",
            "url": "https://files.pythonhosted.org/packages/a8/20/f4aab9a42378542295c3be2bbdab353de10eb95396f6d4a5bc7a21b00952/configparser-7.0.0-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "fd1da0f55c373f80437607b898956518443b9edd435b5a226392a9ef11d79fa0",
                "md5": "f3d26359864404bbfcccc02f80d79757",
                "sha256": "af3c618a67aaaedc4d689fd7317d238f566b9aa03cae50102e92d7f0dfe78ba0"
            },
            "downloads": -1,
            "filename": "configparser-7.0.0.tar.gz",
            "has_sig": false,
            "md5_digest": "f3d26359864404bbfcccc02f80d79757",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.8",
            "size": 49910,
            "upload_time": "2024-04-14T15:59:05",
            "upload_time_iso_8601": "2024-04-14T15:59:05.488460Z",
            "url": "https://files.pythonhosted.org/packages/fd/1d/a0f55c373f80437607b898956518443b9edd435b5a226392a9ef11d79fa0/configparser-7.0.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-04-14 15:59:05",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "jaraco",
    "github_project": "configparser",
    "travis_ci": false,
    "coveralls": true,
    "github_actions": true,
    "tox": true,
    "lcname": "configparser"
}
        
Elapsed time: 0.23153s