{ "info": { "author": "Vojtech Burian", "author_email": "vojtech.burian@gmail.com", "bugtrack_url": null, "classifiers": [ "Development Status :: 5 - Production/Stable", "Intended Audience :: Developers", "License :: OSI Approved :: MIT License", "Operating System :: OS Independent", "Programming Language :: Python :: 2.6", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3.5", "Topic :: Software Development :: Testing" ], "description": "# Shishito\n\nShishito is module for web and mobile application functional testing using Selenium Webdriver & Python.\nIt runs tests using included libraries and generates nice test results output.\n\nDocumentation - http://shishito.readthedocs.org/en/latest/index.html (hosted on Read the Docs)\n\n## Features\n\n* runs python Selenium Webdriver tests via PyTest\n* easy configuration for local and remote (BrowserStack, Appium, ..) test execution\n* contains useful test libraries\n* generates HTML test results report (with screenshots for failed tests)\n* designed to be used as a module (by multiple projects if needed)\n\n## Pre-requisities\n\nInstall Python moodules from requirements.txt\n\n```pip install -r requirements.txt```\n\nWebdriver drivers need to be setup (ChromeDriver, InternetExplorerDriver etc.)\n\n## Quick Start\n\n1. clone Shishito repository.\n```git clone git@github.com:salsita/shishito.git```\n1. add *shishito* directory into PYTHONPATH environment variable\n1. clone sample test project repository https://github.com/salsita/shishito-sample-project\n```git clone git@github.com:salsita/shishito-sample-project.git```\n1. if you want to use BrowserStack for running your tests, replace \"bs_username\", \"bs_password\" values with your credentials in ***shishito-sample-project/config/server_config.properties***\n or pass it to runner python file as command line argument using flag --browserstack username:token\n1. if you want to use Saucelabs for running your tests, add your credentials to saucelabs variable in ***shishito-sample-project/config/server_config.properties***\n or pass it to runner python file as command line argument using flag --saucelabs username:token\n1. set your preferred browser settings in ***shishito-sample-project/config/web/(browserstack|local).properties*** or for mobile apps in ***shishito-sample-project/config/mobile/appium.properties***\n1. run *google_test_runner.py* in sample project folder!\n\nIf you use local driver, you should now observe browser being started and tests running.\nThere are information about progress shown in console output.\nOnce testing is finished, HTML report can be found in:\n```\nshishito-sample-project/results folder # HTML report\nshishito-sample-project/results_archive folder # zipped HTML report\n```\n\n## Continuous Integration\n\nUsing Shishito with Continuous Integration solution, such as Jenkins, is easy!\nAll you need to do is clone Shishito repo and add it into the PYTHONPATH.\n\nExample script below (Jenkins \"execute shell\" build step):\n```bash\n#!/bin/bash\n######################\n# clone Shishito #\n######################\n\ncd $WORKSPACE\ngit clone git@github.com:salsita/shishito.git\n\n######################\n# VARIABLES #\n######################\n\nexport PYTHONPATH=${PYTHONPATH}:/$WORKSPACE/shishito\n\n######################\n# SCRIPT #\n######################\n\npython google_test_runner.py\n```\n\n## Command line options\n\n```python\n--platform web # define platform on which run tests (currently supported: web, mobile, generic)\n--environmnet local # define environment in which run tests (currently supported: local, browserstack, appium, remote)\n--test_directory tests # define directory where to lookup for tests (project_root + test_directory)\n\n# supported platform/environment combinations:\n# generic/local\n# generic/remote\n# web/local\n# web/browserstack\n# web/remote\n# mobile/appium (can run on local/remote appium server or on saucelabs)\n# node_webkit/node_webkit\n\n--smoke # runs only tests with fixture \"@pytest.mark.smoke\"\n\n--browserstack testuser1:p84asd21d15asd454 # authenticate on BrowserStack using user \"testuser1\" and token \"p84asd21d15asd454\"\n--saucelabs testuser1:p84asd21d15asd454 # authenticate on Saucelabs using user \"testuser1\" and token \"p84asd21d15asd454\"\n--test_rail user@email.com:1AVFS51AS # authenticate on TestRail using user email \"user@email.com\" and password \"1AVFS51AS\"\n\n```\n\nIf no arguments are specified, Shishito, by default, searches for settings combinations in (server|local).properties files and runs tests according to them.\n\n## Configuration files\n\n***server_config.properties***\n\n* default configuration file with test variables\n* changes to variables should be maintained in VCS; so that configuration can be reused for automated test execution\n\n```\n# modules\ntest_platform=web\ntest_environment=local\n\n# test dir\ntest_directory=tests\n\n# General\nbase_url=http://www.google.com\nenvironment_configuration=Chrome\n```\n\n* *test_platform* - on which platform run tests (web, mobile)\n* *test_environment* - in which environment run tests (local, browserstack, appium)\n* *test_directory* - in which directory lookup for tests\n* *base_url* - url that will be loaded by default upon start of each test\n* *environment_configuration* - which configuration use from .properties file (used when tests are run without runner)\n* *remote_driver_url* - remote driver hub. Selenium server needs to be running on this url.\n\n***local_config.properties***\n\n* if variable *local_execution=True*, script will look first search local config for test variables\n* in case variables are not found, it will fall back to values in default *server_config.properties*\n* changes to this file should **not** be maintained in VCS (they serve only for local test execution)\n\n***\\/\\.properties***\n\n* contains combinations, for which the tests should be executed\n* e.g. browser and resolution for local web browser\n\n***conftest.py***\n\n* helper file that defines command line arguments, provides fixtures and other information for Shishito runner\n\n## Configuration\n\nShishito can be configured with command lines arguments and config files. Some configuration values are also added as arguments to PyTest (depends on test environment).\nConfiguration values are looked up according to these priorities:\n1. pytest.config\n1. command line arguments\n1. local configuration file (if enabled: local_execution=True)\n1. server cofiguration file\n\n### Node-webkit configuration\nShishito is able to run tests against node-webkit applications. Current implementation does not allow tester to specify based URL, just to run application from URL directly specified within application.\nCreating of webdriver driver object is done by specific [chromedriver](https://github.com/nwjs/nw.js/wiki/Chromedriver) which has to be placed in same directory as node-webkit application. \nChromedriver will search for node-webkit binaries and start the application. Binaries have to have specific names otherwise chromedriver won't find them. \nNode-webkit binary must have name:\n\n* For Linux: `nw`\n* For Windows: `nw.exe`\n* For OS X: `node-webkit.app`\n\n#### TEMPORARY SCREENSHOT ON FAILURE FUNCTIONALITY\nDue to [issue in Node-webkit chromedriver](https://code.google.com/p/chromedriver/issues/detail?id=816); there is added \ntemporary screenshot on failure functionality using [pyscreenshot module](https://pypi.python.org/pypi/pyscreenshot). This functionality takes screenshot of whole desktop not only node-webkit \napplication window. This issue should be fixed in chromedriver 2.15. There is alpha version of node-webkit chromedriver v2.15.\nThis functionality is going to be removed once issue is fixed.\n\n**Note**: Ubuntu: It is necessary to install also python-imaging\n `sudo apt-get install python-imaging`\n\n#### Troubleshooting for Node-webkit platform\nIf you see exception similar to one below\n\n```\n raise WebDriverException(\n \\\"\\'\\\" + os.path.basename(self.path) + \\\"\\' executable needs to be \\\n available in the path. Please look at \\\n http://docs.seleniumhq.org/download/#thirdPartyDrivers \\\n and read up at \\\n\\> http://code.google.com/p/selenium/wiki/ChromeDriver\")\nE WebDriverException: Message: 'chromedriver' executable needs to be available in the path. Please look at http://docs.seleniumhq.org/download/#thirdPartyDrivers and read up at http://code.google.com/p/selenium/wiki/ChromeDriver\n\n/usr/local/lib/python2.7/dist-packages/selenium/webdriver/chrome/service.py:70: WebDriverException\n```\nYou need to check Chromedriver file access rights mainly in Linux or OS X, Windows should be ok. \n## Test Management Support\n\nShishito support upload of test results to TestRail test management app.\nFollowing properties in server/local config have to be filled:\n\n* *test_rail* - credentials for test rail. Can be also left empty and passed via cmd argument (see above)\n* *test_rail_url* - URL of test rail instance. (example: https://mycompany.testrail.net)\n* *test_rail_project_id* - ID of TestRail project (example: 1)\n* *test_rail_section_id* - ID of TestRail test section (example: 2)\n* *test_rail_test_plan_id* - ID of TestRail test plan (example: 5)\n* *test_rail_suite_id* - ID of TestRail test suite (example: 1)\n\nFor further information, see TestRail API documentation http://docs.gurock.com/testrail-api2/start.\n\n# History\n\n## 3.1.10 (2019-08-12)\n* Update the HTML report to contain even errors collected during PyTest collection phase\n\n## 3.1.9 (2019-07-18)\n* Minor fix of `shi` script not updating newly added packages to requirements.txt\n\n## 3.1.8 (2019-07-03)\n* Fix of HTML Test Report not showing errors in the setup phase\n* Disable escaping of special characters error message in Test Report\n\n## 3.1.7 (2019-07-01)\n* support download_path for chromedriver 75+\n* let download_path to be optional\n\n## 3.1.6 (2019-06-18)\n* support download_path and browser extension\n\n## 3.1.5 (2019-05-22)\n* Minor fixes\n\n## 3.1.4 (2019-05-21)\n* Fix Flaky & HTML report issue\n\n## 3.1.3 (2019-03-07)\n* extend appium Browserstack capabilities \n\n## 3.1.2 (2019-01-14)\n* support for environmental variables in config files\n\n## 3.1.1 (2019-01-09)\n* Fix problem with multiple drivers on Mobile devices\n* Change how test names are obtained for Browserstack\n\n## 3.1.0 (2018-11-27)\n* Improve generated report\n\n## 3.0.7 (2018-10-25)\n* Hotfix - wrong config parsing\n\n## 3.0.6 (2018-10-25)\n* Add logging options to webdriver\n\n## 3.0.5 (2018-09-10)\n* Activate venv in shi executable script\n\n## 3.0.4 (2018-08-15)\n* Update the exacutable \"shi\" script to work in actual directory\n* Add README and HISTORY files\n\n## 3.0.3 (2018-08-14)\n* Enable \"shi\" executable script to work with shishito installed with `pip install shishito`\n\n\n", "description_content_type": "text/markdown", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/salsita/shishito", "keywords": "testing,selenium,webdriver,browserstack,appium", "license": "MIT", "maintainer": "", "maintainer_email": "", "name": "shishito", "package_url": "https://pypi.org/project/shishito/", "platform": "any", "project_url": "https://pypi.org/project/shishito/", "project_urls": { "Homepage": "https://github.com/salsita/shishito" }, "release_url": "https://pypi.org/project/shishito/3.1.10/", "requires_dist": [ "selenium", "pytest-xdist", "pytest-instafail", "pytest", "UnittestZero", "Jinja2", "requests", "Appium-Python-Client", "Click (>=6.0)" ], "requires_python": "", "summary": "Python module for selenium webdriver test execution", "version": "3.1.10" }, "last_serial": 5667129, "releases": { "2.0": [ { "comment_text": "", "digests": { "md5": "91dec1953323b5a3783a7538861828f0", "sha256": "52ca975b2ff3bc54c971a200366ed80911ee2ba419a1e44d5192c252f7e1494a" }, "downloads": -1, "filename": "shishito-2.0.tar.gz", "has_sig": false, "md5_digest": "91dec1953323b5a3783a7538861828f0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 61361, "upload_time": "2016-02-08T12:26:58", "url": "https://files.pythonhosted.org/packages/fc/c2/c9ade2dfb10c993adb77aec7086e5aa4516316f58b11880ca2366f0ab151/shishito-2.0.tar.gz" } ], "2.4": [ { "comment_text": "", "digests": { "md5": "42eb6d4f6eb37414dff1da3dbd5ff6bd", "sha256": "ea6e3fc1c0d5457450499fe1d8ad4565cfa2d41a68c26a0a9910e020a26fc974" }, "downloads": -1, "filename": "shishito-2.4.tar.gz", "has_sig": false, "md5_digest": "42eb6d4f6eb37414dff1da3dbd5ff6bd", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 61415, "upload_time": "2016-02-12T08:02:44", "url": "https://files.pythonhosted.org/packages/bd/61/a8469c60c897e5db3539e57ef91793560864a02fdb330c1e0e3f381ae06d/shishito-2.4.tar.gz" } ], "2.5.0": [ { "comment_text": "", "digests": { "md5": "70ad21f98bc5bf0902f6aedf01c95385", "sha256": "fa3b9b78a258d5aba3bb14442d4b29b93ace31062c8dd0794c95322c51b357af" }, "downloads": -1, "filename": "shishito-2.5.0.tar.gz", "has_sig": false, "md5_digest": "70ad21f98bc5bf0902f6aedf01c95385", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 68356, "upload_time": "2017-12-05T13:45:28", "url": "https://files.pythonhosted.org/packages/16/dc/c7ab7ab59c4a0db24075f31dd3f7ea6cef03a9a8c3020a35607c7b6d5f7b/shishito-2.5.0.tar.gz" } ], "3.0.0": [ { "comment_text": "", "digests": { "md5": "c73000c2db45b04ae1df00dfaebc8b22", "sha256": "e9abdded3d484e204dd7a45d1ce295c54645ebd9d9211c03d33fe44ab9106a90" }, "downloads": -1, "filename": "shishito-3.0.0.tar.gz", "has_sig": false, "md5_digest": "c73000c2db45b04ae1df00dfaebc8b22", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 67262, "upload_time": "2017-11-14T08:49:04", "url": "https://files.pythonhosted.org/packages/b2/66/f28c7c4e84727b07c024e06b2c58e8268f53ff397742db25ab521c9d3fcd/shishito-3.0.0.tar.gz" } ], "3.0.1": [ { "comment_text": "", "digests": { "md5": "84521a89bbdaf7344a76cd3b4bf1f05e", "sha256": "25f28a4e76e25fd3084b371df46a4e93f53f3420220081c636befe87ad39d702" }, "downloads": -1, "filename": "shishito-3.0.1.tar.gz", "has_sig": false, "md5_digest": "84521a89bbdaf7344a76cd3b4bf1f05e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 70399, "upload_time": "2018-01-23T15:33:28", "url": "https://files.pythonhosted.org/packages/ac/45/7432eedb9d76688122b7f4a3f71bc5a93f366f959d927e8a6650debe7c49/shishito-3.0.1.tar.gz" } ], "3.0.2": [ { "comment_text": "", "digests": { "md5": "76395945b8f7e904dec5a3277b13c54d", "sha256": "8a8b020449ff19f278a6d88f193e2a9397c9973305db2ff71b9474c7f3dcc459" }, "downloads": -1, "filename": "shishito-3.0.2.tar.gz", "has_sig": false, "md5_digest": "76395945b8f7e904dec5a3277b13c54d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 70447, "upload_time": "2018-02-09T15:51:59", "url": "https://files.pythonhosted.org/packages/ee/e5/217b49666dea4b5c59bb6d7e8559f7f94ddac5e5760aacaf25c309dbdbfb/shishito-3.0.2.tar.gz" } ], "3.0.3": [ { "comment_text": "", "digests": { "md5": "4566b71c7e878b69998dcf8a4ef17288", "sha256": "a4cb62c9f96bb29e4b23f67256ac8fef994ea44ce465166a33393b95efd1c3a1" }, "downloads": -1, "filename": "shishito-3.0.3-py3-none-any.whl", "has_sig": false, "md5_digest": "4566b71c7e878b69998dcf8a4ef17288", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 86557, "upload_time": "2018-08-14T09:39:05", "url": "https://files.pythonhosted.org/packages/27/9e/11514dce22ea8dbb9b1dc1c5afdb276f3a6654716f94a10bff4e9557728c/shishito-3.0.3-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "d9cbcc6d47a2fd3b20cabd1eb9dde2ee", "sha256": "f580a25cebad7efd78414df1f10e855961bb7e76ee151f88a3c2eb3b3a155787" }, "downloads": -1, "filename": "shishito-3.0.3.tar.gz", "has_sig": false, "md5_digest": "d9cbcc6d47a2fd3b20cabd1eb9dde2ee", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 71581, "upload_time": "2018-08-14T09:39:06", "url": "https://files.pythonhosted.org/packages/0c/54/619db0c7182ff2cab466ef98d34638fdf57e4dbf23c9f90c705be76e57cb/shishito-3.0.3.tar.gz" } ], "3.0.4": [ { "comment_text": "", "digests": { "md5": "f6f85f1d8d152ee613e410270142edfb", "sha256": "1fccaaca5fe699f0ce0b305bb38ed7c303866fbae046d7a1cb02013d8e4dfa8b" }, "downloads": -1, "filename": "shishito-3.0.4-py3-none-any.whl", "has_sig": false, "md5_digest": "f6f85f1d8d152ee613e410270142edfb", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 89596, "upload_time": "2018-08-15T09:36:57", "url": "https://files.pythonhosted.org/packages/5b/2f/91ba25795be1670afbcb236ce519c727297725c0664caae24e97f2885282/shishito-3.0.4-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "33219b29a246dd1f0f9ac214271b8397", "sha256": "adc21b541739b3d4d55925067c7847211a6d83a0cd4b5f1c638449001863f300" }, "downloads": -1, "filename": "shishito-3.0.4.tar.gz", "has_sig": false, "md5_digest": "33219b29a246dd1f0f9ac214271b8397", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 72107, "upload_time": "2018-08-15T09:36:58", "url": "https://files.pythonhosted.org/packages/72/0b/4e5b2fa4d48d2b12c09e3e970e0eddb62c456948c5aa7444e96e188aca69/shishito-3.0.4.tar.gz" } ], "3.0.5": [ { "comment_text": "", "digests": { "md5": "2ae0eba12d3026fc9488aa0e2c81063a", "sha256": "9cf85f3bf23997ea4dbdb9f7e2d4e1a8e26a08618a5c9c4fdc297cd3cf59badd" }, "downloads": -1, "filename": "shishito-3.0.5-py3-none-any.whl", "has_sig": false, "md5_digest": "2ae0eba12d3026fc9488aa0e2c81063a", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 89668, "upload_time": "2018-09-10T16:19:44", "url": "https://files.pythonhosted.org/packages/b9/29/c3adaf3d2c0e1673a60e1852a4dbd562b4f6d416f434a4c81b3ec99e56b4/shishito-3.0.5-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "56f207b05faf7ff733986ed9c529f6f3", "sha256": "a4d1ee3729df1ea30c1175ae4cc32278bcc0538c6aec359e7da434a9f5a7ce0d" }, "downloads": -1, "filename": "shishito-3.0.5.tar.gz", "has_sig": false, "md5_digest": "56f207b05faf7ff733986ed9c529f6f3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 75557, "upload_time": "2018-09-10T16:19:46", "url": "https://files.pythonhosted.org/packages/b3/88/cbbe59eb1d325fb9f8d871baba47975c9d34a2c1bf0dc71cb2e63c1d2dc1/shishito-3.0.5.tar.gz" } ], "3.0.6": [ { "comment_text": "", "digests": { "md5": "7b652f08d4311e79b87da57afb0b608a", "sha256": "31513104d81e75631d0263ce05bdc5b5bce6acaea89bec8c9177e1dbd7d4aec4" }, "downloads": -1, "filename": "shishito-3.0.6-py3-none-any.whl", "has_sig": false, "md5_digest": "7b652f08d4311e79b87da57afb0b608a", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 90710, "upload_time": "2018-10-26T09:22:06", "url": "https://files.pythonhosted.org/packages/5f/14/ef53bdca6a5b1ccc8fedd52e7944b05187d3ac361f4e33308d8e72939b4f/shishito-3.0.6-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "c5e9093ed0587351b75e99fcc9085a50", "sha256": "e8235443b7fa4d2379041133e6069b97ec4f506afe954b6924d3adbbf01c2818" }, "downloads": -1, "filename": "shishito-3.0.6.tar.gz", "has_sig": false, "md5_digest": "c5e9093ed0587351b75e99fcc9085a50", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 75877, "upload_time": "2018-10-26T09:22:08", "url": "https://files.pythonhosted.org/packages/a3/96/047dc0e8106870d5530a1aba232c7451e1c8584ed38ed897890c600b827b/shishito-3.0.6.tar.gz" } ], "3.0.7": [ { "comment_text": "", "digests": { "md5": "62bde7410f8a856207f95851a3012ecb", "sha256": "8c3aadf6c16920a1372df34b5685b393b8a8d02decf066a8cd0270221301f64c" }, "downloads": -1, "filename": "shishito-3.0.7-py3-none-any.whl", "has_sig": false, "md5_digest": "62bde7410f8a856207f95851a3012ecb", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 90711, "upload_time": "2018-10-26T11:54:02", "url": "https://files.pythonhosted.org/packages/6d/92/0bd5e02ab4a1259d8bf9885316bd879b5a7457d41248ed52ab3c60cd0515/shishito-3.0.7-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "7a3c43232f7b9537feb0bbd5736c6547", "sha256": "bff3e94b2a428506a844009fc0398a688de9c2ceb2291e3e3b4cb5f749eab736" }, "downloads": -1, "filename": "shishito-3.0.7.tar.gz", "has_sig": false, "md5_digest": "7a3c43232f7b9537feb0bbd5736c6547", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 75038, "upload_time": "2018-10-26T11:54:04", "url": "https://files.pythonhosted.org/packages/07/1e/e403180f574e73243cbb18ef85bb4e8e545bca921b8a18e5be79d9294d4f/shishito-3.0.7.tar.gz" } ], "3.0.8": [ { "comment_text": "", "digests": { "md5": "c13f8b8f2967b624933520a32db24719", "sha256": "b3fb35e0d1f399fc7fd50ab11c5c2389d775e80881537c7cba3c6a5ba6e67f3d" }, "downloads": -1, "filename": "shishito-3.0.8-py3-none-any.whl", "has_sig": false, "md5_digest": "c13f8b8f2967b624933520a32db24719", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 90739, "upload_time": "2018-10-29T10:31:31", "url": "https://files.pythonhosted.org/packages/c1/24/763f98270abdf0af1479e28e368819a537c65a6473ff41e482305405198e/shishito-3.0.8-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "f60ac7355f912c4b19e5783eabeefced", "sha256": "de985ddb3aa12000c3055211907c31d24ba2c9d715d9edb4cd18ca927b8dfa7e" }, "downloads": -1, "filename": "shishito-3.0.8.tar.gz", "has_sig": false, "md5_digest": "f60ac7355f912c4b19e5783eabeefced", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 72619, "upload_time": "2018-10-29T10:31:32", "url": "https://files.pythonhosted.org/packages/87/93/e02fedb088e27852a8f4075fec88eea69514e263a27d71693bbe81254df4/shishito-3.0.8.tar.gz" } ], "3.0.9": [ { "comment_text": "", "digests": { "md5": "7c3d1be9bec16350aab16194962cea98", "sha256": "7128c512a555bb0a939cd8b5ab5481a940899c5ab58f9ca495a21e284840507b" }, "downloads": -1, "filename": "shishito-3.0.9-py3-none-any.whl", "has_sig": false, "md5_digest": "7c3d1be9bec16350aab16194962cea98", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 90746, "upload_time": "2018-10-29T10:43:21", "url": "https://files.pythonhosted.org/packages/3c/38/65652d3f3c972361e00e1a909a60cf715c1b189a765d8569686e41d3d69d/shishito-3.0.9-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "0a3add12df7404578aa4b795155c5fa4", "sha256": "76aa2ab5daf15419274e0497e6eb6a5806d2991b23bfce82a5cc10baede23304" }, "downloads": -1, "filename": "shishito-3.0.9.tar.gz", "has_sig": false, "md5_digest": "0a3add12df7404578aa4b795155c5fa4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 76161, "upload_time": "2018-10-29T10:43:23", "url": "https://files.pythonhosted.org/packages/a0/0e/6b4b0287a12c16519b9b167bfc4a0586589db3102c0a70039db82dd59181/shishito-3.0.9.tar.gz" } ], "3.1.0": [ { "comment_text": "", "digests": { "md5": "043fa97e077986ea2b3e42cf53014221", "sha256": "f325afa9d1d8bf42bce484f71282d6aebb54c2d880e78e8c7575c5e4abe849b4" }, "downloads": -1, "filename": "shishito-3.1.0-py3-none-any.whl", "has_sig": false, "md5_digest": "043fa97e077986ea2b3e42cf53014221", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 90806, "upload_time": "2018-11-27T15:11:52", "url": "https://files.pythonhosted.org/packages/a7/c2/3f04a7ad565c737de052217991620ecad6ed74ed2e9e54f048e7c32f106b/shishito-3.1.0-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "4b419721f461002cbb236c9af0cf9341", "sha256": "5d5c78114306d013231d4fa28af5b812f4d853dfca2b171f432fbcd7554462dd" }, "downloads": -1, "filename": "shishito-3.1.0.tar.gz", "has_sig": false, "md5_digest": "4b419721f461002cbb236c9af0cf9341", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 72440, "upload_time": "2018-11-27T15:11:54", "url": "https://files.pythonhosted.org/packages/7d/22/0bae9e7309b4b33a1429369ed01992de08fc8cba166220ca5c7367f6856c/shishito-3.1.0.tar.gz" } ], "3.1.1": [ { "comment_text": "", "digests": { "md5": "330a954354c6609dfd015e5a29c17f0f", "sha256": "80438a60e07bd79566a7eba728895e67b8e71cd1710b25c769d2db4b8d026c2f" }, "downloads": -1, "filename": "shishito-3.1.1-py3-none-any.whl", "has_sig": false, "md5_digest": "330a954354c6609dfd015e5a29c17f0f", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 90736, "upload_time": "2019-01-09T14:07:22", "url": "https://files.pythonhosted.org/packages/e9/dd/9493f0486cb25850699294503c1f61604c52af98131c43e92822bbdd1a7c/shishito-3.1.1-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "a0de76c0010d9eb7f0d806a6b8952b3a", "sha256": "f65090028b4d1feb752d38f70e81d9fb7249eb8cc7cd913b3ac06c9e67f82519" }, "downloads": -1, "filename": "shishito-3.1.1.tar.gz", "has_sig": false, "md5_digest": "a0de76c0010d9eb7f0d806a6b8952b3a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 72310, "upload_time": "2019-01-09T14:07:24", "url": "https://files.pythonhosted.org/packages/ed/a1/07859ed08b0c5f378be8a39d68327e7c58edade8e6a5303a3f57dcdf991a/shishito-3.1.1.tar.gz" } ], "3.1.10": [ { "comment_text": "", "digests": { "md5": "2d9acd610748c2a3030f635b9984cbb7", "sha256": "153d74d557cab551a4b23763ea328654d30bd44b710c374bd57d314501115c2f" }, "downloads": -1, "filename": "shishito-3.1.10-py3-none-any.whl", "has_sig": false, "md5_digest": "2d9acd610748c2a3030f635b9984cbb7", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 97261, "upload_time": "2019-08-12T15:27:48", "url": "https://files.pythonhosted.org/packages/e0/64/47eb8de68f4b4a4c96486205c1f13ba69a5a2cc9d70a18b1dc96c354e0ae/shishito-3.1.10-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "835aef0ba32e7c739d903a3cecca312c", "sha256": "1da3d8f61dd14d06079306f2a7146b5623d5807af30b7f225accbc888529fff2" }, "downloads": -1, "filename": "shishito-3.1.10.tar.gz", "has_sig": false, "md5_digest": "835aef0ba32e7c739d903a3cecca312c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 83183, "upload_time": "2019-08-12T15:27:50", "url": "https://files.pythonhosted.org/packages/95/4b/773c8ee759bf50ad159750d6af572b1846b50cf31b3848124fb3e504986a/shishito-3.1.10.tar.gz" } ], "3.1.2": [ { "comment_text": "", "digests": { "md5": "4011e63b2731b69fc64ac337cdbcf107", "sha256": "62367538b52ba78b509eacaaa846a78195990355a1abd818c4b9b6543dea5e98" }, "downloads": -1, "filename": "shishito-3.1.2-py3-none-any.whl", "has_sig": false, "md5_digest": "4011e63b2731b69fc64ac337cdbcf107", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 90785, "upload_time": "2019-01-14T16:27:00", "url": "https://files.pythonhosted.org/packages/80/9b/c639d7d0499f68dd4404beb0da59a633048b6cbd603f4cbfcffd5f1a2c6f/shishito-3.1.2-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "57e7712f8003a5f2980ec89888976a38", "sha256": "a7858965184098c5a86b13dd4f404bed43d7591b3a38d134751557ed1c7503ea" }, "downloads": -1, "filename": "shishito-3.1.2.tar.gz", "has_sig": false, "md5_digest": "57e7712f8003a5f2980ec89888976a38", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 75911, "upload_time": "2019-01-14T16:27:02", "url": "https://files.pythonhosted.org/packages/b5/19/8bfb71ce71de5f055be54b872f2d0ae52b781cbd66cbc840b7f7ba381166/shishito-3.1.2.tar.gz" } ], "3.1.3": [ { "comment_text": "", "digests": { "md5": "7d6063aa5e7001c871ae1f569946fc30", "sha256": "dfb7f09b79082e45689ff09ae5e969e95ecf73275d82cf6f0d14c2ba9b940690" }, "downloads": -1, "filename": "shishito-3.1.3-py3-none-any.whl", "has_sig": false, "md5_digest": "7d6063aa5e7001c871ae1f569946fc30", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 90810, "upload_time": "2019-03-07T15:50:17", "url": "https://files.pythonhosted.org/packages/c1/c9/53f5a26a87951490c84892598033ffd9ea4e40c244b53659f8816eb638a2/shishito-3.1.3-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "5710765316185b615a2f878af4a1510f", "sha256": "f07e2be107e0748ff89a40b53c471e78ae4358a699f078eee3c7d8d2b6b42ebd" }, "downloads": -1, "filename": "shishito-3.1.3.tar.gz", "has_sig": false, "md5_digest": "5710765316185b615a2f878af4a1510f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 72722, "upload_time": "2019-03-07T15:50:19", "url": "https://files.pythonhosted.org/packages/c2/8b/307e5b143893e63a7651ef87bfb76f0ae9684a241e82c7fc033a633d10f3/shishito-3.1.3.tar.gz" } ], "3.1.4": [ { "comment_text": "", "digests": { "md5": "841e0257a4090be6573d2c0e7fa90b49", "sha256": "00c36970afc68da4365906c56ea00977f3a5a94b3f4d8f6fe4b40f8aca132b2a" }, "downloads": -1, "filename": "shishito-3.1.4-py3-none-any.whl", "has_sig": false, "md5_digest": "841e0257a4090be6573d2c0e7fa90b49", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 90913, "upload_time": "2019-05-21T13:08:37", "url": "https://files.pythonhosted.org/packages/6e/ae/5059d0bbb9a2810a83035b114d59e578f99ac9e333394ed5e1312a319e26/shishito-3.1.4-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "f9e88747f9f3e5abcdb05d0aefca89ee", "sha256": "fcd585e31ac50fad6f3e2a33a1b88a3cb8729e3da9593dc7ce0967d17f55e842" }, "downloads": -1, "filename": "shishito-3.1.4.tar.gz", "has_sig": false, "md5_digest": "f9e88747f9f3e5abcdb05d0aefca89ee", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 76658, "upload_time": "2019-05-21T13:08:38", "url": "https://files.pythonhosted.org/packages/d7/c6/d5cdb4c05624317e98ea6cee5006109bf2be905f109de2d34ea90e1957e7/shishito-3.1.4.tar.gz" } ], "3.1.5": [ { "comment_text": "", "digests": { "md5": "e17d21d4c8130a316356e605eda3e6e6", "sha256": "9b77bc9da318d20d8d4ec776b752e837786f17e4468833b8521dc89b3437ae43" }, "downloads": -1, "filename": "shishito-3.1.5-py3-none-any.whl", "has_sig": false, "md5_digest": "e17d21d4c8130a316356e605eda3e6e6", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 90925, "upload_time": "2019-05-22T08:00:39", "url": "https://files.pythonhosted.org/packages/d6/7e/b526450f938d6c5a18d00b8ae69042dcb707027b234156307fe277a2f93b/shishito-3.1.5-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "26fcb5a8c27184d117526e2033f434c5", "sha256": "9554e3b6102394719e645f96c0ebd66cdbb453b3ceda7af067da869836346801" }, "downloads": -1, "filename": "shishito-3.1.5.tar.gz", "has_sig": false, "md5_digest": "26fcb5a8c27184d117526e2033f434c5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 72491, "upload_time": "2019-05-22T08:00:41", "url": "https://files.pythonhosted.org/packages/5f/9d/809a9c1f350e5984f76e568ee3890e50e7a1044cc9d44b91ecbfd73c2e07/shishito-3.1.5.tar.gz" } ], "3.1.6": [ { "comment_text": "", "digests": { "md5": "fc9c35f51a5d2d5a4016034496b1f418", "sha256": "1b69fcd0bf539c30dcd9db7f88dbe57c6b83ced3bccc0d7a26b3b4e503f64e27" }, "downloads": -1, "filename": "shishito-3.1.6-py3-none-any.whl", "has_sig": false, "md5_digest": "fc9c35f51a5d2d5a4016034496b1f418", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 91313, "upload_time": "2019-06-18T10:54:15", "url": "https://files.pythonhosted.org/packages/56/f9/4468e6a40029766a02f99d2e851512afbe725a1b010b19fccf2158100e70/shishito-3.1.6-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "0e1fdba7725daa250d50630afb0cd470", "sha256": "13270c6761787e1d705a59a59b97f5a4393c819945444e3a6ddcedeabc3daffa" }, "downloads": -1, "filename": "shishito-3.1.6.tar.gz", "has_sig": false, "md5_digest": "0e1fdba7725daa250d50630afb0cd470", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 76996, "upload_time": "2019-06-18T10:54:17", "url": "https://files.pythonhosted.org/packages/68/1d/029dba0737a703cba609667ca5bb4526fbbe299e777a4723fc27cc81fb76/shishito-3.1.6.tar.gz" } ], "3.1.7": [ { "comment_text": "", "digests": { "md5": "42a0351749be1f6377d1af35d70fa1ce", "sha256": "9cbf31928b26a17ba6e8dba1586f7134e4e91504243e3c48bd3cad422c248920" }, "downloads": -1, "filename": "shishito-3.1.7-py3-none-any.whl", "has_sig": false, "md5_digest": "42a0351749be1f6377d1af35d70fa1ce", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 96891, "upload_time": "2019-07-01T09:11:11", "url": "https://files.pythonhosted.org/packages/3b/33/9060693da8894e07e663bdc88fe8ff352471e580c58fc6638a7c83661693/shishito-3.1.7-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "e69558120a933c692beed3bfa3967f0f", "sha256": "e9e6fba77c857579866f351722068e7eed4fb803895bf2859f6579cef4243fce" }, "downloads": -1, "filename": "shishito-3.1.7.tar.gz", "has_sig": false, "md5_digest": "e69558120a933c692beed3bfa3967f0f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 78851, "upload_time": "2019-07-01T09:11:13", "url": "https://files.pythonhosted.org/packages/6e/e9/f42502b0a802bf05c3adb9e2979efe207d3c693a37cfa14f955ca9a2a331/shishito-3.1.7.tar.gz" } ], "3.1.8": [ { "comment_text": "", "digests": { "md5": "c7106c4e3cab4a337161c80825d1110b", "sha256": "f2f90d4f34c8fa39af12ae22398631209d107210a8d2cf0fcdc71f2754912642" }, "downloads": -1, "filename": "shishito-3.1.8-py3-none-any.whl", "has_sig": false, "md5_digest": "c7106c4e3cab4a337161c80825d1110b", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 97003, "upload_time": "2019-07-03T11:17:25", "url": "https://files.pythonhosted.org/packages/f7/fc/3559a62eb1f220195951550016dfe4ff7a07d6e78c4201d6df7115ef1604/shishito-3.1.8-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "81c4d0f9c2f28d3246354c50e9de1e27", "sha256": "a663129f20744946824c100cedd52a85111139b9a5f905a7de16577e4ea46077" }, "downloads": -1, "filename": "shishito-3.1.8.tar.gz", "has_sig": false, "md5_digest": "81c4d0f9c2f28d3246354c50e9de1e27", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 79123, "upload_time": "2019-07-03T11:17:27", "url": "https://files.pythonhosted.org/packages/14/f3/7dc67451ff0f4ce53a02e94e36d3dcd5981e61b95ef3b75b5542d8a34339/shishito-3.1.8.tar.gz" } ], "3.1.9": [ { "comment_text": "", "digests": { "md5": "b4b1324333db6f7e6230ba2ee8b1c4c7", "sha256": "48c9eedc2c343be2b1a8e6b99c86247dfa3f29e7bfb3d7832c1a1144af1df1b3" }, "downloads": -1, "filename": "shishito-3.1.9-py3-none-any.whl", "has_sig": false, "md5_digest": "b4b1324333db6f7e6230ba2ee8b1c4c7", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 97070, "upload_time": "2019-07-18T11:50:26", "url": "https://files.pythonhosted.org/packages/77/96/459b13cca6f8a4eb7fa0c206f424b65b27f4692828dd76e5abaf0faeaa79/shishito-3.1.9-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "b4b9b164e4bebb6c4ef0252d65bbf9fd", "sha256": "9602bd466c36c2469a208097c1e3a138ea89923340239ffc068b811d70d027c5" }, "downloads": -1, "filename": "shishito-3.1.9.tar.gz", "has_sig": false, "md5_digest": "b4b9b164e4bebb6c4ef0252d65bbf9fd", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 78806, "upload_time": "2019-07-18T11:50:28", "url": "https://files.pythonhosted.org/packages/c1/35/d85ee3dedb313e90475b98873b53c9b8adc4bf3f967cbbb894d005a1bdfd/shishito-3.1.9.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "2d9acd610748c2a3030f635b9984cbb7", "sha256": "153d74d557cab551a4b23763ea328654d30bd44b710c374bd57d314501115c2f" }, "downloads": -1, "filename": "shishito-3.1.10-py3-none-any.whl", "has_sig": false, "md5_digest": "2d9acd610748c2a3030f635b9984cbb7", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 97261, "upload_time": "2019-08-12T15:27:48", "url": "https://files.pythonhosted.org/packages/e0/64/47eb8de68f4b4a4c96486205c1f13ba69a5a2cc9d70a18b1dc96c354e0ae/shishito-3.1.10-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "835aef0ba32e7c739d903a3cecca312c", "sha256": "1da3d8f61dd14d06079306f2a7146b5623d5807af30b7f225accbc888529fff2" }, "downloads": -1, "filename": "shishito-3.1.10.tar.gz", "has_sig": false, "md5_digest": "835aef0ba32e7c739d903a3cecca312c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 83183, "upload_time": "2019-08-12T15:27:50", "url": "https://files.pythonhosted.org/packages/95/4b/773c8ee759bf50ad159750d6af572b1846b50cf31b3848124fb3e504986a/shishito-3.1.10.tar.gz" } ] }