zope.schema


Namezope.schema JSON
Version 7.0.1 PyPI version JSON
download
home_pagehttps://github.com/zopefoundation/zope.schema
Summaryzope.interface extension for defining data schemas
upload_time2023-01-02 14:17:16
maintainer
docs_urlNone
authorZope Foundation and Contributors
requires_python>=3.7
licenseZPL 2.1
keywords zope3 schema field interface typing
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            =============
 zope.schema
=============

.. image:: https://img.shields.io/pypi/v/zope.schema.svg
   :target: https://pypi.org/project/zope.schema/
   :alt: Latest Version

.. image:: https://img.shields.io/pypi/pyversions/zope.schema.svg
   :target: https://pypi.org/project/zope.schema/
   :alt: Supported Python versions

.. image:: https://github.com/zopefoundation/zope.schema/workflows/tests/badge.svg
   :target: https://github.com/zopefoundation/zope.schema/actions?query=workflow%3Atests
   :alt: Tests Status

.. image:: https://readthedocs.org/projects/zopeschema/badge/?version=latest
   :target: https://zopeschema.readthedocs.org/en/latest/
   :alt: Documentation Status

.. image:: https://coveralls.io/repos/github/zopefoundation/zope.schema/badge.svg
   :target: https://coveralls.io/github/zopefoundation/zope.schema
   :alt: Code Coverage

Schemas extend the notion of interfaces to detailed descriptions of
Attributes (but not methods).  Every schema is an interface and
specifies the public fields of an object.  A *field* roughly
corresponds to an attribute of a Python object.  But a Field provides
space for at least a title and a description.  It can also constrain
its value and provide a validation method.  Besides you can optionally
specify characteristics such as its value being read-only or not
required.

See https://zopeschema.readthedocs.io/ for more information.


=========
 Changes
=========

7.0.1 (2023-01-02)
==================

- Fix fallback when ``zope.i18nmessageid`` is not installed (regression
  introduced in 7.0.0).


7.0.0 (2023-01-01)
==================

- Add support for Python 3.11.

- Drop support for Python 2.7, 3.5, 3.6.

- Drop ``zope.schema._compat`` module.

- Fix test deprecation warning on Python 3.11.
  (`#112 <https://github.com/zopefoundation/zope.schema/issues/112>`_)

6.2.1 (2022-09-14)
==================

- Fix outsized integer test values that break tests on newer Python versions.
  (`#115 <https://github.com/zopefoundation/zope.schema/issues/115>`_)


6.2.0 (2021-10-18)
==================

- Add support for Python 3.10.


6.1.1 (2021-10-13)
==================

- Fix incompatibility introduced in 6.1.0:
  The `Bool` field constructor implicitly set required to False if not given.
  While this is the desired behavior in most common cases,
  it broke special cases.
  See `issue 104 <https://github.com/zopefoundation/zope.schema/issues/104>`_
  (scroll down, it is around the *reopen*).


6.1.0 (2021-02-09)
==================

- Fix ``IField.required`` to not be required by default.
  See `issue 104 <https://github.com/zopefoundation/zope.schema/issues/104>`_.

6.0.1 (2021-01-25)
==================

- Bring branch coverage to 100%.

- Add support for Python 3.9.

- Fix FieldUpdateEvent implementation by having an ``object`` attribute as the
  ``IFieldUpdatedEvent`` interfaces claims there should be.

6.0.0 (2020-03-21)
==================

- Require zope.interface 5.0.

- Ensure the resolution orders of all fields are consistent and make
  sense. In particular, ``Bool`` fields now correctly implement
  ``IBool`` before ``IFromUnicode``. See `issue 80
  <https://github.com/zopefoundation/zope.schema/issues/80>`_.

- Add support for Python 3.8.

- Drop support for Python 3.4.

5.0.1 (2020-03-06)
==================

- Fix: add ``Text.unicode_normalization = 'NFC'`` as default, because some are
  persisting schema fields. Setting that attribute only in ``__init__``
  breaks loading old objects.


5.0 (2020-03-06)
================

- Set ``IDecimal`` attributes ``min``, ``max`` and ``default`` as ``Decimal``
  type instead of ``Number``.
  See `issue 88 <https://github.com/zopefoundation/zope.schema/issues/88>`_.

- Enable unicode normalization for ``Text`` fields.
  The default is NFC normalization. Valid forms are 'NFC', 'NFKC', 'NFD', and
  'NFKD'. To disable normalization, set ``unicode_normalization`` to ``False``
  or ``None`` when calling ``__init__`` of the ``Text`` field.
  See `issue 86 <https://github.com/zopefoundation/zope.schema/issues/86>`_.


4.9.3 (2018-10-12)
==================

- Fix a ReST error in getDoc() results when having "subfields"
  with titles.


4.9.2 (2018-10-11)
==================

- Make sure that the title for ``IObject.validate_invariants`` is a unicode
  string.


4.9.1 (2018-10-05)
==================

- Fix ``SimpleTerm`` token for non-ASCII bytes values.


4.9.0 (2018-09-24)
==================

- Make ``NativeString`` and ``NativeStringLine`` distinct types that
  implement the newly-distinct interfaces ``INativeString`` and
  ``INativeStringLine``. Previously these were just aliases for either
  ``Text`` (on Python 3) or ``Bytes`` (on Python 2).

- Fix ``Field.getDoc()`` when ``value_type`` or ``key_type`` is
  present. Previously it could produce ReST that generated Sphinx
  warnings. See `issue 76 <https://github.com/zopefoundation/zope.schema/issues/76>`_.

- Make ``DottedName`` accept leading underscores for each segment.

- Add ``PythonIdentifier``, which accepts one segment of a dotted
  name, e.g., a python variable or class.

4.8.0 (2018-09-19)
==================

- Add the interface ``IFromBytes``, which is implemented by the
  numeric and bytes fields, as well as ``URI``, ``DottedName``, and
  ``Id``.

- Fix passing ``None`` as the description to a field constructor. See
  `issue 69 <https://github.com/zopefoundation/zope.schema/issues/69>`_.

4.7.0 (2018-09-11)
==================

- Make ``WrongType`` have an ``expected_type`` field.

- Add ``NotAnInterface``, an exception derived from ``WrongType`` and
  ``SchemaNotProvided`` and raised by the constructor of ``Object``
  and when validation fails for ``InterfaceField``.

- Give ``SchemaNotProvided`` a ``schema`` field.

