Metadata-Version: 2.1
Name: z3c.insist
Version: 1.5.0
Summary: Persistence to ini Files
Home-page: http://pypi.python.org/pypi/z3c.insist
Author: Shoobx, Inc.
Author-email: dev@shoobx.com
License: ZPL 2.1
Keywords: configuration dump serialization
Classifier: License :: OSI Approved :: Zope Public License
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Natural Language :: English
Classifier: Operating System :: OS Independent
Provides-Extra: test
Provides-Extra: enforce
License-File: LICENSE

======================================
z3c.insist -- Persistence to ini files
======================================

.. image:: https://travis-ci.org/Shoobx/z3c.insist.png?branch=master
   :target: https://travis-ci.org/Shoobx/z3c.insist

.. image:: https://coveralls.io/repos/github/Shoobx/z3c.insist/badge.svg?branch=master
   :target: https://coveralls.io/github/Shoobx/z3c.insist?branch=master

.. image:: https://img.shields.io/pypi/v/z3c.insist.svg
    :target: https://pypi.python.org/pypi/z3c.insist
    
.. image:: https://img.shields.io/pypi/pyversions/z3c.insist.svg
    :target: https://pypi.python.org/pypi/z3c.insist/

.. image:: https://api.codeclimate.com/v1/badges/ed9009cbd94d6e9382ff/maintainability
   :target: https://codeclimate.com/github/Shoobx/z3c.insist/maintainability
   :alt: Maintainability

This is a package that allows serializing objects to ConfigParser
files and loading them back.




Changelog
=========

1.5.0 (2023-01-24)
------------------

- Relicense under ZPL-2.1.


1.4.2 (2022-04-29)
------------------

- Upgraded to the `watchdog` 2.1.7, which does not support the
  `timeout` parameter in `EventDispatcher.dispatch_events()` any more.


1.4.1 (2021-10-26)
------------------

- Report non-existing included config files. (It helps greatly with debugging.)


1.4.0 (2021-10-18)
------------------

- Implemented ability to include config files for file-based stores.

  + Syntax: ```#include path/to/included.ini```

  + A new `IncludeObserver` component listens to the changes of the included
    files and will update the config of the including file on
    modification. Added and removing new included files is also supported.

- Dropped support for Python 3.6

- Added support for Python 3.9

- Removed last compatibility code with Python 2.

- Applied zopefoundation.meta config



1.3.0 (2020-12-15)
------------------

- Dropped support for Python 2 and Python 3.5

- Added support for Python 3.8


1.2.0 (2018-03-31)
------------------

- Use `ConfigParser.read_file()` instead of `ConfigParser.readfp()`, since the
  latter is deprecated.


1.1.4 (2017-05-25)
------------------

- Fixed a senseless bug that was caused by the Py3 port.


1.1.3 (2017-05-25)
------------------

- Fixed a bug in reading the config files.

- Switched to modern ``io.open()`` which supports the ``encoding``
  parameter.

- Make sure that Bytes are properly converted in both directions.


1.1.2 (2017-05-24)
------------------

- Ensure that we always load files in a way that its content is automatically
  converted to unicode.

- Ensure that MANIFEST is complete.

1.1.1 (2017-05-24)
------------------

- Added badges to README.


1.1.0 (2017-05-24)
------------------

- Support for Python 3.5, 3.6 and PyPy.

- Covnerted most doctests to unit tests to ease compatibility effort.

- First public release.


1.0.0 (2017-05-15)
------------------

- Initial release.
