{ "info": { "author": "Jason Madden", "author_email": "jason@nextthought.com", "bugtrack_url": null, "classifiers": [ "Intended Audience :: Developers", "License :: OSI Approved :: Apache Software License", "Natural Language :: English", "Operating System :: OS Independent", "Programming Language :: Python :: 2", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7", "Programming Language :: Python :: Implementation :: CPython", "Programming Language :: Python :: Implementation :: PyPy" ], "description": "=====================\n nti.externalization\n=====================\n\n.. image:: https://img.shields.io/pypi/v/nti.externalization.svg\n :target: https://pypi.python.org/pypi/nti.externalization/\n :alt: Latest release\n\n.. image:: https://img.shields.io/pypi/pyversions/nti.externalization.svg\n :target: https://pypi.org/project/nti.externalization/\n :alt: Supported Python versions\n\n.. image:: https://travis-ci.org/NextThought/nti.externalization.svg?branch=master\n :target: https://travis-ci.org/NextThought/nti.externalization\n\n.. image:: https://coveralls.io/repos/github/NextThought/nti.externalization/badge.svg?branch=master\n :target: https://coveralls.io/github/NextThought/nti.externalization?branch=master\n\n.. image:: https://readthedocs.org/projects/ntiexternalization/badge/?version=latest\n :target: https://ntiexternalization.readthedocs.io/en/latest/\n :alt: Documentation Status\n\nA flexible, schema-driven system for converting Python objects to and\nfrom external formats such as JSON and YAML. This works well in a\nzope.component environment such as Pyramid.\n\nDocumentation is hosted at https://ntiexternalization.readthedocs.io/\n\n\n=========\n Changes\n=========\n\n\n1.0.0a13 (2018-09-20)\n=====================\n\n- Support ``IFromBytes`` fields introduced by zope.schema 4.8.0. See\n `issue 92\n `_.\n\n- Make ``validate_field_value`` (and by extension\n ``InterfaceObjectIO.update_from_external_object``) call\n ``fromObject`` defined by any fields for non-byte and non-text data.\n Previously, only if the field raised a ``WrongContainedTypeError``\n would ``fromObject`` be called.\n\n1.0.0a12 (2018-09-11)\n=====================\n\n- Add support for zope.schema 4.7.0 and nti.schema 1.5.0. Drop support\n for older versions, which includes dropping support for\n ``dm.zope.schema.Object`` fields.\n\n\n1.0.0a11 (2018-08-29)\n=====================\n\n- The ``@WithRepr`` decorator takes into account the updated default\n repr of Persistent objects with persistent 4.4 and doesn't hide it.\n\n- Subclasses of ``ExternalizableInstanceDict`` that have non-str\n (unicode on Python 2, bytes on Python 3) keys in their ``__dict__``\n do not throw ``TypeError`` when externalizing. Instead, the non-str\n values are converted to strs (using ASCII encoding) and the\n ``_p_changed`` attribute, if any, is set.\n\n1.0.0a10 (2018-08-21)\n=====================\n\n- The ``registry`` argument to most functions is deprecated and\n ignored. Instead of making calls to ``registry.queryAdapter``, we\n now invoke the interface directly. For example,\n ``IInternalObjectExternalizer(containedObject)``. This lets\n individual objects have a say if they already provide the interface\n without going through the legacy code paths (it also calls\n ``__conform__`` on the object if needed).\n\n\n1.0.0a9 (2018-08-20)\n====================\n\n- Allow subclasses of ``InterfaceObjectIO`` to have non-frozenset\n values for ``_ext_primitive_out_ivars_``. This issues a warning and\n in the future will be a TypeError.\n\n\n1.0.0a8 (2018-08-16)\n====================\n\n- Better support for internalizing anonymous value objects discovered\n in a ``Dict`` value. Now, they won't raise a\n ``ComponentLookupError`` when ``require_updater`` is True, and they\n will be given a ``MimeType`` based on the schema (if they don't have one).\n\n\n1.0.0a7 (2018-07-31)\n====================\n\n- Avoid a ``TypeError`` from ``validate_named_field_value`` when\n external objects have unicode keys.\n\n- ``LocatedExternalDict`` objects accept more constructor arguments\n and allow arbitrary attributes.\n\n1.0.0a6 (2018-07-31)\n====================\n\n- ``InterfaceObjectIO`` only returns an anonymous factory for ``IDict``\n fields when it wants objects for the value.\n\n- ``StandardExternalFields`` and ``StandardInternalFields`` are\n deprecated aliases in ``nti.externalization.externalization``.\n\n- ``update_from_external_object`` properly handles the case where\n ``INamedExternalizedObjectFactoryFinder`` and\n ``IInternalObjectUpdater`` are registered with different levels of\n specificity, and the finder also implements\n ``IInternalObjectUpdater``. Before, the finder would, perhaps\n incorrectly, be used as the updater.\n\n1.0.0a5 (2018-07-30)\n====================\n\n- Objects inheriting from ``InterfaceObjectIO`` and registered with\n the component registry (in ZCML) for ``IInternalObjectIO`` can still\n be found and used as ``INamedExternalizedObjectFactoryFinder``, an\n interface implemented by ``InterfaceObjectIO`` through\n ``IInternalObjectIOFinder``. A warning will be issued to update the\n registration (which generally means removing the ``provides`` line\n in ZCML).\n\n- ``ExternalizableInstanceDict`` no longer inherits from\n ``AbstractDynamicIO``, it just implements the same interface (with\n the exception of many of the ``_ext`` methods). This class is deprecated.\n\n- Formally document the ``notify_modified`` member of\n ``nti.externalization.internalization``. ``notifyModified`` is a\n deprecated alias.\n\n1.0.0a4 (2018-07-30)\n====================\n\n- Make ``InterfaceObjectIO._ext_self`` readable from Python, even\n though that is not documented (and may change again in the future).\n Document the intended API, ``_ext_replacement()``. See `issue 73\n `_.\n\n- Make ``AbstractDynamicObjectIO._ext_getattr`` handle a default\n value, and add ``_ext_replacement_getattr`` for when it will only\n be called once. See `issue 73\n `_.\n\n1.0.0a3 (2018-07-28)\n====================\n\n- The ``@NoPickle`` decorator also works with ``Persistent``\n subclasses (and may or may not work with multiple-inheritance\n subclasses of ``Persistent``, depending on the MRO,\n but that's always been the case for regular objects). A\n ``Persistent`` subclass being decorated with ``@NoPickle`` doesn't\n make much sense, so a ``RuntimeWarning`` is issued. A warning is\n also issued if the class directly implements one of the pickle\n protocol methods.\n\n- Updating objects that use ``createFieldProperties`` or otherwise\n have ``FieldProperty`` objects in their type is at least 10% faster\n thanks to avoiding double-validation due to a small monkey-patch on\n ``FieldProperty``. See `issue 67\n `_.\n\n- Proxies around objects that implement ``toExternalObject`` are\n allowed again; the proxied object's ``toExternalObject`` will be called.\n\n- The signature for ``updateFromExternalObject()`` has been tightened.\n It should be ``(self, external_object, context, **kwargs)``, where\n ``**kwargs`` is optional, as is context. ``**kwargs`` currently\n contains nothing useful. Uses of ``dataserver=None`` in the\n signature will generate a warning. This may be tightened further in\n the future. See `issue 30\n `_.\n\n- ``__ext_ignore_updateFromExternalObject__`` is officially\n deprecated and generates a warning.\n\n- ``update_from_external_object`` caches certain information about the\n types of the updater objects, making it 8-25% faster.\n\n- ``update_from_external_object`` mutates sequences contained in a\n dict in-place instead of overwriting with a new list.\n\n- ``update_from_external_object`` mutates sequences at the top level\n instead of returning a new list.\n\n- Add support for finding factories for incoming data which do not\n specify a MIME type or class field based on the key they are\n assigned to. This aids in consuming data produced by foreign systems\n or using ``Dict`` schema fields that require modelled\n values. See `issue 51\n `_ and\n `PR 68\n `_.\n\n- Schemas that use ``InterfaceObjectIO`` (including through the ZCML\n directive ``registerAutoPackageIO``) can use ``Dict`` fields more\n easily on internalization (externalization has always worked): They\n automatically internalize their values by treating the ``Dict`` as\n anonymous external data.\n\n- Strings can automatically be adapted into ``ITimeDelta`` objects.\n\n\n1.0.0a2 (2018-07-05)\n====================\n\n- The low levels of externalization no longer catch and hide\n POSKeyError. This indicates a problem with the database. See\n https://github.com/NextThought/nti.externalization/issues/60\n\n- Remove support for ``object_hook`` in\n ``update_from_external_object``. See\n https://github.com/NextThought/nti.externalization/issues/29.\n\n- A number of deprecated aliases for moved functions have been\n removed.\n\n- On CPython, some of the modules are compiled as extension modules\n using Cython for a 10-30% increase in speed. Set the ``PURE_PYTHON``\n environment variable to disable this at runtime.\n\n- The unused, undocumented method\n ``stripSyntheticKeysFromExternalDictionary`` was removed from\n instances of ``ExternalizableDictionaryMixin``. Use the import instead.\n\n- Unused keyword arguments for ``to_standard_external_dictionary``\n and ``to_minimal_standard_external_dictionary`` now produce a warning.\n In the future, extra keyword arguments will be an error.\n\n- ``notifyModified`` no longer accepts the ``eventFactory`` argument.\n\n- The ``notify_modified`` alias for ``notifyModified`` has been removed.\n\n- Decorating external mappings and external objects handled\n ``decorate_callback`` differently. This argument is only used when\n ``decorate`` is false. This argument is also confusing and should be\n considered deprecated.\n\n- ``choose_field`` no longer has the undocumented conversion behaviour for the\n CREATOR external field name.\n\n1.0.0a1 (2017-09-29)\n====================\n\n- First PyPI release.\n- Add support for Python 3.\n- Drop support for externalizing to plists. See\n https://github.com/NextThought/nti.externalization/issues/21\n- Reach 100% test coverage and ensure we remain there through CI.\n- Introduce ``nti.externalization.extension_points`` to hold hook\n functions. Move the Pyramid integration there (and deprecate that).\n Also move the NTIID support there (but the old name works too).\n See https://github.com/NextThought/nti.externalization/issues/27\n- Deprecate\n ``nti.externalization.internalization.register_legacy_search_module``.\n See https://github.com/NextThought/nti.externalization/issues/35\n- Stop ``ext:registerAutoPackageIO`` from registering the legacy\n class-name based factories by default. If you need class-name based\n factories, there are two options. The first is to explicitly\n register ``IClassObjectFactory`` objects in ZCML (we could add a\n scanning directive to make that more convenient for large numbers of\n classes), and the second is to set ``register_legacy_search_module``\n to a true value in the ZCML directive for\n ``ext:registerAutoPackageIO``. Note that we expect the behaviour of\n this attribute to change in the near future.\n See https://github.com/NextThought/nti.externalization/issues/33\n- Make ``ext:registerAutoPackageIO`` perform legacy class\n registrations when the configuration context executes, not when the\n directive runs. This means that conflicts in legacy class names will be\n detected at configuration time. It also means that legacy class names can\n be registered locally with ``z3c.baseregistry`` (previously they\n were always registered in the global site manager).\n See https://github.com/NextThought/nti.externalization/issues/28\n- Drop dependency on ``zope.preference`` and ``zope.annotation``. They\n were not used by this package, although our ``configure.zcml`` did\n include them. If you use ``zope.preference`` or ``zope.annotation``,\n please include them in your own ZCML file.\n- Drop hard dependency on Acquisition. It is still used if available\n and is used in test mode.\n- Add public implementations of ``IMimeObjectFactory`` and\n ``IClassObjectFactory`` in ``nti.externalization.factory``.\n- Drop dependency on ``nti.zodb`` and its\n ``PersistentPropertyHolder``. The datastructures in\n ``nti.externalization.persistence`` no longer extend that class; if\n you have further subclasses that add\n ``nti.zodb.peristentproperty.PropertyHoldingPersistent`` properties,\n you'll need to be sure to mixin this class now.\n See https://github.com/NextThought/nti.externalization/issues/43\n- Add the ```` directive for registering\n ``Class`` based factories. (Note: MIME factories are preferred.)\n- Callers of ``to_standard_external_dictionary`` (which includes\n AutoPackageScopedInterfaceIO) will now automatically get a\n ``MimeType`` value if one can be found. Previously only callers of\n ``to_minimal_standard_external_dictionary`` would.\n\n\n", "description_content_type": "", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/NextThought/nti.externalization", "keywords": "externalization", "license": "Apache", "maintainer": "", "maintainer_email": "", "name": "nti.externalization", "package_url": "https://pypi.org/project/nti.externalization/", "platform": "", "project_url": "https://pypi.org/project/nti.externalization/", "project_urls": { "Homepage": "https://github.com/NextThought/nti.externalization" }, "release_url": "https://pypi.org/project/nti.externalization/1.0.0a13/", "requires_dist": [ "isodate", "nti.schema (>=1.7.0)", "persistent (>=4.4.0)", "PyYAML", "pytz", "simplejson", "transaction (>=2.2)", "six (>=1.11.0)", "ZODB", "zope.component", "zope.configuration", "zope.container", "zope.dottedname", "zope.dublincore", "zope.event", "zope.hookable (>=4.2.0)", "zope.interface", "zope.intid", "zope.lifecycleevent", "zope.location", "zope.mimetype (>=2.3.0)", "zope.proxy", "zope.schema (>=4.8.0)", "zope.security", "perf; extra == 'benchmarks'", "Sphinx; extra == 'docs'", "repoze.sphinx.autointerface; extra == 'docs'", "sphinx-rtd-theme; extra == 'docs'", "fudge; extra == 'test'", "nti.testing; extra == 'test'", "zope.testrunner; extra == 'test'", "manuel; extra == 'test'", "setuptools", "BTrees" ], "requires_python": "", "summary": "NTI Externalization", "version": "1.0.0a13" }, "last_serial": 4419425, "releases": { "1.0.0a1": [ { "comment_text": "", "digests": { "md5": "9f1c4f9f646f766fdd93eae7c3b324ce", "sha256": "95e3fb2898b380b87f7ef864bc5872510eec9c92fb0fa3921ef6483bca201129" }, "downloads": -1, "filename": "nti.externalization-1.0.0a1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "9f1c4f9f646f766fdd93eae7c3b324ce", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 93005, "upload_time": "2017-09-29T15:13:10", "url": "https://files.pythonhosted.org/packages/5e/f3/25a32bdaffeccddf6a9378a20c23829b858a5d2b5b7f0181a9a5dbbbd619/nti.externalization-1.0.0a1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "62ab2c7c547041c7484daf95d3515ad7", "sha256": "4de6e46b25752e8724032fc666095e1d6efe520db746c866f27f55083fff22f9" }, "downloads": -1, "filename": "nti.externalization-1.0.0a1.tar.gz", "has_sig": false, "md5_digest": "62ab2c7c547041c7484daf95d3515ad7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 74927, "upload_time": "2017-09-29T15:13:13", "url": "https://files.pythonhosted.org/packages/fe/99/e4711588c44eb4aa4d3984cf28d20ca9a1677f6918878a4fe6a5eb72f1e8/nti.externalization-1.0.0a1.tar.gz" } ], "1.0.0a10": [ { "comment_text": "", "digests": { "md5": "166ea419d98f0540c0ab28c6c8c615c5", "sha256": "59915cb8cf6bb9825aa7c58357949d6a14cb3333a6019b042d3a0969cab3f8ab" }, "downloads": -1, "filename": "nti.externalization-1.0.0a10-cp36-cp36m-macosx_10_13_x86_64.whl", "has_sig": false, "md5_digest": "166ea419d98f0540c0ab28c6c8c615c5", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 1421479, "upload_time": "2018-08-21T14:10:30", "url": "https://files.pythonhosted.org/packages/ae/70/d0a53da993079aeda525211183605eae26886630e2f6b9f8e2212080582a/nti.externalization-1.0.0a10-cp36-cp36m-macosx_10_13_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "246714f2f7f1431daae3c54849501e7f", "sha256": "60a7263b39d115d677de6b1071bb61c01af89b35c1314286d5d21c568bca65eb" }, "downloads": -1, "filename": "nti.externalization-1.0.0a10.tar.gz", "has_sig": false, "md5_digest": "246714f2f7f1431daae3c54849501e7f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 864743, "upload_time": "2018-08-21T14:10:32", "url": "https://files.pythonhosted.org/packages/b7/9b/b3a8197586ebf55f583894f59218b5c76d406f3b2544ceff304bb26c89a7/nti.externalization-1.0.0a10.tar.gz" } ], "1.0.0a11": [ { "comment_text": "", "digests": { "md5": "0be24cb88525b7143528a438821bc5b9", "sha256": "ded1cea20e1f07a998fdd149b6dfa82dfc15dd1fa214c7a1f8d80d5e057d96b7" }, "downloads": -1, "filename": "nti.externalization-1.0.0a11-cp36-cp36m-macosx_10_13_x86_64.whl", "has_sig": false, "md5_digest": "0be24cb88525b7143528a438821bc5b9", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 1427153, "upload_time": "2018-08-29T16:37:00", "url": "https://files.pythonhosted.org/packages/31/57/b341b1fe8282be81943b1a9024793c0406e7341176f73e2c4c40062aafbc/nti.externalization-1.0.0a11-cp36-cp36m-macosx_10_13_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "21088b6ed53dabdde385840ed45de128", "sha256": "a0655804300869afb3edc98d6c082836598ab52766ef86fd5506868b834eba96" }, "downloads": -1, "filename": "nti.externalization-1.0.0a11.tar.gz", "has_sig": false, "md5_digest": "21088b6ed53dabdde385840ed45de128", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 868873, "upload_time": "2018-08-29T16:37:03", "url": "https://files.pythonhosted.org/packages/d2/dd/adcbd68ae646eb238384ba1efb151ee1adff3663593956f637feab158b8e/nti.externalization-1.0.0a11.tar.gz" } ], "1.0.0a12": [ { "comment_text": "", "digests": { "md5": "31393b89aa9705dc19412c164031e42e", "sha256": "8f2689cf4de3e978d096a74af3d7b15c7fba6a9c43f706790523e9e187db3839" }, "downloads": -1, "filename": "nti.externalization-1.0.0a12-cp36-cp36m-macosx_10_13_x86_64.whl", "has_sig": false, "md5_digest": "31393b89aa9705dc19412c164031e42e", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 1427944, "upload_time": "2018-09-11T15:04:59", "url": "https://files.pythonhosted.org/packages/c8/c5/7fa1d754bb8541d6708644f6f750d7c5437b7e2a853d1a618c8c305f34a5/nti.externalization-1.0.0a12-cp36-cp36m-macosx_10_13_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "23162c027582b013595f11a7031b1217", "sha256": "f2a2c84004fd0f5a409bef80c8d4789cb6d45b9c372f77f90919ef9618ef834c" }, "downloads": -1, "filename": "nti.externalization-1.0.0a12.tar.gz", "has_sig": false, "md5_digest": "23162c027582b013595f11a7031b1217", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 869724, "upload_time": "2018-09-11T15:05:01", "url": "https://files.pythonhosted.org/packages/e0/07/5d1899a18d73b0b7fcf366648dc60a67e3f4cc2e419ed85985a5304d48f6/nti.externalization-1.0.0a12.tar.gz" } ], "1.0.0a13": [ { "comment_text": "", "digests": { "md5": "a6adffca397e81493ceb415295ba24b9", "sha256": "ade40ec7cac7cfafc2e54d9a76d45f2a77f3ceb55eb689771b51d7104bbc998b" }, "downloads": -1, "filename": "nti.externalization-1.0.0a13-cp36-cp36m-macosx_10_13_x86_64.whl", "has_sig": false, "md5_digest": "a6adffca397e81493ceb415295ba24b9", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 1428883, "upload_time": "2018-09-20T17:12:35", "url": "https://files.pythonhosted.org/packages/fd/1c/f9b4809a93cec14b1f6cf8dc7901dcce6836b4086f4908deee5e1171ff7d/nti.externalization-1.0.0a13-cp36-cp36m-macosx_10_13_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "48fa7d82a7990f675d8f5ab2ebaedbf5", "sha256": "9ef326cc5e29f9cb7a72d617559f0a7530382dc3bb8a72bc9302acf595ec0c85" }, "downloads": -1, "filename": "nti.externalization-1.0.0a13.tar.gz", "has_sig": false, "md5_digest": "48fa7d82a7990f675d8f5ab2ebaedbf5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 871269, "upload_time": "2018-09-20T17:12:37", "url": "https://files.pythonhosted.org/packages/f2/42/92fa937e7926cef13dba8a11c063d9b99e76e728422024c542bf185c6b5e/nti.externalization-1.0.0a13.tar.gz" } ], "1.0.0a2": [ { "comment_text": "", "digests": { "md5": "67201be1d3603814ae22300f45133dbc", "sha256": "750606dd3f5a34ed7a58dedeafb3aad2c12dcf64c9b8521cb8269bd3d5092bb1" }, "downloads": -1, "filename": "nti.externalization-1.0.0a2.tar.gz", "has_sig": false, "md5_digest": "67201be1d3603814ae22300f45133dbc", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 779860, "upload_time": "2018-07-05T17:03:03", "url": "https://files.pythonhosted.org/packages/98/3d/eb0b654e8de05d3db4e130185973cc6cff7640ab4af9b065e94730ba852a/nti.externalization-1.0.0a2.tar.gz" } ], "1.0.0a3": [ { "comment_text": "", "digests": { "md5": "29e6bc2abf4fe62b4a8b60c8f4d55d1f", "sha256": "521bd8afcc04866ee4cdc42eebc54f37c8aa213e3255122ff6105f790b5f4dba" }, "downloads": -1, "filename": "nti.externalization-1.0.0a3.tar.gz", "has_sig": false, "md5_digest": "29e6bc2abf4fe62b4a8b60c8f4d55d1f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 839703, "upload_time": "2018-07-28T10:32:49", "url": "https://files.pythonhosted.org/packages/63/60/d5e823c694ced5ed77de3bac5d36dbaa6532dad17d00c8449bf4d17c6e0e/nti.externalization-1.0.0a3.tar.gz" } ], "1.0.0a4": [ { "comment_text": "", "digests": { "md5": "f4e10b1b36261c24d3d714f7c63c0816", "sha256": "b78721132907171c80337f21ef50331746e3026764a1358f06e5df83e9e462c6" }, "downloads": -1, "filename": "nti.externalization-1.0.0a4.tar.gz", "has_sig": false, "md5_digest": "f4e10b1b36261c24d3d714f7c63c0816", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 843431, "upload_time": "2018-07-30T12:36:48", "url": "https://files.pythonhosted.org/packages/1a/71/c5fcebdc78a7ae26f1587bd0fe4b21a0e002468d5115ea680bfbe7bc5ea5/nti.externalization-1.0.0a4.tar.gz" } ], "1.0.0a5": [ { "comment_text": "", "digests": { "md5": "8df074e9fb2b856b775658f351bb05f5", "sha256": "f4562ac459683135293ad880d4ad1d072c4ed90eb9d3ec99e5dd859ed6ddca3c" }, "downloads": -1, "filename": "nti.externalization-1.0.0a5-cp27-cp27m-macosx_10_13_x86_64.whl", "has_sig": false, "md5_digest": "8df074e9fb2b856b775658f351bb05f5", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 1433977, "upload_time": "2018-07-30T21:08:57", "url": "https://files.pythonhosted.org/packages/67/bf/dbfa084605e46fb0400f5f5d4363ba5f1abdc3e8e425ddc0f8f17cbff07a/nti.externalization-1.0.0a5-cp27-cp27m-macosx_10_13_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "11fc4f19e0a5c6036ed24ade2a306a0a", "sha256": "178ac421e91b58d6f03d856e8ddd67ae4f0f2f1e1c6bf850bd928760bc774c13" }, "downloads": -1, "filename": "nti.externalization-1.0.0a5.tar.gz", "has_sig": false, "md5_digest": "11fc4f19e0a5c6036ed24ade2a306a0a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 855534, "upload_time": "2018-07-30T21:08:59", "url": "https://files.pythonhosted.org/packages/3c/cf/7c1c69c091c1fb744d5ed5a6414e6d51abaaedaa25eb5b60a9e7251488a0/nti.externalization-1.0.0a5.tar.gz" } ], "1.0.0a6": [ { "comment_text": "", "digests": { "md5": "2e3380cd13ce8516bafc305a9a9ad08d", "sha256": "58f9472e9cff58048dd533d05702971a8c7b2797e4fc7a594f85f25d83b4244d" }, "downloads": -1, "filename": "nti.externalization-1.0.0a6-cp27-cp27m-macosx_10_13_x86_64.whl", "has_sig": false, "md5_digest": "2e3380cd13ce8516bafc305a9a9ad08d", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 1439336, "upload_time": "2018-07-31T12:35:21", "url": "https://files.pythonhosted.org/packages/40/00/5b00d70a1a268222fd397c0b85e14384ff51681679e6ea549697ce166302/nti.externalization-1.0.0a6-cp27-cp27m-macosx_10_13_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "35332ca9c7def7b9f7c41792ea48be99", "sha256": "89b1be18ef114aeedceb99b748728c47c16d07c50f69c4f483b4f944308bae9b" }, "downloads": -1, "filename": "nti.externalization-1.0.0a6.tar.gz", "has_sig": false, "md5_digest": "35332ca9c7def7b9f7c41792ea48be99", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 859479, "upload_time": "2018-07-31T12:35:24", "url": "https://files.pythonhosted.org/packages/ee/1b/bd2f59f12696835f9aea6226c04a649aa1317152d6cee0a7ad3682f8b5ba/nti.externalization-1.0.0a6.tar.gz" } ], "1.0.0a7": [ { "comment_text": "", "digests": { "md5": "9d390c11af2e4a185d3b720f18ee7e52", "sha256": "7c0d2ce0e0e20cd735c93664651a9a8acdb92db40439e5f3c35e4687300516f4" }, "downloads": -1, "filename": "nti.externalization-1.0.0a7-cp27-cp27m-macosx_10_13_x86_64.whl", "has_sig": false, "md5_digest": "9d390c11af2e4a185d3b720f18ee7e52", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 1441634, "upload_time": "2018-07-31T17:04:54", "url": "https://files.pythonhosted.org/packages/75/2b/9b21192afe06914e3ed1739cbc1f0f1f15bd9f72a2898630b0d49ce80013/nti.externalization-1.0.0a7-cp27-cp27m-macosx_10_13_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "b2be15b66ea7f8ea271fb63397b324f8", "sha256": "de66cf9b84516c150f5f0929b24b22640698f352c15f17aafbbc8e9a7fd151d2" }, "downloads": -1, "filename": "nti.externalization-1.0.0a7.tar.gz", "has_sig": false, "md5_digest": "b2be15b66ea7f8ea271fb63397b324f8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 860479, "upload_time": "2018-07-31T17:04:56", "url": "https://files.pythonhosted.org/packages/f5/ec/7692f607bc4a8e27dbae144b14bb42a9dac9b689ea8c18ffd87358086c95/nti.externalization-1.0.0a7.tar.gz" } ], "1.0.0a8": [ { "comment_text": "", "digests": { "md5": "f5dc493645da722e33e0fda81ef4c5f0", "sha256": "8edbc29dc0e68430c5199f55171457adbce5ef11e56a0d276cdb6e39673269f2" }, "downloads": -1, "filename": "nti.externalization-1.0.0a8.tar.gz", "has_sig": false, "md5_digest": "f5dc493645da722e33e0fda81ef4c5f0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 864627, "upload_time": "2018-08-16T18:37:37", "url": "https://files.pythonhosted.org/packages/d2/2a/af768972bd8dd84886f0fd191620bf6d65c8260274880f615c90a8d69053/nti.externalization-1.0.0a8.tar.gz" } ], "1.0.0a9": [ { "comment_text": "", "digests": { "md5": "a4f8655703b0210f72f2574f65989dd7", "sha256": "7d3aad2b10ebc4f5111d76c04fec57b6ab6d2d659422c66084d543ff76ff33e7" }, "downloads": -1, "filename": "nti.externalization-1.0.0a9-cp36-cp36m-macosx_10_13_x86_64.whl", "has_sig": false, "md5_digest": "a4f8655703b0210f72f2574f65989dd7", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 1422085, "upload_time": "2018-08-20T20:26:43", "url": "https://files.pythonhosted.org/packages/8b/51/d9b8de25288200b115e431e18a627a33703145d40b2cda4548a792aeafa1/nti.externalization-1.0.0a9-cp36-cp36m-macosx_10_13_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "9345ac4edd4643936294d836db0c284c", "sha256": "852abb5823ae5e553a8f503faa9b080a0992562d5e307e5f38a448967fc6b6fb" }, "downloads": -1, "filename": "nti.externalization-1.0.0a9.tar.gz", "has_sig": false, "md5_digest": "9345ac4edd4643936294d836db0c284c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 864526, "upload_time": "2018-08-20T20:26:45", "url": "https://files.pythonhosted.org/packages/2e/4a/8f9095856290fa948007220e3dec2cc30f419c8f52b504c60cb012690183/nti.externalization-1.0.0a9.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "a6adffca397e81493ceb415295ba24b9", "sha256": "ade40ec7cac7cfafc2e54d9a76d45f2a77f3ceb55eb689771b51d7104bbc998b" }, "downloads": -1, "filename": "nti.externalization-1.0.0a13-cp36-cp36m-macosx_10_13_x86_64.whl", "has_sig": false, "md5_digest": "a6adffca397e81493ceb415295ba24b9", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 1428883, "upload_time": "2018-09-20T17:12:35", "url": "https://files.pythonhosted.org/packages/fd/1c/f9b4809a93cec14b1f6cf8dc7901dcce6836b4086f4908deee5e1171ff7d/nti.externalization-1.0.0a13-cp36-cp36m-macosx_10_13_x86_64.whl" }, { "comment_text": "", "digests": { "md5": "48fa7d82a7990f675d8f5ab2ebaedbf5", "sha256": "9ef326cc5e29f9cb7a72d617559f0a7530382dc3bb8a72bc9302acf595ec0c85" }, "downloads": -1, "filename": "nti.externalization-1.0.0a13.tar.gz", "has_sig": false, "md5_digest": "48fa7d82a7990f675d8f5ab2ebaedbf5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 871269, "upload_time": "2018-09-20T17:12:37", "url": "https://files.pythonhosted.org/packages/f2/42/92fa937e7926cef13dba8a11c063d9b99e76e728422024c542bf185c6b5e/nti.externalization-1.0.0a13.tar.gz" } ] }