- Give ``WrongContainedType`` an ``errors`` list.

- Give ``TooShort``, ``TooLong``, ``TooBig`` and ``TooSmall`` a
  ``bound`` field and the common superclasses ``LenOutOfBounds``,
  ``OrderableOutOfBounds``, respectively, both of which inherit from
  ``OutOfBounds``.

4.6.2 (2018-09-10)
==================

- Fix checking a field's constraint to set the ``field`` and ``value``
  properties if the constraint raises a ``ValidationError``. See
  `issue 66
  <https://github.com/zopefoundation/zope.schema/issues/66>`_.


4.6.1 (2018-09-10)
==================

- Fix the ``Field`` constructor to again allow ``MessageID`` values
  for the ``description``. This was a regression introduced with the
  fix for `issue 60
  <https://github.com/zopefoundation/zope.schema/issues/60>`_. See
  `issue 63
  <https://github.com/zopefoundation/zope.schema/issues/63>`_.


4.6.0 (2018-09-07)
==================

- Add support for Python 3.7.

- ``Object`` instances call their schema's ``validateInvariants``
  method by default to collect errors from functions decorated with
  ``@invariant`` when validating. This can be disabled by passing
  ``validate_invariants=False`` to the ``Object`` constructor. See
  `issue 10 <https://github.com/zopefoundation/zope.schema/issues/10>`_.

- ``ValidationError`` can be sorted on Python 3.

- ``DottedName`` and ``Id`` consistently handle non-ASCII unicode
  values on Python 2 and 3 by raising ``InvalidDottedName`` and
  ``InvalidId`` in ``fromUnicode`` respectively. Previously, a
  ``UnicodeEncodeError`` would be raised on Python 2 while Python 3
  would raise the descriptive exception.

- ``Field`` instances are hashable on Python 3, and use a defined
  hashing algorithm that matches what equality does on all versions of
  Python. Previously, on Python 2, fields were hashed based on their
  identity. This violated the rule that equal objects should have
  equal hashes, and now they do. Since having equal hashes does not
  imply that the objects are equal, this is not expected to be a
  compatibility problem. See `issue 36
  <https://github.com/zopefoundation/zope.schema/issues/36>`_.

- ``Field`` instances are only equal when their ``.interface`` is
  equal. In practice, this means that two otherwise identical fields
  of separate schemas are not equal, do not hash the same, and can
  both be members of the same ``dict`` or ``set``. Prior to this
  release, when hashing was identity based but only worked on Python
  2, that was the typical behaviour. (Field objects that are *not*
  members of a schema continue to compare and hash equal if they have
  the same attributes and interfaces.) See `issue 40
  <https://github.com/zopefoundation/zope.schema/issues/40>`_.

- Orderable fields, including ``Int``, ``Float``, ``Decimal``,
  ``Timedelta``, ``Date`` and ``Time``, can now have a
  ``missing_value`` without needing to specify concrete ``min`` and
  ``max`` values (they must still specify a ``default`` value). See
  `issue 9 <https://github.com/zopefoundation/zope.schema/issues/9>`_.

- ``Choice``, ``SimpleVocabulary`` and  ``SimpleTerm`` all gracefully
  handle using Unicode token values with non-ASCII characters by encoding
  them with the ``backslashreplace`` error handler. See `issue 15
  <https://github.com/zopefoundation/zope.schema/issues/15>`_ and `PR
  6 <https://github.com/zopefoundation/zope.schema/pull/6>`_.

- All instances of ``ValidationError`` have a ``field`` and ``value``
  attribute that is set to the field that raised the exception and the
  value that failed validation.

- ``Float``, ``Int`` and ``Decimal`` fields raise ``ValidationError``
  subclasses for literals that cannot be parsed. These subclasses also
  subclass ``ValueError`` for backwards compatibility.

- Add a new exception ``SchemaNotCorrectlyImplemented``, a subclass of
  ``WrongContainedType`` that is raised by the ``Object`` field. It
  has a dictionary (``schema_errors``) mapping invalid schema
  attributes to their corresponding exception, and a list
  (``invariant_errors``) containing the exceptions raised by
  validating invariants. See `issue 16
  <https://github.com/zopefoundation/zope.schema/issues/16>`_.

- Add new fields ``Mapping`` and ``MutableMapping``, corresponding to
  the collections ABCs of the same name; ``Dict`` now extends and
  specializes ``MutableMapping`` to only accept instances of ``dict``.

- Add new fields ``Sequence`` and ``MutableSequence``, corresponding
  to the collections ABCs of the same name; ``Tuple`` now extends
  ``Sequence`` and ``List`` now extends ``MutableSequence``.

- Add new field ``Collection``, implementing ``ICollection``. This is
  the base class of ``Sequence``. Previously this was known as
  ``AbstractCollection`` and was not public. It can be subclassed to
  add ``value_type``, ``_type`` and ``unique`` attributes at the class
  level, enabling a simpler constructor call. See `issue 23
  <https://github.com/zopefoundation/zope.schema/issues/23>`_.

- Make ``Object`` respect a ``schema`` attribute defined by a
  subclass, enabling a simpler constructor call. See `issue 23
  <https://github.com/zopefoundation/zope.schema/issues/23>`_.

- Add fields and interfaces representing Python's numeric tower. In
  descending order of generality these are ``Number``, ``Complex``,
  ``Real``, ``Rational`` and ``Integral``. The ``Int`` class extends
  ``Integral``, the ``Float`` class extends ``Real``, and the
  ``Decimal`` class extends ``Number``. See `issue 49
  <https://github.com/zopefoundation/zope.schema/issues/49>`_.

- Make ``Iterable`` and ``Container`` properly implement ``IIterable``
  and ``IContainer``, respectively.

- Make ``SimpleVocabulary.fromItems`` accept triples to allow
  specifying the title of terms. See `issue 18
  <https://github.com/zopefoundation/zope.schema/issues/18>`_.

- Make ``TreeVocabulary.fromDict`` only create
  ``ITitledTokenizedTerms`` when a title is actually provided.

- Make ``Choice`` fields reliably raise a ``ValidationError`` when a
  named vocabulary cannot be found; for backwards compatibility this
  is also a ``ValueError``. Previously this only worked when the
  default ``VocabularyRegistry`` was in use, not when it was replaced
  with `zope.vocabularyregistry
  <https://pypi.org/project/zope.vocabularyregistry/>`_. See `issue 55
  <https://github.com/zopefoundation/zope.schema/issues/55>`_.

