plone.supermodel


Nameplone.supermodel JSON
Version 2.0.3 PyPI version JSON
download
home_pagehttps://github.com/plone/plone.supermodel
SummarySerialize Zope schema definitions to and from XML
upload_time2023-03-21 23:03:20
maintainer
docs_urlNone
authorMartin Aspeli
requires_python>=3.8
licenseBSD
keywords plone xml schema
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            Introduction
============

plone.supermodel provides XML import and export for schema interfaces based on
zope.schema fields. The principal use cases are:

 1. Define a schema interface in code based on an XML file. This can be done
 with syntax like::

  >>> from plone.supermodel import xmlSchema
  >>> IMySchema = xmlSchema("myschema.xml")

 2. Save and load interface definitions via an XML format. To turn a schema
 interface into XML, you can do::

  >>> from plone.supermodel import serializeSchema
  >>> xml_string = serializeSchema(IMySchema)

To get a schema from an XML file, you can use the xmlSchema() function above,
or you can use the more powerful spec() function, which turns a dict of all
schemata and widget hints in a given XML file.

See schema.txt and interfaces.py in the source code for more information,
including details on how to give widget hints for forms and how to keep
multiple schemata in the same XML file.

Supermodel vs. Userschema
-------------------------

This package is quite similar to Tres Seaver's "userschema" library, which
can be found at http://agendaless.com/Members/tseaver/software/userschema.

In fact, plone.supermodel was originally based on userschema. However, as the
package was refined and refactored, less and less of userschema remained,
to the point where we'd have needed to significantly refactor the latter to
keep using it.

The XML import/export code is currently based on algorithms that were written
for plone.app.portlets and plone.app.contentrules' GenericSetup handlers.

Some of the key differences between the two packages are:

 - userschema can create schema interfaces from HTML forms and CSV
   spreadsheets. plone.supermodel does not support such configuration.

 - Schemata created with userschema are typically loaded at startup, with
   a ZCML directive. plone.supermodel supports a "pseudo-base class" syntax,
   as seen above, to define interfaces in Python code. Beyond that, its API
   is more geared towards runtime configuration.

 - plone.supermodel supports serialisation of schemata to XML.

 - The plone.supermodel XML syntax is more directly tied to zope.schema
   fields, and infers most parameters from the schema interface declared by
   each zope.schema field. This has two advantages:

    - API documentation for zope.schema can be easily applied to <schema />
      blocks
    - New fields and obscure attributes are easier to support

 - plone.supermodel's XML schema is intended to support more schema metadata,
   including widget hints.

In the future, it may be possible to make userschema re-use part of
plone.supermodel or vice-a-versa, with more refactoring.


Changelog
=========

.. You should *NOT* be adding new change log entries to this file.
   You should create a file in the news directory instead.
   For helpful instructions, please see:
   https://github.com/plone/plone.releaser/blob/master/ADD-A-NEWS-ITEM.rst

.. towncrier release notes start

2.0.3 (2023-03-22)
------------------

Internal:


- Update configuration files.
  [plone devs] (13d8d6c0, 243ca9ec)


2.0.2 (2023-02-07)
------------------

Bug fixes:


- Update package configuration.
  [gforcada] (#1)


2.0.1 (2023-01-27)
------------------

Bug fixes:


- Unify repository configuration via github.com/plone/meta.
  [gforcada, maurits] (#1)


2.0.0 (2022-07-13)
------------------

Bug fixes:


- Release 1.6.4 as 2.0.0.  This was meant as a major release.
  I have rereleased 1.6.3 as 1.6.5.
  [maurits] (#27)


1.6.4 (2021-09-01)
------------------

Breaking changes:


- Make finalizeSchema more robust by not handling behavior schema classes (#27)


1.6.3 (2020-11-17)
------------------

Bug fixes:


- For increased security, in the xml parser do not resolve entities, and remove processing instructions.
  [maurits] (#3209)


1.6.2 (2020-06-24)
------------------

Bug fixes:


- Decimal field moved in zope.schema, do not depend on specific dotted name in test b/c it does not matter. 
  [jensens] (#37)
- Fix a deprecation warning on a regular expression [ale-rt] (#38)


1.6.1 (2020-04-22)
------------------

Bug fixes:


- Minor packaging updates. (#1)


1.6.0 (2020-03-09)
------------------

New features:


- zope.interface master, upcoming v5.0, initializes ``_v_attrs`` with ``None`` to save memory and creates the dict upon first usage.
  So we need to do so in order to support the new version. (#33)
- Support for zope.interface 4.7+ [jensens] (#34)


1.5.0 (2019-12-11)
------------------

New features:


- Add support for choices of integers for improved registry.xml export.
  [jone] (#32)


1.4.1 (2019-11-25)
------------------

Bug fixes:

- tests to ensure schema.Set is serialized consistently (#30)



1.4.0 (2018-09-28)
------------------

New features:

- Python 3 compatibility.
  [pbauer, davilima6, dhavlik, ale-rt]


1.3.4 (2017-11-24)
------------------

Bug fixes:

- Python3 compatibility with sixer
  [ale-rt]


1.3.3 (2017-06-04)
------------------

Bug fixes:

- Fixed typecasting of IChoice based on its vocabulary. #16
  [iham]


1.3.2 (2017-02-05)
------------------

Bug fixes:

- Fix issue where supermodel XML choice field parser failed to parse vocabulary
  values with separate keys and display titles, because the parser expected
  values tag to not have any namespace.
  [datakurre]


1.3.1 (2016-12-30)
------------------

Bug fixes:

- Test-Fix: Support latest zope.i18nmessageid.
  [jensens]


1.3.0 (2016-06-07)
------------------

New:

- Python 2.6 and Plone 4.3 no longer officially supported.  It might
  still work, but no special effort is made to keep this compatible.
  [maurits]

- Support to define the order of fieldsets.
  [jensens]

Fixes:

- Remove temporary fix regarding test failures on Zope 4, as it's already fixed.
  [thet]

- Update setup.py url to point to github location.
  [esteele]

- Unset _init_field flag on init completion.
  [metatoaster]


1.2.7 (2016-02-12)
------------------

Fixes:

- Add temporary fix for a test failure within a Zope 4 environment.
  [pbauer]


1.2.6 (2014-10-20)
------------------

- Code modernization: sorted imports, use decorators, utf8 headers.
  [jensens]

- Add i18n serialization from schema value to XML model
  [datakurre]

1.2.5 (2014-09-07)
------------------

- Support Choice fields with terms containing distinct title from value
  as option, while preserving backward-compatible round-trip for all
  Choice fields where title is not distinct from value.
  [seanupton]

- Fix parsing of empty Choice term to u'', not None, which addresses a
  cause of https://github.com/plone/plone.app.dexterity/issues/49
  [seanupton]

- Explicitly construct SimpleTerm instances for each Choice field
  element, instead of relying on zope.schema constructors to do so.
  This ensures that all terms have non-None title attributes.
  [seanupton]

- Tests for ChoiceHandler serialization and parsing.
  [seanupton]


1.2.4 (2014-01-27)
------------------

- Add invariant tag, a sub-element of schema, that accepts a dotted name as
  a value. Invariants must provide plone.supermodel.interface.IInvariant.
  [smcmahon]

- Replace deprecated test assert statements.
  [timo]


1.2.3 (2013-08-14)
------------------

- Add defaultFactory tag for Dexterity XML. Define an interface
  IDefaultFactory. defaultFactories specified via XML must implement it or
  IContextAwareDefaultFactory.
  [smcmahon]


1.2.2 (2013-05-23)
------------------

- Avoid trying to process XML comments within field values.
  [davisagli]


1.2.1 (2013-01-01)
------------------

- Allow XML comments in field definitions.
  [gweis]

1.2.0 (2012-10-17)
------------------

- Nothing changed yet.


1.1.2 (2012-08-29)
------------------

- Use lxml instead of elementtree.
  [davisagli]

- Avoid a test dependency on zope.app.testing.
  [davisagli]


1.1.1 (2012-04-15)
------------------

- Fix a packaging error.
  [esteele]

1.1 (2012-04-15)
----------------

- Support i18n:domain and i18n:translate for internationalization.
  [davisagli]

- When an error is encountered while parsing a supermodel, the exception
  now provides the filename, line number, and source of the part of the
  model that was being processed. Inclusion of the line number and source
  requires lxml.
  [davisagli]

- Add model.Schema and directives to avoid grok dependency.
  [elro]

1.0.4 - 2012-02-20
------------------

- When syncing to a schema that inherits fields from a base, include fields
  with the same names as the inherited fields even when overwrite is False.
  This fixes http://code.google.com/p/dexterity/issues/detail?id=253
  [davisagli]

1.0.3 - 2011-05-20
------------------

- Relicense under BSD license.
  See http://plone.org/foundation/materials/foundation-resolutions/plone-framework-components-relicensing-policy
  [davisagli]

1.0.2 - 2011-05-02
------------------

- Only convert Choice field ``values`` attribute into a vocabulary when it is
  necessary to handle unicode values. This fixes a regression in compatibility
  with plone.registry.
  [davisagli]

1.0.1 - 2011-04-30
------------------

- Adjust manifest to exclude .pyc files.
  [davisagli]

1.0 - 2011-04-30
----------------

- Handle serializing tokenized vocabularies with unicode values as long as the
  terms' tokens are equal to the utf8-encoded values.
  [davisagli]


1.0b8 - 2011-03-18
------------------

- Add MANIFEST.in.
  [WouterVH]

- Field names should be strings, not unicode.
  [elro]


1.0b7 - 2011-03-03
------------------

- Support serialization of nested dicts/lists.
  [elro]


1.0b6 - 2011-01-04
------------------

- Declare zope.app.testing as a test dependency for Zope 2.13 compatibility.
  [esteele]

- Fix namespace bug which could prevent loading Dict and Collection elements.
  [davisagli]


1.0b5 - 2010-04-19
------------------

- Added support for zope.schema.Decimal fields.
  [optilude]


1.0b4 - 2009-11-17
------------------

- Ignored vocabularyName property when writing Choice fields. The constructor
  still uses they 'vocabulary' key in an overloaded capacity. We only support
  'vocabulary' with a named vocabulary, or 'values' with a list of values.
  This fixes test failures on Zope 2.12 / zope.schema 3.5.4.
  [optilude]


1.0b3 - 2009-09-28
------------------

- Add support for synchronising marker interfaces found on source fields
  to syncSchema().
  [optilude]


1.0b2 - 2009-07-12
------------------

- Changed API methods and arguments to mixedCase to be more consistent with
  the rest of Zope. This is a non-backwards-compatible change. Our profuse
  apologies, but it's now or never. :-/

  If you find that you get import errors or unknown keyword arguments in your
  code, please change names from foo_bar too fooBar, e.g. load_file() becomes
  loadFile().
  [optilude]

- No longer include name kwarg to Field constructor if no name was set
  [MatthewWilkes]


1.0b1 - 2009-04-17
------------------

- Initial release


            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/plone/plone.supermodel",
    "name": "plone.supermodel",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.8",
    "maintainer_email": "",
    "keywords": "Plone XML schema",
    "author": "Martin Aspeli",
    "author_email": "optilude@gmail.com",
    "download_url": "https://files.pythonhosted.org/packages/37/0b/0b02e4306317744f966559f427574029cb3582bd64ff968b4257556188bd/plone.supermodel-2.0.3.tar.gz",
    "platform": null,
    "description": "Introduction\n============\n\nplone.supermodel provides XML import and export for schema interfaces based on\nzope.schema fields. The principal use cases are:\n\n 1. Define a schema interface in code based on an XML file. This can be done\n with syntax like::\n\n  >>> from plone.supermodel import xmlSchema\n  >>> IMySchema = xmlSchema(\"myschema.xml\")\n\n 2. Save and load interface definitions via an XML format. To turn a schema\n interface into XML, you can do::\n\n  >>> from plone.supermodel import serializeSchema\n  >>> xml_string = serializeSchema(IMySchema)\n\nTo get a schema from an XML file, you can use the xmlSchema() function above,\nor you can use the more powerful spec() function, which turns a dict of all\nschemata and widget hints in a given XML file.\n\nSee schema.txt and interfaces.py in the source code for more information,\nincluding details on how to give widget hints for forms and how to keep\nmultiple schemata in the same XML file.\n\nSupermodel vs. Userschema\n-------------------------\n\nThis package is quite similar to Tres Seaver's \"userschema\" library, which\ncan be found at http://agendaless.com/Members/tseaver/software/userschema.\n\nIn fact, plone.supermodel was originally based on userschema. However, as the\npackage was refined and refactored, less and less of userschema remained,\nto the point where we'd have needed to significantly refactor the latter to\nkeep using it.\n\nThe XML import/export code is currently based on algorithms that were written\nfor plone.app.portlets and plone.app.contentrules' GenericSetup handlers.\n\nSome of the key differences between the two packages are:\n\n - userschema can create schema interfaces from HTML forms and CSV\n   spreadsheets. plone.supermodel does not support such configuration.\n\n - Schemata created with userschema are typically loaded at startup, with\n   a ZCML directive. plone.supermodel supports a \"pseudo-base class\" syntax,\n   as seen above, to define interfaces in Python code. Beyond that, its API\n   is more geared towards runtime configuration.\n\n - plone.supermodel supports serialisation of schemata to XML.\n\n - The plone.supermodel XML syntax is more directly tied to zope.schema\n   fields, and infers most parameters from the schema interface declared by\n   each zope.schema field. This has two advantages:\n\n    - API documentation for zope.schema can be easily applied to <schema />\n      blocks\n    - New fields and obscure attributes are easier to support\n\n - plone.supermodel's XML schema is intended to support more schema metadata,\n   including widget hints.\n\nIn the future, it may be possible to make userschema re-use part of\nplone.supermodel or vice-a-versa, with more refactoring.\n\n\nChangelog\n=========\n\n.. You should *NOT* be adding new change log entries to this file.\n   You should create a file in the news directory instead.\n   For helpful instructions, please see:\n   https://github.com/plone/plone.releaser/blob/master/ADD-A-NEWS-ITEM.rst\n\n.. towncrier release notes start\n\n2.0.3 (2023-03-22)\n------------------\n\nInternal:\n\n\n- Update configuration files.\n  [plone devs] (13d8d6c0, 243ca9ec)\n\n\n2.0.2 (2023-02-07)\n------------------\n\nBug fixes:\n\n\n- Update package configuration.\n  [gforcada] (#1)\n\n\n2.0.1 (2023-01-27)\n------------------\n\nBug fixes:\n\n\n- Unify repository configuration via github.com/plone/meta.\n  [gforcada, maurits] (#1)\n\n\n2.0.0 (2022-07-13)\n------------------\n\nBug fixes:\n\n\n- Release 1.6.4 as 2.0.0.  This was meant as a major release.\n  I have rereleased 1.6.3 as 1.6.5.\n  [maurits] (#27)\n\n\n1.6.4 (2021-09-01)\n------------------\n\nBreaking changes:\n\n\n- Make finalizeSchema more robust by not handling behavior schema classes (#27)\n\n\n1.6.3 (2020-11-17)\n------------------\n\nBug fixes:\n\n\n- For increased security, in the xml parser do not resolve entities, and remove processing instructions.\n  [maurits] (#3209)\n\n\n1.6.2 (2020-06-24)\n------------------\n\nBug fixes:\n\n\n- Decimal field moved in zope.schema, do not depend on specific dotted name in test b/c it does not matter. \n  [jensens] (#37)\n- Fix a deprecation warning on a regular expression [ale-rt] (#38)\n\n\n1.6.1 (2020-04-22)\n------------------\n\nBug fixes:\n\n\n- Minor packaging updates. (#1)\n\n\n1.6.0 (2020-03-09)\n------------------\n\nNew features:\n\n\n- zope.interface master, upcoming v5.0, initializes ``_v_attrs`` with ``None`` to save memory and creates the dict upon first usage.\n  So we need to do so in order to support the new version. (#33)\n- Support for zope.interface 4.7+ [jensens] (#34)\n\n\n1.5.0 (2019-12-11)\n------------------\n\nNew features:\n\n\n- Add support for choices of integers for improved registry.xml export.\n  [jone] (#32)\n\n\n1.4.1 (2019-11-25)\n------------------\n\nBug fixes:\n\n- tests to ensure schema.Set is serialized consistently (#30)\n\n\n\n1.4.0 (2018-09-28)\n------------------\n\nNew features:\n\n- Python 3 compatibility.\n  [pbauer, davilima6, dhavlik, ale-rt]\n\n\n1.3.4 (2017-11-24)\n------------------\n\nBug fixes:\n\n- Python3 compatibility with sixer\n  [ale-rt]\n\n\n1.3.3 (2017-06-04)\n------------------\n\nBug fixes:\n\n- Fixed typecasting of IChoice based on its vocabulary. #16\n  [iham]\n\n\n1.3.2 (2017-02-05)\n------------------\n\nBug fixes:\n\n- Fix issue where supermodel XML choice field parser failed to parse vocabulary\n  values with separate keys and display titles, because the parser expected\n  values tag to not have any namespace.\n  [datakurre]\n\n\n1.3.1 (2016-12-30)\n------------------\n\nBug fixes:\n\n- Test-Fix: Support latest zope.i18nmessageid.\n  [jensens]\n\n\n1.3.0 (2016-06-07)\n------------------\n\nNew:\n\n- Python 2.6 and Plone 4.3 no longer officially supported.  It might\n  still work, but no special effort is made to keep this compatible.\n  [maurits]\n\n- Support to define the order of fieldsets.\n  [jensens]\n\nFixes:\n\n- Remove temporary fix regarding test failures on Zope 4, as it's already fixed.\n  [thet]\n\n- Update setup.py url to point to github location.\n  [esteele]\n\n- Unset _init_field flag on init completion.\n  [metatoaster]\n\n\n1.2.7 (2016-02-12)\n------------------\n\nFixes:\n\n- Add temporary fix for a test failure within a Zope 4 environment.\n  [pbauer]\n\n\n1.2.6 (2014-10-20)\n------------------\n\n- Code modernization: sorted imports, use decorators, utf8 headers.\n  [jensens]\n\n- Add i18n serialization from schema value to XML model\n  [datakurre]\n\n1.2.5 (2014-09-07)\n------------------\n\n- Support Choice fields with terms containing distinct title from value\n  as option, while preserving backward-compatible round-trip for all\n  Choice fields where title is not distinct from value.\n  [seanupton]\n\n- Fix parsing of empty Choice term to u'', not None, which addresses a\n  cause of https://github.com/plone/plone.app.dexterity/issues/49\n  [seanupton]\n\n- Explicitly construct SimpleTerm instances for each Choice field\n  element, instead of relying on zope.schema constructors to do so.\n  This ensures that all terms have non-None title attributes.\n  [seanupton]\n\n- Tests for ChoiceHandler serialization and parsing.\n  [seanupton]\n\n\n1.2.4 (2014-01-27)\n------------------\n\n- Add invariant tag, a sub-element of schema, that accepts a dotted name as\n  a value. Invariants must provide plone.supermodel.interface.IInvariant.\n  [smcmahon]\n\n- Replace deprecated test assert statements.\n  [timo]\n\n\n1.2.3 (2013-08-14)\n------------------\n\n- Add defaultFactory tag for Dexterity XML. Define an interface\n  IDefaultFactory. defaultFactories specified via XML must implement it or\n  IContextAwareDefaultFactory.\n  [smcmahon]\n\n\n1.2.2 (2013-05-23)\n------------------\n\n- Avoid trying to process XML comments within field values.\n  [davisagli]\n\n\n1.2.1 (2013-01-01)\n------------------\n\n- Allow XML comments in field definitions.\n  [gweis]\n\n1.2.0 (2012-10-17)\n------------------\n\n- Nothing changed yet.\n\n\n1.1.2 (2012-08-29)\n------------------\n\n- Use lxml instead of elementtree.\n  [davisagli]\n\n- Avoid a test dependency on zope.app.testing.\n  [davisagli]\n\n\n1.1.1 (2012-04-15)\n------------------\n\n- Fix a packaging error.\n  [esteele]\n\n1.1 (2012-04-15)\n----------------\n\n- Support i18n:domain and i18n:translate for internationalization.\n  [davisagli]\n\n- When an error is encountered while parsing a supermodel, the exception\n  now provides the filename, line number, and source of the part of the\n  model that was being processed. Inclusion of the line number and source\n  requires lxml.\n  [davisagli]\n\n- Add model.Schema and directives to avoid grok dependency.\n  [elro]\n\n1.0.4 - 2012-02-20\n------------------\n\n- When syncing to a schema that inherits fields from a base, include fields\n  with the same names as the inherited fields even when overwrite is False.\n  This fixes http://code.google.com/p/dexterity/issues/detail?id=253\n  [davisagli]\n\n1.0.3 - 2011-05-20\n------------------\n\n- Relicense under BSD license.\n  See http://plone.org/foundation/materials/foundation-resolutions/plone-framework-components-relicensing-policy\n  [davisagli]\n\n1.0.2 - 2011-05-02\n------------------\n\n- Only convert Choice field ``values`` attribute into a vocabulary when it is\n  necessary to handle unicode values. This fixes a regression in compatibility\n  with plone.registry.\n  [davisagli]\n\n1.0.1 - 2011-04-30\n------------------\n\n- Adjust manifest to exclude .pyc files.\n  [davisagli]\n\n1.0 - 2011-04-30\n----------------\n\n- Handle serializing tokenized vocabularies with unicode values as long as the\n  terms' tokens are equal to the utf8-encoded values.\n  [davisagli]\n\n\n1.0b8 - 2011-03-18\n------------------\n\n- Add MANIFEST.in.\n  [WouterVH]\n\n- Field names should be strings, not unicode.\n  [elro]\n\n\n1.0b7 - 2011-03-03\n------------------\n\n- Support serialization of nested dicts/lists.\n  [elro]\n\n\n1.0b6 - 2011-01-04\n------------------\n\n- Declare zope.app.testing as a test dependency for Zope 2.13 compatibility.\n  [esteele]\n\n- Fix namespace bug which could prevent loading Dict and Collection elements.\n  [davisagli]\n\n\n1.0b5 - 2010-04-19\n------------------\n\n- Added support for zope.schema.Decimal fields.\n  [optilude]\n\n\n1.0b4 - 2009-11-17\n------------------\n\n- Ignored vocabularyName property when writing Choice fields. The constructor\n  still uses they 'vocabulary' key in an overloaded capacity. We only support\n  'vocabulary' with a named vocabulary, or 'values' with a list of values.\n  This fixes test failures on Zope 2.12 / zope.schema 3.5.4.\n  [optilude]\n\n\n1.0b3 - 2009-09-28\n------------------\n\n- Add support for synchronising marker interfaces found on source fields\n  to syncSchema().\n  [optilude]\n\n\n1.0b2 - 2009-07-12\n------------------\n\n- Changed API methods and arguments to mixedCase to be more consistent with\n  the rest of Zope. This is a non-backwards-compatible change. Our profuse\n  apologies, but it's now or never. :-/\n\n  If you find that you get import errors or unknown keyword arguments in your\n  code, please change names from foo_bar too fooBar, e.g. load_file() becomes\n  loadFile().\n  [optilude]\n\n- No longer include name kwarg to Field constructor if no name was set\n  [MatthewWilkes]\n\n\n1.0b1 - 2009-04-17\n------------------\n\n- Initial release\n\n",
    "bugtrack_url": null,
    "license": "BSD",
    "summary": "Serialize Zope schema definitions to and from XML",
    "version": "2.0.3",
    "split_keywords": [
        "plone",
        "xml",
        "schema"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "56b21f28740d8ada62fb5cb68efd41a2771ce56bd481f099c683a9587407feda",
                "md5": "37047a0608b409d9c8a37b9e4a05f22a",
                "sha256": "4cc0d2a326d65aeaa6300d8cb6499caf7fe7b0f84e118c4a4cec323d4d733f39"
            },
            "downloads": -1,
            "filename": "plone.supermodel-2.0.3-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "37047a0608b409d9c8a37b9e4a05f22a",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.8",
            "size": 45107,
            "upload_time": "2023-03-21T23:03:17",
            "upload_time_iso_8601": "2023-03-21T23:03:17.719780Z",
            "url": "https://files.pythonhosted.org/packages/56/b2/1f28740d8ada62fb5cb68efd41a2771ce56bd481f099c683a9587407feda/plone.supermodel-2.0.3-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "370b0b02e4306317744f966559f427574029cb3582bd64ff968b4257556188bd",
                "md5": "d027781eb35b963d2d39a9e4d4a2b889",
                "sha256": "7b30f92e047ab72a556749553a05e06acde7d5553717032a355eba230b0115f5"
            },
            "downloads": -1,
            "filename": "plone.supermodel-2.0.3.tar.gz",
            "has_sig": false,
            "md5_digest": "d027781eb35b963d2d39a9e4d4a2b889",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.8",
            "size": 45659,
            "upload_time": "2023-03-21T23:03:20",
            "upload_time_iso_8601": "2023-03-21T23:03:20.493110Z",
            "url": "https://files.pythonhosted.org/packages/37/0b/0b02e4306317744f966559f427574029cb3582bd64ff968b4257556188bd/plone.supermodel-2.0.3.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-03-21 23:03:20",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "github_user": "plone",
    "github_project": "plone.supermodel",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": false,
    "tox": true,
    "lcname": "plone.supermodel"
}
        
Elapsed time: 0.04764s