{ "info": { "author": "Arno-Can Uestuensoez", "author_email": "acue_sf2@sourceforge.net", "bugtrack_url": null, "classifiers": [ "Development Status :: 3 - Alpha", "Intended Audience :: Developers", "License :: Free To Use But Restricted", "License :: OSI Approved :: Artistic License", "Natural Language :: English", "Operating System :: MacOS :: MacOS X", "Operating System :: Microsoft :: Windows :: Windows 7", "Operating System :: OS Independent", "Operating System :: POSIX", "Operating System :: POSIX :: BSD :: OpenBSD", "Operating System :: POSIX :: Linux", "Programming Language :: Python", "Programming Language :: Python :: 2", "Programming Language :: Python :: 2.6", "Programming Language :: Python :: 2.7", "Programming Language :: Unix Shell", "Topic :: Software Development :: Libraries :: Python Modules", "Topic :: Utilities" ], "description": "epyunit\n=======\n\nAbstract\n--------\n\nThe **ePyUnit package** provides extensions for the integrated\n**Testautomation and Debugging** of executables and scipts as subprocesses.\n\nTechnically **ePyUnit** provides extensions for the\n**PyUnit** and **PyDev**/**Eclipse** frameworks for blackbox tests\nand seamless integrated debugging of executables and scripts including nested calls of subprocesses.\nThe standard frameworks, libraries and IDEs provide components as presented\nby the following figure.::\n\n . :\n +----------------+ : +---------------------------+\n | unittest | : | scripts and executables |\n +---+------------+---+ : +---+-----------------------+---+\n | automation | : | debugging |\n +----------------+ : +---------------------------+\n . :\n\n\nThese are extended by framework features for the\nseamless cross-process integration of scripts and programs.::\n\n .\n +------------------------------+ +-----------------------------+\n | automation and unittest | | seamless cross-process |\n | for arbitrary | <---> | debugging |\n | scripts and executables | | |\n +------------------------------+ +-----------------------------+\n\n |<--- seamless integration --->|\n .\n\nThe included automation extension for the PyDev/Eclipse based debugging\nof -- local and remote -- Python subprocesses provides simplified support of detailed error analysis\nin case of test failures.\n\nBlueprint\n---------\n\nThe *'ePyUnit' package* provides a minimal but sufficient approach in particular for\nthe low-effort test automation of scripts and tools suitable for operations of\nlarge scale application tests as well as for daily and advanced DevOps tasks.\n\n* ePyUnit encapsulates processes and relies on PyUnit for commandline\n based unit and regression tests. The main focus is general blackbox testing\n of executables, for Python in addition the automation of PyDev debugging\n is included , see 'https://pythonhosted.org/epyunit/call_integration.html'.\n\n* ePyUnit integrates into PyDev for the support of the graphical\n Eclipse IDE of unit testing and integrated graphical debugging,\n this is also supported for external processes started independently\n from the commandline, see 'https://pythonhosted.org/epyunit/pydevd_integration.html'.\n\n\nThe ePyUnit components call the wrapped process and read the execution results\nfrom STDOUT, STDERR, and the exit value. The values are cached by Python\nvariables either for further processing, or optional pass-through to the caller.\n\nThe architecture is based on the packages 'PyUnit' and 'PyDev'::\n\n\n\n +-----------------------+ call +-----------------------+\n | | ------> | |\n Subprocess | ePyUnit | | Wrapped-Executable |\n | | <----- | |\n +-----------------------+ stdin +-----------------------+\n | stderr |\n | exit V\n | +-----------------------+\n PyDev Remote | | PyDevRDC | Debug into\n Debug Server | +-----------------------+ subprocess\n | |\n . . . . . . . . | . . . . . . . . . . . . . . . . . . . | . . . . . . . .\n | |\n V V\n +-----------------------+ +-----------------------+\n Python Units | PyUnit | <---> | PyDev |\n +-----------------------+ +-----------------------+\n | | |\n V V /\n +-----------+ +-----------+ /\n IDE | CLI | | Eclipse |<--------------------/\n +-----------+ +-----------+\n\n\nThe test components collect internally the data of multiple output sources and\ndecide based on the selection of the user parameters whether the test was successful or has failed.\nTherefore a similar approach to Fuzzy-Logic is applied on mixed results consisting of partial\nfailures and success.\nThe provided scenarios are single level subprocesses::\n\n +----------------+ +------------+\n | Python-Process | <--> | Subprocess |\n +----------------+ +------------+\n\nand nested multilevel scripts and executables as subprocesses::\n\n +----------------+ +------------+ +------------+\n | Python-Process | <--> | Subprocess | <- ... --> | Subprocess |\n +----------------+ +------------+ +------------+\n\nWhere each level of subprocesses could start an arbitrary number of local and remote\nsubprocesses itself, and either correlate or pass-through the results.\nDue to some bugfixes the backport from Python3.x *subprocess32* is optionally\nsupported when present.\n\nThe provided package comprises functional atoms for various UseCases, as well\nas extension classes for the 'unittest' package to be used in combination\nwith PyUnit and PyDev..\n\nThe 'epyunit' package provides in particular:\n\n* Support for unit tests of shell scripts - **bash** - from command line and Eclipse/PyDev\n\n* The simplified reuse of executables as test-dummies within multiple test cases.\n\n* The categorization of structures defined by the directory tree.\n\n* The support of arbitrary intermixed implementation languages for executables.\n\nThe implementation supports Python(>=2.7) and integrates into the Eclipse IDE\nwith PyDev, and PyUnit.\n\nThe package 'epyunit' is a spin off from the project 'UnifiedSessionsManager-2.0'.\n\nFor examples and patterns see subdirectories:\n\n* UseCases\n\n* tests\n\n**Downloads**:\n\n* Sourceforge.net: https://sourceforge.net/projects/epyunit/files/\n\n* Github: https://github.com/ArnoCan/epyunit/\n\n**Online documentation**:\n\n* Documentation: https://pythonhosted.org/epyunit/\n\n* API: https://pythonhosted.org/epyunit/epydoc/\n\n* PyPi: https://pypi.python.org/pypi/epyunit/\n\n**setup.py**\n\nThe installer adds a few options to the standard setuptools options.\n\n* *build_doc*: Creates the integrated documentation for runtime systems including API in 'epyunit/build/apidoc/epyunit'.\n\n* *install_doc*: Installs documents into source project 'epyunit/doc', and the 'HOME' or 'AppData'.\n\n* *build_sphinx*: Creates documentation for runtime system by Sphinx, html only. Calls 'callDocSphinx.sh'.\n\n* *build_epydoc*: Creates documentation for runtime system by Epydoc, html only. Calls 'callDocEpydoc.sh'.\n\n* *test*: Runs PyUnit tests by discovery.\n\n* *--help-epyunit*: Displays this help.\n\n* *--no-install-required*: Suppresses installation dependency checks, requires appropriate PYTHONPATH.\n\n* *--offline*: Sets online dependencies to offline, or ignores online dependencies.\n\n* *--exit*: Exit 'setup.py'.\n\nAfter successful installation the 'selftest' verifies basic checks by:\n\n *epyunit --selftest*\n\nwith the exit value '0' when OK.\n\nThe option '-v' raises the degree of verbosity for inspection\n\n *epyunit --selftest -v -v -v -v*\n\n\nProject Data\n------------\n\n* PROJECT: 'epyunit'\n\n* MISSION: Extend the standard PyUnit package for arbitrary ExecUnits.\n\n* VERSION: 00.02\n\n* RELEASE: 00.02\n\n* NICKNAME: 'Dromi'\n\n* STATUS: alpha\n\n* AUTHOR: Arno-Can Uestuensoez\n\n* COPYRIGHT: Copyright (C) 2010,2011,2015-2016 Arno-Can Uestuensoez @Ingenieurbuero Arno-Can Uestuensoez\n\n* LICENSE: Artistic-License-2.0 + Forced-Fairplay-Constraints\n Refer to enclose documents:\n\n * ArtisticLicense20.html - for base license: Artistic-License-2.0\n\n * licenses-amendments.txt - for amendments: Forced-Fairplay-Constraints\n\nVersions and Releases\n---------------------\n\n**Planned Releases:**\n\n* RELEASE: 00.00.00x - Pre-Alpha: Extraction of the features from hard-coded application into a reusable package.\n\n* RELEASE: 00.01.00x - Alpha: Completion of basic features.\n\n* RELEASE: 00.02.00x - Alpha: Completion of features, stable interface.\n\n* RELEASE: 00.03.00x - Beta: Accomplish test cases for medium to high complexity.\n\n* RELEASE: 00.04.00x - Production: First production release. Estimated number of UnitTests := 1000.\n\n* RELEASE: 00.05.00x - Production: Various performance enhancements.\n\n* RELEASE: 00.06.00x - Production: Security review.\n\n* RELEASE: > - Production: Stable and compatible continued development.\n\n**Current Release: 00.02.012 - Alpha:**\n\nThis is a nightly-build, next following soon.\nMajor Changes:\n\n* fixes\n\nCurrent test status:\n\n**ATTENTION**: Some of the tests involve the remote debug feature of PyDev/Eclipse,\n thus require a running local RemoteDebugServer, see manuals.\n\n* UnitTests: >600(CLI)/700(Eclipse)\n\n* Use-Cases as UnitTests: >140\n\n**Total**: >800\n\nnn", "description_content_type": null, "docs_url": "https://pythonhosted.org/epyunit/", "download_url": "https://sourceforge.net/projects/epyunit/files/", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://sourceforge.net/projects/epyunit/", "keywords": "Python PyUnit PyDev Eclipse CLI command line test unit unittest regression regressiontest fileobjects commandline debug pydevd.py automation remote debug cross-process", "license": "Artistic-License-2.0 + Forced-Fairplay-Constraints", "maintainer": null, "maintainer_email": null, "name": "epyunit", "package_url": "https://pypi.org/project/epyunit/", "platform": "any", "project_url": "https://pypi.org/project/epyunit/", "project_urls": { "Download": "https://sourceforge.net/projects/epyunit/files/", "Homepage": "https://sourceforge.net/projects/epyunit/" }, "release_url": "https://pypi.org/project/epyunit/0.2.12/", "requires_dist": null, "requires_python": null, "summary": "The 'epyunit' package provides a wrapper for unit tests of commandline interfaces, and the automation of debugging with PyDev for external processes. The package could be used either from the comandline, or integrated into Eclipse with PyDev.", "version": "0.2.12" }, "last_serial": 2732697, "releases": { "0.0.0": [], "0.0.1": [ { "comment_text": "", "digests": { "md5": "8421841ad36c13e3678f5ada8db7789f", "sha256": "9784c221c267ab265d5b75d00100adf1525cb69984400a00818994eb3e357d50" }, "downloads": -1, "filename": "epyunit-0.0.1-1.noarch.rpm", "has_sig": false, "md5_digest": "8421841ad36c13e3678f5ada8db7789f", "packagetype": "bdist_dumb", "python_version": "2.7", "requires_python": null, "size": 27444, "upload_time": "2016-06-01T16:12:47", "url": "https://files.pythonhosted.org/packages/32/ae/11140d2aed1e59567634bb371fa8aa06b52beba2e1b0f3afc6567862d8f8/epyunit-0.0.1-1.noarch.rpm" }, { "comment_text": "", "digests": { "md5": "5d64ad730d3d2ff5904592abca2a5398", "sha256": "42945b10b49b20c0d669425a4f294b9572e65e4a255d83b2244749ab5d66885e" }, "downloads": -1, "filename": "epyunit-0.0.1-1.src.rpm", "has_sig": false, "md5_digest": "5d64ad730d3d2ff5904592abca2a5398", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 87745, "upload_time": "2016-06-01T16:12:59", "url": "https://files.pythonhosted.org/packages/92/b4/c906c7069f2d445b8e4f460148ea1818a54472ce8f09121c5b069ab47060/epyunit-0.0.1-1.src.rpm" }, { "comment_text": "", "digests": { "md5": "efb29819f49acb6eb2d9d131a8af8196", "sha256": "8e5b9181b88060fbd09e9eb40a7d870e6128efac8e43cdfb3024eb4970dcb9b5" }, "downloads": -1, "filename": "epyunit-0.0.1.linux-x86_64.tar.gz", "has_sig": false, "md5_digest": "efb29819f49acb6eb2d9d131a8af8196", "packagetype": "bdist_dumb", "python_version": "2.7", "requires_python": null, "size": 19198, "upload_time": "2016-06-01T16:12:28", "url": "https://files.pythonhosted.org/packages/e0/26/c62a68961aff89d522bae365e9c32636225bdb6686548b049e74f9ce39c2/epyunit-0.0.1.linux-x86_64.tar.gz" }, { "comment_text": "", "digests": { "md5": "b33ec41267473010f02d3d36db275cc0", "sha256": "749c6d1fa565602f7aec55692650955bd28cfdaa548bf9a976237642a4ffae01" }, "downloads": -1, "filename": "epyunit-0.0.1.tar.gz", "has_sig": false, "md5_digest": "b33ec41267473010f02d3d36db275cc0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 287964, "upload_time": "2016-06-01T16:12:10", "url": "https://files.pythonhosted.org/packages/81/f6/3afb245edfc1c2df65adbf3b3a21692dc206559b9df62e07088516cf468c/epyunit-0.0.1.tar.gz" } ], "0.0.10": [ { "comment_text": "", "digests": { "md5": "06d79e1a2a96c37c945b92789cbb6293", "sha256": "fc83c0e5c161a82241d7b01209c154ccc24621835b3e2fb55cefd644faabfd5b" }, "downloads": -1, "filename": "epyunit-0.0.10-1.noarch.rpm", "has_sig": false, "md5_digest": "06d79e1a2a96c37c945b92789cbb6293", "packagetype": "bdist_dumb", "python_version": "2.7", "requires_python": null, "size": 27764, "upload_time": "2016-06-06T13:15:15", "url": "https://files.pythonhosted.org/packages/62/f3/bcef91cbb0a7381e736f43ef11ba91f0f2bc3a9e92af75e5d6d7d5f9b81e/epyunit-0.0.10-1.noarch.rpm" }, { "comment_text": "", "digests": { "md5": "145c27e3995ac93a165455348aec2206", "sha256": "4c90abc9b8ced19d557acb3986a8bef52e39765ad34329810fe1df1541e5c8ed" }, "downloads": -1, "filename": "epyunit-0.0.10-1.src.rpm", "has_sig": false, "md5_digest": "145c27e3995ac93a165455348aec2206", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 66978, "upload_time": "2016-06-06T13:15:26", "url": "https://files.pythonhosted.org/packages/f7/92/59ab6e1dbe90b69602a0193534fdc3b23f921d4d4f8619538b038c008b64/epyunit-0.0.10-1.src.rpm" }, { "comment_text": "", "digests": { "md5": "23a2041e595220b0fe0298b536754070", "sha256": "cf42326ab9c61580bd66e61ad9d3736eaa7085c5f6650a73c9a2c93f3fdb566f" }, "downloads": -1, "filename": "epyunit-0.0.10.linux-x86_64.tar.gz", "has_sig": false, "md5_digest": "23a2041e595220b0fe0298b536754070", "packagetype": "bdist_dumb", "python_version": "2.7", "requires_python": null, "size": 19542, "upload_time": "2016-06-06T13:14:48", "url": "https://files.pythonhosted.org/packages/2c/38/b727cac8d48a4ad96c4daf823b45308ab44e9f13e24365a3e7a89c4b23dd/epyunit-0.0.10.linux-x86_64.tar.gz" }, { "comment_text": "", "digests": { "md5": "d05646d9d23d0b22383fd2670b601a8e", "sha256": "e6ec6f18487fd024951dca0970c2388743caa697888af24841124367a77ea750" }, "downloads": -1, "filename": "epyunit-0.0.10.tar.gz", "has_sig": false, "md5_digest": "d05646d9d23d0b22383fd2670b601a8e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 57225, "upload_time": "2016-06-06T13:14:59", "url": "https://files.pythonhosted.org/packages/16/fe/3849752d6b836f02d06a73a2b334ef3139c991fab94a2cbd55f456ee5e0e/epyunit-0.0.10.tar.gz" } ], "0.1.10": [ { "comment_text": "", "digests": { "md5": "8b82562844a0418d10b8bbf390541a54", "sha256": "0d927cca3d585674f4079d475f52d9cf35c069486b81b4b3d1b823fe28f94304" }, "downloads": -1, "filename": "epyunit-0.1.10-1.noarch.rpm", "has_sig": false, "md5_digest": "8b82562844a0418d10b8bbf390541a54", "packagetype": "bdist_rpm", "python_version": "2.7", "requires_python": null, "size": 52024, "upload_time": "2016-08-02T11:07:35", "url": "https://files.pythonhosted.org/packages/1a/29/d8232f98bd03b9b289e1b78313b4bd7d2527c3aa3ae28ec53af44276d1d7/epyunit-0.1.10-1.noarch.rpm" }, { "comment_text": "", "digests": { "md5": "102ec98c9c99a9d5b5f1a629d014e88b", "sha256": "5d91450719ec9f88f2df0f5e1f7b6d1ead50cf22252f0390a34a12b31aee037c" }, "downloads": -1, "filename": "epyunit-0.1.10-1.src.rpm", "has_sig": false, "md5_digest": "102ec98c9c99a9d5b5f1a629d014e88b", "packagetype": "bdist_rpm", "python_version": "2.7", "requires_python": null, "size": 681361, "upload_time": "2016-08-02T11:07:47", "url": "https://files.pythonhosted.org/packages/08/6f/4b59dc2d594696c3f5c8e387e79961611cba6d3d7327de70fdbf4ae4736a/epyunit-0.1.10-1.src.rpm" }, { "comment_text": "", "digests": { "md5": "e2ade3b812f37ee586958428c2ec15c5", "sha256": "14ffa413c15f1aa52a628d0f7f832385355f3e4a364d6237ab575a144ef1b535" }, "downloads": -1, "filename": "epyunit-0.1.10.linux-x86_64.exe", "has_sig": false, "md5_digest": "e2ade3b812f37ee586958428c2ec15c5", "packagetype": "bdist_wininst", "python_version": "2.7", "requires_python": null, "size": 103058, "upload_time": "2016-08-02T11:07:00", "url": "https://files.pythonhosted.org/packages/5c/e7/54a4292f8a1d46c754cb05293e06490260f9042a287baef4bb304471ffd5/epyunit-0.1.10.linux-x86_64.exe" }, { "comment_text": "", "digests": { "md5": "b1457291368764e7ad1b82a3c4966e42", "sha256": "b78c852602c74239c4cc10cd85d9e0a8e597995a9467c2af1959fdaf728a1d21" }, "downloads": -1, "filename": "epyunit-0.1.10.linux-x86_64.tar.gz", "has_sig": false, "md5_digest": "b1457291368764e7ad1b82a3c4966e42", "packagetype": "bdist_dumb", "python_version": "2.7", "requires_python": null, "size": 46576, "upload_time": "2016-08-02T11:07:11", "url": "https://files.pythonhosted.org/packages/78/7a/c6ff073d19bfeea5643c043150bf2f370611ab27f1ed317a9a534832623e/epyunit-0.1.10.linux-x86_64.tar.gz" }, { "comment_text": "", "digests": { "md5": "b4e4d813d2dea0153b01348ca15b5a36", "sha256": "0071e027ca47cc9f2f3834d720dac4bf07f1c4adc06f02e88d7cd7e19cadced4" }, "downloads": -1, "filename": "epyunit-0.1.10.tar.gz", "has_sig": false, "md5_digest": "b4e4d813d2dea0153b01348ca15b5a36", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 669740, "upload_time": "2016-08-02T11:07:24", "url": "https://files.pythonhosted.org/packages/3c/7d/e5c8b8c74d635fc4142451a093d4facb73c795b8445de0f1bdaee788f6ed/epyunit-0.1.10.tar.gz" } ], "0.1.11": [ { "comment_text": "", "digests": { "md5": "3053503537d075a6876393dfc5339c89", "sha256": "6a7690955c4fc9ca99dea0ce5f642dc66d2df053944ef48026e96152b1369344" }, "downloads": -1, "filename": "epyunit-0.1.11-1.noarch.rpm", "has_sig": false, "md5_digest": "3053503537d075a6876393dfc5339c89", "packagetype": "bdist_rpm", "python_version": "2.7", "requires_python": null, "size": 60412, "upload_time": "2016-08-10T04:17:02", "url": "https://files.pythonhosted.org/packages/d8/05/02bcd68d1a9bed191b927f0db5ae491cab87a411e4e0c881d8c5035a2a57/epyunit-0.1.11-1.noarch.rpm" }, { "comment_text": "", "digests": { "md5": "47e7e9acabf34b63ea6a6d0b5c2ae8d0", "sha256": "83ed8d832378cbdc31e45060c7995028ce87850d5ed3bd60698f9fee03e8a710" }, "downloads": -1, "filename": "epyunit-0.1.11-1.src.rpm", "has_sig": false, "md5_digest": "47e7e9acabf34b63ea6a6d0b5c2ae8d0", "packagetype": "bdist_rpm", "python_version": "2.7", "requires_python": null, "size": 812630, "upload_time": "2016-08-10T04:20:19", "url": "https://files.pythonhosted.org/packages/b3/fb/dd673c755df689ca2030df23dad2bf046ba1a7f5f9a622c9408696df91ee/epyunit-0.1.11-1.src.rpm" }, { "comment_text": "", "digests": { "md5": "323e076abce68c3a38c97c46694e6b97", "sha256": "98e90a4b756b56b835d94c09f435ab2a8a4bf56777a5488453baa65a6d53e8d3" }, "downloads": -1, "filename": "epyunit-0.1.11.linux-x86_64.tar.gz", "has_sig": false, "md5_digest": "323e076abce68c3a38c97c46694e6b97", "packagetype": "bdist_dumb", "python_version": "2.7", "requires_python": null, "size": 61334, "upload_time": "2016-08-10T04:16:38", "url": "https://files.pythonhosted.org/packages/f5/bf/6f1f75d0fe362154dfcb1f49624b7d6bd442b05b9b5a51268e7d9662c398/epyunit-0.1.11.linux-x86_64.tar.gz" }, { "comment_text": "", "digests": { "md5": "072dd8440c44afaee58f975d14de23ab", "sha256": "8416f998d71673914486a1015f42e16ef9756758fe5751a92e26889918e32e5b" }, "downloads": -1, "filename": "epyunit-0.1.11.tar.gz", "has_sig": false, "md5_digest": "072dd8440c44afaee58f975d14de23ab", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 802874, "upload_time": "2016-08-10T04:16:51", "url": "https://files.pythonhosted.org/packages/26/fc/fe0d31beee132127cf01dec494a7e9d284f62a8a1484d241abd2a2c2d6e6/epyunit-0.1.11.tar.gz" } ], "0.1.12": [ { "comment_text": "", "digests": { "md5": "9171923a3c6c89a1742ff85bbd649d5e", "sha256": "26d39f896845f02006253b8874c398aee1133d1d95e6ecfe8c0554a0276b7728" }, "downloads": -1, "filename": "epyunit-0.1.12-1.noarch.rpm", "has_sig": false, "md5_digest": "9171923a3c6c89a1742ff85bbd649d5e", "packagetype": "bdist_rpm", "python_version": "2.7", "requires_python": null, "size": 64620, "upload_time": "2016-08-15T09:47:54", "url": "https://files.pythonhosted.org/packages/78/ac/aef4a8a4bf23561013addee857d7cb6882d836dad15529b4430a8e6ab95d/epyunit-0.1.12-1.noarch.rpm" }, { "comment_text": "", "digests": { "md5": "e4b79d4993d85610c56f7e655dce1e3b", "sha256": "e86f4a5c3aa916475b7a50bef37436db21d808fb9c6744c7071a059b370b2ecb" }, "downloads": -1, "filename": "epyunit-0.1.12-1.src.rpm", "has_sig": false, "md5_digest": "e4b79d4993d85610c56f7e655dce1e3b", "packagetype": "bdist_rpm", "python_version": "2.7", "requires_python": null, "size": 800742, "upload_time": "2016-08-15T09:48:09", "url": "https://files.pythonhosted.org/packages/81/91/bc820f1c731fd7fad66f138fba5d7ac2779332a51143519019949a69f6be/epyunit-0.1.12-1.src.rpm" }, { "comment_text": "", "digests": { "md5": "fad750d8c9b477cacac715f0a615808f", "sha256": "cfe1bdd84224aa7940d98eafbc9c7252cda1d127641b486a42590629c086e036" }, "downloads": -1, "filename": "epyunit-0.1.12.linux-x86_64.exe", "has_sig": false, "md5_digest": "fad750d8c9b477cacac715f0a615808f", "packagetype": "bdist_wininst", "python_version": "2.7", "requires_python": null, "size": 112593, "upload_time": "2016-08-15T09:47:11", "url": "https://files.pythonhosted.org/packages/5c/90/4347d980f291f89d51ea99245a8a38cbdca245fbafd48a835cd2fba4264d/epyunit-0.1.12.linux-x86_64.exe" }, { "comment_text": "", "digests": { "md5": "f3239c2cde3e45db62616c41b06b2541", "sha256": "74c0e5d694259ec53a44ece51a9e05716f112e7f9268f6bff40de6089ca0ccf8" }, "downloads": -1, "filename": "epyunit-0.1.12.linux-x86_64.tar.gz", "has_sig": false, "md5_digest": "f3239c2cde3e45db62616c41b06b2541", "packagetype": "bdist_dumb", "python_version": "2.7", "requires_python": null, "size": 66944, "upload_time": "2016-08-15T09:47:23", "url": "https://files.pythonhosted.org/packages/29/cb/1221af74eda63cc7d9d474b366c5882f45553f5516ec2032fb3a61eb6989/epyunit-0.1.12.linux-x86_64.tar.gz" }, { "comment_text": "", "digests": { "md5": "ec129174f23143bd0c6e6010d164640f", "sha256": "6f182b8e62672d31dcea6f7b8b854c1d6a08e1025bd68712cd9a76aba4c1d7b2" }, "downloads": -1, "filename": "epyunit-0.1.12.tar.gz", "has_sig": false, "md5_digest": "ec129174f23143bd0c6e6010d164640f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 789982, "upload_time": "2016-08-15T09:47:42", "url": "https://files.pythonhosted.org/packages/17/9a/0eb718374cc814298f07df6d62e5e220576205b6b099dfdccfb5207f03cb/epyunit-0.1.12.tar.gz" } ], "0.1.13": [ { "comment_text": "", "digests": { "md5": "7d34a81b0396a1e7bfef64f26ca03a6e", "sha256": "cbff2c4f571e2f644e8be8cfac575d87a3cd4a83d931dfc1a6c319ed70228bf9" }, "downloads": -1, "filename": "epyunit-0.1.13-1.src.rpm", "has_sig": false, "md5_digest": "7d34a81b0396a1e7bfef64f26ca03a6e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 807423, "upload_time": "2016-08-16T09:13:22", "url": "https://files.pythonhosted.org/packages/eb/af/567a5ee8d7203b6fdc80f79b2cd535d69889cdbfac6a8e4275f9ba97a085/epyunit-0.1.13-1.src.rpm" }, { "comment_text": "", "digests": { "md5": "648800507ff7d3078c89b7cfaa666974", "sha256": "bb68b9cca5e76be9eba728ef309336a6a3738b2d598d9f42062f688fb434985d" }, "downloads": -1, "filename": "epyunit-0.1.13.linux-x86_64.tar.gz", "has_sig": false, "md5_digest": "648800507ff7d3078c89b7cfaa666974", "packagetype": "bdist_dumb", "python_version": "2.7", "requires_python": null, "size": 67729, "upload_time": "2016-08-16T09:12:12", "url": "https://files.pythonhosted.org/packages/3d/aa/b34a904d7ace4f32e9ade78a4f0a50cc64add6105ce1f12959903bfa2949/epyunit-0.1.13.linux-x86_64.tar.gz" }, { "comment_text": "", "digests": { "md5": "b41fa410a1acabcb2cf49cfbc0de0e5c", "sha256": "510426686f4df6dfdf7bc4a8d7d4d6a25e7fa8725802b847e239ad236d66d608" }, "downloads": -1, "filename": "epyunit-0.1.13.tar.gz", "has_sig": false, "md5_digest": "b41fa410a1acabcb2cf49cfbc0de0e5c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 792849, "upload_time": "2016-08-16T09:12:25", "url": "https://files.pythonhosted.org/packages/3a/20/069b16336d78290592796a62be03849bfb1a33f8a2591173721cb22f4713/epyunit-0.1.13.tar.gz" } ], "0.1.14": [ { "comment_text": "", "digests": { "md5": "a91a93953632625cbf3c80d0302dc080", "sha256": "489478cbf6b5156af070ddc6f7d6e9b05f3ab65d376a4c02f1b07e5961bd9dea" }, "downloads": -1, "filename": "epyunit-0.1.14-1.noarch.rpm", "has_sig": false, "md5_digest": "a91a93953632625cbf3c80d0302dc080", "packagetype": "bdist_rpm", "python_version": "2.7", "requires_python": null, "size": 67896, "upload_time": "2016-08-22T05:26:23", "url": "https://files.pythonhosted.org/packages/f1/85/84050acb2dd2542adc5ef6c99710649658546e718562fa03c5e215c37a4e/epyunit-0.1.14-1.noarch.rpm" }, { "comment_text": "", "digests": { "md5": "b810a8365ed64108ef8a928fcf2054ca", "sha256": "4c7f9d55440e1dffa9f6b97a858ecef2de7658d2f9ec6ae9167a6d0ada8c07c2" }, "downloads": -1, "filename": "epyunit-0.1.14-1.src.rpm", "has_sig": false, "md5_digest": "b810a8365ed64108ef8a928fcf2054ca", "packagetype": "bdist_rpm", "python_version": "2.7", "requires_python": null, "size": 812973, "upload_time": "2016-08-22T05:26:41", "url": "https://files.pythonhosted.org/packages/4a/62/e330c2309049c64848823fe008a937b0834c42d2b82e51581bca13e350e9/epyunit-0.1.14-1.src.rpm" }, { "comment_text": "", "digests": { "md5": "9e637ff86f89cc080a2e8155ba47f7a8", "sha256": "48a8b5046abe7cebe1ec71e43925059d967ddd5de3170fdbe0a34ced7ee6060c" }, "downloads": -1, "filename": "epyunit-0.1.14.linux-x86_64.exe", "has_sig": false, "md5_digest": "9e637ff86f89cc080a2e8155ba47f7a8", "packagetype": "bdist_wininst", "python_version": "2.7", "requires_python": null, "size": 116349, "upload_time": "2016-08-22T05:25:45", "url": "https://files.pythonhosted.org/packages/8d/18/d12f6fe022dbfb06ac5eb5938ecaad143c1a996a701328b9ebf7f5b3b753/epyunit-0.1.14.linux-x86_64.exe" }, { "comment_text": "", "digests": { "md5": "3625dd330127e98fdb6278baf9eee5a2", "sha256": "b86aa9105f14f11aa3db2d424e37378155c794b44cfcbe60d26b4db9086f5244" }, "downloads": -1, "filename": "epyunit-0.1.14.linux-x86_64.tar.gz", "has_sig": false, "md5_digest": "3625dd330127e98fdb6278baf9eee5a2", "packagetype": "bdist_dumb", "python_version": "2.7", "requires_python": null, "size": 61662, "upload_time": "2016-08-22T05:26:10", "url": "https://files.pythonhosted.org/packages/b7/99/9d023a09f9b67738a971dcdc74a247b69f7bb5a22cb8e87633ac319a1bd2/epyunit-0.1.14.linux-x86_64.tar.gz" }, { "comment_text": "", "digests": { "md5": "2592fa69dcf765d7a50759e0461e7ffc", "sha256": "1b1671a79b4a10168ecfa5f091368212463ef4533b65ad791ddf94fe083ec03a" }, "downloads": -1, "filename": "epyunit-0.1.14.tar.gz", "has_sig": false, "md5_digest": "2592fa69dcf765d7a50759e0461e7ffc", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 798819, "upload_time": "2016-08-22T05:25:59", "url": "https://files.pythonhosted.org/packages/9a/9e/7f061d97bc8a1c22d8187a0edacbe2d797af5f5fdb03f0617e96cd70d07e/epyunit-0.1.14.tar.gz" } ], "0.1.7": [ { "comment_text": "", "digests": { "md5": "fa0775d4eb339e47f2ab9be74eb1ee8d", "sha256": "67a14aff0d3ae3192e93e98fb1e7eee3fe1a56fe69ff77c46959ca71e2b3f630" }, "downloads": -1, "filename": "epyunit-0.1.7-1.noarch.rpm", "has_sig": false, "md5_digest": "fa0775d4eb339e47f2ab9be74eb1ee8d", "packagetype": "bdist_rpm", "python_version": "2.7", "requires_python": null, "size": 46192, "upload_time": "2016-07-25T18:37:54", "url": "https://files.pythonhosted.org/packages/21/a9/22ad01e2d40b4753f21a5fd8d3b85bf75ee9e2e337f34f51fa29d73bf4e6/epyunit-0.1.7-1.noarch.rpm" }, { "comment_text": "", "digests": { "md5": "90f0b94a0bed6259cb1afb55af626ba5", "sha256": "155b95cd677c3333b7e61c2f5483f0110ee042453f2582d9e39cb6f3532025a0" }, "downloads": -1, "filename": "epyunit-0.1.7-1.src.rpm", "has_sig": false, "md5_digest": "90f0b94a0bed6259cb1afb55af626ba5", "packagetype": "bdist_rpm", "python_version": "2.7", "requires_python": null, "size": 371318, "upload_time": "2016-07-25T18:38:05", "url": "https://files.pythonhosted.org/packages/5d/b4/163a66159ead896a5fb4d293fe68b2898eb90b3b3e15c1f1dbabdfbe6a1e/epyunit-0.1.7-1.src.rpm" }, { "comment_text": "", "digests": { "md5": "79ddbeafe9eb844a09da10307d8ad3e0", "sha256": "5326855d7308700ac5a5b5ba7adbe699aac8c355312299241a8676d78dfc0c2f" }, "downloads": -1, "filename": "epyunit-0.1.7.linux-x86_64.exe", "has_sig": false, "md5_digest": "79ddbeafe9eb844a09da10307d8ad3e0", "packagetype": "bdist_wininst", "python_version": "2.7", "requires_python": null, "size": 98224, "upload_time": "2016-07-25T18:37:13", "url": "https://files.pythonhosted.org/packages/1f/9d/86c320a25e5fd53f159f70ce03a431c71f86f360b68e51ecf17d6f53ec62/epyunit-0.1.7.linux-x86_64.exe" }, { "comment_text": "", "digests": { "md5": "149f7ab5aa8a16dfb5ee47b254db0ba0", "sha256": "a7870adfea0f617250d45c3994f5f31b2f205987fabaa55b3ab676f64736e7cb" }, "downloads": -1, "filename": "epyunit-0.1.7.linux-x86_64.tar.gz", "has_sig": false, "md5_digest": "149f7ab5aa8a16dfb5ee47b254db0ba0", "packagetype": "bdist_dumb", "python_version": "2.7", "requires_python": null, "size": 39831, "upload_time": "2016-07-25T18:37:26", "url": "https://files.pythonhosted.org/packages/77/c5/3344772e6a7e5fe1d367418e07c9a5fded41e9b97722996c9745da068423/epyunit-0.1.7.linux-x86_64.tar.gz" }, { "comment_text": "", "digests": { "md5": "989f894243112ce44a80c4c50c57b182", "sha256": "d4e842766597f3f3913484ea9417a1d8bd4a47bcca9b4f9d25fd4e9c0985b9f8" }, "downloads": -1, "filename": "epyunit-0.1.7.tar.gz", "has_sig": false, "md5_digest": "989f894243112ce44a80c4c50c57b182", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 360619, "upload_time": "2016-07-25T18:37:40", "url": "https://files.pythonhosted.org/packages/c9/85/70658c38afad6b096b6f83afdcd41b417b8de73715066c4b0f727f3b7df4/epyunit-0.1.7.tar.gz" } ], "0.1.8": [ { "comment_text": "", "digests": { "md5": "7331b12955184c91f99e0af86e546bd8", "sha256": "70e19e9346562ed7b45f3a013164d0870e8c28b6508a90314d1b1d75985fe34e" }, "downloads": -1, "filename": "epyunit-0.1.8-1.noarch.rpm", "has_sig": false, "md5_digest": "7331b12955184c91f99e0af86e546bd8", "packagetype": "bdist_rpm", "python_version": "2.7", "requires_python": null, "size": 47368, "upload_time": "2016-07-26T04:08:35", "url": "https://files.pythonhosted.org/packages/e0/48/d569b336e1d0c3abaf3a2d20f067d08494d2a99471a2e864552656f73aa9/epyunit-0.1.8-1.noarch.rpm" }, { "comment_text": "", "digests": { "md5": "7fce9a6b04b217b0e1086d07ba3b43fd", "sha256": "828cdb45faa75a8343a1e6079315fe681a1b73e984bb0bcf0dd93e4221551a68" }, "downloads": -1, "filename": "epyunit-0.1.8-1.src.rpm", "has_sig": false, "md5_digest": "7fce9a6b04b217b0e1086d07ba3b43fd", "packagetype": "bdist_rpm", "python_version": "2.7", "requires_python": null, "size": 372059, "upload_time": "2016-07-26T04:08:46", "url": "https://files.pythonhosted.org/packages/80/48/799c63ba36aa280bec69f6ef236590cff34200d6dd5e3a35314635c4a217/epyunit-0.1.8-1.src.rpm" }, { "comment_text": "", "digests": { "md5": "88e48f984f81ab03836968176aa20f5f", "sha256": "e51a5f285666de98a193bdfff239cec9be044ba568358ca69f15ca0f8113559c" }, "downloads": -1, "filename": "epyunit-0.1.8.linux-x86_64.exe", "has_sig": false, "md5_digest": "88e48f984f81ab03836968176aa20f5f", "packagetype": "bdist_wininst", "python_version": "2.7", "requires_python": null, "size": 99517, "upload_time": "2016-07-26T04:07:58", "url": "https://files.pythonhosted.org/packages/5d/31/a20b0784343957cc9118b12d1f20a2dfa2ddd63b9bf995908fc4a8d75b70/epyunit-0.1.8.linux-x86_64.exe" }, { "comment_text": "", "digests": { "md5": "d3ff93dfa81234d8e111aed17fd097bf", "sha256": "e2b3c6f21fd90eb39ada2f80b7705cd51087229237c051aee2ed4070f098dd70" }, "downloads": -1, "filename": "epyunit-0.1.8.linux-x86_64.tar.gz", "has_sig": false, "md5_digest": "d3ff93dfa81234d8e111aed17fd097bf", "packagetype": "bdist_dumb", "python_version": "2.7", "requires_python": null, "size": 39985, "upload_time": "2016-07-26T04:08:10", "url": "https://files.pythonhosted.org/packages/aa/42/83ce717a086a334824d1bc3090dc5f2ebe299290126b1adc9136a1747fa5/epyunit-0.1.8.linux-x86_64.tar.gz" }, { "comment_text": "", "digests": { "md5": "6ed2c4ba329d2ed9616be0aaa4e190f6", "sha256": "6af5606200937132bc9a2d24297811ef8f05220599fbcfc2d225744e23f17234" }, "downloads": -1, "filename": "epyunit-0.1.8.tar.gz", "has_sig": false, "md5_digest": "6ed2c4ba329d2ed9616be0aaa4e190f6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 359998, "upload_time": "2016-07-26T04:08:22", "url": "https://files.pythonhosted.org/packages/08/9b/57c1d8d4d5d9bc0b1ebdf3f1fd0ce779bec4cf1701021f7d2f2ff4a904aa/epyunit-0.1.8.tar.gz" } ], "0.1.9": [ { "comment_text": "", "digests": { "md5": "f9e27d938090542f9cbdb0131439b0e2", "sha256": "886dc070d242241c7bdea8d93bcaff178480a87a2a088060ebfd14563251de8f" }, "downloads": -1, "filename": "epyunit-0.1.9-1.noarch.rpm", "has_sig": false, "md5_digest": "f9e27d938090542f9cbdb0131439b0e2", "packagetype": "bdist_rpm", "python_version": "2.7", "requires_python": null, "size": 47368, "upload_time": "2016-07-26T04:39:33", "url": "https://files.pythonhosted.org/packages/33/d2/453a5ce78b1591f73f7bc269d9d2522f755ec39a8b36e045f52cc65604db/epyunit-0.1.9-1.noarch.rpm" }, { "comment_text": "", "digests": { "md5": "f311dc3396b101a6fb10c2603dd38533", "sha256": "ffbf9b1a6fc8fe392ef015da4c5828601a19269331167aa4d2f48179483c2ad9" }, "downloads": -1, "filename": "epyunit-0.1.9-1.src.rpm", "has_sig": false, "md5_digest": "f311dc3396b101a6fb10c2603dd38533", "packagetype": "bdist_rpm", "python_version": "2.7", "requires_python": null, "size": 372335, "upload_time": "2016-07-26T04:39:42", "url": "https://files.pythonhosted.org/packages/1e/26/d4f5afa46809eb2e04f868fb93779879eb1f5b3d33fb685273e1f81c6e0b/epyunit-0.1.9-1.src.rpm" }, { "comment_text": "", "digests": { "md5": "e8dfbe678de8941abff08d74c6259f67", "sha256": "1998eddb59fa4372bfe11c9e8ba87e63cee84be189c442de24ed74d479d8f6d9" }, "downloads": -1, "filename": "epyunit-0.1.9.linux-x86_64.exe", "has_sig": false, "md5_digest": "e8dfbe678de8941abff08d74c6259f67", "packagetype": "bdist_wininst", "python_version": "2.7", "requires_python": null, "size": 99517, "upload_time": "2016-07-26T04:38:55", "url": "https://files.pythonhosted.org/packages/51/5e/f68df701517f2fa0fa5ddfb5a102bdff98417bfbc871d5cbfcb94e50a62f/epyunit-0.1.9.linux-x86_64.exe" }, { "comment_text": "", "digests": { "md5": "25bf307907b5d82bb8923eb3fc0c6f55", "sha256": "e0655195d1ecae600478f8e490b61516d49436cae0ec1170ca26ea918c790274" }, "downloads": -1, "filename": "epyunit-0.1.9.linux-x86_64.tar.gz", "has_sig": false, "md5_digest": "25bf307907b5d82bb8923eb3fc0c6f55", "packagetype": "bdist_dumb", "python_version": "2.7", "requires_python": null, "size": 39989, "upload_time": "2016-07-26T04:39:08", "url": "https://files.pythonhosted.org/packages/40/e8/fc25a2dc2f946bc8bb58b6417cbcec18a48acb76bbb8f7893537741869ec/epyunit-0.1.9.linux-x86_64.tar.gz" }, { "comment_text": "", "digests": { "md5": "e41ca376148b1750ea54d64264e28be9", "sha256": "ca577117df0596e0dc3fca9aa4f840253aa7a803bc168d811fcc809bc2db44c3" }, "downloads": -1, "filename": "epyunit-0.1.9.tar.gz", "has_sig": false, "md5_digest": "e41ca376148b1750ea54d64264e28be9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 360388, "upload_time": "2016-07-26T04:39:21", "url": "https://files.pythonhosted.org/packages/9f/00/05ca4618bae4365b6b97ee261edd48c5e290bb421647b4159906c8848bd9/epyunit-0.1.9.tar.gz" } ], "0.2.0": [ { "comment_text": "", "digests": { "md5": "14fca018ce2e35089e6687522e755b73", "sha256": "79a149caac0586f5dee46df4ad654a0d144b58f9c30f2c7a848beb2361be837e" }, "downloads": -1, "filename": "epyunit-0.2.0-1.noarch.rpm", "has_sig": false, "md5_digest": "14fca018ce2e35089e6687522e755b73", "packagetype": "bdist_rpm", "python_version": "2.7", "requires_python": null, "size": 83524, "upload_time": "2016-09-08T08:47:55", "url": "https://files.pythonhosted.org/packages/6b/83/ff699f0c65476648674d1da6339359fad3d1abf1ae686ae8b3cdf5ec2728/epyunit-0.2.0-1.noarch.rpm" }, { "comment_text": "", "digests": { "md5": "608fa648da8e68b6becad12f5d263082", "sha256": "1657ac5573654b5afd406c7adcff0a9fe41fc673deb723f000813af3bb8fa209" }, "downloads": -1, "filename": "epyunit-0.2.0-1.src.rpm", "has_sig": false, "md5_digest": "608fa648da8e68b6becad12f5d263082", "packagetype": "bdist_rpm", "python_version": "2.7", "requires_python": null, "size": 3064795, "upload_time": "2016-09-08T08:48:11", "url": "https://files.pythonhosted.org/packages/f2/a0/cd3710a730f44a8ad6b25f8c181b62f5b0831e2c73def9941ff3ee56463c/epyunit-0.2.0-1.src.rpm" }, { "comment_text": "", "digests": { "md5": "8c5ba845866a4c7e890de489ffb41615", "sha256": "e46b799f4337c81e7ab8556f45550bfb6ddd2a4b4a687271cc47d4b23f6cbba0" }, "downloads": -1, "filename": "epyunit-0.2.0.linux-x86_64.exe", "has_sig": false, "md5_digest": "8c5ba845866a4c7e890de489ffb41615", "packagetype": "bdist_wininst", "python_version": "2.7", "requires_python": null, "size": 134193, "upload_time": "2016-09-08T08:46:50", "url": "https://files.pythonhosted.org/packages/80/ec/1904bbc8539059bb949e81910a32dc5f8496d9eef9c7986d0a853a591b46/epyunit-0.2.0.linux-x86_64.exe" }, { "comment_text": "", "digests": { "md5": "27ca127e1c986d197563b468b3876a4d", "sha256": "7429a7238cc6306049c034a9e28c12518b4e2ca5dbce6af3fe9205cdcd36ed0a" }, "downloads": -1, "filename": "epyunit-0.2.0.linux-x86_64.tar.gz", "has_sig": false, "md5_digest": "27ca127e1c986d197563b468b3876a4d", "packagetype": "bdist_dumb", "python_version": "2.7", "requires_python": null, "size": 84823, "upload_time": "2016-09-08T08:47:03", "url": "https://files.pythonhosted.org/packages/26/16/d5a49fb40cb485d1d620b5296f5fcb670a162e45e9541f0fef4f7aa96b07/epyunit-0.2.0.linux-x86_64.tar.gz" }, { "comment_text": "", "digests": { "md5": "d9de510108964aebd500b489e023135e", "sha256": "9112bb4fe47910994f63bc1acc6c88e423ac2ae27a9933159f225b2dae3b24d8" }, "downloads": -1, "filename": "epyunit-0.2.0.tar.gz", "has_sig": false, "md5_digest": "d9de510108964aebd500b489e023135e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3500005, "upload_time": "2016-09-08T08:47:34", "url": "https://files.pythonhosted.org/packages/3f/ec/cec335523853fffc444dd00ee1baa0b8e341501822bf8aa9058b21039407/epyunit-0.2.0.tar.gz" } ], "0.2.10": [ { "comment_text": "", "digests": { "md5": "10c0650dadb787669c54f55934da17b7", "sha256": "e4b1fed7f1957c8a732a150746eaef139e66db5505265c24abfa28010ae24200" }, "downloads": -1, "filename": "epyunit-0.2.10-1.noarch.rpm", "has_sig": false, "md5_digest": "10c0650dadb787669c54f55934da17b7", "packagetype": "bdist_rpm", "python_version": "2.7", "requires_python": null, "size": 88800, "upload_time": "2017-02-23T06:21:48", "url": "https://files.pythonhosted.org/packages/9e/67/fd9ff0a10e9f4b77c8924a4479e98df002dbf8398a8eeea17cec961536ad/epyunit-0.2.10-1.noarch.rpm" }, { "comment_text": "", "digests": { "md5": "1908b0daac0d28a79c12382855cb7a25", "sha256": "50c16b2a6ac6555ccc71abcccc72a9acd561211143e986e4b3bb0060e7e603a1" }, "downloads": -1, "filename": "epyunit-0.2.10-1.src.rpm", "has_sig": false, "md5_digest": "1908b0daac0d28a79c12382855cb7a25", "packagetype": "bdist_rpm", "python_version": "2.7", "requires_python": null, "size": 3079720, "upload_time": "2017-02-23T06:22:02", "url": "https://files.pythonhosted.org/packages/2d/d6/4923faf904f8a70ef75f23e6c831d018414f7070bbdae258e9cf938bee56/epyunit-0.2.10-1.src.rpm" }, { "comment_text": "", "digests": { "md5": "b455405448fb84b60473bb5dd221e396", "sha256": "edddcad5883bad2702179d21afdbcf58f63a73954b0c9ba08fc5639fd0e866b7" }, "downloads": -1, "filename": "epyunit-0.2.10.linux-x86_64.exe", "has_sig": false, "md5_digest": "b455405448fb84b60473bb5dd221e396", "packagetype": "bdist_wininst", "python_version": "2.7", "requires_python": null, "size": 140200, "upload_time": "2017-02-23T06:22:15", "url": "https://files.pythonhosted.org/packages/2a/68/f84e7690352e7c6341ac5a3d0c13048f608c74a678ba6d67d7053c6866bf/epyunit-0.2.10.linux-x86_64.exe" }, { "comment_text": "", "digests": { "md5": "08e4588f6f7515aa255736650d88df6e", "sha256": "79aeb4e74076a6950347a2b4aef32a07b4b9697b45ee7053e9a5463f917b863a" }, "downloads": -1, "filename": "epyunit-0.2.10.linux-x86_64.tar.gz", "has_sig": false, "md5_digest": "08e4588f6f7515aa255736650d88df6e", "packagetype": "bdist_dumb", "python_version": "2.7", "requires_python": null, "size": 94638, "upload_time": "2017-02-23T06:21:35", "url": "https://files.pythonhosted.org/packages/e3/26/a9aa3a1dc3225b695d69e8a2be21628f89f274f2e6df51c722eb3814ac54/epyunit-0.2.10.linux-x86_64.tar.gz" }, { "comment_text": "", "digests": { "md5": "b30184c6c7b8bfa6374db43da470aa49", "sha256": "3afe900f59610b2054228a2d321b4f5f27eb49bb67577e37df7ead35e72341d6" }, "downloads": -1, "filename": "epyunit-0.2.10.tar.gz", "has_sig": false, "md5_digest": "b30184c6c7b8bfa6374db43da470aa49", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3515156, "upload_time": "2017-02-23T06:21:20", "url": "https://files.pythonhosted.org/packages/5b/9c/a15ca1160387f43f87b8a794f73e49a8c5f47ef2499cea934131dbcfb147/epyunit-0.2.10.tar.gz" } ], "0.2.11": [ { "comment_text": "", "digests": { "md5": "80b41a29c95471650e956763e52d4054", "sha256": "c4de0907d38a623a150dfe2726a3ed978edcc48f043f70bba6e38990b8c113b2" }, "downloads": -1, "filename": "epyunit-0.2.11-1.noarch.rpm", "has_sig": false, "md5_digest": "80b41a29c95471650e956763e52d4054", "packagetype": "bdist_rpm", "python_version": "2.7", "requires_python": null, "size": 88788, "upload_time": "2017-02-23T07:23:39", "url": "https://files.pythonhosted.org/packages/aa/6d/56b16eb5820f53d925bf6eb1b57f2826a930c760abab6e20112838628193/epyunit-0.2.11-1.noarch.rpm" }, { "comment_text": "", "digests": { "md5": "1bd4d29f6a2cfd83dfef743786f9ec43", "sha256": "3a76feb0b841ccd3be7ae0c9a21dccbe24ec2029d12d68eaee645f45ed8f6928" }, "downloads": -1, "filename": "epyunit-0.2.11-1.src.rpm", "has_sig": false, "md5_digest": "1bd4d29f6a2cfd83dfef743786f9ec43", "packagetype": "bdist_rpm", "python_version": "2.7", "requires_python": null, "size": 3079290, "upload_time": "2017-02-23T07:24:05", "url": "https://files.pythonhosted.org/packages/b9/24/f2f8e6e287aeda01f648f877a920aed0fb9aefeb3bbf628764c1da3e6191/epyunit-0.2.11-1.src.rpm" }, { "comment_text": "", "digests": { "md5": "423f2d09a0a98a14a483d129566227b4", "sha256": "7895951aa0fa967a07dbc78f749c72bfb46c3deccbe53a3feba1155100823147" }, "downloads": -1, "filename": "epyunit-0.2.11.linux-x86_64.exe", "has_sig": false, "md5_digest": "423f2d09a0a98a14a483d129566227b4", "packagetype": "bdist_wininst", "python_version": "2.7", "requires_python": null, "size": 140228, "upload_time": "2017-02-23T07:23:26", "url": "https://files.pythonhosted.org/packages/34/72/1bdc8f6d77df57ffb2c09166414f83370fef066c8fc011c3cbc17992b86f/epyunit-0.2.11.linux-x86_64.exe" }, { "comment_text": "", "digests": { "md5": "0631eec7ea7069ba894bfbd471956d62", "sha256": "ad1fd503ce4d1fc50792b8b8e7e6e1f53cdf656eadab5d44d2bcca9ff5b8f03f" }, "downloads": -1, "filename": "epyunit-0.2.11.linux-x86_64.tar.gz", "has_sig": false, "md5_digest": "0631eec7ea7069ba894bfbd471956d62", "packagetype": "bdist_dumb", "python_version": "2.7", "requires_python": null, "size": 94617, "upload_time": "2017-02-23T07:23:10", "url": "https://files.pythonhosted.org/packages/98/f3/a9dbaefbe5fe0e7dccab0b48613aa8d209bb45fb463d57206dfe0fec756b/epyunit-0.2.11.linux-x86_64.tar.gz" }, { "comment_text": "", "digests": { "md5": "a2bac5d910bda039f339d78a4db30f3c", "sha256": "a641400e08da0bc3b20d78d852226b61b2e8117f47c4c86f9c2694a85931b9c6" }, "downloads": -1, "filename": "epyunit-0.2.11.tar.gz", "has_sig": false, "md5_digest": "a2bac5d910bda039f339d78a4db30f3c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3515111, "upload_time": "2017-02-23T07:22:55", "url": "https://files.pythonhosted.org/packages/cc/8d/d0bdb48f42d00353e1533eb1eeb3d2fcba795d3794002caceb20a334e0fb/epyunit-0.2.11.tar.gz" } ], "0.2.12": [ { "comment_text": "", "digests": { "md5": "82c6ba2639d3a484bff36f9e002c8090", "sha256": "0e3aab68c83da09760950e4d76f82ddad6d5e260bf18dbb8a132422c864ae772" }, "downloads": -1, "filename": "epyunit-0.2.12-1.noarch.rpm", "has_sig": false, "md5_digest": "82c6ba2639d3a484bff36f9e002c8090", "packagetype": "bdist_rpm", "python_version": "2.6", "requires_python": null, "size": 89160, "upload_time": "2017-03-27T04:23:14", "url": "https://files.pythonhosted.org/packages/c4/0a/f8cec05a7fef10d055cc894170c80b1eec18f3a1c677b66dcc9bd0353990/epyunit-0.2.12-1.noarch.rpm" }, { "comment_text": "", "digests": { "md5": "83ccbf65db66f12a7d00bddce55c00f2", "sha256": "224122e51209159786242da16d72670271db1e5dd6cac081dfe97a8d96c7cde8" }, "downloads": -1, "filename": "epyunit-0.2.12-1.src.rpm", "has_sig": false, "md5_digest": "83ccbf65db66f12a7d00bddce55c00f2", "packagetype": "bdist_rpm", "python_version": "2.7", "requires_python": null, "size": 3082854, "upload_time": "2017-03-27T04:23:34", "url": "https://files.pythonhosted.org/packages/1a/cd/85df24e6b742a4a5a55b490022298bfa681d46c45dde145f6cfe13298e70/epyunit-0.2.12-1.src.rpm" }, { "comment_text": "", "digests": { "md5": "76af2aa8391ad5604d5df69a826dd56f", "sha256": "7010668b428d3d858d8afd5d18486962c1ef74e7c7e02c8cc6e9fa88ceb0e4e3" }, "downloads": -1, "filename": "epyunit-0.2.12.linux-x86_64.tar.gz", "has_sig": false, "md5_digest": "76af2aa8391ad5604d5df69a826dd56f", "packagetype": "bdist_dumb", "python_version": "2.7", "requires_python": null, "size": 95090, "upload_time": "2017-03-27T04:22:58", "url": "https://files.pythonhosted.org/packages/eb/6d/26d8a6fd1872c985420a4f711d545c5a9992629b9e5c7a3dac9867c7d70e/epyunit-0.2.12.linux-x86_64.tar.gz" }, { "comment_text": "", "digests": { "md5": "e9f64650355cf7e25b42da9735bab82a", "sha256": "caee15c1be94ab3720a338ec5537814672b7851d343a5cccf70aab0dbb1e8bcf" }, "downloads": -1, "filename": "epyunit-0.2.12.tar.gz", "has_sig": false, "md5_digest": "e9f64650355cf7e25b42da9735bab82a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3519561, "upload_time": "2017-03-27T04:22:39", "url": "https://files.pythonhosted.org/packages/29/93/96290786ee53d8e28939030e7910984759a105c5b75e9ac62c7dadc1d296/epyunit-0.2.12.tar.gz" } ], "0.2.5": [ { "comment_text": "", "digests": { "md5": "29c3c4705fa41036d303fe59d686f377", "sha256": "95b3f63672642f9257b211f20ac5822330518fe1a48f9dd937dc71eca0c93750" }, "downloads": -1, "filename": "epyunit-0.2.5-1.noarch.rpm", "has_sig": false, "md5_digest": "29c3c4705fa41036d303fe59d686f377", "packagetype": "bdist_rpm", "python_version": "2.7", "requires_python": null, "size": 87344, "upload_time": "2017-02-21T07:24:21", "url": "https://files.pythonhosted.org/packages/17/40/777e44924399d0b563b388a10247bc6b183e5a8a4b640ac74f4c33e22ef4/epyunit-0.2.5-1.noarch.rpm" }, { "comment_text": "", "digests": { "md5": "8537d93340cf86477438a08b41ce79af", "sha256": "8c0ebcc96368456453e918c5dc1339e89a429cbb404fd63aafc9c972d1383fe7" }, "downloads": -1, "filename": "epyunit-0.2.5-1.src.rpm", "has_sig": false, "md5_digest": "8537d93340cf86477438a08b41ce79af", "packagetype": "bdist_rpm", "python_version": "2.7", "requires_python": null, "size": 3070507, "upload_time": "2017-02-21T07:24:39", "url": "https://files.pythonhosted.org/packages/2b/ed/beb5b5902f9780696c089a4624ec6efe943ca9dba7a27911aa67dcc827df/epyunit-0.2.5-1.src.rpm" }, { "comment_text": "", "digests": { "md5": "d418842e5982815b15e7df1341a6c0ae", "sha256": "b9eaa42ce12c2852042b42312778e09511845d7f80a56a4cf894ada7f43768f9" }, "downloads": -1, "filename": "epyunit-0.2.5.linux-x86_64.exe", "has_sig": false, "md5_digest": "d418842e5982815b15e7df1341a6c0ae", "packagetype": "bdist_wininst", "python_version": "2.7", "requires_python": null, "size": 136702, "upload_time": "2017-02-21T07:23:29", "url": "https://files.pythonhosted.org/packages/bf/44/b24597f1aca6f3f6e54377e0bf0115f049576362408b82ab658d90757c87/epyunit-0.2.5.linux-x86_64.exe" }, { "comment_text": "", "digests": { "md5": "a0555bcb6ffa499d358b5d19331321a2", "sha256": "393a0dfc2ad9f3404a885cc51b88a58bc64c1a99f17a4020d7b194db73de50be" }, "downloads": -1, "filename": "epyunit-0.2.5.linux-x86_64.tar.gz", "has_sig": false, "md5_digest": "a0555bcb6ffa499d358b5d19331321a2", "packagetype": "bdist_dumb", "python_version": "2.7", "requires_python": null, "size": 92888, "upload_time": "2017-02-21T07:23:40", "url": "https://files.pythonhosted.org/packages/1f/ac/3dd7741d714ca69692a330751caae8da3d341bd46fcba1e061592fc076c5/epyunit-0.2.5.linux-x86_64.tar.gz" }, { "comment_text": "", "digests": { "md5": "2a8066ffc763ef927d5054ddfc88f77f", "sha256": "2e2659e04612f0e95077b1c3d72e5ef6e686aec7f4a3e7c3694e1d29bf7416bd" }, "downloads": -1, "filename": "epyunit-0.2.5.tar.gz", "has_sig": false, "md5_digest": "2a8066ffc763ef927d5054ddfc88f77f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3515640, "upload_time": "2017-02-21T07:24:08", "url": "https://files.pythonhosted.org/packages/92/45/79a4c830de643dcba387791a9155c433a1ca805744dd9688a341a297380b/epyunit-0.2.5.tar.gz" } ], "0.2.6": [ { "comment_text": "", "digests": { "md5": "9df7207af376c033f2dc840364de9290", "sha256": "82ccb7df419e153c585dfbfaed8a56b33e8143a27515ea9d4239841285f9223f" }, "downloads": -1, "filename": "epyunit-0.2.6-1.noarch.rpm", "has_sig": false, "md5_digest": "9df7207af376c033f2dc840364de9290", "packagetype": "bdist_rpm", "python_version": "2.7", "requires_python": null, "size": 88424, "upload_time": "2017-02-21T10:47:02", "url": "https://files.pythonhosted.org/packages/be/22/9b080298bfe5cec56c6928ee783a712d199d8182213888e94dabee19c8aa/epyunit-0.2.6-1.noarch.rpm" }, { "comment_text": "", "digests": { "md5": "cfa52997cd42e3b5708931ee9ca1caff", "sha256": "7a011a9bddb67cacda3c0927e196a7bbd7d6996ff3468c28d654b2f9e2bc11ca" }, "downloads": -1, "filename": "epyunit-0.2.6-1.src.rpm", "has_sig": false, "md5_digest": "cfa52997cd42e3b5708931ee9ca1caff", "packagetype": "bdist_rpm", "python_version": "2.7", "requires_python": null, "size": 3081326, "upload_time": "2017-02-21T10:48:27", "url": "https://files.pythonhosted.org/packages/6e/da/5d857509e4e9823b961be14a3a093cda63fe5cfb9b8914b04ec52cda4d03/epyunit-0.2.6-1.src.rpm" }, { "comment_text": "", "digests": { "md5": "0b5d7ff50d18ec09f3931792232cadb4", "sha256": "8ae5c47a9c5dceb4d789df39f0ca52d586876c345e62e58ccd459f9bc9d05fef" }, "downloads": -1, "filename": "epyunit-0.2.6.linux-x86_64.exe", "has_sig": false, "md5_digest": "0b5d7ff50d18ec09f3931792232cadb4", "packagetype": "bdist_wininst", "python_version": "2.7", "requires_python": null, "size": 139914, "upload_time": "2017-02-21T10:46:11", "url": "https://files.pythonhosted.org/packages/7c/6d/0c1ae8120cd938fc1358f5938d081002422a53118c1ddee386ed19bc4e95/epyunit-0.2.6.linux-x86_64.exe" }, { "comment_text": "", "digests": { "md5": "b13d4912f4962e45a3938910fce41eea", "sha256": "a7576d68cd3b46e3295c4d807e248c604b2ac37595821f29a093afda2543c73f" }, "downloads": -1, "filename": "epyunit-0.2.6.linux-x86_64.tar.gz", "has_sig": false, "md5_digest": "b13d4912f4962e45a3938910fce41eea", "packagetype": "bdist_dumb", "python_version": "2.7", "requires_python": null, "size": 93918, "upload_time": "2017-02-21T10:46:24", "url": "https://files.pythonhosted.org/packages/88/10/6b2a9a85263204c9c594cb68c29c6e7c3be7e76bff06dfd5598ad5c4a530/epyunit-0.2.6.linux-x86_64.tar.gz" }, { "comment_text": "", "digests": { "md5": "a8086816822b62f1f3b878f565e60516", "sha256": "6c8a1e1fdbe1a6c8625ac58ca9e558075bcf7788cc80ad937dc3bff00f658318" }, "downloads": -1, "filename": "epyunit-0.2.6.tar.gz", "has_sig": false, "md5_digest": "a8086816822b62f1f3b878f565e60516", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3517201, "upload_time": "2017-02-21T10:46:49", "url": "https://files.pythonhosted.org/packages/43/51/c761ba7cbd7aec0466de339b769758bee988a595b311284a8f4a596acafe/epyunit-0.2.6.tar.gz" } ], "0.2.7": [ { "comment_text": "", "digests": { "md5": "d22f7b11978a082eb955184a3865de0f", "sha256": "d3bd816f488b1555e2c743b84a45b5e70a0d7244b5d58a4c9a07520d1e2796bd" }, "downloads": -1, "filename": "epyunit-0.2.7-1.noarch.rpm", "has_sig": false, "md5_digest": "d22f7b11978a082eb955184a3865de0f", "packagetype": "bdist_rpm", "python_version": "2.7", "requires_python": null, "size": 88576, "upload_time": "2017-02-21T18:07:39", "url": "https://files.pythonhosted.org/packages/77/f9/f22e9bd1f5a9d24fd0218c8508a3493ab429743bb819425930bbad37010d/epyunit-0.2.7-1.noarch.rpm" }, { "comment_text": "", "digests": { "md5": "1c8510b6a1b5c3c3acf659716222e025", "sha256": "806fae84fa613d6a1ef9985e1b2c427e55f8f7209076fe6a3c149946efbda8f0" }, "downloads": -1, "filename": "epyunit-0.2.7-1.src.rpm", "has_sig": false, "md5_digest": "1c8510b6a1b5c3c3acf659716222e025", "packagetype": "bdist_rpm", "python_version": "2.7", "requires_python": null, "size": 3082011, "upload_time": "2017-02-21T18:08:09", "url": "https://files.pythonhosted.org/packages/80/62/f367afc4411ff7e7fa8c038e72fbf9c290a961811dadda2ae72a435fa988/epyunit-0.2.7-1.src.rpm" }, { "comment_text": "", "digests": { "md5": "1b494e46e6cf3b301023b9765987669d", "sha256": "38e920f18ec3e61162fae72ce24a2fafa981af7c6e0934e0fbeaf945a3614be0" }, "downloads": -1, "filename": "epyunit-0.2.7.linux-x86_64.exe", "has_sig": false, "md5_digest": "1b494e46e6cf3b301023b9765987669d", "packagetype": "bdist_wininst", "python_version": "2.7", "requires_python": null, "size": 140040, "upload_time": "2017-02-21T18:00:36", "url": "https://files.pythonhosted.org/packages/42/56/2735c538e3eaa99669a4a9214d887e92947abe604110d4bd12cd898a7aa1/epyunit-0.2.7.linux-x86_64.exe" }, { "comment_text": "", "digests": { "md5": "0b387c159b7a9c16c5a6cb3ed190a4c8", "sha256": "76c1a0e829f4ab55e1c084eaf91039b7568ca087761bdd8a51bbcf01b913c67e" }, "downloads": -1, "filename": "epyunit-0.2.7.linux-x86_64.tar.gz", "has_sig": false, "md5_digest": "0b387c159b7a9c16c5a6cb3ed190a4c8", "packagetype": "bdist_dumb", "python_version": "2.7", "requires_python": null, "size": 94349, "upload_time": "2017-02-21T18:00:52", "url": "https://files.pythonhosted.org/packages/d1/37/eee082da784a45ce408f28274ec5ee1072ad214385bac122d14956ca7756/epyunit-0.2.7.linux-x86_64.tar.gz" }, { "comment_text": "", "digests": { "md5": "ea76752971df59acb8c771fe4edfb57a", "sha256": "ded63f13e62b34986e03aa05276076484e26e94b7de8dedce3d9c6fda01597fe" }, "downloads": -1, "filename": "epyunit-0.2.7.tar.gz", "has_sig": false, "md5_digest": "ea76752971df59acb8c771fe4edfb57a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3517344, "upload_time": "2017-02-21T18:01:49", "url": "https://files.pythonhosted.org/packages/82/d9/89400535a5e4c111ecdc9c3da359a260d5e72710775aa981cbd5ad9a3cba/epyunit-0.2.7.tar.gz" } ], "0.2.8": [ { "comment_text": "", "digests": { "md5": "461bb967b5fe3cf7f61fccbea729de1a", "sha256": "3834001dc5c4f69c0123a4336590ab9691bbceb9d0fe058c9d609f644ab76b52" }, "downloads": -1, "filename": "epyunit-0.2.8-1.noarch.rpm", "has_sig": false, "md5_digest": "461bb967b5fe3cf7f61fccbea729de1a", "packagetype": "bdist_rpm", "python_version": "2.7", "requires_python": null, "size": 88720, "upload_time": "2017-02-21T19:49:05", "url": "https://files.pythonhosted.org/packages/1d/c3/fbf49a9961990355f3150c47e6da8c9fc9d1b5e3d3f3c7d9c548700a2acf/epyunit-0.2.8-1.noarch.rpm" }, { "comment_text": "", "digests": { "md5": "7a1ebc3fc96793281f7d565732823e87", "sha256": "b8192cef1d07487bac309ad31c67bdabadaff68ff52ad1517942f2193419f7f7" }, "downloads": -1, "filename": "epyunit-0.2.8-1.src.rpm", "has_sig": false, "md5_digest": "7a1ebc3fc96793281f7d565732823e87", "packagetype": "bdist_rpm", "python_version": "2.7", "requires_python": null, "size": 3071892, "upload_time": "2017-02-21T19:49:19", "url": "https://files.pythonhosted.org/packages/7e/5f/3fe43b148e9e545211e7c3bc52074a70ed19732f74a8bd3dafb1e81534d5/epyunit-0.2.8-1.src.rpm" }, { "comment_text": "", "digests": { "md5": "a37151041f8ebf16865ecce54b5616a1", "sha256": "fe78a403cb3c410d9d6b61b8ecbf4b794238d62ba7f304a0ac220170b6741b66" }, "downloads": -1, "filename": "epyunit-0.2.8.linux-x86_64.exe", "has_sig": false, "md5_digest": "a37151041f8ebf16865ecce54b5616a1", "packagetype": "bdist_wininst", "python_version": "2.7", "requires_python": null, "size": 140165, "upload_time": "2017-02-21T19:48:30", "url": "https://files.pythonhosted.org/packages/d7/9f/d2db93e215af6b0d2372121a4bce4ebc6e0e10e7cb7160a8d5baded35547/epyunit-0.2.8.linux-x86_64.exe" }, { "comment_text": "", "digests": { "md5": "80a7ef1a5598c986070011db740a0a81", "sha256": "c9d8b332468b50126985e52ee47363e360a2e8085cea16f23c41b8acdf7f9a13" }, "downloads": -1, "filename": "epyunit-0.2.8.linux-x86_64.tar.gz", "has_sig": false, "md5_digest": "80a7ef1a5598c986070011db740a0a81", "packagetype": "bdist_dumb", "python_version": "2.7", "requires_python": null, "size": 94525, "upload_time": "2017-02-21T19:48:41", "url": "https://files.pythonhosted.org/packages/85/b0/25703fb2ae04e8fc57e415d2ce85fcd7ea64c10b534934ff16d1a1118994/epyunit-0.2.8.linux-x86_64.tar.gz" }, { "comment_text": "", "digests": { "md5": "d429e4d2911902c1492aa737a77146ac", "sha256": "b14fdea3288543d88937e712e206227bc8df2eeac7afe21c665e2d4e3260412b" }, "downloads": -1, "filename": "epyunit-0.2.8.tar.gz", "has_sig": false, "md5_digest": "d429e4d2911902c1492aa737a77146ac", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3515071, "upload_time": "2017-02-21T19:48:54", "url": "https://files.pythonhosted.org/packages/e1/75/1b89ec6e966e592b546ec771d81b0ae8deaf9636d5eb35ebc8eef7994de1/epyunit-0.2.8.tar.gz" } ], "0.2.9": [ { "comment_text": "", "digests": { "md5": "14dcd83b93a7e539a2216c28aa6d0467", "sha256": "cf19bad053f24ebd2b40d91bb354bcab8961e076b85c58cece9f866adf5fc255" }, "downloads": -1, "filename": "epyunit-0.2.9-1.noarch.rpm", "has_sig": false, "md5_digest": "14dcd83b93a7e539a2216c28aa6d0467", "packagetype": "bdist_rpm", "python_version": "2.7", "requires_python": null, "size": 88788, "upload_time": "2017-02-22T05:19:15", "url": "https://files.pythonhosted.org/packages/ce/21/6cebeee6341b681f3ff949e1a97b9e2e33d57de1ac815a1a43ec424a40fb/epyunit-0.2.9-1.noarch.rpm" }, { "comment_text": "", "digests": { "md5": "35a69306cadd04f90e4edb0948cc853b", "sha256": "5e1f8f56392ef40fcb5f93316ec040ae06bfa0d459d41a6ad0fd0753ab9c0131" }, "downloads": -1, "filename": "epyunit-0.2.9.linux-x86_64.exe", "has_sig": false, "md5_digest": "35a69306cadd04f90e4edb0948cc853b", "packagetype": "bdist_wininst", "python_version": "2.7", "requires_python": null, "size": 140214, "upload_time": "2017-02-22T05:18:06", "url": "https://files.pythonhosted.org/packages/70/c2/bfb9c303249b61b9a1ee4b9335968d0f0559add78e8545fd6314ca4dfb89/epyunit-0.2.9.linux-x86_64.exe" }, { "comment_text": "", "digests": { "md5": "7d3d117927fae82a42413ac01d45a092", "sha256": "1d3e126b7b8b82f88b4cf1bf5c4c89f5201e03103c18235b33311687c345d53b" }, "downloads": -1, "filename": "epyunit-0.2.9.linux-x86_64.tar.gz", "has_sig": false, "md5_digest": "7d3d117927fae82a42413ac01d45a092", "packagetype": "bdist_dumb", "python_version": "2.7", "requires_python": null, "size": 94658, "upload_time": "2017-02-22T05:18:18", "url": "https://files.pythonhosted.org/packages/1e/4d/7ee22ecd922ec7941ca54a8fd5b9945c6f29a7e7ce9ac2eae0b5ed903b1c/epyunit-0.2.9.linux-x86_64.tar.gz" }, { "comment_text": "", "digests": { "md5": "0b79981b1ecfa453c6d572c703d43d0c", "sha256": "1be7dfda8c21eb18f7337f4f15f61c839637a374e780d256d0e5608d3c54dd85" }, "downloads": -1, "filename": "epyunit-0.2.9.tar.gz", "has_sig": false, "md5_digest": "0b79981b1ecfa453c6d572c703d43d0c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3515127, "upload_time": "2017-02-22T05:19:00", "url": "https://files.pythonhosted.org/packages/fd/7c/f7068e7639576367b1d7228baa042f6af35d6d6fed8d82d5a710bffbae09/epyunit-0.2.9.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "82c6ba2639d3a484bff36f9e002c8090", "sha256": "0e3aab68c83da09760950e4d76f82ddad6d5e260bf18dbb8a132422c864ae772" }, "downloads": -1, "filename": "epyunit-0.2.12-1.noarch.rpm", "has_sig": false, "md5_digest": "82c6ba2639d3a484bff36f9e002c8090", "packagetype": "bdist_rpm", "python_version": "2.6", "requires_python": null, "size": 89160, "upload_time": "2017-03-27T04:23:14", "url": "https://files.pythonhosted.org/packages/c4/0a/f8cec05a7fef10d055cc894170c80b1eec18f3a1c677b66dcc9bd0353990/epyunit-0.2.12-1.noarch.rpm" }, { "comment_text": "", "digests": { "md5": "83ccbf65db66f12a7d00bddce55c00f2", "sha256": "224122e51209159786242da16d72670271db1e5dd6cac081dfe97a8d96c7cde8" }, "downloads": -1, "filename": "epyunit-0.2.12-1.src.rpm", "has_sig": false, "md5_digest": "83ccbf65db66f12a7d00bddce55c00f2", "packagetype": "bdist_rpm", "python_version": "2.7", "requires_python": null, "size": 3082854, "upload_time": "2017-03-27T04:23:34", "url": "https://files.pythonhosted.org/packages/1a/cd/85df24e6b742a4a5a55b490022298bfa681d46c45dde145f6cfe13298e70/epyunit-0.2.12-1.src.rpm" }, { "comment_text": "", "digests": { "md5": "76af2aa8391ad5604d5df69a826dd56f", "sha256": "7010668b428d3d858d8afd5d18486962c1ef74e7c7e02c8cc6e9fa88ceb0e4e3" }, "downloads": -1, "filename": "epyunit-0.2.12.linux-x86_64.tar.gz", "has_sig": false, "md5_digest": "76af2aa8391ad5604d5df69a826dd56f", "packagetype": "bdist_dumb", "python_version": "2.7", "requires_python": null, "size": 95090, "upload_time": "2017-03-27T04:22:58", "url": "https://files.pythonhosted.org/packages/eb/6d/26d8a6fd1872c985420a4f711d545c5a9992629b9e5c7a3dac9867c7d70e/epyunit-0.2.12.linux-x86_64.tar.gz" }, { "comment_text": "", "digests": { "md5": "e9f64650355cf7e25b42da9735bab82a", "sha256": "caee15c1be94ab3720a338ec5537814672b7851d343a5cccf70aab0dbb1e8bcf" }, "downloads": -1, "filename": "epyunit-0.2.12.tar.gz", "has_sig": false, "md5_digest": "e9f64650355cf7e25b42da9735bab82a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3519561, "upload_time": "2017-03-27T04:22:39", "url": "https://files.pythonhosted.org/packages/29/93/96290786ee53d8e28939030e7910984759a105c5b75e9ac62c7dadc1d296/epyunit-0.2.12.tar.gz" } ] }