- Make ``SimpleVocabulary`` and ``SimpleTerm`` have value-based
  equality and hashing methods.

- All fields of the schema of an ``Object`` field are bound to the
  top-level value being validated before attempting validation of
  their particular attribute. Previously only ``IChoice`` fields were
  bound. See `issue 17
  <https://github.com/zopefoundation/zope.schema/issues/17>`_.

- Share the internal logic of ``Object`` field validation and
  ``zope.schema.getValidationErrors``. See `issue 57
  <https://github.com/zopefoundation/zope.schema/issues/57>`_.


- Make ``Field.getDoc()`` return more information about the properties
  of the field, such as its required and readonly status. Subclasses
  can add more information using the new method
  ``Field.getExtraDocLines()``. This is used to generate Sphinx
  documentation when using `repoze.sphinx.autointerface
  <https://pypi.org/project/repoze.sphinx.autointerface/>`_. See
  `issue 60
  <https://github.com/zopefoundation/zope.schema/issues/60>`_.


4.5.0 (2017-07-10)
==================

- Drop support for Python 2.6, 3.2, and 3.3.

- Add support for Python 3.5 and 3.6.

- Drop support for 'setup.py test'. Use zope.testrunner instead.


4.4.2 (2014-09-04)
==================

- Fix description of min max field: max value is included, not excluded.


4.4.1 (2014-03-19)
==================

- Add support for Python 3.4.


4.4.0 (2014-01-22)
==================

- Add an event on field properties to notify that a field has been updated.
  This event enables definition of subscribers based on an event, a context
  and a field. The event contains also the old value and the new value.
  (also see package ``zope.schemaevent`` that define a field event handler)


4.3.3 (2014-01-06)
==================

- PEP 8 cleanup.

- Don't raise RequiredMissing if a field's defaultFactory returns the field's
  missing_value.

- Update ``boostrap.py`` to version 2.2.

- Add the ability to swallow ValueErrors when rendering a SimpleVocabulary,
  allowing for cases where vocabulary items may be duplicated (e.g., due to
  user input).

- Include the field name in ``ConstraintNotSatisfied``.


4.3.2 (2013-02-24)
==================

- Fix Python 2.6 support. (Forgot to run tox with all environments before last
  release.)


4.3.1 (2013-02-24)
==================

- Make sure that we do not fail during bytes decoding of term token when
  generated from a bytes value by ignoring all errors. (Another option would
  have been to hexlify the value, but that would break way too many tests.)


4.3.0 (2013-02-24)
==================

- Fix a bug where bytes values were turned into tokens inproperly in
  Python 3.

- Add ``zope.schema.fieldproperty.createFieldProperties()`` function which
  maps schema fields into ``FieldProperty`` instances.

4.2.2 (2012-11-21)
==================

- Add support for Python 3.3.

4.2.1 (2012-11-09)
==================

- Fix the default property of fields that have no defaultFactory attribute.


4.2.0 (2012-05-12)
==================

- Automate build of Sphinx HTML docs and running doctest snippets via tox.

- Drop explicit support for Python 3.1.

- Introduce NativeString and NativeStringLine which are equal to Bytes and
  BytesLine on Python 2 and Text and TextLine on Python 3.

- Change IURI from a Bytes string to a "native" string. This is a backwards
  incompatibility which only affects Python 3.

- Bring unit test coverage to 100%.

- Move doctests from the package and wired up as normal Sphinx documentation.

- Add explicit support for PyPy.

- Add support for continuous integration using ``tox`` and ``jenkins``.

- Drop the external ``six`` dependency in favor of a much-trimmed
  ``zope.schema._compat`` module.

- Ensure tests pass when run under ``nose``.

- Add ``setup.py dev`` alias (runs ``setup.py develop`` plus installs
  ``nose`` and ``coverage``).

- Add ``setup.py docs`` alias (installs ``Sphinx`` and dependencies).


4.1.1 (2012-03-23)
==================

- Remove trailing slash in MANIFEST.in, it causes Winbot to crash.


4.1.0 (2012-03-23)
==================

- Add TreeVocabulary for nested tree-like vocabularies.

- Fix broken Object field validation where the schema contains a Choice with
  ICountextSourceBinder source. In this case the vocabulary was not iterable
  because the field was not bound and the source binder didn't return the
  real vocabulary. Added simple test for IContextSourceBinder validation. But a
  test with an Object field with a schema using a Choice with
  IContextSourceBinder is still missing.

4.0.1 (2011-11-14)
==================

- Fix bug in ``fromUnicode`` method of ``DottedName`` which would fail
  validation on being given unicode. Introduced in 4.0.0.

4.0.0 (2011-11-09)
==================

- Fix deprecated unittest methods.

- Port to Python 3. This adds a dependency on six and removes support for
  Python 2.5.

3.8.1 (2011-09-23)
==================

- Fix broken Object field validation. Previous version was using a volatile
  property on object field values which ends in a ForbiddenAttribute error
  on security proxied objects.

3.8.0 (2011-03-18)
==================

- Implement a ``defaultFactory`` attribute for all fields. It is a callable
  that can be used to compute default values. The simplest case is::

    Date(defaultFactory=datetime.date.today)

  If the factory needs a context to compute a sensible default value, then it
  must provide ``IContextAwareDefaultFactory``, which can be used as follows::

    @provider(IContextAwareDefaultFactory)
    def today(context):
        return context.today()

    Date(defaultFactory=today)

3.7.1 (2010-12-25)
==================

- Rename the validation token, used in the validation of schema with Object
  Field to avoid infinite recursion:
  ``__schema_being_validated`` became ``_v_schema_being_validated``,
  a volatile attribute, to avoid persistency and therefore,
  read/write conflicts.

- Don't allow "[\]^`" in DottedName.
  https://bugs.launchpad.net/zope.schema/+bug/191236

3.7.0 (2010-09-12)
==================

- Improve error messages when term tokens or values are duplicates.

- Fix the buildout so the tests run.

3.6.4 (2010-06-08)
==================

- fix validation of schema with Object Field that specify Interface schema.

3.6.3 (2010-04-30)
==================

- Prefer the standard libraries doctest module to the one from zope.testing.

3.6.2 (2010-04-30)
==================

- Avoid maximum recursion when validating Object field that points to cycles

- Make the dependency on ``zope.i18nmessageid`` optional.

3.6.1 (2010-01-05)
==================

