{ "info": { "author": "Terry Yin", "author_email": "terry@odd-e.com", "bugtrack_url": null, "classifiers": [ "Development Status :: 5 - Production/Stable", "Intended Audience :: Developers", "Intended Audience :: End Users/Desktop", "License :: Freeware", "Operating System :: MacOS :: MacOS X", "Operating System :: Microsoft :: Windows", "Operating System :: POSIX", "Programming Language :: C", "Programming Language :: C++", "Programming Language :: Java", "Programming Language :: JavaScript", "Programming Language :: Objective C", "Programming Language :: Python", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3.4", "Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.6", "Topic :: Software Development :: Quality Assurance" ], "description": "|Web Site| Lizard\n=================\n\n.. image:: https://travis-ci.org/terryyin/lizard.png?branch=master\n :target: https://travis-ci.org/terryyin/lizard\n.. image:: https://badge.fury.io/py/lizard.svg\n :target: https://badge.fury.io/py/lizard\n.. |Web Site| image:: http://www.lizard.ws/website/static/img/logo-small.png\n :target: http://www.lizard.ws\n\n|\n\nLizard is an extensible Cyclomatic Complexity Analyzer for many programming languages\nincluding C/C++ (doesn't require all the header files or Java imports). It also does\ncopy-paste detection (code clone detection/code duplicate detection) and many other forms of static\ncode analysis.\n\nA list of supported languages:\n\n- C/C++ (works with C++14)\n- Java\n- C# (C Sharp)\n- JavaScript\n- Objective-C\n- Swift\n- Python\n- Ruby\n- TTCN-3\n- PHP\n- Scala\n- GDScript\n- Golang\n- Lua\n\nBy default lizard will search for any source code that it knows and mix\nall the results together. This might not be what you want. You can use\nthe \"-l\" option to select language(s).\n\nIt counts\n\n- the nloc (lines of code without comments),\n- CCN (cyclomatic complexity number),\n- token count of functions.\n- parameter count of functions.\n\nYou can set limitation for CCN (-C), the number of parameters (-a).\nFunctions that exceed these limitations will generate warnings. The exit\ncode of lizard will be none-Zero if there are warnings.\n\nThis tool actually calculates how complex the code 'looks' rather than\nhow complex the code really 'is'. People will need this tool because it's\noften very hard to get all the included folders and files right when\nthey are complicated. But we don't really need that kind of accuracy for\ncyclomatic complexity.\n\nIt requires python2.7 or above (early versions are not verified).\n\nInstallation\n------------\n\nlizard.py can be used as a stand alone Python script, most\nfunctionalities are there. You can always use it without any\ninstallation. To acquire all the functionalities of lizard, you will\nneed a proper install.\n\n::\n\n python lizard.py\n\nIf you want a proper install:\n\n::\n\n [sudo] pip install lizard\n\nOr if you've got the source:\n\n::\n\n [sudo] python setup.py install --install-dir=/path/to/installation/directory/\n\nUsage\n-----\n\n::\n\n lizard [options] [PATH or FILE] [PATH] ...\n\nRun for the code under current folder (recursively):\n\n::\n\n lizard\n\nExclude anything in the tests folder:\n\n::\n\n lizard mySource/ -x\"./tests/*\"\n\n\nOptions\n~~~~~~~\n\n::\n\n -h, --help show this help message and exit\n --version show program's version number and exit\n -l LANGUAGES, --languages LANGUAGES\n List the programming languages you want to analyze. if\n left empty, it'll search for all languages it knows.\n lizard -l cpp -l java\n searches for C++ and Java code.\n The available languages are: cpp, csharp, java,\n javascript, objectivec, php, python, ruby, swift, ttcn\n -V, --verbose Output in verbose mode (long function name)\n -C CCN, --CCN CCN Threshold for cyclomatic complexity number warning.\n The default value is 15. Functions with CCN bigger\n than it will generate warning\n -L LENGTH, --length LENGTH\n Threshold for maximum function length warning. The\n default value is 1000. Functions length bigger than it\n will generate warning\n -a ARGUMENTS, --arguments ARGUMENTS\n Limit for number of parameters\n -w, --warnings_only Show warnings only, using clang/gcc's warning format\n for printing warnings.\n http://clang.llvm.org/docs/UsersManual.html#cmdoption-\n fdiagnostics-format\n -i NUMBER, --ignore_warnings NUMBER\n If the number of warnings is equal or less than the\n number, the tool will exit normally, otherwise it will\n generate error. Useful in makefile for legacy code.\n -x EXCLUDE, --exclude EXCLUDE\n Exclude files that match this pattern. * matches\n everything, ? matches any single character,\n \"./folder/*\" exclude everything in the folder\n recursively. Multiple patterns can be specified. Don't\n forget to add \"\" around the pattern.\n --csv Generate CSV output as a transform of the default\n output\n -X, --xml Generate XML in cppncss style instead of the tabular\n output. Useful to generate report in Jenkins server\n -t WORKING_THREADS, --working_threads WORKING_THREADS\n number of working threads. The default value is 1.\n Using a bigger number can fully utilize the CPU and\n often faster.\n -m, --modified Calculate modified cyclomatic complexity number,\n which count a switch/case with multiple cases as\n one CCN.\n -E EXTENSIONS, --extension EXTENSIONS\n User the extensions. The available extensions are:\n -Ecpre: it will ignore code in the #else branch.\n -Ewordcount: count word frequencies and generate tag\n cloud. -Eoutside: include the global code as one\n function.\n -s SORTING, --sort SORTING\n Sort the warning with field. The field can be nloc,\n cyclomatic_complexity, token_count, parameter_count,\n etc. Or an customized file.\n -W WHITELIST, --whitelist WHITELIST\n The path and file name to the whitelist file. It's\n './whitelizard.txt' by default.\n\n\nExample use\n-----------\n\nAnalyze a folder recursively: lizard mahjong\\_game/src\n~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\n\n::\n\n ==============================================================\n NLOC CCN token param function@line@file\n --------------------------------------------------------------\n 10 2 29 2 start_new_player@26@./html_game.c\n ...\n 6 1 3 0 set_shutdown_flag@449@./httpd.c\n 24 3 61 1 server_main@454@./httpd.c\n --------------------------------------------------------------\n 2 file analyzed.\n ==============================================================\n LOC Avg.NLOC AvgCCN Avg.ttoken function_cnt file\n --------------------------------------------------------------\n 191 15 3 51 12 ./html_game.c\n 363 24 4 86 15 ./httpd.c\n\n ======================================\n !!!! Warnings (CCN > 15) !!!!\n ======================================\n 66 19 247 1 accept_request@64@./httpd.c\n =================================================================================\n Total NLOC Avg.NLOC Avg CCN Avg token Fun Cnt Warning cnt Fun Rt NLOC Rt\n --------------------------------------------------------------------------------\n 554 20 4.07 71.15 27 1 0.04 0.12\n\nWarnings only (in clang/gcc formation):lizard -w mahjong\\_game\n~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\n\n::\n\n ./src/html_ui/httpd.c:64: warning: accept_request has 19 CCN and 1 params (66 NLOC, 247 tokens)\n ./src/mahjong_game/mj_table.c:109: warning: mj_table_update_state has 20 CCN and 1 params (72 NLOC, 255 tokens)\n\n\nSet warning threshold for any field:lizard -T nloc=25\n~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\n\nThe option `-Tcyclomatic_complexity=10` is equal to `-C10`.\nThe option `-Tlength=10` is equal to `-L10`.\nThe option `-Tparameter_count=10` is equal to `-a10`.\n\nYou can also do `-Tnloc=10` to set the limit of the NLOC. Any function that\nhas NLOC greater than 10 will generate a warning.\n\nGenerated code\n-----------------------------\n\nLizard has a simple solution with generated code. Any code in a source file that is following\na comment containing \"GENERATED CODE\" will be ignored completely. The ignored code will not\ngenerate any data, except the file counting.\n\n\nCode Duplicate Detector\n-----------------------------\n\n::\n\n lizard -Eduplicate \n\n\nGenerate A Tag Cloud For Your Code\n----------------------------------\n\nYou can generate a \"Tag cloud\" of your code by the following command. It counts the identifiers in your code (ignoring the comments).\n\n::\n\n lizard -EWordCount \n\n\nUsing lizard as Python module\n-----------------------------\n\nYou can also use lizard as a Python module in your code:\n\n.. code:: python\n\n >>> import lizard\n >>> i = lizard.analyze_file(\"../cpputest/tests/AllTests.cpp\")\n >>> print i.__dict__\n {'nloc': 9, 'function_list': [], 'filename': '../cpputest/tests/AllTests.cpp'}\n >>> print i.function_list[0].__dict__\n {'cyclomatic_complexity': 1, 'token_count': 22, 'name': 'main', 'parameter_count': 2, 'nloc': 3, 'long_name': 'main( int ac , const char ** av )', 'start_line': 30}\n\nYou can also use source code string instead of file. But you need to\nprovide a file name (to identify the language).\n\n.. code:: python\n\n >>> i = lizard.analyze_file.analyze_source_code(\"AllTests.cpp\", \"int foo(){}\")\n\nWhitelist\n---------\n\nIf for some reason you would like to ignore the warnings, you can use\nthe whitelist. Add 'whitelizard.txt' to the current folder (or use -W to point to the whitelist file), then the\nfunctions defined in the file will be ignored. Please notice that if you assign the file pathname, it needs to\nbe exactly the same relative path as Lizard to find the file. An easy way to get the file pathname is to copy it from\nthe Lizard warning output.\nThis is an example whitelist:\n\n::\n\n #whitelizard.txt\n #The file name can only be whitelizard.txt and put it in the current folder.\n #You may have commented lines begin with #.\n function_name1, function_name2 # list function names in multiple lines or split with comma.\n file/path/name:function1, function2 # you can also specify the filename\n\nOptions in Comments\n-------------------\n\nYou can use options in the comments of the source code to change the\nbehavior of lizard. By putting \"#lizard forgives\" inside a function or\nbefore a function it will suppress the warning for that function.\n\n::\n\n int foo() {\n // #lizard forgives the complexity\n ...\n }\n\n\nLimitations\n-----------\n\nLizard requires syntactically correct code.\nUpon processing input with incorrect or unknown syntax:\n\n- Lizard guarantees to terminate eventually (i.e., no forever loops, hangs)\n without hard failures (e.g., exit, crash, exceptions).\n\n- There is a chance of a combination of the following soft failures:\n\n - omission\n - misinterpretation\n - improper analysis / tally\n - success (the code under consideration is not relevant, e.g., global macros in C)\n\nThis approach makes the Lizard implementation\nsimpler and more focused with partial parsers for various languages.\nDevelopers of Lizard attempt to minimize the possibility of soft failures.\nHard failures are bugs in Lizard code,\nwhile soft failures are trade-offs or potential bugs.\n\nIn addition to asserting the correct code,\nLizard may choose not to deal with some advanced or complicated language features:\n\n- C/C++ digraphs and trigraphs are not recognized.\n- C/C++ preprocessing or macro expansion is not performed.\n For example, using macro instead of parentheses (or partial statements in macros)\n can confuse Lizard's bracket stacks.\n- Some C++ complicated templates may cause confusion with matching angle brackets\n and processing less-than ``<`` or more-than ``>`` operators\n inside of template arguments.\n\n\nLiteratures Referring to Lizard\n-------------------------------\n\nLizard is often used in software related researches. If you used it to support your work, you may contact the lizard author to add your work in the following list.\n\n- Software Quality in the ATLAS experiment at CERN, which refers to Lizard as one of the tools, has been published in the Journal of Physics: http://iopscience.iop.org/article/10.1088/1742-6596/898/7/072011\n\n - S Martin-Haugh et al 2017 J. Phys.: Conf. Ser. 898 072011\n\nLizard is also used as a plugin for fastlane to help check code complexity and submit xml report to sonar.\n\n- [fastlane-plugin-lizard](https://github.com/liaogz82/fastlane-plugin-lizard)\n- [sonar](https://github.com/Backelite/sonar-swift/blob/develop/docs/sonarqube-fastlane.md)\n\n\n", "description_content_type": "", "docs_url": null, "download_url": "https://pypi.python.org/lizard/", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "http://www.lizard.ws", "keywords": "", "license": "MIT", "maintainer": "", "maintainer_email": "", "name": "lizard", "package_url": "https://pypi.org/project/lizard/", "platform": "any", "project_url": "https://pypi.org/project/lizard/", "project_urls": { "Download": "https://pypi.python.org/lizard/", "Homepage": "http://www.lizard.ws" }, "release_url": "https://pypi.org/project/lizard/1.16.6/", "requires_dist": null, "requires_python": "", "summary": "A code analyzer without caring the C/C++ header files. It works with Java, C/C++, JavaScript, Python, Ruby, Swift, Objective C. Metrics includes cyclomatic complexity number etc.", "version": "1.16.6" }, "last_serial": 5718410, "releases": { "0.0.1": [ { "comment_text": "", "digests": { "md5": "d468abb75e00470d47f833c199e29414", "sha256": "2fb7d6d9ecc075b138f27e92f47760bdbb138c54905cfd5359ca6a275ee77d3e" }, "downloads": -1, "filename": "lizard-0.0.1.tar.gz", "has_sig": false, "md5_digest": "d468abb75e00470d47f833c199e29414", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15299, "upload_time": "2013-09-16T12:44:57", "url": "https://files.pythonhosted.org/packages/06/e9/ca2976d6bc863823ff01197b22bcd3f7f7ed0aedfc475eb198e11c9e0d4e/lizard-0.0.1.tar.gz" } ], "0.0.2": [ { "comment_text": "", "digests": { "md5": "720ff5d78c0b9cc86a58c7cd8189a2e2", "sha256": "51d62e033dd3bac4f6067c18be5ef42dbcec94009fc018642cb14826e0751bd5" }, "downloads": -1, "filename": "lizard-0.0.2.tar.gz", "has_sig": false, "md5_digest": "720ff5d78c0b9cc86a58c7cd8189a2e2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 20333, "upload_time": "2014-01-31T16:17:07", "url": "https://files.pythonhosted.org/packages/c2/65/00db0eae9673afd02d88c9038625b3e640bf40814f3ed85d8f74d69df8cd/lizard-0.0.2.tar.gz" } ], "1.10.0": [ { "comment_text": "", "digests": { "md5": "c0b5e4a7aeb9e029d0adb53f23d28ddc", "sha256": "aa7b4cc8065db69fa995cb3c4f831761ca7295e59e9a1a29ce075eea0b209bef" }, "downloads": -1, "filename": "lizard-1.10.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "c0b5e4a7aeb9e029d0adb53f23d28ddc", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 41704, "upload_time": "2016-01-31T10:54:40", "url": "https://files.pythonhosted.org/packages/30/3f/9fe25eec037e2e2f61b03d0b762723afa8aebceb282537a82c5a162b2966/lizard-1.10.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "36b64f2b94a57f7d158a1750c03f46e5", "sha256": "f714ca2be353218b8b943f8e4313ad777a3f765480684ba7ee89c83f3303f947" }, "downloads": -1, "filename": "lizard-1.10.0.tar.gz", "has_sig": false, "md5_digest": "36b64f2b94a57f7d158a1750c03f46e5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 44655, "upload_time": "2016-01-31T10:54:31", "url": "https://files.pythonhosted.org/packages/58/10/593b3b12f5661e649a904b44b4d3d1dd6b97a1b04362e1c6ca1d1c7e77c3/lizard-1.10.0.tar.gz" } ], "1.10.1": [ { "comment_text": "", "digests": { "md5": "71b7159a8b68dd43d0620fa3d60e6d6f", "sha256": "1dd0252fdc9613417aea6027796cdd68501f48f339d5aae3796aa5f52e043e8e" }, "downloads": -1, "filename": "lizard-1.10.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "71b7159a8b68dd43d0620fa3d60e6d6f", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 41710, "upload_time": "2016-01-31T11:06:26", "url": "https://files.pythonhosted.org/packages/57/b2/96eb0634ead4c79f8bab6cb9620b522d67bdd0171d85104d50a95a86601d/lizard-1.10.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "fdd1aa35c0ac94268b7e723b09dcd1be", "sha256": "8bc297e11104acd74783e758bbd797db5a5350bd00a3fe880eb6bd62e25be03a" }, "downloads": -1, "filename": "lizard-1.10.1.tar.gz", "has_sig": false, "md5_digest": "fdd1aa35c0ac94268b7e723b09dcd1be", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 44667, "upload_time": "2016-01-31T11:06:20", "url": "https://files.pythonhosted.org/packages/8c/bb/c2d350dc2177cfac4a9fabc71702af31a0fce5d2e66a9e225901859faed4/lizard-1.10.1.tar.gz" } ], "1.10.2": [ { "comment_text": "", "digests": { "md5": "94a236152b52c8e16be6c7b1a19886de", "sha256": "3b3d0e6dde35ef1eb61c14e4c165b5e52d74aa6e9fd3b7dcd87b145dc6181fc8" }, "downloads": -1, "filename": "lizard-1.10.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "94a236152b52c8e16be6c7b1a19886de", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 50790, "upload_time": "2016-02-02T02:44:14", "url": "https://files.pythonhosted.org/packages/5e/a0/e4f75a1179342e6c767cf069665f097f31f0ccdb9ccccf28c109506e277d/lizard-1.10.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "bc2401668a4c09b80e1de0d4959eeff7", "sha256": "81d74a4ae245b68c06b85d40ea6b16587593350a421c82645dcd0e2a41295656" }, "downloads": -1, "filename": "lizard-1.10.2.tar.gz", "has_sig": false, "md5_digest": "bc2401668a4c09b80e1de0d4959eeff7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 44851, "upload_time": "2016-02-02T02:44:06", "url": "https://files.pythonhosted.org/packages/60/87/65185f886f728b974475b3bcd8f137934a4979a387a86891a2cfb6766311/lizard-1.10.2.tar.gz" } ], "1.10.3": [ { "comment_text": "", "digests": { "md5": "f0d01d55db0f0e76d82571623250e54c", "sha256": "dc3edb0425bfe538447b0ab96ad1ebf757dd7a6ad88d9cdca05ab3828ca255b9" }, "downloads": -1, "filename": "lizard-1.10.3-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "f0d01d55db0f0e76d82571623250e54c", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 51597, "upload_time": "2016-02-04T09:22:15", "url": "https://files.pythonhosted.org/packages/3e/d3/b22b98c1a71227ec80bf9c26c0e67ae8e136c7fe22370fa35fb11fe8d6ee/lizard-1.10.3-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "c83329c61873ab29c0cd128649354d4e", "sha256": "0877b473c4339f103e6f6853935afdc66f53eb87028df78b81cf8b496a46e4a9" }, "downloads": -1, "filename": "lizard-1.10.3.tar.gz", "has_sig": false, "md5_digest": "c83329c61873ab29c0cd128649354d4e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 45446, "upload_time": "2016-02-04T09:22:04", "url": "https://files.pythonhosted.org/packages/ed/f0/add64f27de9146c87a99d3b71f60f987759606fddc243f8a753e5aae0d04/lizard-1.10.3.tar.gz" } ], "1.10.4": [ { "comment_text": "", "digests": { "md5": "32c40744e98a7405d3fc580ff693041f", "sha256": "ac9dbd32ef0440d147dbbd1d624df88a93ac79b1ab633bce40122c40ef7a2ae4" }, "downloads": -1, "filename": "lizard-1.10.4-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "32c40744e98a7405d3fc580ff693041f", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 51718, "upload_time": "2016-02-10T03:17:25", "url": "https://files.pythonhosted.org/packages/b1/2b/f5787175340faee96aa1115d202a34000314e3246c328c415164930b0e89/lizard-1.10.4-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "0d49d74ed14a6e0df3e229aad85e7581", "sha256": "ac3bcc504ee8bb1327743c3f347ad5e4933b508b871008ef638c75a00b84903c" }, "downloads": -1, "filename": "lizard-1.10.4.tar.gz", "has_sig": false, "md5_digest": "0d49d74ed14a6e0df3e229aad85e7581", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 45429, "upload_time": "2016-02-10T03:17:20", "url": "https://files.pythonhosted.org/packages/08/93/0ae7c947c601b660172cb6da7f8a9d729a37218203cb7017f492128f6c87/lizard-1.10.4.tar.gz" } ], "1.10.5": [ { "comment_text": "", "digests": { "md5": "a8ff50699934664d4e51f20c0003f2d0", "sha256": "26d5785dda7e2c732c7cbfd83132c90bf76bfbfc63e5747f9ca95b016894c349" }, "downloads": -1, "filename": "lizard-1.10.5-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "a8ff50699934664d4e51f20c0003f2d0", "packagetype": "bdist_wheel", "python_version": "3.5", "requires_python": null, "size": 54279, "upload_time": "2016-03-13T15:32:01", "url": "https://files.pythonhosted.org/packages/71/a6/9a06b461f51542caf3ad647f24f58591898fea4bf52927dac45f68072cd2/lizard-1.10.5-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "a37687fc68e1f3cdf7cf9b63f23dd44e", "sha256": "c8ba8ea19025e249b8287072f5453da294c2d999ba8e0ba45bf8c6fd34ec0dc3" }, "downloads": -1, "filename": "lizard-1.10.5.tar.gz", "has_sig": false, "md5_digest": "a37687fc68e1f3cdf7cf9b63f23dd44e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 48464, "upload_time": "2016-03-13T15:31:47", "url": "https://files.pythonhosted.org/packages/21/27/510255be363613079f3fe4ce2a684cacc33184bedc67af038bee63390b19/lizard-1.10.5.tar.gz" } ], "1.11.0": [ { "comment_text": "", "digests": { "md5": "30abe4cd82b24c2fb94c9220e6a51c3a", "sha256": "1d83b800d873b6f94ffe9986309df5077f0961fa178cb568d7523b92e48c2307" }, "downloads": -1, "filename": "lizard-1.11.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "30abe4cd82b24c2fb94c9220e6a51c3a", "packagetype": "bdist_wheel", "python_version": "3.5", "requires_python": null, "size": 56158, "upload_time": "2016-03-25T10:23:35", "url": "https://files.pythonhosted.org/packages/04/61/1c3208bd294a211f9e83b210bf851d39db1a5ccb9e58104f268d65d6228d/lizard-1.11.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "9232485e173e839231358d8480666175", "sha256": "cabd781f789c384a6d44eb0d3af2f30858906c6af628f1b64e0cd41334916fbb" }, "downloads": -1, "filename": "lizard-1.11.0.tar.gz", "has_sig": false, "md5_digest": "9232485e173e839231358d8480666175", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 50955, "upload_time": "2016-03-25T10:23:23", "url": "https://files.pythonhosted.org/packages/ca/b4/58c4e55c437440ae1db9d3580c4304eba1e1baf68ed3a362392271a99c73/lizard-1.11.0.tar.gz" } ], "1.12.0": [ { "comment_text": "", "digests": { "md5": "bcb5d8f43f83eac7b588ffb295a27815", "sha256": "b6284ba715931924cc9137ea094d9ae46017d66180ec3e5fad2cf07e7d031c72" }, "downloads": -1, "filename": "lizard-1.12.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "bcb5d8f43f83eac7b588ffb295a27815", "packagetype": "bdist_wheel", "python_version": "3.5", "requires_python": null, "size": 57866, "upload_time": "2016-04-02T06:56:02", "url": "https://files.pythonhosted.org/packages/85/dc/b807128b2b901f19d4d428cb40aa2f629d759bd38e5b4857a390e152e930/lizard-1.12.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "469ca279465a6dd23e11d4ac9a0897de", "sha256": "9e02322c0ee4b3355adece220d17cfe54541573889615c2f4a0af41ea3467cfe" }, "downloads": -1, "filename": "lizard-1.12.0.tar.gz", "has_sig": false, "md5_digest": "469ca279465a6dd23e11d4ac9a0897de", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 44063, "upload_time": "2016-04-02T06:55:55", "url": "https://files.pythonhosted.org/packages/1a/dd/0368601c32e54896b4075e7742a823627aad60e4361f764bb87782f905cb/lizard-1.12.0.tar.gz" } ], "1.12.1": [ { "comment_text": "", "digests": { "md5": "c065cb9092eb18f5ca77eb8c9819da59", "sha256": "13f38cd0dff69c3a0a012bcb913ddcaad86a48c3c1d9347d7642f53d31c3676c" }, "downloads": -1, "filename": "lizard-1.12.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "c065cb9092eb18f5ca77eb8c9819da59", "packagetype": "bdist_wheel", "python_version": "3.5", "requires_python": null, "size": 62529, "upload_time": "2016-06-01T06:06:48", "url": "https://files.pythonhosted.org/packages/77/50/d17bd89f0de6757fa253e527fb73552227cd5585709e0d92478101b45722/lizard-1.12.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "f444f706edaad102dfa348bc55f7aa6d", "sha256": "1aab4ac58a9f934d25a061cdf0e694ebd8ce834081af98c578835363f8ca49e5" }, "downloads": -1, "filename": "lizard-1.12.1.tar.gz", "has_sig": false, "md5_digest": "f444f706edaad102dfa348bc55f7aa6d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 49490, "upload_time": "2016-06-01T06:06:42", "url": "https://files.pythonhosted.org/packages/bc/fa/8d4065a782c55d0a3b4bdb4b26e0b9f035877551c808486a95a4ab0bd601/lizard-1.12.1.tar.gz" } ], "1.12.10": [ { "comment_text": "", "digests": { "md5": "969d5313eeea44b236136cc791f765f7", "sha256": "95190be937b789f4a3f32f89ab43752256718f809ec9422cc9874c9802ecf817" }, "downloads": -1, "filename": "lizard-1.12.10.tar.gz", "has_sig": false, "md5_digest": "969d5313eeea44b236136cc791f765f7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 51931, "upload_time": "2017-04-20T01:16:22", "url": "https://files.pythonhosted.org/packages/2f/5c/c2a5cf3ccbac65bef80356a598c8ef31f736b5d900b2b104235067a73123/lizard-1.12.10.tar.gz" } ], "1.12.11": [ { "comment_text": "", "digests": { "md5": "9b3a32ac23dd3778d1b7c1197ebc214b", "sha256": "f2792de10869eb7b3dbb405ff75da73c575fea805f37244f4d22df593f11b398" }, "downloads": -1, "filename": "lizard-1.12.11.tar.gz", "has_sig": false, "md5_digest": "9b3a32ac23dd3778d1b7c1197ebc214b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 52875, "upload_time": "2017-06-04T13:24:20", "url": "https://files.pythonhosted.org/packages/4c/81/2383fc3cd3d9e4a675191dd2256f411b2644a0516ea763b8310f72a08484/lizard-1.12.11.tar.gz" } ], "1.12.12": [ { "comment_text": "", "digests": { "md5": "34fed73ed1927c746718b2166a7463a2", "sha256": "7f5e8c91d430206fde3951430d3a2bb00a81e800b865ab12cf7b2ed768d1bd0b" }, "downloads": -1, "filename": "lizard-1.12.12.tar.gz", "has_sig": false, "md5_digest": "34fed73ed1927c746718b2166a7463a2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 52909, "upload_time": "2017-07-26T02:06:58", "url": "https://files.pythonhosted.org/packages/6f/4d/e9e9239b04db9411fd66bd1fe0fcb9a7e68cebc63edd792f68053b770f3e/lizard-1.12.12.tar.gz" } ], "1.12.13": [ { "comment_text": "", "digests": { "md5": "a1e3bfae7894c6cdabf7353bd54d5fab", "sha256": "92482d3d13770a68bdebfc633de1c175c2131084a576a622f8079dae2d3fe110" }, "downloads": -1, "filename": "lizard-1.12.13.tar.gz", "has_sig": false, "md5_digest": "a1e3bfae7894c6cdabf7353bd54d5fab", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 52928, "upload_time": "2017-08-20T22:12:05", "url": "https://files.pythonhosted.org/packages/f8/bb/6aaa276cd1af4a4daf3c21fa6c4fcac545f7c72139ce3f2d182ab109418b/lizard-1.12.13.tar.gz" } ], "1.12.14": [ { "comment_text": "", "digests": { "md5": "a752949e15c672ccef42041604f443d6", "sha256": "bcc1a559595c7d9dc120e3d1f1984f014cdb8cfebf360a9f8c320f6c4ad78549" }, "downloads": -1, "filename": "lizard-1.12.14.tar.gz", "has_sig": false, "md5_digest": "a752949e15c672ccef42041604f443d6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 52919, "upload_time": "2017-08-22T01:57:09", "url": "https://files.pythonhosted.org/packages/81/6e/3dda6eff0fae8268aee600e0a65264c8e271206d02aad077a6da98805637/lizard-1.12.14.tar.gz" } ], "1.12.15": [ { "comment_text": "", "digests": { "md5": "9cd62d13157dc8dd9358261bef0b23cc", "sha256": "260fbec1222ab59be3e953e38e734628e43ebe2cd9cf0c388298cb1f7b74570e" }, "downloads": -1, "filename": "lizard-1.12.15-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "9cd62d13157dc8dd9358261bef0b23cc", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 55574, "upload_time": "2017-11-29T02:15:39", "url": "https://files.pythonhosted.org/packages/c3/e9/e39b4f3344bedefcdc65be05c958d27454402830242180ea6cca6e6243fd/lizard-1.12.15-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "30382ab4a8b8ef2bf0fcc429c2495245", "sha256": "76dbe1292dbb28c0ea81954e038676eea019589a8f86fc0d8c975f4659a325de" }, "downloads": -1, "filename": "lizard-1.12.15.tar.gz", "has_sig": false, "md5_digest": "30382ab4a8b8ef2bf0fcc429c2495245", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 52960, "upload_time": "2017-08-23T09:41:50", "url": "https://files.pythonhosted.org/packages/27/e1/7f425cc2c016787454bf85a0d9757fa867cd0afe08e1713d9dc1f660675c/lizard-1.12.15.tar.gz" } ], "1.12.2": [ { "comment_text": "", "digests": { "md5": "fdbd84d956bede8650bb7ad26ef13478", "sha256": "ffe8505b6cfdcc5f20098c91b9fcf4f6f9268fa2a9fb97adec52c14e374209a4" }, "downloads": -1, "filename": "lizard-1.12.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "fdbd84d956bede8650bb7ad26ef13478", "packagetype": "bdist_wheel", "python_version": "3.5", "requires_python": null, "size": 62529, "upload_time": "2016-06-01T06:09:22", "url": "https://files.pythonhosted.org/packages/ca/2e/cac3bae148a799571e00492dc8056ae284a79ef8442e51eb78104ee89ae0/lizard-1.12.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "648ff1c8aeaf91d51c79d5e45ea912a4", "sha256": "78f49b2b50affcf99cb0516a11458ae978d4c51c84dd8a8cc6b011909643a7ef" }, "downloads": -1, "filename": "lizard-1.12.2.tar.gz", "has_sig": false, "md5_digest": "648ff1c8aeaf91d51c79d5e45ea912a4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 49481, "upload_time": "2016-06-01T06:09:16", "url": "https://files.pythonhosted.org/packages/88/48/9ab1e7307c71d88c1660838795dbb4f646cc9f223f50b064fa616e92dca2/lizard-1.12.2.tar.gz" } ], "1.12.3": [ { "comment_text": "", "digests": { "md5": "52a6969c5fcf2a4d182504da7d918264", "sha256": "65a5c33ca4dc1e33788589d1c16c98d2be73e0c4c6ee3fb373a391a440b3f69a" }, "downloads": -1, "filename": "lizard-1.12.3.tar.gz", "has_sig": false, "md5_digest": "52a6969c5fcf2a4d182504da7d918264", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 49450, "upload_time": "2016-06-08T03:14:14", "url": "https://files.pythonhosted.org/packages/e5/38/e0602398d136b7b70a5e06e6702e2b9ff8f9100803a61c6f5fca4e6b7da7/lizard-1.12.3.tar.gz" } ], "1.12.4": [ { "comment_text": "", "digests": { "md5": "ecdae3b52c71365bb966231022e0e646", "sha256": "b488e12386f629d16ba37b6cfb2ccdad370f19e375dd9920f644c15a934d4146" }, "downloads": -1, "filename": "lizard-1.12.4-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "ecdae3b52c71365bb966231022e0e646", "packagetype": "bdist_wheel", "python_version": "3.5", "requires_python": null, "size": 63165, "upload_time": "2016-06-08T03:17:19", "url": "https://files.pythonhosted.org/packages/09/6e/e86a5035be72c73b48961b112df39397a770726b898bafb7a918279884b9/lizard-1.12.4-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "8688bdae83b7e4a568cdc4037623bdea", "sha256": "129537a98639c79eb5c6281245dc52c625ec773ddc6efa9bdfdc8db3d49f7d16" }, "downloads": -1, "filename": "lizard-1.12.4.tar.gz", "has_sig": false, "md5_digest": "8688bdae83b7e4a568cdc4037623bdea", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 49446, "upload_time": "2016-06-08T03:17:14", "url": "https://files.pythonhosted.org/packages/22/41/2ed73bf6dee84d320b93cae6c79e5b7683c18ee54bd851baf38232c0be87/lizard-1.12.4.tar.gz" } ], "1.12.5": [ { "comment_text": "", "digests": { "md5": "9b4a89845d96f5044486d4b91e2316a0", "sha256": "e0689edb46043a2e52f1422dba283e12cad7f5f05aaa779dc4e1c2145ccf950e" }, "downloads": -1, "filename": "lizard-1.12.5-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "9b4a89845d96f5044486d4b91e2316a0", "packagetype": "bdist_wheel", "python_version": "3.5", "requires_python": null, "size": 64424, "upload_time": "2016-06-22T01:58:01", "url": "https://files.pythonhosted.org/packages/6b/66/b3797a6c8088fcea01afe93ab8fececc3b8e4284358bd645c99bc15cf669/lizard-1.12.5-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "93d5b96da0e6c3152901baf4fc2c95d9", "sha256": "9f4d91310549207665713579f8a50a0238b0ea7a8ee075635ff38637cd28ef85" }, "downloads": -1, "filename": "lizard-1.12.5.tar.gz", "has_sig": false, "md5_digest": "93d5b96da0e6c3152901baf4fc2c95d9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 49450, "upload_time": "2016-06-22T01:57:57", "url": "https://files.pythonhosted.org/packages/8c/ca/a690ba223ce974a0a329a6ba38d5fa915afa6c5a1510a7b6214192e2a93e/lizard-1.12.5.tar.gz" } ], "1.12.6": [ { "comment_text": "", "digests": { "md5": "c2750f4f9f609e31efdcbd6c2a8e0592", "sha256": "a872ca0249612c717c60836b5ab480cd9f1947d1e74c2843e599f8663da9ca9b" }, "downloads": -1, "filename": "lizard-1.12.6.tar.gz", "has_sig": false, "md5_digest": "c2750f4f9f609e31efdcbd6c2a8e0592", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 49773, "upload_time": "2016-06-24T14:17:58", "url": "https://files.pythonhosted.org/packages/0f/b1/5aa519310a5b9761627bfd740d8f511b0d76f4b495667bb4d2cc4b72cdfd/lizard-1.12.6.tar.gz" } ], "1.12.7": [ { "comment_text": "", "digests": { "md5": "67303bd8418e14c32d85844846473322", "sha256": "2d2d5addcb6532b14c7fafbc859a3c3252e0f19c8a60fdcd9a6eedaa078f9a32" }, "downloads": -1, "filename": "lizard-1.12.7.tar.gz", "has_sig": false, "md5_digest": "67303bd8418e14c32d85844846473322", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 51804, "upload_time": "2016-11-01T14:12:32", "url": "https://files.pythonhosted.org/packages/06/09/e9eef2c658b08cb8c46b3b5ecaa9d9d5294660fc992d1c13e1393eb92b55/lizard-1.12.7.tar.gz" } ], "1.12.8": [ { "comment_text": "", "digests": { "md5": "9d105588da251f03b094b3eb93a39495", "sha256": "d6acdd297e704c3bdde168eaf69e72c2a3751abc31bf8149d95894dccb0a57b1" }, "downloads": -1, "filename": "lizard-1.12.8.tar.gz", "has_sig": false, "md5_digest": "9d105588da251f03b094b3eb93a39495", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 51415, "upload_time": "2017-01-30T07:26:05", "url": "https://files.pythonhosted.org/packages/8a/d8/65b24780e1c0e9a29eb5078b71a9ff4bb0c0f2ff9778c40dcd20c2d1ad3b/lizard-1.12.8.tar.gz" } ], "1.12.9": [ { "comment_text": "", "digests": { "md5": "5ce4cd87346c4dcdfd6a7830446a5307", "sha256": "79bed1cef72e6e12c8738f934325ed6ab17332e7a971b199a50bc5fe36a62907" }, "downloads": -1, "filename": "lizard-1.12.9.tar.gz", "has_sig": false, "md5_digest": "5ce4cd87346c4dcdfd6a7830446a5307", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 51451, "upload_time": "2017-02-05T02:18:11", "url": "https://files.pythonhosted.org/packages/80/25/8e2a286b1d097d4bfd7a23cf8b3f636fea49820fcf123909d4fe4d8dc776/lizard-1.12.9.tar.gz" } ], "1.13.0": [ { "comment_text": "", "digests": { "md5": "4fa726bdfe300849b4f15a14cb26348c", "sha256": "73410aa7a571008bc5bf9d3e2322f3a651e60f1fd40504046599e1864e35ef2b" }, "downloads": -1, "filename": "lizard-1.13.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "4fa726bdfe300849b4f15a14cb26348c", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 55824, "upload_time": "2017-11-29T02:36:01", "url": "https://files.pythonhosted.org/packages/3c/22/af5d171dc74aff503347130245076c8a993a108f670ada91cacc954c82a0/lizard-1.13.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "a85f2f475a574e1709dc1cd45b731f9b", "sha256": "913ccac843cfcf2b3d2bd8c63fc70356eff7b16f3af463e158480efd49e4edfa" }, "downloads": -1, "filename": "lizard-1.13.0.tar.gz", "has_sig": false, "md5_digest": "a85f2f475a574e1709dc1cd45b731f9b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 58283, "upload_time": "2017-11-29T02:36:03", "url": "https://files.pythonhosted.org/packages/fa/79/a0f0a50b66ece14dde4efb7aac84e0e0a6a0f5b11be165d7b78cf08daac0/lizard-1.13.0.tar.gz" } ], "1.14.0": [ { "comment_text": "", "digests": { "md5": "a5de1e35f0265fb7b183f26794db6c57", "sha256": "0602d1aeff347f299cb038fd98523c4aeb200650d5da03a73dc8ba68101deaf3" }, "downloads": -1, "filename": "lizard-1.14.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "a5de1e35f0265fb7b183f26794db6c57", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 56331, "upload_time": "2018-03-14T09:16:24", "url": "https://files.pythonhosted.org/packages/85/d4/e7f235b1e710ef17137c38fec2392947fa60f61709644b135c7f1c1e9345/lizard-1.14.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "707fae74d22aa31cb71bddb6d7ce0dc6", "sha256": "43e47e9a8becbcf3910a61f8287c144802c97b784afb6db62ca2cfc22fa3e87e" }, "downloads": -1, "filename": "lizard-1.14.0.tar.gz", "has_sig": false, "md5_digest": "707fae74d22aa31cb71bddb6d7ce0dc6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 58496, "upload_time": "2018-03-14T09:16:27", "url": "https://files.pythonhosted.org/packages/4f/82/dae660317215f2ae9d7149137cad24fbc0b900546d154d2671a903929252/lizard-1.14.0.tar.gz" } ], "1.14.1": [ { "comment_text": "", "digests": { "md5": "43a6e6408438e1a967a2a19a7c1a4587", "sha256": "474d7fc44e8628bc811fe3c9430e93af9fbc24206b6a64ff1e09e4c28b07ecf4" }, "downloads": -1, "filename": "lizard-1.14.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "43a6e6408438e1a967a2a19a7c1a4587", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 56335, "upload_time": "2018-03-15T06:54:53", "url": "https://files.pythonhosted.org/packages/2e/75/372a9892ac82178165533690d0a38344cb0b1932e0e25e7cedb415024aeb/lizard-1.14.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "711f80ac07ac925fd13975eae7d62493", "sha256": "6506db38c9607ec8cef728ff7ce496003a4176af79e5cc739c96bbd6a89451c4" }, "downloads": -1, "filename": "lizard-1.14.1.tar.gz", "has_sig": false, "md5_digest": "711f80ac07ac925fd13975eae7d62493", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 58501, "upload_time": "2018-03-15T06:54:55", "url": "https://files.pythonhosted.org/packages/90/ad/6b93900fed2c0cf6e32c958230af120918a74e14d83aa958bae27e1905c2/lizard-1.14.1.tar.gz" } ], "1.14.10": [ { "comment_text": "", "digests": { "md5": "45c66e91782be1c51b568197084f2c52", "sha256": "413af74538f7895b9467747d781f06ec395e1278b55317ceee63bbbf1de33900" }, "downloads": -1, "filename": "lizard-1.14.10-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "45c66e91782be1c51b568197084f2c52", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 57665, "upload_time": "2018-03-21T07:45:41", "url": "https://files.pythonhosted.org/packages/25/78/4fad2f578ce5b42f9f635a27f81d1332183e9f14b506a158e298ec759f03/lizard-1.14.10-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "d49cdb94ca25df76fa49ef38804305f0", "sha256": "82943d39882cf5de0eb5436389943b447fd55861741e35cae9916259dd01d837" }, "downloads": -1, "filename": "lizard-1.14.10.tar.gz", "has_sig": false, "md5_digest": "d49cdb94ca25df76fa49ef38804305f0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 59527, "upload_time": "2018-03-21T07:45:43", "url": "https://files.pythonhosted.org/packages/59/60/5e4be1eaa0a7439d5fa2b841981c41b866d23f74bad4bdcf3d906f5aa825/lizard-1.14.10.tar.gz" } ], "1.14.2": [ { "comment_text": "", "digests": { "md5": "0a06b4285a931c2d41dfb655b175cdc1", "sha256": "b6224992cb7307abedd4805aaef8f4e6764a1e3601e45b7c0305ff05362bd753" }, "downloads": -1, "filename": "lizard-1.14.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "0a06b4285a931c2d41dfb655b175cdc1", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 56362, "upload_time": "2018-03-16T04:07:03", "url": "https://files.pythonhosted.org/packages/51/c5/564b9b59edfc2fcf467e190ae542c163ee83f28b23f9be6d3f2a44e1d08b/lizard-1.14.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "fa12564df75a2b75789fb53a70a9623c", "sha256": "734d47ff2b2917281e74a9a502dd92f4a70ad9eabb7e2232464543251d9c47ac" }, "downloads": -1, "filename": "lizard-1.14.2.tar.gz", "has_sig": false, "md5_digest": "fa12564df75a2b75789fb53a70a9623c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 58526, "upload_time": "2018-03-16T04:07:06", "url": "https://files.pythonhosted.org/packages/45/85/3d58d2370a5b3b143b64ccf22cb4c21032d5bd81aa4295fb82f3cfe863d7/lizard-1.14.2.tar.gz" } ], "1.14.4": [ { "comment_text": "", "digests": { "md5": "c3cc0c26bd5042fd07fa9a7d15a0145a", "sha256": "199d3e8c71496d0e8da9358f6358d9f238094013c35904005b4e4cd379fce9cf" }, "downloads": -1, "filename": "lizard-1.14.4-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "c3cc0c26bd5042fd07fa9a7d15a0145a", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 56448, "upload_time": "2018-03-16T07:04:53", "url": "https://files.pythonhosted.org/packages/8d/ef/be6797bd163134a2637a4982c6b44d372d2e8ed0d446f84fd93a54d0db59/lizard-1.14.4-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "b67c8bc1f1b10450f43cdafecb40de17", "sha256": "9da536fb6500ace75f7c24e3a6c916180edf29b2cefc0a57f7230242e8fe50fe" }, "downloads": -1, "filename": "lizard-1.14.4.tar.gz", "has_sig": false, "md5_digest": "b67c8bc1f1b10450f43cdafecb40de17", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 58579, "upload_time": "2018-03-16T07:04:56", "url": "https://files.pythonhosted.org/packages/b9/72/3f3b7795824574129393af97795ddc9619e7b74ea883e2e96969ddf477d6/lizard-1.14.4.tar.gz" } ], "1.14.5": [ { "comment_text": "", "digests": { "md5": "e1398b87f5947202f40b35914accf8c6", "sha256": "1b28dfe56ce8e2c54dec186566aa0bd0d9fb4fead0b05e47971954f9d0d02a30" }, "downloads": -1, "filename": "lizard-1.14.5-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "e1398b87f5947202f40b35914accf8c6", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 56446, "upload_time": "2018-03-17T00:27:25", "url": "https://files.pythonhosted.org/packages/7f/02/07cd274eeb99937c89c7fbd5db01fecca626c55c4e664ac8190b77db967e/lizard-1.14.5-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "6f5428b079178bdc7fe736a5dca9089e", "sha256": "366c50d8192e61bd1b5b2389b81b7a1e99ec271fbc4953d8bfef77f662f37cfe" }, "downloads": -1, "filename": "lizard-1.14.5.tar.gz", "has_sig": false, "md5_digest": "6f5428b079178bdc7fe736a5dca9089e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 58608, "upload_time": "2018-03-17T00:27:27", "url": "https://files.pythonhosted.org/packages/11/01/f8f03ed1fda11fac4a293b77017424e629fa8146f77bac52b0d9c08a5cab/lizard-1.14.5.tar.gz" } ], "1.14.6": [ { "comment_text": "", "digests": { "md5": "7e09d86d947b7c933dec63e45a5f026c", "sha256": "b13afcfa1d73e5965bb7bf69872ab2734735f6a609bbc87445d797bff9daab22" }, "downloads": -1, "filename": "lizard-1.14.6-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "7e09d86d947b7c933dec63e45a5f026c", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 57596, "upload_time": "2018-03-20T01:49:18", "url": "https://files.pythonhosted.org/packages/14/54/5e79b9a8d0ced028a57a8a77bdf027b4fa019e0e113683cba1157aa8aebf/lizard-1.14.6-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "e49e175e7ee91a4caa9a3ea09b4a569e", "sha256": "5d6718491e2b6cf6b56bcd26bb29dfa46ebd07192b5055ec2e2bc595d1f8f60f" }, "downloads": -1, "filename": "lizard-1.14.6.tar.gz", "has_sig": false, "md5_digest": "e49e175e7ee91a4caa9a3ea09b4a569e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 59411, "upload_time": "2018-03-20T01:49:20", "url": "https://files.pythonhosted.org/packages/f0/b9/d5df475711f8af1c6bbdca49ad38647aa7064ff445ff33bcec78074bda1f/lizard-1.14.6.tar.gz" } ], "1.14.7": [ { "comment_text": "", "digests": { "md5": "aa0e29cb8a418b0e3520507dd89dbf6d", "sha256": "7dbf010e005082b540c14e15fae241f1962cd3cd3da6edd1bb376a646015533b" }, "downloads": -1, "filename": "lizard-1.14.7-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "aa0e29cb8a418b0e3520507dd89dbf6d", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 57625, "upload_time": "2018-03-20T02:29:00", "url": "https://files.pythonhosted.org/packages/09/f6/f9992b38192839e38c19a035b8062f02056dce0637b2e429f5771d9fcf00/lizard-1.14.7-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "6db095d61aa5c3225e75a66cd4ee6682", "sha256": "9084b57f518cad4cd5b5b915936961bf9bf132e8a28dc1c572d11cec83ec3311" }, "downloads": -1, "filename": "lizard-1.14.7.tar.gz", "has_sig": false, "md5_digest": "6db095d61aa5c3225e75a66cd4ee6682", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 59439, "upload_time": "2018-03-20T02:29:03", "url": "https://files.pythonhosted.org/packages/29/52/768855e800ee6249658bb869ba2ed6c816198a314c4b106638bce4899588/lizard-1.14.7.tar.gz" } ], "1.14.8": [ { "comment_text": "", "digests": { "md5": "56e64dab1c20c6ce1bf062d1633b4a6b", "sha256": "184ad8b4dea250e1c98607409b95fb1c2986b9c78bac468930fb0b67189c86fe" }, "downloads": -1, "filename": "lizard-1.14.8-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "56e64dab1c20c6ce1bf062d1633b4a6b", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 57629, "upload_time": "2018-03-20T02:30:17", "url": "https://files.pythonhosted.org/packages/a4/79/ace343b0bff77e24588edbd73c4593c8f92c4229c095d7c46c4ca039eaff/lizard-1.14.8-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "3043e2a0b5c6ddb95458ea885de478e9", "sha256": "195b48608b590c33423c465e8bcd40a9d48573d40d52183a1b1f5214a0d52b46" }, "downloads": -1, "filename": "lizard-1.14.8.tar.gz", "has_sig": false, "md5_digest": "3043e2a0b5c6ddb95458ea885de478e9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 59441, "upload_time": "2018-03-20T02:30:19", "url": "https://files.pythonhosted.org/packages/f5/ca/c8e618faaf76f5de35fbd234dd534bba6d14c386ca1bdafb07413c0a0388/lizard-1.14.8.tar.gz" } ], "1.14.9": [ { "comment_text": "", "digests": { "md5": "b4a943ef081ef2c13645640a7111b5ad", "sha256": "52148b6b71235a0e8bf0b6f5a0bd18db8ad2d5b9915d6070091fcb49cfacabde" }, "downloads": -1, "filename": "lizard-1.14.9-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "b4a943ef081ef2c13645640a7111b5ad", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 57637, "upload_time": "2018-03-21T03:08:29", "url": "https://files.pythonhosted.org/packages/14/64/29f778ade697b6bd85da4f0f12d8dd4aa5b098db96fcb74073a422abca6e/lizard-1.14.9-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "9edb0e561249b5af3e07af3f8160e6dc", "sha256": "adf4c676ba7180f425e5af7070a084dd28ad568e4dabe6529be55021901a5f90" }, "downloads": -1, "filename": "lizard-1.14.9.tar.gz", "has_sig": false, "md5_digest": "9edb0e561249b5af3e07af3f8160e6dc", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 59514, "upload_time": "2018-03-21T03:08:32", "url": "https://files.pythonhosted.org/packages/47/4e/d2c86de30692ed03c70e59f112b795864ca97ebe248a63e2936f4d0b1276/lizard-1.14.9.tar.gz" } ], "1.15.1": [ { "comment_text": "", "digests": { "md5": "9d218fcfd8aef828d6f45edf2473879a", "sha256": "ab86adbcd496e8f0ab4582d54c4a944bafe39440e17f2e52e918586252f90e0b" }, "downloads": -1, "filename": "lizard-1.15.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "9d218fcfd8aef828d6f45edf2473879a", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 53900, "upload_time": "2018-05-29T12:50:06", "url": "https://files.pythonhosted.org/packages/dc/c0/efb952625cb5fa05dfe131fc25656336a78939042889a816d412a0c6170f/lizard-1.15.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "4141758df380054454e95be504da1073", "sha256": "e825125eb3372cf970a8020be48ee6a105ebc0847c665e5e009b2653e852591e" }, "downloads": -1, "filename": "lizard-1.15.1.tar.gz", "has_sig": false, "md5_digest": "4141758df380054454e95be504da1073", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 61130, "upload_time": "2018-05-29T12:50:08", "url": "https://files.pythonhosted.org/packages/e4/a5/0b866d92ec64b6c6917cc542a2290cc35c95207809693585bb167a586302/lizard-1.15.1.tar.gz" } ], "1.15.2": [ { "comment_text": "", "digests": { "md5": "bf9616359c94527739c32dc9f401fb37", "sha256": "57adc6f856ad5799fc239c89577059ccf9c139df5d0bf0770c9a484dbd6bb554" }, "downloads": -1, "filename": "lizard-1.15.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "bf9616359c94527739c32dc9f401fb37", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 54270, "upload_time": "2018-05-31T02:05:27", "url": "https://files.pythonhosted.org/packages/03/59/b0dd7ba29fcc4694d852aff079c206e84a6f4844a458ff0407b016f80e0b/lizard-1.15.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "7d9b06ec259a95412dfcf8e699018a2f", "sha256": "364925481f22c5fd6077ffd99adba876f22d2eac98421ca5de9f616e7db20b6e" }, "downloads": -1, "filename": "lizard-1.15.2.tar.gz", "has_sig": false, "md5_digest": "7d9b06ec259a95412dfcf8e699018a2f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 61718, "upload_time": "2018-05-31T02:05:29", "url": "https://files.pythonhosted.org/packages/6f/93/4de01152bee75236e96fc92ca95b131b9b687229df2bd6a31a316c795613/lizard-1.15.2.tar.gz" } ], "1.15.3": [ { "comment_text": "", "digests": { "md5": "2fe65c1dd584b42a909d6fb288529b6d", "sha256": "9e04a26075f6f4ad73dc7ffcf55ee5f907558ac8d37981f8a2e1c4d8b22ac890" }, "downloads": -1, "filename": "lizard-1.15.3-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "2fe65c1dd584b42a909d6fb288529b6d", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 55183, "upload_time": "2018-07-22T22:08:05", "url": "https://files.pythonhosted.org/packages/aa/b0/e4db6cedc0184f7967dfb2412606f48248a85ab98384499fda9dbe48a9a4/lizard-1.15.3-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "841f9e6dc1d8793e1c939cadfc8694b9", "sha256": "a7aaf3adce26fb7778d893f8fad2d76b95dabfc23638f77757caf76a344f4b64" }, "downloads": -1, "filename": "lizard-1.15.3.tar.gz", "has_sig": false, "md5_digest": "841f9e6dc1d8793e1c939cadfc8694b9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 61377, "upload_time": "2018-07-22T22:08:07", "url": "https://files.pythonhosted.org/packages/60/b9/537dff1d54d6f166a9c192895e674317c7326daf2463090c2adbd3897185/lizard-1.15.3.tar.gz" } ], "1.15.5": [ { "comment_text": "", "digests": { "md5": "fd806bcfcabd93ceff649dc28deb0bf5", "sha256": "f02cc6943dc438becf3248bcfd143c44c64b0b77cf1e31be326b5e968866ff59" }, "downloads": -1, "filename": "lizard-1.15.5-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "fd806bcfcabd93ceff649dc28deb0bf5", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 55187, "upload_time": "2018-07-23T04:02:52", "url": "https://files.pythonhosted.org/packages/af/89/e241655a5a58f25020b30a5357ae096160b801f65a5abeaab98c0d08dc31/lizard-1.15.5-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "17fae7ca9c24dd47d88d8b771e993e52", "sha256": "05af52f5ad98313361c54bbc304a7df80dd08b0c4e0cf01caad9647416c5d2b3" }, "downloads": -1, "filename": "lizard-1.15.5.tar.gz", "has_sig": false, "md5_digest": "17fae7ca9c24dd47d88d8b771e993e52", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 61400, "upload_time": "2018-07-23T04:02:53", "url": "https://files.pythonhosted.org/packages/83/a4/ab6e8dcbdc767a377653cb5fc8933a7ceed58028264eaf69d003c6b0ebac/lizard-1.15.5.tar.gz" } ], "1.15.6": [ { "comment_text": "", "digests": { "md5": "f1103d8f2ae10961c447a34e4c9e237e", "sha256": "7694b08c67694c98ecf7953f3c5ec3bf5f086acaa51e20167b9816ee4c3ee839" }, "downloads": -1, "filename": "lizard-1.15.6-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "f1103d8f2ae10961c447a34e4c9e237e", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 55189, "upload_time": "2018-07-25T22:47:02", "url": "https://files.pythonhosted.org/packages/89/f2/fe8cf6585335df958da5c8d2ecff6ea44de393a2b0c7bee558f1d8232311/lizard-1.15.6-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "61417b91b6bab10809d7a7bd122c47ab", "sha256": "07f9a1ebf0a7bf0a9fbb6c1a5106974f4adb825c1ca313fd223eaac51455b2a7" }, "downloads": -1, "filename": "lizard-1.15.6.tar.gz", "has_sig": false, "md5_digest": "61417b91b6bab10809d7a7bd122c47ab", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 61422, "upload_time": "2018-07-25T22:47:05", "url": "https://files.pythonhosted.org/packages/39/95/d465f5674ec851f05b7ca689d9c9da88fb02123f73d8cdcf431ad959a8fe/lizard-1.15.6.tar.gz" } ], "1.15.7": [ { "comment_text": "", "digests": { "md5": "c216be4a509042585a80de6609f20010", "sha256": "16cee6970313bbdbd54e231d8d3fda59aef544326f766bf8e4b0f935353f1364" }, "downloads": -1, "filename": "lizard-1.15.7-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "c216be4a509042585a80de6609f20010", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 55270, "upload_time": "2019-01-09T08:45:43", "url": "https://files.pythonhosted.org/packages/d8/42/b5e84c18d794dd79b6350f8db6227593c57962d0f960e519d9cefc9914a5/lizard-1.15.7-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "1def7a9c5c6271eac3da994c0462239b", "sha256": "f60865e328cec28a326c3079c92992c8eeadac7f6af70dfcce1670a59da2ddd8" }, "downloads": -1, "filename": "lizard-1.15.7.tar.gz", "has_sig": false, "md5_digest": "1def7a9c5c6271eac3da994c0462239b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 61461, "upload_time": "2019-01-09T08:45:46", "url": "https://files.pythonhosted.org/packages/25/57/c181ebd207d5008d96327640701e618ef09d9e348602e0b239471b38170b/lizard-1.15.7.tar.gz" } ], "1.16.1": [ { "comment_text": "", "digests": { "md5": "ed874d03c83f4cbb6cd4736f58469025", "sha256": "da7bf6a6acb904bea4938fd85c3816e10026c1df7ca085fb3aa3d0c30f70401f" }, "downloads": -1, "filename": "lizard-1.16.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "ed874d03c83f4cbb6cd4736f58469025", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 56366, "upload_time": "2019-02-09T09:37:38", "url": "https://files.pythonhosted.org/packages/2c/70/483675644e36983232a4f71eff928d058c2798bdd8eb9b2b4e335c40fc3a/lizard-1.16.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "6a8a2fc7307c9dc0e769500e79d4f96f", "sha256": "871852a0bf5da9b48e10f2fb450da2474de41211f981bd3d33a93db8da3d13f6" }, "downloads": -1, "filename": "lizard-1.16.1.tar.gz", "has_sig": false, "md5_digest": "6a8a2fc7307c9dc0e769500e79d4f96f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 62116, "upload_time": "2019-02-09T09:37:41", "url": "https://files.pythonhosted.org/packages/63/bd/b33a191871fc39d3f223f0c1d5059a9b08e2726743aad891167f41eae943/lizard-1.16.1.tar.gz" } ], "1.16.2": [ { "comment_text": "", "digests": { "md5": "210fa83f8b4e4652a20854fce17cf0f6", "sha256": "80fd400a1137fecbcdac001c3fa64fdfe558d434e2c04552dab9bb6f5bd73c69" }, "downloads": -1, "filename": "lizard-1.16.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "210fa83f8b4e4652a20854fce17cf0f6", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 55380, "upload_time": "2019-02-11T12:36:12", "url": "https://files.pythonhosted.org/packages/0c/36/74505b8f785b2ea3375e1917be729eeb97e9fbefe8db78dc57aaab858b63/lizard-1.16.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "483e6e37df96e3eaa5081d46a022f3f9", "sha256": "5a111de58a5328ab1db3f872d41ee3925c80b03b5e05b169c97066f91e0b11f9" }, "downloads": -1, "filename": "lizard-1.16.2.tar.gz", "has_sig": false, "md5_digest": "483e6e37df96e3eaa5081d46a022f3f9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 61691, "upload_time": "2019-02-11T12:36:15", "url": "https://files.pythonhosted.org/packages/ce/c5/59a6123dd874e84436967b6bc8ed8c38f4ec2732459c813f073e7b6e03e5/lizard-1.16.2.tar.gz" } ], "1.16.3": [ { "comment_text": "", "digests": { "md5": "76d943482b2a19f8a699a8becc0753eb", "sha256": "8aefe51d1761845379830a1e5679fb84be9f71dd8f362296a359db12b4a9b045" }, "downloads": -1, "filename": "lizard-1.16.3-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "76d943482b2a19f8a699a8becc0753eb", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 56381, "upload_time": "2019-02-11T14:03:22", "url": "https://files.pythonhosted.org/packages/7e/01/650cfb0e613217003fe29d7edba549b71731122a5dc6e61fc41ad6f58fb8/lizard-1.16.3-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "7ec0ce1ea70e94b7738f3ef06d683d9f", "sha256": "b2a3add1e017577269a1dec17c9d2b4a8358fc449942bd9577bc04974edb9bfd" }, "downloads": -1, "filename": "lizard-1.16.3.tar.gz", "has_sig": false, "md5_digest": "7ec0ce1ea70e94b7738f3ef06d683d9f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 62008, "upload_time": "2019-02-11T14:03:24", "url": "https://files.pythonhosted.org/packages/59/8c/7dbc9dd8882797ef95951a1ea5eafba0155cfb0b722b30ebd3b2f4e2eff0/lizard-1.16.3.tar.gz" } ], "1.16.5": [ { "comment_text": "", "digests": { "md5": "5e9245b1d2ecbe6973837464f3f8ea9d", "sha256": "418c7f1541bf8981a5ea33f2ef56f09476de92c301a2fa5b80183548b363e499" }, "downloads": -1, "filename": "lizard-1.16.5-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "5e9245b1d2ecbe6973837464f3f8ea9d", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 56974, "upload_time": "2019-08-23T02:41:47", "url": "https://files.pythonhosted.org/packages/b4/06/5e4a1c9ecb7112198d91303b9dc76bfa3d102307114405e88d456fef9a18/lizard-1.16.5-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "c4139da4e4d140852289c5d0b9ced28c", "sha256": "13c91ad092af1e7a7553fad7034a392caa4e68e7fc0c48495d8ceb18b4ecd61c" }, "downloads": -1, "filename": "lizard-1.16.5.tar.gz", "has_sig": false, "md5_digest": "c4139da4e4d140852289c5d0b9ced28c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 63398, "upload_time": "2019-08-23T02:41:49", "url": "https://files.pythonhosted.org/packages/fe/44/34549243aa9d936f8ac6524f86969d6e2cbd9bd23e0bda3329035cf216c9/lizard-1.16.5.tar.gz" } ], "1.16.6": [ { "comment_text": "", "digests": { "md5": "6e9a59f540e554da71dfb3078a477801", "sha256": "77f8f17a9d42e70b22225f01ac48fea3de9ccc7d89331f7152f4a676c1c7e342" }, "downloads": -1, "filename": "lizard-1.16.6-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "6e9a59f540e554da71dfb3078a477801", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 56963, "upload_time": "2019-08-23T02:49:02", "url": "https://files.pythonhosted.org/packages/24/7a/7ca04c3d84998d7344caafd3534a1b8a80d293bf32afbd2ef3956282d1c2/lizard-1.16.6-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "94fe38b321ff53a07155d76d3486bb20", "sha256": "9e4565c676b2d2022b77fcddba565aea44e6097c8f3889a26bb6f4aa26c1fe3e" }, "downloads": -1, "filename": "lizard-1.16.6.tar.gz", "has_sig": false, "md5_digest": "94fe38b321ff53a07155d76d3486bb20", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 63384, "upload_time": "2019-08-23T02:49:05", "url": "https://files.pythonhosted.org/packages/d7/c9/2ddb98ee860a1a0d63539a1e15614640af6ed0cfadcca46a75b9af03c1ed/lizard-1.16.6.tar.gz" } ], "1.7.5": [ { "comment_text": "", "digests": { "md5": "b5142d6d700290df5d7ad964e057f6d0", "sha256": "9cb85e01a5155bb97c7caad57c7f8356efa2fc890e8c9615a7f1877980feb468" }, "downloads": -1, "filename": "lizard-1.7.5.tar.gz", "has_sig": false, "md5_digest": "b5142d6d700290df5d7ad964e057f6d0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 20686, "upload_time": "2014-02-08T10:03:16", "url": "https://files.pythonhosted.org/packages/9c/48/35509331ecae1169e3c2e5f71dc1b98951eb25c1f4db580650e1c4727276/lizard-1.7.5.tar.gz" } ], "1.7.6": [ { "comment_text": "", "digests": { "md5": "9dbf0f0d58e145341ecfae58494f60f0", "sha256": "2d54d214e0d79ba45119fccf6dff6acdc569e8e949440f1222ed10b8da0c64e6" }, "downloads": -1, "filename": "lizard-1.7.6.tar.gz", "has_sig": false, "md5_digest": "9dbf0f0d58e145341ecfae58494f60f0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 21513, "upload_time": "2014-02-12T13:04:04", "url": "https://files.pythonhosted.org/packages/2c/cc/d75e0bf1dc4167b68708138761cd415218098d83977d7028f47ad9bbf9e2/lizard-1.7.6.tar.gz" } ], "1.7.7": [ { "comment_text": "", "digests": { "md5": "4ae6450fa8ab61ff71b2ac7d8bd69a7e", "sha256": "0ff767166c53d1db7715f0e0c6e0a67dbde778c7c31b5b91330d30a08474b1b0" }, "downloads": -1, "filename": "lizard-1.7.7.tar.gz", "has_sig": false, "md5_digest": "4ae6450fa8ab61ff71b2ac7d8bd69a7e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 21549, "upload_time": "2014-02-12T13:11:15", "url": "https://files.pythonhosted.org/packages/c7/3b/08e7e85864678017fb7b543ce5f1942eaa59ee7b6987161006cd1ccb4332/lizard-1.7.7.tar.gz" } ], "1.7.8": [ { "comment_text": "", "digests": { "md5": "6ca511cd0af7f23f6beb38de1dd63947", "sha256": "dad73246a552c5bed22e60b642e918a89a872fb77391c523451e3708a1246dad" }, "downloads": -1, "filename": "lizard-1.7.8.tar.gz", "has_sig": false, "md5_digest": "6ca511cd0af7f23f6beb38de1dd63947", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 20834, "upload_time": "2014-02-14T00:54:20", "url": "https://files.pythonhosted.org/packages/f8/3d/7dfc072bccd770a0bff732fe4694c585bc2bbe3775d20a1f38b047547c6d/lizard-1.7.8.tar.gz" } ], "1.7.9": [ { "comment_text": "", "digests": { "md5": "f5fd1d2613b411c05a538f6017a41ed8", "sha256": "bf2238ba51d2c06c74cf2a431d3c2b589d2d6f01cbc044e0af98b85904d163cd" }, "downloads": -1, "filename": "lizard-1.7.9.tar.gz", "has_sig": false, "md5_digest": "f5fd1d2613b411c05a538f6017a41ed8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 20871, "upload_time": "2014-02-14T03:14:48", "url": "https://files.pythonhosted.org/packages/4a/91/eb94a60bd4ce85c262ba84354a7646f9e1a8ff28c8d48aedbeb4e74d6e6c/lizard-1.7.9.tar.gz" } ], "1.8.0": [ { "comment_text": "", "digests": { "md5": "dbb701b013a7e12dc1b5bd1c2d259e9c", "sha256": "86a89e1ba2f45cc82684feaf0db353091e4186864fbe887794f7dce8df711354" }, "downloads": -1, "filename": "lizard-1.8.0.tar.gz", "has_sig": false, "md5_digest": "dbb701b013a7e12dc1b5bd1c2d259e9c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 23846, "upload_time": "2014-04-03T04:05:16", "url": "https://files.pythonhosted.org/packages/f4/10/c6adaecaa2281679478161b4c15dc494b74863e1dbc723a3acdb2b6b263c/lizard-1.8.0.tar.gz" } ], "1.8.1": [ { "comment_text": "", "digests": { "md5": "eecba571bb890405bcc55d01e1a7359f", "sha256": "3dfb35c6625d7e9a5218c0020fc6d5f6db8191b2c92c39eeb20fd6a5b1b3be2a" }, "downloads": -1, "filename": "lizard-1.8.1.tar.gz", "has_sig": false, "md5_digest": "eecba571bb890405bcc55d01e1a7359f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 25582, "upload_time": "2014-04-09T02:27:51", "url": "https://files.pythonhosted.org/packages/9b/7f/86e0eac032dbd1cec766e3aefa71220bc350d7e28b8c679381e29c57c495/lizard-1.8.1.tar.gz" } ], "1.8.10": [ { "comment_text": "", "digests": { "md5": "5fd17bbf7cb1f67f840824fc03c3cb5c", "sha256": "5048f668633188ec3890b5a1193058b578ac31e666fdac36960140ab95a2d3de" }, "downloads": -1, "filename": "lizard-1.8.10.tar.gz", "has_sig": false, "md5_digest": "5fd17bbf7cb1f67f840824fc03c3cb5c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 34364, "upload_time": "2015-03-30T00:59:52", "url": "https://files.pythonhosted.org/packages/67/d4/e0625b57589d29d8176ff301af9231bca5d44e656f4dfa6d62a7352a8697/lizard-1.8.10.tar.gz" } ], "1.8.11": [ { "comment_text": "", "digests": { "md5": "f77dd5e386603b6258d0d48e6c32cb58", "sha256": "55ed864c76e67900cfa3610a5b558d685ab2d410794437dbb436be8b1f33da4a" }, "downloads": -1, "filename": "lizard-1.8.11.tar.gz", "has_sig": false, "md5_digest": "f77dd5e386603b6258d0d48e6c32cb58", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 34612, "upload_time": "2015-04-13T06:52:24", "url": "https://files.pythonhosted.org/packages/b4/7a/fe13efbf03074349b3b6f6b3e9ad97f0a1b1a4f625765eebdd5af46d61e4/lizard-1.8.11.tar.gz" } ], "1.8.12": [ { "comment_text": "", "digests": { "md5": "1510322638fd716200b7a82c209704f6", "sha256": "9f2689a4b911b9ca9985318580f628352956ad961247e649552fd0b2ca993988" }, "downloads": -1, "filename": "lizard-1.8.12.tar.gz", "has_sig": false, "md5_digest": "1510322638fd716200b7a82c209704f6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 34805, "upload_time": "2015-09-30T08:16:47", "url": "https://files.pythonhosted.org/packages/dd/8e/73a10a641126388712030e55130274caa26369cf4aea370c0aa5f5e049c3/lizard-1.8.12.tar.gz" } ], "1.8.2": [ { "comment_text": "", "digests": { "md5": "f281ebbbaa37cb9e7e114709d3a1842b", "sha256": "da76408460d7f11e9c107c9180b009f224ebd4e6045f38558e45e696c12d850f" }, "downloads": -1, "filename": "lizard-1.8.2.tar.gz", "has_sig": false, "md5_digest": "f281ebbbaa37cb9e7e114709d3a1842b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 26415, "upload_time": "2014-04-16T00:03:07", "url": "https://files.pythonhosted.org/packages/88/c4/e55b847b0f87e77c2aea0760c2505de582a373061a9784f35ef228b67fa3/lizard-1.8.2.tar.gz" } ], "1.8.3": [ { "comment_text": "", "digests": { "md5": "b9f972ee60ae91113485dca83416e3b4", "sha256": "a29261f3c33ce872fffa95565679760cea9f5eba0fc29a8d506fe36efcc1e369" }, "downloads": -1, "filename": "lizard-1.8.3.tar.gz", "has_sig": false, "md5_digest": "b9f972ee60ae91113485dca83416e3b4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 30451, "upload_time": "2014-04-16T07:52:50", "url": "https://files.pythonhosted.org/packages/a4/0b/07c8947b12ac86f354f9a919b78c041a8d5b39e11c1735dfb6b61c41d711/lizard-1.8.3.tar.gz" } ], "1.8.4": [ { "comment_text": "", "digests": { "md5": "c309a855c0c25d2d68c11a07bd695b4d", "sha256": "9be26318be46db45c40550cfe4e1bc49d936202294460c9fd0f1fa71c5a92d3c" }, "downloads": -1, "filename": "lizard-1.8.4.tar.gz", "has_sig": false, "md5_digest": "c309a855c0c25d2d68c11a07bd695b4d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 31654, "upload_time": "2014-06-17T06:46:48", "url": "https://files.pythonhosted.org/packages/0a/65/4c510e075d48b765946049d44c55ddacff4df96be9cfbdcf4ee38a2679a9/lizard-1.8.4.tar.gz" } ], "1.8.6": [ { "comment_text": "", "digests": { "md5": "94c9308e2f47e545a1479814f9d0fc2e", "sha256": "e56c7c7224f5ee8df321c1e7edd091565159c972cc70f254014db4a83d4c5761" }, "downloads": -1, "filename": "lizard-1.8.6.tar.gz", "has_sig": false, "md5_digest": "94c9308e2f47e545a1479814f9d0fc2e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 32120, "upload_time": "2015-01-05T17:19:53", "url": "https://files.pythonhosted.org/packages/d8/2e/80db65ecc57a4e2bf1beba6989e0f501067e1353201181d574a026afa7ea/lizard-1.8.6.tar.gz" } ], "1.8.7": [ { "comment_text": "", "digests": { "md5": "282fb8a086ecd992240d948b4da64f59", "sha256": "23fa122465830249bbcebd7935da7a00baf42b85e12b6fec4809cff23723ecf8" }, "downloads": -1, "filename": "lizard-1.8.7.tar.gz", "has_sig": false, "md5_digest": "282fb8a086ecd992240d948b4da64f59", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 32199, "upload_time": "2015-01-06T01:15:46", "url": "https://files.pythonhosted.org/packages/47/0d/1bbf5bdfa0b73efcab6ee3c711f082009ef0b6783f1ee239bc2022ec6b16/lizard-1.8.7.tar.gz" } ], "1.8.8": [ { "comment_text": "", "digests": { "md5": "363a92a07b256522c958426cc474dfcf", "sha256": "0d6993fd53e7bfc2c2f32fa5127262c33fe2346859fdd04e1f37d7fa37d348c4" }, "downloads": -1, "filename": "lizard-1.8.8.tar.gz", "has_sig": false, "md5_digest": "363a92a07b256522c958426cc474dfcf", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 32402, "upload_time": "2015-01-09T15:49:18", "url": "https://files.pythonhosted.org/packages/c6/cb/190fd4c021d172ba2418671d9a1f9a69675614500cf752396418ae5d3eeb/lizard-1.8.8.tar.gz" } ], "1.8.9": [ { "comment_text": "", "digests": { "md5": "c27aa8dfdfdb780008ccf45e3ec624df", "sha256": "add7bfe7a61046004e7ed3eb0da5cdb51dc964622d1e8373c9b4ea7f2e5e63e3" }, "downloads": -1, "filename": "lizard-1.8.9.tar.gz", "has_sig": false, "md5_digest": "c27aa8dfdfdb780008ccf45e3ec624df", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 33492, "upload_time": "2015-01-10T08:47:11", "url": "https://files.pythonhosted.org/packages/6d/cc/482696bdc6214aa19f3ebf4495529eadc86e9f079b73e78e3b4e6784e2d5/lizard-1.8.9.tar.gz" } ], "1.9.0": [ { "comment_text": "", "digests": { "md5": "dcfb26d07f071edacb4918f8f99703a9", "sha256": "9970fea4603d883c40fff428da2b175cd7ffb5bdec72560ecb1cb098840540f4" }, "downloads": -1, "filename": "lizard-1.9.0.tar.gz", "has_sig": false, "md5_digest": "dcfb26d07f071edacb4918f8f99703a9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 35100, "upload_time": "2015-10-06T00:57:01", "url": "https://files.pythonhosted.org/packages/41/d0/506bcb5f0110c7e8c4733f65c840317629786630b59e153784e83a41b5fb/lizard-1.9.0.tar.gz" } ], "1.9.1": [ { "comment_text": "", "digests": { "md5": "e1e01ca76b800ea3e1093814332d111d", "sha256": "6cbce01708abb92c1434caaf2c7464fd1198bab7634b4b3227617a0f3bc9f46d" }, "downloads": -1, "filename": "lizard-1.9.1.tar.gz", "has_sig": false, "md5_digest": "e1e01ca76b800ea3e1093814332d111d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 35629, "upload_time": "2015-10-07T06:47:16", "url": "https://files.pythonhosted.org/packages/2b/f7/a85b4c4ca82fc62af810d3b06da0c8854c2fcaf40011ca661d4c9aa043d9/lizard-1.9.1.tar.gz" } ], "1.9.11": [ { "comment_text": "", "digests": { "md5": "6178225081fc68da409b61b2b8f2fb81", "sha256": "840ccf9f0c6b6f4fd63ae84a9620ac4509decc94a72722b627fedb979db25c30" }, "downloads": -1, "filename": "lizard-1.9.11.tar.gz", "has_sig": false, "md5_digest": "6178225081fc68da409b61b2b8f2fb81", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 41668, "upload_time": "2016-01-10T11:11:01", "url": "https://files.pythonhosted.org/packages/15/ed/021f8ba7041161189497ad5add5eb07bef315ed72dad894400ddda966182/lizard-1.9.11.tar.gz" } ], "1.9.12": [ { "comment_text": "", "digests": { "md5": "7d11dc1cf4893f1cd024d451fc8c5665", "sha256": "0e224632e9f15eaa18d32bc6a263b2995bd873d27c7872d3ec467d9232728638" }, "downloads": -1, "filename": "lizard-1.9.12.tar.gz", "has_sig": false, "md5_digest": "7d11dc1cf4893f1cd024d451fc8c5665", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 41681, "upload_time": "2016-01-14T08:18:15", "url": "https://files.pythonhosted.org/packages/47/d3/cbe30baefb831dd7b95dbe128cdca8a5e9eabb38a2f06b085dcb0e4b0fbf/lizard-1.9.12.tar.gz" } ], "1.9.13": [ { "comment_text": "", "digests": { "md5": "feef18b4d3a58d27fa94a81e90a1c1b4", "sha256": "f0b39d50c4284e81476192fcf804478636124896b2265fbf7b03b23dc1cdb522" }, "downloads": -1, "filename": "lizard-1.9.13.tar.gz", "has_sig": false, "md5_digest": "feef18b4d3a58d27fa94a81e90a1c1b4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 41687, "upload_time": "2016-01-14T09:02:47", "url": "https://files.pythonhosted.org/packages/5d/bf/a5a981a5385bed66324036b0a614200f1f32435a522ae5e69594956a5249/lizard-1.9.13.tar.gz" } ], "1.9.14": [ { "comment_text": "", "digests": { "md5": "d74f6b0a5b18707ce29b85f40ae77a14", "sha256": "906c16be5c1d2b633aa1eaf1bcc7f08348a1d69bf6389c3ad855922528387973" }, "downloads": -1, "filename": "lizard-1.9.14.tar.gz", "has_sig": false, "md5_digest": "d74f6b0a5b18707ce29b85f40ae77a14", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 41708, "upload_time": "2016-01-15T07:30:41", "url": "https://files.pythonhosted.org/packages/64/cd/a9e4f8c29d2ebd83f7b0a7de29623d2101f91556da6ebab2c6412f135cc3/lizard-1.9.14.tar.gz" } ], "1.9.16": [ { "comment_text": "", "digests": { "md5": "a4741900c5a4126871c0e16e300dd5a7", "sha256": "65471dd63dd5b1c4cc0b1b48b6792bd3e3c8fc4d0b004f3ae7a0105346454a3c" }, "downloads": -1, "filename": "lizard-1.9.16.tar.gz", "has_sig": false, "md5_digest": "a4741900c5a4126871c0e16e300dd5a7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 41791, "upload_time": "2016-01-19T02:21:48", "url": "https://files.pythonhosted.org/packages/e0/ec/bda2ef323c772ee3eb028db8ac91bfa374acf16877f400e35cab72ebec9d/lizard-1.9.16.tar.gz" } ], "1.9.17": [ { "comment_text": "", "digests": { "md5": "dd928922265b4bdef58a15047b6829cf", "sha256": "3a246ec168f9d8b6da5890d3c93d6d4267ba1ce6e6c197e6ace293a6b2ab41e3" }, "downloads": -1, "filename": "lizard-1.9.17.tar.gz", "has_sig": false, "md5_digest": "dd928922265b4bdef58a15047b6829cf", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 41833, "upload_time": "2016-01-19T03:03:40", "url": "https://files.pythonhosted.org/packages/6c/29/377cfe0ae1573b1a2c6bb98c31c1d238c0968368222ef144c2c71b153dcc/lizard-1.9.17.tar.gz" } ], "1.9.18": [ { "comment_text": "", "digests": { "md5": "45ba6fc5a75cb93521e228515dbac494", "sha256": "f60c3d05a71a8fa02d809e07658cd7f4de6be313787b0394ef1bb31cb390e30f" }, "downloads": -1, "filename": "lizard-1.9.18.tar.gz", "has_sig": false, "md5_digest": "45ba6fc5a75cb93521e228515dbac494", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 41842, "upload_time": "2016-01-19T03:11:25", "url": "https://files.pythonhosted.org/packages/13/0a/1bde93acf23b3d494e8f5095ce7cf23959957a52d9e9134f9371974d56eb/lizard-1.9.18.tar.gz" } ], "1.9.2": [ { "comment_text": "", "digests": { "md5": "b70d55fd20a037216ef33f27c433f68c", "sha256": "7df11d837b819f2e2878d91b5c6df653676943d43889c02973fe60e325f8ee1a" }, "downloads": -1, "filename": "lizard-1.9.2.tar.gz", "has_sig": false, "md5_digest": "b70d55fd20a037216ef33f27c433f68c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 38915, "upload_time": "2015-11-27T03:26:14", "url": "https://files.pythonhosted.org/packages/22/ff/565d93364e805800b9c32c51cf893415020e0e5a4637aaa8873e02a9acd3/lizard-1.9.2.tar.gz" } ], "1.9.21": [ { "comment_text": "", "digests": { "md5": "92d55013cd2fa56b01d57768a17e881d", "sha256": "f85f1029e4a3cd43d21cc830205d51b5e835097fb6701cdeea3a3bd22f782025" }, "downloads": -1, "filename": "lizard-1.9.21-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "92d55013cd2fa56b01d57768a17e881d", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 38610, "upload_time": "2016-01-24T07:30:40", "url": "https://files.pythonhosted.org/packages/28/8a/ced0bad3b03637d8343ba3bb6adedea34b232301788f8ee14fb7e60ad9d0/lizard-1.9.21-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "b91866b674694547bb6fdcf86f99d36e", "sha256": "74cd8689c0892c052d1739f31e8944f1a7c4ce64c22213c963263f8de2914694" }, "downloads": -1, "filename": "lizard-1.9.21.tar.gz", "has_sig": false, "md5_digest": "b91866b674694547bb6fdcf86f99d36e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 41871, "upload_time": "2016-01-24T07:30:33", "url": "https://files.pythonhosted.org/packages/e7/d7/20e8072116a3aaf2d1fe28668b2f860f23170d551656723ec279ee66c18d/lizard-1.9.21.tar.gz" } ], "1.9.22": [ { "comment_text": "", "digests": { "md5": "44b508415d5153f3f69f2b27c1a6baf3", "sha256": "f8325fd0dc0e83d971cb5e09e5479edae9c12583e77067a5fef48ab5e8dc8a98" }, "downloads": -1, "filename": "lizard-1.9.22-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "44b508415d5153f3f69f2b27c1a6baf3", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 38819, "upload_time": "2016-01-24T08:25:57", "url": "https://files.pythonhosted.org/packages/95/d1/03c7281aacf4f91a88fc4d8330d6e27fe7d45eaf1a5b5e666529535a1436/lizard-1.9.22-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "fcd50e4407a492543902de2992d58519", "sha256": "ae1a081cca07aeacbe114c217dc1e02f0c58f18717879475efc3336783d09e1f" }, "downloads": -1, "filename": "lizard-1.9.22.tar.gz", "has_sig": false, "md5_digest": "fcd50e4407a492543902de2992d58519", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 41918, "upload_time": "2016-01-24T08:25:50", "url": "https://files.pythonhosted.org/packages/ff/b1/9a71972fed81233a3f73e8047c46ea9775a130791006ed0845587888e8ea/lizard-1.9.22.tar.gz" } ], "1.9.23": [ { "comment_text": "", "digests": { "md5": "635746c68e6395fb676a182cc2134a15", "sha256": "cbf662f073ab8eb799eb63854e1f5bc96dd4693d5c0e34937f38957ab0fdc51c" }, "downloads": -1, "filename": "lizard-1.9.23-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "635746c68e6395fb676a182cc2134a15", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 39352, "upload_time": "2016-01-28T01:16:18", "url": "https://files.pythonhosted.org/packages/85/fb/2de7c5f5dca29496f7a25e241bafc3f8ca265846ce3e9903493f47bea394/lizard-1.9.23-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "6a22ec29e9895805a5bd27ca062dcd37", "sha256": "c1d1f308cca410bf9bb11d3cff708d5aa4f6feeb688e78e4a194f7b6ae94fae9" }, "downloads": -1, "filename": "lizard-1.9.23.tar.gz", "has_sig": false, "md5_digest": "6a22ec29e9895805a5bd27ca062dcd37", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 42106, "upload_time": "2016-01-28T01:16:04", "url": "https://files.pythonhosted.org/packages/d9/d0/3ddb262de2091ec9bb54966222fa1f2be354e8e1ece80bc607d6c0641e16/lizard-1.9.23.tar.gz" } ], "1.9.24": [ { "comment_text": "", "digests": { "md5": "d93eb6a368d300992449165c8e0e65ca", "sha256": "0e2e97cf503dbc3d5bb0d08a6961ab10c86104041e7531cf218a3f46c6f814a4" }, "downloads": -1, "filename": "lizard-1.9.24-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "d93eb6a368d300992449165c8e0e65ca", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 40006, "upload_time": "2016-01-29T03:22:43", "url": "https://files.pythonhosted.org/packages/99/9f/4c6e43b09faa9c9754353eaccef15d349f22ab575f235d38b9e6a4880ecb/lizard-1.9.24-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "1bb0b205b954b437344aae0627f0a0a8", "sha256": "89cbb5e5d6367bad3f6bf2ba6988258c0ec61f4a9f812b41ad5cc750816e11e5" }, "downloads": -1, "filename": "lizard-1.9.24.tar.gz", "has_sig": false, "md5_digest": "1bb0b205b954b437344aae0627f0a0a8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 42936, "upload_time": "2016-01-29T03:22:36", "url": "https://files.pythonhosted.org/packages/e0/e5/61c1ae6ab5ee3f3d234d431dc07a8cb2e828562d5760f28d5f3f1d9a2f21/lizard-1.9.24.tar.gz" } ], "1.9.25": [ { "comment_text": "", "digests": { "md5": "bcf2d09d5b917864ec672dc0633f3ba6", "sha256": "49cbd4c67030decad855a170bf1ea1abe726ab02d602f9de37e4c5661ed75efc" }, "downloads": -1, "filename": "lizard-1.9.25-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "bcf2d09d5b917864ec672dc0633f3ba6", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 40004, "upload_time": "2016-01-29T03:30:39", "url": "https://files.pythonhosted.org/packages/40/35/b9108638dd6573ac37cba9bfd8b864ac1a8e0821fa2fb00f9f54d0a5e22f/lizard-1.9.25-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "678ecc5105a486552bf0d55fa2a378ca", "sha256": "615cd79337c6b3e7ddb9e4e7329638c449a5265e8bf03fc5857a46c55ce97d71" }, "downloads": -1, "filename": "lizard-1.9.25.tar.gz", "has_sig": false, "md5_digest": "678ecc5105a486552bf0d55fa2a378ca", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 42942, "upload_time": "2016-01-29T03:30:33", "url": "https://files.pythonhosted.org/packages/95/7b/f0308ef21e5c92efa6b1a405ea272e88e1dda7d6408727abc8df9d2428f2/lizard-1.9.25.tar.gz" } ], "1.9.3": [ { "comment_text": "", "digests": { "md5": "d76dd12b07b9aaaa06748f1c6964a571", "sha256": "28ef79d4229d1e3cfe2e1e4078ba41ccadcf97988b513e3f73517d27efe5a2f5" }, "downloads": -1, "filename": "lizard-1.9.3.tar.gz", "has_sig": false, "md5_digest": "d76dd12b07b9aaaa06748f1c6964a571", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 40439, "upload_time": "2015-12-14T09:20:05", "url": "https://files.pythonhosted.org/packages/ba/b1/25a71752589c7c3037c8cda46d00bb79220600a48e39852ec6150bd69e6f/lizard-1.9.3.tar.gz" } ], "1.9.4": [ { "comment_text": "", "digests": { "md5": "17cebfc04a43f42de7834f0449ed913e", "sha256": "313b9ac424b8f911c7396d7371e34d043570d30c4865cf803df9e43ff94d2440" }, "downloads": -1, "filename": "lizard-1.9.4.tar.gz", "has_sig": false, "md5_digest": "17cebfc04a43f42de7834f0449ed913e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 40768, "upload_time": "2015-12-16T08:33:24", "url": "https://files.pythonhosted.org/packages/f6/b6/b012788a322235d5dcf097126486d8937f9c388c67e1a158a120886b986e/lizard-1.9.4.tar.gz" } ], "1.9.5": [ { "comment_text": "", "digests": { "md5": "2ccf540d7296fc41bb8fd0a44b4b4c16", "sha256": "0ea971ddb1ec4da4c7873336073cb788fe71a247c790c6e54f867909a5f2433b" }, "downloads": -1, "filename": "lizard-1.9.5.tar.gz", "has_sig": false, "md5_digest": "2ccf540d7296fc41bb8fd0a44b4b4c16", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 40936, "upload_time": "2015-12-16T23:58:21", "url": "https://files.pythonhosted.org/packages/d0/eb/ff6ff5bb7528a48f95159d8e24e4583fcb59b464f51d364109e7bd4bd221/lizard-1.9.5.tar.gz" } ], "1.9.6": [ { "comment_text": "", "digests": { "md5": "bc9557165397e6b7aa863022f2c25d08", "sha256": "fa1b1a8a2b8cce034589b1f1fec197e7966bc2ca0afc8948846a49d04a2f4334" }, "downloads": -1, "filename": "lizard-1.9.6.tar.gz", "has_sig": false, "md5_digest": "bc9557165397e6b7aa863022f2c25d08", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 41136, "upload_time": "2015-12-18T03:44:42", "url": "https://files.pythonhosted.org/packages/25/e8/e10d9137e391230854e4188db74409d9e68370d3c98febfe6b5ecd5cfcf8/lizard-1.9.6.tar.gz" } ], "1.9.7": [ { "comment_text": "", "digests": { "md5": "e8172f3c802ec51fd567eaa9f93e7554", "sha256": "5b1dd4995548bcc290ed74b3b185752fb7170d38d52433edcaf2401114eee22f" }, "downloads": -1, "filename": "lizard-1.9.7.tar.gz", "has_sig": false, "md5_digest": "e8172f3c802ec51fd567eaa9f93e7554", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 41331, "upload_time": "2015-12-30T04:09:09", "url": "https://files.pythonhosted.org/packages/c6/52/9bc2a5e92d23ff8ab291657b63a502cea8a34e385567cfce4aadb52c1fa5/lizard-1.9.7.tar.gz" } ], "1.9.8": [ { "comment_text": "", "digests": { "md5": "45256526488dafd010ebaf57db9983f5", "sha256": "3032b07c617c94f028145394df27fcaf1f2f3a372a716e56591fae64d52ef5f2" }, "downloads": -1, "filename": "lizard-1.9.8.tar.gz", "has_sig": false, "md5_digest": "45256526488dafd010ebaf57db9983f5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 41339, "upload_time": "2015-12-30T07:18:26", "url": "https://files.pythonhosted.org/packages/af/9d/b62a12874a85d089ca09796be5a258de0dba915f519c9087aca20d8274d6/lizard-1.9.8.tar.gz" } ], "1.9.9": [ { "comment_text": "", "digests": { "md5": "54079c3565f2fc1ff4ee59232f023f55", "sha256": "8c009f223ede748f92b05447fc885d9e3d4eb7d9029c859ef1f7fde29c6bf60e" }, "downloads": -1, "filename": "lizard-1.9.9.tar.gz", "has_sig": false, "md5_digest": "54079c3565f2fc1ff4ee59232f023f55", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 41348, "upload_time": "2016-01-07T13:31:13", "url": "https://files.pythonhosted.org/packages/98/ee/1b02e9424ec80e4c8e0de92d6bbec0860971a4a4e1439671470aa33588b6/lizard-1.9.9.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "6e9a59f540e554da71dfb3078a477801", "sha256": "77f8f17a9d42e70b22225f01ac48fea3de9ccc7d89331f7152f4a676c1c7e342" }, "downloads": -1, "filename": "lizard-1.16.6-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "6e9a59f540e554da71dfb3078a477801", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 56963, "upload_time": "2019-08-23T02:49:02", "url": "https://files.pythonhosted.org/packages/24/7a/7ca04c3d84998d7344caafd3534a1b8a80d293bf32afbd2ef3956282d1c2/lizard-1.16.6-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "94fe38b321ff53a07155d76d3486bb20", "sha256": "9e4565c676b2d2022b77fcddba565aea44e6097c8f3889a26bb6f4aa26c1fe3e" }, "downloads": -1, "filename": "lizard-1.16.6.tar.gz", "has_sig": false, "md5_digest": "94fe38b321ff53a07155d76d3486bb20", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 63384, "upload_time": "2019-08-23T02:49:05", "url": "https://files.pythonhosted.org/packages/d7/c9/2ddb98ee860a1a0d63539a1e15614640af6ed0cfadcca46a75b9af03c1ed/lizard-1.16.6.tar.gz" } ] }