{ "info": { "author": "Stephan Richter and the Zope Community", "author_email": "zope-dev@zope.org", "bugtrack_url": null, "classifiers": [ "Development Status :: 5 - Production/Stable", "Intended Audience :: Developers", "License :: OSI Approved :: Zope Public License", "Natural Language :: English", "Operating System :: OS Independent", "Programming Language :: Python", "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" ], "description": "===================================================\n``z3c.rml`` -- An alternative implementation of RML\n===================================================\n\n.. image:: https://img.shields.io/pypi/v/z3c.rml.svg\n :target: https://pypi.org/project/z3c.rml/\n :alt: Latest Version\n\n.. image:: https://img.shields.io/pypi/pyversions/z3c.rml.svg\n :target: https://pypi.org/project/z3c.rml/\n :alt: Supported Python versions\n\n.. image:: https://travis-ci.org/zopefoundation/z3c.rml.svg?branch=master\n :target: https://travis-ci.org/zopefoundation/z3c.rml\n :alt: Build Status\n\n.. image:: https://coveralls.io/repos/github/zopefoundation/z3c.rml/badge.svg?branch=master\n :target: https://coveralls.io/github/zopefoundation/z3c.rml?branch=master\n\nThis is an alternative implementation of ReportLab's RML PDF generation XML\nformat. Like the original implementation, it is based on ReportLab's\n``reportlab`` library.\n\nYou can read all about ``z3c.rml`` and see many examples on how to use it,\nsee the `RML Reference`_\n\n.. _RML Reference: https://github.com/zopefoundation/z3c.rml/blob/master/src/z3c/rml/rml-reference.pdf?raw=true\n\n\n=======\nCHANGES\n=======\n\n3.9.1 (2019-10-04)\n------------------\n\n- Adding textTransform implementation.\n\n\n3.9.0 (2019-07-19)\n------------------\n\n- Create a proper, parsable DTD. Add a test that verifies its validity.\n\n- Updated `rml.dtd`.\n\n- ``strandLabels`` does not support text content. That was accidentally\n asserted due to bad schema inheritance.\n\n\n3.8.0 (2019-06-24)\n------------------\n\n- Unified ``paraStyle`` and ``spanStyle`` even more.\n\n- Extended ```` to support underline and strike as well.\n\n- Simplified implemnetation of strike and underline style implementation. It\n is also the more correct implementation.\n\n\n3.7.0 (2019-06-14)\n------------------\n\n- Drop support for running tests using ``python setup.py test``.\n\n- Drop Python 3.5 support.\n\n- Extended ````:\n\n * ``underline``: A boolean field indicating whether the entire paragraph is\n underlined. The following related attributes have also been added to the\n style: ``underlineColor``, ``underlineOffset``, ``underlineWidth``,\n ``underlineGap``, and ``underlineKind``\n\n * ``strike``: A boolean field indicating whether the entire paragraph is\n stricken. The following related attributes have also been added to the\n style: ``strikeColor``, ``strikeOffset``, ``strikeWidth``,\n ``strikeGap``, and ``strikeKind``\n\n * ``justifyLastLine``: Added attribute that is available in the API.\n\n * ``justifyBreaks``: Added attribute that is available in the API.\n\n * ``spaceShrinkage``: Added attribute that is available in the API.\n\n * ``linkUnderline``: Added attribute that is available in the API.\n\n\n3.6.3 (2019-04-11)\n------------------\n\n- Added missing ``lineBelowDash``, ``lineAboveDash``, ``lineLeftDash``,\n ``lineRightDash`` attributes\n\n\n3.6.2 (2019-03-27)\n------------------\n\n- Fix num2words (missing import, two digit dashes)\n\n- Added test to check what happens with text not in tags\n (e.g. not in a ```` tag)\n\n\n3.6.1 (2018-12-01)\n------------------\n\n- Add Python 3.7 Trove classifier.\n\n\n3.6.0 (2018-12-01)\n------------------\n\n- Upgraded to support Python 3.7\n\n- Allow ```` to contain ````, which allows content to be\n fitted into the place boundaries.\n\n\n3.5.1 (2018-10-09)\n------------------\n\n- Upgraded to support Reportlab 3.5.9\n\n\n3.5.0 (2018-04-10)\n------------------\n\n- Honor the order of attribute choices in the docs.\n\n- Abstracted span styles out of base paragraph style, so that attributes can\n be reused.\n\n- Remove all default values for ``SpanStyle`` styles, so that all values can\n be inherited from the paragraph.\n\n- Support for package-relative ``src`` values in ```` ```` tags.\n\n\n3.4.0 (2018-04-09)\n------------------\n\n- Drop Python 3.4 support.\n\n- Feature: Support for ```` and corresponding\n ```` styles.\n\n- Bug: ``attr.Sequence``'s ``min_length`` and ``max_length`` was ineffective\n\n\n\n3.3.0 (2017-12-06)\n------------------\n\n- Add support for non-rml header and footer statements\n This is to be able to support export to Open Document Format.\n\n- Dropped Support for Python 3.3\n\n\n3.2.0 (2017-01-08)\n------------------\n\n- Improve ``IntegerSequence`` field to return ranges using lists of two\n numbers instead of listing them all out.\n\n- Extended ``IntegerSequence`` to allow specification of first number and\n lower/upper bound inclusion.\n\n- Updated ``ConcatenationPostProcessor`` to handle the new integer sequence\n data structure. Since this is so much more efficient for the merging\n library, there was a 5x improvement when including PDFs with page ranges.\n\n- Implemented a PdfTk-based concatenation post-processor. PdfTk is very fast,\n but unfortunatelya lot of the gain is lost, since the outline must be merged\n in manually. The PdfTk post-processor can be enabled by::\n\n from z3c.rml import pdfinclude\n pdfinclude.IncludePdfPages.ConcatenationPostProcessorFactory = \\\n pdfinclude.PdfTkConcatenationPostProcessor\n\n- Fix initial blank page when PDF inclusion is first flowable. [Kyle MacFarlane]\n\n- Support for Python 3.5 [Kyle MacFarlane]\n\n- attr.getFileInfo() crashed if the context element wasn't parsed.\n\n\n3.1.0 (2016-04-04)\n------------------\n\n- Feature: Added new paragraph style attributes ``splitLongWords``,\n ``underlineProportion``, and ``bulletAnchor``.\n\n- Feature: Added ``topPadder`` directive. Patch by Alvin Gonzales.\n\n- Bug: Default SVG fill is black. Patch by Alvin Gonzales.\n\n- Bug: Fixes drawing incorrectly showing when the SVG `viewBox` is not\n anchored at coordinate (0, 0). Patch by Alvin Gonzales.\n\n- Test: Updated versions.cfg to reference the latest releases of all\n dependencies.\n\n- Bug: Avoid raising an exception of PdfReadWarning when including PDFs.\n Patch by Adam Groszer.\n\n\n3.0.0 (2015-10-02)\n------------------\n\n- Support for python 3.3 and 3.4\n\n- Add 'bulletchar' as a valid unordered bullet type.\n\n- Added nice help to rml2pdf script.\n\n- Allow \"go()\" to accept input and output file objects.\n\n- Fix \"Unresolved bookmark\" issue.\n\n- Fix Issue #10.\n\n\n2.9.3 (2015-09-18)\n------------------\n\n- Support transparent images in tag\n\n\n2.9.2 (2015-06-16)\n------------------\n\n- Fix spelling \"nineth\" to \"ninth\".\n\n\n2.9.1 (2015-06-15)\n------------------\n\n- Add missing file missing from brow-bag 2.9.0 release.\n\n\n2.9.0 (2015-06-15)\n------------------\n\n- Added support for more numbering schemes for ordered lists. The following\n new `bulletType` values are supported:\n\n * 'l' - Numbers as lower-cased text.\n * 'L' - Numbers as upper-cased text.\n * 'o' - Lower-cased ordinal with numbers converted to text.\n * 'O' - Upper-cased ordinal with numbers converted to text.\n * 'r' - Lower-cased ordinal with numbers.\n * 'R' - Upper-cased ordinal with numbers.\n\n2.8.1 (2015-05-05)\n------------------\n\n- Added `barBorder` attribute to ``barCode`` and ``barCodeFlowable``\n tags. This attribute controls the thickness of a white border around a QR\n code.\n\n2.8.0 (2015-02-02)\n------------------\n\n- Get version of reference manual from package version.\n\n- Added the ability to specify any set of characters as the \"bullet content\"\n like it is supported by ReportLab.\n\n- Fixed code to work with ReportLab 3.1.44.\n\n2.7.2 (2014-10-28)\n------------------\n\n- Now the latest PyPDF2 versions are supported.\n\n\n2.7.1 (2014-09-10)\n------------------\n\n- Fixed package name.\n\n\n2.7.0 (2014-09-10)\n------------------\n\n- Added ``bulletType`` sypport for the ``listStyle`` tag.\n\n- Added \"bullet\" as a valid unordered list type value.\n\n\n2.6.0 (2014-07-24)\n------------------\n\n- Implemented ability to use the ``mergePage`` tag inside the ``pageTemplate``\n tag. This way you can use a PDF as a background for a page.\n\n- Updated code to work with ReportLab 3.x, specifically the latest 3.1.8. This\n includes a monkeypatch to the code formatter for Python 2.\n\n- Updated code to work with PyPDF2 1.21. There is a bug in 1.22 that prohibits\n us from upgrading fully.\n\n- Changed buildout to create a testable set of scripts on Ubuntu. In the\n process all package versions were nailed for testing.\n\n\n2.5.0 (2013-12-10)\n------------------\n\n- Reimplamented ``includePdfPages`` directive to use the new PyPDF2 merger\n component that supports simple appending of pages. Also optimized page\n creation and minimized file loading. All of this resulted in a 95% speedup.\n\n\n2.4.1 (2013-12-10)\n------------------\n\n- Fixed a bug when rendering a table with the same style twice. Unfortuantely,\n Reportlab modifies a style during usage, so that a copy mustbe created for\n each use. [Marcin Nowak]\n\n\n2.4.0 (2013-12-05)\n------------------\n\n- Switch from ``pyPdf`` to the newer, maintained ``PyPDF2`` library.\n\n\n2.3.1 (2013-12-03)\n------------------\n\n- Report correct element during error reporting.\n\n- ``registerFontFamily`` never worked until now, since the directive was not\n properly registered.\n\n\n2.3.0 (2013-09-03)\n------------------\n\n- Added ``title``, ``subject``, ``author``, and ``creator`` attributes to\n ``document`` element. Those are set as PDF annotations, which are now\n commonly used to hint viewers window titles, etc. (Those fields are not\n available in RML2PDF.)\n\n\n2.2.1 (2013-08-06)\n------------------\n\n- Make the number of max rendering passes configurable by exposing the setting\n in the API.\n\n- Added `align` attribute to ``img`` tag.\n\n\n2.2.0 (2013-07-08)\n------------------\n\n- Added a new console script \"rml2pdf\" that renders an RML file to PDF.\n\n- Added ``preserveAspectRatio`` to ``img`` tag flowable. The attribute was\n already supported for the ``image`` tag.\n\n\n2.1.0 (2013-03-07)\n------------------\n\n- Implemented all PDF viewer preferences. [Kyle MacFarlane]\n\n * HideToolbar\n * HideMenubar\n * HideWindowUI\n * FitWindow\n * CenterWindow\n * DisplayDocTitle\n * NonFullScreenPageMode\n * Direction\n * ViewArea\n * ViewClip\n * PrintArea\n * PrintClip\n * PrintScaling\n\n They are all available via the ``docinit`` tag.\n\n- Added SVG support to the ``image`` and ``imageAndFlowables`` tags. [Kyle\n MacFarlane]\n\n Approach: Convert the drawing to a PIL ``Image`` instance and pass that\n around just like a regular image. The big problem is that in the conversion\n from ``Drawing`` to ``Image`` stroke width can often get messed up and\n become too thick. I think this is maybe down to how scaling is done but you\n can avoid it by editing the SVGs you want to insert. You also lose any\n transparency and get a white background. Basically you no longer really have\n a vector graphic but instead a 300 DPI bitmap that is automatically scaled\n to the correct size with little quality loss.\n\n- Added ability to look for font files in packages using the standard\n \"[package.path]/dir/filename\" notation. [Kyle MacFarlane]\n\n- Documented the ``pageSize`` versus ``pagesize`` attribute difference on\n ``template`` and ``pageTemplate`` elements compared to RML2PDF. [Kyle\n MacFarlane]\n\n- ``namedString`` element now evaluates its contents so you can use things\n like ``pageNumber`` inside of it. [Kyle MacFarlane]\n\n- Implemented ``evalString`` using Python's ``eval()`` with builtins\n disabled. [Kyle MacFarlane]\n\n- ``getName`` element now checks if it has a default attribute. This is used\n as a width measurement for a first pass or as the actual value if the\n reference isn't resolved after the second pass. [Kyle MacFarlane]\n\n- ``getName`` element now supports forward references. This means you can now\n do things like \"Page X of Y\". This only works in the ``drawString`` and\n ``para`` elements. [Kyle MacFarlane]\n\n- General performance improvements. [Kyle MacFarlane]\n\n- Improved performance by not applying a copy of the default style to every\n table cell and also by not even trying to initialise the attributes if lxml\n says they don't exist. [Kyle MacFarlane]\n\n- ``MergePostProcessor`` class did not copy document info and table of\n contents (aka Outlines) of ``inputFile1``. That meant that if you used any\n ``includePdfPages`` or ``mergePage`` directives you lost any ``outlineAdd``\n directive effect. [Alex Garel]\n\n- Fixed any failing tests, including the ones failing on Windows. [Kyle\n MacFarlane]\n\n- Fixed the table borders not printing or even appearing in some\n viewers. [Kyle MacFarlane]\n\n- Updated ``bootstrap.py`` and ``buildout.cfg`` to work with the latest\n version of ``zc.buildout``.\n\n- Updated build to use latest version of lxml.\n\n\n2.0.0 (2012-12-21)\n------------------\n\n- Implemented ``saveState`` and ``restoreState`` directives. (LP #666194)\n\n- Implemented ``storyPlace`` directive. (LP #665941)\n\n- Implemented ``clip`` attribute of ``path`` directive. See RML example 041.\n\n- Added ``h4``, ``h5``, and ``h6`` directives.\n\n- Implemented ``codesnippet`` directive.\n\n- Implemented ``pageBreakBefore``, ``frameBreakBefore``, ``textTransform``,\n and ``endDots`` attributes for paragraph styles.\n\n- Added ``maxLineLength`` and ``newLineChars`` attributes to the ``pre``\n directive.\n\n- Implemented ``pageNumber`` element for all ``draw*String`` elements.\n\n- Implemented ``NamedString`` directive.\n\n- Implemented ``startIndex`` and ``showIndex`` directive. Also hooked up\n ``index`` in paragraphs properly. You can now create real book indexes.\n\n- Implemented ``ol``, ``ul``, and ``li`` directives, which allow highly\n flexible lists to be created. Also implemented a complimentary ``listStyle``\n directive.\n\n- Implemented the following doc-programming directives:\n\n * docAssert\n * docAssign\n * docElse\n * docIf\n * docExec\n * docPara\n * docWhile\n\n- Added ``encName`` attribute to ``registerCidFont`` directive.\n\n- Renamed ``bookmark`` to ``bookmarkPage``.\n\n- Created a new canvas directive called ``bookmark``.\n\n- Added ``img`` directive, which is a simple image flowable.\n\n- Implemented crop marks support fully.\n\n- Added ``pageLayout`` and ``pageMode`` to ``docInit`` directive.\n\n- Implemented all logging related directives.\n\n- Implemented ``color`` directive inside the ``initialize`` directive.\n\n- Renamed ``pdfInclude`` to documented ``includePdfPages`` and added `pages`\n attribute, so that you can only include specific pages.\n\n- Don't show \"doc\" namespace in reference snippets.\n\n- Create a list of RML2PDF and z3c.rml differences.\n\n- Implemented the ``ABORT_ON_INVALID_DIRECTIVE`` flag, that when set ``True``\n will raise a ``ValueError`` error on the first occurence of a bad tag.\n\n- Implemented ``setFontSize`` directive for page drawings.\n\n- Implemented ``plugInGraphic`` which allows inserting graphics rendered in\n Python.\n\n- Added `href` and `destination` to table cells and rectangles.\n\n- Bug: Due to a logic error, bad directives were never properly detected and\n logged about.\n\n- Bug: Overwriting the default paragraph styles did not work properly.\n\n- Bug: Specifying a color in any tag inside the paragraph would fail, if the\n color was a referenced name.\n\n- Bug: Moved premature ``getName`` evaluation into runtime to properly handle\n synamic content now. This is now properly done for any paragraph and\n draw string variant.\n\n- Bug: Fixed DTD generator to properly ignore Text Nodes as attributes. Also\n text nodes were not properly documented as element PCDATA.\n\n\n1.1.0 (2012-12-18)\n------------------\n\n- Upgrade to ReportLab 2.6. This required some font changes and several\n generated PDFs did not match, since some default fonts changed to sans-serif.\n\n- Added ``pdfInclude`` directive from Alex Garel. (LP #969399).\n\n- Switched to Pillow (from PIL).\n\n- Switched RML highlighting in RML Reference from SilverCity to Pygments.\n\n- Bug: Addressed a bug in ReportLab 2.6 that disallowed 3-D pie charts from\n rendering.\n\n- Bug: Properly reset pdfform before rendering a document.\n\n- Bug: Reset fonts properly before a rendering.\n\n\n1.0.0 (2012-04-02)\n------------------\n\n- Using Python's ``doctest`` module instead of depreacted\n ``zope.testing.doctest``.\n\n\n0.9.1 (2010-07-22)\n------------------\n\n- I found a more complete paragraph border patch from Yuan Hong. Now the DTD\n is updated, the border supports a border radius and the tag-para.rml sample\n has been updated.\n\n\n0.9.0 (2010-07-22)\n------------------\n\n- Upgraded to ReportLab 2.4. This required some font changes and several\n generated PDFs did not match, since some default fonts changed.\n\n- Upgraded to latest lxml. This only required a trivial change. Patch by Felix\n Schwarz.\n\n- Implemented ``linePlot3D`` directive. Patch by Faisal Puthuparackat.\n\n- Added paragraph border support. Patch by Yuan Hong.\n\n- Bug: Fixed version number in reference.pt. Patch by Felix Schwarz.\n\n- Bug: Write PDF documents in binary mode. Patch by Felix Schwarz.\n\n\n0.8.0 (2009-02-18)\n------------------\n\n- Bug: Use python executable as a part of the subprocess command.\n\n- Add support for RML's `pageNumber` element.\n\n\n0.7.3 (2007-11-10)\n------------------\n\n- Make sure that the output dir is included in the distribution.\n\n\n0.7.2 (2007-11-10)\n------------------\n\n- Upgraded to work with ReportLab 2.1 and lxml 1.3.6.\n\n- Fix sub-process tests for a pure egg setup.\n\n\n0.7.1 (2007-07-31)\n------------------\n\n- Bug: When the specified page size (within the ``pageInfo`` element) was a\n word or set thereof, the processing would fail. Thanks to Chris Zelenak for\n reporting the bug and providing a patch.\n\n\n0.7.0 (2007-06-19)\n------------------\n\n- Feature: Added a Chinese PDF sample file to ``tests/expected`` under the\n name ``sample-shipment-chinese.pdf``.\n\n- Feature: Added another tag that is commonly needed in projects. The\n ```` tag will keep the child flowables in the same frame.\n When necessary, the frame break will be automatic. Patch by Yuan Hong.\n\n- Feature: Added the \"alignment\" attribute to the ``blockTable``\n directive. This attribute defines the horizontal alignment for a table that\n is not 100% in width of the containing flowable. Patch by Yuan Hong.\n\n- Feature: When creating Chinese PDF documents, the normal TTF for Chinese\n printing is 'simsun'. However, when bold text is neeed, we switch to\n 'simhei'. To properly register this, we need the\n ``reportlab.lib.fonts.addMapping`` function. This is missing in the reportlab\n RML specification, so a new directive has been defined::\n\n \n\n Patch by Yuan Hong.\n\n- Feature: The ``para`` and ``paraStyle`` directive now support the \"wordWrap\"\n attribute, which allows for selecting a different wrod wrapping\n algorithm. This is needed because some far-East Asian languages do not use\n white space to separate words. Patch by Yuan Hong.\n\n- Bug: Handle Windows drive letters correctly. Report and fix by Yuan Hong.\n\n\n0.6.0 (2007-06-19)\n------------------\n\n- Bug: Fixed setup.py to include all dependencies.\n\n- Bug: Added test to show that a blocktable style can be applied multiple\n times. A user reported that this is not working, but I could not replicate\n the problem.\n\n- Update: Updated the expected renderings to ReportLab 2.1. There were some\n good layout fixes that broke the image comparison.\n\n\n0.5.0 (2007-04-01)\n------------------\n\n- Initial Release", "description_content_type": "", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/zopefoundation/z3c.rml", "keywords": "zope3 rml reportlab pdf pagetemplate", "license": "ZPL 2.1", "maintainer": "", "maintainer_email": "", "name": "z3c.rml", "package_url": "https://pypi.org/project/z3c.rml/", "platform": "", "project_url": "https://pypi.org/project/z3c.rml/", "project_urls": { "Homepage": "https://github.com/zopefoundation/z3c.rml" }, "release_url": "https://pypi.org/project/z3c.rml/3.9.1/", "requires_dist": null, "requires_python": "", "summary": "An alternative implementation of RML", "version": "3.9.1" }, "last_serial": 5929745, "releases": { "0.5": [ { "comment_text": "", "digests": { "md5": "d11cf6a410cc4b74058d9e4505725b78", "sha256": "dfe6a52c71775c31a06a31b1082270bffb80231368b51274c177ac0e6e1d2f6b" }, "downloads": -1, "filename": "z3c.rml-0.5.tar.gz", "has_sig": false, "md5_digest": "d11cf6a410cc4b74058d9e4505725b78", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 370955, "upload_time": "2007-04-01T19:31:36", "url": "https://files.pythonhosted.org/packages/af/98/8aa3910395b5daf8365eeedda11afcc1b4e68423a479e79bb771a6326d52/z3c.rml-0.5.tar.gz" } ], "0.5-r73959": [ { "comment_text": "", "digests": { "md5": "2d4a0cd3eb0dd6c47af72abc6df94b0d", "sha256": "e9f60bad7256a6e23606ed30ea9bc83b66afeb17401873bb1a898edde85faed6" }, "downloads": -1, "filename": "z3c.rml-0.5_r73959-py2.4.egg", "has_sig": false, "md5_digest": "2d4a0cd3eb0dd6c47af72abc6df94b0d", "packagetype": "bdist_egg", "python_version": "2.4", "requires_python": null, "size": 494839, "upload_time": "2007-04-01T19:15:07", "url": "https://files.pythonhosted.org/packages/5f/c8/9b9745b08ae78155daef5de6480eb7f056f624fdfa39657882653d93696e/z3c.rml-0.5_r73959-py2.4.egg" }, { "comment_text": "", "digests": { "md5": "8916c6b15e32253aeea6716a43992aac", "sha256": "69c862402d989f12d563d7922935b36e882a44a94e0bda080c0e0ddcafebcc67" }, "downloads": -1, "filename": "z3c.rml-0.5-r73959.tar.gz", "has_sig": false, "md5_digest": "8916c6b15e32253aeea6716a43992aac", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 370959, "upload_time": "2007-04-01T19:14:43", "url": "https://files.pythonhosted.org/packages/b7/2e/314dcf31a9fc41a1c673db1a6a823ba2b787c9d6109b7dce7bc257c09817/z3c.rml-0.5-r73959.tar.gz" } ], "0.6": [ { "comment_text": "", "digests": { "md5": "005e974f8f1ab02057b519a2b58b0fd6", "sha256": "7ede22cf4546ffd039fa01d9f092731427d075d692a5036b2bb5bcb041ae2fa5" }, "downloads": -1, "filename": "z3c.rml-0.6-py2.4.egg", "has_sig": false, "md5_digest": "005e974f8f1ab02057b519a2b58b0fd6", "packagetype": "bdist_egg", "python_version": "2.4", "requires_python": null, "size": 976574, "upload_time": "2007-06-19T17:31:46", "url": "https://files.pythonhosted.org/packages/c7/ca/a68b3cf578ea0ddb119e7cb98e75820ae0affc56c9d4114a911be14e6cf8/z3c.rml-0.6-py2.4.egg" }, { "comment_text": "", "digests": { "md5": "6b30308c2e3e4b043b41fd256f0cb6bb", "sha256": "881b30994e0a5daa6d3c93093d957ea5b9edfe32a618f74f0daebedcf3b09ace" }, "downloads": -1, "filename": "z3c.rml-0.6.tar.gz", "has_sig": false, "md5_digest": "6b30308c2e3e4b043b41fd256f0cb6bb", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 734434, "upload_time": "2007-06-19T17:30:56", "url": "https://files.pythonhosted.org/packages/8c/c3/fa165d35f824f86860fcd62c25ce5004540fa6c35f293f127710e10247b5/z3c.rml-0.6.tar.gz" } ], "0.6-r76799": [ { "comment_text": "", "digests": { "md5": "0d3f8bfb5affc35ba7b93ad68ea90bee", "sha256": "acecdb617414912dc7946f2bf9bf68086aaafd752550fda711c997d1e1a29f6b" }, "downloads": -1, "filename": "z3c.rml-0.6_r76799-py2.4.egg", "has_sig": false, "md5_digest": "0d3f8bfb5affc35ba7b93ad68ea90bee", "packagetype": "bdist_egg", "python_version": "2.4", "requires_python": null, "size": 976582, "upload_time": "2007-06-19T17:28:56", "url": "https://files.pythonhosted.org/packages/0f/e5/fa258c4f22a1e0cb79bc3958faeb75141641e8e83e49785e47413a5f24dc/z3c.rml-0.6_r76799-py2.4.egg" }, { "comment_text": "", "digests": { "md5": "b6e24b219ea718ecd5497b89eb252d2f", "sha256": "65f5d1ca9d6e4ff3c5029a596023b37fd7beed25bac7a5e292c1e1b9c3f4be31" }, "downloads": -1, "filename": "z3c.rml-0.6-r76799.tar.gz", "has_sig": false, "md5_digest": "b6e24b219ea718ecd5497b89eb252d2f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 734452, "upload_time": "2007-06-19T17:29:36", "url": "https://files.pythonhosted.org/packages/bd/56/c0e8c105c7c1c71224f72127dfabcf059b04564bd272a48c3b974dd89ed3/z3c.rml-0.6-r76799.tar.gz" } ], "0.7": [ { "comment_text": "", "digests": { "md5": "28bcf07f241b9cf4d5099dd89ff6e4db", "sha256": "420f1594ffd9e26b15bb91f8581cc836ffab2c35d8ddc4ea733e9fb103b8158f" }, "downloads": -1, "filename": "z3c.rml-0.7-py2.4.egg", "has_sig": false, "md5_digest": "28bcf07f241b9cf4d5099dd89ff6e4db", "packagetype": "bdist_egg", "python_version": "2.4", "requires_python": null, "size": 1079257, "upload_time": "2007-06-19T20:15:12", "url": "https://files.pythonhosted.org/packages/ce/b7/bcbde1cc31301573f43710e476cfccfe2783ea43df9c2699e06e4376ea21/z3c.rml-0.7-py2.4.egg" }, { "comment_text": "", "digests": { "md5": "1ba12687af4fcb4caa32cb68545cafb6", "sha256": "5046826f0f1b751457b548870856cadbd0c314b00779285276ba114912bd6a4c" }, "downloads": -1, "filename": "z3c.rml-0.7.tar.gz", "has_sig": false, "md5_digest": "1ba12687af4fcb4caa32cb68545cafb6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 831643, "upload_time": "2007-06-19T19:11:00", "url": "https://files.pythonhosted.org/packages/31/45/cb0cd51b7949893d9ee509e01837eadaa8d52afbe2fb2d3c9d14475123bc/z3c.rml-0.7.tar.gz" } ], "0.7.1": [ { "comment_text": "", "digests": { "md5": "24ae5e6a0724e6c4537100cec5ab8245", "sha256": "0a1185a1a6dea31924d2e86b7d5f49e790bb15b760507a263b89a82e63aead95" }, "downloads": -1, "filename": "z3c.rml-0.7.1-py2.4.egg", "has_sig": false, "md5_digest": "24ae5e6a0724e6c4537100cec5ab8245", "packagetype": "bdist_egg", "python_version": "2.4", "requires_python": null, "size": 1082559, "upload_time": "2007-08-01T03:19:30", "url": "https://files.pythonhosted.org/packages/4c/56/16db76da785da6ecc09a6f3bfc3d705c1212663421706bb00c54f27b6af8/z3c.rml-0.7.1-py2.4.egg" }, { "comment_text": "", "digests": { "md5": "ac974dcef9bed8b7d510ce749560f2eb", "sha256": "760376e2ea8ca482602c23f0521e7e8512f25251c5630d180fd99f8765a47155" }, "downloads": -1, "filename": "z3c.rml-0.7.1.tar.gz", "has_sig": false, "md5_digest": "ac974dcef9bed8b7d510ce749560f2eb", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 829451, "upload_time": "2007-08-01T03:18:53", "url": "https://files.pythonhosted.org/packages/3d/5b/8fded5132c5d869078a1567760cf37938b4ab082ebf043af189ab413168a/z3c.rml-0.7.1.tar.gz" } ], "0.7.2": [ { "comment_text": "", "digests": { "md5": "5a708b89634d6f051a8f0779906d155a", "sha256": "f2bf97b492f983e242374a7e276d0acc0d01ca39e98036648e1f483fc6c69b88" }, "downloads": -1, "filename": "z3c.rml-0.7.2.tar.gz", "has_sig": false, "md5_digest": "5a708b89634d6f051a8f0779906d155a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 830973, "upload_time": "2007-11-10T20:58:52", "url": "https://files.pythonhosted.org/packages/65/b2/7fc3161c1b694030b138641861133177eb2663651da80b395f354eedb07d/z3c.rml-0.7.2.tar.gz" } ], "0.7.3": [ { "comment_text": "", "digests": { "md5": "e9de25891c5e944a3e1f1ad26254710f", "sha256": "77b182166384bf7c48d6077a329ea2bf548976e9537345c115fd39dd0eec0bb5" }, "downloads": -1, "filename": "z3c.rml-0.7.3.tar.gz", "has_sig": false, "md5_digest": "e9de25891c5e944a3e1f1ad26254710f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 831064, "upload_time": "2007-11-10T21:21:44", "url": "https://files.pythonhosted.org/packages/6b/5b/1a3e4075f4ddaaebc4760d776fa39c414fa039bc73957729588cc244428e/z3c.rml-0.7.3.tar.gz" } ], "0.8.0": [ { "comment_text": "", "digests": { "md5": "f39ebab622645a7e4a25e7992a18fa7b", "sha256": "156bf1e0db6dc64fdb5de47bd4cece44c3e3aff13dd9e7052628f39f81943a5f" }, "downloads": -1, "filename": "z3c.rml-0.8.0.tar.gz", "has_sig": false, "md5_digest": "f39ebab622645a7e4a25e7992a18fa7b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 840723, "upload_time": "2009-02-18T08:50:59", "url": "https://files.pythonhosted.org/packages/68/9e/9fe12956a6c0ecfd4439b0a117eb9584e1aa60a358e0875cccb3e70cae69/z3c.rml-0.8.0.tar.gz" } ], "0.9.0": [ { "comment_text": "", "digests": { "md5": "3e5614d9d741cb106f4bbf3d6d0a1651", "sha256": "f13a6be94587a64956e103133feaa0b25766b4ae303fbd3f510422e1a299e381" }, "downloads": -1, "filename": "z3c.rml-0.9.0.tar.gz", "has_sig": false, "md5_digest": "3e5614d9d741cb106f4bbf3d6d0a1651", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1134739, "upload_time": "2010-07-22T21:05:04", "url": "https://files.pythonhosted.org/packages/14/0f/5bb1018036556818aa6c0387cef9cf92a6eb0bf4e69cc2c88ab391f078d5/z3c.rml-0.9.0.tar.gz" } ], "0.9.1": [ { "comment_text": "", "digests": { "md5": "15ae46d95d22896ed83f81d4ae5cf49c", "sha256": "8be62e344de9a03139085bc4457f269f9a38d7a9889f3ba4e1ea5c86b6a9f677" }, "downloads": -1, "filename": "z3c.rml-0.9.1.tar.gz", "has_sig": false, "md5_digest": "15ae46d95d22896ed83f81d4ae5cf49c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1134932, "upload_time": "2010-07-22T21:22:36", "url": "https://files.pythonhosted.org/packages/18/57/7ec69f72699a8f7a5c43e08fa2d58c0fc7bdf1627b1d8a22076e1464b7ab/z3c.rml-0.9.1.tar.gz" } ], "1.0.0": [ { "comment_text": "", "digests": { "md5": "2bdd5f4f170b0d6dc0b5af98964f30a1", "sha256": "961cd19f443f69508f43025749555a5f2b61d577a6ea28c28689cd86fc7740dd" }, "downloads": -1, "filename": "z3c.rml-1.0.0.tar.gz", "has_sig": false, "md5_digest": "2bdd5f4f170b0d6dc0b5af98964f30a1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1191356, "upload_time": "2012-04-02T17:43:50", "url": "https://files.pythonhosted.org/packages/b0/a9/73655ab4e025d0eb8eb5b305b0afe4de5b49cda653e2daa47a9592ab7806/z3c.rml-1.0.0.tar.gz" } ], "1.1.0": [ { "comment_text": "", "digests": { "md5": "3bab50bfc42bf6f5160c4def4b23ca31", "sha256": "209ed27b27b93db9fca5c7ab2292e4f07b34c813eb2851ec559c9327e7051935" }, "downloads": -1, "filename": "z3c.rml-1.1.0.tar.gz", "has_sig": false, "md5_digest": "3bab50bfc42bf6f5160c4def4b23ca31", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 943889, "upload_time": "2012-12-18T21:46:58", "url": "https://files.pythonhosted.org/packages/73/4a/7c0d41e28d996e07cdc844d3c54d314bf47ac6e700dddb5dfc5dd09043eb/z3c.rml-1.1.0.tar.gz" } ], "2.0.0": [ { "comment_text": "", "digests": { "md5": "267f2be5948a1dafec388c6ed8864c57", "sha256": "c7df0a0d2c265c665199277cf1a6948728d4814716a60066901f6c7faf396a8b" }, "downloads": -1, "filename": "z3c.rml-2.0.0.tar.gz", "has_sig": false, "md5_digest": "267f2be5948a1dafec388c6ed8864c57", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 982480, "upload_time": "2012-12-21T07:00:11", "url": "https://files.pythonhosted.org/packages/d3/bc/6b383c13790340776ba3310d88ab8d025c7ad47f26def0a8ef82d182d10a/z3c.rml-2.0.0.tar.gz" } ], "2.0.0dev": [], "2.1.0": [ { "comment_text": "", "digests": { "md5": "c54e7136000c3ac5b3c0f9a8d9263192", "sha256": "74cb884c1da5d5b33a73e433858cfcf12af0d43d91ec5fc2bfe84556f6f53590" }, "downloads": -1, "filename": "z3c.rml-2.1.0.zip", "has_sig": false, "md5_digest": "c54e7136000c3ac5b3c0f9a8d9263192", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1696907, "upload_time": "2013-03-07T16:20:23", "url": "https://files.pythonhosted.org/packages/11/22/183ec751d135c1b8cd08d74cafd768b101eecf650184445aecf2216d9d7e/z3c.rml-2.1.0.zip" } ], "2.2.0": [ { "comment_text": "", "digests": { "md5": "1c0d2f1102f4c58c31802db1fd456e1b", "sha256": "349ce221548b6f9bdd184cd972f17a50ce139274c27028793808e4210f0177f0" }, "downloads": -1, "filename": "z3c.rml-2.2.0.zip", "has_sig": false, "md5_digest": "1c0d2f1102f4c58c31802db1fd456e1b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1700183, "upload_time": "2013-07-08T21:19:19", "url": "https://files.pythonhosted.org/packages/d6/64/d00981113e45de2a0cad12f71b94635b405f12cf9a967d2a1cb2b0e33797/z3c.rml-2.2.0.zip" } ], "2.2.1": [ { "comment_text": "", "digests": { "md5": "74f9eb2a5a9cb937a8b1cdc78f686a45", "sha256": "74070b785ed3006b09eba52ae6f8c4b7b43c6aa6b80ae4afb7d951eb9076caf7" }, "downloads": -1, "filename": "z3c.rml-2.2.1.tar.gz", "has_sig": false, "md5_digest": "74f9eb2a5a9cb937a8b1cdc78f686a45", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1434873, "upload_time": "2013-08-06T18:19:12", "url": "https://files.pythonhosted.org/packages/e0/e0/cfbfdcddad3d3c185b90b6d948ceaa92fc505fdca4c58660e1d280df5a75/z3c.rml-2.2.1.tar.gz" } ], "2.3.0": [ { "comment_text": "", "digests": { "md5": "bafc764e673417125df669c53cbcb37d", "sha256": "15c96d1f8f927549da3a1841a5f44f483e268bd040731ef4189d82f33f13a10d" }, "downloads": -1, "filename": "z3c.rml-2.3.0.zip", "has_sig": false, "md5_digest": "bafc764e673417125df669c53cbcb37d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1703529, "upload_time": "2013-09-03T18:41:17", "url": "https://files.pythonhosted.org/packages/c1/e7/0d554b91086b6e86d47a562ec017bb342b969203c3b17688839578e84612/z3c.rml-2.3.0.zip" } ], "2.3.1": [ { "comment_text": "", "digests": { "md5": "9ecab1e75eb97a8a0e9b454e04255605", "sha256": "3d66e8389904b453d8f270e4ee8c86b74c5e1942fc19bcfe6fa933a4975abc63" }, "downloads": -1, "filename": "z3c.rml-2.3.1.zip", "has_sig": false, "md5_digest": "9ecab1e75eb97a8a0e9b454e04255605", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1703767, "upload_time": "2013-12-04T03:19:12", "url": "https://files.pythonhosted.org/packages/b1/71/fa7417dc5befdfcc0ba083064365fa158591fdf1c31c78d7ee3816c3c93c/z3c.rml-2.3.1.zip" } ], "2.4.0": [ { "comment_text": "", "digests": { "md5": "0aad23256ea770b9685d964483124f83", "sha256": "cc1e3dd5fc40616614217cb5b45f4b1cc984afd297b6b71e0a2aa20b432f6c7d" }, "downloads": -1, "filename": "z3c.rml-2.4.0.zip", "has_sig": false, "md5_digest": "0aad23256ea770b9685d964483124f83", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1703909, "upload_time": "2013-12-05T15:04:00", "url": "https://files.pythonhosted.org/packages/da/8c/b7a6e098c961d5c23b1db934b0e7cc7594b80938c86e91cae6d64156b964/z3c.rml-2.4.0.zip" } ], "2.4.1": [ { "comment_text": "", "digests": { "md5": "e53ff4960982f6ea0c51ec5584a9bea2", "sha256": "518b00f21b4265a8b8c8bd4278f7397596ef0500896344b3084e3d66796c58fb" }, "downloads": -1, "filename": "z3c.rml-2.4.1.zip", "has_sig": false, "md5_digest": "e53ff4960982f6ea0c51ec5584a9bea2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1706025, "upload_time": "2013-12-10T08:29:28", "url": "https://files.pythonhosted.org/packages/ca/5c/85d88c381175b6e6c8ca9e46fbe51c6009920c57f8e212f9785bab75e0ea/z3c.rml-2.4.1.zip" } ], "2.5.0": [ { "comment_text": "", "digests": { "md5": "92279ab4003af2e196db56fa92b57a31", "sha256": "3e8c2912b4ae0194f74fd634451900b80015e0de849bc9a236493c40e52281f9" }, "downloads": -1, "filename": "z3c.rml-2.5.0.zip", "has_sig": false, "md5_digest": "92279ab4003af2e196db56fa92b57a31", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1706588, "upload_time": "2013-12-11T03:13:17", "url": "https://files.pythonhosted.org/packages/75/1a/cb3871a978add7f5f2e3aa214e67b70e35948a298626b1b5f8b8c6474dd8/z3c.rml-2.5.0.zip" } ], "2.6.0": [ { "comment_text": "", "digests": { "md5": "9bb1370097ed8a25bf340afb841bab13", "sha256": "ada7ce0351ed1ecbac2396a473ae26b2e682102d4b51047659a7d3feeb8238be" }, "downloads": -1, "filename": "z3c.rml-2.6.0.tar.gz", "has_sig": false, "md5_digest": "9bb1370097ed8a25bf340afb841bab13", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1443122, "upload_time": "2014-07-24T07:24:00", "url": "https://files.pythonhosted.org/packages/d8/cd/d4fbcfe24d8c6a22f754c3bf3c1209034e56cda5aedbc3fbeaf25796e66f/z3c.rml-2.6.0.tar.gz" } ], "2.7.1": [ { "comment_text": "", "digests": { "md5": "0df45f2c96b3a0732d02106e985511fc", "sha256": "52636d6190f900580de969f6906b476c5eb730ae09aff9a3bd6eeb6ce0ad776e" }, "downloads": -1, "filename": "z3c.rml-2.7.1.zip", "has_sig": false, "md5_digest": "0df45f2c96b3a0732d02106e985511fc", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1727900, "upload_time": "2014-09-10T17:49:24", "url": "https://files.pythonhosted.org/packages/92/be/3a6b2513aa9e509d1646ae19980993addc3b2be6732760cb4e058db0aff8/z3c.rml-2.7.1.zip" } ], "2.7.2": [ { "comment_text": "", "digests": { "md5": "0aebc0dc1f56598c7205b24d956a26cf", "sha256": "64700b348b9ef9bbcc33874984745ebe0474de2b5ac63b75f3cfe132961be964" }, "downloads": -1, "filename": "z3c.rml-2.7.2.zip", "has_sig": false, "md5_digest": "0aebc0dc1f56598c7205b24d956a26cf", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1728044, "upload_time": "2014-10-28T16:50:15", "url": "https://files.pythonhosted.org/packages/a9/a9/bd5c1d3efefc35b905e58121b216858259cc9865f195f8073513fe0d06dd/z3c.rml-2.7.2.zip" } ], "2.8.0": [ { "comment_text": "", "digests": { "md5": "6cd0f7605aa2ca632d3748f67b4aa318", "sha256": "292dcf6c09b36e12717d4c9d4d8ec7a63fcf1c88365efbb7676d5577c03e6e3e" }, "downloads": -1, "filename": "z3c.rml-2.8.0.zip", "has_sig": false, "md5_digest": "6cd0f7605aa2ca632d3748f67b4aa318", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1714138, "upload_time": "2015-02-03T04:46:04", "url": "https://files.pythonhosted.org/packages/00/b6/17d2d5984d328b5ac4045fc5365e63fff6e33d657cd7d396322f7ba53c0e/z3c.rml-2.8.0.zip" } ], "2.8.1": [ { "comment_text": "", "digests": { "md5": "3fd3a83cbd67ddd03a74dd9d91a4ef96", "sha256": "ea6a4d3743060ac56ce3752da537a22353f48a2e77482aa01dfd0aa59b662bf3" }, "downloads": -1, "filename": "z3c.rml-2.8.1.tar.gz", "has_sig": false, "md5_digest": "3fd3a83cbd67ddd03a74dd9d91a4ef96", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1454101, "upload_time": "2015-05-06T01:12:58", "url": "https://files.pythonhosted.org/packages/1d/94/97146eeb6659fd4a7e3ac83e516a606f4c5a61d0243b41d742bc54b3511b/z3c.rml-2.8.1.tar.gz" } ], "2.9.0": [ { "comment_text": "", "digests": { "md5": "6f1dd0bc7146273c05b2d330d05b3d66", "sha256": "811c0f4f57fa8aa67b96b57d8b4cd06ff4a621101eed901b7b30c7692cb98330" }, "downloads": -1, "filename": "z3c.rml-2.9.0.tar.gz", "has_sig": false, "md5_digest": "6f1dd0bc7146273c05b2d330d05b3d66", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1449498, "upload_time": "2015-06-15T23:36:01", "url": "https://files.pythonhosted.org/packages/ac/a5/e1c414f2ba804874496bec2875f27b7812f69d01f90133aaea61432f3f3e/z3c.rml-2.9.0.tar.gz" } ], "2.9.1": [ { "comment_text": "", "digests": { "md5": "d5857de7c84e7f85071c8dde9c4890fb", "sha256": "74f42442c068a420938e5bef9cbb4a8bfb33d7c2d33e2c24d920aa4acb20130b" }, "downloads": -1, "filename": "z3c.rml-2.9.1.tar.gz", "has_sig": false, "md5_digest": "d5857de7c84e7f85071c8dde9c4890fb", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1450746, "upload_time": "2015-06-15T23:41:07", "url": "https://files.pythonhosted.org/packages/e8/9b/c4e733f271d1002db5b9a91c3702c68dae75f825c9a0d6ef5bd61eab74eb/z3c.rml-2.9.1.tar.gz" } ], "2.9.2": [ { "comment_text": "", "digests": { "md5": "a89ef943cb8b10140b19eff28f845c69", "sha256": "11b9c4ed83680222f258d1ddfb063e6122a0d37706327b9b3a69931c8a5d96ea" }, "downloads": -1, "filename": "z3c.rml-2.9.2.tar.gz", "has_sig": false, "md5_digest": "a89ef943cb8b10140b19eff28f845c69", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1450786, "upload_time": "2015-06-16T08:40:05", "url": "https://files.pythonhosted.org/packages/89/f5/18c431cb5c86543267beb11789a6e15d5b9db5eac5145dde4e3e127b6aff/z3c.rml-2.9.2.tar.gz" } ], "2.9.3": [ { "comment_text": "", "digests": { "md5": "93762bbf21473f7f1286add4cf969a4a", "sha256": "3bf1da23859c9223a3335d2cc6849ea45e08367f384b6df15de642d00f96ab60" }, "downloads": -1, "filename": "z3c.rml-2.9.3.tar.gz", "has_sig": false, "md5_digest": "93762bbf21473f7f1286add4cf969a4a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1469134, "upload_time": "2015-09-18T20:56:42", "url": "https://files.pythonhosted.org/packages/dd/da/64fb865618b49cacab5608c29d0fdcc34485ca943092c727adf4a6cd7d7e/z3c.rml-2.9.3.tar.gz" } ], "3.0.0": [ { "comment_text": "", "digests": { "md5": "e62979bac0646d9853acbf62a58b7fba", "sha256": "6294a973870c11353bd19f451e2d935a888a554c9c2d8581efd3e093b771fe44" }, "downloads": -1, "filename": "z3c.rml-3.0.0.tar.gz", "has_sig": false, "md5_digest": "e62979bac0646d9853acbf62a58b7fba", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1508617, "upload_time": "2015-10-02T15:36:06", "url": "https://files.pythonhosted.org/packages/bf/da/4c07656b0ab1ed3d22f7832e8a96f7f9b5ffa53ea7519a8f2a03a4397add/z3c.rml-3.0.0.tar.gz" } ], "3.1.0": [ { "comment_text": "", "digests": { "md5": "fa302639424f997fdb20ec7d682cbb92", "sha256": "d9bb51c31b56a249e3be100ba201c6447b237d3ffa3026c7386763abafca45ca" }, "downloads": -1, "filename": "z3c.rml-3.1.0.tar.gz", "has_sig": false, "md5_digest": "fa302639424f997fdb20ec7d682cbb92", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1519837, "upload_time": "2016-04-04T09:57:58", "url": "https://files.pythonhosted.org/packages/14/56/84ebce54fe12e0acfa07358f192bf468cb021265baeeb96c4dce2b975159/z3c.rml-3.1.0.tar.gz" } ], "3.2.0": [ { "comment_text": "", "digests": { "md5": "cacccd600a1d623eca08e8ae2ff1b25f", "sha256": "e9bdb809bafe32cf727314f62b2ed5beac40415b2ceba336e0519c14b5680cb8" }, "downloads": -1, "filename": "z3c.rml-3.2.0.tar.gz", "has_sig": false, "md5_digest": "cacccd600a1d623eca08e8ae2ff1b25f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1667059, "upload_time": "2017-01-08T19:12:13", "url": "https://files.pythonhosted.org/packages/83/cf/8ecc0a062cc3336e0c3afa298687613a3ec03dd117f79ba73f992431a600/z3c.rml-3.2.0.tar.gz" } ], "3.3.0": [ { "comment_text": "", "digests": { "md5": "9d199228d8f6ebe9a83b4c541ba7fa7c", "sha256": "9e1d86d927278780cb6f7ae2f578b566e3cbf57bee46705818c03c4cbef3f551" }, "downloads": -1, "filename": "z3c.rml-3.3.0.tar.gz", "has_sig": false, "md5_digest": "9d199228d8f6ebe9a83b4c541ba7fa7c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1642770, "upload_time": "2017-12-07T13:02:10", "url": "https://files.pythonhosted.org/packages/20/06/f2d6f0f7b548dae33fe5a1c1f37474424f13ea0ed611cb048b2eedc13424/z3c.rml-3.3.0.tar.gz" } ], "3.4.0": [ { "comment_text": "", "digests": { "md5": "bb471a57b1fe83aafd61fe88f3b83514", "sha256": "8689fed9a37fb8592d15e0cd6f7760f3e88ecf44705dc916ec34a265cb33429b" }, "downloads": -1, "filename": "z3c.rml-3.4.0.tar.gz", "has_sig": false, "md5_digest": "bb471a57b1fe83aafd61fe88f3b83514", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1647150, "upload_time": "2018-04-10T01:24:18", "url": "https://files.pythonhosted.org/packages/60/bb/18d1f06f34d9f2d42f360c340c0620a96cee820955a76b84c163b1b5ae2a/z3c.rml-3.4.0.tar.gz" } ], "3.5.0": [ { "comment_text": "", "digests": { "md5": "ae3647f55286cd775a8ef35ced426dba", "sha256": "d124ac388c8df464779c9c462a3487ca7ba5a5ecdb8d1a4b2f254b08ac2fb39b" }, "downloads": -1, "filename": "z3c.rml-3.5.0.tar.gz", "has_sig": false, "md5_digest": "ae3647f55286cd775a8ef35ced426dba", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1578408, "upload_time": "2018-04-10T15:18:45", "url": "https://files.pythonhosted.org/packages/f6/46/ed9afa6d1489c8137f38ac6333170941a657308b0cbb430c9dff5dfbf447/z3c.rml-3.5.0.tar.gz" } ], "3.5.1": [ { "comment_text": "", "digests": { "md5": "a1bbbc0e71bcd84aafe80a9302d76087", "sha256": "c24fbf2aefd57f820fe5f80907fcf4bdd407c42c19658d75675d29047cde75d3" }, "downloads": -1, "filename": "z3c.rml-3.5.1.tar.gz", "has_sig": false, "md5_digest": "a1bbbc0e71bcd84aafe80a9302d76087", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1548200, "upload_time": "2018-10-09T07:56:42", "url": "https://files.pythonhosted.org/packages/db/8e/6108fd557d7c3741208ce6aa52ef56adc2a6703594c7ac0788ccd9c82ce0/z3c.rml-3.5.1.tar.gz" } ], "3.6.0": [ { "comment_text": "", "digests": { "md5": "36e6f9229487d683f881399b548dae68", "sha256": "a37c6ca3889f047725713ad8b4b4f69adb22499169ecfe290e3bc76c00d50f44" }, "downloads": -1, "filename": "z3c.rml-3.6.0.tar.gz", "has_sig": false, "md5_digest": "36e6f9229487d683f881399b548dae68", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1576963, "upload_time": "2018-12-01T08:22:11", "url": "https://files.pythonhosted.org/packages/68/d7/0e20ce1eb92aea410fc2251f5df3ffcd9eb8c677cc7511379e67f63632ef/z3c.rml-3.6.0.tar.gz" } ], "3.6.1": [ { "comment_text": "", "digests": { "md5": "273a027da6ca50547ac6ecb01877134c", "sha256": "8b5e4a1e82f46c4bda5acbbb2f7eea95ce01c74113421595fc0120b80c4924b6" }, "downloads": -1, "filename": "z3c.rml-3.6.1.tar.gz", "has_sig": false, "md5_digest": "273a027da6ca50547ac6ecb01877134c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1577021, "upload_time": "2018-12-01T08:24:33", "url": "https://files.pythonhosted.org/packages/d3/45/1f7f4fb48cf69ca69385e1b6adad14b7256d68fbfa35c501aba5302dbb0c/z3c.rml-3.6.1.tar.gz" } ], "3.6.2": [ { "comment_text": "", "digests": { "md5": "3382cc3b9e5f0b3c4b727ac70ff7d79d", "sha256": "8921df0b32375bb1403e619e280f3de1aee38decf4d070725f7cc98cbdb7e31d" }, "downloads": -1, "filename": "z3c.rml-3.6.2.tar.gz", "has_sig": false, "md5_digest": "3382cc3b9e5f0b3c4b727ac70ff7d79d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1478288, "upload_time": "2019-03-27T10:34:28", "url": "https://files.pythonhosted.org/packages/4b/66/5559ea8febe3a8c966fe5ace444e6c7d760d4bd9501ff835c169c0de240d/z3c.rml-3.6.2.tar.gz" } ], "3.6.3": [ { "comment_text": "", "digests": { "md5": "329c6527d2b8170149563621b481542d", "sha256": "e3eb7a4f7b5770377d49dadc1047ff6abefadcc1dbe68c4e755d2aa1f500cdc4" }, "downloads": -1, "filename": "z3c.rml-3.6.3.tar.gz", "has_sig": false, "md5_digest": "329c6527d2b8170149563621b481542d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1479287, "upload_time": "2019-04-11T10:12:52", "url": "https://files.pythonhosted.org/packages/a3/7e/a0e041b66467e940b091533ca612f5a76de603e08950141766e335698f63/z3c.rml-3.6.3.tar.gz" } ], "3.7.0": [ { "comment_text": "", "digests": { "md5": "bfd301e98c3edc8903c671fd3a295cb8", "sha256": "1ae621d836a8f1f0fd2c1007ac8ea63baae77320ee10c7f47e4bbd19709fc42d" }, "downloads": -1, "filename": "z3c.rml-3.7.0.tar.gz", "has_sig": false, "md5_digest": "bfd301e98c3edc8903c671fd3a295cb8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1610785, "upload_time": "2019-06-14T11:51:11", "url": "https://files.pythonhosted.org/packages/1e/16/894733ad6e3f6b1f5b957edcf263c49f866a4a28d60ade6fe8990291b3ec/z3c.rml-3.7.0.tar.gz" } ], "3.8.0": [ { "comment_text": "", "digests": { "md5": "2402d540e84f506fb5b23faef4d21575", "sha256": "0cd48174bbb18ee4e56d4e24f126ff9af8c37505a35132e52767f57cf71f90f9" }, "downloads": -1, "filename": "z3c.rml-3.8.0.tar.gz", "has_sig": false, "md5_digest": "2402d540e84f506fb5b23faef4d21575", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1612442, "upload_time": "2019-06-24T16:53:30", "url": "https://files.pythonhosted.org/packages/0d/2d/18b111eb0ea5faee91c721101920f79bc73d51ed9b194132ff6885103de8/z3c.rml-3.8.0.tar.gz" } ], "3.9.0": [ { "comment_text": "", "digests": { "md5": "77beb24cae5a455699114e6f8fa01d82", "sha256": "289ddf8cd9e4d90ae800c29b7b518ad561f11fed05ec8be457bfe511700e79bb" }, "downloads": -1, "filename": "z3c.rml-3.9.0.tar.gz", "has_sig": false, "md5_digest": "77beb24cae5a455699114e6f8fa01d82", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1614965, "upload_time": "2019-07-19T13:27:47", "url": "https://files.pythonhosted.org/packages/8d/22/fd760ad9aa30d9247a31c20708b6dded3355caf5ad62ff119fc6530c4b7c/z3c.rml-3.9.0.tar.gz" } ], "3.9.1": [ { "comment_text": "", "digests": { "md5": "e51b0b532eab5a344368ae0036bf2124", "sha256": "0046822e99716faa563de717cc6670b5a10a0ce5a6b7db6fec5cf676a33b64a0" }, "downloads": -1, "filename": "z3c.rml-3.9.1.tar.gz", "has_sig": false, "md5_digest": "e51b0b532eab5a344368ae0036bf2124", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1616130, "upload_time": "2019-10-04T18:50:16", "url": "https://files.pythonhosted.org/packages/f6/78/af6a9ec93bfa012e292acddb4cd22a64da96f5746298a6274db8d8fb096e/z3c.rml-3.9.1.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "e51b0b532eab5a344368ae0036bf2124", "sha256": "0046822e99716faa563de717cc6670b5a10a0ce5a6b7db6fec5cf676a33b64a0" }, "downloads": -1, "filename": "z3c.rml-3.9.1.tar.gz", "has_sig": false, "md5_digest": "e51b0b532eab5a344368ae0036bf2124", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1616130, "upload_time": "2019-10-04T18:50:16", "url": "https://files.pythonhosted.org/packages/f6/78/af6a9ec93bfa012e292acddb4cd22a64da96f5746298a6274db8d8fb096e/z3c.rml-3.9.1.tar.gz" } ] }