- Allow "setup.py test" to run at least a subset of the tests runnable
  via ``bin/test`` (227 for ``setup.py test`` vs. 258. for
  ``bin/test``)

- Make ``zope.schema._bootstrapfields.ValidatedProperty`` descriptor
  work under Jython.

- Make "setup.py test" tests pass on Jython.

3.6.0 (2009-12-22)
==================

- Prefer zope.testing.doctest over doctestunit.

- Extend validation error to hold the field name.

- Add FieldProperty class that uses Field.get and Field.set methods
  instead of storing directly on the instance __dict__.

3.5.4 (2009-03-25)
==================

- Don't fail trying to validate default value for Choice fields with
  IContextSourceBinder object given as a source. See
  https://bugs.launchpad.net/zope3/+bug/340416.

- Add an interface for ``DottedName`` field.

- Add ``vocabularyName`` attribute to the ``IChoice`` interface, change
  "vocabulary" attribute description to be more sensible, making it
  ``zope.schema.Field`` instead of plain ``zope.interface.Attribute``.

- Make IBool interface of Bool more important than IFromUnicode so adapters
  registered for IBool take precendence over adapters registered for
  IFromUnicode.


3.5.3 (2009-03-10)
==================

- Make Choice and Bool fields implement IFromUnicode interface, because
  they do provide the ``fromUnicode`` method.

- Change package's mailing list address to zope-dev at zope.org, as
  zope3-dev at zope.org is now retired.

- Fix package's documentation formatting. Change package's description.

- Add buildout part that builds Sphinx-generated documentation.

- Remove zpkg-related file.

3.5.2 (2009-02-04)
==================

- Made validation tests compatible with Python 2.5 again (hopefully not
  breaking Python 2.4)

- Add an __all__ package attribute to expose documentation.

3.5.1 (2009-01-31)
==================

- Stop using the old old set type.

- Make tests compatible and silent with Python 2.4.

- Fix __cmp__ method in ValidationError. Show some side effects based on the
  existing __cmp__ implementation. See validation.txt

- Make 'repr' of the ValidationError and its subclasses more sensible. This
  may require you to adapt your doctests for the new style, but now it makes
  much more sense for debugging for developers.

3.5.0a2 (2008-12-11)
====================

- Move zope.testing to "test" extras_require, as it is not needed
  for zope.schema itself.

- Change the order of classes in SET_TYPES tuple, introduced in
  previous release to one that was in 3.4 (SetType, set), because
  third-party code could be dependent on that order. The one
  example is z3c.form's converter.

3.5.0a1 (2008-10-10)
====================

- Add the doctests to the long description.

- Remove use of deprecated 'sets' module when running under Python 2.6.

- Remove spurious doctest failure when running under Python 2.6.

- Add support to bootstrap on Jython.

- Add helper methods for schema validation: ``getValidationErrors``
  and ``getSchemaValidationErrors``.

- zope.schema now works on Python2.5

3.4.0 (2007-09-28)
==================

Add BeforeObjectAssignedEvent that is triggered before the object
field sets a value.

3.3.0 (2007-03-15)
==================

Corresponds to the version of the zope.schema package shipped as part of
the Zope 3.3.0 release.

3.2.1 (2006-03-26)
==================

Corresponds to the version of the zope.schema package shipped as part of
the Zope 3.2.1 release.

Fix missing import of 'VocabularyRegistryError'.  See
http://www.zope.org/Collectors/Zope3-dev/544 .

3.2.0 (2006-01-05)
==================

Corresponds to the version of the zope.schema package shipped as part of
the Zope 3.2.0 release.

Add "iterable" sources to replace vocabularies, which are now deprecated
and scheduled for removal in Zope 3.3.

3.1.0 (2005-10-03)
==================

Corresponds to the version of the zope.schema package shipped as part of
the Zope 3.1.0 release.

Allow 'Choice' fields to take either a 'vocabulary' or a 'source'
argument (sources are a simpler implementation).

Add 'TimeDelta' and 'ASCIILine' field types.

3.0.0 (2004-11-07)
==================

