{ "info": { "author": "BlueDynamics Alliance", "author_email": "dev@bluedynamics.com", "bugtrack_url": null, "classifiers": [ "Intended Audience :: Developers", "License :: OSI Approved :: BSD License", "Operating System :: OS Independent", "Programming Language :: Python", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7", "Topic :: Internet :: WWW/HTTP :: Dynamic Content", "Topic :: Software Development" ], "description": "**Yet Another Form WIdget Library**.\n\n.. image:: https://img.shields.io/pypi/v/yafowil.svg\n :target: https://pypi.python.org/pypi/yafowil\n :alt: Latest PyPI version\n\n.. image:: https://img.shields.io/pypi/dm/yafowil.svg\n :target: https://pypi.python.org/pypi/yafowil\n :alt: Number of PyPI downloads\n\n\nYAFOWIL offers html-form creation and modification at runtime. \nIt is light-weight and provides an extensible, reusable set of blueprints to build flexible forms.\n\nYAFOWIL is independent from any web-framework, but easy to use in your web-framework.\n\nIt's all just about rendering widgets and extracting the data returned from the browser per widget. \nIt does not fight with storage.\n\nYAFOWIL vary from most other HTML form packages: Its all just configuration. \nNo subclassing needed any more; no specific schema-framework is necessary.\n\nYafowil provides a factory where you can fetch your widgets instances from.\nOr you register your own.\n\n\nDetailed Documentation\n======================\n\nIf you're interested to dig deeper: i\nThe `detailed YAFOWIL documentation `_ is available. \nRead it and learn how to create your example application with YAFOWIL forms in 15 minutes.\n\n\nSource Code\n===========\n\n.. image:: https://secure.travis-ci.org/bluedynamics/yafowil.png\n :target: http://travis-ci.org/#!/bluedynamics/yafowil\n\n.. image:: https://coveralls.io/repos/bluedynamics/yafowil/badge.png\n :alt: Coverage\n :target: https://coveralls.io/r/bluedynamics/yafowil\n\nThe sources are in a GIT DVCS with its main branches at\n`github `_.\n\nWe'd be happy to see many forks and pull-requests to make YAFOWIL even better.\n\n\nContributors\n============\n\n- Jens W. Klein\n\n- Robert Niederreiter\n\n- Johannes Raggam\n\n- Peter Holzer\n\n- Attila Olah\n\n- Florian Friesdorf\n\n- Daniel Widerin\n\n- Georg Bernhard\n\n- Christian Scholz aka MrTopf\n\n\n\nHistory\n=======\n\n2.3.1 (2018-11-07)\n------------------\n\n- Do not dump string values as JSON data in ``yafowil.utils.as_data_attrs``.\n [rnix]\n\n- Rename ``yafowil.utils.generic_html5_attrs`` to\n ``yafowil.utils.as_data_attrs``.\n [rnix]\n\n\n2.3 (2018-07-16)\n----------------\n\n- Python 3 Compatibility.\n [rnix]\n\n- Convert doctests to unittests.\n [rnix]\n\n- Cache results of ``yafowil.utils.get_plugin_names`` by namespace.\n [rnix]\n\n- Introduce ``yafowil.base.Factory.clear`` function. Used in tests to prepare\n ``yafowil.base.factory`` singleton as required.\n [rnix]\n\n- Create deepcopy of resources in ``YafowilResources.__init__`` to prevent\n modification of the original resource definitions.\n [rnix]\n\n- Implement ``ExtractionError.__eq__`` to make them comparable.\n [rnix]\n\n- Do not access deprecated ``Exception.message`` any more in\n ``common.error_renderer``. Add ``msg`` attribute to ``ExtractionError``\n directly and use this one to keep error translating sane.\n [rnix]\n\n- Add html5 data attribute support to ``form_edit_renderer``.\n [rnix]\n\n\n2.2.4 (2017-11-13)\n------------------\n\n- Do not set ``persist`` property for ``proxy`` blueprint in factory defaults.\n [rnix]\n\n- Translate datatype label used to generate extraction error in\n ``generic_datatype_extractor`` if datatype conversion fails.\n [rnix]\n\n- Add ``generic_datatype_extractor`` to ``email`` blueprint. Allowed datatypes\n are ``str`` and ``unicode``.\n [rnix]\n\n- Prevent ``KeyError`` in ``select_display_renderer`` if multivalued selection\n and a value no longer available in vocab.\n [rnix]\n\n\n2.2.3 (2017-06-12)\n------------------\n\n- Fix ``number_extractor``. Return ``UNSET`` if extracted value is ``UNSET``.\n Check ``min`` and ``max`` for ``None`` explicitely to ensure ``0`` bounds\n get considered.\n [rnix]\n\n\n2.2.2 (2017-06-07)\n------------------\n\n- ``yafowil.common.generic_datatype_extractor`` considers ``emptyvalue`` used\n as default empty value for datatype conversion.\n [rnix]\n\n- Improve ``yafowil.common.select_edit_renderer``. Split up code and consider\n ``datatype`` and ``emptyvalue`` when dealing with vocabularies.\n [rnix]\n\n- ``yafowil.utils.convert_values_to_datatype`` and\n ``yafowil.utils.convert_value_to_datatype`` considers empty value handling\n and accept default ``empty_value`` keyword argument.\n [rnix]\n\n- Introduce ``yafowil.utils.EMPTY_VALUE`` marker.\n [rnix]\n\n\n2.2.1 (2017-05-15)\n------------------\n\n- Introduce ``hybrid_renderer`` and ``leaf`` widget property which gets\n considered in ``hybrid_renderer`` and ``hybrid_extractor``. Use\n ``hybrid_renderer`` in ``div`` blueprint.\n [rnix]\n\n- Consider data attributes in div renderer.\n [rnix]\n\n- Fix rendering of empty div renderer.\n [rnix]\n\n- Explicitely check for ``None`` and ``UNSET`` before rendering empty value in\n ``generic_display_renderer``.\n [rnix]\n\n\n2.2 (2016-10-06)\n----------------\n\n- No changes.\n\n\n2.2b2 (2016-09-08)\n------------------\n\n- Add ``yafowil.utils.entry_point`` decorator to control order of entry point\n loading.\n [rnix, 2016-06-27]\n\n\n2.2b1 (2016-03-01)\n------------------\n\n- Fix typo in ``setup.py``, fixes #26\n [saily, 2016-03-01]\n\n- Improve ``yafowil.base.WidgetAttributes`` to check attribute containment with\n ``__iter__`` instead of ``__getitem__`` catching a ``KeyError``. Speeds up\n whole yafowil test suite (including official addon widgets) by approximately\n 18 percent.\n [rnix, 2016-02-07]\n\n- Fix ``yafowil.utils.cssid``. CSS ID's must not contain special characters\n which get normalized now and should not contain whitespaces which get\n replaced by underscore.\n [rnix, 2015-11-30]\n\n- Set ``persist`` factory default to ``True`` for ``hidden``, ``proxy``,\n ``text``, ``textarea``, ``lines``, ``password``, ``checkbox``, ``select``,\n ``email``, ``url`` and ``number`` blueprints.\n [rnix, 2015-11-26]\n\n- Introduce ``yafowil.persistence``, ``RuntimeData.write`` and\n ``RuntimeData.has_errors``.\n [rnix, 2015-11-26]\n\n- Add default ``class`` property to ``lines`` blueprint.\n [rnix, 2015-11-20]\n\n- Use ``generic_emptyvalue_extractor`` in ``hidden``, ``proxy``, ``text``,\n ``textarea``, ``lines``, ``select``, ``file``, ``password``, ``email``,\n ``url``, ``search`` and ``number`` blueprints.\n [rnix, 2015-11-20]\n\n- Use ``generic_datatype_extractor`` in ``hidden``, ``proxy``, ``text``,\n ``lines``, ``select`` and ``number`` blueprints.\n [rnix, 2015-11-19]\n\n- Introduce ``generic_emptyvalue_extractor``.\n [rnix, 2015-11-19]\n\n- Instroduce ``generic_datatype_extractor``.\n [rnix, 2015-11-18]\n\n- Values in ``Widget.attrs`` can also be ``UNSET``.\n [rnix, 2015-11-18]\n\n- Change ``default`` value of ``select`` blueprint from ``list()`` to\n ``UNSET``. This represents both, an empty single valued and an empty\n multi valued selection.\n [rnix, 2015-11-18]\n\n- Fix URL extractor. Must not raise ExtractionError if not required on empty\n input.\n [rnix, 2015-11-18]\n\n\n2.1.3 (2015-04-12)\n------------------\n\n- Fix email extractor. Must not raise ExtractionError if not required on empty\n input.\n [rnix, 2015-04-11]\n\n\n2.1.2 (2015-01-23)\n------------------\n\n- Fix ``compound_extractor`` case if structural child is structural as well\n and skip extraction if so.\n [rnix, 2014-08-29]\n\n- Introduce ``yafowil.resources.YafowilResources`` class which can be used\n as base for resource publishing specific framework integration code.\n [rnix, 2014-08-07]\n\n- Introduce ``configure`` entry points. They are executed after ``register``\n entry points and are supposed to be used for theme configuration (for which\n it's important that all factory defaults are already set)\n [rnix, 2014-08-02]\n\n- Use ``plumbing`` decorator instead of ``plumber`` metaclass.\n [rnix, 2014-08-01]\n\n- Replace ``\"`` with ``"`` for input values.\n [rnix, 2014-07-16]\n\n\n2.1.1 (2014-06-10)\n------------------\n\n- Package not ZIP safe.\n [chaoflow, 2014-06-10]\n\n\n2.1 (2014-06-03)\n----------------\n\n- Consider ``YAFOWIL_FORCE_DUMMY_TSF`` os.environ variable which can be used\n to force dummy translation string factory when running tests.\n [rnix, 2014-05-13]\n\n- Add translations.\n [rnix, 2014-04-30]\n\n- Add ``yafowil.tsf`` module, which is used to create yafowil related\n translation string factory.\n [rnix, 2014-04-30]\n\n- Re-add ``yafowil.utils.Unset`` class (import from ``node.utils``) for\n backward compatibility reasons.\n [rnix, 2014-04-30]\n\n- Return ``UNSET`` in number extractor if received extracted value is empty\n string.\n [rnix, 2014-03-20]\n\n- Use ``generic_html5_attrs`` in ``tag_renderer``.\n [jensens, 2013-03-06]\n\n- Add default CSS class for ``checkbox`` and ``textarea`` blueprints.\n [rnix, 2013-03-06]\n\n- Float number input seperator may also be comma.\n [rnix, 2013-12-02]\n\n- Don't generate an id attribute for structural widgets. Fixes #6, where the\n same id for all structural elements in a form was generated.\n [thet, 2013-05-27]\n\n- Blueprints accept ``data`` property for generic HTML5 data attributes.\n [rnix, 2013-04-11]\n\n- Introduce ``yafowil.utils.generic_html5_attrs`` helper function.\n [rnix, 2013-04-11]\n\n- Introduce ``with_label`` property for ``checkbox`` blueprint. Useful for\n cross browser compatible checkbox CSS.\n [rnix, 2013-03-29]\n\n- Use json.dumps for data atrribute values to convert Python types to JSON.\n Enclose data-attribute values in single quotes to meet the JSON requirements.\n Convert camelCase data attribute names into camel-case. Since jQuery 1.6 they\n are automatically converted back to camelCase after calling .data().\n [thet]\n\n- Import ``node.utils.UNSET`` in ``yafowil.utils`` instead of providing own\n unset marker class and instance.\n [rnix, 2013-02-10]\n\n- Add helper function for creating a data-attributes dictionary from a list of\n attribute-keys which can be passed to tag-renderer.\n [thet, 2012-12-05]\n\n- Allow passing of a custom html attributes dictionary to textarea_renderer,\n select_edit_renderer and input_generic_renderer. A dictionary is used instead\n of passing them as function parameters to avoid namespace conflicts.\n [thet]\n\n\n2.0.2\n-----\n\n- Consider ``maxlength`` in ``input_attributes_common``.\n [rnix, 2012-11-03]\n\n\n2.0.1\n-----\n\n- Use ``attr_value`` wherever possible to lookup attribute values.\n [rnix, 2012-10-25]\n\n- Introduce ``attr_value`` utility.\n [rnix, 2012-10-25]\n\n- Textarea can have ``title`` attribute.\n [rnix, 2012-10-25]\n\n\n2.0\n---\n\n- Fix default help text.\n [rnix, 2012-10-10]\n\n- fixed bug in factory returned wrong renderes on call of display_renderers\n [jensens, 2012-10-09]\n\n- renamed plans to macros.\n [rnix, jensens]\n\n- custom chains can be passed as dictionary to the factory.\n [rnix, 2012-09-28]\n\n- introduce ``display_proxy`` property for mode ``display``.\n [rnix, 2012-08-08]\n\n- add generic ``tag`` blueprint.\n [rnix, 2012-08-08]\n\n- adopt to ``plumber`` 1.2.\n [rnix, 2012-07-29]\n\n- adopt to ``node`` 0.9.8.\n [rnix, 2012-07-29]\n\n- pep8ify\n [jensens, 2012-06-08]\n\n- make TBSupplement compatible with both: ```zExceptions``` and\n ```zope.exceptions```. Major change: html output is no longer default and\n the kwarg of getInfo is now ```as_html``` (was ```html```).\n Also added blueprints to the supplement as info to make it easier to identify\n the form part.\n [jensens, 2012-06-07]\n\n\n1.3.2\n-----\n\n- Check with 'if not value' instead of 'if value is None' in\n ``generic_display_renderer``.\n [thet, 2012-05-23]\n\n- Add a title attribute to the label blueprint.\n [thet, 2012-05-02]\n\n- Fix file extractor.\n [rnix, 2012-04-21]\n\n- Avoid rendering of value attribute in file blueprint.\n [rnix, 2012-04-21]\n\n\n1.3.1\n-----\n\n- Label property can be callable.\n [rnix, 2012-02-19]\n\n\n1.3\n---\n\n- Loading resources is done more explicit and in a pluggable way\n using entry-points. Thus yafowil extensions such as widgets\n can define an entry point.\n [jensens, 2012-02-14]\n\n- Add size attribute for ``select`` edit renderer.\n [jensens, 2012-01-20]\n\n- fix number extractor\n [jensens, 2012-01-20]\n\n- Add default css class for ``select`` blueprint.\n [rnix, 2011-12-18]\n\n- Register ``number`` blueprint display renderer.\n [rnix, 2011-12-18]\n\n- Consider ``expression`` in ``submit`` blueprint renderer.\n [rnix, 2011-12-18]\n\n- ``checked`` attribute can be set explicitly in ``checkbox`` blueprint.\n [rnix, 2011-11-21]\n\n- Fix Bug in ``yafowil.common.select_edit_renderer``. Crashed with empty\n vocabularies.\n [rnix, 2011-11-16]\n\n- Add ``lines`` blueprint. Renders a textarea and extracts lines as list.\n [rnix, 2011-11-11]\n\n- Added concept of *plans* to the factory, which is a named set of blueprints.\n Plans are registered to the factory and can be addressed with the ``#`` sign.\n [jensens, 2011-09-29]\n\n- ``td`` blueprint can be used as compound or part of leaf widget now.\n [rnix, 2011-09-28]\n\n- Accept value property on compounds.\n [rnix, 2011-09-27]\n\n- Make ``data.extracted`` available as ``odict`` with values of children on\n compounds.\n [rnix, 2011-09-27]\n\n- Pass ``blueprints`` and ``custom`` arguments to Widget constructor in factory\n for debugging and duplication purposes.\n [rnix, 2011-09-26]\n\n- Rename ``yafowil.base.Widget._properties`` to\n ``yafowil.base.Widget.properties``.\n [rnix, 2011-09-26]\n\n- Add ``div`` blueprint. Renders within '
' element. Can be used for\n compound and leaf widgets.\n [rnix, 2011-09-23]\n\n\n1.2\n---\n\n- naming makes a difference between blueprints and widgets\n [jensens, 2011-09-20]\n\n- fix traceback test\n [rnix, 2011-09-15]\n\n\n1.1.3\n-----\n\n- traceback supplement now with html support. test for html part is missing for now.\n [jensens, 2011-09-01]\n\n\n1.1.2\n-----\n\n- traceback supplement is now better formatted.\n [jensens, 2011-08-30]\n\n\n1.1.1\n-----\n\n- Bugfix: mode ``display`` did eat up all previous renderings. This made error\n widget fail in display mode to show the value. Fixed: empty_display_renderer\n proxies now all previous rendered.\n [jensens, 2011-08-11]\n\n\n1.1\n---\n\n- Extend select widget for better UI control of selections and multi selections\n [rnix, 2011-08-05]\n\n- Plumb ``node.parts.Order`` to widget node\n [rnix, 2011-07-28]\n\n- define label and field renderer as display renderer as well\n [rnix, 2011-07-25]\n\n- deprecate use of mode widget\n [rnix, 2011-07-08]\n\n- now mode is a central element: each Widget instance has a mode now: edit,\n display or skip. edit is default and works as usal. Display renders the new\n display_renderer chain. Skip just renders an empty Unicode string.\n [jensens, 2011-07-07]\n\n\n1.0.4\n-----\n\n- clean up html5 handling, we believe in novalidate now...\n [jensens, 2011-06-11]\n\n- add ``disabled`` attribute for select widget.\n [jensens, 2011-06-01]\n\n- add ``novalidate`` property for form\n [rnix, 2011-05-23]\n\n- return empty string in mode renderer if value is UNSET\n [rnix, 2011-05-23]\n\n\n1.0.3\n-----\n\n- test coverage\n [rnix, 2011-05-07]\n\n- add widget value validation checking 'multivalued' property against 'value'\n length.\n [rnix, 2011-05-07]\n\n- remove outdated ``_value``. user ``fetch_value`` instead.\n [rnix, 2011-05-07]\n\n- add optional ``for`` property for label widget.\n [rnix, 2011-04-23]\n\n- select extractor - fix required behavior\n [rnix, 2011-04-19]\n\n- compound renderer - consider 'structural' property on widget node\n [rnix, 2011-04-19]\n\n- number extractor - return val if UNSET\n [rnix, 2011-04-14]\n\n- textarea renderer - check value against None and render empty string instead\n [rnix, 2011-04-14]\n\n\n1.0.2\n-----\n\n- Add ``html5type`` property for email widget\n [rnix, 2011-03-16]\n\n\n1.0.1\n-----\n\n- Add ``html5required`` property\n [rnix, 2011-03-16]\n\n\n1.0\n---\n\n- adopt to node 0.9 [rnix]\n\n- documentation [jensens, rnix]\n\n\n1.0-beta\n--------\n\n- made it work [jensens, rnix, et al, 2010-12-27]\n\n\n\nLicense\n=======\n\nCopyright (c) 2010-2018, BlueDynamics Alliance, Austria, Germany, Switzerland\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are met:\n\n* Redistributions of source code must retain the above copyright notice, this \n list of conditions and the following disclaimer.\n* Redistributions in binary form must reproduce the above copyright notice, this \n list of conditions and the following disclaimer in the documentation and/or \n other materials provided with the distribution.\n* Neither the name of the BlueDynamics Alliance nor the names of its \n contributors may be used to endorse or promote products derived from this \n software without specific prior written permission.\n \nTHIS SOFTWARE IS PROVIDED BY BlueDynamics Alliance ``AS IS`` AND ANY\nEXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\nWARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL BlueDynamics Alliance BE LIABLE FOR ANY\nDIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES\n(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;\nLOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND\nON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS\nSOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n", "description_content_type": "", "docs_url": "https://pythonhosted.org/yafowil/", "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "http://pypi.python.org/pypi/yafowil", "keywords": "html input widgets form compound", "license": "Simplified BSD", "maintainer": "", "maintainer_email": "", "name": "yafowil", "package_url": "https://pypi.org/project/yafowil/", "platform": "", "project_url": "https://pypi.org/project/yafowil/", "project_urls": { "Homepage": "http://pypi.python.org/pypi/yafowil" }, "release_url": "https://pypi.org/project/yafowil/2.3.1/", "requires_dist": null, "requires_python": "", "summary": "YAFOWIL - declarative, framework independent, flexible HTML forms", "version": "2.3.1" }, "last_serial": 4460376, "releases": { "1.0": [ { "comment_text": "", "digests": { "md5": "187a2f355fc2f5fe8dda1a645caaac25", "sha256": "627280fb49fd7c94baa5c4ad607b224c63032f4686b5769428113d9c6f9afad3" }, "downloads": -1, "filename": "yafowil-1.0.tar.gz", "has_sig": false, "md5_digest": "187a2f355fc2f5fe8dda1a645caaac25", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 30078, "upload_time": "2011-02-07T18:06:28", "url": "https://files.pythonhosted.org/packages/0f/4b/1ef35ebb31b8a631cacec205c7ddacbaea7b8e7037e1454924f73f27ff55/yafowil-1.0.tar.gz" } ], "1.0-beta": [ { "comment_text": "", "digests": { "md5": "5556304a1f72259c3a02a8e9c616c6c0", "sha256": "75419cd3339ffbd04f4a4d49e3c7e4c05297a4a15f234494c5ce01c631f94873" }, "downloads": -1, "filename": "yafowil-1.0-beta.tar.gz", "has_sig": false, "md5_digest": "5556304a1f72259c3a02a8e9c616c6c0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 25850, "upload_time": "2010-12-28T18:39:44", "url": "https://files.pythonhosted.org/packages/a5/58/f7329f5b5d6e3f9e4ef4d2fb3f23762bfe1159f6faeee07b6cd02a44bf5a/yafowil-1.0-beta.tar.gz" } ], "1.0.1": [ { "comment_text": "", "digests": { "md5": "9e16e550548cf25e614984558ceac20a", "sha256": "548cde10fec42f49d447dac23fe5a43575d8746040b985afd7b86449a4867f55" }, "downloads": -1, "filename": "yafowil-1.0.1.tar.gz", "has_sig": false, "md5_digest": "9e16e550548cf25e614984558ceac20a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 30275, "upload_time": "2011-03-16T19:27:57", "url": "https://files.pythonhosted.org/packages/16/e4/ccb115543be4263956ebe5cd825717ea552e8f0213b9e49042cca6c5dc3c/yafowil-1.0.1.tar.gz" } ], "1.0.2": [ { "comment_text": "", "digests": { "md5": "911a24413c44832b29baa64e97f24158", "sha256": "03757afb2a0b83b1c16e1d3956891b8ea90bdaa0da9d06eb5bde074118fd1d3a" }, "downloads": -1, "filename": "yafowil-1.0.2.tar.gz", "has_sig": false, "md5_digest": "911a24413c44832b29baa64e97f24158", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 30351, "upload_time": "2011-03-16T21:17:26", "url": "https://files.pythonhosted.org/packages/5f/50/5bd46f0b34661a639db6641ea0ce51eaaa2936fd4229e96dcb2f48c92cfb/yafowil-1.0.2.tar.gz" } ], "1.0.3": [ { "comment_text": "", "digests": { "md5": "1ff7cd9c34c9f82372b3cdecf9c5f41e", "sha256": "ab527196872838710afeda551faa8a339cf37378878e160751100f8ca08e7ebd" }, "downloads": -1, "filename": "yafowil-1.0.3.tar.gz", "has_sig": false, "md5_digest": "1ff7cd9c34c9f82372b3cdecf9c5f41e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 32659, "upload_time": "2011-05-07T15:45:28", "url": "https://files.pythonhosted.org/packages/11/49/0c9653187a4dfd00c124083a13c98117a62e8c66b1b761a69b2ce99a0a87/yafowil-1.0.3.tar.gz" } ], "1.0.4": [ { "comment_text": "", "digests": { "md5": "e92efe0e3f45601d6fb13cf11f686a7a", "sha256": "5d93b61e54229c131dd2bce97c3d4d9ee21c1ed9e0e15f3d7ee3e73e3b5ccd04" }, "downloads": -1, "filename": "yafowil-1.0.4.tar.gz", "has_sig": false, "md5_digest": "e92efe0e3f45601d6fb13cf11f686a7a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 31609, "upload_time": "2011-07-07T10:34:49", "url": "https://files.pythonhosted.org/packages/fc/41/1929510e74f77bd3e086e140dceef259a37153db7b9f2d41f949f9177d2e/yafowil-1.0.4.tar.gz" } ], "1.1": [ { "comment_text": "", "digests": { "md5": "9a74088040e42c3d40cf81556ca53fc3", "sha256": "d817a4437bc9b55e25d1d96bdfbc4dcff8f35c5bbc1d17e5e9a23ee84f979a6e" }, "downloads": -1, "filename": "yafowil-1.1.tar.gz", "has_sig": false, "md5_digest": "9a74088040e42c3d40cf81556ca53fc3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 34435, "upload_time": "2011-08-05T20:58:40", "url": "https://files.pythonhosted.org/packages/92/31/0fb12d672cff45d58dd8fc6d2c6ae1aa4847f3593d9a2f22f5f8bfd2cf44/yafowil-1.1.tar.gz" } ], "1.1.1": [ { "comment_text": "", "digests": { "md5": "42c04eff7b30ab6b7b394bd3254bcf58", "sha256": "cf47802f6252ec969344c01c68a85080f672a4d09b3a56a1cabfbcc05647e206" }, "downloads": -1, "filename": "yafowil-1.1.1.tar.gz", "has_sig": false, "md5_digest": "42c04eff7b30ab6b7b394bd3254bcf58", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 33209, "upload_time": "2011-08-11T17:21:31", "url": "https://files.pythonhosted.org/packages/00/00/2766919ef20084424f6da7befc1da06b4857837f2f143adb9f997d18dc6d/yafowil-1.1.1.tar.gz" } ], "1.1.2": [ { "comment_text": "", "digests": { "md5": "2ab9d6a6372c9b1f85f848d18f9299f0", "sha256": "019c0c93f9cc8873a0e0afef7bd80491c6ea5634ab624162f3d13762843dcd9d" }, "downloads": -1, "filename": "yafowil-1.1.2.tar.gz", "has_sig": false, "md5_digest": "2ab9d6a6372c9b1f85f848d18f9299f0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 33431, "upload_time": "2011-08-30T12:43:41", "url": "https://files.pythonhosted.org/packages/1b/64/ce68e67b642eb1f99548bfe6cde45afd8ec76c0f9ce8600619daf76ab93a/yafowil-1.1.2.tar.gz" } ], "1.1.3": [ { "comment_text": "", "digests": { "md5": "34e73891e1806bce98046da68fd4134f", "sha256": "b7f132be9d1edcbf03b716f8b956ba23cf3c1f16f040a71e10712598f8d95d5d" }, "downloads": -1, "filename": "yafowil-1.1.3.tar.gz", "has_sig": false, "md5_digest": "34e73891e1806bce98046da68fd4134f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 33582, "upload_time": "2011-09-01T15:23:06", "url": "https://files.pythonhosted.org/packages/b6/22/141d211784c95e4fb38b8d0dd9db9df80f8d145a14e464580f3596fdfc0e/yafowil-1.1.3.tar.gz" } ], "1.2": [ { "comment_text": "", "digests": { "md5": "896adb9012d2155709d344a10ff7424d", "sha256": "67d93e7bb68cad6edbc23592fe27d755f8af743bb53dfd0cbea63a225adfab35" }, "downloads": -1, "filename": "yafowil-1.2.tar.gz", "has_sig": false, "md5_digest": "896adb9012d2155709d344a10ff7424d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 33832, "upload_time": "2011-09-20T13:40:52", "url": "https://files.pythonhosted.org/packages/85/4a/44b567cd852dd6ad2653b563143b2d6b6aecf3ae87cd95eae6062f73906f/yafowil-1.2.tar.gz" } ], "1.3": [ { "comment_text": "", "digests": { "md5": "a1162ce8029d37590815c46596c137a0", "sha256": "fd4126fd2d3cf6c5c5718e51057ced5388d1c13e4886b63bb0d8bd18eb2f6dfc" }, "downloads": -1, "filename": "yafowil-1.3.tar.gz", "has_sig": false, "md5_digest": "a1162ce8029d37590815c46596c137a0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 38597, "upload_time": "2012-03-19T09:22:51", "url": "https://files.pythonhosted.org/packages/0b/2f/12f90b921fcad6adde418e733a520db1fee2fcd20aa890db0a56667c7d3d/yafowil-1.3.tar.gz" } ], "1.3.1": [ { "comment_text": "", "digests": { "md5": "6c4aba87c2a731895cd82502f55e5855", "sha256": "007ea3b3a2a7befa7afb5ef1819644aa43c86752b467c307902e8ab2272293d4" }, "downloads": -1, "filename": "yafowil-1.3.1.tar.gz", "has_sig": false, "md5_digest": "6c4aba87c2a731895cd82502f55e5855", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 40879, "upload_time": "2012-03-20T10:46:04", "url": "https://files.pythonhosted.org/packages/79/a7/32f3fbd0f469d47625a291b5c8abc02d8389dee576fba1003f51b90aa08e/yafowil-1.3.1.tar.gz" } ], "1.3.2": [ { "comment_text": "", "digests": { "md5": "026d7d73da6f06e1db050d24fe070b1d", "sha256": "f2b0243e4973227ebc6eda1fb286c2c947a84d3c9d1e919e3134c66dc9cad461" }, "downloads": -1, "filename": "yafowil-1.3.2.tar.gz", "has_sig": false, "md5_digest": "026d7d73da6f06e1db050d24fe070b1d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 39292, "upload_time": "2012-05-30T10:08:28", "url": "https://files.pythonhosted.org/packages/31/de/cbca4cede83a74c20de90b10f3d886ec09466d33c4005be2c982f70142a3/yafowil-1.3.2.tar.gz" } ], "2.0": [ { "comment_text": "", "digests": { "md5": "b082c0d3b372297b5f3b811225632f69", "sha256": "fdd3d1521d0e47b642c3692c5ea9e4819220753abd4653e610429314d7ad25cf" }, "downloads": -1, "filename": "yafowil-2.0.tar.gz", "has_sig": false, "md5_digest": "b082c0d3b372297b5f3b811225632f69", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 49090, "upload_time": "2012-10-10T14:03:58", "url": "https://files.pythonhosted.org/packages/1e/c8/09967b40ca733760f6e57a3f1e2f2004a51cde5565c22a2c63b6d71193d2/yafowil-2.0.tar.gz" } ], "2.0.1": [ { "comment_text": "", "digests": { "md5": "dcb32aff9c7d4f51ec7614782de4a4d7", "sha256": "a83aefc3729cc4e4d1a5458be89ebfdc4b66eed09bfd7211f3e7627d46f0574e" }, "downloads": -1, "filename": "yafowil-2.0.1.tar.gz", "has_sig": false, "md5_digest": "dcb32aff9c7d4f51ec7614782de4a4d7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 49936, "upload_time": "2012-10-29T07:38:43", "url": "https://files.pythonhosted.org/packages/8e/ce/73620e35afd1f99f503b123dbfc4e5d2ad636785dcb361b849a116d49c80/yafowil-2.0.1.tar.gz" } ], "2.0.2": [ { "comment_text": "", "digests": { "md5": "5c61655a5bb50cf14882a2eed56bcaf4", "sha256": "db44352eb61bbeb386582c68e206266e0107b01ea0269f8bfc84349c0f364f70" }, "downloads": -1, "filename": "yafowil-2.0.2.tar.gz", "has_sig": false, "md5_digest": "5c61655a5bb50cf14882a2eed56bcaf4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 50124, "upload_time": "2012-12-05T11:26:14", "url": "https://files.pythonhosted.org/packages/c9/92/0f775999722c8b3458b7a924518173043e79faf5338e3dfd0b876e950491/yafowil-2.0.2.tar.gz" } ], "2.1": [ { "comment_text": "", "digests": { "md5": "51a5242f7c508e25bef831e1bd045c2e", "sha256": "a074fa6edc4fec8f8b5736aaa9b7b1cebd76c6ce76bd3597c8d335ac3502d392" }, "downloads": -1, "filename": "yafowil-2.1.tar.gz", "has_sig": false, "md5_digest": "51a5242f7c508e25bef831e1bd045c2e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 55469, "upload_time": "2014-06-03T21:44:08", "url": "https://files.pythonhosted.org/packages/dc/98/d1d41e2071a42b26804d3c33f45c28c2b019173f2da0cc7eb1328169f48c/yafowil-2.1.tar.gz" } ], "2.1.1": [ { "comment_text": "", "digests": { "md5": "23c7799b4050cce6869f4d437d561203", "sha256": "152fee21dea4716c65cbc9098ebecf83e2b9724b0ddc4415105b2e470063d280" }, "downloads": -1, "filename": "yafowil-2.1.1.tar.gz", "has_sig": false, "md5_digest": "23c7799b4050cce6869f4d437d561203", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 58159, "upload_time": "2014-06-10T16:56:51", "url": "https://files.pythonhosted.org/packages/b1/cd/34d451b136832e42768bf3a0bb27f343f9afe0233df614a02dff753baabd/yafowil-2.1.1.tar.gz" } ], "2.1.2": [ { "comment_text": "", "digests": { "md5": "887006936e898bbc77d91040cde11f15", "sha256": "559d119e7a5ef7d657762e81f686cd11ffcdd64db564dd5a76e802a288360bcd" }, "downloads": -1, "filename": "yafowil-2.1.2.tar.gz", "has_sig": false, "md5_digest": "887006936e898bbc77d91040cde11f15", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 60952, "upload_time": "2015-01-23T15:22:24", "url": "https://files.pythonhosted.org/packages/90/b7/15fa353979056b495f27b6a449c6caa521713998c6ae6c0204ccff1be885/yafowil-2.1.2.tar.gz" } ], "2.1.3": [ { "comment_text": "", "digests": { "md5": "613b7795fb4d61b4f345f60597cf1255", "sha256": "a0db053d698c3fa831f734caaa7207a1ebb6a50904dffcc37bfa576ee2be78e1" }, "downloads": -1, "filename": "yafowil-2.1.3.tar.gz", "has_sig": false, "md5_digest": "613b7795fb4d61b4f345f60597cf1255", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 61120, "upload_time": "2015-04-12T19:16:06", "url": "https://files.pythonhosted.org/packages/18/9e/23fa95bc1486f4d3aa3069ecedbc20901a961387df972961e91863f93c73/yafowil-2.1.3.tar.gz" } ], "2.1.4": [ { "comment_text": "", "digests": { "md5": "859e54397f2849bb7e254af5fb82aec0", "sha256": "61772b701305492559ee8a5450cc30a87615e23323f34b43d12f7036ee2ed76b" }, "downloads": -1, "filename": "yafowil-2.1.4.tar.gz", "has_sig": false, "md5_digest": "859e54397f2849bb7e254af5fb82aec0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 57150, "upload_time": "2016-05-04T12:43:56", "url": "https://files.pythonhosted.org/packages/21/e8/164eb0bb8d91bf72921fc9b5294ed6264c19cf1df7781d640392d77562cc/yafowil-2.1.4.tar.gz" } ], "2.2": [ { "comment_text": "", "digests": { "md5": "cdbb6bedfcb426173830bb45a0cdef9c", "sha256": "8586fd02ddb7c50f3ae5e540cfad83d11edfd334b0d25839053c0aa25a853bd6" }, "downloads": -1, "filename": "yafowil-2.2.tar.gz", "has_sig": false, "md5_digest": "cdbb6bedfcb426173830bb45a0cdef9c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 68440, "upload_time": "2016-10-06T06:34:04", "url": "https://files.pythonhosted.org/packages/f5/25/d355d6e5a857896ed7ebdb61adf7dc0cb9e31034e11121791df455245a1b/yafowil-2.2.tar.gz" } ], "2.2.1": [ { "comment_text": "", "digests": { "md5": "ff916ed231592d84a90924a7fac502c9", "sha256": "6d3b75d91c5d087118eeb59457df1081fe8a93796a3050f4bc5c84601cc6bd69" }, "downloads": -1, "filename": "yafowil-2.2.1.tar.gz", "has_sig": false, "md5_digest": "ff916ed231592d84a90924a7fac502c9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 69389, "upload_time": "2017-05-15T08:18:58", "url": "https://files.pythonhosted.org/packages/eb/27/d0f27bc03588706bfc88e1aa828970ba11287090eaebaf97a23a99e636e0/yafowil-2.2.1.tar.gz" } ], "2.2.2": [ { "comment_text": "", "digests": { "md5": "526d533f79a188c78bf29f915c81df26", "sha256": "61d5d4edc95c6d8dc48f7ee88a056b32417bee359b5f622fa647fc5ce0d95aba" }, "downloads": -1, "filename": "yafowil-2.2.2.tar.gz", "has_sig": false, "md5_digest": "526d533f79a188c78bf29f915c81df26", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 70327, "upload_time": "2017-06-07T10:50:40", "url": "https://files.pythonhosted.org/packages/4e/cb/f7c0a9dfd86dc76b0577e9ef8930f085310a4fd90c7711b8e6f2b22561ae/yafowil-2.2.2.tar.gz" } ], "2.2.3": [ { "comment_text": "", "digests": { "md5": "1e5ecf2261ba6a1699be04fe82ff4787", "sha256": "fe0af19fdcab8dfbd3615e7cd4bc2e93644bcd22ac602e6fa20cb3665a148142" }, "downloads": -1, "filename": "yafowil-2.2.3.tar.gz", "has_sig": false, "md5_digest": "1e5ecf2261ba6a1699be04fe82ff4787", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 70560, "upload_time": "2017-06-12T06:35:48", "url": "https://files.pythonhosted.org/packages/fd/ce/5fcc51498881b2872b28eb6313808d1222151998686dadac5af93965199e/yafowil-2.2.3.tar.gz" } ], "2.2.4": [ { "comment_text": "", "digests": { "md5": "eb168ba29726fa83c2db01526ca7d591", "sha256": "b21e255f93bddb79faeb745d1c56506ae338ee8bc87d0fdbc5ba2956af3ed2a4" }, "downloads": -1, "filename": "yafowil-2.2.4.tar.gz", "has_sig": false, "md5_digest": "eb168ba29726fa83c2db01526ca7d591", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 69686, "upload_time": "2017-11-13T13:18:02", "url": "https://files.pythonhosted.org/packages/7c/45/c6ffc7d4ad3db8c6d2c514ed34b4b03a12fc46ee64a6ea56e27dd079e7cd/yafowil-2.2.4.tar.gz" } ], "2.2b1": [ { "comment_text": "", "digests": { "md5": "fb2189d3e2d42e90678b6829dee53eb8", "sha256": "36b51b66bb565115beaaa58262c5c74a60c5bdda2bff924f2b86a017069be20b" }, "downloads": -1, "filename": "yafowil-2.2b1.tar.gz", "has_sig": false, "md5_digest": "fb2189d3e2d42e90678b6829dee53eb8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 65818, "upload_time": "2016-03-01T16:33:43", "url": "https://files.pythonhosted.org/packages/68/b4/efde10ae66c517a1063c6c916e38407e2446a850af2e6b79500fe37b2f4d/yafowil-2.2b1.tar.gz" } ], "2.2b2": [ { "comment_text": "", "digests": { "md5": "e3e024a2a9edcabc354d34ca56fb87fe", "sha256": "b780dc522928e183c3200b13aa680de029c99a866aa0b361fa394a9c2eaaed9a" }, "downloads": -1, "filename": "yafowil-2.2b2.tar.gz", "has_sig": false, "md5_digest": "e3e024a2a9edcabc354d34ca56fb87fe", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 66083, "upload_time": "2016-09-08T14:10:52", "url": "https://files.pythonhosted.org/packages/ad/71/fef493fce94bb29dfafc808a7fc8dcec9e7cd56cfd4ceb10363fb0d3747b/yafowil-2.2b2.tar.gz" } ], "2.3": [ { "comment_text": "", "digests": { "md5": "d4080414f1ab536f683688b7904fc66f", "sha256": "49dd0135d3f21d4fa4ba8911bf7fc1a58311c47edfb5240a99df62eee1e75263" }, "downloads": -1, "filename": "yafowil-2.3.tar.gz", "has_sig": false, "md5_digest": "d4080414f1ab536f683688b7904fc66f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 73191, "upload_time": "2018-07-16T13:30:45", "url": "https://files.pythonhosted.org/packages/c1/40/d599ea680af5bc14f963c468a44ca92dc9a095ec5bfef31a286c62538d4a/yafowil-2.3.tar.gz" } ], "2.3.1": [ { "comment_text": "", "digests": { "md5": "2b84a12644037a90f4abed394ea1057e", "sha256": "e5c93c0906d67ef221c0b12ee7106bed5bfc082ae7e28f2fff1f24290076331e" }, "downloads": -1, "filename": "yafowil-2.3.1.tar.gz", "has_sig": false, "md5_digest": "2b84a12644037a90f4abed394ea1057e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 73631, "upload_time": "2018-11-07T07:43:28", "url": "https://files.pythonhosted.org/packages/2d/2a/9697b7a7d8b5704a0de1080a560354c297a403bcf2fa2486418f72e64597/yafowil-2.3.1.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "2b84a12644037a90f4abed394ea1057e", "sha256": "e5c93c0906d67ef221c0b12ee7106bed5bfc082ae7e28f2fff1f24290076331e" }, "downloads": -1, "filename": "yafowil-2.3.1.tar.gz", "has_sig": false, "md5_digest": "2b84a12644037a90f4abed394ea1057e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 73631, "upload_time": "2018-11-07T07:43:28", "url": "https://files.pythonhosted.org/packages/2d/2a/9697b7a7d8b5704a0de1080a560354c297a403bcf2fa2486418f72e64597/yafowil-2.3.1.tar.gz" } ] }