Corresponds to the version of the zope.schema package shipped as part of
the Zope X3.0.0 release.

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/zopefoundation/zope.schema",
    "name": "zope.schema",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.7",
    "maintainer_email": "",
    "keywords": "zope3 schema field interface typing",
    "author": "Zope Foundation and Contributors",
    "author_email": "zope-dev@zope.org",
    "download_url": "https://files.pythonhosted.org/packages/82/67/91585500260386df145b78532de588b41470d416bc6fa1cdc1b0f7a34e68/zope.schema-7.0.1.tar.gz",
    "platform": null,
    "description": "=============\n zope.schema\n=============\n\n.. image:: https://img.shields.io/pypi/v/zope.schema.svg\n   :target: https://pypi.org/project/zope.schema/\n   :alt: Latest Version\n\n.. image:: https://img.shields.io/pypi/pyversions/zope.schema.svg\n   :target: https://pypi.org/project/zope.schema/\n   :alt: Supported Python versions\n\n.. image:: https://github.com/zopefoundation/zope.schema/workflows/tests/badge.svg\n   :target: https://github.com/zopefoundation/zope.schema/actions?query=workflow%3Atests\n   :alt: Tests Status\n\n.. image:: https://readthedocs.org/projects/zopeschema/badge/?version=latest\n   :target: https://zopeschema.readthedocs.org/en/latest/\n   :alt: Documentation Status\n\n.. image:: https://coveralls.io/repos/github/zopefoundation/zope.schema/badge.svg\n   :target: https://coveralls.io/github/zopefoundation/zope.schema\n   :alt: Code Coverage\n\nSchemas extend the notion of interfaces to detailed descriptions of\nAttributes (but not methods).  Every schema is an interface and\nspecifies the public fields of an object.  A *field* roughly\ncorresponds to an attribute of a Python object.  But a Field provides\nspace for at least a title and a description.  It can also constrain\nits value and provide a validation method.  Besides you can optionally\nspecify characteristics such as its value being read-only or not\nrequired.\n\nSee https://zopeschema.readthedocs.io/ for more information.\n\n\n=========\n Changes\n=========\n\n7.0.1 (2023-01-02)\n==================\n\n- Fix fallback when ``zope.i18nmessageid`` is not installed (regression\n  introduced in 7.0.0).\n\n\n7.0.0 (2023-01-01)\n==================\n\n- Add support for Python 3.11.\n\n- Drop support for Python 2.7, 3.5, 3.6.\n\n- Drop ``zope.schema._compat`` module.\n\n- Fix test deprecation warning on Python 3.11.\n  (`#112 <https://github.com/zopefoundation/zope.schema/issues/112>`_)\n\n6.2.1 (2022-09-14)\n==================\n\n- Fix outsized integer test values that break tests on newer Python versions.\n  (`#115 <https://github.com/zopefoundation/zope.schema/issues/115>`_)\n\n\n6.2.0 (2021-10-18)\n==================\n\n- Add support for Python 3.10.\n\n\n6.1.1 (2021-10-13)\n==================\n\n- Fix incompatibility introduced in 6.1.0:\n  The `Bool` field constructor implicitly set required to False if not given.\n  While this is the desired behavior in most common cases,\n  it broke special cases.\n  See `issue 104 <https://github.com/zopefoundation/zope.schema/issues/104>`_\n  (scroll down, it is around the *reopen*).\n\n\n6.1.0 (2021-02-09)\n==================\n\n- Fix ``IField.required`` to not be required by default.\n  See `issue 104 <https://github.com/zopefoundation/zope.schema/issues/104>`_.\n\n6.0.1 (2021-01-25)\n==================\n\n- Bring branch coverage to 100%.\n\n- Add support for Python 3.9.\n\n- Fix FieldUpdateEvent implementation by having an ``object`` attribute as the\n  ``IFieldUpdatedEvent`` interfaces claims there should be.\n\n6.0.0 (2020-03-21)\n==================\n\n- Require zope.interface 5.0.\n\n- Ensure the resolution orders of all fields are consistent and make\n  sense. In particular, ``Bool`` fields now correctly implement\n  ``IBool`` before ``IFromUnicode``. See `issue 80\n  <https://github.com/zopefoundation/zope.schema/issues/80>`_.\n\n- Add support for Python 3.8.\n\n- Drop support for Python 3.4.\n\n5.0.1 (2020-03-06)\n==================\n\n- Fix: add ``Text.unicode_normalization = 'NFC'`` as default, because some are\n  persisting schema fields. Setting that attribute only in ``__init__``\n  breaks loading old objects.\n\n\n5.0 (2020-03-06)\n================\n\n- Set ``IDecimal`` attributes ``min``, ``max`` and ``default`` as ``Decimal``\n  type instead of ``Number``.\n  See `issue 88 <https://github.com/zopefoundation/zope.schema/issues/88>`_.\n\n- Enable unicode normalization for ``Text`` fields.\n  The default is NFC normalization. Valid forms are 'NFC', 'NFKC', 'NFD', and\n  'NFKD'. To disable normalization, set ``unicode_normalization`` to ``False``\n  or ``None`` when calling ``__init__`` of the ``Text`` field.\n  See `issue 86 <https://github.com/zopefoundation/zope.schema/issues/86>`_.\n\n\n4.9.3 (2018-10-12)\n==================\n\n- Fix a ReST error in getDoc() results when having \"subfields\"\n  with titles.\n\n\n4.9.2 (2018-10-11)\n==================\n\n- Make sure that the title for ``IObject.validate_invariants`` is a unicode\n  string.\n\n\n4.9.1 (2018-10-05)\n==================\n\n- Fix ``SimpleTerm`` token for non-ASCII bytes values.\n\n\n4.9.0 (2018-09-24)\n==================\n\n- Make ``NativeString`` and ``NativeStringLine`` distinct types that\n  implement the newly-distinct interfaces ``INativeString`` and\n  ``INativeStringLine``. Previously these were just aliases for either\n  ``Text`` (on Python 3) or ``Bytes`` (on Python 2).\n\n- Fix ``Field.getDoc()`` when ``value_type`` or ``key_type`` is\n  present. Previously it could produce ReST that generated Sphinx\n  warnings. See `issue 76 <https://github.com/zopefoundation/zope.schema/issues/76>`_.\n\n- Make ``DottedName`` accept leading underscores for each segment.\n\n- Add ``PythonIdentifier``, which accepts one segment of a dotted\n  name, e.g., a python variable or class.\n\n4.8.0 (2018-09-19)\n==================\n\n- Add the interface ``IFromBytes``, which is implemented by the\n  numeric and bytes fields, as well as ``URI``, ``DottedName``, and\n  ``Id``.\n\n- Fix passing ``None`` as the description to a field constructor. See\n  `issue 69 <https://github.com/zopefoundation/zope.schema/issues/69>`_.\n\n4.7.0 (2018-09-11)\n==================\n\n- Make ``WrongType`` have an ``expected_type`` field.\n\n- Add ``NotAnInterface``, an exception derived from ``WrongType`` and\n  ``SchemaNotProvided`` and raised by the constructor of ``Object``\n  and when validation fails for ``InterfaceField``.\n\n- Give ``SchemaNotProvided`` a ``schema`` field.\n\n- Give ``WrongContainedType`` an ``errors`` list.\n\n- Give ``TooShort``, ``TooLong``, ``TooBig`` and ``TooSmall`` a\n  ``bound`` field and the common superclasses ``LenOutOfBounds``,\n  ``OrderableOutOfBounds``, respectively, both of which inherit from\n  ``OutOfBounds``.\n\n4.6.2 (2018-09-10)\n==================\n\n- Fix checking a field's constraint to set the ``field`` and ``value``\n  properties if the constraint raises a ``ValidationError``. See\n  `issue 66\n  <https://github.com/zopefoundation/zope.schema/issues/66>`_.\n\n\n4.6.1 (2018-09-10)\n==================\n\n- Fix the ``Field`` constructor to again allow ``MessageID`` values\n  for the ``description``. This was a regression introduced with the\n  fix for `issue 60\n  <https://github.com/zopefoundation/zope.schema/issues/60>`_. See\n  `issue 63\n  <https://github.com/zopefoundation/zope.schema/issues/63>`_.\n\n\n4.6.0 (2018-09-07)\n==================\n\n- Add support for Python 3.7.\n\n- ``Object`` instances call their schema's ``validateInvariants``\n  method by default to collect errors from functions decorated with\n  ``@invariant`` when validating. This can be disabled by passing\n  ``validate_invariants=False`` to the ``Object`` constructor. See\n  `issue 10 <https://github.com/zopefoundation/zope.schema/issues/10>`_.\n\n- ``ValidationError`` can be sorted on Python 3.\n\n- ``DottedName`` and ``Id`` consistently handle non-ASCII unicode\n  values on Python 2 and 3 by raising ``InvalidDottedName`` and\n  ``InvalidId`` in ``fromUnicode`` respectively. Previously, a\n  ``UnicodeEncodeError`` would be raised on Python 2 while Python 3\n  would raise the descriptive exception.\n\n- ``Field`` instances are hashable on Python 3, and use a defined\n  hashing algorithm that matches what equality does on all versions of\n  Python. Previously, on Python 2, fields were hashed based on their\n  identity. This violated the rule that equal objects should have\n  equal hashes, and now they do. Since having equal hashes does not\n  imply that the objects are equal, this is not expected to be a\n  compatibility problem. See `issue 36\n  <https://github.com/zopefoundation/zope.schema/issues/36>`_.\n\n- ``Field`` instances are only equal when their ``.interface`` is\n  equal. In practice, this means that two otherwise identical fields\n  of separate schemas are not equal, do not hash the same, and can\n  both be members of the same ``dict`` or ``set``. Prior to this\n  release, when hashing was identity based but only worked on Python\n  2, that was the typical behaviour. (Field objects that are *not*\n  members of a schema continue to compare and hash equal if they have\n  the same attributes and interfaces.) See `issue 40\n  <https://github.com/zopefoundation/zope.schema/issues/40>`_.\n\n- Orderable fields, including ``Int``, ``Float``, ``Decimal``,\n  ``Timedelta``, ``Date`` and ``Time``, can now have a\n  ``missing_value`` without needing to specify concrete ``min`` and\n  ``max`` values (they must still specify a ``default`` value). See\n  `issue 9 <https://github.com/zopefoundation/zope.schema/issues/9>`_.\n\n- ``Choice``, ``SimpleVocabulary`` and  ``SimpleTerm`` all gracefully\n  handle using Unicode token values with non-ASCII characters by encoding\n  them with the ``backslashreplace`` error handler. See `issue 15\n  <https://github.com/zopefoundation/zope.schema/issues/15>`_ and `PR\n  6 <https://github.com/zopefoundation/zope.schema/pull/6>`_.\n\n- All instances of ``ValidationError`` have a ``field`` and ``value``\n  attribute that is set to the field that raised the exception and the\n  value that failed validation.\n\n- ``Float``, ``Int`` and ``Decimal`` fields raise ``ValidationError``\n  subclasses for literals that cannot be parsed. These subclasses also\n  subclass ``ValueError`` for backwards compatibility.\n\n- Add a new exception ``SchemaNotCorrectlyImplemented``, a subclass of\n  ``WrongContainedType`` that is raised by the ``Object`` field. It\n  has a dictionary (``schema_errors``) mapping invalid schema\n  attributes to their corresponding exception, and a list\n  (``invariant_errors``) containing the exceptions raised by\n  validating invariants. See `issue 16\n  <https://github.com/zopefoundation/zope.schema/issues/16>`_.\n\n- Add new fields ``Mapping`` and ``MutableMapping``, corresponding to\n  the collections ABCs of the same name; ``Dict`` now extends and\n  specializes ``MutableMapping`` to only accept instances of ``dict``.\n\n- Add new fields ``Sequence`` and ``MutableSequence``, corresponding\n  to the collections ABCs of the same name; ``Tuple`` now extends\n  ``Sequence`` and ``List`` now extends ``MutableSequence``.\n\n- Add new field ``Collection``, implementing ``ICollection``. This is\n  the base class of ``Sequence``. Previously this was known as\n  ``AbstractCollection`` and was not public. It can be subclassed to\n  add ``value_type``, ``_type`` and ``unique`` attributes at the class\n  level, enabling a simpler constructor call. See `issue 23\n  <https://github.com/zopefoundation/zope.schema/issues/23>`_.\n\n- Make ``Object`` respect a ``schema`` attribute defined by a\n  subclass, enabling a simpler constructor call. See `issue 23\n  <https://github.com/zopefoundation/zope.schema/issues/23>`_.\n\n- Add fields and interfaces representing Python's numeric tower. In\n  descending order of generality these are ``Number``, ``Complex``,\n  ``Real``, ``Rational`` and ``Integral``. The ``Int`` class extends\n  ``Integral``, the ``Float`` class extends ``Real``, and the\n  ``Decimal`` class extends ``Number``. See `issue 49\n  <https://github.com/zopefoundation/zope.schema/issues/49>`_.\n\n- Make ``Iterable`` and ``Container`` properly implement ``IIterable``\n  and ``IContainer``, respectively.\n\n- Make ``SimpleVocabulary.fromItems`` accept triples to allow\n  specifying the title of terms. See `issue 18\n  <https://github.com/zopefoundation/zope.schema/issues/18>`_.\n\n- Make ``TreeVocabulary.fromDict`` only create\n  ``ITitledTokenizedTerms`` when a title is actually provided.\n\n- Make ``Choice`` fields reliably raise a ``ValidationError`` when a\n  named vocabulary cannot be found; for backwards compatibility this\n  is also a ``ValueError``. Previously this only worked when the\n  default ``VocabularyRegistry`` was in use, not when it was replaced\n  with `zope.vocabularyregistry\n  <https://pypi.org/project/zope.vocabularyregistry/>`_. See `issue 55\n  <https://github.com/zopefoundation/zope.schema/issues/55>`_.\n\n- Make ``SimpleVocabulary`` and ``SimpleTerm`` have value-based\n  equality and hashing methods.\n\n- All fields of the schema of an ``Object`` field are bound to the\n  top-level value being validated before attempting validation of\n  their particular attribute. Previously only ``IChoice`` fields were\n  bound. See `issue 17\n  <https://github.com/zopefoundation/zope.schema/issues/17>`_.\n\n- Share the internal logic of ``Object`` field validation and\n  ``zope.schema.getValidationErrors``. See `issue 57\n  <https://github.com/zopefoundation/zope.schema/issues/57>`_.\n\n\n- Make ``Field.getDoc()`` return more information about the properties\n  of the field, such as its required and readonly status. Subclasses\n  can add more information using the new method\n  ``Field.getExtraDocLines()``. This is used to generate Sphinx\n  documentation when using `repoze.sphinx.autointerface\n  <https://pypi.org/project/repoze.sphinx.autointerface/>`_. See\n  `issue 60\n  <https://github.com/zopefoundation/zope.schema/issues/60>`_.\n\n\n4.5.0 (2017-07-10)\n==================\n\n- Drop support for Python 2.6, 3.2, and 3.3.\n\n- Add support for Python 3.5 and 3.6.\n\n- Drop support for 'setup.py test'. Use zope.testrunner instead.\n\n\n4.4.2 (2014-09-04)\n==================\n\n- Fix description of min max field: max value is included, not excluded.\n\n\n4.4.1 (2014-03-19)\n==================\n\n- Add support for Python 3.4.\n\n\n4.4.0 (2014-01-22)\n==================\n\n- Add an event on field properties to notify that a field has been updated.\n  This event enables definition of subscribers based on an event, a context\n  and a field. The event contains also the old value and the new value.\n  (also see package ``zope.schemaevent`` that define a field event handler)\n\n\n4.3.3 (2014-01-06)\n==================\n\n- PEP 8 cleanup.\n\n- Don't raise RequiredMissing if a field's defaultFactory returns the field's\n  missing_value.\n\n- Update ``boostrap.py`` to version 2.2.\n\n- Add the ability to swallow ValueErrors when rendering a SimpleVocabulary,\n  allowing for cases where vocabulary items may be duplicated (e.g., due to\n  user input).\n\n- Include the field name in ``ConstraintNotSatisfied``.\n\n\n4.3.2 (2013-02-24)\n==================\n\n- Fix Python 2.6 support. (Forgot to run tox with all environments before last\n  release.)\n\n\n4.3.1 (2013-02-24)\n==================\n\n- Make sure that we do not fail during bytes decoding of term token when\n  generated from a bytes value by ignoring all errors. (Another option would\n  have been to hexlify the value, but that would break way too many tests.)\n\n\n4.3.0 (2013-02-24)\n==================\n\n- Fix a bug where bytes values were turned into tokens inproperly in\n  Python 3.\n\n- Add ``zope.schema.fieldproperty.createFieldProperties()`` function which\n  maps schema fields into ``FieldProperty`` instances.\n\n4.2.2 (2012-11-21)\n==================\n\n- Add support for Python 3.3.\n\n4.2.1 (2012-11-09)\n==================\n\n- Fix the default property of fields that have no defaultFactory attribute.\n\n\n4.2.0 (2012-05-12)\n==================\n\n- Automate build of Sphinx HTML docs and running doctest snippets via tox.\n\n- Drop explicit support for Python 3.1.\n\n- Introduce NativeString and NativeStringLine which are equal to Bytes and\n  BytesLine on Python 2 and Text and TextLine on Python 3.\n\n- Change IURI from a Bytes string to a \"native\" string. This is a backwards\n  incompatibility which only affects Python 3.\n\n- Bring unit test coverage to 100%.\n\n- Move doctests from the package and wired up as normal Sphinx documentation.\n\n- Add explicit support for PyPy.\n\n- Add support for continuous integration using ``tox`` and ``jenkins``.\n\n- Drop the external ``six`` dependency in favor of a much-trimmed\n  ``zope.schema._compat`` module.\n\n- Ensure tests pass when run under ``nose``.\n\n- Add ``setup.py dev`` alias (runs ``setup.py develop`` plus installs\n  ``nose`` and ``coverage``).\n\n- Add ``setup.py docs`` alias (installs ``Sphinx`` and dependencies).\n\n\n4.1.1 (2012-03-23)\n==================\n\n- Remove trailing slash in MANIFEST.in, it causes Winbot to crash.\n\n\n4.1.0 (2012-03-23)\n==================\n\n- Add TreeVocabulary for nested tree-like vocabularies.\n\n- Fix broken Object field validation where the schema contains a Choice with\n  ICountextSourceBinder source. In this case the vocabulary was not iterable\n  because the field was not bound and the source binder didn't return the\n  real vocabulary. Added simple test for IContextSourceBinder validation. But a\n  test with an Object field with a schema using a Choice with\n  IContextSourceBinder is still missing.\n\n4.0.1 (2011-11-14)\n==================\n\n- Fix bug in ``fromUnicode`` method of ``DottedName`` which would fail\n  validation on being given unicode. Introduced in 4.0.0.\n\n4.0.0 (2011-11-09)\n==================\n\n- Fix deprecated unittest methods.\n\n- Port to Python 3. This adds a dependency on six and removes support for\n  Python 2.5.\n\n3.8.1 (2011-09-23)\n==================\n\n- Fix broken Object field validation. Previous version was using a volatile\n  property on object field values which ends in a ForbiddenAttribute error\n  on security proxied objects.\n\n3.8.0 (2011-03-18)\n==================\n\n- Implement a ``defaultFactory`` attribute for all fields. It is a callable\n  that can be used to compute default values. The simplest case is::\n\n    Date(defaultFactory=datetime.date.today)\n\n  If the factory needs a context to compute a sensible default value, then it\n  must provide ``IContextAwareDefaultFactory``, which can be used as follows::\n\n    @provider(IContextAwareDefaultFactory)\n    def today(context):\n        return context.today()\n\n    Date(defaultFactory=today)\n\n3.7.1 (2010-12-25)\n==================\n\n- Rename the validation token, used in the validation of schema with Object\n  Field to avoid infinite recursion:\n  ``__schema_being_validated`` became ``_v_schema_being_validated``,\n  a volatile attribute, to avoid persistency and therefore,\n  read/write conflicts.\n\n- Don't allow \"[\\]^`\" in DottedName.\n  https://bugs.launchpad.net/zope.schema/+bug/191236\n\n3.7.0 (2010-09-12)\n==================\n\n- Improve error messages when term tokens or values are duplicates.\n\n- Fix the buildout so the tests run.\n\n3.6.4 (2010-06-08)\n==================\n\n- fix validation of schema with Object Field that specify Interface schema.\n\n3.6.3 (2010-04-30)\n==================\n\n- Prefer the standard libraries doctest module to the one from zope.testing.\n\n3.6.2 (2010-04-30)\n==================\n\n- Avoid maximum recursion when validating Object field that points to cycles\n\n- Make the dependency on ``zope.i18nmessageid`` optional.\n\n3.6.1 (2010-01-05)\n==================\n\n- Allow \"setup.py test\" to run at least a subset of the tests runnable\n  via ``bin/test`` (227 for ``setup.py test`` vs. 258. for\n  ``bin/test``)\n\n- Make ``zope.schema._bootstrapfields.ValidatedProperty`` descriptor\n  work under Jython.\n\n- Make \"setup.py test\" tests pass on Jython.\n\n3.6.0 (2009-12-22)\n==================\n\n- Prefer zope.testing.doctest over doctestunit.\n\n- Extend validation error to hold the field name.\n\n- Add FieldProperty class that uses Field.get and Field.set methods\n  instead of storing directly on the instance __dict__.\n\n3.5.4 (2009-03-25)\n==================\n\n- Don't fail trying to validate default value for Choice fields with\n  IContextSourceBinder object given as a source. See\n  https://bugs.launchpad.net/zope3/+bug/340416.\n\n- Add an interface for ``DottedName`` field.\n\n- Add ``vocabularyName`` attribute to the ``IChoice`` interface, change\n  \"vocabulary\" attribute description to be more sensible, making it\n  ``zope.schema.Field`` instead of plain ``zope.interface.Attribute``.\n\n- Make IBool interface of Bool more important than IFromUnicode so adapters\n  registered for IBool take precendence over adapters registered for\n  IFromUnicode.\n\n\n3.5.3 (2009-03-10)\n==================\n\n- Make Choice and Bool fields implement IFromUnicode interface, because\n  they do provide the ``fromUnicode`` method.\n\n- Change package's mailing list address to zope-dev at zope.org, as\n  zope3-dev at zope.org is now retired.\n\n- Fix package's documentation formatting. Change package's description.\n\n- Add buildout part that builds Sphinx-generated documentation.\n\n- Remove zpkg-related file.\n\n3.5.2 (2009-02-04)\n==================\n\n- Made validation tests compatible with Python 2.5 again (hopefully not\n  breaking Python 2.4)\n\n- Add an __all__ package attribute to expose documentation.\n\n3.5.1 (2009-01-31)\n==================\n\n- Stop using the old old set type.\n\n- Make tests compatible and silent with Python 2.4.\n\n- Fix __cmp__ method in ValidationError. Show some side effects based on the\n  existing __cmp__ implementation. See validation.txt\n\n- Make 'repr' of the ValidationError and its subclasses more sensible. This\n  may require you to adapt your doctests for the new style, but now it makes\n  much more sense for debugging for developers.\n\n3.5.0a2 (2008-12-11)\n====================\n\n- Move zope.testing to \"test\" extras_require, as it is not needed\n  for zope.schema itself.\n\n- Change the order of classes in SET_TYPES tuple, introduced in\n  previous release to one that was in 3.4 (SetType, set), because\n  third-party code could be dependent on that order. The one\n  example is z3c.form's converter.\n\n3.5.0a1 (2008-10-10)\n====================\n\n- Add the doctests to the long description.\n\n- Remove use of deprecated 'sets' module when running under Python 2.6.\n\n- Remove spurious doctest failure when running under Python 2.6.\n\n- Add support to bootstrap on Jython.\n\n- Add helper methods for schema validation: ``getValidationErrors``\n  and ``getSchemaValidationErrors``.\n\n- zope.schema now works on Python2.5\n\n3.4.0 (2007-09-28)\n==================\n\nAdd BeforeObjectAssignedEvent that is triggered before the object\nfield sets a value.\n\n3.3.0 (2007-03-15)\n==================\n\nCorresponds to the version of the zope.schema package shipped as part of\nthe Zope 3.3.0 release.\n\n3.2.1 (2006-03-26)\n==================\n\nCorresponds to the version of the zope.schema package shipped as part of\nthe Zope 3.2.1 release.\n\nFix missing import of 'VocabularyRegistryError'.  See\nhttp://www.zope.org/Collectors/Zope3-dev/544 .\n\n3.2.0 (2006-01-05)\n==================\n\nCorresponds to the version of the zope.schema package shipped as part of\nthe Zope 3.2.0 release.\n\nAdd \"iterable\" sources to replace vocabularies, which are now deprecated\nand scheduled for removal in Zope 3.3.\n\n3.1.0 (2005-10-03)\n==================\n\nCorresponds to the version of the zope.schema package shipped as part of\nthe Zope 3.1.0 release.\n\nAllow 'Choice' fields to take either a 'vocabulary' or a 'source'\nargument (sources are a simpler implementation).\n\nAdd 'TimeDelta' and 'ASCIILine' field types.\n\n3.0.0 (2004-11-07)\n==================\n\nCorresponds to the version of the zope.schema package shipped as part of\nthe Zope X3.0.0 release.\n",
    "bugtrack_url": null,
    "license": "ZPL 2.1",
    "summary": "zope.interface extension for defining data schemas",
    "version": "7.0.1",
    "project_urls": {
        "Homepage": "https://github.com/zopefoundation/zope.schema"
    },
    "split_keywords": [
        "zope3",
        "schema",
        "field",
        "interface",
        "typing"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1d97517e3f5f4258bcc6491c806474a26e1a799bb99ec44ed95d22010caabc25",
                "md5": "5f994e5a9b20490a533422be9a4cacc0",
                "sha256": "cf006c678793b00e0075ad54d55281c8785ea21e5bc1f5ec0584787719c2aab2"
            },
            "downloads": -1,
            "filename": "zope.schema-7.0.1-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "5f994e5a9b20490a533422be9a4cacc0",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.7",
            "size": 85870,
            "upload_time": "2023-01-02T14:17:13",
            "upload_time_iso_8601": "2023-01-02T14:17:13.492863Z",
            "url": "https://files.pythonhosted.org/packages/1d/97/517e3f5f4258bcc6491c806474a26e1a799bb99ec44ed95d22010caabc25/zope.schema-7.0.1-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "826791585500260386df145b78532de588b41470d416bc6fa1cdc1b0f7a34e68",
                "md5": "d938af4000a89fa101d2f48f7a8fdd75",
                "sha256": "ead4dbcb03354d4e410c9a3b904451eb44d90254751b1cbdedf4a61aede9fbb9"
            },
            "downloads": -1,
            "filename": "zope.schema-7.0.1.tar.gz",
            "has_sig": false,
            "md5_digest": "d938af4000a89fa101d2f48f7a8fdd75",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.7",
            "size": 108737,
            "upload_time": "2023-01-02T14:17:16",
            "upload_time_iso_8601": "2023-01-02T14:17:16.067523Z",
            "url": "https://files.pythonhosted.org/packages/82/67/91585500260386df145b78532de588b41470d416bc6fa1cdc1b0f7a34e68/zope.schema-7.0.1.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-01-02 14:17:16",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "zopefoundation",
    "github_project": "zope.schema",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "tox": true,
    "lcname": "zope.schema"
}
        
Elapsed time: 0.12545s